diff --git a/README.md b/README.md index e164ffb..b9d3ac8 100644 --- a/README.md +++ b/README.md @@ -114,33 +114,12 @@ Address binding for stripped ELFs: Example: ```toml -[general] -input = "path/to/game.elf" -ghidra_output = "" -output = "output/" - -single_file_output = true -low_memory_mode = true -output_worker_threads = 0 -patch_syscalls = false -patch_cop0 = true -patch_cache = true - -stubs = ["printf", "malloc", "free"] - # stripped function binding by address: -# stubs = ["sceCdRead@0x00123456", "SifLoadModule@0x00127890"] +stubs = ["sceCdRead@0x00123456", "SifLoadModule@0x00127890"] # temporary return handlers: -# stubs = ["ret0@0x001D9410", "ret1@0x001D5BC8", "reta0@0x0024B7C0"] +stubs = ["ret0@0x001D9410", "ret1@0x001D5BC8", "reta0@0x0024B7C0"] # mixed example: -# stubs = ["printf", "sceCdRead@0x00123456", "SifLoadModule@0x00127890"] - -skip = ["abort", "exit"] - -[patches] -instructions = [ - { address = "0x100004", value = "0x00000000" } -] +stubs = ["printf", "sceCdRead@0x00123456", "SifLoadModule@0x00127890"] ``` ### Runtime diff --git a/ps2xAnalyzer/CMakeLists.txt b/ps2xAnalyzer/CMakeLists.txt index 14e46f6..5933bca 100644 --- a/ps2xAnalyzer/CMakeLists.txt +++ b/ps2xAnalyzer/CMakeLists.txt @@ -4,8 +4,23 @@ project(PS2Analyzer VERSION 0.1.0 LANGUAGES CXX) set(CMAKE_CXX_STANDARD 20) set(CMAKE_CXX_STANDARD_REQUIRED ON) +include(FetchContent) + +FetchContent_Declare( + nlohmann_json + GIT_REPOSITORY https://github.com/nlohmann/json.git + GIT_TAG v3.11.3 + GIT_SHALLOW TRUE +) +FetchContent_MakeAvailable(nlohmann_json) + set(PS2ANALYZER_LIB_SOURCES + src/analysis_passes.cpp + src/elf_analysis_context.cpp src/elf_analyzer.cpp + src/function_classifier.cpp + src/sce_symbol_scanner.cpp + src/toml_generator.cpp ) add_library(ps2_analyzer_lib STATIC ${PS2ANALYZER_LIB_SOURCES}) @@ -13,10 +28,12 @@ add_library(ps2_analyzer_lib STATIC ${PS2ANALYZER_LIB_SOURCES}) target_include_directories(ps2_analyzer_lib PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/include ${CMAKE_SOURCE_DIR}/ps2xRecomp/include + ${CMAKE_SOURCE_DIR}/ps2xRuntime/include ) target_link_libraries(ps2_analyzer_lib PUBLIC ps2_recomp_lib + nlohmann_json::nlohmann_json ) add_executable(ps2_analyzer diff --git a/ps2xAnalyzer/Readme.md b/ps2xAnalyzer/Readme.md index e735c01..e6f709a 100644 --- a/ps2xAnalyzer/Readme.md +++ b/ps2xAnalyzer/Readme.md @@ -17,7 +17,22 @@ For commercial games where symbols are stripped, the analyzer uses a "JAL Scanne Use this path only as a quick fallback when you do not yet have a Ghidra project. It is not the preferred workflow for retail games. -### 3. Ghidra Integration (For Retail and Stripped Games, Preferred) +### 3. SCE SDK Symbol Database (For SDK Function Names) +For stripped retail games, the analyzer can identify SCE/PS2SDK library functions from a +`sce-symbol-scanner` compatible database. A snapshot of the database is embedded in the +analyzer. Pass the directory that contains `symbols.json` and `tree.json`, or point +`PS2RECOMP_SCE_SYMBOL_DB` at that directory, only when you want to override the embedded +snapshot. + +This path is meant to recover names such as CD/DVD, pad, DMA, GS, kernel, and libc SDK +functions so they can be classified before the expensive analysis passes run. + +The current database was built from PS2 games with debug information, primarily the +Japanese set, and depends on samples that retained relocations. Treat the result as a +high-confidence hint rather than a complete SDK catalog: it can miss SDK variants that +were not present in the sampled games, and ambiguous matches are intentionally ignored. + +### 4. Ghidra Integration (For Retail and Stripped Games, Preferred) This is the recommended workflow for almost every commercial game: 1. Use the provided script: `ps2xRecomp/tools/ghidra/ExportPS2Functions.java`. 2. Run it in Ghidra to export a CSV map of all functions. @@ -29,19 +44,20 @@ This is the recommended workflow for almost every commercial game: * Analyzes PS2 ELF binaries to extract symbols, functions, and structure * Identifies common library functions that should be stubbed -* Flags system functions that should be skipped during recompilation +* Reports risky instruction patterns for manual review without auto-skipping functions * Detects potential instruction patterns that may need patching * Generates a ready-to-use TOML configuration file for PS2Recomp ## Using the Analyzer ```bash -ps2_analyzer +ps2_analyzer [sce_symbol_db_dir] ``` ### Parameters: * `input_elf`: Path to the PS2 ELF file. * `output_toml`: Path where the generated TOML configuration will be saved. +* `sce_symbol_db_dir`: Optional override path to a directory containing `symbols.json` and `tree.json`. ## Example Workflow 1. Open `game.elf` in Ghidra. @@ -57,8 +73,10 @@ Fallback: ## Generated Configuration The tool creates a TOML file with the following sections: * `[general]`: Paths to ELF and Ghidra maps. -* `stubs`: List of library functions to be replaced by C++ stubs. -* `skip`: List of functions to be ignored (entry points, initialization). +* `stubs`: Runtime-known functions to be replaced by C++ stubs or syscall handlers. +* `untracked_stubs`: Detected library-like functions without runtime handlers. This is + informational only and is ignored by the recompiler. +* `skip`: Legacy compatibility field. The analyzer no longer auto-populates it. * `[patches]`: Individual instructions that need to be replaced (SYSCALLs, COP0, etc.). ## Limitations diff --git a/ps2xAnalyzer/include/ps2recomp/analysis_passes.h b/ps2xAnalyzer/include/ps2recomp/analysis_passes.h new file mode 100644 index 0000000..e82f4e4 --- /dev/null +++ b/ps2xAnalyzer/include/ps2recomp/analysis_passes.h @@ -0,0 +1,33 @@ +#ifndef PS2RECOMP_ANALYSIS_PASSES_H +#define PS2RECOMP_ANALYSIS_PASSES_H + +#include "ps2recomp/types.h" + +#include +#include +#include +#include +#include +#include +#include + +namespace ps2recomp +{ + class AnalysisPasses + { + public: + static bool hasHardwareIOSignal(const std::vector &instructions); + static bool hasLargeComplexMMISignal(const std::vector &instructions, + size_t largeInstructionThreshold = 500); + static bool hasSelfModifyingSignal(const std::vector &instructions, + const std::vector
§ions); + static std::vector detectJumpTables( + const std::vector &instructions, + const std::vector
§ions, + const std::function &readWord); + static std::unordered_set findRecursiveFunctions( + const std::unordered_map> &callGraph); + }; +} + +#endif // PS2RECOMP_ANALYSIS_PASSES_H diff --git a/ps2xAnalyzer/include/ps2recomp/elf_analysis_context.h b/ps2xAnalyzer/include/ps2recomp/elf_analysis_context.h new file mode 100644 index 0000000..4d9c892 --- /dev/null +++ b/ps2xAnalyzer/include/ps2recomp/elf_analysis_context.h @@ -0,0 +1,33 @@ +#ifndef PS2RECOMP_ELF_ANALYSIS_CONTEXT_H +#define PS2RECOMP_ELF_ANALYSIS_CONTEXT_H + +#include "ps2recomp/types.h" + +#include +#include +#include +#include + +namespace ps2recomp +{ + struct ElfAnalysisContext + { + std::vector functions; + std::vector symbols; + std::vector
sections; + std::vector relocations; + + std::unordered_map functionIndexByStart; + mutable std::unordered_map> instructionCache; + + void clear(); + void buildFunctionIndex(); + void clearInstructionCache(); + Function *findFunction(uint32_t start); + const Function *findFunction(uint32_t start) const; + Function *findFunctionContaining(uint32_t address); + const Function *findFunctionContaining(uint32_t address) const; + }; +} + +#endif // PS2RECOMP_ELF_ANALYSIS_CONTEXT_H diff --git a/ps2xAnalyzer/include/ps2recomp/elf_analyzer.h b/ps2xAnalyzer/include/ps2recomp/elf_analyzer.h index a1b207e..df29dfc 100644 --- a/ps2xAnalyzer/include/ps2recomp/elf_analyzer.h +++ b/ps2xAnalyzer/include/ps2recomp/elf_analyzer.h @@ -1,6 +1,9 @@ #ifndef PS2RECOMP_ELF_ANALYZER_H #define PS2RECOMP_ELF_ANALYZER_H +#include "ps2recomp/elf_analysis_context.h" +#include "ps2recomp/function_classifier.h" + #include #include #include @@ -9,6 +12,7 @@ #include #include #include +#include namespace ps2recomp { @@ -31,21 +35,29 @@ namespace ps2recomp explicit ElfAnalyzer(const std::string &elfPath); ~ElfAnalyzer(); + public: + void setSceSymbolDatabasePath(const std::string &databasePath); bool analyze(); bool generateToml(const std::string &outputPath); bool importGhidraMap(const std::string &csvPath); - const std::vector& getFunctions() const; + + public: + const std::vector &getFunctions() const; + + public: bool isLibrarySymbolNameForHeuristics(const std::string &name) const; static bool isReliableSymbolNameForHeuristics(const std::string &name); - static bool isSystemSymbolNameForHeuristics(const std::string &name); - static bool shouldAutoSkipNameForHeuristics(const std::string &name); - static bool shouldSkipSystemSymbolForHeuristics(const std::string &name, const std::unordered_set &forcedRecompileNames); + + public: static int findEntryFunctionIndexForHeuristics(const std::vector &functions, uint32_t entryAddress); static int findFallbackEntryFunctionIndexForHeuristics(const std::vector &functions); + + public: static bool hasHardwareIOSignalForHeuristics(const std::vector &instructions); static bool hasLargeComplexMMISignalForHeuristics(const std::vector &instructions, size_t largeInstructionThreshold = 500); static bool hasSelfModifyingSignalForHeuristics(const std::vector &instructions, const std::vector
§ions); - static bool shouldSkipForPatchDensityForHeuristics(const std::string &functionName, uint32_t functionSizeBytes, size_t patchCount, bool isLibraryFunction); + + public: static std::vector detectJumpTablesForHeuristics(const std::vector &instructions, const std::vector
§ions, const std::function &readWord); static std::unordered_set findRecursiveFunctionsForHeuristics(const std::unordered_map> &callGraph); @@ -54,27 +66,43 @@ namespace ps2recomp std::unique_ptr m_elfParser; std::unique_ptr m_decoder; - std::vector m_functions; - std::vector m_symbols; - std::vector
m_sections; - std::vector m_relocations; + ElfAnalysisContext m_context; std::unordered_set m_libFunctions; - std::unordered_set m_skipFunctions; + std::unordered_set m_untrackedStubFunctions; std::unordered_set m_forceRecompileStarts; - std::unordered_set m_knownLibNames; + std::unordered_set m_sceSdkFunctionNames; + + FunctionClassifier m_classifier; + std::unordered_map> m_functionDataUsage; std::unordered_map m_commonDataAccess; std::map m_patches; std::map m_patchReasons; + std::unordered_map m_functionCFGs; std::vector m_jumpTables; std::unordered_map> m_functionCalls; + std::map m_performanceCriticalReasons; std::unordered_map m_mmioByInstructionAddress; - void initializeLibraryFunctions(); + std::string m_sceSymbolDatabasePath; + + bool loadElf(); + void buildFunctionIndex(); + void decodeAllFunctionsOnce(); + void classifyFunctions(); + void runDataUsagePass(); + void runPatchDetectionPass(); + void runControlFlowPass(); + void runJumpTablePass(); + void runPerformancePass(); + void runSignaturePass() const; + void printAnalysisSummary() const; + + void discoverSceSdkSymbols(); void analyzeEntryPoint(); void analyzeLibraryFunctions(); void analyzeDataUsage(); @@ -96,7 +124,7 @@ namespace ps2recomp void analyzeControlFlow(); void detectJumpTables(); - void analyzePerformanceCriticalPaths() const; + void analyzePerformanceCriticalPaths(); void identifyRecursiveFunctions(); void analyzeRegisterUsage() const; void analyzeFunctionSignatures() const; @@ -107,16 +135,15 @@ namespace ps2recomp bool identifyStringOperationPattern(const Function &func) const; bool identifyMathPattern(const Function &func) const; - bool isSystemFunction(const std::string &name) const; bool isLibraryFunction(const std::string &name) const; + void clearDecodedInstructionCache(); + const std::vector &getDecodedInstructions(const Function &function) const; std::vector decodeFunction(const Function &function) const; CFG buildCFG(const Function &function) const; std::string formatAddress(uint32_t address) const; - std::string escapeBackslashes(const std::string &path); bool hasMMIInstructions(const Function &function) const; bool hasVUInstructions(const Function &function) const; - bool shouldAutoSkipByHeuristic(const Function &function) const; - bool identifyFunctionType(const Function &function); + void identifyFunctionType(const Function &function) const; void categorizeFunction(Function &function); uint32_t getSuccessor(const Instruction &inst, uint32_t currentAddr); bool isSelfModifyingCode(const Function &function) const; diff --git a/ps2xAnalyzer/include/ps2recomp/function_classifier.h b/ps2xAnalyzer/include/ps2recomp/function_classifier.h new file mode 100644 index 0000000..ca6b7d4 --- /dev/null +++ b/ps2xAnalyzer/include/ps2recomp/function_classifier.h @@ -0,0 +1,31 @@ +#ifndef PS2RECOMP_FUNCTION_CLASSIFIER_H +#define PS2RECOMP_FUNCTION_CLASSIFIER_H + +#include +#include +#include + +namespace ps2recomp +{ + class FunctionClassifier + { + public: + FunctionClassifier(); + + void setSceSdkFunctionNames(const std::unordered_set *names); + bool isLibraryFunction(const std::string &name) const; + static bool hasRuntimeHandler(const std::string &name); + + static bool isReliableSymbolName(const std::string &name); + static bool hasPs2ApiPrefix(const std::string &name); + + private: + std::unordered_set m_knownLibNames; + const std::unordered_set *m_sceSdkFunctionNames = nullptr; + + void initializeKnownLibraryFunctions(); + static bool matchesKernelRuntimeName(const std::string &name); + }; +} + +#endif // PS2RECOMP_FUNCTION_CLASSIFIER_H diff --git a/ps2xAnalyzer/include/ps2recomp/sce_symbol_database_data.h b/ps2xAnalyzer/include/ps2recomp/sce_symbol_database_data.h new file mode 100644 index 0000000..b0d6820 --- /dev/null +++ b/ps2xAnalyzer/include/ps2recomp/sce_symbol_database_data.h @@ -0,0 +1,1484 @@ +#ifndef PS2RECOMP_SCE_SYMBOL_DATABASE_DATA_H +#define PS2RECOMP_SCE_SYMBOL_DATABASE_DATA_H + +#include + +namespace ps2recomp::sce_symbol_database +{ + // Generated from sce-symbol-scanner symboldb resources. + // Chunk sizes are explicit so compilers do not constexpr-scan huge literals. + inline constexpr std::string_view kSymbolsJsonChunks[] = { + std::string_view{R"PS2SDB({"crt0": {"_start": {"c7588964b2e25d2e3ec1fe16f4df077aa8a6802e": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "88015042daf2b8755d0016cc7e3e4707996c9345": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "4ae483ec83a24a19c2de4c49d62c77631126fe90": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "4346e832b599080b5d6a5524458dd6e555e99bdb": {"272f079b": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.0", "2.5.5", "2.7.0", "2.7.1", "2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"276": {"type": "MIPS_HI16", "symbol": "", "original": "_fbss"}, "280": {"type": "MIPS_HI16", "symbol": "", "original": "_end"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": "_fbss"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": "_end"}, "320": {"type": "MIPS_HI16", "symbol": "", "original": "_gp"}, "324": {"type": "MIPS_HI16", "symbol": "", "original": "_stack"}, "328": {"type": "MIPS_HI16", "symbol": "", "original": "_stack_size"}, "332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": "_gp"}, "344": {"type": "MIPS_LO16", "symbol": "", "original": "_stack"}, "348": {"type": "MIPS_LO16", "symbol": "", "original": "_stack_size"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "376": {"type": "MIPS_HI16", "symbol": "", "original": "_end"}, "380": {"type": "MIPS_HI16", "symbol": "", "original": "_heap_size"}, "384": {"type": "MIPS_LO16", "symbol": "", "original": "_end"}, "388": {"type": "MIPS_LO16", "symbol": "", "original": "_heap_size"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "95ea0e424a8903918eebecf579201c5864377b67": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "613cee5d5218ed0087f7287bfe966660f47085b5": {"67ade030": {"type": "FUNCTION", "size": 152, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "56": {"type": "MIPS_HI16", "symbol": "_root"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "76": {"type": "MIPS_LO16", "symbol": "_root"}, "120": {"type": "MIPS_26", "symbol": "FlushCache"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "144": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "ff261f5e9d6fd4db7bbacc197a8fa1ecd541f18f": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "802da8ec7d522faed1af9143a5dadfbe0090de87": {"07664533": {"type": "FUNCTION", "size": 528, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"276": {"type": "MIPS_HI16", "symbol": "", "original": "_fbss"}, "280": {"type": "MIPS_HI16", "symbol": "", "original": "_end"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": "_fbss"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": "_end"}, "316": {"type": "MIPS_26", "symbol": "<_start+292>", "original": ".text"}, "360": {"type": "MIPS_26", "symbol": "<_start+336>", "original": ".text"}, "392": {"type": "MIPS_26", "symbol": "<_start+368>", "original": ".text"}, "400": {"type": "MIPS_HI16", "symbol": "", "original": "_gp"}, "404": {"type": "MIPS_HI16", "symbol": "", "original": "_stack"}, "408": {"type": "MIPS_HI16", "symbol": "", "original": "_stack_size"}, "412": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "416": {"type": "MIPS_HI16", "symbol": "_root"}, "420": {"type": "MIPS_LO16", "symbol": "", "original": "_gp"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_stack"}, "428": {"type": "MIPS_LO16", "symbol": "", "original": "_stack_size"}, "432": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "436": {"type": "MIPS_LO16", "symbol": "_root"}, "456": {"type": "MIPS_HI16", "symbol": "", "original": "_end"}, "460": {"type": "MIPS_HI16", "symbol": "", "original": "_heap_size"}, "464": {"type": "MIPS_LO16", "symbol": "", )PS2SDB", 8192}, + std::string_view{R"PS2SDB("original": "_end"}, "468": {"type": "MIPS_LO16", "symbol": "", "original": "_heap_size"}, "480": {"type": "MIPS_26", "symbol": "_InitSys"}, "488": {"type": "MIPS_26", "symbol": "FlushCache"}, "500": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "504": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "512": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}, "520": {"type": "MIPS_26", "symbol": "exit"}}}}, "8832a6afcdeb40748b0f4c03859dc70b709f7ce3": {"7a85ca7e": {"type": "FUNCTION", "size": 160, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.2.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "48": {"type": "MIPS_HI16", "symbol": "_root"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "68": {"type": "MIPS_LO16", "symbol": "_root"}, "112": {"type": "MIPS_26", "symbol": "InitThread"}, "120": {"type": "MIPS_26", "symbol": "FlushCache"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "144": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}, "152": {"type": "MIPS_26", "symbol": "Exit"}}}}, "e9440fd6ad4ca124b0f43e79898a211eee2cabb0": {"7a85ca7e": {"type": "FUNCTION", "size": 160, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.2.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "48": {"type": "MIPS_HI16", "symbol": "_root"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "68": {"type": "MIPS_LO16", "symbol": "_root"}, "112": {"type": "MIPS_26", "symbol": "InitThread"}, "120": {"type": "MIPS_26", "symbol": "FlushCache"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "144": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}, "152": {"type": "MIPS_26", "symbol": "Exit"}}}}, "dfd942ea75733be6ea12727a2fe8e34d47e620d9": {"7a85ca7e": {"type": "FUNCTION", "size": 160, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.2.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "48": {"type": "MIPS_HI16", "symbol": "_root"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "68": {"type": "MIPS_LO16", "symbol": "_root"}, "112": {"type": "MIPS_26", "symbol": "InitThread"}, "120": {"type": "MIPS_26", "symbol": "FlushCache"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "144": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}, "152": {"type": "MIPS_26", "symbol": "Exit"}}}}, "9a0ef2867ca84860a3fc1de8b5ee4f7038bb244c": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "c65ce5dcf557e55561ca26148f55f1a314207ef4": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "6b89d6aed680ee1e0f1126ba75d0acaddf9cb498": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.6.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "3b8e9fcccfba36995dd1410b47de6cb945d8ed7a": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.6.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "ae55033d87f2260a11906ecfd858e0a32515f836": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "3dc6813881cb639277324411f7093253d61f2288": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "0fb9beb7ff8d0d4e384cd3b4c1eef237c29d0b62": {"67ade030": {"type": "FUNCTION", "size": 152, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "56": {"type": "MIPS_HI16", "symbol": "_root"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "76": {"type": "MIPS_LO16", "symbol": "_root"}, "120": {"type": "MIPS_26")PS2SDB", 8192}, + std::string_view{R"PS2SDB(, "symbol": "FlushCache"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "144": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "be3303c1e8af100b01690b2a531596c270128edb": {"67ade030": {"type": "FUNCTION", "size": 152, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "56": {"type": "MIPS_HI16", "symbol": "_root"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "76": {"type": "MIPS_LO16", "symbol": "_root"}, "120": {"type": "MIPS_26", "symbol": "FlushCache"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "144": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "2bf3464af1fe7ab6050c90664b15bef417dfc514": {"4b0688f6": {"type": "FUNCTION", "size": 160, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.1.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "56": {"type": "MIPS_HI16", "symbol": "_root"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "76": {"type": "MIPS_LO16", "symbol": "_root"}, "120": {"type": "MIPS_26", "symbol": "InitThread"}, "128": {"type": "MIPS_26", "symbol": "FlushCache"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "152": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "8f4fa7eaf6a4d9233f722a11d889ce7b354b7d4a": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "b11d9db00d2445197ea9687e0972be3193d70565": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.6.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "9bd1a13ff8cc6b0f1ea9cb95783279c18985fd4a": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "d83da63f733e3be057ff89cc71bf8a88272ed6d7": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "d651ca9f3bcba86e4872c1f369cb0fcdaebddd03": {"26cab9a6": {"type": "FUNCTION", "size": 496, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.1", "2.8.0", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"276": {"type": "MIPS_HI16", "symbol": "", "original": "_fbss"}, "280": {"type": "MIPS_HI16", "symbol": "", "original": "_end"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": "_fbss"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": "_end"}, "316": {"type": "MIPS_26", "symbol": "<_start+292>", "original": ".text"}, "360": {"type": "MIPS_26", "symbol": "<_start+336>", "original": ".text"}, "392": {"type": "MIPS_26", "symbol": "<_start+368>", "original": ".text"}, "400": {"type": "MIPS_HI16", "symbol": "", "original": "_gp"}, "404": {"type": "MIPS_HI16", "symbol": "", "original": "_stack"}, "408": {"type": "MIPS_HI16", "symbol": "", "original": "_stack_size"}, "412": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "416": {"type": "MIPS_HI16", "symbol": "_root"}, "420": {"type": "MIPS_LO16", "symbol": "", "original": "_gp"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_stack"}, "428": {"type": "MIPS_LO16", "symbol": "", "original": "_stack_size"}, "432": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "436": {"type": "MIPS_LO16", "symbol": "_root"}, "456": {"type": "MIPS_HI16", "symbol": "", "original": "_end"}, "460": {"type": "MIPS_HI16", "symbol": "", "original": "_heap_size"}, "464": {"type": "MIPS_LO16", "symbol": "", "original": "_end"}, "468": {"type": "MIPS_LO16", "symbol": "", "original": "_heap_size"}, "480": {"type": "MIPS_26", "symbol": "_InitSys"}, "488": {"type": "MIPS_26", "symbol": "FlushCache"}}}}, "de1f0a2f0793632910b212e4c84a632b5769cb3d": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "31307a5999e579c442bea5388b0744892de660ed": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "14)PS2SDB", 8192}, + std::string_view{R"PS2SDB(8": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "36ec220115df914206213c12eebe361db38005e3": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "3308c0e7d94ed48267727cbf03aeb5e4f1b7a1a9": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "9a5f948f87baf6d311579b662925390e516675ba": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "5049cdd27691dfc752c9c1a28f210ef1ba717940": {"4b0688f6": {"type": "FUNCTION", "size": 160, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.1.0"], "compiler_versions": ["2.3.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "56": {"type": "MIPS_HI16", "symbol": "_root"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "76": {"type": "MIPS_LO16", "symbol": "_root"}, "120": {"type": "MIPS_26", "symbol": "InitThread"}, "128": {"type": "MIPS_26", "symbol": "FlushCache"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "152": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "52a8090dadf456153468f7295ae509ebf5cb06a8": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "14b006b591f17c88787d54fd77c3510c4ef35bfb": {"67ade030": {"type": "FUNCTION", "size": 152, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.0.7"], "compiler_versions": ["2.3.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "56": {"type": "MIPS_HI16", "symbol": "_root"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "76": {"type": "MIPS_LO16", "symbol": "_root"}, "120": {"type": "MIPS_26", "symbol": "FlushCache"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "144": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "e8d160ab8ac93b3a64189ceed3231697a8c559f5": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "234843585dc009eb580a6a1b9dfb2b9ca51aed4b": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "868c420b33b6e4a365917e686cc06704349b7a42": {"67ade030": {"type": "FUNCTION", "size": 152, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "56": {"type": "MIPS_HI16", "symbol": "_root"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "76": {"type": "MIPS_LO16", "symbol": "_root"}, "120": {"type": "MIPS_26", "symbol": "FlushCache"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "144": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "2dcba51ab7a1eae78500ca29567e807db24e7a46": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "7a147bd8597ea8cc1fc69f286b521f7278cf5b6d": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "<)PS2SDB", 8192}, + std::string_view{R"PS2SDB(data>", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "7839f852c47208f47bb60a932c227003d02231b4": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "0716843b6816ae8f0d62d725980f2bb6f1ff7f4c": {"67ade030": {"type": "FUNCTION", "size": 152, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "56": {"type": "MIPS_HI16", "symbol": "_root"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "76": {"type": "MIPS_LO16", "symbol": "_root"}, "120": {"type": "MIPS_26", "symbol": "FlushCache"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "144": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "e49649d306b6323ab3a137754a2354780ac9d955": {"67ade030": {"type": "FUNCTION", "size": 152, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "56": {"type": "MIPS_HI16", "symbol": "_root"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "76": {"type": "MIPS_LO16", "symbol": "_root"}, "120": {"type": "MIPS_26", "symbol": "FlushCache"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "144": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "8eeb256069083a1d566604804cf71fb8da43268f": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "9ba9861583acdd13c043658d820d7c3edb0457bc": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "2dea05f9ee4ce2e01d5bc4855bd14e96e26f71cb": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "cae4d81baa757f80f88fafcd78dfa72cc46ba416": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "c803285d5a069cba13d13baf00416c2734509ae1": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "164d06f2aea6777eb095ced10022c9ea6bb6350f": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "05bc0c1f16fa34ae08ce7f8d03b6bae9bc444965": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "o)PS2SDB", 8192}, + std::string_view{R"PS2SDB(riginal": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "42e80a09dfa1fdc3b58e06f299ab83de40d7c429": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "a037fb03a153673c466baa4da18ea0f4ccdf0c77": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.6.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "972dd0f022c54a7af3e3f50685611b1246db8735": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "753965e5c95469c42b99b0e1238e66139886ecc9": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "83db6518c819195e50960ee7187065b0b26f02c2": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "e4ede3bf604942d917d0632bfc0a99273a67b361": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "4f752eb90ed60505f5fad0bb687f2add865fb2a8": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "d8633b5d5212f1e8e2ad7722ed9618f20d05c19c": {"ad38414d": {"type": "FUNCTION", "size": 448, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.0", "2.7.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"276": {"type": "MIPS_HI16", "symbol": "", "original": "_fbss"}, "280": {"type": "MIPS_HI16", "symbol": "", "original": "_end"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": "_fbss"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": "_end"}, "320": {"type": "MIPS_HI16", "symbol": "", "original": "_gp"}, "324": {"type": "MIPS_HI16", "symbol": "", "original": "_stack"}, "328": {"type": "MIPS_HI16", "symbol": "", "original": "_stack_size"}, "332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": "_gp"}, "344": {"type": "MIPS_LO16", "symbol": "", "original": "_stack"}, "348": {"type": "MIPS_LO16", "symbol": "", "original": "_stack_size"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "376": {"type": "MIPS_HI16", "symbol": "", "original": "_end"}, "380": {"type": "MIPS_HI16", "symbol": "", "original": "_heap_size"}, "384": {"type": "MIPS_LO16", "symbol": "", "original": "_end"}, "388": {"type": "MIPS_LO16", "symbol": "", "original": "_heap_size"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}, "440": {"type": "MIPS_26", "symbol": "Exit"}}}}, "abc9887ae1fc7ee88d8933c52c2610d4112cf5fc": {"ec1450dc": {"type": "FUNCTION", "size": 160, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.2.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "48": {"type": "MIPS_HI16", "symbol": "_root"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "68": {"type": "MIPS_LO16", "symbol": "_root"}, "112": {"type": "MIPS_26", "symbol": "_InitSys"}, "120": {"type": "MIPS_26", "symbol": "FlushCache"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "_args"})PS2SDB", 8192}, + std::string_view{R"PS2SDB(, "144": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}, "152": {"type": "MIPS_26", "symbol": "Exit"}}}}, "993da063f6cb2bc499905693cdc1dbf1146a785d": {"4b0688f6": {"type": "FUNCTION", "size": 160, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.1.1"], "compiler_versions": ["2.3.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "56": {"type": "MIPS_HI16", "symbol": "_root"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "76": {"type": "MIPS_LO16", "symbol": "_root"}, "120": {"type": "MIPS_26", "symbol": "InitThread"}, "128": {"type": "MIPS_26", "symbol": "FlushCache"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "152": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "692f664801504f85b4dae1def23774b37e328e4c": {"ec1450dc": {"type": "FUNCTION", "size": 160, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.2.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "48": {"type": "MIPS_HI16", "symbol": "_root"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "68": {"type": "MIPS_LO16", "symbol": "_root"}, "112": {"type": "MIPS_26", "symbol": "_InitSys"}, "120": {"type": "MIPS_26", "symbol": "FlushCache"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "144": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}, "152": {"type": "MIPS_26", "symbol": "Exit"}}}}, "4a252fc9de813cff43fe142d10b99e26c12cd76c": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "b245b4426970ec8d14974feff91d3baad093f228": {"67ade030": {"type": "FUNCTION", "size": 152, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "56": {"type": "MIPS_HI16", "symbol": "_root"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "76": {"type": "MIPS_LO16", "symbol": "_root"}, "120": {"type": "MIPS_26", "symbol": "FlushCache"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "144": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "fc84b7cf63260c06fd50b33c432bee82ccd197cc": {"67ade030": {"type": "FUNCTION", "size": 152, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "56": {"type": "MIPS_HI16", "symbol": "_root"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "76": {"type": "MIPS_LO16", "symbol": "_root"}, "120": {"type": "MIPS_26", "symbol": "FlushCache"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "144": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "1de0d80d6df8a62f9cf8ac4451512d461738f468": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "00cb170e63f13149ea8a2d5591ddc7e113926add": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "45abef32c0ff3050848521d5d927b18bfe9a5ed8": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "3c5cb26b3281c37d5fe2c66a4f7b1025412d2107": {"67ade030": {"type": "FUNCTION", "size": 152, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "56": {"type": "MIPS_HI16", "symbol": "_root"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "76": {"type": "MIPS_LO16", "symbol": "_root"}, "120": {"type": "MIPS_26", "symbol": "FlushCache"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "144": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "b2fe7834afdb49ff13757e25926e7926471bb4c2": {"4b0688f6": {"type": "FUNCTION", "size": 160, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.1.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "56": {"type": "MIPS_HI16", "symbol": "_root"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "76": {"type": "MIPS_LO16", "symbol": "_root"}, "120": {"type": "MIPS_26", "symbol": "InitThread"}, "128": {"type": "MIPS_26", "symbol": "FlushCache"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "152": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "10fc3bcf380c973904ca1194a92409d9274f72da": {"4b0688f6": {"type": "FUNCTION", "size": 160, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.1.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "56")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: {"type": "MIPS_HI16", "symbol": "_root"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "76": {"type": "MIPS_LO16", "symbol": "_root"}, "120": {"type": "MIPS_26", "symbol": "InitThread"}, "128": {"type": "MIPS_26", "symbol": "FlushCache"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "152": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "891ff571151914502185daa81f269b2a9f279d30": {"4b0688f6": {"type": "FUNCTION", "size": 160, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.1.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "56": {"type": "MIPS_HI16", "symbol": "_root"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "76": {"type": "MIPS_LO16", "symbol": "_root"}, "120": {"type": "MIPS_26", "symbol": "InitThread"}, "128": {"type": "MIPS_26", "symbol": "FlushCache"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "152": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "976ed22bf453b2ce04d9aad39310810224c8bd96": {"67ade030": {"type": "FUNCTION", "size": 152, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "56": {"type": "MIPS_HI16", "symbol": "_root"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "76": {"type": "MIPS_LO16", "symbol": "_root"}, "120": {"type": "MIPS_26", "symbol": "FlushCache"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "144": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "b54d3cbb260c5ab3181c6d2ff2cc8fd8f0b417d7": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "ce4b62f1f9a886c693dd4ea8d52b2aaabf159c21": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "f97e3650053efb12aa6f31baec008cf81fde5400": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "e018d0867519a70dd6e451970c1cfe01b6bafa52": {"4b0688f6": {"type": "FUNCTION", "size": 160, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.1.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "56": {"type": "MIPS_HI16", "symbol": "_root"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "76": {"type": "MIPS_LO16", "symbol": "_root"}, "120": {"type": "MIPS_26", "symbol": "InitThread"}, "128": {"type": "MIPS_26", "symbol": "FlushCache"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "152": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "da9e77a4a1cd7757804a868473e372df77f948af": {"4b0688f6": {"type": "FUNCTION", "size": 160, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.1.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "56": {"type": "MIPS_HI16", "symbol": "_root"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "76": {"type": "MIPS_LO16", "symbol": "_root"}, "120": {"type": "MIPS_26", "symbol": "InitThread"}, "128": {"type": "MIPS_26", "symbol": "FlushCache"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "152": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "54c5eabfe1cf7355d81fad0d4e18155527013ea0": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "2a18f7f8f00d3652924cfad14ec97f170a5b90ce": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "ce43e99f24b7a76ddb605af9331fb770a977a56c": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbo)PS2SDB", 8192}, + std::string_view{R"PS2SDB(l": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "8706bc0b89d5fdc8f540e4a4547fa5d0270c60f4": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "bdab5ed834bedb9a5e7015e29e39e3b8dd13effc": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "6cd8975b8a99d3f4ba03ce353781397f59a4451e": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "10006a593a306264c6bab231b2b038aa5343f9a5": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "72a3521fd4485815ce7ce71da1f7e2ca35207c1a": {"ec1450dc": {"type": "FUNCTION", "size": 160, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "48": {"type": "MIPS_HI16", "symbol": "_root"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "68": {"type": "MIPS_LO16", "symbol": "_root"}, "112": {"type": "MIPS_26", "symbol": "_InitSys"}, "120": {"type": "MIPS_26", "symbol": "FlushCache"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "144": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}, "152": {"type": "MIPS_26", "symbol": "Exit"}}}}, "769bd5d35e0904a1ae7113c5e66972b33354a3a3": {"ec1450dc": {"type": "FUNCTION", "size": 160, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "48": {"type": "MIPS_HI16", "symbol": "_root"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "68": {"type": "MIPS_LO16", "symbol": "_root"}, "112": {"type": "MIPS_26", "symbol": "_InitSys"}, "120": {"type": "MIPS_26", "symbol": "FlushCache"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "144": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}, "152": {"type": "MIPS_26", "symbol": "Exit"}}}}, "8062c2b8bd0fa9d619e9618cbf132abd4aa4d969": {"ec1450dc": {"type": "FUNCTION", "size": 160, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.7"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "48": {"type": "MIPS_HI16", "symbol": "_root"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "68": {"type": "MIPS_LO16", "symbol": "_root"}, "112": {"type": "MIPS_26", "symbol": "_InitSys"}, "120": {"type": "MIPS_26", "symbol": "FlushCache"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "144": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}, "152": {"type": "MIPS_26", "symbol": "Exit"}}}}, "ed41256729f2362b4ce1825af9ad00cacf6a16e5": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "6fbf83a5bd3a8653ae8caa5b4466717303c23e5b": {"67ade030": {"type": "FUNCTION", "size": 152, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "56": {"type": "MIPS_HI16", "symbol": "_root"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "76": {"type": "MIPS_LO16", "symbol": "_root"}, "120": {"type": "MIPS_26", "symbol": "FlushCache"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "144": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "7e65920d49183770849a61548a761716b9deb372": {"67ade030": {"type": "FUNCTION", "size": 152, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "56": {"type": "MIPS_HI16", "symbol": "_root"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "76": {"type": "MIPS_LO16", "symbol": "_root"}, "120": {"type": "MIPS_26", "symbol": "FlushCache"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "144": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "9bef2e181314021ff6abdd2a1c7f61be2bf406b4": {"4b0688f6": {"type": "FUNCTION", "size": 160, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(sdk": ["2.1.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "56": {"type": "MIPS_HI16", "symbol": "_root"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "76": {"type": "MIPS_LO16", "symbol": "_root"}, "120": {"type": "MIPS_26", "symbol": "InitThread"}, "128": {"type": "MIPS_26", "symbol": "FlushCache"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "152": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "f877f6fb84e6fe1f69449c30ab52258314597fbf": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "325f394e0cb9030b6f669f4aa227eab8026702a7": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "a1b42359ef2f3466a7d046ecae85944e7a95a5cd": {"67ade030": {"type": "FUNCTION", "size": 152, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.1"], "compiler_versions": ["2.3.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "56": {"type": "MIPS_HI16", "symbol": "_root"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "76": {"type": "MIPS_LO16", "symbol": "_root"}, "120": {"type": "MIPS_26", "symbol": "FlushCache"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "144": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "46142537e9d3df6abce01c102662239eca4c24e2": {"4b0688f6": {"type": "FUNCTION", "size": 160, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.1.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "56": {"type": "MIPS_HI16", "symbol": "_root"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "76": {"type": "MIPS_LO16", "symbol": "_root"}, "120": {"type": "MIPS_26", "symbol": "InitThread"}, "128": {"type": "MIPS_26", "symbol": "FlushCache"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "152": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "0aa37b07014a89d8df4647100aaddcd3e6d0cfca": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "ff8af2c8216d3a77d37c0489b14ff7db0135f530": {"ec1450dc": {"type": "FUNCTION", "size": 160, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.2.1"], "compiler_versions": ["2.3.1.01"], "relocations": {"44": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "48": {"type": "MIPS_HI16", "symbol": "_root"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "68": {"type": "MIPS_LO16", "symbol": "_root"}, "112": {"type": "MIPS_26", "symbol": "_InitSys"}, "120": {"type": "MIPS_26", "symbol": "FlushCache"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "144": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}, "152": {"type": "MIPS_26", "symbol": "Exit"}}}}, "84e7ae2e8015c11a8298a6da1837b4fd06a2fc26": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "c9ba2294cca67aa74df47aaf8600baa4fb046e5b": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "fb002bb2942ce78811ff46157400347494299c69": {"4b0688f6": {"type": "FUNCTION", "size": 160, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.1.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "56": {"type": "MIPS_HI16", "symbol": "_root"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "76": {"type": "MIPS_LO16", "symbol": "_root"}, "120": {"type": "MIPS_26", "symbol": "InitThread"}, "128": {"type": "MIPS_26", "symbol": "FlushCache"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "152": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "c48989b5009040c0cfa39bb703dffe03a913d260": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"t)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ype": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "d18edf594bb7753452a858e7c148bc11dc3b1513": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "8264b7d6c2bb7f39508b423bb771e24a8becc2a6": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "64bd7146fa1c233963df65784eebf11ca5f2d5f1": {"67ade030": {"type": "FUNCTION", "size": 152, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "56": {"type": "MIPS_HI16", "symbol": "_root"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "76": {"type": "MIPS_LO16", "symbol": "_root"}, "120": {"type": "MIPS_26", "symbol": "FlushCache"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "144": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "b7bff437119d2d66103b17edfb58abcd99df7efe": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "1d0e69b6f114059a8f60a2d4736a862e8ffb62b5": {"4b0688f6": {"type": "FUNCTION", "size": 160, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.1.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "56": {"type": "MIPS_HI16", "symbol": "_root"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "76": {"type": "MIPS_LO16", "symbol": "_root"}, "120": {"type": "MIPS_26", "symbol": "InitThread"}, "128": {"type": "MIPS_26", "symbol": "FlushCache"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "152": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "a1eade5990e02b92de52f8920f6ddc04a00dadbe": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "eb277e626129ddb69f973fd4d46a0f954ddd098a": {"ec1450dc": {"type": "FUNCTION", "size": 160, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.2.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "48": {"type": "MIPS_HI16", "symbol": "_root"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "68": {"type": "MIPS_LO16", "symbol": "_root"}, "112": {"type": "MIPS_26", "symbol": "_InitSys"}, "120": {"type": "MIPS_26", "symbol": "FlushCache"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "144": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}, "152": {"type": "MIPS_26", "symbol": "Exit"}}}}, "976bc984aef5652d98d11302d6e5d821fc10642c": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "6e7e00c660d3b72b3979ef1ec3cb7468cbc93c10": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "fd48b38da5fdb23b8eda1910485fd349806eaaa9": {"4b0688f6": {"type": "FUNCTION", "size": 160, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.1.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "56": {"type": "MIPS_HI16", "symbol": "_root"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "76": {"type": "MIPS_LO16", "symbol": "_root"}, "120": {"type": "MIPS_26", "symbol": "InitThread"}, "128": {"type": "MIPS_26", "symbol": "FlushCache"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "152": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "76251ff3072a6c3)PS2SDB", 8192}, + std::string_view{R"PS2SDB(74313bd7bef26de4cd2d20e20": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "070f2b795c78e9455f0f0df54e74af9762704ea1": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "bb726ff67eb3c44f7f4ea3c9f1659b1818e51f99": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "b524a2f7765f749470f99d2eb9319178f577334b": {"7a85ca7e": {"type": "FUNCTION", "size": 160, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.2.0"], "compiler_versions": ["2.3.1.01"], "relocations": {"44": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "48": {"type": "MIPS_HI16", "symbol": "_root"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "68": {"type": "MIPS_LO16", "symbol": "_root"}, "112": {"type": "MIPS_26", "symbol": "InitThread"}, "120": {"type": "MIPS_26", "symbol": "FlushCache"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "144": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}, "152": {"type": "MIPS_26", "symbol": "Exit"}}}}, "7a6c7bfdeafe204b12306312bde2eacbcf8ba8a8": {"67ade030": {"type": "FUNCTION", "size": 152, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.1"], "compiler_versions": ["2.3.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "56": {"type": "MIPS_HI16", "symbol": "_root"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "76": {"type": "MIPS_LO16", "symbol": "_root"}, "120": {"type": "MIPS_26", "symbol": "FlushCache"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "144": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "9973a32f08742f50255392b1aac06b7cb69c3114": {"ec1450dc": {"type": "FUNCTION", "size": 160, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.2.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"44": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "48": {"type": "MIPS_HI16", "symbol": "_root"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "68": {"type": "MIPS_LO16", "symbol": "_root"}, "112": {"type": "MIPS_26", "symbol": "_InitSys"}, "120": {"type": "MIPS_26", "symbol": "FlushCache"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "144": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}, "152": {"type": "MIPS_26", "symbol": "Exit"}}}}, "b3674c8a3c2f746c4d9a045ff14f35d286f8da67": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "20be5cb052bf2e81e0871cd92b845368c8c141f6": {"ec1450dc": {"type": "FUNCTION", "size": 160, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.2.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "48": {"type": "MIPS_HI16", "symbol": "_root"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "68": {"type": "MIPS_LO16", "symbol": "_root"}, "112": {"type": "MIPS_26", "symbol": "_InitSys"}, "120": {"type": "MIPS_26", "symbol": "FlushCache"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "144": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}, "152": {"type": "MIPS_26", "symbol": "Exit"}}}}, "61adc33df01450ec9bd2bdf7a7395f46794d5d13": {"4b0688f6": {"type": "FUNCTION", "size": 160, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.1.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "56": {"type": "MIPS_HI16", "symbol": "_root"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "76": {"type": "MIPS_LO16", "symbol": "_root"}, "120": {"type": "MIPS_26", "symbol": "InitThread"}, "128": {"type": "MIPS_26", "symbol": "FlushCache"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "152": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "d337da0435d306c5cc9943fb04709ab69c24e437": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "5ea939c7fa95f4d9399c3f4a7789671176b0346f": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "727afbae553499cd76b89bf2c3494a1526c03917": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "1fe1522b97eac76ba728090ddd3eb4b2a90942b9": {"4b0688f6": {"type": "FUNCTION", "size": 160, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "56": {"type": "MIPS_HI16", "symbol": "_root"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "76": {"type": "MIPS_LO16", "symbol": "_root"}, "120": {"type": "MIPS_26", "symbol": "InitThread"}, "128": {"type": "MIPS_26", "symbol": "FlushCache"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "152": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "e2bb950a868ecd748bdeff509cea88b4b45a142d": {"4b0688f6": {"type": "FUNCTION", "size": 160, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "56": {"type": "MIPS_HI16", "symbol": "_root"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "76": {"type": "MIPS_LO16", "symbol": "_root"}, "120": {"type": "MIPS_26", "symbol": "InitThread"}, "128": {"type": "MIPS_26", "symbol": "FlushCache"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "152": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "da62f57274d98b6f5e5a5100d329a4334d6b9ea5": {"4b0688f6": {"type": "FUNCTION", "size": 160, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "56": {"type": "MIPS_HI16", "symbol": "_root"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "76": {"type": "MIPS_LO16", "symbol": "_root"}, "120": {"type": "MIPS_26", "symbol": "InitThread"}, "128": {"type": "MIPS_26", "symbol": "FlushCache"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "152": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "db946fd818573c2480515c0d0a7a922b157d6d4c": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "7b58acdfa7c552f25953e254af595b52319dac59": {"066c21b3": {"type": "FUNCTION", "size": 496, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"316": {"type": "MIPS_26", "symbol": "<_start+292>", "original": ".text"}, "360": {"type": "MIPS_26", "symbol": "<_start+336>", "original": ".text"}, "392": {"type": "MIPS_26", "symbol": "<_start+368>", "original": ".text"}, "412": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "416": {"type": "MIPS_HI16", "symbol": "_root"}, "432": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "436": {"type": "MIPS_LO16", "symbol": "_root"}, "480": {"type": "MIPS_26", "symbol": "_InitSys"}, "488": {"type": "MIPS_26", "symbol": "FlushCache"}}}}, "d699b8b2fa97c177c58143a1402f8fa5ec8b9513": {"066c21b3": {"type": "FUNCTION", "size": 496, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"316": {"type": "MIPS_26", "symbol": "<_start+292>", "original": ".text"}, "360": {"type": "MIPS_26", "symbol": "<_start+336>", "original": ".text"}, "392": {"type": "MIPS_26", "symbol": "<_start+368>", "original": ".text"}, "412": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "416": {"type": "MIPS_HI16", "symbol": "_root"}, "432": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "436": {"type": "MIPS_LO16", "symbol": "_root"}, "480": {"type": "MIPS_26", "symbol": "_InitSys"}, "488": {"type": "MIPS_26", "symbol": "FlushCache"}}}}, "66048923764b983c6bb662a93dfdf8fe73bc919c": {"066c21b3": {"type": "FUNCTION", "size": 496, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"316": {"type": "MIPS_26", "symbol": "<_start+292>", "original": ".text"}, "360": {"type": "MIPS_26", "symbol": "<_start+336>", "original": ".text"}, "392": {"type": "MIPS_26", "symbol": "<_start+368>", "original": ".text"}, "412": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "416": {"type": "MIPS_HI16", "symbol": "_root"}, "432": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "436": {"type": "MIPS_LO16", "symbol": "_root"}, "480": {"type": "MIPS_26", "symbol": "_InitSys"}, "488": {"type": "MIPS_26", "symbol": "FlushCache"}}}}, "dc6773c04e43cd669c704d7014b6990795d8e57e": {"066c21b3": {"type": "FUNCTION", "size": 496, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"316": {"type": "MIPS_26", "symbol": "<_start+292>", "original": ".text"}, "360": {"type": "MIPS_26", "symbol": "<_start+336>", "original": ".text"}, "392": {"type": "MIPS_26", "symbol": "<_start+368>", "original": ".text"}, "412": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "416": {"type": "MIPS_HI16", "symbol": "_root"}, "432": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "436": {"type": "MIPS_LO16", "symbol": "_root"}, "480": {"type": "MIPS_26", "symbol": "_InitSys"}, "488": {"type": "MIPS_26", "symbol": "FlushCache"}}}}, "a5a2a806c65b5ca56f7a014c7bee6018cff7d984": {"066c21b3": {"type": "FUNCTION", "size": 496, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"316": {"type": "MIPS_26", "symbol": "<_start+292>", "original": ".text"}, "360": {"type": "MIPS_26", "symbol": "<_start+336>", "original": ".text"}, "392": {"type": "MIPS_26", "symbol": "<_start+368>", "original": ".text"}, "412": {"type": "MIPS_HI16", "sym)PS2SDB", 8192}, + std::string_view{R"PS2SDB(bol": "", "original": "_args"}, "416": {"type": "MIPS_HI16", "symbol": "_root"}, "432": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "436": {"type": "MIPS_LO16", "symbol": "_root"}, "480": {"type": "MIPS_26", "symbol": "_InitSys"}, "488": {"type": "MIPS_26", "symbol": "FlushCache"}}}}, "80ba67f09c99ee469433b13b80f1aa3086a8ddab": {"066c21b3": {"type": "FUNCTION", "size": 496, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"316": {"type": "MIPS_26", "symbol": "<_start+292>", "original": ".text"}, "360": {"type": "MIPS_26", "symbol": "<_start+336>", "original": ".text"}, "392": {"type": "MIPS_26", "symbol": "<_start+368>", "original": ".text"}, "412": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "416": {"type": "MIPS_HI16", "symbol": "_root"}, "432": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "436": {"type": "MIPS_LO16", "symbol": "_root"}, "480": {"type": "MIPS_26", "symbol": "_InitSys"}, "488": {"type": "MIPS_26", "symbol": "FlushCache"}}}}, "fc03f340b081f8d8a3447e39480528bd47e0f05d": {"67ade030": {"type": "FUNCTION", "size": 152, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.0.0"], "compiler_versions": ["2.3.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "56": {"type": "MIPS_HI16", "symbol": "_root"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "76": {"type": "MIPS_LO16", "symbol": "_root"}, "120": {"type": "MIPS_26", "symbol": "FlushCache"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "144": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "027c3271c842507c2b57b09fcab60b759e3de480": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "c97c0bee30968d40daa0115edb9bd299161a28d4": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.6.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "e2054efbf45653ef6c468b006bfc8bbd2b994654": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "d585436dc58da855ebf45521c41241b4096a1345": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "c43ce829209de1e97015d94868d6846717c8485f": {"4b0688f6": {"type": "FUNCTION", "size": 160, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.1.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "56": {"type": "MIPS_HI16", "symbol": "_root"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "76": {"type": "MIPS_LO16", "symbol": "_root"}, "120": {"type": "MIPS_26", "symbol": "InitThread"}, "128": {"type": "MIPS_26", "symbol": "FlushCache"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "152": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "85358e1c25264d1f61826eb9b92ce12d6f64fd1a": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "41e09ea5c421e29e3d507f80374ab8df194f5580": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "bc17be467a7af4e0724ea8b8929a3881e657f0ba": {"066c21b3": {"type": "FUNCTION", "size": 496, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"316": {"type": "MIPS_26", "symbol": "<_start+292>", "original": ".text"}, "360": {"type": "MIPS_26", "symbol": "<_start+336>", "original": ".text"}, "392": {"type": "MIPS_26", "symbol": "<_start+368>", "original": ".text"}, "412": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "416": {"type": "MIPS_HI16", "symbol": "_root"}, "432": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "436": {"type": "MIPS_LO16", "symbol": "_root"}, "480": {"type": "MIPS_26", "symbol": "_InitSys"}, "488": {"type": "MIPS_26", "symbol": "FlushCache"}}}}, "c850dbd213e5a17)PS2SDB", 8192}, + std::string_view{R"PS2SDB(42231b78a7af126da0201a41b": {"066c21b3": {"type": "FUNCTION", "size": 496, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"316": {"type": "MIPS_26", "symbol": "<_start+292>", "original": ".text"}, "360": {"type": "MIPS_26", "symbol": "<_start+336>", "original": ".text"}, "392": {"type": "MIPS_26", "symbol": "<_start+368>", "original": ".text"}, "412": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "416": {"type": "MIPS_HI16", "symbol": "_root"}, "432": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "436": {"type": "MIPS_LO16", "symbol": "_root"}, "480": {"type": "MIPS_26", "symbol": "_InitSys"}, "488": {"type": "MIPS_26", "symbol": "FlushCache"}}}}, "ca23d5f91e3268415ca8c6c193722659873da99d": {"67ade030": {"type": "FUNCTION", "size": 152, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.0.7"], "compiler_versions": ["2.3.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "56": {"type": "MIPS_HI16", "symbol": "_root"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "76": {"type": "MIPS_LO16", "symbol": "_root"}, "120": {"type": "MIPS_26", "symbol": "FlushCache"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "144": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "2b008aa517f05bacae5cb79c055c4f1150e228fa": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "1d861a1babcf85fc7974841d43b964483b62ed01": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "2ed66c2de2a02cea3ca154a4f5a324974a93337e": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "b401b2ee474f2fbaf451261414aff7950161a440": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "4543d0451963d094a87ddb84c3a421f1414b55f4": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.6.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "e1434c3ca1dbcdf31143a1178ab6863e69009947": {"67ade030": {"type": "FUNCTION", "size": 152, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "56": {"type": "MIPS_HI16", "symbol": "_root"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "76": {"type": "MIPS_LO16", "symbol": "_root"}, "120": {"type": "MIPS_26", "symbol": "FlushCache"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "144": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "1a17f175bc796c4e27418ce6f2fb1f39ec445b27": {"67ade030": {"type": "FUNCTION", "size": 152, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "56": {"type": "MIPS_HI16", "symbol": "_root"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "76": {"type": "MIPS_LO16", "symbol": "_root"}, "120": {"type": "MIPS_26", "symbol": "FlushCache"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "144": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "fc48f716346a8787b05510cc47de03c18310bc5e": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "58201db13d9ccc9fcf3fc59cea07daf175d2493f": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": )PS2SDB", 8192}, + std::string_view{R"PS2SDB("_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "e2d535c269cd2560bfb4af14e4ecc919c1a3635f": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "4ebd05b28e50e72b9033f8afd00b78463b5b4543": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "6124a1395e242659ad79784b4a1ca8d08ded8dfc": {"67ade030": {"type": "FUNCTION", "size": 152, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.0.7"], "compiler_versions": ["2.3.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "56": {"type": "MIPS_HI16", "symbol": "_root"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "76": {"type": "MIPS_LO16", "symbol": "_root"}, "120": {"type": "MIPS_26", "symbol": "FlushCache"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "144": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "49d8dca2d86a4b825bfc0945548d8acfce9e497b": {"67ade030": {"type": "FUNCTION", "size": 152, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "56": {"type": "MIPS_HI16", "symbol": "_root"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "76": {"type": "MIPS_LO16", "symbol": "_root"}, "120": {"type": "MIPS_26", "symbol": "FlushCache"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "144": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "250ca465badc49ef9aa886b8d5aa4ed42b320d8c": {"afe4bc04": {"type": "FUNCTION", "size": 160, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.0"], "compiler_versions": ["2.3.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_HI16", "symbol": "_root", "original": ".text"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_LO16", "symbol": "_root", "original": ".text"}, "120": {"type": "MIPS_26", "symbol": "FlushCache"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}, "152": {"type": "MIPS_26", "symbol": "Exit"}}}}, "f82a3bb7f7076ad24b4ec89f63e332497299a5f1": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "f706274d89084588c873c2b34ef82c862c4c081c": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "0607366c8a3c2ccfbc1ac6f7f38355f9ce4bc5f0": {"066c21b3": {"type": "FUNCTION", "size": 496, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"316": {"type": "MIPS_26", "symbol": "<_start+292>", "original": ".text"}, "360": {"type": "MIPS_26", "symbol": "<_start+336>", "original": ".text"}, "392": {"type": "MIPS_26", "symbol": "<_start+368>", "original": ".text"}, "412": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "416": {"type": "MIPS_HI16", "symbol": "_root"}, "432": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "436": {"type": "MIPS_LO16", "symbol": "_root"}, "480": {"type": "MIPS_26", "symbol": "_InitSys"}, "488": {"type": "MIPS_26", "symbol": "FlushCache"}}}}, "88787f0a7560be75dcc20a76ef66974ee63785dc": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "836417d5f3a6ca06635dac8d05e121f1cb25b4be": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "1cbaa987e1f38592da96e40e316b2e825)PS2SDB", 8192}, + std::string_view{R"PS2SDB(b102022": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "baf9c6bf5f45c423f16cf1680669c869859205bb": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "a784db24e3fe758d91f1441918016716ff79d2f4": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "6ec4ba0cdf66a358c7e2bf6d7f5d0e5d5e2bdd37": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "adedf3912cda47d7cadd3a41af386b6a3b2c8e8c": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.6.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "c794db684427cdf10cb962b0dd3cc7104e95da17": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "d447f0d892921a028eaa2ba0ebc4ccb6b3db50a3": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "14ebde3ab891429460102b6bb485d74483a4bd1b": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "bb8c6b6a577de2dfbf9633dad59d2ec8c073164a": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "f69677da7982da470cd6c79555f2229bc0b247b6": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "67aaebdd8ee2df86e621c1d12b1e4d1b9b62859d": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI1)PS2SDB", 8192}, + std::string_view{R"PS2SDB(6", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "716ebeeb545bbd6aa0af72cfbf947db6292ed649": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "1321c1cea23eba73697d62d02b934c5db94ec532": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "3b7e7285637d9164caef8b5dae8204f376bfc37a": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "c64da60fc60e5874f2b7735bc3405769ca230b33": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "e7f0fb048246e3646cee6193e2b5bc292ea56a10": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "ad5ce99dbd74b73ebfbce3f2bbaf579c3fb5cb1d": {"67ade030": {"type": "FUNCTION", "size": 152, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "56": {"type": "MIPS_HI16", "symbol": "_root"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "76": {"type": "MIPS_LO16", "symbol": "_root"}, "120": {"type": "MIPS_26", "symbol": "FlushCache"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "144": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "22e0b59a49b7265de814f9b42273634a5552549b": {"67ade030": {"type": "FUNCTION", "size": 152, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "56": {"type": "MIPS_HI16", "symbol": "_root"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "76": {"type": "MIPS_LO16", "symbol": "_root"}, "120": {"type": "MIPS_26", "symbol": "FlushCache"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "144": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "ca62631902f9428287b036e3919dae58056bdf35": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "92ac9059c76d9ed35bd2d7518d900c60738b00a8": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "cd53ed16edb2ef9b2dd610aacaa9ec5777fe433c": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": "main", "scope": "EXTERNAL"}}}}, "8cb1dcad251b529d9b0cc128ad76a097c578de3d": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "f9e0c5177e4c47e943b39f2f74cf0f578174b2ee": {"066c21b3": {"type": "FUNCTION", "size": 496, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"316": {"type": "MIPS_26", "symbol": "<_start+292>", "original": ".text"}, "360": {"type": "MIPS_26", "symbol": "<_start+336>", "original": ".text"}, "392": {"type": "MIPS_26", "symbol": "<_start+368>", "original": ".text"}, "412": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "416": {"type": "MIPS_HI16", "symbol": "_root"}, "432": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "436": {"type": "MIPS_LO16", "symbol": "_root"}, "480": {"type": "MIPS_26", "symbol": "_InitSys"}, "488": {"type": "MIPS_26", "symbol": "FlushCache"}}}}, "5dad6267a5fac35479512be6d6bfc08cf25eb182": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "65dcdc6d4e7b1be547da72734d926d10df0b724a": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "6b67d144a654d900c8ad9e7b46ecd375d540434e": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "04f22b2ad4ff0c7fca293ba44fa968ec05d65b04": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "1e96bffd7549d1ff796976995e2f8033660c03c5": {"67ade030": {"type": "FUNCTION", "size": 152, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "56": {"type": "MIPS_HI16", "symbol": "_root"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "76": {"type": "MIPS_LO16", "symbol": "_root"}, "120": {"type": "MIPS_26", "symbol": "FlushCache"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "144": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "21c37023956298401fc8c50548884db1f8ae44ba": {"67ade030": {"type": "FUNCTION", "size": 152, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.0.7"], "compiler_versions": ["2.3.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "56": {"type": "MIPS_HI16", "symbol": "_root"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "76": {"type": "MIPS_LO16", "symbol": "_root"}, "120": {"type": "MIPS_26", "symbol": "FlushCache"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "144": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "7615e654c61e0b97e0c00394b57b01116c18bd64": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "02f663efc1ac0aa3a69d20fad00c1da757c9b355": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "be53df317ed67bdb75f928ceb25f738745ece24b": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "c938957cba24ffefd1cf8ffde3ced5d445a2e02e": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "45dcc18e369b7f19e0646ef435337b8537128974": {"ec1450dc": {"type": "FUNCTION", "size": 160, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.2.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "48": {"type": "MIPS_HI16", "symbol": "_root"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "68": {"type": "MIPS_LO16", "symbol": "_root"}, "112": {"type": "MIPS_26", "symbol": "_InitSys"}, "120": {"type": "MIPS_26", "symbol": "FlushCache"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "144": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}, "152": {"type": "MIPS_26", "symbol": "Exit"}}}}, "859a96ead87d8cab00d6caba201f7799766eb1ce": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "cb3b27e2cf3e6c387d11814399bdf09e84e1350a": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "463b8b815d350572b7db36cc66df03b309c94c1e": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "1d17eec7b1d10b536b7560ab754e3308236da2b2": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "f8750729c176362f626ea7b1abc4e1e957d29453": {"ec1450dc": {"type": "FUNCTION", "size": 160, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.2.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"44": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "48": {"type": "MIPS_HI16", "symbol": "_root"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "68": {"type": "MIPS_LO16", "symbol": "_root"}, "112": {"type": "MIPS_26", "symbol": "_InitSys"}, "120": {"type": "MIPS_26", "symbol": "FlushCache"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "144": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}, "152": {"type": "MIPS_26", "symbol": "Exit"}}}}, "b2b91551387e0ee5a49c3b42ae5042a4c418bb92": {"ec1450dc": {"type": "FUNCTION", "size": 160, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.2.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"44": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "48": {"type": "MIPS_HI16", "symbol": "_root"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "68": {"type": "MIPS_LO16", "symbol": "_root"}, "112": {"type": "MIPS_26", "symbol": "_InitSys"}, "120": {"type": "MIPS_26", "symbol": "FlushCache"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "144": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}, "152": {"type": "MIPS_26", "symbol": "Exit"}}}}, "18710da71d4f8ff68152ddfaf6040c4868720f84": {"ec1450dc": {"type": "FUNCTION", "size": 160, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.2.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"44": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "48": {"type": "MIPS_HI16", "symbol": "_root"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "68": {"type": "MIPS_LO16", "symbol": "_root"}, "112": {"type": "MIPS_26", "symbol": "_InitSys"}, "120": {"type": "MIPS_26", "symbol": "FlushCache"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "144": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}, "152": {"type": "MIPS_26", "symbol": "Exit"}}}}, "34955d9b07b0e6b311ebaab29de7808ec3d247ed": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "35ddc0da4c2f7c972a7a2eed5f7f1156bf0ee76c": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "e9253ce9d88b3b16171363ffddd314b3ef37957a": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "e9bcc582d85a6efb37fa894974d4cdd94f2435b8": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "5513377763db68e7011972d8d78a3a71e76d7248": {"ec1450dc": {"type": "FUNCTION", "size": 160, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.2.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "48": {"type": "MIPS_HI16", "symbol": "_root"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "68": {"type": "MIPS_LO16", "symbol": "_root"}, "112": {"type": "MIPS_26", "symbol": "_InitSys"}, "120": {"type": "MIPS_26", "symbol": "FlushCache"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "144": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}, "152": {"type": "MIPS_26", "symbol": "Exit"}}}}, "1141faa298142b01e77fbe3088cac43ae0453f9c": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "aca7b0f3626ca64a654066538706195377666e97": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "b9242ca6119dbda004ec6761ed32a14ba87c07bc": {"3b85ddc1": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_fbss"}, "4": {"type": "MIPS_HI16", "symbol": "", "original": "_end"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "_fbss"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "_end"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": "_gp"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": "_stack"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": "_stack_size"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": "_gp"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": "_stack"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "_stack_size"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": "_end"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": "_heap_size"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": "_end"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": "_heap_size"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "f214263618da46643adcd5aeffc720712bcaf8c6": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "3fc5dceb2b99638b9efbb4fce39bf9840757843f": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbo)PS2SDB", 8192}, + std::string_view{R"PS2SDB(l": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "5a90de7f1139c8a61b447dc24390ab107c0ea9de": {"066c21b3": {"type": "FUNCTION", "size": 496, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"316": {"type": "MIPS_26", "symbol": "<_start+292>", "original": ".text"}, "360": {"type": "MIPS_26", "symbol": "<_start+336>", "original": ".text"}, "392": {"type": "MIPS_26", "symbol": "<_start+368>", "original": ".text"}, "412": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "416": {"type": "MIPS_HI16", "symbol": "_root"}, "432": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "436": {"type": "MIPS_LO16", "symbol": "_root"}, "480": {"type": "MIPS_26", "symbol": "_InitSys"}, "488": {"type": "MIPS_26", "symbol": "FlushCache"}}}}, "6cb8d868f864170203be69f326e2746969f82698": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "e9a51daba1efb57e66fdb758a6b76824c3c581a8": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "046a1a7fc98424fb18aaea0000c93a88c3f80a02": {"066c21b3": {"type": "FUNCTION", "size": 496, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"316": {"type": "MIPS_26", "symbol": "<_start+292>", "original": ".text"}, "360": {"type": "MIPS_26", "symbol": "<_start+336>", "original": ".text"}, "392": {"type": "MIPS_26", "symbol": "<_start+368>", "original": ".text"}, "412": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "416": {"type": "MIPS_HI16", "symbol": "_root"}, "432": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "436": {"type": "MIPS_LO16", "symbol": "_root"}, "480": {"type": "MIPS_26", "symbol": "_InitSys"}, "488": {"type": "MIPS_26", "symbol": "FlushCache"}}}}, "7a1c4a081c24bcf85058f0a98ec9a4b967114c03": {"066c21b3": {"type": "FUNCTION", "size": 496, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"316": {"type": "MIPS_26", "symbol": "<_start+292>", "original": ".text"}, "360": {"type": "MIPS_26", "symbol": "<_start+336>", "original": ".text"}, "392": {"type": "MIPS_26", "symbol": "<_start+368>", "original": ".text"}, "412": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "416": {"type": "MIPS_HI16", "symbol": "_root"}, "432": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "436": {"type": "MIPS_LO16", "symbol": "_root"}, "480": {"type": "MIPS_26", "symbol": "_InitSys"}, "488": {"type": "MIPS_26", "symbol": "FlushCache"}}}}, "e15136c3d5dacb7fb62c2076449058eee2a7ec76": {"066c21b3": {"type": "FUNCTION", "size": 496, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"316": {"type": "MIPS_26", "symbol": "<_start+292>", "original": ".text"}, "360": {"type": "MIPS_26", "symbol": "<_start+336>", "original": ".text"}, "392": {"type": "MIPS_26", "symbol": "<_start+368>", "original": ".text"}, "412": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "416": {"type": "MIPS_HI16", "symbol": "_root"}, "432": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "436": {"type": "MIPS_LO16", "symbol": "_root"}, "480": {"type": "MIPS_26", "symbol": "_InitSys"}, "488": {"type": "MIPS_26", "symbol": "FlushCache"}}}}, "1ad6e36ada4d7e3a3c8818e4a2a885b36e6df05b": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "28006dd62ee15a4bb0d7c0ce4ea53ef1aaaf23bb": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "c693f93fe0a276fcaab5a8240f0ddf6aa2a5ad50": {"066c21b3": {"type": "FUNCTION", "size": 496, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"316": {"type": "MIPS_26", "symbol": "<_start+292>", "original": ".text"}, "360": {"type": "MIPS_26", "symbol": "<_start+336>", "original": ".text"}, "392": {"type": "MIPS_26", "symbol": "<_start+368>", "original": ".text"}, "412": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "416": {"type": "MIPS_HI16", "symbol": "_root"}, "432": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "436": {"type": "MIPS_LO16", "symbol": "_root"}, "480": {"type": "MIPS_26", "symbol": "_InitSys"}, "488": {"type": "MIPS_26", "symbol": "FlushCache"}}}}, "26a29e558cdbbf1ee2a935803d9a261b134dc12f": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(EXTERNAL"}}}}, "bd75887f78949176cd1430a798d163727c1da65f": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "09d16520177162826a6e442695dcd420a3667c56": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "e697509e4dccc0c2ee6ab89fd22793728aedfc0c": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "bf241d9a5803c95de631a657ed34fe152f82cf8d": {"295a6791": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "_root", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "_root", "original": ".text"}, "124": {"type": "MIPS_26", "symbol": "FlushCache"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}, "156": {"type": "MIPS_26", "symbol": "Exit"}}}}, "aecb80ca2372eb66c9a42da423421d5b9569e71f": {"295a6791": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "_root", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "_root", "original": ".text"}, "124": {"type": "MIPS_26", "symbol": "FlushCache"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}, "156": {"type": "MIPS_26", "symbol": "Exit"}}}}, "3ef908cbee8f62dc3a699d0d14d3ee24200e6ca5": {"066c21b3": {"type": "FUNCTION", "size": 496, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"316": {"type": "MIPS_26", "symbol": "<_start+292>", "original": ".text"}, "360": {"type": "MIPS_26", "symbol": "<_start+336>", "original": ".text"}, "392": {"type": "MIPS_26", "symbol": "<_start+368>", "original": ".text"}, "412": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "416": {"type": "MIPS_HI16", "symbol": "_root"}, "432": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "436": {"type": "MIPS_LO16", "symbol": "_root"}, "480": {"type": "MIPS_26", "symbol": "_InitSys"}, "488": {"type": "MIPS_26", "symbol": "FlushCache"}}}}, "f6193171d0979b61bbd784c6347d6472ef6ae6ee": {"066c21b3": {"type": "FUNCTION", "size": 496, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"316": {"type": "MIPS_26", "symbol": "<_start+292>", "original": ".text"}, "360": {"type": "MIPS_26", "symbol": "<_start+336>", "original": ".text"}, "392": {"type": "MIPS_26", "symbol": "<_start+368>", "original": ".text"}, "412": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "416": {"type": "MIPS_HI16", "symbol": "_root"}, "432": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "436": {"type": "MIPS_LO16", "symbol": "_root"}, "480": {"type": "MIPS_26", "symbol": "_InitSys"}, "488": {"type": "MIPS_26", "symbol": "FlushCache"}}}}, "3b5af5e92c0b769b5a2b434c678dd79d9b39741e": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "522b2f73b982d985e5755feffee3133b9094e120": {"9f3dea1a": {"type": "FUNCTION", "size": 528, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"316": {"type": "MIPS_26", "symbol": "<_start+292>", "original": ".text"}, "360": {"type": "MIPS_26", "symbol": "<_start+336>", "original": ".text"}, "392": {"type": "MIPS_26", "symbol": "<_start+368>", "original": ".text"}, "412": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "416": {"type": "MIPS_HI16", "symbol": "_root"}, "432": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "436": {"type": "MIPS_LO16", "symbol": "_root"}, "480": {"type": "MIPS_26", "symbol": "_InitSys"}, "488": {"type": "MIPS_26", "symbol": "FlushCache"}, "500": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "504": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "512": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}, "520": {"type": "MIPS_26", "symbol": "exit"}}}}, "a07d9e64e9783af9fb3f146be4ec4186721ff5e5": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args)PS2SDB", 8192}, + std::string_view{R"PS2SDB("}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "ee110244f85f0c09d1d1644f322e408c372c8357": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "8323567f5cca9444e5a0ad1c4ff4d57980289492": {"67ade030": {"type": "FUNCTION", "size": 152, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "56": {"type": "MIPS_HI16", "symbol": "_root"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "76": {"type": "MIPS_LO16", "symbol": "_root"}, "120": {"type": "MIPS_26", "symbol": "FlushCache"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "144": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "881310974d6eb63ad330d2ca4a3cee2eb06e6a92": {"67ade030": {"type": "FUNCTION", "size": 152, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "56": {"type": "MIPS_HI16", "symbol": "_root"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "76": {"type": "MIPS_LO16", "symbol": "_root"}, "120": {"type": "MIPS_26", "symbol": "FlushCache"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "144": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "437b79923ad9eba5cfc364d7e6636a32babb46b5": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "9398774d5d1d2df9b6515b1d009a0015e35e653c": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "fb8c311458f82cf340dccdfe398c964a9affc770": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "6baff4955abb4941f809b6ec42473c7ee351e3b3": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "493cf05f535b2bfd3373484b2bf3630f7bcef875": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "8b85fad584607e61beea267142f2af80b40ae009": {"67ade030": {"type": "FUNCTION", "size": 152, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "56": {"type": "MIPS_HI16", "symbol": "_root"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "76": {"type": "MIPS_LO16", "symbol": "_root"}, "120": {"type": "MIPS_26", "symbol": "FlushCache"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "144": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "f7b06d0bc554c3c382e3e0680fdd09b528aefc38": {"066c21b3": {"type": "FUNCTION", "size": 496, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"316": {"type": "MIPS_26", "symbol": "<_start+292>", "original": ".text"}, "360": {"type": "MIPS_26", "symbol": "<_start+336>", "original": ".text"}, "392": {"type": "MIPS_26", "symbol": "<_start+368>", "original": ".text"}, "412": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "416": {"type": "MIPS_HI16", "symbol": "_root"}, "432": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "436": {"type": "MIPS_LO16", "symbol": "_root"}, "480": {"type": "MIPS_26", "symbol": "_InitSys"}, "488": {"type": "MIPS_26", "symbol": "FlushCache"}}}}, "3cdbcb581bd61ace635aa788d7757eb1b82aa7ff": {"066c21b3": {"type": "FUNCTION", "size": 496, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"316": {"type": "MIPS_26", "symbol": "<_start+292>", "original": ".text"}, "360": {"type": "MIPS_26", "symbol": "<_start+336>", "ori)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ginal": ".text"}, "392": {"type": "MIPS_26", "symbol": "<_start+368>", "original": ".text"}, "412": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "416": {"type": "MIPS_HI16", "symbol": "_root"}, "432": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "436": {"type": "MIPS_LO16", "symbol": "_root"}, "480": {"type": "MIPS_26", "symbol": "_InitSys"}, "488": {"type": "MIPS_26", "symbol": "FlushCache"}}}}, "c4fae83a70d458ab8b016d078ff5a19a3cbb2075": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "0cd27fd99aa70e3247d8ff7a6363fc2e1942f798": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "64e3fe6e6dc38b42c6cc0d9e262d660b6e425899": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "d61671c1db435b3150d9e628f5008e9a3957fc6e": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "1c1de42a2d3386a1b2de6c56bed0067dcf8a86f8": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "4f146c0483457e57ec19bbaf66183101c67b19cf": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "4a2563cb3e9278a595478871d412916bf61098ce": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "7a4875079eeb5fff200ee6605fa7d110878e87eb": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "29ce80ec76048461445e4c55c167cfd28c878def": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "ff14b928f1cb48016f4047c0e68cc93b026efd09": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"ty)PS2SDB", 8192}, + std::string_view{R"PS2SDB(pe": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "fda869bfebabd553770c8cc34ccfbadddcfcfab9": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "dd12f4089a6d88cb994502f45e0c7ed089543b97": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "a5e1e357766de53e5a8a8ff5b37d196373d47421": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "bc2730041ef60946eacc768668aa4e3924401fad": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "e60863746c25dd195d362a40f7408df5d1630b57": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "d8a5fdb380ef3ed6ac001034d7a83025185457f8": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "77ea6fb27c5435512ad799d8742df8bcf81f4d4a": {"ec1450dc": {"type": "FUNCTION", "size": 160, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "48": {"type": "MIPS_HI16", "symbol": "_root"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "68": {"type": "MIPS_LO16", "symbol": "_root"}, "112": {"type": "MIPS_26", "symbol": "_InitSys"}, "120": {"type": "MIPS_26", "symbol": "FlushCache"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "144": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}, "152": {"type": "MIPS_26", "symbol": "Exit"}}}}, "e3c2ce3a2d0fa6262a91070d41a8c9a1ee915eef": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "05641d3fdbbd498058b63ca5856a9370ceab20e6": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "3443a9f2f493514504113b9bf19b8bf3cef88d06": {"4ea717d4": {"type": "FUNCTION", "size": 436, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "336": {"type": "MIPS_HI16", "symbol": "_root"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "356": {"type": "MIPS_LO16", "symbol": "_root"}, "400": {"type": "MIPS_26", "symbol": "_InitSys"}, "408": {"type": "MIPS_26", "symbol": "FlushCache"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "432": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "ada0cd80eabd9776abc2032bffa82529095b8fa5": {"4b0688f6": {"type": "FUNCTION", "size": 160, "library": "crt0", "scope": "GLOBAL", "is_int)PS2SDB", 8192}, + std::string_view{R"PS2SDB(erface": true, "versions": [], "sdk": ["2.1.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "56": {"type": "MIPS_HI16", "symbol": "_root"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "76": {"type": "MIPS_LO16", "symbol": "_root"}, "120": {"type": "MIPS_26", "symbol": "InitThread"}, "128": {"type": "MIPS_26", "symbol": "FlushCache"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "152": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "93cc285a1e97e266fc2331824683f4ad92e923fb": {"4b0688f6": {"type": "FUNCTION", "size": 160, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.1.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "56": {"type": "MIPS_HI16", "symbol": "_root"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "76": {"type": "MIPS_LO16", "symbol": "_root"}, "120": {"type": "MIPS_26", "symbol": "InitThread"}, "128": {"type": "MIPS_26", "symbol": "FlushCache"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "152": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "131f77a0bcd7a4394572457ab571149c9ce56c3e": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}, "329a5b3340d906fc266379f012d40db0fa1c7fc2": {"8095c98d": {"type": "FUNCTION", "size": 164, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "60": {"type": "MIPS_HI16", "symbol": "_root"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "80": {"type": "MIPS_LO16", "symbol": "_root"}, "124": {"type": "MIPS_26", "symbol": "_InitSys"}, "132": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_args"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_args"}, "156": {"type": "MIPS_26", "symbol": "main", "scope": "EXTERNAL"}}}}}, "_exit": {"25d59f79e5e5c6dbf2686684189604eed62bf8eb": {"5004f7fc": {"type": "FUNCTION", "size": 8, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "3.0.1-1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_26", "symbol": "Exit"}}}}, "a639a8a356321edbeccee089cae462e9fca431ea": {"5004f7fc": {"type": "FUNCTION", "size": 8, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_26", "symbol": "Exit"}}}, "01b20f8a": {"type": "FUNCTION", "size": 8, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_26", "symbol": "", "original": ".text"}}}}, "972cebc63fbbd50e4674df9040f313bc6157cfc2": {"5004f7fc": {"type": "FUNCTION", "size": 8, "library": "crt0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0"], "compiler_versions": ["2.3.1.01"], "relocations": {"0": {"type": "MIPS_26", "symbol": "Exit"}}}}}, "_root": {"b571daaed43ba2ab7c933faa4df64171f5f7ad37": {"00000000": {"type": "FUNCTION", "size": 12, "library": "crt0", "scope": "LOCAL", "is_interface": true, "versions": [], "sdk": ["1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "0d9e97e09d563abde3723d9d5ae81570be48587c": {"00000000": {"type": "FUNCTION", "size": 8, "library": "crt0", "scope": "LOCAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.4.2", "2.5.4", "2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}}, "libgraph": {"sceGsResetGraph": {"91f06c88d1f9e41c22e805efda7c401bfa5e0db0": {"df1eef13": {"type": "FUNCTION", "size": 400, "library": "libgraph", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0", "2.4.0", "2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"108": {"type": "MIPS_26", "symbol": "sceGsGetGParam", "scope": "LIBRARY", "original": ".text"}, "164": {"type": "MIPS_26", "symbol": "GsPutIMR"}, "188": {"type": "MIPS_26", "symbol": "DisableIntc"}, "200": {"type": "MIPS_26", "symbol": "RemoveIntcHandler"}, "248": {"type": "MIPS_26", "symbol": "SetGsCrt"}, "280": {"type": "MIPS_26", "symbol": "sceGsGetGParam", "scope": "LIBRARY", "original": ".text"}, "368": {"type": "MIPS_26", "symbol": "SetGsCrt"}}}}, "ce57abd501c5429c37f38339d2a327c1e589fc75": {"45f01a95": {"type": "FUNCTION", "size": 272, "library": "libgraph", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1", "2.0.0", "2.1.0", "2.2.0"], "sdk": ["1.6.1", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.4.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"80": {"type": "MIPS_26", "symbol": "sceGsGetGParam", "scope": "LIBRARY", "original": ".text"}, "136": {"type": "MIPS_26", "symbol": "GsPutIMR"}, "160": {"type": "MIPS_26", "symbol": "DisableIntc"}, "172": {"type": "MIPS_26", "symbol": "RemoveIntcHandler"}, "220": {"type": "MIPS_26", "symbol": "SetGsCrt"}}}}, "dc897ef4ce781cd8a7335cc1d9e884fe08926b79": {"7934b5db": {"type": "FUNCTION", "size": 272, "library": "libgraph", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"104": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "116": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "136": {"type": "MIPS_26", "symbol": "GsPutIMR"}, "140": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "148": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "156": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "160": {"type": "MIPS_26", "symbol": "DisableIntc"}, "168": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "172": {"type": "MIPS_26", "symbol": "RemoveIntcHandler"}, "180": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "184": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "220": {"type": "MIPS_26", "symbol": "SetGsCrt"}}}}, "cf717a112b123d8a95d1c3d0)PS2SDB", 8192}, + std::string_view{R"PS2SDB(e6b736e7d655af1e": {"93d9cdc8": {"type": "FUNCTION", "size": 320, "library": "libgraph", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.2"], "sdk": ["1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"104": {"type": "MIPS_26", "symbol": "sceGsGetGParam", "scope": "LIBRARY", "original": ".text"}, "160": {"type": "MIPS_26", "symbol": "GsPutIMR"}, "184": {"type": "MIPS_26", "symbol": "DisableIntc"}, "196": {"type": "MIPS_26", "symbol": "RemoveIntcHandler"}, "256": {"type": "MIPS_26", "symbol": "SetGsCrt"}}}}}, "sceGsGetGParam": {"2a51c093207f3b6546ea5ac91d4ae4a6999eaed5": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libgraph", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1", "1.6.2", "2.0.0", "2.1.0", "2.2.0", "2.3.0", "2.4.0", "2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceGsResetPath": {"2d3cd633a2708570defd4a35a8f37ddf7536eb02": {"b638525b": {"type": "FUNCTION", "size": 104, "library": "libgraph", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.2", "2.0.0", "2.1.0", "2.2.0", "2.3.0", "2.4.0", "2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "ac342180d4c6daf499a6e0e77857345d9720e077": {"b638525b": {"type": "FUNCTION", "size": 108, "library": "libgraph", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1"], "sdk": ["1.6.1", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "checkModelVersion": {"d8065d07a4f5b2642dfa7e54afecd4e7f97109f0": {"164eb9c6": {"type": "FUNCTION", "size": 160, "library": "libgraph", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "28": {"type": "MIPS_26", "symbol": "sceOpen"}, "84": {"type": "MIPS_26", "symbol": "sceRead"}, "104": {"type": "MIPS_26", "symbol": "sceClose"}, "116": {"type": "MIPS_26", "symbol": "atoi"}}}}}, "_GetGsDxDyOffset": {"9188a7ea160e3b0dea84f4dcf7f83fdec742d47d": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libgraph", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceGsSetDefDispEnv": {"0c6f9b76ed6c60044e30365327cbffe70064c9e8": {"7407bafe": {"type": "FUNCTION", "size": 884, "library": "libgraph", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"76": {"type": "MIPS_26", "symbol": "sceGsGetGParam", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "checkModelVersion", "scope": "LIBRARY", "original": ".text"}, "136": {"type": "MIPS_26", "symbol": "_GetGsDxDyOffset", "scope": "LIBRARY", "original": ".text"}, "712": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "832": {"type": "MIPS_26", "symbol": "scePrintf"}, "836": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "4bd4e742f86c8022e964e4730dc7a1f5ac73ab34": {"0e6c588e": {"type": "FUNCTION", "size": 624, "library": "libgraph", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.1.0", "2.2.0", "2.3.0", "2.4.0"], "sdk": ["2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"72": {"type": "MIPS_26", "symbol": "sceGsGetGParam", "scope": "LIBRARY"}, "344": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "576": {"type": "MIPS_26", "symbol": "printf"}, "580": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "14a27a82bc27e9e9acc72c22e130966292667590": {"5186aad0": {"type": "FUNCTION", "size": 576, "library": "libgraph", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"48": {"type": "MIPS_GPREL16", "symbol": "sceGsInterMode"}, "72": {"type": "MIPS_GPREL16", "symbol": "sceGsInterMode"}, "76": {"type": "MIPS_GPREL16", "symbol": "sceGsFFMode"}, "140": {"type": "MIPS_GPREL16", "symbol": "sceGsOutMode"}, "196": {"type": "MIPS_GPREL16", "symbol": "sceGsFFMode"}, "316": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "364": {"type": "MIPS_GPREL16", "symbol": "sceGsFFMode"}, "548": {"type": "MIPS_26", "symbol": "printf"}, "552": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "4421cd2aa89ff35f8550f4a1d3d8cd00ad3e9d61": {"54569843": {"type": "FUNCTION", "size": 608, "library": "libgraph", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1", "1.6.2"], "sdk": ["1.6.1", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"72": {"type": "MIPS_26", "symbol": "sceGsGetGParam", "scope": "LIBRARY"}, "332": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "560": {"type": "MIPS_26", "symbol": "printf"}, "564": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sceGsPutDispEnv": {"ed205801c19112ffac299364c146a5272894dc39": {"f482496d": {"type": "FUNCTION", "size": 188, "library": "libgraph", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1", "1.6.2", "2.0.0", "2.1.0", "2.2.0", "2.3.0", "2.4.0", "2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceGsGetGParam", "scope": "LIBRARY"}}}}, "5139e95a7fe9335206fbc6b79d71f7d6a58f4203": {"078d1d9d": {"type": "FUNCTION", "size": 160, "library": "libgraph", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"0": {"type": "MIPS_GPREL16", "symbol": "sceGsVersion"}}}}}, "sceGszbufaddr": {"732c4cff824063059b85c600d1453e6395d7acdd": {"a093f23f": {"type": "FUNCTION", "size": 200, "library":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "libgraph", "scope": "GLOBAL", "is_interface": false, "versions": ["1.6.2", "2.0.0", "2.1.0", "2.2.0", "2.3.0", "2.4.0", "2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "sceGsGetGParam", "scope": "LIBRARY"}}}}, "361f4d07f645463faee3de827fb2dfb95e429d6a": {"1e4a4c05": {"type": "FUNCTION", "size": 144, "library": "libgraph", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"92": {"type": "MIPS_GPREL16", "symbol": "sceGsInterMode"}, "108": {"type": "MIPS_GPREL16", "symbol": "sceGsFFMode"}}}}, "9cf3e507d727993e548ea42b93bec32cafeb59b0": {"a093f23f": {"type": "FUNCTION", "size": 196, "library": "libgraph", "scope": "GLOBAL", "is_interface": false, "versions": ["1.6.1"], "sdk": ["1.6.1", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "sceGsGetGParam", "scope": "LIBRARY"}}}}}, "sceGsSetDefDrawEnv": {"4476452f142e855b80aeed59565a783e1caedf97": {"e6b588b3": {"type": "FUNCTION", "size": 484, "library": "libgraph", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1", "1.6.2", "2.0.0", "2.1.0", "2.2.0", "2.3.0", "2.4.0", "2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"136": {"type": "MIPS_26", "symbol": "sceGszbufaddr", "scope": "LIBRARY"}, "188": {"type": "MIPS_26", "symbol": "sceGszbufaddr", "scope": "LIBRARY"}}}}}, "sceGsSetDefClear": {"ed52b0bf86f0ae3edcd26fa9f608203928a2c85b": {"00000000": {"type": "FUNCTION", "size": 260, "library": "libgraph", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1", "1.6.2", "2.0.0", "2.1.0", "2.2.0", "2.3.0", "2.4.0", "2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceGsPutDrawEnv": {"78ef5e72685891f9909f4de62616df19b1e63164": {"eeb84e5b": {"type": "FUNCTION", "size": 232, "library": "libgraph", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"160": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "164": {"type": "MIPS_26", "symbol": "scePrintf"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}, "0d1bcb8e": {"type": "FUNCTION", "size": 232, "library": "libgraph", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1", "1.6.2", "2.0.0", "2.1.0", "2.2.0", "2.3.0", "2.4.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"160": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "164": {"type": "MIPS_26", "symbol": "printf"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sceGsSetDefDBuff": {"d17a6e4d8b85ebefd7978ac72e8448da6adcd01a": {"2135a756": {"type": "FUNCTION", "size": 664, "library": "libgraph", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.1.0", "2.2.0", "2.3.0", "2.4.0", "2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.0.2", "2.0.7", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"84": {"type": "MIPS_26", "symbol": "sceGsGetGParam", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "sceGsSetDefDispEnv", "scope": "LIBRARY"}, "152": {"type": "MIPS_26", "symbol": "sceGsSetDefDispEnv", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "sceGsSetDefDrawEnv", "scope": "LIBRARY"}, "208": {"type": "MIPS_26", "symbol": "sceGsSetDefDrawEnv", "scope": "LIBRARY"}, "280": {"type": "MIPS_26", "symbol": "sceGsSetDefClear", "scope": "LIBRARY"}, "328": {"type": "MIPS_26", "symbol": "sceGsSetDefClear", "scope": "LIBRARY"}, "492": {"type": "MIPS_26", "symbol": "sceGszbufaddr", "scope": "LIBRARY"}}}}, "2b5ca9bb799d7af5b3b08aabbc08092732680fd1": {"2135a756": {"type": "FUNCTION", "size": 648, "library": "libgraph", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1"], "sdk": ["1.6.1", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"84": {"type": "MIPS_26", "symbol": "sceGsGetGParam", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "sceGsSetDefDispEnv", "scope": "LIBRARY"}, "152": {"type": "MIPS_26", "symbol": "sceGsSetDefDispEnv", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "sceGsSetDefDrawEnv", "scope": "LIBRARY"}, "208": {"type": "MIPS_26", "symbol": "sceGsSetDefDrawEnv", "scope": "LIBRARY"}, "280": {"type": "MIPS_26", "symbol": "sceGsSetDefClear", "scope": "LIBRARY"}, "328": {"type": "MIPS_26", "symbol": "sceGsSetDefClear", "scope": "LIBRARY"}, "492": {"type": "MIPS_26", "symbol": "sceGszbufaddr", "scope": "LIBRARY"}}}}, "029bd2fd4311f923dafdc5e947f302a1194a5e23": {"48cf23c0": {"type": "FUNCTION", "size": 684, "library": "libgraph", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.2"], "sdk": ["1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"108": {"type": "MIPS_26", "symbol": "sceGsGetGParam", "scope": "LIBRARY"}, "140": {"type": "MIPS_26", "symbol": "sceGsSetDefDispEnv", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "sceGsSetDefDispEnv", "scope": "LIBRARY"}, "196": {"type": "MIPS_26", "symbol": "sceGsSetDefDrawEnv", "scope": "LIBRARY"}, "224": {"type": "MIPS_26", "symbol": "sceGsSetDefDrawEnv", "scope": "LIBRARY"}, "296": {"type": "MIPS_26", "symbol": "sceGsSetDefClear", "scope": "LIBRARY"}, "344": {"type": "MIPS_26", "symbol": "sceGsSetDefClear", "scope": "LIBRARY"}, "512": {"type": "MIPS_26", "symbol": "sceGszbufaddr", "scope": "LIBRARY"}}}}, "3c220e4477a88f64e7a96995adc7cd39d5a9eb93": {"38f94a62": {"type": "FUNCTION", "size": 644, "library": "libgraph", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.0", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"124": {"type": "MIPS_26", "symbol": "sceGsSetDefDispEnv", "scope": "LIBRARY"}, "152": {"type": "MIPS_26", "symbol": "sceGsSetDefDispEnv", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "sceGsSetDefDrawEnv", "scope": "LIBRARY"}, "208": {"type": "MIPS_26", "symbol": "sceGsSetDefDrawEnv", "scope": "LIBRARY"}, "280": {"type": "MIPS_26", "symbol": "sceGsSetDefClear", "scope": "LIBRARY"}, "328": {"type": "MIPS_26", "symbol": "sceGsSetDefClear", "scope": "LIBRARY"}, "496": {"type": "MIPS_26", "symbol": "sceGszbufaddr", "scope": "LIBRARY"}, "508":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( {"type": "MIPS_GPREL16", "symbol": "sceGsInterMode"}, "520": {"type": "MIPS_GPREL16", "symbol": "sceGsFFMode"}}}}}, "sceGsSwapDBuff": {"b9b99bf7eea54ecd770f64f64389dd22b05295fa": {"7c1d7181": {"type": "FUNCTION", "size": 92, "library": "libgraph", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1", "1.6.2", "2.0.0", "2.1.0", "2.2.0", "2.3.0", "2.4.0", "2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["1.5.0", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "sceGsPutDispEnv", "scope": "LIBRARY"}, "48": {"type": "MIPS_26", "symbol": "sceGsPutDrawEnv", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "sceGsPutDrawEnv", "scope": "LIBRARY"}}}}}, "sceGsSyncV": {"2554d3bae19290ea9ecf32bcee580e0b7a8d93d3": {"4787e393": {"type": "FUNCTION", "size": 148, "library": "libgraph", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1", "1.6.2", "2.0.0", "2.1.0", "2.2.0", "2.3.0", "2.4.0", "2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceGsGetGParam", "scope": "LIBRARY"}, "36": {"type": "MIPS_26", "symbol": "VSync"}, "96": {"type": "MIPS_26", "symbol": "VSync2"}}}}, "304ebc71fa142983afa5cc11335f5a2a73689141": {"9e110338": {"type": "FUNCTION", "size": 120, "library": "libgraph", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_GPREL16", "symbol": "sceGsVSCfunc"}, "16": {"type": "MIPS_26", "symbol": "VSync"}, "24": {"type": "MIPS_GPREL16", "symbol": "sceGsInterMode"}, "72": {"type": "MIPS_26", "symbol": "VSync2"}, "84": {"type": "MIPS_GPREL16", "symbol": "sceGsInterMode"}}}}}, "sceGsSyncPath": {"3891d8a461ad5e067d9bb903a84cf1b1fcbbe75e": {"0756f811": {"type": "FUNCTION", "size": 788, "library": "libgraph", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"348": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "356": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "360": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "368": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "372": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "380": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "384": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "392": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "396": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "400": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "404": {"type": "MIPS_26", "symbol": "scePrintf"}, "416": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "428": {"type": "MIPS_26", "symbol": "scePrintf"}, "440": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "448": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "452": {"type": "MIPS_26", "symbol": "scePrintf"}, "464": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "472": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "476": {"type": "MIPS_26", "symbol": "scePrintf"}, "488": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "496": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "500": {"type": "MIPS_26", "symbol": "scePrintf"}, "512": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "520": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "524": {"type": "MIPS_26", "symbol": "scePrintf"}, "536": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "544": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "548": {"type": "MIPS_26", "symbol": "scePrintf"}, "560": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "568": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "572": {"type": "MIPS_26", "symbol": "scePrintf"}, "584": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "592": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "596": {"type": "MIPS_26", "symbol": "scePrintf"}, "608": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "616": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "620": {"type": "MIPS_26", "symbol": "scePrintf"}, "632": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "640": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "644": {"type": "MIPS_26", "symbol": "scePrintf"}}}}, "7b189804ddb94cbad0ae3baba4aad47df3cd8a43": {"9fabfdc3": {"type": "FUNCTION", "size": 788, "library": "libgraph", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.2", "2.0.0", "2.1.0", "2.2.0", "2.3.0", "2.4.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"348": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "356": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "360": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "368": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "372": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "380": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "384": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "392": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "396": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "400": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "404": {"type": "MIPS_26", "symbol": "printf"}, "416": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "428": {"type": "MIPS_26", "symbol": "printf"}, "440": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "448": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "452": {"type": "MIPS_26", "symbol": "printf"}, "464": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "472": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "476": {"type": "MIPS_26", "symbol": "printf"}, "488": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "496": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "500": {"type": "MIPS_26", "symbol": "printf"}, "512": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "520": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "524": {"type": "MIPS_26", "symbol": "printf"}, "536": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "544": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "548": {"type": "MIPS_26", "symbol": "printf"}, "560": {"type": "MIPS_HI16", "symbol": "", "or)PS2SDB", 8192}, + std::string_view{R"PS2SDB(iginal": ".rodata"}, "568": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "572": {"type": "MIPS_26", "symbol": "printf"}, "584": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "592": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "596": {"type": "MIPS_26", "symbol": "printf"}, "608": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "616": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "620": {"type": "MIPS_26", "symbol": "printf"}, "632": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "640": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "644": {"type": "MIPS_26", "symbol": "printf"}}}}, "193889fcc14435dc1c039f2d843dcfc52e68e93c": {"288f1a64": {"type": "FUNCTION", "size": 828, "library": "libgraph", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1"], "sdk": ["1.6.1", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"348": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "356": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "360": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "368": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "372": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "380": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "384": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "392": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "396": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "400": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "404": {"type": "MIPS_26", "symbol": "printf"}, "416": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "432": {"type": "MIPS_26", "symbol": "printf"}, "444": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "452": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "460": {"type": "MIPS_26", "symbol": "printf"}, "472": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "480": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "488": {"type": "MIPS_26", "symbol": "printf"}, "500": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "508": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "516": {"type": "MIPS_26", "symbol": "printf"}, "528": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "536": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "544": {"type": "MIPS_26", "symbol": "printf"}, "556": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "564": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "572": {"type": "MIPS_26", "symbol": "printf"}, "584": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "592": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "600": {"type": "MIPS_26", "symbol": "printf"}, "612": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "620": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "628": {"type": "MIPS_26", "symbol": "printf"}, "640": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "648": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "656": {"type": "MIPS_26", "symbol": "printf"}, "668": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "676": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "684": {"type": "MIPS_26", "symbol": "printf"}}}}}, "sceGsSetDefLoadImage": {"b61d161a8fe32036e24972d71b36148d9299df59": {"827f0e5d": {"type": "FUNCTION", "size": 484, "library": "libgraph", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"80": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "188": {"type": "MIPS_26", "symbol": "scePrintf"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}, "39bffb38": {"type": "FUNCTION", "size": 484, "library": "libgraph", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1", "1.6.2", "2.0.0", "2.1.0", "2.2.0", "2.3.0", "2.4.0"], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.2", "2.4.3", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"80": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "188": {"type": "MIPS_26", "symbol": "printf"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sceGsSetDefStoreImage": {"07354c9b90ce316c58bb744d04408a5442d62fd2": {"00000000": {"type": "FUNCTION", "size": 320, "library": "libgraph", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1", "1.6.2", "2.0.0", "2.1.0", "2.2.0", "2.3.0", "2.4.0", "2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceGsExecLoadImage": {"9857fc8fb4842071156c61e28cb5f227103e8b69": {"dddccc7e": {"type": "FUNCTION", "size": 380, "library": "libgraph", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"308": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "312": {"type": "MIPS_26", "symbol": "scePrintf"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}, "c0a649a8": {"type": "FUNCTION", "size": 380, "library": "libgraph", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1", "1.6.2", "2.0.0", "2.1.0", "2.2.0", "2.3.0", "2.4.0"], "sdk": ["1.5.0", "1.5.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.2", "2.4.3", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"308": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "312": {"type": "MIPS_26", "symbol": "printf"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sceGsExecStoreImage": {"4e7d9f0c0ae44c3ff7a041e0815e496b5d9c35cc": {"1a4e77d3": {"type": "FUNCTION", "size": 1676, "library": "libgraph", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.6.0", "2.7.0"], "sdk": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"128": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "580": {"type": "MIPS_26", "symbol": "GsGetIMR"}, "592": {"type": "MIPS_26", "symbol": "GsPutIMR"}, "936": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "940": {"type": "MIPS_26", "symbol": "scePrintf"}, "944": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "956": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "960": {"type": "MIPS_26", "symbol": "scePrintf"}, "964": {"type": "MIPS_LO16",)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "symbol": "", "original": ".rodata"}, "968": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "976": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1004": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1012": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1016": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1020": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1024": {"type": "MIPS_26", "symbol": "scePrintf"}, "1584": {"type": "MIPS_26", "symbol": "GsPutIMR"}, "1592": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1600": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "fee69d7603f4d11e1562bf19468fca62bb6fbd12": {"37d629dc": {"type": "FUNCTION", "size": 1676, "library": "libgraph", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.1.0", "2.2.0", "2.3.0", "2.4.0"], "sdk": ["2.0.0", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"128": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "580": {"type": "MIPS_26", "symbol": "GsGetIMR"}, "592": {"type": "MIPS_26", "symbol": "GsPutIMR"}, "936": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "940": {"type": "MIPS_26", "symbol": "printf"}, "944": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "956": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "960": {"type": "MIPS_26", "symbol": "printf"}, "964": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "968": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "976": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1004": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1012": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1016": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1020": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1024": {"type": "MIPS_26", "symbol": "printf"}, "1584": {"type": "MIPS_26", "symbol": "GsPutIMR"}, "1592": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1600": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "5f7103388f11f49d9429d96c78d8e8d1176d7568": {"837afcc0": {"type": "FUNCTION", "size": 1676, "library": "libgraph", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"128": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "580": {"type": "MIPS_26", "symbol": "GsGetIMR"}, "588": {"type": "MIPS_26", "symbol": "GsPutIMR"}, "936": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "940": {"type": "MIPS_26", "symbol": "scePrintf"}, "944": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "956": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "960": {"type": "MIPS_26", "symbol": "scePrintf"}, "964": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "968": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "976": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1004": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1012": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1016": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1020": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1024": {"type": "MIPS_26", "symbol": "scePrintf"}, "1584": {"type": "MIPS_26", "symbol": "GsPutIMR"}, "1592": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1600": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "1095935b1cc4144d5cbe2ede8c4ab1a363dafbc0": {"5cf221e0": {"type": "FUNCTION", "size": 1676, "library": "libgraph", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"128": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "588": {"type": "MIPS_26", "symbol": "GsGetIMR"}, "600": {"type": "MIPS_26", "symbol": "GsPutIMR"}, "940": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "944": {"type": "MIPS_26", "symbol": "printf"}, "948": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "960": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "964": {"type": "MIPS_26", "symbol": "printf"}, "968": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "972": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "980": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1008": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1016": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1020": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1024": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1028": {"type": "MIPS_26", "symbol": "printf"}, "1584": {"type": "MIPS_26", "symbol": "GsPutIMR"}, "1592": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1600": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "0b299ddcf177ab42f19becdd1074ee6f7557ce82": {"159e15c5": {"type": "FUNCTION", "size": 1696, "library": "libgraph", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1"], "sdk": ["1.6.1", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"128": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "588": {"type": "MIPS_26", "symbol": "GsGetIMR"}, "600": {"type": "MIPS_26", "symbol": "GsPutIMR"}, "944": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "948": {"type": "MIPS_26", "symbol": "printf"}, "952": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "964": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "968": {"type": "MIPS_26", "symbol": "printf"}, "972": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "976": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "984": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1012": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1020": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1024": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1028": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1032": {"type": "MIPS_26", "symbol": "printf"}, "1604": {"type": "MIPS_26", "symbol": "GsPutIMR"}, "1612": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1620": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "4618832299967f56bddbb0894a302c8adef89e71": {"f5a8c405": {"type": "FUNCTION", "size": 1684, "library": "libgraph", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.2"], "sdk": ["1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"128": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "588": {"type": "MIPS_26", "symbol": "GsGetIMR"}, "600": {"type": "MIPS_26", "symbol": "GsPutIMR"}, "944": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "948": {"type": "MIPS_26", "symbol": "printf"}, "952": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "964": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "968": {"type": "MIPS_26", "symbol": "printf"}, "972": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "976": {"type": "MIPS_HI16", "symbol": "", "or)PS2SDB", 8192}, + std::string_view{R"PS2SDB(iginal": ".data"}, "984": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1012": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1020": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1024": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1028": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1032": {"type": "MIPS_26", "symbol": "printf"}, "1592": {"type": "MIPS_26", "symbol": "GsPutIMR"}, "1600": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1608": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceGsSetHalfOffset": {"6111fff298806920f0db8c71f26138b96421b422": {"00000000": {"type": "FUNCTION", "size": 136, "library": "libgraph", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1", "1.6.2", "2.0.0", "2.1.0", "2.2.0", "2.3.0", "2.4.0", "2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceGsSyncVCallback": {"75e7178609abd229ca98b9ea8ff39b6f2a422442": {"8f67d0e8": {"type": "FUNCTION", "size": 160, "library": "libgraph", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0", "2.4.0", "2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "sceGsGetGParam", "scope": "LIBRARY"}, "40": {"type": "MIPS_26", "symbol": "DisableIntc"}, "52": {"type": "MIPS_26", "symbol": "RemoveIntcHandler"}, "80": {"type": "MIPS_26", "symbol": "DisableIntc"}, "92": {"type": "MIPS_26", "symbol": "RemoveIntcHandler"}, "112": {"type": "MIPS_26", "symbol": "AddIntcHandler"}, "124": {"type": "MIPS_26", "symbol": "EnableIntc"}}}}, "4a2fe378bb0db9df33bb0085204f0bd3d9c9eb7c": {"349f7993": {"type": "FUNCTION", "size": 96, "library": "libgraph", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1", "1.6.2", "2.0.0", "2.1.0", "2.2.0"], "sdk": ["1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.2", "2.2.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "sceGsGetGParam", "scope": "LIBRARY"}, "48": {"type": "MIPS_26", "symbol": "AddIntcHandler"}, "60": {"type": "MIPS_26", "symbol": "EnableIntc"}}}}}, "sceGsPutIMR": {"f2437505e23f9cf20fba45793b5e52a351edcf28": {"21a89a11": {"type": "FUNCTION", "size": 60, "library": "libgraph", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.1.0", "2.2.0", "2.3.0", "2.4.0", "2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.0.7", "2.1.4", "2.2.1", "2.2.4", "2.3.4", "2.4.1", "2.4.3", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "GsGetIMR"}, "28": {"type": "MIPS_26", "symbol": "GsPutIMR"}}}}}, "isceGsPutIMR": {"f2437505e23f9cf20fba45793b5e52a351edcf28": {"a9d5754f": {"type": "FUNCTION", "size": 60, "library": "libgraph", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.0", "2.5.0", "2.7.0", "2.8.0", "3.1.0"], "sdk": ["2.4.3", "2.5.2", "2.5.5", "2.7.0", "3.0.1-1", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "iGsGetIMR"}, "28": {"type": "MIPS_26", "symbol": "iGsPutIMR"}}}}}, "sceGsSetDefDrawEnv2": {"e9e0269f9a8cade21700235061c69c17f9ebd8a0": {"e30c828c": {"type": "FUNCTION", "size": 480, "library": "libgraph", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.2", "2.0.0", "2.1.0", "2.2.0", "2.3.0", "2.4.0", "2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["1.4.2", "1.4.4", "1.5.1", "1.5.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"132": {"type": "MIPS_26", "symbol": "sceGszbufaddr", "scope": "LIBRARY"}, "184": {"type": "MIPS_26", "symbol": "sceGszbufaddr", "scope": "LIBRARY"}}}}}, "sceGsSetHalfOffset2": {"6111fff298806920f0db8c71f26138b96421b422": {"00000000": {"type": "FUNCTION", "size": 136, "library": "libgraph", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.2", "2.0.0", "2.1.0", "2.2.0", "2.3.0", "2.4.0", "2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["1.4.2", "1.4.4", "1.5.1", "1.5.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.4", "2.2.0", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.2", "2.4.3", "2.5.0", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.1", "3.0.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceGsSetDefDBuffDc": {"389549a638383ae2db196e78182b5d31e8d1de00": {"d39e3736": {"type": "FUNCTION", "size": 740, "library": "libgraph", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.1.0", "2.2.0", "2.3.0", "2.4.0", "2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"84": {"type": "MIPS_26", "symbol": "sceGsGetGParam", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "sceGsSetDefDispEnv", "scope": "LIBRARY"}, "152": {"type": "MIPS_26", "symbol": "sceGsSetDefDispEnv", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "sceGsSetDefDrawEnv", "scope": "LIBRARY"}, "208": {"type": "MIPS_26", "symbol": "sceGsSetDefDrawEnv2", "scope": "LIBRARY"}, "236": {"type": "MIPS_26", "symbol": "sceGsSetDefDrawEnv", "scope": "LIBRARY"}, "264": {"type": "MIPS_26", "symbol": "sceGsSetDefDrawEnv2", "scope": "LIBRARY"}, "336": {"type": "MIPS_26", "symbol": "sceGsSetDefClear", "scope": "LIBRARY"}, "384": {"type": "MIPS_26", "symbol": "sceGsSetDefClear", "scope": "LIBRARY"}, "552": {"type": "MIPS_26", "symbol": "sceGszbufaddr", "scope": "LIBRARY"}}}}, "a0bfd6160b77f54c6bb35a4ef4e2c7dedb9506af": {"87656bf9": {"type": "FUNCTION", "size": 760, "library": "libgraph", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.2"], "sdk": ["1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"108": {"type": "MIPS_26", "symbol": "sceGsGetGParam", "scope": "LIBRARY"}, "140": {"type": "MIPS_26", "symbol": "sceGsSetDefDispEnv", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "sceGsSetDefDispEnv", "scope": "LIBRARY"}, "196": {"type": "MIPS_26", "symbol": "sceGsSetDefDrawEnv", "scope": "LIBRARY"}, "224": {"type": "MIPS_26", "symbol": "sceGsSetDefDrawEnv2", "scope": "LIBRARY"}, "252": {"type": "MIPS_26", "symbol": "sceGsSetDefDrawEnv", "scope": "LIBRARY"}, "280": {"type": "MIPS_26", "symbol": "sceGsSetDefDrawEnv2", "scope": "LIBRARY"}, "352": {"type": "MIPS_26", "symbol": "sceGsSetDefClear", "scope": "LIBRARY"}, "400": {"type": "MIPS_26", "symbol": "sceGsSetDefClear", "scope": "LIBRARY"}, "572": {"type": "MIPS_26", "symbol": "sceGszbufaddr", "scope": "LIBRARY"}}}}, "cd375fffaf2f3dc04b5d361f2e6b1ba466b3f917": {"7bfe94c4": {"type": "FUNCTION", "size": 720, "library": "libgraph", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"124": {"type": "MIPS_26", "symbol": "sceGsSetDefDispEnv", "scope": "LIBRARY"}, "152": {"typ)PS2SDB", 8192}, + std::string_view{R"PS2SDB(e": "MIPS_26", "symbol": "sceGsSetDefDispEnv", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "sceGsSetDefDrawEnv", "scope": "LIBRARY"}, "208": {"type": "MIPS_26", "symbol": "sceGsSetDefDrawEnv2", "scope": "LIBRARY"}, "236": {"type": "MIPS_26", "symbol": "sceGsSetDefDrawEnv", "scope": "LIBRARY"}, "264": {"type": "MIPS_26", "symbol": "sceGsSetDefDrawEnv2", "scope": "LIBRARY"}, "336": {"type": "MIPS_26", "symbol": "sceGsSetDefClear", "scope": "LIBRARY"}, "384": {"type": "MIPS_26", "symbol": "sceGsSetDefClear", "scope": "LIBRARY"}, "556": {"type": "MIPS_26", "symbol": "sceGszbufaddr", "scope": "LIBRARY"}, "568": {"type": "MIPS_GPREL16", "symbol": "sceGsInterMode"}, "580": {"type": "MIPS_GPREL16", "symbol": "sceGsFFMode"}}}}}, "sceGsSwapDBuffDc": {"8f587a86902f26095783d8c4840cfcdefc8a8420": {"7c1d7181": {"type": "FUNCTION", "size": 92, "library": "libgraph", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.2", "2.0.0", "2.1.0", "2.2.0", "2.3.0", "2.4.0", "2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["1.4.2", "1.4.4", "1.5.1", "1.5.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.3", "2.1.4", "2.2.0", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "sceGsPutDispEnv", "scope": "LIBRARY"}, "48": {"type": "MIPS_26", "symbol": "sceGsPutDrawEnv", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "sceGsPutDrawEnv", "scope": "LIBRARY"}}}}}, "sceGsSetDefTexEnv": {"5a3c015b36a2e1d67eab1dc35323d8f1bab9823b": {"00000000": {"type": "FUNCTION", "size": 268, "library": "libgraph", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.2", "2.0.0", "2.1.0", "2.2.0", "2.3.0", "2.4.0", "2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.6.3", "1.6.5", "2.0.2", "2.1.0", "2.1.4", "2.2.1", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.2", "2.5.3", "2.5.4", "2.5.7", "2.6.0", "2.7.0", "2.8.0", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceGsSetDefAlphaEnv": {"04c20af276e0480e7885a55b79d7c9903dbbb270": {"00000000": {"type": "FUNCTION", "size": 92, "library": "libgraph", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.2", "2.0.0", "2.1.0", "2.2.0", "2.3.0", "2.4.0", "2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.6.3", "1.6.5", "2.0.2", "2.1.0", "2.1.4", "2.2.0", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceGsSetDefAlphaEnv2": {"dc330d4e51142fd192d309332047b34778addb77": {"00000000": {"type": "FUNCTION", "size": 92, "library": "libgraph", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.0", "2.2.0", "2.3.0", "2.4.0", "2.6.0", "3.0.0"], "sdk": ["2.1.0", "2.1.4", "2.2.0", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.3", "2.6.0", "3.0.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceGsGetIMR": {"7ba17f652620d1a8770717ffc05543c774ba24f8": {"1a819077": {"type": "FUNCTION", "size": 28, "library": "libgraph", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.1.0", "2.2.0", "2.3.0", "2.4.0", "2.5.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.0.7", "2.1.4", "2.2.1", "2.2.4", "2.3.4", "2.4.1", "2.4.3", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "GsGetIMR"}}}}}, "sceGsSetDefClear2": {"6b0d1ef5bcdc6c29362c877b96f05c2230e4e710": {"00000000": {"type": "FUNCTION", "size": 260, "library": "libgraph", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.2", "2.1.0", "2.2.0", "2.3.0", "2.4.0", "2.7.0"], "sdk": ["1.6.5", "2.1.4", "2.2.4", "2.3.4", "2.4.3", "2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceGsSetDefTexEnv2": {"81c8a8b6a29f3bd9e5688f2ceb2bfc0111a2be58": {"00000000": {"type": "FUNCTION", "size": 268, "library": "libgraph", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.0", "2.2.0", "2.3.0", "2.4.0", "2.6.0"], "sdk": ["2.1.0", "2.1.4", "2.2.4", "2.3.2", "2.3.4", "2.4.1", "2.4.3", "2.6.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "isceGsGetIMR": {"7ba17f652620d1a8770717ffc05543c774ba24f8": {"5172a39c": {"type": "FUNCTION", "size": 28, "library": "libgraph", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0"], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "iGsGetIMR"}}}}}}, "libdma": {"WaitDma": {"6e54d49d191942c637989b1f7f19f203117e2839": {"d1b283c5": {"type": "FUNCTION", "size": 112, "library": "libdma", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "56": {"type": "MIPS_26", "symbol": "scePrintf"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_26", "symbol": "sceDmaPause", "scope": "LIBRARY", "original": ".text"}}}}}, "WatchDma": {"99eaea644dfea631017bfedc8ca7d6cf4d2357ce": {"7846f39e": {"type": "FUNCTION", "size": 132, "library": "libdma", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_26", "symbol": "scePrintf"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_26", "symbol": "sceDmaPause", "scope": "LIBRARY", "original": ".text"}}}}}, "CheckAddress": {"1e8792ca3bdeb56dca042d47a5c07be4b77f24f8": {"00000000": {"type": "FUNCTION", "size": 40, "library": "libdma", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "memclr": {"1a787d56e8013409a0bb30ab96e52478ae685330": {"00000000": {"type": "FUNCTION", "size": 52, "library": "libdma", "scope": "LOCAL", "is_interface": false, "versions": ["1.6.1", "2.0.0", "2.1.0", "2.2.0", "2.3.0", "2.4.0", "2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.6.1", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "302d6538cea443ecebfe272754310286dd18230c": {"00000000": {"type": "FUNCTION", "size": 52, "library": "libdma", "scope": "LOCAL", "is_interface": false, "versions": ["1.4.0", "1.5.0", "1.6.2"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.3", "1.6.5", "2.0.7"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}}, "sceDmaGetChan": {"407dcd268ed3f353e5b22576b39bcc253bb111c6": {"0bfe8910": {"type": "FUNCTION", "size": 40, "library": "libdma", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.0", "1.5.0", "1.6.1", "1.6.2", "2.0.0", "2.1.0", "2.2.0", "2.3.0", "2.4.0", "2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.)PS2SDB", 8192}, + std::string_view{R"PS2SDB(4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceDmaReset": {"a769ac74d20e8d8fbe9cf1699177d61a6a95dd9a": {"c0e58b1d": {"type": "FUNCTION", "size": 220, "library": "libdma", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.0", "1.5.0", "1.6.2", "2.0.0", "2.1.0", "2.2.0", "2.3.0", "2.4.0", "2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_26", "symbol": "memclr", "scope": "LIBRARY", "original": ".text"}, "156": {"type": "MIPS_26", "symbol": "sceDmaPutEnv", "scope": "LIBRARY", "original": ".text"}}}}, "05a0d7d6a1150dfb5daac6b441154d5628a4ed93": {"660c841e": {"type": "FUNCTION", "size": 224, "library": "libdma", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1"], "sdk": ["1.6.1", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_26", "symbol": "memclr", "scope": "LIBRARY", "original": ".text"}, "160": {"type": "MIPS_26", "symbol": "sceDmaPutEnv", "scope": "LIBRARY", "original": ".text"}}}}}, "sceDmaPutEnv": {"197fd27bf363d9cec540fba6007c2d84e67870dd": {"3c9be692": {"type": "FUNCTION", "size": 472, "library": "libdma", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.0", "1.5.0", "1.6.1", "1.6.2", "2.0.0", "2.1.0", "2.2.0", "2.3.0", "2.4.0", "2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"136": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "416": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "420": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceDmaGetEnv": {"1f259f8a2a54b043f90d45a5e40f25eb5260e401": {"d6ed632d": {"type": "FUNCTION", "size": 56, "library": "libdma", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.0", "1.5.0", "1.6.1", "1.6.2", "2.0.0", "2.1.0", "2.2.0", "2.3.0", "2.4.0", "2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceDmaPutStallAddr": {"ac4f5690a12e19b2124423985b3d43c568dea91b": {"00000000": {"type": "FUNCTION", "size": 20, "library": "libdma", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "8988bb7f43ab12e726624bd1d3f76fbd4637c1c2": {"00000000": {"type": "FUNCTION", "size": 40, "library": "libdma", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.0", "1.5.0", "1.6.2", "2.0.0", "2.1.0", "2.2.0", "2.3.0", "2.4.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "cb84bf0cecc0e2a3bb9262971cd74ca3f7862a73": {"00000000": {"type": "FUNCTION", "size": 44, "library": "libdma", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1"], "sdk": ["1.6.1", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}}, "sceDmaSend": {"68a0e8ca50f887513d5cfad3c8567309e6368831": {"e9e7342b": {"type": "FUNCTION", "size": 104, "library": "libdma", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "CheckAddress", "scope": "LIBRARY", "original": ".text"}, "32": {"type": "MIPS_26", "symbol": "WaitDma", "scope": "LIBRARY", "original": ".text"}}}}, "c94241418a258bfd3e56d1ce821e8ad4a44f2d97": {"3abf83a5": {"type": "FUNCTION", "size": 216, "library": "libdma", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1", "2.0.0", "2.1.0", "2.2.0", "2.3.0", "2.4.0"], "sdk": ["1.6.1", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"48": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_26", "symbol": "printf"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "97ff2dd054856ca83884950af327356868bae1ee": {"3abf83a5": {"type": "FUNCTION", "size": 216, "library": "libdma", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.0", "1.5.0", "1.6.2"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.3", "1.6.5", "2.0.7"], "compiler_versions": ["2.3.1.01"], "relocations": {"48": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_26", "symbol": "printf"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sceDmaSendN": {"3e7097a84ab1644463443290da19e264add06422": {"c4dba1ce": {"type": "FUNCTION", "size": 116, "library": "libdma", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.5.0", "2.5.2", "2.5.3", "2.5)PS2SDB", 8192}, + std::string_view{R"PS2SDB(.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "CheckAddress", "scope": "LIBRARY", "original": ".text"}, "40": {"type": "MIPS_26", "symbol": "WaitDma", "scope": "LIBRARY", "original": ".text"}}}}, "da5a6568b7b748320e22373ae236bc0d8854f7bc": {"9e1e78cb": {"type": "FUNCTION", "size": 228, "library": "libdma", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1", "2.0.0", "2.1.0", "2.2.0", "2.3.0", "2.4.0"], "sdk": ["1.6.1", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_26", "symbol": "printf"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "737bc66d96c64a3ac06d1e51fdc210b4bc74bfe6": {"9e1e78cb": {"type": "FUNCTION", "size": 228, "library": "libdma", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.0", "1.5.0", "1.6.2"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.3", "1.6.5", "2.0.7"], "compiler_versions": ["2.3.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_26", "symbol": "printf"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sceDmaSendI": {"e9c64b305febad65ade91b1956174d978cd3be70": {"c4dba1ce": {"type": "FUNCTION", "size": 116, "library": "libdma", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "CheckAddress", "scope": "LIBRARY", "original": ".text"}, "40": {"type": "MIPS_26", "symbol": "WaitDma", "scope": "LIBRARY", "original": ".text"}}}}, "f3d03326ef027866f729efc89178fe934f6a39cd": {"9e1e78cb": {"type": "FUNCTION", "size": 228, "library": "libdma", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1", "2.0.0", "2.1.0", "2.2.0", "2.3.0", "2.4.0"], "sdk": ["1.6.1", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_26", "symbol": "printf"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "bc70ec1cf357c3c02eb1ae9cc8cdfbb865ba6d6c": {"9e1e78cb": {"type": "FUNCTION", "size": 228, "library": "libdma", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.0", "1.5.0", "1.6.2"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.3", "1.6.5", "2.0.7"], "compiler_versions": ["2.3.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_26", "symbol": "printf"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sceDmaRecv": {"8bd764244ae171125bf1dceaaabad8a1a3cd66cc": {"00f2e67c": {"type": "FUNCTION", "size": 72, "library": "libdma", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "WaitDma", "scope": "LIBRARY", "original": ".text"}}}}, "27b1d5e4934fde34bf4d9cf8b94860c212bac5cb": {"fc74e091": {"type": "FUNCTION", "size": 196, "library": "libdma", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1", "2.0.0", "2.1.0", "2.2.0", "2.3.0", "2.4.0"], "sdk": ["1.6.1", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"40": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "56": {"type": "MIPS_26", "symbol": "printf"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "f68ccfac99b07f12455ebfd5873bdb5cedfd0fbd": {"fc74e091": {"type": "FUNCTION", "size": 196, "library": "libdma", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.0", "1.5.0", "1.6.2"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.3", "1.6.5", "2.0.7"], "compiler_versions": ["2.3.1.01"], "relocations": {"40": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "56": {"type": "MIPS_26", "symbol": "printf"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sceDmaRecvN": {"63a73bf90dad4b932e5bfb25551a586d79b77944": {"c4dba1ce": {"type": "FUNCTION", "size": 124, "library": "libdma", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "CheckAddress", "scope": "LIBRARY", "original": ".text"}, "40": {"type": "MIPS_26", "symbol": "WaitDma", "scope": "LIBRARY", "original": ".text"}}}}, "a490143d1bbc5d4898a582c2d4b325df876bc1b8": {"9e1e78cb": {"type": "FUNCTION", "size": 236, "library": "libdma", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1", "2.0.0", "2.1.0", "2.2.0", "2.3.0", "2.4.0"], "sdk": ["1.6.1", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_26", "symbol": "printf"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "9f3c0144c1cae617d5bcc4f893668cbf5192ea26": {"9e1e78cb": {"type": "FUNCTION", "size": 236, "library": "libdma", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.0", "1.5.0", "1.6.2"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.3", "1.6.5", "2.0.7"], "compiler_versions": ["2.3.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_26", "symbol": "printf"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sceDmaRecvI": {"2a5d4a59ccc15b59fddda92b613b3e5140e8b825": {"c4dba1ce": {"type": "FUNCTION", "size": 128, "library": "libdma", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "CheckAddress", "scope": "LIBRARY", "original": ".text"}, "40": {"type": "MIPS_26", "symbol": "WaitDma", "scope": "LIBRARY", "original": ".text"}}}}, "47691564c9184d5c6f831b93315a300947919712": {"9e1e78cb": {"type": "FUNCTION", "size": 240, "library": "libdma", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1", "2.0.0", "2.1.0", "2.2.0", "2.3.0", "2.4.0"], "sdk": ["1.6.1", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_26", "symbol": "printf"}, "76": {"type": "MIPS)PS2SDB", 8192}, + std::string_view{R"PS2SDB(_LO16", "symbol": "", "original": ".rodata"}}}}, "6d8c23851d7edb85120149b3a3525ac0bb93bf8d": {"9e1e78cb": {"type": "FUNCTION", "size": 240, "library": "libdma", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.0", "1.5.0", "1.6.2"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.3", "1.6.5", "2.0.7"], "compiler_versions": ["2.3.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_26", "symbol": "printf"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sceDmaSync": {"5dc7ed43d4e94d1cba7eef9fb2778687492c66de": {"29361472": {"type": "FUNCTION", "size": 56, "library": "libdma", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "WaitDma", "scope": "LIBRARY", "original": ".text"}}}}, "ee2b538d23ff07a0b9d220dd648cbe77e3f09174": {"2638cf5d": {"type": "FUNCTION", "size": 196, "library": "libdma", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1", "2.0.0", "2.1.0", "2.2.0", "2.3.0", "2.4.0"], "sdk": ["1.6.1", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"72": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_26", "symbol": "printf"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "68414cb422697a2417ca4caab0c935ecf14d4396": {"2638cf5d": {"type": "FUNCTION", "size": 196, "library": "libdma", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.0", "1.5.0", "1.6.2"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.3", "1.6.5", "2.0.7"], "compiler_versions": ["2.3.1.01"], "relocations": {"72": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_26", "symbol": "printf"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sceDmaWatch": {"0422d61d95d72c2be6e297aab80806e6d68bf5e7": {"cbf335ec": {"type": "FUNCTION", "size": 52, "library": "libdma", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "WatchDma", "scope": "LIBRARY", "original": ".text"}}}}, "38c683836dce5e07afd9f5add452ad763d2d91f7": {"5ffd6ac9": {"type": "FUNCTION", "size": 208, "library": "libdma", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1", "2.0.0", "2.1.0", "2.2.0", "2.3.0", "2.4.0"], "sdk": ["1.6.1", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"76": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_26", "symbol": "printf"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "ffa830587378cbc9a8eaa0fa5311a529c63d47d9": {"5ffd6ac9": {"type": "FUNCTION", "size": 208, "library": "libdma", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.0", "1.5.0", "1.6.2"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.3", "1.6.5", "2.0.7"], "compiler_versions": ["2.3.1.01"], "relocations": {"76": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_26", "symbol": "printf"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sceDmaPause": {"c17a98c0e24f293478e2af4c68739a9aa01cc011": {"84802c1d": {"type": "FUNCTION", "size": 152, "library": "libdma", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "DIntr"}, "120": {"type": "MIPS_26", "symbol": "EIntr"}}}}, "aa87b8d614a4c8b175305b9903b28ba64d8553bf": {"00000000": {"type": "FUNCTION", "size": 72, "library": "libdma", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0", "2.4.0"], "sdk": ["2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "c03dad0706d89a1ab43eaf058b2663dcb978d178": {"00000000": {"type": "FUNCTION", "size": 28, "library": "libdma", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.0", "1.5.0", "1.6.1", "1.6.2", "2.0.0", "2.1.0", "2.2.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.4.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceDmaRestart": {"204fcca4072f8e540a3b759abe24a4d9d55c3255": {"00000000": {"type": "FUNCTION", "size": 20, "library": "libdma", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0", "2.4.0", "2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "c03dad0706d89a1ab43eaf058b2663dcb978d178": {"00000000": {"type": "FUNCTION", "size": 28, "library": "libdma", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.0", "1.5.0", "1.6.1", "1.6.2", "2.0.0", "2.1.0", "2.2.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.4.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceDmaDebug": {"0f72143bbde701febfcbee128cbe1f2870065c43": {"86811c7c": {"type": "FUNCTION", "size": 16, "library": "libdma", "scope": "GLOBAL", "is_interface": false, "versions": ["1.6.1", "1.6.2", "2.0.0", "2.1.0", "2.2.0", "2.3.0", "2.4.0"], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "b1cd0e53a071459bf192cefcc48af7740a12611c": {"75ec155e": {"type": "FUNCTION", "size": 12, "library": "libdma", "scope": "GLOBAL", "is_interface": false, "versions": ["1.4.0", "1.5.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"0": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "8": {"type": "MIPS_GPREL16", "symbol": ".sdata"}}}}}, "sceDmaSendM": {"53b68b1d1ac1d1fdb21709ed9bc31f21b0f7173e": {"b8bebd9b": {"type": "FUNCTION", "size": 12, "library": "libdma", "scope": "GLOBAL", "is_interface": false, "versions": ["1.4.0", "1.5.0", "1.6.1", "1.6.2", "2.0.0", "2.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.4.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "4": {"type": "MIPS_26", "symbol": "printf"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}})PS2SDB", 8192}, + std::string_view{R"PS2SDB(}, "sceDmaSyncN": {"e7648c1f9c0ead435af1efba7f45491c7ad63342": {"58f742b0": {"type": "FUNCTION", "size": 36, "library": "libdma", "scope": "GLOBAL", "is_interface": false, "versions": ["1.4.0", "1.5.0", "1.6.1", "1.6.2", "2.0.0", "2.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.4.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "12": {"type": "MIPS_26", "symbol": "printf"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sceDmaLastSyncTime": {"53b68b1d1ac1d1fdb21709ed9bc31f21b0f7173e": {"b8bebd9b": {"type": "FUNCTION", "size": 12, "library": "libdma", "scope": "GLOBAL", "is_interface": false, "versions": ["1.4.0", "1.5.0", "1.6.1", "1.6.2", "2.0.0", "2.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.4.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "4": {"type": "MIPS_26", "symbol": "printf"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sceDmaCallback": {"e7648c1f9c0ead435af1efba7f45491c7ad63342": {"58f742b0": {"type": "FUNCTION", "size": 36, "library": "libdma", "scope": "GLOBAL", "is_interface": false, "versions": ["1.4.0", "1.5.0", "1.6.1", "1.6.2", "2.0.0", "2.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.4.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "12": {"type": "MIPS_26", "symbol": "printf"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sceDmaGetNextTag": {"49542b4b9b59a10e2a2323d28ea58cbd1caf1edb": {"00000000": {"type": "FUNCTION", "size": 124, "library": "libdma", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.0", "2.7.0"], "sdk": ["2.1.1", "2.1.4", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceDmaAddExpress": {"29fc82d4ce25b925f7790c921390e735ab6735ea": {"569ca6d1": {"type": "FUNCTION", "size": 72, "library": "libdma", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.0", "2.7.0"], "sdk": ["2.1.1", "2.1.4", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceDmaGetNextTag", "scope": "LIBRARY", "original": ".text"}}}}}, "sceDmaAddRef": {"5727f20742e9b31191c2f349c34bdb8f2115a352": {"00000000": {"type": "FUNCTION", "size": 40, "library": "libdma", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.0", "2.7.0"], "sdk": ["2.1.1", "2.1.4", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceDmaAddRefe": {"f3b20b7deaf2b05143be1505b65bba218438e9d1": {"00000000": {"type": "FUNCTION", "size": 36, "library": "libdma", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.0", "2.7.0"], "sdk": ["2.1.1", "2.1.4", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceDmaAddRefs": {"8b2ee8d92d6323eb086658292695895b5731d120": {"00000000": {"type": "FUNCTION", "size": 40, "library": "libdma", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.0", "2.7.0"], "sdk": ["2.1.1", "2.1.4", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceDmaAddCont": {"72989f4de779f87f1542e8f15f9a6c863f48b95a": {"00000000": {"type": "FUNCTION", "size": 48, "library": "libdma", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.0", "2.7.0"], "sdk": ["2.1.1", "2.1.4", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceDmaAddNext": {"63a8308b5eee8daa74cb253454406f5b617511b0": {"00000000": {"type": "FUNCTION", "size": 36, "library": "libdma", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.0", "2.7.0"], "sdk": ["2.1.1", "2.1.4", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceDmaAddCall": {"9771e787a7947f8bfc9fda9cbf0ef5e6ade97b70": {"00000000": {"type": "FUNCTION", "size": 48, "library": "libdma", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.0", "2.7.0"], "sdk": ["2.1.1", "2.1.4", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceDmaAddRet": {"408899f8984dbaf145e8d029d75ca3c63f63b79b": {"00000000": {"type": "FUNCTION", "size": 48, "library": "libdma", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.0", "2.7.0"], "sdk": ["2.1.1", "2.1.4", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceDmaAddEnd": {"53e0c271674b939b769213b4a7e4d75a6f114878": {"00000000": {"type": "FUNCTION", "size": 48, "library": "libdma", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.0", "2.7.0"], "sdk": ["2.1.1", "2.1.4", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceDmaAddDest": {"e92aa09d5aa4571d20dbae8885ec8ba2b20b305c": {"00000000": {"type": "FUNCTION", "size": 48, "library": "libdma", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.0", "2.7.0"], "sdk": ["2.1.1", "2.1.4", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceDmaAddDests": {"ad4dae04268bddccd84decc8845eb0986d96fa1c": {"00000000": {"type": "FUNCTION", "size": 44, "library": "libdma", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.0", "2.7.0"], "sdk": ["2.1.1", "2.1.4", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceDmaAddIRef": {"0420fed718619129fa31d05960920aa02cb7b0c4": {"00000000": {"type": "FUNCTION", "size": 40, "library": "libdma", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.0", "2.7.0"], "sdk": ["2.1.1", "2.1.4", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceDmaAddIRefe": {"45b7f8661e52743774a9bcad0ed2160181c760ad": {"00000000": {"type": "FUNCTION", "size": 40, "library": "libdma", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.0", "2.7.0"], "sdk": ["2.1.1", "2.1.4", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceDmaAddIRefs": {"600e3928e3e3538d19392bbe78ee680962d98762": {"00000000": {"type": "FUNCTION", "size": 40, "library": "libdma", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.0", "2.7.0"], "sdk": ["2.1.1", "2.1.4", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceDmaAddICont": {"11481715e754fb367a703d132bf78ed81f02e767": {"00000000": {"type": "FUNCTION", "size": 48, "library": "libdma", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.0", "2.7.0"], "sdk": ["2.1.1", "2.1.4", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceDmaAddINext": {"6d1592cf0b68f2fd910ef291f117d56655428318": {"00000000": {"type": "FUNCTION", "size": 36, "library": "libdma", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.0", "2.7.0"], "sdk": ["2.1.1", "2.1.4", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceDmaAddICall": {"3e6277ad469e86d7218e754d70140a1cc793a703": {"00000000": {"type": "FUNCTION", "size": 48, "library": "libdma", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.0", "2.7.0"], "sdk": ["2.1.1", "2.1.4", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceDmaAddIRet": {"e6a20026bfbde698e2e58a080724aa3911a935df": {"00000000": {"type": "FUNCTION", "size": 48, "library": "libdma", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.0", "2.7.0"], "sdk": ["2.1.1", "2.1.4", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceDmaAddIEnd": {"28ba84dcc33bfc736b52a1f587bd808bd39d4f63": {"00000000": {"type": "FUNCTION", "size": 48, "library": "libdma", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.0", "2.7.0"], "sdk": ["2.1.1", "2.1.4", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceDmaAddIDest": {"3)PS2SDB", 8192}, + std::string_view{R"PS2SDB(6159f70b9d106e816ae9969435ec30c1c48bd07": {"00000000": {"type": "FUNCTION", "size": 48, "library": "libdma", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.0", "2.7.0"], "sdk": ["2.1.1", "2.1.4", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceDmaAddIDests": {"625c37e30910c62b38a3cb8070f0aba158080460": {"00000000": {"type": "FUNCTION", "size": 48, "library": "libdma", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.0", "2.7.0"], "sdk": ["2.1.1", "2.1.4", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}}, "libdev": {"sceDevVu0CheckBusy": {"6d50fd45e6b110a4744499edaf74d67c33880da2": {"00000000": {"type": "FUNCTION", "size": 20, "library": "libdev", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.4", "2.2.1", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceDevVu0Reset": {"981de50b4fb7cd5b5e73642050e146c2cbbb7fb6": {"00000000": {"type": "FUNCTION", "size": 20, "library": "libdev", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.4", "2.2.1", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceDevVu0Pause": {"03b410c6a01eac9d7b0209ca496ed58452b26f64": {"dfc743dc": {"type": "FUNCTION", "size": 96, "library": "libdev", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.4", "2.2.1", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceDevVu0Sync", "scope": "LIBRARY", "original": ".text"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sceDevVu0Continue": {"50570857d98bc7b68d30d7c9a534089a90b947d7": {"fdef7e3c": {"type": "FUNCTION", "size": 80, "library": "libdev", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.4", "2.2.1", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceDevVu0Sync", "scope": "LIBRARY", "original": ".text"}, "44": {"type": "MIPS_26", "symbol": "sceDevVu0GetTpc", "scope": "LIBRARY", "original": ".text"}, "52": {"type": "MIPS_26", "symbol": "sceDevVu0Exec", "scope": "LIBRARY", "original": ".text"}}}}}, "sceDevVu0PutDBit": {"dc25dca2a7ce5c5696246e565e593d22a9fddf3a": {"00000000": {"type": "FUNCTION", "size": 48, "library": "libdev", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.4", "2.2.1", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceDevVu0PutTBit": {"2cd9ab67bea0d3252d8465d07993afca71830e92": {"00000000": {"type": "FUNCTION", "size": 48, "library": "libdev", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.4", "2.2.1", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceDevVu0GetDBit": {"0486c0cedb0b78cec6bbce7d9d525316026dffd7": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libdev", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.4", "2.2.1", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceDevVu0GetTBit": {"bdfa32d9a81c80ace3431417f84095610372e26d": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libdev", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.4", "2.2.1", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceDevVu0Sync": {"03c1894378ea8f31c92fc6800aa135cc56d44a3a": {"00000000": {"type": "FUNCTION", "size": 64, "library": "libdev", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.4", "2.2.1", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceDevVu0Exec": {"de159ef04e81c8b0f4380a337924cc6512cda748": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libdev", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.4", "2.2.1", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceDevVu0GetTpc": {"614a614590e1fb5afb5c0365881bbe750e761244": {"00000000": {"type": "FUNCTION", "size": 12, "library": "libdev", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.4", "2.2.1", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceDevVu0GetCnd": {"9c326456e70be3123b612dee9a19f742cf212b01": {"63774c49": {"type": "FUNCTION", "size": 224, "library": "libdev", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.4", "2.2.1", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceDevVu0CheckBusy", "scope": "LIBRARY", "original": ".text"}}}}, "14088688750ac2a488991ea3e299834705acc174": {"63774c49": {"type": "FUNCTION", "size": 352, "library": "libdev", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.6.0", "2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceDevVu0CheckBusy", "scope": "LIBRARY", "original": ".text"}}}}, "03108ae871b115f05d7927490a07430179b989f7": {"ce110fca": {"type": "FUNCTION", "size": 364, "library": "libdev", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "sceDevVu0CheckBusy", "scope": "LIBRARY", "original": ".text"}}}}}, "sceDevVu0PutCnd": {"e2e4e57295eb532dbc0e0735b64d210a4a990a4b": {"ce110fca": {"type": "FUNCTION", "size": 364, "library": "libdev", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1"],)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "sceDevVu0CheckBusy", "scope": "LIBRARY", "original": ".text"}}}}, "c90e283bad80ae5e81f69a82a0b54c92c6029e21": {"ce110fca": {"type": "FUNCTION", "size": 364, "library": "libdev", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.4", "2.2.1", "2.3.0", "2.3.4", "2.4.0", "2.4.2", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "sceDevVu0CheckBusy", "scope": "LIBRARY", "original": ".text"}}}}, "d76d934387ba99ee6b9e6be64c65194ce342dfa8": {"ce110fca": {"type": "FUNCTION", "size": 356, "library": "libdev", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "sceDevVu0CheckBusy", "scope": "LIBRARY", "original": ".text"}}}}}, "sceVuCheckBusy": {"4cde66b9b38c96fb39e0728bb78ca301f867c761": {"00000000": {"type": "FUNCTION", "size": 44, "library": "libdev", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.2", "2.1.4", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceVu0MemWriteQ": {"555a52a10d8157416fce7de5dae9995e7606b52f": {"00000000": {"type": "FUNCTION", "size": 64, "library": "libdev", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.2", "2.1.4", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "0077402190592b3f86a57c4178882ca5f0ce4d36": {"00000000": {"type": "FUNCTION", "size": 64, "library": "libdev", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceVu0MemReadQ": {"5143ccaad941eb51f69e5e544229229e0ef24ae5": {"00000000": {"type": "FUNCTION", "size": 68, "library": "libdev", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.2", "2.1.4", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "bea5b66a0feececba14594070b1bf2a060fce076": {"00000000": {"type": "FUNCTION", "size": 68, "library": "libdev", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "7a92e00307f1491353eba301983d50fccb95baaf": {"00000000": {"type": "FUNCTION", "size": 68, "library": "libdev", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceDevVu1Reset": {"d365a5016d51e9608cec1a7c1a0d892beae44094": {"00000000": {"type": "FUNCTION", "size": 20, "library": "libdev", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.2", "2.1.4", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceDevVu1Pause": {"66ca3866b522dc945bcfc20c2ba3161e80179cc2": {"bcc09af8": {"type": "FUNCTION", "size": 96, "library": "libdev", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.2", "2.1.4", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceDevVu1Sync", "scope": "LIBRARY", "original": ".text"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sceDevVu1Continue": {"50570857d98bc7b68d30d7c9a534089a90b947d7": {"8404d957": {"type": "FUNCTION", "size": 80, "library": "libdev", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.2", "2.1.4", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceDevVu1Sync", "scope": "LIBRARY", "original": ".text"}, "44": {"type": "MIPS_26", "symbol": "sceDevVu1GetTpc", "scope": "LIBRARY", "original": ".text"}, "52": {"type": "MIPS_26", "symbol": "sceDevVu1Exec", "scope": "LIBRARY", "original": ".text"}}}}}, "sceDevVu1PutDBit": {"f354d77abadac04121162fed88dabd32f58cd558": {"00000000": {"type": "FUNCTION", "size": 48, "library": "libdev", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.2", "2.1.4", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceDevVu1PutTBit": {"d92abf4bc84223c715fd920b4675779e4418aeba": {"00000000": {"type": "FUNCTION", "size": 48, "library": "libdev", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.2", "2.1.4", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceDevVu1GetDBit": {"0137cc72d8c11fcf1ba048446637e6ce03a63c7d": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libdev", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.2", "2.1.4", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceDevVu1GetTBit": {"0ba1c7e9ecd278aae8762bc5a5c2c0aeee41af62": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libdev", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.2", "2.1.4", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceDevVu1Sync": {"8537337d72835c789b65b38d199c9f084e00d547": {"00000000": {"type": "FUNCTION", "size": 72, "library": "libdev", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.2", "2.1.4", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceDevVu1Exec": {"66cf70031e905e8261ced178ae3a600c5f461902": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libdev", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.2", "2.1.4", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceDevVu1GetTpc": {"81a2f50da54a121905d9d14225d1932540957355": {"f6f11528": {"type": "FUNCTION", "size": 36, "library": "libdev", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.2", "2.1.4", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceVu0MemReadQ", "scope": "LIBRARY", "original": ".text"}}}}}, "sceDevVu1GetCnd": {"c14254d864b5d9f31a85ba2e7e644b2fd49f2176": {"1dd7d8f9": {"type": "FUNCTION", "size":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( 396, "library": "libdev", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.2", "2.1.4", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "sceVuCheckBusy", "scope": "LIBRARY", "original": ".text"}, "124": {"type": "MIPS_26", "symbol": "sceVu0MemReadQ", "scope": "LIBRARY", "original": ".text"}, "156": {"type": "MIPS_26", "symbol": "sceVu0MemReadQ", "scope": "LIBRARY", "original": ".text"}, "184": {"type": "MIPS_26", "symbol": "sceVu0MemReadQ", "scope": "LIBRARY", "original": ".text"}, "204": {"type": "MIPS_26", "symbol": "sceVu0MemReadQ", "scope": "LIBRARY", "original": ".text"}, "224": {"type": "MIPS_26", "symbol": "sceVu0MemReadQ", "scope": "LIBRARY", "original": ".text"}, "244": {"type": "MIPS_26", "symbol": "sceVu0MemReadQ", "scope": "LIBRARY", "original": ".text"}, "264": {"type": "MIPS_26", "symbol": "sceVu0MemReadQ", "scope": "LIBRARY", "original": ".text"}, "284": {"type": "MIPS_26", "symbol": "sceVu0MemReadQ", "scope": "LIBRARY", "original": ".text"}, "316": {"type": "MIPS_26", "symbol": "sceVu0MemReadQ", "scope": "LIBRARY", "original": ".text"}}}}}, "sceDevVu1PutCnd": {"7f0a6c5cb23eb6479138eaf8ab6cf08203a8ec01": {"da4f542e": {"type": "FUNCTION", "size": 328, "library": "libdev", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.2", "2.1.4", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "sceVuCheckBusy", "scope": "LIBRARY", "original": ".text"}, "76": {"type": "MIPS_26", "symbol": "sceVu0MemWriteQ", "scope": "LIBRARY", "original": ".text"}, "116": {"type": "MIPS_26", "symbol": "sceVu0MemWriteQ", "scope": "LIBRARY", "original": ".text"}, "144": {"type": "MIPS_26", "symbol": "sceVu0MemWriteQ", "scope": "LIBRARY", "original": ".text"}, "164": {"type": "MIPS_26", "symbol": "sceVu0MemWriteQ", "scope": "LIBRARY", "original": ".text"}, "184": {"type": "MIPS_26", "symbol": "sceVu0MemWriteQ", "scope": "LIBRARY", "original": ".text"}, "204": {"type": "MIPS_26", "symbol": "sceVu0MemWriteQ", "scope": "LIBRARY", "original": ".text"}, "224": {"type": "MIPS_26", "symbol": "sceVu0MemWriteQ", "scope": "LIBRARY", "original": ".text"}, "244": {"type": "MIPS_26", "symbol": "sceVu0MemWriteQ", "scope": "LIBRARY", "original": ".text"}, "276": {"type": "MIPS_26", "symbol": "sceVu0MemWriteQ", "scope": "LIBRARY", "original": ".text"}}}}}, "sceDevGifReset": {"4ef0ab938a372f0e6201022ef2fd4c602f6d04b6": {"00000000": {"type": "FUNCTION", "size": 20, "library": "libdev", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.2", "2.1.4", "2.3.0", "2.3.4", "2.5.3", "2.7.1", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceDevGifPause": {"c66385aefdd7034fa0caf10bb158d7e76b19e6ce": {"00000000": {"type": "FUNCTION", "size": 24, "library": "libdev", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.2", "2.1.4", "2.3.0", "2.3.4", "2.5.3", "2.7.1", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceDevGifContinue": {"52e22dafef7656637c8702a7bb51fb8bc4c0263a": {"de46ccb7": {"type": "FUNCTION", "size": 56, "library": "libdev", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.2", "2.1.4", "2.3.0", "2.3.4", "2.5.3", "2.7.1", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceDevGifSync", "scope": "LIBRARY", "original": ".text"}}}}}, "sceDevGifPutImtMode": {"466c9676d544191bf974eb95cb85b1a83730f582": {"3a35504b": {"type": "FUNCTION", "size": 100, "library": "libdev", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.2", "2.1.4", "2.3.0", "2.3.4", "2.5.3", "2.7.1", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceDevGifGetImtMode", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_26", "symbol": "sceDevGifGetImtMode", "scope": "LIBRARY", "original": ".text"}}}}}, "sceDevGifGetImtMode": {"d7256163d0b8b4f4da63e1bc039ba6832597f389": {"00000000": {"type": "FUNCTION", "size": 24, "library": "libdev", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.2", "2.1.4", "2.3.0", "2.3.4", "2.5.3", "2.7.1", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceDevGifPutP3msk": {"154b93fc322b075d88cb1132b3ca11c44dc5358e": {"3a35504b": {"type": "FUNCTION", "size": 104, "library": "libdev", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.2", "2.1.4", "2.3.0", "2.3.4", "2.5.3", "2.7.1", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceDevGifGetImtMode", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_26", "symbol": "sceDevGifGetImtMode", "scope": "LIBRARY", "original": ".text"}}}}}, "sceDevGifGetP3msk": {"ff13fae52b5f6bc650838de1b79574ed6f306636": {"ef032eab": {"type": "FUNCTION", "size": 32, "library": "libdev", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.2", "2.1.4", "2.3.0", "2.3.4", "2.5.3", "2.7.1", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceDevGifGetImtMode", "scope": "LIBRARY", "original": ".text"}}}}}, "sceDevGifSync": {"48e12bc3de47d5809f6ed665c3f03aca0e2c660f": {"00000000": {"type": "FUNCTION", "size": 44, "library": "libdev", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.2", "2.1.4", "2.3.0", "2.3.4", "2.5.3", "2.7.1", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceDevGifGetCnd": {"2fa3dbd13d48115a24fafc8d43e98e0fee2504cd": {"372ec155": {"type": "FUNCTION", "size": 184, "library": "libdev", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.2", "2.1.4", "2.3.0", "2.3.4", "2.5.3", "2.7.1", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceDevGifSync", "scope": "LIBRARY", "original": ".text"}}}}}, "sceDevGifPutFifo": {"8d31a56155b005daf43967d7f547acdd1825d9b4": {"00000000": {"type": "FUNCTION", "size": 92, "library": "libdev", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.2", "2.1.4", "2.3.0", "2.3.4", "2.5.3", "2.7.1", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceDevVif0Reset": {"a8f843cc95c481213a2c0abc58386e7ab25623c9": {"00000000": {"type": "FUNCTION", "size": 36, "library": "libdev", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.4", "2.2.1", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceDevVif0Pause": {"47958a32db7ec34b53a1d7900e0c6778aa060d34": {"1044ec1f": {"type": "FUNCTION", "size": 104, "library": "libdev", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.4", "2.2.1", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceDevVif0Sync", "scope": "LIBRARY", "original": ".text"}}}}}, "sceDevVif0Continue": {"383c5a61b4981f08590e5f1b844d06a8a06d1d36": {"5ea90746": {"type": "FUNCTION", "size": 60, "library": "li)PS2SDB", 8192}, + std::string_view{R"PS2SDB(bdev", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.4", "2.2.1", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceDevVif0Sync", "scope": "LIBRARY", "original": ".text"}}}}}, "sceDevVif0PutErr": {"72d2fb4152443b9dddd0edee669407a0da6c72e6": {"00000000": {"type": "FUNCTION", "size": 32, "library": "libdev", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.4", "2.2.1", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceDevVif0GetErr": {"11bf66fd7d1e8ebb899f5710a4d1a66820c72e69": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libdev", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.4", "2.2.1", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceDevVif0Sync": {"05ee1885cffcb02a433aef363964545b9d18609c": {"00000000": {"type": "FUNCTION", "size": 80, "library": "libdev", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.4", "2.2.1", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceDevVif0GetCnd": {"bbc3de2a44ef43dddb151da915a52fe5993e7e85": {"4455574d": {"type": "FUNCTION", "size": 384, "library": "libdev", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.4", "2.2.1", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "sceDevVif0Sync", "scope": "LIBRARY", "original": ".text"}}}}}, "sceDevVif0PutFifo": {"d01814532282e0b1eb97c9092a5f300462baebcc": {"00000000": {"type": "FUNCTION", "size": 92, "library": "libdev", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.4", "2.2.1", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceDevVif1Reset": {"f70b518e75f4491fef8fd5b6a5fe9a998f255c13": {"00000000": {"type": "FUNCTION", "size": 36, "library": "libdev", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.2", "2.1.4", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceDevVif1Pause": {"9bc81ca90f35caba169945ce5c2c33c7a81e1d75": {"2d24c5af": {"type": "FUNCTION", "size": 104, "library": "libdev", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.2", "2.1.4", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceDevVif1Sync", "scope": "LIBRARY", "original": ".text"}}}}}, "sceDevVif1Continue": {"1660e249bca1902fbb7aec0351669e4b773b03ac": {"63c92ef6": {"type": "FUNCTION", "size": 60, "library": "libdev", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.2", "2.1.4", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceDevVif1Sync", "scope": "LIBRARY", "original": ".text"}}}}}, "sceDevVif1PutErr": {"2c92b37f387ba7bc17c5fc3aa40bdcffb013fec6": {"00000000": {"type": "FUNCTION", "size": 32, "library": "libdev", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.2", "2.1.4", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceDevVif1GetErr": {"bba80910659c37c1fdbe302d7c9c069c1ea46601": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libdev", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.2", "2.1.4", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceDevVif1Sync": {"04a2e60d7c223ee7bc61280fbd87f1094d30fb93": {"00000000": {"type": "FUNCTION", "size": 80, "library": "libdev", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.2", "2.1.4", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceDevVif1GetCnd": {"5d4d03e724946a63d975c108c9167ce2547d6f59": {"4ac5e833": {"type": "FUNCTION", "size": 472, "library": "libdev", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.2", "2.1.4", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "sceDevVif1Sync", "scope": "LIBRARY", "original": ".text"}}}}}, "sceDevVif1PutFifo": {"5a0f38b0541f1264252095b381afa638d6f82125": {"00000000": {"type": "FUNCTION", "size": 92, "library": "libdev", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.2", "2.1.4", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceDevVif1GetFifo": {"c3e676ca8e186dc9448aad01608715ec21351a6c": {"00000000": {"type": "FUNCTION", "size": 96, "library": "libdev", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.2", "2.1.4", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceDevFontDefault": {"1f48be4125aa4e589bc9ebd60f290272f342c8ce": {"00000000": {"type": "FUNCTION", "size": 136, "library": "libdev", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.3.0", "2.3.2", "2.4.1", "2.4.2", "2.4.3", "2.5.2", "2.5.3", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceDevFontIdle": {"032b8d27775b43a962da60c79f243dc009cc074f": {"00000000": {"type": "FUNCTION", "size": 64, "library": "libdev", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.3.0", "2.3.2", "2.4.1", "2.4.2", "2.4.3", "2.5.2", "2.5.3", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceDevFontSetColor": {"2c0950b7be42afc0ee3bad8248c9d244736456c2": {"00000000": {"type": "FUNCTION", "size": 56, "library": "libdev", "scope": "LOCAL", "is)PS2SDB", 8192}, + std::string_view{R"PS2SDB(_interface": false, "versions": [], "sdk": ["2.3.0", "2.3.2", "2.4.1", "2.4.2", "2.4.3", "2.5.2", "2.5.3", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceDevConsInit": {"c634212ebed8bb841a461f7b4fcd305e8c10f42e": {"d3e72eac": {"type": "FUNCTION", "size": 52, "library": "libdev", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.0", "2.3.2", "2.4.1", "2.4.2", "2.4.3", "2.5.2", "2.5.3", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceDevConsOpen": {"0fdbc20718d83f5163b83fe6762781d4ca985dfc": {"0209c2a0": {"type": "FUNCTION", "size": 252, "library": "libdev", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.0", "2.3.2", "2.4.1", "2.4.2", "2.4.3", "2.5.2", "2.5.3", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_26", "symbol": "chaMemAlloc", "scope": "LIBRARY", "original": ".text"}, "200": {"type": "MIPS_26", "symbol": "sceDevFontDefault", "scope": "LIBRARY", "original": ".text"}, "208": {"type": "MIPS_26", "symbol": "sceDevConsClear", "scope": "LIBRARY", "original": ".text"}}}}}, "sceDevConsClose": {"cb9ac19d0c46b28959296fc155ef8cb24147062c": {"18affa18": {"type": "FUNCTION", "size": 52, "library": "libdev", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.0", "2.3.2", "2.4.1", "2.4.2", "2.4.3", "2.5.2", "2.5.3", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "chaMemFree", "scope": "LIBRARY", "original": ".text"}}}}}, "sceDevConsRef": {"7b02934fa2ab74d28279976ada26043da3c182bc": {"17b38c82": {"type": "FUNCTION", "size": 156, "library": "libdev", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.0", "2.3.2", "2.4.1", "2.4.2", "2.4.3", "2.5.2", "2.5.3", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"92": {"type": "MIPS_26", "symbol": "sceDevFontRefStrN", "scope": "LIBRARY", "original": ".text"}}}}}, "sceDevConsDraw": {"4523331c2d5d8fceb982d865789f6c6b17bac861": {"ffed654a": {"type": "FUNCTION", "size": 456, "library": "libdev", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.0", "2.3.2", "2.4.1", "2.4.2", "2.4.3", "2.5.2", "2.5.3", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"80": {"type": "MIPS_26", "symbol": "sceDmaGetChan"}, "128": {"type": "MIPS_26", "symbol": "sceGifPkInit"}, "148": {"type": "MIPS_26", "symbol": "sceGifPkInit"}, "248": {"type": "MIPS_26", "symbol": "sceGifPkReset"}, "276": {"type": "MIPS_26", "symbol": "sceDevFontRefStrN", "scope": "LIBRARY", "original": ".text"}, "300": {"type": "MIPS_26", "symbol": "sceGifPkEnd"}, "312": {"type": "MIPS_26", "symbol": "sceGifPkTerminate"}, "320": {"type": "MIPS_26", "symbol": "FlushCache"}, "332": {"type": "MIPS_26", "symbol": "sceGsSyncPath"}, "348": {"type": "MIPS_26", "symbol": "sceDmaSend"}, "388": {"type": "MIPS_26", "symbol": "sceGsSyncPath"}}}}}, "sceDevConsDrawS": {"0c3b36d30f277d68349dc338d95afbc16cfb77d3": {"aea0b6e6": {"type": "FUNCTION", "size": 428, "library": "libdev", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.0", "2.3.2", "2.4.1", "2.4.2", "2.4.3", "2.5.2", "2.5.3", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "sceDmaGetChan"}, "92": {"type": "MIPS_26", "symbol": "sceGifPkInit"}, "108": {"type": "MIPS_26", "symbol": "sceGifPkInit"}, "204": {"type": "MIPS_26", "symbol": "sceGifPkReset"}, "248": {"type": "MIPS_26", "symbol": "sceDevFontRefStrN", "scope": "LIBRARY", "original": ".text"}, "268": {"type": "MIPS_26", "symbol": "sceGifPkEnd"}, "276": {"type": "MIPS_26", "symbol": "sceGifPkTerminate"}, "288": {"type": "MIPS_26", "symbol": "sceGsSyncPath"}, "316": {"type": "MIPS_26", "symbol": "sceDmaSend"}, "372": {"type": "MIPS_26", "symbol": "sceGsSyncPath"}}}}}, "sceDevConsClear": {"dd23c2ae494d442f11649e16781e0405ea7ee367": {"00000000": {"type": "FUNCTION", "size": 88, "library": "libdev", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.0", "2.3.2", "2.4.1", "2.4.2", "2.4.3", "2.5.2", "2.5.3", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceDevConsSetColor": {"ea44f1c6837c166e423b472c65e47ac261d142ae": {"0d1489c2": {"type": "FUNCTION", "size": 24, "library": "libdev", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.0", "2.3.2", "2.4.1", "2.4.2", "2.4.3", "2.5.2", "2.5.3", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "sceDevFontSetColor", "scope": "LIBRARY", "original": ".text"}}}}}, "sceDevConsPrintf": {"c912b2bdad338e1fa9c363997ddcf5040b5f1d8c": {"6dd4a234": {"type": "FUNCTION", "size": 596, "library": "libdev", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.0", "2.3.2", "2.4.1", "2.4.2", "2.4.3", "2.5.2", "2.5.3", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_26", "symbol": "vsprintf"}, "372": {"type": "MIPS_26", "symbol": "sjis2jis", "scope": "LIBRARY", "original": ".text"}, "388": {"type": "MIPS_26", "symbol": "euc2jis", "scope": "LIBRARY", "original": ".text"}, "404": {"type": "MIPS_26", "symbol": "euc2jis", "scope": "LIBRARY", "original": ".text"}, "420": {"type": "MIPS_26", "symbol": "sjis2jis", "scope": "LIBRARY", "original": ".text"}, "436": {"type": "MIPS_26", "symbol": "euc2jis", "scope": "LIBRARY", "original": ".text"}, "492": {"type": "MIPS_26", "symbol": "sceDevFontKnj2Chr", "scope": "LIBRARY", "original": ".text"}, "508": {"type": "MIPS_26", "symbol": "sceDevConsPut", "scope": "LIBRARY", "original": ".text"}}}}, "794aa6efe57178160e7f0c70a85a91e65cc9ffb0": {"370a9997": {"type": "FUNCTION", "size": 604, "library": "libdev", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"72": {"type": "MIPS_26", "symbol": "sceVsnprintf"}, "380": {"type": "MIPS_26", "symbol": "sjis2jis", "scope": "LIBRARY", "original": ".text"}, "396": {"type": "MIPS_26", "symbol": "euc2jis", "scope": "LIBRARY", "original": ".text"}, "412": {"type": "MIPS_26", "symbol": "euc2jis", "scope": "LIBRARY", "original": ".text"}, "428": {"type": "MIPS_26", "symbol": "sjis2jis", "scope": "LIBRARY", "original": ".text"}, "444": {"type": "MIPS_26", "symbol": "euc2jis", "scope": "LIBRARY", "original": ".text"}, "500": {"type": "MIPS_26", "symbol": "sceDevFontKnj2Chr", "scope": "LIBRARY", "original": ".text"}, "516": {"type": "MIPS_26", "symbol": "sceDevConsPut", "scope": "LIBRARY", "original": ".text"}}}}}, "sceDevConsLocate": {"f6750c232c4a3d93cf11b5ede4fd6dc0646f7dae": {"00000000": {"type": "FUNCTION", "size": 44, "library": "libdev", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.0", "2.3.2", "2.4.1", "2.4.2", "2.4.3", "2.5.2", "2.5.3", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceDevConsPut": {"b7a1aa1bc38c96d7744863f621bdcb2b4391b219": {"4dbfaad9": {"type": "FUNCTION", "size": 208, "library": "libdev", "scope": "GLOBAL", "is_interface": true, "versions": [], )PS2SDB", 8192}, + std::string_view{R"PS2SDB("sdk": ["2.3.0", "2.3.2", "2.4.1", "2.4.2", "2.4.3", "2.5.2", "2.5.3", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "sceDevConsPutc", "scope": "LIBRARY", "original": ".text"}, "172": {"type": "MIPS_26", "symbol": "sceDevConsRollup", "scope": "LIBRARY", "original": ".text"}}}}}, "sceDevConsGet": {"816b447fb470ac13b2f9bf0268cef52e4b905373": {"b3b85b0e": {"type": "FUNCTION", "size": 116, "library": "libdev", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.0", "2.3.2", "2.4.1", "2.4.2", "2.4.3", "2.5.2", "2.5.3", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "sceDevConsGetc", "scope": "LIBRARY", "original": ".text"}}}}}, "sceDevConsAttribute": {"3b0975dd727a1ec02a7ee40136377efd9197c6a9": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libdev", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.0", "2.3.2", "2.4.1", "2.4.2", "2.4.3", "2.5.2", "2.5.3", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceDevConsClearBox": {"1e286ac9429a573479b7231a6e77a2ba2b24052a": {"7ea4f18b": {"type": "FUNCTION", "size": 200, "library": "libdev", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.0", "2.3.2", "2.4.1", "2.4.2", "2.4.3", "2.5.2", "2.5.3", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"104": {"type": "MIPS_26", "symbol": "sceDevConsPutc", "scope": "LIBRARY", "original": ".text"}}}}}, "sceDevConsMove": {"adfce5268e01266bc685a0efcd29c689e20c5312": {"78472fcb": {"type": "FUNCTION", "size": 360, "library": "libdev", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.0", "2.3.2", "2.4.1", "2.4.2", "2.4.3", "2.5.2", "2.5.3", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"152": {"type": "MIPS_26", "symbol": "sceDevConsGetc", "scope": "LIBRARY", "original": ".text"}, "176": {"type": "MIPS_26", "symbol": "sceDevConsPutc", "scope": "LIBRARY", "original": ".text"}, "272": {"type": "MIPS_26", "symbol": "sceDevConsGetc", "scope": "LIBRARY", "original": ".text"}, "296": {"type": "MIPS_26", "symbol": "sceDevConsPutc", "scope": "LIBRARY", "original": ".text"}}}}}, "sceDevConsRollup": {"2a4e0f36515cd63a738ba76f432e705736877454": {"a02fde2c": {"type": "FUNCTION", "size": 172, "library": "libdev", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.0", "2.3.2", "2.4.1", "2.4.2", "2.4.3", "2.5.2", "2.5.3", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"72": {"type": "MIPS_26", "symbol": "sceDevConsMove", "scope": "LIBRARY", "original": ".text"}, "120": {"type": "MIPS_26", "symbol": "sceDevConsClearBox", "scope": "LIBRARY", "original": ".text"}, "164": {"type": "MIPS_26", "symbol": "sceDevConsClearBox", "scope": "LIBRARY", "original": ".text"}}}}}, "sceDevConsMessage": {"bfaef79ad426287ca49457b59a8cca6c2297c343": {"933d6d61": {"type": "FUNCTION", "size": 284, "library": "libdev", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.0", "2.3.2", "2.4.1", "2.4.2", "2.4.3", "2.5.2", "2.5.3", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "sceDevConsPrintf", "scope": "LIBRARY", "original": ".text"}, "80": {"type": "MIPS_26", "symbol": "sceDevConsOpen", "scope": "LIBRARY", "original": ".text"}, "116": {"type": "MIPS_26", "symbol": "sceDevConsFrame", "scope": "LIBRARY", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "sceDevConsLocate", "scope": "LIBRARY", "original": ".text"}, "172": {"type": "MIPS_26", "symbol": "sceDevConsPrintf", "scope": "LIBRARY", "original": ".text"}, "192": {"type": "MIPS_26", "symbol": "sceDevConsFrame", "scope": "LIBRARY", "original": ".text"}, "208": {"type": "MIPS_26", "symbol": "sceDevConsLocate", "scope": "LIBRARY", "original": ".text"}, "248": {"type": "MIPS_26", "symbol": "sceDevConsPrintf", "scope": "LIBRARY", "original": ".text"}}}}}, "sceDevConsFrame": {"356ccbffbb73a125ce77d1f7c00957c73c29b5ed": {"9c258ad5": {"type": "FUNCTION", "size": 356, "library": "libdev", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.0", "2.3.2", "2.4.1", "2.4.2", "2.4.3", "2.5.2", "2.5.3", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"72": {"type": "MIPS_26", "symbol": "sceDevConsPiece", "scope": "LIBRARY", "original": ".text"}, "96": {"type": "MIPS_26", "symbol": "sceDevConsPiece", "scope": "LIBRARY", "original": ".text"}, "120": {"type": "MIPS_26", "symbol": "sceDevConsPiece", "scope": "LIBRARY", "original": ".text"}, "144": {"type": "MIPS_26", "symbol": "sceDevConsPiece", "scope": "LIBRARY", "original": ".text"}, "180": {"type": "MIPS_26", "symbol": "sceDevConsPiece", "scope": "LIBRARY", "original": ".text"}, "208": {"type": "MIPS_26", "symbol": "sceDevConsPiece", "scope": "LIBRARY", "original": ".text"}, "268": {"type": "MIPS_26", "symbol": "sceDevConsPiece", "scope": "LIBRARY", "original": ".text"}, "296": {"type": "MIPS_26", "symbol": "sceDevConsPiece", "scope": "LIBRARY", "original": ".text"}}}}}, "euc2jis": {"583a96fbe6115ec91f98ae3d6edcda7a75f75000": {"00000000": {"type": "FUNCTION", "size": 12, "library": "libdev", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.3.0", "2.3.2", "2.4.1", "2.4.2", "2.4.3", "2.5.2", "2.5.3", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sjis2jis": {"8d99903d0c63f52407afe905755a52531f90648e": {"00000000": {"type": "FUNCTION", "size": 116, "library": "libdev", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.3.0", "2.3.2", "2.4.1", "2.4.2", "2.4.3", "2.5.2", "2.5.3", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceDevFontRefDirectImage": {"3e7db5c44cda372c175b07300e1007e53749f37e": {"dcfdacea": {"type": "FUNCTION", "size": 392, "library": "libdev", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.3.0", "2.3.2", "2.4.1", "2.4.2", "2.4.3", "2.5.2", "2.5.3", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"80": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "164": {"type": "MIPS_26", "symbol": "chaGifPkOpenGifTag2", "scope": "LIBRARY", "original": ".text"}, "176": {"type": "MIPS_26", "symbol": "sceGifPkAddGsData"}, "188": {"type": "MIPS_26", "symbol": "sceGifPkAddGsData"}, "200": {"type": "MIPS_26", "symbol": "sceGifPkAddGsData"}, "212": {"type": "MIPS_26", "symbol": "sceGifPkAddGsData"}, "224": {"type": "MIPS_26", "symbol": "sceGifPkAddGsData"}, "236": {"type": "MIPS_26", "symbol": "sceGifPkAddGsData"}, "248": {"type": "MIPS_26", "symbol": "sceGifPkAddGsData"}, "260": {"type": "MIPS_26", "symbol": "sceGifPkAddGsData"}, "272": {"type": "MIPS_26", "symbol": "sceGifPkAddGsData"}, "284": {"type": "MIPS_26", "symbol": "sceGifPkAddGsData"}, "296": {"type": "MIPS_26", "symbol": "sceGifPkAddGsData"}, "308": {"type": "MIPS_26", "symbol": "sceGifPkAddGsData"}, "316": {"type": "MIPS_26", "symbol": "sceGifPkCloseGifTag"}}}}}, "sceDevFontRefStrN": {"4e169a08e02f5358c3474330eb8715c47e2fef65": {"f7319149": {"type": "FUNCTION", "size": 348, "library": "libdev", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.3.0", "2.3.2", "2.4.1", "2.4.2", "2.4.3", "2.5.2", "2.5.3", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compile)PS2SDB", 8192}, + std::string_view{R"PS2SDB(r_versions": ["2.4.1.01"], "relocations": {"116": {"type": "MIPS_26", "symbol": "sceGifPkCnt"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "248": {"type": "MIPS_26", "symbol": "sceDevFontRefDirectImage", "scope": "LIBRARY", "original": ".text"}}}}}, "sceDevConsPutc": {"4b7e7fe8ce55dd1d6fc3cdca53e6f2d13f49f8ba": {"00000000": {"type": "FUNCTION", "size": 76, "library": "libdev", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.3.0", "2.3.2", "2.4.1", "2.4.2", "2.4.3", "2.5.2", "2.5.3", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceDevConsGetc": {"396a3c0b74a1ead7c4c42cea9ba9614d029b235b": {"00000000": {"type": "FUNCTION", "size": 80, "library": "libdev", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.3.0", "2.3.2", "2.4.1", "2.4.2", "2.4.3", "2.5.2", "2.5.3", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceDevConsPiece": {"b69c5ca66439d7258fe8ec5988d40e253911cbf9": {"00000000": {"type": "FUNCTION", "size": 104, "library": "libdev", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.3.0", "2.3.2", "2.4.1", "2.4.2", "2.4.3", "2.5.2", "2.5.3", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceDevFontKnj2Chr": {"edc3348b67f729c2c3ec9671a3410d9695ba2762": {"00000000": {"type": "FUNCTION", "size": 48, "library": "libdev", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.3.0", "2.3.2", "2.4.1", "2.4.2", "2.4.3", "2.5.2", "2.5.3", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "chaGifPkOpenGifTag2": {"c35607149cedd72557231401ade061ca65110c85": {"00000000": {"type": "FUNCTION", "size": 32, "library": "libdev", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.3.0", "2.3.2", "2.4.1", "2.4.2", "2.4.3", "2.5.2", "2.5.3", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "chaMemAlloc": {"9858320ebc23c70fbef511a90c54017ee22b298c": {"06b0e8b4": {"type": "FUNCTION", "size": 380, "library": "libdev", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.3.0", "2.3.2", "2.4.1", "2.4.2", "2.4.3", "2.5.2", "2.5.3", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "332": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "368": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "chaMemFree": {"a498c9720e471d08ccbe5fca5aca998ca5864b99": {"94c920c3": {"type": "FUNCTION", "size": 280, "library": "libdev", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.3.0", "2.3.2", "2.4.1", "2.4.2", "2.4.3", "2.5.2", "2.5.3", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceDevFont": {"9324e484b71a77c71c5b1e90b4977160856ae2da": {"da4a76a6": {"type": "FUNCTION", "size": 316, "library": "libdev", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.0", "2.3.2", "2.4.1", "2.4.2", "2.4.3", "2.5.2", "2.5.3", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "sceGifPkInit"}, "80": {"type": "MIPS_26", "symbol": "sceGifPkCnt"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "192": {"type": "MIPS_26", "symbol": "sceDevFontRefDirectImage", "scope": "LIBRARY", "original": ".text"}, "260": {"type": "MIPS_26", "symbol": "sceGifPkEnd"}}}}}}, "libpkt": {"sceGifPkInit": {"f77d44fef9575016526b59cd2314bb7c6b5ff0ca": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.6.5", "2.1.1", "2.1.4", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceGifPkReset": {"a57e1427f68a50f835757fe9250fd317fd9aebc8": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.6.5", "2.1.1", "2.1.4", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceGifPkTerminate": {"f28d8efe4caa6d6b79a75245e34967d797cecdf2": {"00000000": {"type": "FUNCTION", "size": 88, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.1.1", "2.1.4", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "4455b0efdabf397e2f3ae0b2e4c68bb2ec981cf8": {"00000000": {"type": "FUNCTION", "size": 92, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}, "8ea58be1852bb9512cf1aa87426f2e49e6712a76": {"00000000": {"type": "FUNCTION", "size": 100, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}}, "sceGifPkCnt": {"5ca47012ce67c32c6ed5cba78fdd2429f188382e": {"fcc6cb96": {"type": "FUNCTION", "size": 116, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.6.5", "2.1.1", "2.1.4", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "sceGifPkTerminate", "scope": "LIBRARY"}}}}}, "sceGifPkEnd": {"8d4d1c0391e7a09b886feabfb4176cf35f86536c": {"fcc6cb96": {"type": "FUNCTION", "size": 116, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.6.5", "2.1.1", "2.1.4", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "sceGifPkTerminate", "scope": "LIBRARY"}}}}}, "sceGifPkCloseGifTag": {"6fb9853d8cb17b47a991bdb1c8e7cdec2dac85c3": )PS2SDB", 8192}, + std::string_view{R"PS2SDB({"00000000": {"type": "FUNCTION", "size": 164, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "748ebe093b018ecd02b9bbedf024f6660ba05643": {"00000000": {"type": "FUNCTION", "size": 156, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5", "2.1.1", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "f850bf22291532e9f1b6f6141cdaac8a98f9a824": {"00000000": {"type": "FUNCTION", "size": 156, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}}, "sceGifPkAddGsData": {"f0ebc6b5fc7fc707bba73408152a2b886bfc484c": {"00000000": {"type": "FUNCTION", "size": 40, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.6.5", "2.1.4", "2.3.0", "2.3.2", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceGifPkRef": {"14225f81dfe0bc21227fb6f29d1af7c8eb399039": {"fdb44dda": {"type": "FUNCTION", "size": 152, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5", "2.1.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "sceGifPkTerminate", "scope": "LIBRARY"}}}}}, "sceGifPkReserve": {"dbc336b6605b1d5d74b5cdd1c287aa423e1a2b8d": {"00000000": {"type": "FUNCTION", "size": 20, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.6.5", "2.1.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceGifPkOpenGifTag": {"475d591c58551e482a397f82c9ce9e4b31fdedb8": {"00000000": {"type": "FUNCTION", "size": 24, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.6.5", "2.1.1", "2.1.4", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceGifPkAddGsAD": {"def974bd556fc9b3ca0a1ec82d96807abd23b1e5": {"00000000": {"type": "FUNCTION", "size": 36, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.6.5", "2.1.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceDmaPkInit": {"f77d44fef9575016526b59cd2314bb7c6b5ff0ca": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceDmaPkReset": {"a57e1427f68a50f835757fe9250fd317fd9aebc8": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceDmaPkTerminate": {"f28d8efe4caa6d6b79a75245e34967d797cecdf2": {"00000000": {"type": "FUNCTION", "size": 88, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceDmaPkCnt": {"5ca47012ce67c32c6ed5cba78fdd2429f188382e": {"34866d54": {"type": "FUNCTION", "size": 116, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "sceDmaPkTerminate", "scope": "LIBRARY"}}}}}, "sceDmaPkEnd": {"8d4d1c0391e7a09b886feabfb4176cf35f86536c": {"34866d54": {"type": "FUNCTION", "size": 116, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "sceDmaPkTerminate", "scope": "LIBRARY"}}}}}, "sceDmaPkAddData": {"b21a4cc4de9061f08ef7f13b1854c78f2d7581ed": {"00000000": {"type": "FUNCTION", "size": 20, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceDmaPkAddDataN": {"2168c7595dd8baef649b0d8ed8f7738f176187b0": {"00000000": {"type": "FUNCTION", "size": 60, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceGifPkSize": {"95747293b4f0193dca250b2f20d82fb8dc010d6c": {"00000000": {"type": "FUNCTION", "size": 20, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.6.5", "2.4.1", "2.4.2", "2.4.3", "2.5.2", "2.7.0", "2.7.1", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceVif1PkInit": {"f77d44fef9575016526b59cd2314bb7c6b5ff0ca": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.3", "1.6.5", "2.0.2", "2.0.7", "2.1.3", "2.1.4", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceVif1PkReset": {"a57e1427f68a50f835757fe9250fd317fd9aebc8": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.6.5", "2.0.2", "2.0.7", "2.1.3", "2.1.4", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceVif1PkTerminate": {"f28d8efe4caa6d6b79a75245e34967d797cecdf2": {"00000000": {"type": "FUNCTION", "size": 88, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.0.2", "2.0.7", "2.1.3", "2.1.4", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.0.1", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "4455b0efdabf397e2f3ae0b2e4c68bb2ec981cf8": {"00000000": {"type": "FUNCTION", "size": 92, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}, "8ea58be1852bb9512cf1aa87426f2e49e6712a76": {"00000000": {"type": "FUNCTION", "size": 100, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}}, "sceVif1PkCnt": {"f03bbd6414dca643d1784b3c9357a366a254d26e": {"4d6eb6d5": {"type": "FUNCTION", "size": 88, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.3", "1.6.5", "2.0.2", "2.0.7", )PS2SDB", 8192}, + std::string_view{R"PS2SDB("2.1.3", "2.1.4", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "3.0.0", "3.0.1", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "sceVif1PkTerminate", "scope": "LIBRARY"}}}}}, "sceVif1PkRef": {"14225f81dfe0bc21227fb6f29d1af7c8eb399039": {"b3b848af": {"type": "FUNCTION", "size": 152, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5", "2.0.7", "2.1.3", "2.1.4", "2.2.1", "2.2.2", "2.2.4", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.5", "2.7.0", "2.7.1", "3.0.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "sceVif1PkTerminate", "scope": "LIBRARY"}}}}}, "sceVif1PkCall": {"97102ec740bd404e4fb52553f85c90badef42a07": {"9f638a6b": {"type": "FUNCTION", "size": 112, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.0.7", "2.2.1", "2.2.2", "2.2.4", "2.4.0", "2.4.1", "2.4.3", "2.5.3", "2.5.5", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "sceVif1PkTerminate", "scope": "LIBRARY"}}}}}, "sceVif1PkEnd": {"b019633115d3e0e74c4ac71c29ce61398e55f579": {"4d6eb6d5": {"type": "FUNCTION", "size": 88, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.6.5", "2.0.2", "2.0.7", "2.1.3", "2.1.4", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.2", "2.5.3", "2.5.5", "2.5.7", "2.7.0", "2.8.0", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "sceVif1PkTerminate", "scope": "LIBRARY"}}}}}, "sceVif1PkOpenDirectCode": {"acf98c80fc215b2d2665ae8b5cfbfae77815b7fc": {"3400873e": {"type": "FUNCTION", "size": 88, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.6.5", "2.0.2", "2.0.7", "2.1.3", "2.1.4", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "sceVif1PkAlign", "scope": "LIBRARY"}}}}}, "sceVif1PkCloseDirectCode": {"dfb2d3d0329c23a4e7fc4080cebcd2db055f543e": {"00000000": {"type": "FUNCTION", "size": 44, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.6.5", "2.0.2", "2.0.7", "2.1.3", "2.1.4", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceVif1PkOpenGifTag": {"876a11c2e72d964160f7e1d642000a82118ad7af": {"00000000": {"type": "FUNCTION", "size": 24, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.3", "1.6.5", "2.0.2", "2.0.7", "2.1.3", "2.1.4", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceVif1PkCloseGifTag": {"ee2b6f14c39c20b37406736bd847c8ab04c3010e": {"00000000": {"type": "FUNCTION", "size": 164, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "2ecf58def28ef7861d35819202e7a8d075f34ac4": {"00000000": {"type": "FUNCTION", "size": 156, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.0.7", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "1f9f9ab3548d3d824306d6479bacd565ac21ba02": {"00000000": {"type": "FUNCTION", "size": 156, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}}, "sceVif1PkReserve": {"dbc336b6605b1d5d74b5cdd1c287aa423e1a2b8d": {"00000000": {"type": "FUNCTION", "size": 20, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.6.5", "2.0.2", "2.0.7", "2.1.3", "2.1.4", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.8.1", "3.0.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceVif1PkAlign": {"1110d55487fdd1f1bf70d271d6ebd6547c777f5d": {"00000000": {"type": "FUNCTION", "size": 124, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.0.2", "2.0.7", "2.1.3", "2.1.4", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "cdefd37bc97553557cd999c010e26ce8098f7fc0": {"00000000": {"type": "FUNCTION", "size": 120, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}, "dcf1eec52f938422fc8c5a40bcf6b7345d05492e": {"00000000": {"type": "FUNCTION", "size": 120, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}}, "sceVif1PkAddCode": {"2c1a7395dd9d3f6a26a385e17a8ef22c20d651cf": {"00000000": {"type": "FUNCTION", "size": 20, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.2", "2.0.7", "2.1.3", "2.1.4", "2.2.1", "2.2.2", "2.2.4", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.5", "2.7.0", "2.7.1", "2.8.1", "3.0.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceVif1PkAddData": {"2c1a7395dd9d3f6a26a385e17a8ef22c20d651cf": {"00000000": {"type": "FUNCTION", "size": 20, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "2.0.2", "2.0.7", "2.1.4", "2.2.1", "2.2.4", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.3", "2.5.5", "2.7.0", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceVif1PkAddUpkData32": {"2c1a7395dd9d3f6a26a385e17a8ef22c20d651cf": {"00000000": {"type": "FUNCTION", "size": 20, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.0.7", "2.2.1", "2.2.4", "2.4.0", "2.4.1", "2.4.3", "2.5.2", "2.5.3", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceVif1PkAddUpkData128": {"80a26ce1d187f05c45dbbd67486e8388e1853e21": {"00000000": {"type": "FUNCTION", "size": 80, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.0.2", "2.0.7", "2.2.1", "2.2.4", "2.3.2", "2.4.1", "2.4.3", "2.5.2", "2.5.3", "2.5.5", "2.7.0", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceVif1PkAddGsAD": {"4a927b672df552f5d674f32735fa888a30fdd952": {"00000000": {"type": "FUNCTION", "size": 48, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.7", "2.1.3", "2.1.4", "2.2.1", "2.2.2", "2.2.4", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.)PS2SDB", 8192}, + std::string_view{R"PS2SDB(0", "3.0.1", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceVif1PkRefLoadImage": {"6f99c59e6c36df275bcec10490a18a7b6c4221ce": {"0c75ec00": {"type": "FUNCTION", "size": 488, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.5", "2.7.0", "2.7.1", "3.0.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "108": {"type": "MIPS_26", "symbol": "sceVif1PkCnt", "scope": "LIBRARY"}, "120": {"type": "MIPS_26", "symbol": "sceVif1PkOpenDirectHLCode", "scope": "LIBRARY"}, "132": {"type": "MIPS_26", "symbol": "sceVif1PkOpenGifTag", "scope": "LIBRARY"}, "164": {"type": "MIPS_26", "symbol": "sceVif1PkAddGsAD", "scope": "LIBRARY"}, "188": {"type": "MIPS_26", "symbol": "sceVif1PkAddGsAD", "scope": "LIBRARY"}, "224": {"type": "MIPS_26", "symbol": "sceVif1PkAddGsAD", "scope": "LIBRARY"}, "240": {"type": "MIPS_26", "symbol": "sceVif1PkAddGsAD", "scope": "LIBRARY"}, "248": {"type": "MIPS_26", "symbol": "sceVif1PkCloseGifTag", "scope": "LIBRARY"}, "256": {"type": "MIPS_26", "symbol": "sceVif1PkCloseDirectHLCode", "scope": "LIBRARY"}, "312": {"type": "MIPS_26", "symbol": "sceVif1PkCnt", "scope": "LIBRARY"}, "328": {"type": "MIPS_26", "symbol": "sceVif1PkAlign", "scope": "LIBRARY"}, "344": {"type": "MIPS_26", "symbol": "sceVif1PkAddCode", "scope": "LIBRARY"}, "356": {"type": "MIPS_26", "symbol": "sceVif1PkReserve", "scope": "LIBRARY"}, "420": {"type": "MIPS_26", "symbol": "sceVif1PkRef", "scope": "LIBRARY"}}}}, "9eed6b53220cc5f608699481084974731bec9f39": {"8f345daa": {"type": "FUNCTION", "size": 488, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5", "2.0.7", "2.1.3", "2.1.4", "2.2.2", "2.2.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "108": {"type": "MIPS_26", "symbol": "sceVif1PkCnt", "scope": "LIBRARY"}, "120": {"type": "MIPS_26", "symbol": "sceVif1PkOpenDirectCode", "scope": "LIBRARY"}, "132": {"type": "MIPS_26", "symbol": "sceVif1PkOpenGifTag", "scope": "LIBRARY"}, "164": {"type": "MIPS_26", "symbol": "sceVif1PkAddGsAD", "scope": "LIBRARY"}, "188": {"type": "MIPS_26", "symbol": "sceVif1PkAddGsAD", "scope": "LIBRARY"}, "224": {"type": "MIPS_26", "symbol": "sceVif1PkAddGsAD", "scope": "LIBRARY"}, "240": {"type": "MIPS_26", "symbol": "sceVif1PkAddGsAD", "scope": "LIBRARY"}, "248": {"type": "MIPS_26", "symbol": "sceVif1PkCloseGifTag", "scope": "LIBRARY"}, "256": {"type": "MIPS_26", "symbol": "sceVif1PkCloseDirectCode", "scope": "LIBRARY"}, "312": {"type": "MIPS_26", "symbol": "sceVif1PkCnt", "scope": "LIBRARY"}, "328": {"type": "MIPS_26", "symbol": "sceVif1PkAlign", "scope": "LIBRARY"}, "344": {"type": "MIPS_26", "symbol": "sceVif1PkAddCode", "scope": "LIBRARY"}, "356": {"type": "MIPS_26", "symbol": "sceVif1PkReserve", "scope": "LIBRARY"}, "420": {"type": "MIPS_26", "symbol": "sceVif1PkRef", "scope": "LIBRARY"}}}}}, "sceVif1PkOpenDirectHLCode": {"8f76ba9a0b2a0d3552b3dc0eae551e7d9ecca81a": {"3400873e": {"type": "FUNCTION", "size": 88, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "2.0.7", "2.1.4", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.5", "2.7.0", "2.7.1", "3.0.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "sceVif1PkAlign", "scope": "LIBRARY"}}}}}, "sceVif1PkCloseDirectHLCode": {"dfb2d3d0329c23a4e7fc4080cebcd2db055f543e": {"00000000": {"type": "FUNCTION", "size": 44, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "2.0.7", "2.1.4", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.5", "2.7.0", "2.7.1", "3.0.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceVif1PkAddGsDataN": {"9517a86fb068d8a8900e74d7ed2d8a18d441b7f6": {"00000000": {"type": "FUNCTION", "size": 80, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5", "2.3.4", "2.4.2", "2.5.2", "2.7.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceVif1PkSize": {"95747293b4f0193dca250b2f20d82fb8dc010d6c": {"00000000": {"type": "FUNCTION", "size": 20, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.0.2", "2.2.2", "2.3.2", "2.4.0", "2.4.1", "2.4.3", "2.5.2", "2.5.5", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceVif1PkOpenUpkCode": {"f60e935bea9870feff8a42da6c85cac01b8b93c1": {"00000000": {"type": "FUNCTION", "size": 144, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.0.2", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.2", "2.5.5", "2.7.0", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceVif1PkCloseUpkCode": {"f3862da8b17d77db62e234243abce868b8651dee": {"00000000": {"type": "FUNCTION", "size": 88, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.0.2", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "af1920768a965c6546a64f612f53e8cc138c07ac": {"00000000": {"type": "FUNCTION", "size": 80, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.2", "2.5.5", "2.7.0", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceVif1PkAddDataN": {"307df8149064795c060725e397410e286bea63ea": {"00000000": {"type": "FUNCTION", "size": 64, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.0.2", "2.3.2", "2.4.3", "2.5.5", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceVif1PkDump": {"feb279af7420b1b367b9e54199babf5596fd72b4": {"f8e4fa69": {"type": "FUNCTION", "size": 112, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.0.2", "2.3.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_26", "symbol": "printf"}}}}}, "sceVif1PkAddUpkData128N": {"7a93cf8092fa35ea689bcffaf2413e7383f4d870": {"00000000": {"type": "FUNCTION", "size": 116, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.0.2", "2.3.2", "2.4.3", "2.5.2", "2.5.5", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceVif1PkAddGsPacked": {"b21a4cc4de9061f08ef7f13b1854c78f2d7581ed": {"00000000": {"type": "FUNCTION", "size": 20, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.0.2", "2.3.2", "2.3.4", "2.4.2", "2.4.3", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceGifPkRefLoadImage": {"8e8f9f0f3dd6533c1a963599e8abc2bcd6838a48": {"338e0504": {"type": "FUNCTION", "size": 448, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5", "2.1.4", "2.4.1", "2.4.3", "2.5.0", "2.5.5", "2.8.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_26", "symbol": "sceGifPkCnt", "scope": "LIBRARY"}, "128": {"type": "MIPS_26", "symbol": "sceGifPkOpenGifTag", "scope": "LIBRARY"}, "160": {"type": "MIPS_26", "symbol": "sceGifPkAddGsAD", "scope": "LIBRARY"}, "184": {"type": "MIPS_26", "symbol": "sceGifPkAddGsAD", "scope")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "sceGifPkAddGsAD", "scope": "LIBRARY"}, "236": {"type": "MIPS_26", "symbol": "sceGifPkAddGsAD", "scope": "LIBRARY"}, "244": {"type": "MIPS_26", "symbol": "sceGifPkCloseGifTag", "scope": "LIBRARY"}, "304": {"type": "MIPS_26", "symbol": "sceGifPkCnt", "scope": "LIBRARY"}, "316": {"type": "MIPS_26", "symbol": "sceGifPkReserve", "scope": "LIBRARY"}, "380": {"type": "MIPS_26", "symbol": "sceGifPkRef", "scope": "LIBRARY"}}}}}, "sceGifPkRefe": {"250ad33a23c5421c29bc0466d2d0743f72ca5dd3": {"fdb44dda": {"type": "FUNCTION", "size": 144, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.6.0", "2.7.1", "2.8.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "sceGifPkTerminate", "scope": "LIBRARY"}}}}}, "sceVif1PkRet": {"2344c7d91933b02ac54874e248700c3a1b4e31d7": {"4d6eb6d5": {"type": "FUNCTION", "size": 88, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5", "2.2.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.6.0", "2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "sceVif1PkTerminate", "scope": "LIBRARY"}}}}}, "sceVif1PkAddUpkData32N": {"307df8149064795c060725e397410e286bea63ea": {"00000000": {"type": "FUNCTION", "size": 64, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.2", "2.5.2", "2.7.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceVif1PkAddGsPackedN": {"2168c7595dd8baef649b0d8ed8f7738f176187b0": {"00000000": {"type": "FUNCTION", "size": 60, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.2", "2.7.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceGifPkAddGsPacked": {"b21a4cc4de9061f08ef7f13b1854c78f2d7581ed": {"00000000": {"type": "FUNCTION", "size": 20, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.1.1", "2.2.4", "2.4.3", "2.5.4", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceGifPkAddGsPackedN": {"a6ce7809b55d64dd714634bf8cfcf5263a463e6c": {"00000000": {"type": "FUNCTION", "size": 60, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}, "2168c7595dd8baef649b0d8ed8f7738f176187b0": {"00000000": {"type": "FUNCTION", "size": 60, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.1.4", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceVif0PkInit": {"f77d44fef9575016526b59cd2314bb7c6b5ff0ca": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.0", "2.4.1", "2.5.5", "2.7.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceVif0PkTerminate": {"f28d8efe4caa6d6b79a75245e34967d797cecdf2": {"00000000": {"type": "FUNCTION", "size": 88, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.0", "2.4.1", "2.5.5", "2.7.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceVif0PkCnt": {"f03bbd6414dca643d1784b3c9357a366a254d26e": {"d6cbfaba": {"type": "FUNCTION", "size": 88, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "sceVif0PkTerminate", "scope": "LIBRARY"}}}}}, "sceVif0PkRef": {"14225f81dfe0bc21227fb6f29d1af7c8eb399039": {"281d04c0": {"type": "FUNCTION", "size": 152, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.0", "2.4.1", "2.5.5", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "sceVif0PkTerminate", "scope": "LIBRARY"}}}}}, "sceVif0PkEnd": {"b019633115d3e0e74c4ac71c29ce61398e55f579": {"d6cbfaba": {"type": "FUNCTION", "size": 88, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.0", "2.4.1", "2.5.5", "2.7.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "sceVif0PkTerminate", "scope": "LIBRARY"}}}}}, "sceVif0PkAlign": {"1110d55487fdd1f1bf70d271d6ebd6547c777f5d": {"00000000": {"type": "FUNCTION", "size": 124, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceVif0PkAddCode": {"2c1a7395dd9d3f6a26a385e17a8ef22c20d651cf": {"00000000": {"type": "FUNCTION", "size": 20, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.0", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceVif1PkNext": {"ae8ef33cc866147a3a8d8735fed7acd4d258317f": {"9f638a6b": {"type": "FUNCTION", "size": 112, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.0", "2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "sceVif1PkTerminate", "scope": "LIBRARY"}}}}}, "sceVif1PkAddUpkData64": {"f0ebc6b5fc7fc707bba73408152a2b886bfc484c": {"00000000": {"type": "FUNCTION", "size": 40, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.0", "2.4.1", "2.4.3", "2.5.2", "2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceVif1PkAddDirectDataN": {"7a93cf8092fa35ea689bcffaf2413e7383f4d870": {"00000000": {"type": "FUNCTION", "size": 116, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.0", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceVif1PkAddGsData": {"f0ebc6b5fc7fc707bba73408152a2b886bfc484c": {"00000000": {"type": "FUNCTION", "size": 40, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.0.7", "2.4.1", "2.5.2", "2.5.4", "2.5.5", "2.7.0", "3.0.1", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceGifPkAddGsDataN": {"8ea0b935c2b43180ee31dfe8ef8c981f4a3e55ab": {"00000000": {"type": "FUNCTION", "size": 60, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "89710c067aa47865b3ea84440f73c435dcccf846": {"00000000": {"type": "FUNCTION", "size": 60, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}}, "sceVif1PkAddDirectData": {"80a26ce1d187f05c45dbbd67486e8388e1853e21": {"00000000": {"type": "FUNCTION", "size": 80, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceGifPkCall": {"b3fa520dc651ff868c3f60337edef1486a437414": {"fc7f88b0": {"type": "FUNCTION", "size": 140, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "sceGifPkTerminate", "scope": "LIBRARY"}}}}}, "sceGifPkRet": {"81aaaec97a5da9641c20c6199a823fdf587ef08d": {"fcc6cb96": {"type": "FUNCTION", "size": 116, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3", "2.5.5", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "sceGifPkTerminate", "scope": "LIBRARY"}}}}}, "sceVif0PkReset": {"a57e1427f68a50f835757fe9250fd317fd9aebc8": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceVif0PkOpenUpkCode": {"f60e935bea9870feff8a42da6c85cac01b8b93c1": {"00000000": {"type": "FUNCTION", "size": 144, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01)PS2SDB", 8192}, + std::string_view{R"PS2SDB("], "relocations": {}}}}, "sceVif0PkCloseUpkCode": {"af1920768a965c6546a64f612f53e8cc138c07ac": {"00000000": {"type": "FUNCTION", "size": 80, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceVif0PkReserve": {"dbc336b6605b1d5d74b5cdd1c287aa423e1a2b8d": {"00000000": {"type": "FUNCTION", "size": 20, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceVif0PkAddData": {"2c1a7395dd9d3f6a26a385e17a8ef22c20d651cf": {"00000000": {"type": "FUNCTION", "size": 20, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5", "2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceVif0PkCall": {"97102ec740bd404e4fb52553f85c90badef42a07": {"04c6c604": {"type": "FUNCTION", "size": 112, "library": "libpkt", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "sceVif0PkTerminate", "scope": "LIBRARY"}}}}}}, "libvu0": {"sceVu0ApplyMatrix": {"0d1c0f28b0d9a4a7eb6ac644c8b4fef42aa69750": {"00000000": {"type": "FUNCTION", "size": 44, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "a6824ecf7ef55e359652891f8533670ae40d9bd5": {"7557bc93": {"type": "FUNCTION", "size": 124, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "DIntr"}, "96": {"type": "MIPS_26", "symbol": "EIntr"}}}}}, "sceVu0MulMatrix": {"e15564a31ea10f9c3d3edb78fa6a5b89c086b5b1": {"00000000": {"type": "FUNCTION", "size": 68, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "e6816819500b085f0ccd5bd25ee274bb5197e9ad": {"6b780bda": {"type": "FUNCTION", "size": 144, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "DIntr"}, "116": {"type": "MIPS_26", "symbol": "EIntr"}}}}, "e7aaff56239c1775e49fa83aad59fd108ccea691": {"00000000": {"type": "FUNCTION", "size": 72, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.1", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}}, "sceVu0OuterProduct": {"792897af13fb54c86fc4bf3e0ea83acd65ebd171": {"00000000": {"type": "FUNCTION", "size": 28, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "09a9e12a2c01f4326f3cc205cd9e3e7a7047e999": {"5d3df78f": {"type": "FUNCTION", "size": 108, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "DIntr"}, "80": {"type": "MIPS_26", "symbol": "EIntr"}}}}}, "sceVu0InnerProduct": {"9ea87acdbf4f0f04ba49a3141d7bb6bff4d0534a": {"00000000": {"type": "FUNCTION", "size": 36, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "df4b01c8b6c69ec5805d246cd1b283e5c24d36a1": {"15a94101": {"type": "FUNCTION", "size": 108, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "DIntr"}, "72": {"type": "MIPS_26", "symbol": "EIntr"}}}}}, "sceVu0Normalize": {"ff6fe261176fde6074af2a520630a76631fe93c2": {"00000000": {"type": "FUNCTION", "size": 60, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0"], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "0b48494b7810b65e8c03c309d23b9f0a74931d06": {"7ccde911": {"type": "FUNCTION", "size": 124, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "DIntr"}, "100": {"type": "MIPS_26", "symbol": "EIntr"}}}}, "e3673a323d7fb46a74b162ef8469c9df751c7ed1": {"00000000": {"type": "FUNCTION", "size": 52, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.1", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.2", "2.4.3", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "85bc0dc34c608940ca1d23bcb8fe0e67260fea82": {"00000000": {"type": "FUNCTION", "size": 52, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}, "755763421b79c78c9003cf627cfa7671b6f3bdbf": {"00000000": {"type": "FUNCTION", "size": 60, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceVu0TransposeMatrix": {"6bb4354ec49b59f246dc8e490b46af0463e1af28": {"00000000": {"type": "FUNCTION", "size": 68, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "4652f6527387fe9de7cd7c4a956476a8cfe4a218": {"c60e0854": {"type": "FUNCTION", "size": 132, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "DIntr"}, "108": {"type": "MIPS_26", "symbol": "EIntr"}}}}, "7fa15b90a2a9207b95ec1)PS2SDB", 8192}, + std::string_view{R"PS2SDB(52803b14877f1ccb67c": {"00000000": {"type": "FUNCTION", "size": 72, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.1", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}}, "sceVu0InversMatrix": {"c943ffd93f8b8fcf8b9611ac7870f6d31f9f3401": {"00000000": {"type": "FUNCTION", "size": 108, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "64490e152c1a8996053f9d272561eb33bafa1598": {"f50e8e7d": {"type": "FUNCTION", "size": 172, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "DIntr"}, "148": {"type": "MIPS_26", "symbol": "EIntr"}}}}}, "sceVu0DivVector": {"1f5d45b5bf371be06a3d02dce135d35a84ebe675": {"00000000": {"type": "FUNCTION", "size": 32, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "a794e2003c84abc98af1d8fd416733d70f3a60f6": {"ede4840d": {"type": "FUNCTION", "size": 112, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "DIntr"}, "84": {"type": "MIPS_26", "symbol": "EIntr"}}}}}, "sceVu0DivVectorXYZ": {"0a516dae9e06769c153ad4e6f8d2f408bd49a6e5": {"00000000": {"type": "FUNCTION", "size": 32, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "f33d49339a930637a410211756e459bae40a4f54": {"ede4840d": {"type": "FUNCTION", "size": 112, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "DIntr"}, "84": {"type": "MIPS_26", "symbol": "EIntr"}}}}}, "sceVu0InterVector": {"48daeffee66131df8502f6dec9484e8d3608800c": {"00000000": {"type": "FUNCTION", "size": 40, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "7bf1c6fe82d6a7291074946b610dee424e73239b": {"57bfa354": {"type": "FUNCTION", "size": 136, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "DIntr"}, "104": {"type": "MIPS_26", "symbol": "EIntr"}}}}}, "sceVu0AddVector": {"867644b06016c47f6730ec5a0fb557ada6fe4205": {"00000000": {"type": "FUNCTION", "size": 20, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "648d731a7ac414f9bb7f0dccd43e9973d5debdd3": {"4908d201": {"type": "FUNCTION", "size": 100, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "DIntr"}, "72": {"type": "MIPS_26", "symbol": "EIntr"}}}}}, "sceVu0SubVector": {"0d46a2950ee5976492eb81716b30374746ec0287": {"00000000": {"type": "FUNCTION", "size": 20, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "94a418911ef1e0b30d995a3252a32bf03b369e78": {"4908d201": {"type": "FUNCTION", "size": 100, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "DIntr"}, "72": {"type": "MIPS_26", "symbol": "EIntr"}}}}}, "sceVu0MulVector": {"e3e31f94c23e2457987eede27ea69986d3219ba7": {"00000000": {"type": "FUNCTION", "size": 20, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "a6c23e437cb88e494e84636a5d1452436cff1416": {"4908d201": {"type": "FUNCTION", "size": 100, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "DIntr"}, "72": {"type": "MIPS_26", "symbol": "EIntr"}}}}}, "sceVu0ScaleVector": {"13028edda8c50f2df607414b88779721be906ad7": {"00000000": {"type": "FUNCTION", "size": 24, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "e8700a1ca0726851febf128ee73c6d949b6b99df": {"f9d1a183": {"type": "FUNCTION", "size": 104, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "sy)PS2SDB", 8192}, + std::string_view{R"PS2SDB(mbol": "DIntr"}, "76": {"type": "MIPS_26", "symbol": "EIntr"}}}}}, "sceVu0TransMatrix": {"94e2bae136dccd8f95a4fd7d110307153b698547": {"00000000": {"type": "FUNCTION", "size": 44, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "da3b764d75e80f804e88d505052426c93dc06cb0": {"7557bc93": {"type": "FUNCTION", "size": 124, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "DIntr"}, "96": {"type": "MIPS_26", "symbol": "EIntr"}}}}}, "sceVu0CopyVector": {"2f938dc5aa7566ea9216791a4fe7be0a03c94104": {"00000000": {"type": "FUNCTION", "size": 12, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "fce11b195b4f3c883db868f732bc142ec4242215": {"04733435": {"type": "FUNCTION", "size": 76, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "DIntr"}, "52": {"type": "MIPS_26", "symbol": "EIntr"}}}}, "5af3cdcc27a3a71c4e0a2a64d5ce28b12ad46633": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.1", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}}, "sceVu0CopyMatrix": {"d3e147a004cb551e54c12e0609a1809cd4518a3f": {"00000000": {"type": "FUNCTION", "size": 36, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "dce4a64a60f8e925a651c17cabf86a4ebf4c54db": {"40928783": {"type": "FUNCTION", "size": 100, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "DIntr"}, "76": {"type": "MIPS_26", "symbol": "EIntr"}}}}, "b20dcece2f98353279dfbeb0415a3d0529f88a73": {"00000000": {"type": "FUNCTION", "size": 40, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.1", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}}, "sceVu0FTOI4Vector": {"198b05559a54760ea44e66712a082e7d32abf54e": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "de37ac38fca845129d2a809e633f762868737b53": {"0e69a6f2": {"type": "FUNCTION", "size": 80, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "DIntr"}, "56": {"type": "MIPS_26", "symbol": "EIntr"}}}}}, "sceVu0FTOI0Vector": {"90aaeedfde4ee0a4717588deb973d8db7308ede5": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "028620a1c2b66765153656a6947af50dc15b69d6": {"0e69a6f2": {"type": "FUNCTION", "size": 80, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "DIntr"}, "56": {"type": "MIPS_26", "symbol": "EIntr"}}}}}, "sceVu0ITOF4Vector": {"db4e2794d757151d530b15c360aa2321c38e18f6": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "7934308d7a0bc5350b8c1e2ad0e35443d739a33c": {"0e69a6f2": {"type": "FUNCTION", "size": 80, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "DIntr"}, "56": {"type": "MIPS_26", "symbol": "EIntr"}}}}}, "sceVu0ITOF0Vector": {"9df9fa3bb42421741717b4f8fc67e758bcbbd575": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "b47fb9de67448e4ccd629e1638ccda1e9331aed4": {"0e69a6f2": {"type": "FUNCTION", "size": 80, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "DIntr"}, "56": {"type": "MIPS_26", "symbol": "EIntr"}}}}}, "sceVu0UnitMatrix": {"22e14562950167ef297db0a3f592df372c14477c": {"00000000": {"type": "FUNCTION", "size": 40, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "reloc)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ations": {}}}, "b1cd52530a4214bf8bbfb4dcf1e69524ebad8bc2": {"eae50a87": {"type": "FUNCTION", "size": 88, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "DIntr"}, "68": {"type": "MIPS_26", "symbol": "EIntr"}}}}}, "_sceVu0ecossin": {"47fd575e9b8674147eccee0acd89e2d6c0440ad8": {"d6ed632d": {"type": "FUNCTION", "size": 116, "library": "libvu0", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.6.1", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "15b006f984af69018bde2df98fd38e888b35852f": {"d6ed632d": {"type": "FUNCTION", "size": 116, "library": "libvu0", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.3", "1.6.5", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceVu0RotMatrixZ": {"20b229fa6bd46a5c9510ac7119fc7a56d6ff1064": {"84da605f": {"type": "FUNCTION", "size": 164, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0"], "sdk": ["1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "60": {"type": "MIPS_26", "symbol": "_sceVu0ecossin", "scope": "LIBRARY", "original": ".text"}}}}, "bc8c12dfe76bafff9d04971b154866a170adb8e1": {"fd91a0a3": {"type": "FUNCTION", "size": 240, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "DIntr"}, "68": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "96": {"type": "MIPS_26", "symbol": "_sceVu0ecossin", "scope": "LIBRARY", "original": ".text"}, "212": {"type": "MIPS_26", "symbol": "EIntr"}}}}, "9d3e530718f163f39d3bf3d0d6bf51c3a5590913": {"a40f57e4": {"type": "FUNCTION", "size": 156, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"8": {"type": "MIPS_LITERAL", "symbol": ".lit4"}, "24": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "52": {"type": "MIPS_26", "symbol": "_sceVu0ecossin", "scope": "LIBRARY", "original": ".text"}}}}, "d56e0cdc26dd458685881af772961d4ad059bfb6": {"eadb280d": {"type": "FUNCTION", "size": 172, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.1", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "64": {"type": "MIPS_26", "symbol": "_sceVu0ecossin", "scope": "LIBRARY", "original": ".text"}}}}}, "sceVu0RotMatrixX": {"9b45bb205a78e542958a1b892be4357f9c5d7a58": {"14bc4602": {"type": "FUNCTION", "size": 168, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0"], "sdk": ["1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "60": {"type": "MIPS_26", "symbol": "_sceVu0ecossin", "scope": "LIBRARY", "original": ".text"}}}}, "249f7bbabe1bfdaf6c5a8cea543b4b18c12122dd": {"061b9d0f": {"type": "FUNCTION", "size": 244, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "DIntr"}, "68": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "96": {"type": "MIPS_26", "symbol": "_sceVu0ecossin", "scope": "LIBRARY", "original": ".text"}, "216": {"type": "MIPS_26", "symbol": "EIntr"}}}}, "85cdbde97e343b6f2163354721d30fd6f301d784": {"346971b9": {"type": "FUNCTION", "size": 160, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"8": {"type": "MIPS_LITERAL", "symbol": ".lit4"}, "24": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "52": {"type": "MIPS_26", "symbol": "_sceVu0ecossin", "scope": "LIBRARY", "original": ".text"}}}}, "b147107aa16127257fb7572dace889dafdc5d0e8": {"7abd0e50": {"type": "FUNCTION", "size": 176, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.1", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "64": {"type": "MIPS_26", "symbol": "_sceVu0ecossin", "scope": "LIBRARY", "original": ".text"}}}}}, "sceVu0RotMatrixY": {"a90dc0890b14a3f3fe00d738d5118554de89a3ce": {"b137d60c": {"type": "FUNCTION", "size": 168, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0"], "sdk": ["1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "60": {"type": "MIPS_26", "symbol": "_sceVu0ecossin", "scope": "LIBRARY", "original": ".text"}}}}, "a18ed238e41cd753088e014e4bcee139e3282578": {"936b499a": {"type": "FUNCTION", "size": 244, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "DIntr"}, "68": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "96": {"type": "MIPS_26", "symbol": "_sceVu0ecossin", "scope": "LIBRARY", "original": ".text"}, "216": {"type": "MIPS_26", "symbol": "EIntr"}}}}, "97bdecf8f28baef3486d2aa60837c97027e4831a": {"91e2e1b7": {"type": "FUNCTION", "size": 160, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"8": {"type": "MIPS_LITERAL", "symbol": ".lit4"}, "24": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "52": {"type": "MIPS_26", "symbol": "_sceVu0ecossin", "scope": "LIBRARY", "original": ".text"}}}}, "61c3c215a967588953afcbd24f25a6dbc8935dc4": {"df369e5e": {"type": "FUNCTION", "size": 176, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.1", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "",)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "original": ".text"}, "64": {"type": "MIPS_26", "symbol": "_sceVu0ecossin", "scope": "LIBRARY", "original": ".text"}}}}}, "sceVu0RotMatrix": {"63a6858b9dadf7153407f23d4950b7c44d1f2ac5": {"db261667": {"type": "FUNCTION", "size": 80, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "sceVu0RotMatrixZ", "scope": "LIBRARY", "original": ".text"}, "40": {"type": "MIPS_26", "symbol": "sceVu0RotMatrixY", "scope": "LIBRARY", "original": ".text"}, "72": {"type": "MIPS_26", "symbol": "sceVu0RotMatrixX", "scope": "LIBRARY", "original": ".text"}}}}, "cfaa994f6bf269171b2cea5c5d09e38d54b4047a": {"db261667": {"type": "FUNCTION", "size": 80, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "sceVu0RotMatrixZ", "scope": "LIBRARY", "original": ".text"}, "40": {"type": "MIPS_26", "symbol": "sceVu0RotMatrixY", "scope": "LIBRARY", "original": ".text"}, "72": {"type": "MIPS_26", "symbol": "sceVu0RotMatrixX", "scope": "LIBRARY", "original": ".text"}}}}}, "sceVu0ClampVector": {"cc69018372ecfec46a1635137386a7d17ac7e392": {"00000000": {"type": "FUNCTION", "size": 36, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "850125b136ec1be5ea41d43f7e69b626a0c82f54": {"5da53193": {"type": "FUNCTION", "size": 132, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "DIntr"}, "100": {"type": "MIPS_26", "symbol": "EIntr"}}}}}, "sceVu0CameraMatrix": {"0a07858f92434405a99d2dd62ff7be6f03f0b5e4": {"18b428cf": {"type": "FUNCTION", "size": 176, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "sceVu0UnitMatrix", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_26", "symbol": "sceVu0OuterProduct", "scope": "LIBRARY", "original": ".text"}, "76": {"type": "MIPS_26", "symbol": "sceVu0Normalize", "scope": "LIBRARY", "original": ".text"}, "92": {"type": "MIPS_26", "symbol": "sceVu0Normalize", "scope": "LIBRARY", "original": ".text"}, "108": {"type": "MIPS_26", "symbol": "sceVu0OuterProduct", "scope": "LIBRARY", "original": ".text"}, "124": {"type": "MIPS_26", "symbol": "sceVu0TransMatrix", "scope": "LIBRARY", "original": ".text"}, "136": {"type": "MIPS_26", "symbol": "sceVu0InversMatrix", "scope": "LIBRARY", "original": ".text"}}}}, "2fe4404763f0a0c043eabc2ef5b7fc913d9ce669": {"18b428cf": {"type": "FUNCTION", "size": 176, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "sceVu0UnitMatrix", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_26", "symbol": "sceVu0OuterProduct", "scope": "LIBRARY", "original": ".text"}, "76": {"type": "MIPS_26", "symbol": "sceVu0Normalize", "scope": "LIBRARY", "original": ".text"}, "92": {"type": "MIPS_26", "symbol": "sceVu0Normalize", "scope": "LIBRARY", "original": ".text"}, "108": {"type": "MIPS_26", "symbol": "sceVu0OuterProduct", "scope": "LIBRARY", "original": ".text"}, "124": {"type": "MIPS_26", "symbol": "sceVu0TransMatrix", "scope": "LIBRARY", "original": ".text"}, "136": {"type": "MIPS_26", "symbol": "sceVu0InversMatrix", "scope": "LIBRARY", "original": ".text"}}}}}, "sceVu0NormalLightMatrix": {"80c9efcd69c7492851590b94f6ed233b5e81110c": {"f448001b": {"type": "FUNCTION", "size": 192, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "sceVu0ScaleVector", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_26", "symbol": "sceVu0Normalize", "scope": "LIBRARY", "original": ".text"}, "76": {"type": "MIPS_26", "symbol": "sceVu0ScaleVector", "scope": "LIBRARY", "original": ".text"}, "88": {"type": "MIPS_26", "symbol": "sceVu0Normalize", "scope": "LIBRARY", "original": ".text"}, "104": {"type": "MIPS_26", "symbol": "sceVu0ScaleVector", "scope": "LIBRARY", "original": ".text"}, "116": {"type": "MIPS_26", "symbol": "sceVu0Normalize", "scope": "LIBRARY", "original": ".text"}, "156": {"type": "MIPS_26", "symbol": "sceVu0TransposeMatrix", "scope": "LIBRARY", "original": ".text"}}}}, "b0773c660faabffde55c947543bf7b3d185a3a4d": {"36cad691": {"type": "FUNCTION", "size": 184, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "sceVu0ScaleVector", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_26", "symbol": "sceVu0Normalize", "scope": "LIBRARY", "original": ".text"}, "76": {"type": "MIPS_26", "symbol": "sceVu0ScaleVector", "scope": "LIBRARY", "original": ".text"}, "88": {"type": "MIPS_26", "symbol": "sceVu0Normalize", "scope": "LIBRARY", "original": ".text"}, "104": {"type": "MIPS_26", "symbol": "sceVu0ScaleVector", "scope": "LIBRARY", "original": ".text"}, "116": {"type": "MIPS_26", "symbol": "sceVu0Normalize", "scope": "LIBRARY", "original": ".text"}, "148": {"type": "MIPS_26", "symbol": "sceVu0TransposeMatrix", "scope": "LIBRARY", "original": ".text"}}}}, "577f05acccedffb8215265d20a7a97a1d15cee19": {"f448001b": {"type": "FUNCTION", "size": 192, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "sceVu0ScaleVector", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_26", "symbol": "sceVu0Normalize", "scope": "LIBRARY", "original": ".text"}, "76": {"type": "MIPS_26", "symbol": "sceVu0ScaleVector", "scope": "LIBRARY", "original": ".text"}, "88": {"type": "MIPS_26", "symbol": "sceVu0Normalize", "scope": "LIBRARY", "original": ".text"}, "104": {"type": "MIPS_26", "symbol": "sceVu0ScaleVector", "scope": "LIBRARY", "original": ".text"}, "116": {"type": "MIPS_26", "symbol": "sceVu0Normalize", "scope": "LIBRARY", "original": ".text"}, "156": {"type": "MIPS_26", "symbol": "sceVu0TransposeMatrix", "scope": "LIBRARY", "original": ".text"}}}}}, "sceVu0LightColorMatrix": {"47f8)PS2SDB", 8192}, + std::string_view{R"PS2SDB(e9fa0b2646bba739f3776468f1d5c16d1b6e": {"2ef03d76": {"type": "FUNCTION", "size": 104, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "sceVu0CopyVector", "scope": "LIBRARY", "original": ".text"}, "48": {"type": "MIPS_26", "symbol": "sceVu0CopyVector", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_26", "symbol": "sceVu0CopyVector", "scope": "LIBRARY", "original": ".text"}, "96": {"type": "MIPS_26", "symbol": "sceVu0CopyVector", "scope": "LIBRARY", "original": ".text"}}}}, "4a489fe567dabc69317443fac5ea0672c2a936d2": {"2ef03d76": {"type": "FUNCTION", "size": 104, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "sceVu0CopyVector", "scope": "LIBRARY", "original": ".text"}, "48": {"type": "MIPS_26", "symbol": "sceVu0CopyVector", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_26", "symbol": "sceVu0CopyVector", "scope": "LIBRARY", "original": ".text"}, "96": {"type": "MIPS_26", "symbol": "sceVu0CopyVector", "scope": "LIBRARY", "original": ".text"}}}}}, "sceVu0ViewScreenMatrix": {"9e10f044e88934c8c00c3c639bf887b1706cb7bb": {"280ca142": {"type": "FUNCTION", "size": 260, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"128": {"type": "MIPS_26", "symbol": "sceVu0UnitMatrix", "scope": "LIBRARY", "original": ".text"}, "168": {"type": "MIPS_26", "symbol": "sceVu0UnitMatrix", "scope": "LIBRARY", "original": ".text"}, "208": {"type": "MIPS_26", "symbol": "sceVu0MulMatrix", "scope": "LIBRARY", "original": ".text"}}}}, "f3dc9853586efc854fac8b49639b3fddd31a9afd": {"94f99f1d": {"type": "FUNCTION", "size": 252, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"120": {"type": "MIPS_26", "symbol": "sceVu0UnitMatrix", "scope": "LIBRARY", "original": ".text"}, "160": {"type": "MIPS_26", "symbol": "sceVu0UnitMatrix", "scope": "LIBRARY", "original": ".text"}, "200": {"type": "MIPS_26", "symbol": "sceVu0MulMatrix", "scope": "LIBRARY", "original": ".text"}}}}}, "sceVu0DropShadowMatrix": {"837b87f3adae460c2a7b2f5e24a78fa6a9919ce1": {"00000000": {"type": "FUNCTION", "size": 400, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "03dd4166dd5cc1a0dc1de005fc89aa07d486bacc": {"00000000": {"type": "FUNCTION", "size": 400, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceVu0RotTransPersN": {"8021129958fe1e66d500e0771ba39619bb8ba3ff": {"00000000": {"type": "FUNCTION", "size": 88, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "3338225963d2de468279321406e7bd0b14aa959f": {"f5964861": {"type": "FUNCTION", "size": 196, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "DIntr"}, "160": {"type": "MIPS_26", "symbol": "EIntr"}}}}, "819fe17731f753ef8da9d7806d9fab2ee026aee9": {"00000000": {"type": "FUNCTION", "size": 92, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.1", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}}, "sceVu0RotTransPers": {"09d8dc7069cc64979a202cfcb498d0cb92d8d934": {"00000000": {"type": "FUNCTION", "size": 68, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "d352b407657143436cdcb36f446529ac2137af59": {"7a909234": {"type": "FUNCTION", "size": 164, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "DIntr"}, "132": {"type": "MIPS_26", "symbol": "EIntr"}}}}}, "sceVu0CopyVectorXYZ": {"d6645d263e2805ec6750f7f3eef0c71987cbe254": {"00000000": {"type": "FUNCTION", "size": 28, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceVu0InterVectorXYZ": {"2f22857ff9b1447c6e7eb01da4bf68190f4be664": {"00000000": {"type": "FUNCTION", "size": 44, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "b1190ea99551da0da7408578573556a3e6132f9a": {"e766d0d6": {"type": "FUNCTION", "size": 140, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "DIntr"}, "108": {"type": "MIPS_26", "symbol": "EIntr"}}}}}, "sceVu0ScaleVectorXYZ": {"620ec1d69aab704cae061d68376e808470cb3e11": {"00000000": {"type": "FUNCTION", "size": 24, "library": "libvu0", "scope": "GLOBAL)PS2SDB", 8192}, + std::string_view{R"PS2SDB(", "is_interface": true, "versions": ["3.0.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "f7abdd717916b5d710a907d136adf5e776be1822": {"f9d1a183": {"type": "FUNCTION", "size": 104, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "DIntr"}, "76": {"type": "MIPS_26", "symbol": "EIntr"}}}}}, "sceVu0ClipScreen": {"3a6539a548f04f8e11731f20da5ae1e8e3da9b26": {"00000000": {"type": "FUNCTION", "size": 72, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "5354bfa4aade50e3100c12e48ecde3d65b70bfdb": {"dca0f6d2": {"type": "FUNCTION", "size": 124, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "DIntr"}, "96": {"type": "MIPS_26", "symbol": "EIntr"}}}}, "aa6c87978bef1c4d497c1584b83e97a883a1127a": {"00000000": {"type": "FUNCTION", "size": 76, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.1", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}}, "sceVu0ClipScreen3": {"07a923132fe752dc3f24c6aa716bdb0410d0da03": {"00000000": {"type": "FUNCTION", "size": 96, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "5cec8fa9559e0b7503a35d428af988a45ace9411": {"e8a1fe71": {"type": "FUNCTION", "size": 172, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "DIntr"}, "136": {"type": "MIPS_26", "symbol": "EIntr"}}}}, "42c9cc988430cf99425856091a6da66514314f1f": {"00000000": {"type": "FUNCTION", "size": 100, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.1", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}}, "sceVu0ClipAll": {"9abefdb1e59319f491e6eacc90c112c4f5f43f02": {"00000000": {"type": "FUNCTION", "size": 140, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "eb218a5155e4f743c2a86b5e6913aaff778cd65e": {"a542de59": {"type": "FUNCTION", "size": 236, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "DIntr"}, "192": {"type": "MIPS_26", "symbol": "EIntr"}}}}}, "sceVpu0Reset": {"7b1a67f1596a847fe28920e3b453f9c72b99abd7": {"b638525b": {"type": "FUNCTION", "size": 92, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "9fb47bb2b06a122863cece2234e69f5bd0bd636d": {"d4d1446a": {"type": "FUNCTION", "size": 128, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "DIntr"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_26", "symbol": "EIntr"}}}}, "f4cef863c40530fede8ba4d223681f70807772fa": {"b638525b": {"type": "FUNCTION", "size": 96, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.1", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "c9dc0bc09aded937100e32a8dd08de2b6110f784": {"b638525b": {"type": "FUNCTION", "size": 92, "library": "libvu0", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}}, "libkernl": {"RFU000_FullReset": {"36f7d7c77dabc1e3dec677bb5141b62201d6d7fc": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "ResetEE": {"bc4fa1f485f21c6d93223eab4384268a2aad39e7": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versio)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ns": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "SetGsCrt": {"0dc225c1a94fd4c1539d8b973208d2551f9c30d8": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "RFU003": {"ab2ab631b89712353cd7f8100d8c5dd2e2499c7b": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "_Exit": {"db06665bc03faf529267fc9071f1e35cab35e68e": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "RFU005": {"7201472ac30d47271cf6b07d95d14c806a61dfa4": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "_LoadExecPS2": {"9dbe3e0556afc4f20b36e0a8daf7f38187049fa4": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "_ExecPS2": {"2941b20999f5a30ea77eb78af84b6a1a5e654567": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "RFU008": {"c301a66019f463e3e7b6fbf300f9f54c8ddd61b0": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "RFU009": {"a92059102772ceeef7faf22721a94d57d8de5a6b": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "AddSbusIntcHandler": {"a3d4e233138c9e0bc5091b01f407a6be50b0d3f3": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "RemoveSbusIntcHandler": {"6b3e861ed334156b949013a49928c02ecb33c17e": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1)PS2SDB", 8192}, + std::string_view{R"PS2SDB(-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "Interrupt2Iop": {"8dc820d26e03d1b63f298bf9e137519dfaa6eef7": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "SetVTLBRefillHandler": {"aa5c3590140ca6304a76b82e180dd3a6d6d6e8b9": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "SetVCommonHandler": {"ef280982afb3b3fe8f04bea499738f3748fa14a5": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "SetVInterruptHandler": {"def66d8179f60698e867af2ba1751035b393d3a2": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "AddIntcHandler": {"64dd09eda5be6ef7ecef0cfde42d3c6d4638dd25": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "AddIntcHandler2": {"64dd09eda5be6ef7ecef0cfde42d3c6d4638dd25": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "RemoveIntcHandler": {"827dd7e623e626471eaec81f0a2a55b2e3e4fdbf": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "AddDmacHandler": {"487a9278ee909817bc453b53c9dca08a191f395f": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "AddDmacHandler2": {"487a9278ee909817bc453b53c9dca08a191f395f": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.)PS2SDB", 8192}, + std::string_view{R"PS2SDB(5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "RemoveDmacHandler": {"d344e77c5e08e273d41bea618e0af8e18b0f2265": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "_EnableIntc": {"af839c1b886993a96c8c44532966e96d8057bbff": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "_DisableIntc": {"74eb0fa1efdfb03b05017c38854acb03a7a823a9": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "_EnableDmac": {"e1b37566f6d23c922bf404b17e88e9b0f508cdb5": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "_DisableDmac": {"b87812db67e32d46158c2ecfab1cfb73f58b0cdf": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "SetAlarm": {"56371626bffcc16ac06b36613ae9c420448f8e84": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "3c9d08ab4869c108819cfaba66ec00d031c6b765": {"fb96b826": {"type": "FUNCTION", "size": 136, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0"], "sdk": ["2.2.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "DIntr", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "_SetAlarm", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}}}}, "71f33f94b6d073d9459c964cae9ed872026739c0": {"6b8ea6a8": {"type": "FUNCTION", "size": 108, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "_SetAlarm", "scope": "LIBRARY"}}}}, "99f1e5a7523e93e57b755603050fafd27a9ce14e": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.1", "2.2.2"], "sdk": ["2.2.1", "2.2.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "ReleaseAlarm": {"5e87f748fe99edd5d7192e38b485663f2ace42d0": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "2b7136a628e2dc91066ab8a392b8d1f7ba558d03": {"082ea092": {"type": "FUNCTION", "size": 104, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0"], "sdk": ["2.2.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "DIntr", "scope": "LIBRARY"}, "48": {"type": "MIPS_26", "symbol": "_ReleaseAlarm", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}}}}, "0c687a01865006b56b854ec14d5dd5ff09a75aef": {"6de9a773": {"type": "FUNCTION", "size": 100, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1")PS2SDB", 8192}, + std::string_view{R"PS2SDB(, "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "_ReleaseAlarm", "scope": "LIBRARY"}}}}, "0353e4c7a1f5480e1827301d1ea113f9dccfe1ce": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.1", "2.2.2"], "sdk": ["2.2.1", "2.2.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "_iEnableIntc": {"2cc467b4be7b3880ccd3389cb7d05f66ceded237": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "_iDisableIntc": {"04b6d0b8b7f614b2b3ebe6ae83667a8ed5a06b50": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "_iEnableDmac": {"0486dea8f6157018bc4193bfe6834725dc91e500": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "_iDisableDmac": {"d160968aa13c35fb98edcbb344db7784182ebc54": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "iSetAlarm": {"3ad24eb270bf94daf5c42bb345fe44542ad93b77": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "b90a2c499c2c5f6dd2c2ada773c2e1fffd5e3791": {"c599432b": {"type": "FUNCTION", "size": 32, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "_iSetAlarm", "scope": "LIBRARY"}}}}, "078eb47a1d4cea4ce8d56b3a91589cc0f74e3e44": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.1", "2.2.2"], "sdk": ["2.2.1", "2.2.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "iReleaseAlarm": {"604076bce84b86de1b0fb400a41e1f2a9d309948": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "39eb36045ff95a8bcb9b78cbc2e2c455d1f04e2d": {"78ae1a27": {"type": "FUNCTION", "size": 32, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "_iReleaseAlarm", "scope": "LIBRARY"}}}}, "add62d67c123a2ac9deb646e1611baf1e63c9bd3": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.1", "2.2.2"], "sdk": ["2.2.1", "2.2.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "CreateThread": {"d627bbc28b6198e7bf1a0965fb84926da8cfb322": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "DeleteThread": {"d460e613d1dbbe9bb0fe015b15ea84a278a1afd5": {"00000000": {"type)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "StartThread": {"c805f4cb58dd73bf4b3388018ef3085972441211": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "fc1c5b5f9565fc57648a13671cf76344d6ab6ba2": {"de85a1a1": {"type": "FUNCTION", "size": 376, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "QueryIntrContext", "scope": "LIBRARY"}, "40": {"type": "MIPS_26", "symbol": "DIntr", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "ReferThreadStatus", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}, "332": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}, "344": {"type": "MIPS_26", "symbol": "_StartThread", "scope": "LIBRARY"}}}}}, "ExitThread": {"e87fe69a489f0354c7f231c62d9434dafd4f2cf2": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "ExitDeleteThread": {"b27199e0cf28f57f35a5f292e68ce5390c88770a": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "TerminateThread": {"c8d75f3c68d6995466157653d2665a8012da2cf3": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "iTerminateThread": {"32f83874f6910c96d88606216c71147d972c3307": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "DisableDispatchThread": {"4360d393d55f869f7ab4572617a890bc61f25228": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "EnableDispatchThread": {"34a7cc913d0e3dd6ebdcba873eaa9dc117338b70": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "ChangeThreadPriority": {"20d7c21c16e7fc53ae639dd53f54d9f10d8668d3": {"00000000": {"type": "FUNCTION", "size":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "iChangeThreadPriority": {"f74d97059119018874b642a5998bd141b4c8ff7d": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "RotateThreadReadyQueue": {"d21c96920b65ad61ba7c49134af16801e4444c40": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "_iRotateThreadReadyQueue": {"277bf45dcf810569561499d92bac10e61d914d59": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "ReleaseWaitThread": {"806ca23ab4aafe90dc555cf388053e522862b535": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "iReleaseWaitThread": {"f61c0b3d3533f96ddf3f50bb3e145a68771cce32": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "GetThreadId": {"4ff18c6ac41fc80c95145b10d6bce100f3af10be": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "ReferThreadStatus": {"622eac17db28156631198876a6288e71da8fdd6a": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "iReferThreadStatus": {"49846a4f565266ca0a4a41f75cbaf3ad55fd374f": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(relocations": {}}}}, "SleepThread": {"4520435c95317d298fb734523f7c53cb89a88696": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "WakeupThread": {"710fa98fdb86d83d7465d37b19b8de7454433446": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "_iWakeupThread": {"d25e9bc16fcf837fbeb2607325cbe37918eced27": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "CancelWakeupThread": {"ae9f3887bb40afe63aff8591e1b33f1c2f267fa9": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "iCancelWakeupThread": {"50d52e9a7e6ed4ecc6624f6982fa9c6bb2133677": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "SuspendThread": {"64dc7af9db4502f389b246c4393c2867c675a059": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "_iSuspendThread": {"fb0af131e4b1976c7d66bb4555a4bfb1afb5f3b5": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "ResumeThread": {"8f82a0df02e00a0fce7bad37b69fb1deb6938d39": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "iResumeThread": {"df148122c3d43b1600432e1bedaccea480761311": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "JoinThread": {"0058069d48629935604bdde65e56a620cd237d98": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "RFU060": {"c69571de0acd7ddb52403d7807953f5967ce8efd": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "RFU061": {"2151c73dd566b72c1617812d2bbbd4b5fcf10fa8": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "EndOfHeap": {"7065cd8b14490ddd118412fc4f69c44bfb5de786": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "RFU063": {"551275b944056dfc9cd6fa07dcf5af404efc4a97": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "CreateSema": {"8df7bdfc50c91872b244ef2212ad4f7bb79f9a0c": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "DeleteSema": {"a8fc288baca2dd9622c183873f501122f7f9234d": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "SignalSema": {"bf718a8c45194019498e14bce3b7a5a57608cd34": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "iSignalSema": {"b4ad99703e068bdb9d835d6aa5bf36b179860473": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0")PS2SDB", 8192}, + std::string_view{R"PS2SDB(, "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "WaitSema": {"9e615ec53d168f968a99d469e7678bddbebb6032": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "PollSema": {"8c3cd2b391b772f1d3ace9e940d3a22b33288490": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "iPollSema": {"375a97a9f877d643447d2df7e771a443012096c3": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "ReferSemaStatus": {"7cc29a57116192bc908ac6844f7a57088256a236": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "iReferSemaStatus": {"39c308d04cdf5335470ce38d12cee4bd8f462c77": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "RFU073": {"8f960fe93103475ebe02df4e83a3aaa13f2c7c2d": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "SetOsdConfigParam": {"8b1d1a50852e421dc1cab0d9d952479f7f72d155": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "GetOsdConfigParam": {"97f43c210a6add26d700dc72c029455bdd8af597": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "GetGsHParam": {"44dba0a3b0a8b9309c6e5bb04af30f84744d5d6a": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2)PS2SDB", 8192}, + std::string_view{R"PS2SDB(", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "GetGsVParam": {"2c2fb64ccb4d20e785eb3015cd1909b64bea1f03": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "SetGsHParam": {"af579f9f36177af622ab3df230ebc81107689f86": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "SetGsVParam": {"7e635722024eadc6dc0ccc10771086c0a6964ef0": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "RFU080_CreateEventFlag": {"03e6b65b28360982e56628f099ac1d030248f78c": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "RFU081_DeleteEventFlag": {"d470e8a55431561b4ed589cdae330fa824d06197": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "RFU082_SetEventFlag": {"3fe6c31dbc643e5eff3647fd38b22d4332ca426a": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "RFU083_iSetEventFlag": {"25c5afae1d3d04f798bbd0b706b150b89554015c": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "RFU084_ClearEventFlag": {"5ed2b95e18cda8df12042026dc308b4e76bc19f9": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "RFU085_iClearEventFlag": {"8ee2efac49ce9e90fa6ea18e178d24dfa2df8450": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2)PS2SDB", 8192}, + std::string_view{R"PS2SDB(.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "RFU086_WaitEvnetFlag": {"65ed5b93600e7a9f26585e8b353fa56e234131a5": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "RFU087_PollEvnetFlag": {"d08e263af6e640d78185cf3c6b3bbc407fd4ce35": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "RFU088_iPollEvnetFlag": {"925991225c1c6e67d4abe09808a1bf62e6a2387a": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "RFU089_ReferEventFlagStatus": {"62b2024c711b77fab4c2261dd07120974d493273": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "RFU090_iReferEventFlagStatus": {"5db5cf49fa66402c2abc51be007ecdcc19b7e129": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "RFU091": {"4328807a69c047c9c44a0c0f235233072d832cd7": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "EnableIntcHandler": {"7465d2d77e1d4a04502c59e75494ed934110947b": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "iEnableIntcHandler": {"4b108f11b38df83d82a7d8709d8ceacf1edaa542": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "DisableIntcHandler": {"2ebe50d7fd6afab6ebf21e4e4e923a0d500e20a4": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2)PS2SDB", 8192}, + std::string_view{R"PS2SDB(.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "iDisableIntcHandler": {"609c4011b2e1f44a6560e75dbf8e8e8892b1f693": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "EnableDmacHandler": {"3bde1b61d8cf99994bcef6ad4bc0eff0a9880234": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "iEnableDmacHandler": {"c6712d8eb075f32c5eba4827bbd4debe5d9476f9": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "DisableDmacHandler": {"7dd139c78364feac6f64510ff41a5232267c53ae": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "iDisableDmacHandler": {"ac2235c900a469a08c5a937c49530a1303eae186": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "KSeg0": {"617f84c967dc927550a3e88f957de898bdbf3e42": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "EnableCache": {"cf916a6019245291bf4204df901c155cd348bfbb": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "DisableCache": {"cac0443b4e02405acfacb1d7019f63d70a40bdde": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "GetCop0": {"5472ce33c)PS2SDB", 8192}, + std::string_view{R"PS2SDB(fe4a41e64daf1903d76e9018106e45c": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "FlushCache": {"869d851891fd9214a0c93ab5ae10d1de47085d25": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "CpuConfig": {"0adc7b1018b86700c54f28a448bda7be3bf765e7": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "iGetCop0": {"dc97184561586988b9a259f57c55b81c156b4401": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "iFlushCache": {"a0162b61c488493e2424fd9dd2ef6b58713b621b": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "iCpuConfig": {"32bdcbaf9a8d1fa70a12440fad5199953f8c93d1": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceSifStopDma": {"78cdf1b38deeea085dd7b3d91d0251c8d5a94ed5": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "SetCPUTimerHandler": {"3a566e6905256c2307b9ecc7603644d538b8e747": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "SetCPUTimer": {"02dd502f8d17739c05b602db9422e1e39f0fba7a": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.)PS2SDB", 8192}, + std::string_view{R"PS2SDB(0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "SetOsdConfigParam2": {"8d42041873ac88d8dc503025d686fef48007b8d4": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "GetOsdConfigParam2": {"5a2a6a344c5df6c2d6e63c0866fbf43367fa57d0": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "GsGetIMR": {"7292cfe9831535066da6a02eb935259a287e8ccb": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "iGsGetIMR": {"30f0aae7480baf3f7ae6802d2dabfdb04ce2e32f": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "GsPutIMR": {"95bd793557975110042a7f4d8cf7c0ae12d8a47b": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "iGsPutIMR": {"a8a5b7277ca75cdec1763aeda789db0187855117": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "SetPgifHandler": {"24c584ba6a2d508f432bcd6aead9f391e340e393": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "SetVSyncFlag": {"9310dfc8a3786e548b1fe0469ca43bb43a7e7e6c": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "RFU116": {"69c56eae5e01cc87e2221804a4974cf24c00fc9e": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3)PS2SDB", 8192}, + std::string_view{R"PS2SDB(.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "_print": {"26108dd8fcd60a86390eda4ae9972e34bbeb161a": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceSifDmaStat": {"9670279ac77aa4ad3b76d2c26711823b6b9f6804": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "isceSifDmaStat": {"724ec6918fd0f418fb4ee66d5fb9cb4976ffcd4e": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceSifSetDma": {"b27c5be62bb6cd49976f01cc3da3ce4e0a09c977": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "05d6d82955b8c39fa4f95239cadfbf5869602cac": {"7b66a35d": {"type": "FUNCTION", "size": 136, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["3.1.0"], "sdk": ["3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "DIntr", "scope": "LIBRARY"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "sceSifSetDmaInternal", "scope": "LIBRARY", "original": ".text"}, "96": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "_sceSifSetDma", "scope": "LIBRARY"}}}}}, "isceSifSetDma": {"e3869021c192d9a0febf08360e3d6337adfdae1c": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "e5e286a2d8cdd37b77b255ad2381d43d1b741cb2": {"d4524d0c": {"type": "FUNCTION", "size": 56, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["3.1.0"], "sdk": ["3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_26", "symbol": "sceSifSetDmaInternal", "scope": "LIBRARY", "original": ".text"}, "36": {"type": "MIPS_26", "symbol": "_isceSifSetDma", "scope": "LIBRARY"}}}}}, "sceSifSetDChain": {"69dd4805ff44d743299f3ac89dc5bd9fedc959b3": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "isceSifSetDChain": {"1c6b807e47732d3ab1367b618534986432b928cb": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceSifSetReg": {"10f3fda7abf3e7681b0f8f1d721849f997f5b95a": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceSifGetReg": {"adba01dd612efd3c048a7cf3013528fe50365f85": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "_ExecOSD": {"2451c7a1c6cdfbea41721126e6deea87c171229d": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "Deci2Call": {"779fd9de7cb149f3e490544767733b80faa1283f": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "PSMode": {"d6bca06704d2a06bc0160416d041c32fff927e9b": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "MachineType": {"7f269bda3045ebe8f3f9b2afcfcbee8ee8c17090": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "GetMemorySize": {"4b80008f800046d135d786e1779ee0e15544ec5e": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "_InitTLB": {"ed93e28c6b23ab718f0a3dc67824409eb0643470": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceResetttyinit": {"ad519239883ac4b9a4f922906bdcfe8b22f333cd": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "a0dfb0d7281961e5d117ce62cbe368e57ebc50a5": {"e2361431": {"type": "FUNCTION", "size": 12, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4"], "sdk": ["2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "4": {"type": "MIPS_26", "symbol": "sceTtyInit", "scope": "LIBRARY"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "VSync": {"7c809a56159d1e8eb5e8f7f2a289a88876c9aa59": {"ee73ff2d": {"type": "FUNCTION", "size": 144, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.3.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.3.2", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocatio)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ns": {"8": {"type": "MIPS_26", "symbol": "DIntr", "scope": "LIBRARY"}, "44": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "DIntr", "scope": "LIBRARY"}, "128": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}}}}, "7fe77cf3bff5a6da73f94bab883672e42114a244": {"00000000": {"type": "FUNCTION", "size": 64, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.0-5", "2.3.4", "2.4.0"], "sdk": ["2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "2e04d8d30787085ffe7f73ff105ec480433de1ee": {"00000000": {"type": "FUNCTION", "size": 56, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}, "19c15316addb5dde27fa846bfb81683a3feaf26c": {"00000000": {"type": "FUNCTION", "size": 68, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}}, "VSync2": {"47c611cbccdab542caa9cd4060e8678a10fbd8b8": {"a7d3a227": {"type": "FUNCTION", "size": 164, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.3.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.3.2", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "SetVSyncFlag", "scope": "LIBRARY"}, "24": {"type": "MIPS_26", "symbol": "DIntr", "scope": "LIBRARY"}, "60": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "DIntr", "scope": "LIBRARY"}, "140": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}}}}, "1930eef230e3453c4cc0e5ce60a0c470ed7720f9": {"da2f2a04": {"type": "FUNCTION", "size": 96, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.0-5", "2.3.4", "2.4.0"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "SetVSyncFlag", "scope": "LIBRARY"}}}}, "26e960439b56135028f560fd2496b1b26c67e0be": {"e8750f16": {"type": "FUNCTION", "size": 88, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "SetVSyncFlag", "scope": "LIBRARY"}}}}, "b7f0ef9f40b613759f76c6f14267d4496d72477b": {"e8750f16": {"type": "FUNCTION", "size": 96, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.1.3", "2.1.4"], "sdk": ["2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "SetVSyncFlag", "scope": "LIBRARY"}}}}, "4fc03a1da04a1879ab8e725698c76108af1bfdd3": {"e8750f16": {"type": "FUNCTION", "size": 96, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1"], "sdk": ["1.6.1", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "SetVSyncFlag", "scope": "LIBRARY"}}}}}, "write": {"13419ba3029124ac4e55454fd1d6c438fc133906": {"dd51058f": {"type": "FUNCTION", "size": 124, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"40": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "sceTtyInit", "scope": "LIBRARY"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_26", "symbol": "sceTtyWrite", "scope": "LIBRARY"}}}}}, "read": {"25ae59e194b145b59b9072197e19a70bdd167382": {"c9c736c5": {"type": "FUNCTION", "size": 116, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"32": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_26", "symbol": "sceTtyInit", "scope": "LIBRARY"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_26", "symbol": "sceTtyRead", "scope": "LIBRARY"}}}}}, "open": {"dcd29ec89303c70621bf929e4571dfe1bdb6e71f": {"0d96f1f5": {"type": "FUNCTION", "size": 40, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "__errno"}}}}}, "close": {"6ff945fc330f7399332218593017afc7455e7acb": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8)PS2SDB", 8192}, + std::string_view{R"PS2SDB(.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "ioctl": {"6ff945fc330f7399332218593017afc7455e7acb": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "lseek": {"6ff945fc330f7399332218593017afc7455e7acb": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sbrk": {"80321c5cb42ba95941aa0432c1c03645681a4e24": {"233ac5c3": {"type": "FUNCTION", "size": 172, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_26", "symbol": "EndOfHeap", "scope": "LIBRARY"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_26", "symbol": "__errno"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "108212e781903c20ac1f23bebe67d6a8b62560f4": {"5c4c2444": {"type": "FUNCTION", "size": 168, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_26", "symbol": "EndOfHeap", "scope": "LIBRARY"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_26", "symbol": "__errno"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "6fdeef938fc4936c4067b9eb9eab3a6738d2a84d": {"203cfebc": {"type": "FUNCTION", "size": 168, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1"], "sdk": ["2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_26", "symbol": "EndOfHeap", "scope": "LIBRARY"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_26", "symbol": "__errno"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "isatty": {"98ab17e54d84a098b4240053ee845921141318c1": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "fstat": {"fda567efdbaf7dbee4a86942778f0b9345149f57": {"00000000": {"type": "FUNCTION", "size": 20, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "getpid": {"98ab17e54d84a098b4240053ee845921141318c1": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "kill": {"2fdf2e251c5fdfb167fe0c5d4b05a503a3658458": {"4aca5fa4": {"type": "FUNCTION", "size": 40, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5)PS2SDB", 8192}, + std::string_view{R"PS2SDB(", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "Exit", "scope": "LIBRARY"}}}}}, "stat": {"dcd29ec89303c70621bf929e4571dfe1bdb6e71f": {"0d96f1f5": {"type": "FUNCTION", "size": 40, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "__errno"}}}}}, "unlink": {"dcd29ec89303c70621bf929e4571dfe1bdb6e71f": {"0d96f1f5": {"type": "FUNCTION", "size": 40, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "__errno"}}}}}, "_sceSDC": {"756073f815994449788d06db1cc633e805c00e64": {"00000000": {"type": "FUNCTION", "size": 164, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.3", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "SyncDCache": {"b09e2fdcf29ccb60fa904b3b55b02eabdba8c5c4": {"fba79692": {"type": "FUNCTION", "size": 124, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "DIntr", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "_sceSDC", "scope": "LIBRARY", "original": ".text"}, "96": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}}}}, "509e7fbec17609f84eeba9a8f1ddc77606a79747": {"c469c6a0": {"type": "FUNCTION", "size": 116, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "sdk": ["1.5.3", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"80": {"type": "MIPS_26", "symbol": "_sceSDC", "scope": "LIBRARY", "original": ".text"}}}}, "24d63832f1019b2f63a954ca32f90eca0ddeaf1d": {"c469c6a0": {"type": "FUNCTION", "size": 116, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"80": {"type": "MIPS_26", "symbol": "_sceSDC", "scope": "LIBRARY", "original": ".text"}}}}}, "iSyncDCache": {"8ff8fea6836ebd268ac5efc2997dc8a95905bd15": {"5759482a": {"type": "FUNCTION", "size": 20, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.5.3", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "_sceSDC", "scope": "LIBRARY", "original": ".text"}}}}, "f92c14b1bb933ca990ed71b8223db07d28a096df": {"5759482a": {"type": "FUNCTION", "size": 20, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "_sceSDC", "scope": "LIBRARY", "original": ".text"}}}}}, "_sceIDC": {"7676e622e2d6005ff1144bde125479517d518054": {"00000000": {"type": "FUNCTION", "size": 164, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.5.3", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "InvalidDCache": {"b09e2fdcf29ccb60fa904b3b55b02eabdba8c5c4": {"4f227065": {"type": "FUNCTION", "size": 124, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "DIntr", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "_sceIDC", "scope": "LIBRARY", "original": ".text"}, "96": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}}}}, "509e7fbec17609f84eeba9a8f1ddc77606a79747": {"d5d8e006": {"type": "FUNCTION", "size": 116, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0",)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "2.1.1", "2.1.3", "2.1.4"], "sdk": ["1.5.3", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"80": {"type": "MIPS_26", "symbol": "_sceIDC", "scope": "LIBRARY", "original": ".text"}}}}}, "iInvalidDCache": {"8ff8fea6836ebd268ac5efc2997dc8a95905bd15": {"46e86e8c": {"type": "FUNCTION", "size": 20, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.5.3", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "_sceIDC", "scope": "LIBRARY", "original": ".text"}}}}}, "QueryIntrContext": {"74357631ce07ea51ceeccd3b406cbaf6d42cf354": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "DisableIntc": {"2b7136a628e2dc91066ab8a392b8d1f7ba558d03": {"551daa87": {"type": "FUNCTION", "size": 104, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "DIntr", "scope": "LIBRARY"}, "48": {"type": "MIPS_26", "symbol": "_DisableIntc", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}}}}, "0c687a01865006b56b854ec14d5dd5ff09a75aef": {"c83815b6": {"type": "FUNCTION", "size": 100, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "_DisableIntc", "scope": "LIBRARY"}}}}}, "EnableIntc": {"2b7136a628e2dc91066ab8a392b8d1f7ba558d03": {"1291241a": {"type": "FUNCTION", "size": 104, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "DIntr", "scope": "LIBRARY"}, "48": {"type": "MIPS_26", "symbol": "_EnableIntc", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}}}}, "0c687a01865006b56b854ec14d5dd5ff09a75aef": {"b7f950b5": {"type": "FUNCTION", "size": 100, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "_EnableIntc", "scope": "LIBRARY"}}}}}, "DisableDmac": {"2b7136a628e2dc91066ab8a392b8d1f7ba558d03": {"7c5ae899": {"type": "FUNCTION", "size": 104, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "DIntr", "scope": "LIBRARY"}, "48": {"type": "MIPS_26", "symbol": "_DisableDmac", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}}}}, "0c687a01865006b56b854ec14d5dd5ff09a75aef": {"0fa19526": {"type": "FUNCTION", "size": 100, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "_DisableDmac", "scope": "LIBRARY"}}}}}, "EnableDmac": {"2b7136a628e2dc91066ab8a392b8d1f7ba558d03": {"3bd66604": {"type": "FUNCTION", "size": 104, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "DIntr", "scope": "LIBRARY"}, "48": {"type": "MIPS_26", "symbol": "_EnableDmac", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}}}}, "0c687a01865006b56b854ec14d5dd5ff09a75aef": {"7060d025": {"type": "FUNCTION", "size": 100, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "_EnableDmac", "scope": "LIBRARY"}}}}}, "iEnableIntc": {"39eb36045ff95a8bcb9b78cbc2e2c455d1f04e2d": {"f593a230": {"type": "FUNCTION", "size": 32, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.)PS2SDB", 8192}, + std::string_view{R"PS2SDB(0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "_iEnableIntc", "scope": "LIBRARY"}}}}}, "iDisableIntc": {"39eb36045ff95a8bcb9b78cbc2e2c455d1f04e2d": {"55a808eb": {"type": "FUNCTION", "size": 32, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "_iDisableIntc", "scope": "LIBRARY"}}}}}, "iEnableDmac": {"39eb36045ff95a8bcb9b78cbc2e2c455d1f04e2d": {"320a22a0": {"type": "FUNCTION", "size": 32, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "_iEnableDmac", "scope": "LIBRARY"}}}}}, "iDisableDmac": {"39eb36045ff95a8bcb9b78cbc2e2c455d1f04e2d": {"9231887b": {"type": "FUNCTION", "size": 32, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "_iDisableDmac", "scope": "LIBRARY"}}}}}, "topThread": {"044cd0bf2d8de3705bfbae1353d218339f85818c": {"36f2a787": {"type": "FUNCTION", "size": 216, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "152": {"type": "MIPS_26", "symbol": "WakeupThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "RotateThreadReadyQueue", "scope": "LIBRARY"}, "184": {"type": "MIPS_26", "symbol": "SuspendThread", "scope": "LIBRARY"}, "200": {"type": "MIPS_26", "symbol": "kprintf", "scope": "LIBRARY"}}}}, "e16d2c77838a3d80289cc9e9cc4af637cac24f5f": {"7cec9505": {"type": "FUNCTION", "size": 172, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.0.5", "2.1.0", "2.1.1"], "sdk": ["2.0.7", "2.1.0", "2.1.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "48": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "108": {"type": "MIPS_26", "symbol": "WakeupThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "RotateThreadReadyQueue", "scope": "LIBRARY"}, "140": {"type": "MIPS_26", "symbol": "SuspendThread", "scope": "LIBRARY"}, "156": {"type": "MIPS_26", "symbol": "kprintf", "scope": "LIBRARY"}}}}, "17f10ce1d47143473f051abbc04a03a99680d571": {"1e3b8a4e": {"type": "FUNCTION", "size": 124, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.0.0", "2.0.2"], "sdk": ["2.0.0", "2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "76": {"type": "MIPS_26", "symbol": "WakeupThread", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "RotateThreadReadyQueue", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "kprintf", "scope": "LIBRARY"}}}}}, "InitThread": {"6fca9555c4c6755d7caee66e6fbf1b3dbfe1030c": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"ty)PS2SDB", 8192}, + std::string_view{R"PS2SDB(pe": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "f8f0e662bb94ed775dfc204a1689cf8e3f572af7": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.3"], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "22eb367a38691047cbd2cb09d0becb1d7ec12117": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "454c268a15f4f06f0df8709d1609c03becf4353f": {"04c10db5": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.4", "2.5.0", "2.5.5", "2.7.0", "2.7.1", "2.8.0"], "sdk": ["2.3.4", "2.5.0", "2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": "_gp"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": "_gp"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "9415e18c76ce959d792917a9de1aab213a2997c3": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.2"], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "b13738ea00e3bd46b5b443172ba282f16195b6e8": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.2"], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".b)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "45376a42882a5af4c47093629d72564ab510c233": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.2"], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "987bb0a02cded6366a60e92cbb6c510206f31270": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0"], "sdk": ["2.2.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "d9633de86470ba3c12d32ca86b2415015a7a7f00": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0"], "sdk": ["2.2.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "8a384c80991750d58dc6a5c1386b751b02d2add5": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0"], "sdk": ["2.2.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "d853eee04d8f72583753ab6b86635d5cb5b66baa": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0"], "sdk": ["2.5.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {")PS2SDB", 8192}, + std::string_view{R"PS2SDB(type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "720f3ad4934d3941cbf22341aeda6a5a515b28dd": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0"], "sdk": ["2.3.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "065a1c6b1c8ee5da7649e15653cb60df60ef5a91": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.6.0"], "sdk": ["2.6.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "7f24075e56f37c7d309c0133cb9cde3eef0a57fc": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.6.0"], "sdk": ["2.6.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "5238d0439ee0573e23d5dbcd077f16607b8445ed": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0"], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "3cccada33c0c7247c1c6625b27c81b5375d1cd2d": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.1"], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16",)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "525c04cf02fe47fa99ed26e99bf2fe8329cd11cc": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.3"], "sdk": ["2.1.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "cc3dbaeee3c711618f3b9e545a41008e8fdf406a": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.4"], "sdk": ["2.3.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "488746396ee20e9486ffefbf8151471a5a822b22": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.6.0"], "sdk": ["2.6.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "0d9e00349b4f645adef6e348852f7ae1f2f5727d": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0"], "sdk": ["2.3.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "ba2f9d46c87fde4433efe6157cfd968a30b80dff": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.5"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "<)PS2SDB", 8192}, + std::string_view{R"PS2SDB(data>", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "8224b0e4046df03cd08901ee82998aefb28eadc2": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0"], "sdk": ["2.3.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "37dbe33a38e9ad815ac25bcfe4b67f7841be88ff": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0"], "sdk": ["2.3.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "823aae543d13386627ed6fc92b1c08ad78a66df8": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0"], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "a90360b9811be300eab97d49b2c31303c4c98199": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.4"], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "114b5dda933313564539bfd7490ab2bedef0b9c7": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.5"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "ori)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ginal": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "fa28ef15a25da30f78999f5e78f2678941b3d14d": {"8ef6fb36": {"type": "FUNCTION", "size": 200, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.0"], "sdk": ["2.1.0"], "compiler_versions": ["2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "99a9d3c60143b35a38eb03ece423707b8e60ed28": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.3"], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "c28034a6112d90f6ddc5a230ce6810721e171b3b": {"8ef6fb36": {"type": "FUNCTION", "size": 200, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.5"], "sdk": ["2.0.7"], "compiler_versions": ["2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "72732818d5f8403c61bb98a83023afbe3dc8c2e9": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.4"], "sdk": ["2.3.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "16b5758a0fa75c947d70c625e4fddcee319098ac": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.5"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".da)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ta"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "904361e65e6cbefe41748de328024893f3b954b1": {"8ef6fb36": {"type": "FUNCTION", "size": 200, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.2"], "sdk": ["2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "274eb51b32c5e827d82a40671fbd4117193794cc": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.3"], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "14d058a362e5efff718007087713b3df937a6355": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.3"], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "393b8e4289aab9398399924a97962ad542e19596": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.3"], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "755c7d1f06fa8e04763de494e724f95a6685b672": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0"], "sdk)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": ["2.3.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "fd90ddea458e90143989a04c35d67725f1a7151d": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0"], "sdk": ["2.3.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "f2ebe7198d1e9b8c8d6500be07a8fdc02b028ff8": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0"], "sdk": ["2.3.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "b107dd7c2c2a32ee28f51ca13fd7cef790589ff0": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.3"], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "e0f0b0bfb1ca1b7cae8aeec626f14e8ce4a32a49": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0"], "sdk": ["2.5.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": ".data"}}}}, "6f3f79d1e5ea965d0e6e1af8f86bb50f6a7f7cb9": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0"], "sdk": ["2.5.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "e23d9d2d3401ded91f6539fcf92f664173b9fe90": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.6.0"], "sdk": ["2.6.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "5c177fcef0eafc7210838eff7617e3ca039eb49f": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.1"], "sdk": ["2.7.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "5168f959a11baca9505c40ee0c6db9097f04cb32": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "87b177abbba78e571ac6c9d020866be6c9784b77": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.1"], "sdk": ["2.7.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "a11192f54f739742c3b0e8448aa6c72a8a811d1c": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.3"], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "efa1cc311dff6e1cc891936c2fbda33626732237": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.3"], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "41f2b862bffeac6e8b50802385489b58b97a58fe": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.4"], "sdk": ["2.2.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "1abca1c0a6950a161448683117a62c18778e0ab2": {"8ef6fb36": {"type": "FUNCTION", "size": 200, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.1"], "sdk": ["2.1.1"], "compiler_versions": ["2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "fd2fc3210efcbae257a0ac7c180871caffd6fe6c": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.4"], "sdk": ["2.2.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "ffec19c2ec80bc30be608aa638576e0e51c7e0c1": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0"], "sdk": ["2.5.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "19aa754e4f6c462bf0b098a81a8a873fac7c826f": {"8ef6fb36": {"type": "FUNCTION", "size": 200, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.2"], "sdk": ["2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "131e84f22243a45cfcf3e749c5a951c6797047ff": {"9b1f7f06": {"type": "FUNCTION", "size": 236, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "60": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": "_gp"}, "88": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": "_gp"}, "128": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "180": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY", "original": ".text"}, "188": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "200": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "bc9c627d41f252d36bf6020c9f591d80dfc95a86": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.3"], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "08bec96a22dd5d6ab15ea0972738057a8565f357": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.3"], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(.bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "060497e2753f8e5aad4cff2c56b52d5342d0809f": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.3"], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "cd13c9c8af4314d965cd40226def5e873b68a34a": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.4"], "sdk": ["2.1.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "dddab5e78fa95d3fdc8f9ba96f832057551c4c13": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.4"], "sdk": ["2.1.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "746a7b6ba0b13800acba8c5563638eaad570a338": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.4"], "sdk": ["2.1.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "e4c5f9b34d56262aa2026d5ffc9c8b8ac69a6f17": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0"], "sdk": ["2.3.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "56d726e4c45bfb35507db0b17138ad5277033c13": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.0"], "sdk": ["2.4.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "c2e14f87f772ccb10d9c4c845bf12b7fdd1208d2": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.5"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "77353b55a585cc4deeb1b8d66652cf1d6483c385": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.4"], "sdk": ["2.1.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "be816dc5c23597fbed242ed44156ec51be0784ad": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.4"], "sdk": ["2.1.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "f1987daed074ea598a4d63fe871502d0320bd467": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.2"], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MI)PS2SDB", 8192}, + std::string_view{R"PS2SDB(PS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "c4601fea6c9eeee685437c254d092a1274fa558f": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.2"], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "3c785ff6b6e91fc7904c38e4210f8e6fab2b5d86": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.2"], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "8319b2b829399f291520206b08c062dcf1bacde7": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.5"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "f18c8743cd6b1a37090354eceef8dc947108465a": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0"], "sdk": ["2.5.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "18289b7fbbdd25ce5654c41487438188d5587d03": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.4"], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "sy)PS2SDB", 8192}, + std::string_view{R"PS2SDB(mbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "93da5ec2b9f657ccd20887b02a3389dc54be4720": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.4"], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "7aac886e525987cb48025f19404b7c5333257350": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0"], "sdk": ["2.3.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "ace59085e24acb00816a82413aaedac687ef74b8": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0"], "sdk": ["2.3.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "22090e5b44dfa225e9ebeb0564354eb998cf903a": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0-5"], "sdk": ["2.5.7"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "653f46a6a3f25ed01f97a22c6044673df384b8a5": {"ede88419": {"type": "FUNCTION",)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0"], "sdk": ["2.5.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "f1daa1d1ec61dd2dfaa1ecbc2c8baf86b8a7044b": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.3"], "sdk": ["2.1.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "aeaa4088c009c3905555fd5725d4298205f48e32": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.3"], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "82aa82bcd362af5843c6e69c7f734eaed86c02ba": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.1"], "sdk": ["2.4.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "abff8d708621cf8106e03fd70bff20d593b7abdf": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "96c90ce5439e5a1f07c805769c8739f8a90f3b2b": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.4"], "sdk": ["2.1.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "1298c7bd402c7f404057f3cf3021628a2aed482c": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.4"], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "9ddc1acd29c271f0e5780f160c8e5871e9e855be": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.1"], "sdk": ["2.2.1"], "compiler_versions": ["2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "fb283163307a4f5cb768598c4c6c9a058216c463": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.4"], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "8dbac72218e51d537a07fd89e1a0e8c9dfad4a97": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.5"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "ori)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ginal": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "56cae4b9030550df2b7677fa15865f5c2b16bc19": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.4"], "sdk": ["2.1.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "aa552faa2262179e7909d6a59f5a55f9e0931df4": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.4"], "sdk": ["2.3.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "e01c4e833f8b9d829247f7d046fba92e258f65ad": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0"], "sdk": ["2.3.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "8f11c20311f5de28b28bb8a05072c9de64cfb40e": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0"], "sdk": ["2.3.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "9abbc1c61c9b1ea642402ac1aa24dfcaded5288b": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.3"], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bs)PS2SDB", 8192}, + std::string_view{R"PS2SDB(s"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "b6d9c4e52871b785245a52f1d12370d418a2890c": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.4"], "sdk": ["2.1.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "c14fb55785516b59a6e833cdf122c86c5f43ce37": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.5"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "cc978e4469b0efad120a035a6e5323e77df36efd": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.4"], "sdk": ["2.2.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "8e393d6c7980cbf8fdd9004d0143398dc3de0dc1": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0"], "sdk": ["2.5.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "28b2474e88fe4f037f6f91122466655cd0cbcba1": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0"], "sdk": ["2.5.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"t)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ype": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "9d09bfc59afca6c3632571a511318492defaf13f": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.4"], "sdk": ["2.1.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "50e386913383ff884bd3e3383cd516757e2101a8": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.4"], "sdk": ["2.3.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "940d01ea8312d5784432f94ef7f75f0cd6869374": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.4"], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "31280f67101742ab2936246c94b7ad34503671cd": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.3"], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "067bd57bf2fc8b820194a0a5c9e1d4d7946f111f": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0"], "sdk": ["2.2.0"], "compiler_versions": ["2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", )PS2SDB", 8192}, + std::string_view{R"PS2SDB("symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "ad36e25071610deb647e9872526d6d554a4be010": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.4"], "sdk": ["2.2.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "7c927ecb848d66959c27befa5b60f300aaad8307": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.4"], "sdk": ["2.3.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "cc0dc1ca5ad9f1d3328f8872690af55bfd696ffd": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.4"], "sdk": ["2.2.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "0dfa87d323b426dc30cfd4bdbe261af8a7277166": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.4"], "sdk": ["2.1.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "4aedc8c62771c058ad96bbd50418f33085c0e9ff": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.3"], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "411fa9a2dad5e57c62ac8fd330f688680f7a605b": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.3"], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "c5e568348bc7b30857cc7edfb102f3680f6bc475": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.3"], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "28df336784916f471e94c6a78824bf9ccc63b88f": {"8ef6fb36": {"type": "FUNCTION", "size": 200, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.0"], "sdk": ["2.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "306fd0ad7074b26a4b4100b8a27c44c492136459": {"8ef6fb36": {"type": "FUNCTION", "size": 200, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.0"], "sdk": ["2.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "95d8dcb624e31deb1213d68f027e38d790614520": {"8ef6fb36": {"type": "FUNCTION", "size": 200, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.0"], "sdk": ["2.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "ori)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ginal": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "640bc637210585fed15614a9306f1ebc3a713d21": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0"], "sdk": ["2.5.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "ade069a6eda2f03586d4d3d56258dcdab819e2ed": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "148873c83c2538163081de40e867408f209311fe": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "9ffc9993afbec193df8d713fa6d50ad67e7b1510": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "95abe7a1009575c4ab76697056f530bac434c851": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".dat)PS2SDB", 8192}, + std::string_view{R"PS2SDB(a"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "2f0ac2dc97d7f5fedb1ae7bc0884ccd216b654a8": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "e5ef53c019d1166974f8cc6e43d1f067e26d41cf": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "992346e20bcd4c724948e20f0bb42ebc87775588": {"8ef6fb36": {"type": "FUNCTION", "size": 200, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0"], "sdk": ["2.0.0"], "compiler_versions": ["2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "7d5c258b3e43d536ddd2681961797c80f2de36cc": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.3"], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "9db9720a828da0ad788f04d15cc77357c50cdceb": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.6.0"], "sdk": ["2.6.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {)PS2SDB", 8192}, + std::string_view{R"PS2SDB("type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "e701bcd76081ee2646cd46e92387058f34d79a58": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.4"], "sdk": ["2.3.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "8731b040ca466684972a4bc01c07977f2d8d70e8": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.4"], "sdk": ["2.3.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "a35b3fd0a46f28cf5508d39137e2deae43d0bd63": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.4"], "sdk": ["2.1.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "d962ef6238ef0e5a40c911268ee77479dc9c4399": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "56a38533a00c091310e1e5fbde64675ad0466d7e": {"ede88419")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.1"], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "51f2b9dd8c5502f08ed5748f62925ca3c013a6b8": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0"], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "65c43c730066e0b2943d29688aae3c2ff1d43023": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0"], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "06da15c0ec4a12af735bdf4571b432d5c250d9f5": {"8ef6fb36": {"type": "FUNCTION", "size": 200, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.5"], "sdk": ["2.0.7"], "compiler_versions": ["2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "4fe4df8d364777a54ec6ced34bef00e594b999df": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.1"], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "c9c20dc9338322fc1e5665e382a090f5bdcec04d": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.1"], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "4a601a38e9d180fdf3d44f2f3135ab193f115c2b": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.3"], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "b574e44352f414f16d5e0266e13bdcea0e3036ba": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.1"], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "f61f2439729b5f9f491c124c97b57831d6a93ed8": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.6.0"], "sdk": ["2.6.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "9d00f05c45d6cdfb6b8cf6cafd4f8932160139d6": {"8ef6fb36": {"type": "FUNCTION", "size": 200, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.2"], "sdk": ["2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_26", ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(symbol": "GetThreadId", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "cfae8da3bd6319d51c4edc992bb913ad8110fd01": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.1"], "sdk": ["2.4.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "cde398aea3e8f0a1df27f914c62992c6123891ec": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.2"], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "c2342a9d3b96f5251c116ac4e1e5d1d6000a53c2": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.2"], "sdk": ["2.5.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "da7c1fc7145799652479e64116ac6ab4ff4cc27c": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.2"], "sdk": ["2.5.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "9915c84b6e0a36f40b7d308ce3a5c75ce29f2be1": {"8ef6fb36": {"type": "FUNCTION", "size": 200, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.5"], "sdk": ["2.0.7"], "compiler_versions": ["2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_26", "symbol": "Start)PS2SDB", 8192}, + std::string_view{R"PS2SDB(Thread", "scope": "LIBRARY"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "b6d4214ae9f51947b1910f07dba24e93dedc8c70": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0"], "sdk": ["2.3.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "17e641585c85a4e1ccee3f97221d3ed6acafe6d3": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.5"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "eecba0fac89ed73940b761fe061f60b1c6fcb0e7": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.1"], "sdk": ["2.4.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "dd080544ca8d2527e3ba00949d9640152a061496": {"4d1fcba2": {"type": "FUNCTION", "size": 236, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0"], "sdk": ["3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "60": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "180": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY", "original": ".text"}, "188": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "200": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "7e09e6c7acab16315c8b9a87f9be8afecab037e7": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.5"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "sym)PS2SDB", 8192}, + std::string_view{R"PS2SDB(bol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "fe9684b47ffc5fd25e93e61d893c556f4d1c1b52": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.5"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "268ac17478aee02e399012eb536ceb7fd926e2ba": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.2", "2.5.5"], "sdk": ["2.4.2", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "803dec30190bbc98455ece295de3c0ed1d252b90": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.5"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "bd39323d5d4c4b884522d104dd1cbc45b83af235": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.5"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "e4070e64e63abbc3ec0a6ffaad5d138d8940342e": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.4"], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symb)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "39d71803fa4a94402ef0fc209b2689259d884581": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.6.0"], "sdk": ["2.6.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "63ea5fee3eb9c9d37f2ba1457f5551c03ee61b8d": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0"], "sdk": ["2.3.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "026434fc463d6a181f30c0b9f7194d83f30f39a3": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.5"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "6b6b82a2abccd97afd18b46c3cedf6d8b7c81d24": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.4"], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "9020b9e1dd7a83ac678b5cee4af1dbf9a353905a": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0"], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "")PS2SDB", 8192}, + std::string_view{R"PS2SDB(, "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "f95f760fb4e96db5130ab0875f51277224caa6b7": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.4"], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "fa05cfa1be4208492506daaa99bea62c78428d4f": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.2"], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "f43d4f0e31e1dbe2f4948dbaf8e19aafdd632e28": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.2"], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "5de2df9de33e5130e409afd40ccb026cff7e18a6": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0"], "sdk": ["2.3.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "b0871e8271e8ac213e5be76842ede4cfe65ee639": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.3"], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "e6aaa74cb36bb68646979ea02012bfc3b7958aac": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0"], "sdk": ["2.3.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "09a246bb11263b8e73b01dc8413776ffb1e62858": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.1"], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "c986b1aac83e679656ace21ecf27b5876ab23d79": {"8ef6fb36": {"type": "FUNCTION", "size": 200, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.2"], "sdk": ["2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "60e9a5dd6c666a495e2b493c38d3231494c49224": {"8ef6fb36": {"type": "FUNCTION", "size": 200, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.2"], "sdk": ["2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "f636a1e771a2929ca194cc794289a6f6e1c32f52": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.3"], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, )PS2SDB", 8192}, + std::string_view{R"PS2SDB("16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "60552e3dbbf6e9f74997b6f3e89ad640fe1220c1": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.5"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "4e8be4ff6d167754f19d9147596978752a0d22d7": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.5"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "772562a0ea6be526c2f44cfa5806741c62674f1d": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "d466b6c7727ba1eb5d389fe38929db0420b66f55": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0"], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "49c4f87fd939340761d414b6dbe7371c6e5c488c": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "sco)PS2SDB", 8192}, + std::string_view{R"PS2SDB(pe": "GLOBAL", "is_interface": true, "versions": ["2.7.0"], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "e868c1b4d2166dab4e6f9493656460e4e3d9465f": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.4"], "sdk": ["2.3.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "d4a9258e990749cc58004335dd1b974f120db0be": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0"], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "66aa00976b9b2c0c75ff211bd6a6f6046b76ee8f": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0"], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "18f7b35a5162aadeb194fe38d5d9b192d02c9e1b": {"8ef6fb36": {"type": "FUNCTION", "size": 200, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.5"], "sdk": ["2.0.7"], "compiler_versions": ["2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".d)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ata"}}}}, "828071d3409279c6b09a3945109ffc4e98eb02e0": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.3"], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "1257ed6248dc736128525bbd41e6295c0a1914ce": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.3"], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "eb7e9a84a78422c9f90ce5c2601006d3bc8daeef": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.4"], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "9f927ad38c2456710d6e70da9376bc1cb9113d7c": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.3"], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "b8e3a3d4c98dbb6b27270dad6742053472bccf8b": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.1"], "sdk": ["2.2.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS)PS2SDB", 8192}, + std::string_view{R"PS2SDB(_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "0f56885ef89a6a76f836eceaf20d57c5f07a8a30": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.3"], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "19b61797166c85abbb07d386888b797c72d28678": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0"], "sdk": ["2.3.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "a55c8fc6fde37bb12867ecf6221bd094b7fa71fc": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.4"], "sdk": ["2.3.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "72e4e8d88ece5e29ed3e42bb9026dafe4ec2fce0": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.1"], "sdk": ["2.7.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "1e15cf2cbda4a903960ad10adcd628dc3e99e513": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.2"], "sdk": ["2.2.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "2bdab4161347df3a502844341e783046a70db0a6": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.2"], "sdk": ["2.2.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "89d8ec7c64452dbaeed53a05d0ed011b3a0461ed": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.2"], "sdk": ["2.2.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "4316130db7dfc398f4500281edf5f080fe97add4": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.2"], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "d55906bd7d475a8b309f5b8b71bf5afe93a5a31a": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0"], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "4030c86b87a4a345bf321ab09d6750ef7071764f": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.4"], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema",)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "1591f6d5eacfc786d956debf59766d0c774ed492": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.4"], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "f65499a94a4fe08bbda3c5b0e7e96ee95f448317": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.4"], "sdk": ["2.2.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "ed3fd0fae8676114aa801ef1f6e100aea93f5857": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.2"], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "d8507514ea15ce51ae9e90b1b66400189632920b": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.2"], "sdk": ["2.5.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "b901d0bdd19b0c79c4b2f0ddb315548700cbda36": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0"], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss")PS2SDB", 8192}, + std::string_view{R"PS2SDB(}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "0e061e55577ad00314da721c5b00ba54cc1b8f4d": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0"], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "ae11c537906963a0b692d35fac53ef3c46330c20": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0"], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "c7083a7b84a03497161a56f698137dc8d4cfe199": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0"], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "2321b4b8c525e7d51b31d13dac053cfba0a4dce7": {"4d1fcba2": {"type": "FUNCTION", "size": 236, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0"], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "60": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "180": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY", "original": ".text"}, "188": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "200": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "3ec85a2d7b7fed0515b4dd3f6c56d0d6a2798b89": {"4d1fcba2": {"type": "FUNCTION", "size": 236, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0"], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_LO16", "symbol": "", "origin)PS2SDB", 8192}, + std::string_view{R"PS2SDB(al": ".rodata"}, "60": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "180": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY", "original": ".text"}, "188": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "200": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "ba5c61d5abee9cfc83f5d3faa5c4ec5def61bb26": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "6cb2f508aebb22143b3d389d6f1ff8d1a6cc0000": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0"], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "94fb300724eeb513012b5503b2b425d8c59aeb64": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0"], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "53b5107754de1baebed91622691a63c091761cbe": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "8d0ebaab9716674ba3b7afa125f9d2631997f511": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": t)PS2SDB", 8192}, + std::string_view{R"PS2SDB(rue, "versions": ["2.4.2"], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "d6d31cd4f806b251fbd4cf368a83c8c76cf44ef5": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.4"], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "2a064e072db71f1266a3eac7ef92642f4165d857": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.5"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "672a00184f78b1e76bab7ea32e214cca015ebaa5": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.2"], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "6a1b76332d68d60087ae898c1790e32d948c4c89": {"4d1fcba2": {"type": "FUNCTION", "size": 236, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0"], "sdk": ["3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "60": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "180": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY", "original": ".text"}, "188": {"type": )PS2SDB", 8192}, + std::string_view{R"PS2SDB("MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "200": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "14ce34f69d7a06c5c8ec7a9d9be404bd873b130d": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "4fa8bde09506dfbd83ee3d1824d755dc4a943604": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.0"], "sdk": ["2.4.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "9dc78753e9727c85ac49e39e25a122c79bc67920": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.4"], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "65148d68e99d4ee50974754b13d56ec2cfb06bb5": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.1"], "sdk": ["2.4.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "bb20ae9b225e60c6fcb0f37dff1f66a6a8b6d82e": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.4"], "sdk": ["2.3.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "s)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ymbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "47388719178d02640191470fa0d980be389cf859": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0"], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "03edabbc364e64975dc56b8e24d0205768e10717": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.5"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "142ea0491896c53c5cec046df39d5d176eae3a5d": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.5"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "c3021f94f7c506bdfb3ddd9598a3ac2a12067a2b": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.5"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "90c55eb09a668107979bffb5da379e8c2687e750": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.5"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteS)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "07b223623e137c6d8c98b0d34777951923d710c2": {"8ef6fb36": {"type": "FUNCTION", "size": 200, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.2"], "sdk": ["2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "ca10ce0247fbd64f99df51565044053960f35037": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0"], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "b6fe897ad0675ac2de37ebe8cf9b94acee4b7d97": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0"], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "9af4ea39aabc50e6a869cd054dacf08ee3e05847": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.2"], "sdk": ["2.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "333d62292c8d84c87317c6726a7dfd47d326c697": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.2"], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": )PS2SDB", 8192}, + std::string_view{R"PS2SDB("LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "d07d5db5664a3137e9ae212afa621b99c9b81f22": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.1"], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "d7d1a284ad9e2e68b69f8468012f2847bc125304": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.3"], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "34f8c5433963d33073731acebccaeb8b9445ab59": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.4"], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "f08e21a85a660ba48339dc78e467c4cba738526b": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.2"], "sdk": ["2.5.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "7ec35424724a2bf22766f8b371d71f3410bdb042": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.2"], "sdk": ["2.5.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": )PS2SDB", 8192}, + std::string_view{R"PS2SDB({"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "aeb08acc467edb477cf062162703fc4b84e4e037": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.2"], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "c938b183098bea139ee30b78db72d67deed4b37c": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0"], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "fae9d569d1ff57eb31f2bb0b45e8f7dc69273e6d": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.1"], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "e65c6dede664c2d3b0a22edcfe4ae154cbc7e72d": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.2"], "sdk": ["2.5.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "110db2a9a39bc37210fc471114c58749c5b4b985": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0"], "sdk": ["2.3.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIP)PS2SDB", 8192}, + std::string_view{R"PS2SDB(S_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "251d917f1e8850a6289bc8ab4c494525a4ebd273": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.5"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "61e03decac8992a181898c0905abec4d69b0f28e": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.5"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "fcb44432203ce9fb2952ccfdeb70d78eaea5769f": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.5"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "e2d36c649ee7db2bb6fa493dee35e193f5e7639a": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.5"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "a95e6b80202c618477cd048043a19f02f08cb3ec": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.2"], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "sy)PS2SDB", 8192}, + std::string_view{R"PS2SDB(mbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "829f75a56dd21d15c07135faeee9260f707e754c": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.4"], "sdk": ["2.3.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "fe8378b3eaba87b80b1c7fdf3545e0702bab6bed": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.2"], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "87b13a1475b709af7989dc32279a3194a543b442": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.2"], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "1947db342e1b7e4b9f7f528e6c48ece59a68eba5": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.5"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "1b1998a0697901c93c7e04d52f77ca62245db786": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": )PS2SDB", 8192}, + std::string_view{R"PS2SDB(true, "versions": ["2.1.4"], "sdk": ["2.1.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "9c1a0494dc8f821575a77856a6311540a6c33bc1": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.4"], "sdk": ["2.1.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "7408d676b9a1bfe853bb27b74e647269844d15d8": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.4"], "sdk": ["2.3.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "fd97e54506e1fa8db1fa57fd41c6e5c915da5cc1": {"ede88419": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.4"], "sdk": ["2.3.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "topThread", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "topThread", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateThread", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "StartThread", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "GetThreadId", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ChangeThreadPriority", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "iWakeupThread": {"f7e4fd3678a40e7507dd5c2985697b4a7aa8a8b6": {"ffe21263": {"type": "FUNCTION", "size": 148, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "_iWakeupThread", "scope": "LIBRARY"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_26", "symbol": "iSignalSema", "scope": "LIBRARY"}}}}, "4956b1a9e9351584b7d2d6741ee91ae43844da4b": {"1c50a279": {"type": "FUNCTION", "size": 160, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"40": {"type": "MIPS_26",)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "symbol": "_iWakeupThread", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "iReferThreadStatus", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "iSuspendThread", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "_iWakeupThread", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "iResumeThread", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "RotateThreadReadyQueue", "scope": "LIBRARY"}}}}, "067a0e8826e344e4218c45b1df75d96b995797d3": {"14d96550": {"type": "FUNCTION", "size": 120, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1"], "sdk": ["2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "_iWakeupThread", "scope": "LIBRARY"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_26", "symbol": "iSignalSema", "scope": "LIBRARY"}}}}, "d25e9bc16fcf837fbeb2607325cbe37918eced27": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}}, "iRotateThreadReadyQueue": {"2c65274e5878e2b2a9c8072a0258e175b892a7d0": {"e9df3ca6": {"type": "FUNCTION", "size": 124, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_26", "symbol": "iSignalSema", "scope": "LIBRARY"}}}}, "277bf45dcf810569561499d92bac10e61d914d59": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}, "b98f05fd621ba20f416f37c19a1cef0141f17c08": {"53f75163": {"type": "FUNCTION", "size": 96, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1"], "sdk": ["2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_26", "symbol": "iSignalSema", "scope": "LIBRARY"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "iSuspendThread": {"77460b73c17b18c404e0f29c4ab5e0880cf93a1d": {"924cd49e": {"type": "FUNCTION", "size": 152, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "_iSuspendThread", "scope": "LIBRARY"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_26", "symbol": "iSignalSema", "scope": "LIBRARY"}}}}, "fb0af131e4b1976c7d66bb4555a4bfb1afb5f3b5": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}, "5ecaf66da27115564dc2af349e01b1cd8995c926": {"6781ff0c": {"type": "FUNCTION", "size": 124, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.5", "2.1.0", "2.1.1"], "sdk": ["2.0.7", "2.1.0", "2.1.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "_iSuspendThread", "scope": "LIBRARY"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_26", "symbol": "iSignalSema", "scope": "LIBRARY"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceDeci2Open": {"a4e5bbdc0dfde518fe224995f72760017cd47a2b": {"afa5aea1": {"type": "FUNCTION", "size": 68, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_26", "symbol": "Deci2Call", "scope": "LIBRARY"}}}}, "6406acaa27c78f5ebd657352e5a057089d614e67": {"7e54060a": {"type": "FUNCTION", "size": 48, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "Deci2Call", "scope": "LIBRARY"}}}}}, "sceDeci2Close": {"83971e23)PS2SDB", 8192}, + std::string_view{R"PS2SDB(60fe603937430e7ac4f25356afae4322": {"3ba1afee": {"type": "FUNCTION", "size": 36, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "Deci2Call", "scope": "LIBRARY"}}}}}, "sceDeci2ReqSend": {"e01b73e7850e8aa0c1e46eefcca57546144fd187": {"7e54060a": {"type": "FUNCTION", "size": 48, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "Deci2Call", "scope": "LIBRARY"}}}}}, "sceDeci2Poll": {"1d0d558ded4d1a7a9960a9bba669c9a6719eebd9": {"3ba1afee": {"type": "FUNCTION", "size": 36, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "Deci2Call", "scope": "LIBRARY"}}}}}, "sceDeci2ExRecv": {"9fa658d4f69972bcf71644153026d2e2e091a808": {"f7060e3f": {"type": "FUNCTION", "size": 52, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "Deci2Call", "scope": "LIBRARY"}}}}}, "sceDeci2ExSend": {"827d561e4a8cbabfd75cecbadff898364a787b5e": {"f7060e3f": {"type": "FUNCTION", "size": 52, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "Deci2Call", "scope": "LIBRARY"}}}}}, "sceDeci2ExReqSend": {"e97ea0219d065c7826ca69b18df673f47bcbc6b7": {"7e54060a": {"type": "FUNCTION", "size": 48, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "Deci2Call", "scope": "LIBRARY"}}}}}, "sceDeci2ExLock": {"62c1f5ed8846f5d3f8b4da5cc4b949906565b930": {"3ba1afee": {"type": "FUNCTION", "size": 36, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "Deci2Call", "scope": "LIBRARY"}}}}}, "sceDeci2ExUnLock": {"38fa368f5fb6e6e7216725180fc3ecd795989dcd": {"3ba1afee": {"type": "FUNCTION", "size": 36, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "Deci2Call", "scope": "LIBRARY"}}}}}, "kputs": {"cd6fc4ceb3d296fd94dfb8c81e784c3ba997698d": {"3ba1afee": {"type": "FUNCTION", "size": 36, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0")PS2SDB", 8192}, + std::string_view{R"PS2SDB(, "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "Deci2Call", "scope": "LIBRARY"}}}}}, "QueueInit": {"e684f85e06c233a7605e7ca44f7103514ceba174": {"85872703": {"type": "FUNCTION", "size": 36, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "QueuePeekWriteDone": {"ac83a8a92cee61f11458f5feca4e0ed90c635c84": {"00000000": {"type": "FUNCTION", "size": 60, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "QueuePeekReadDone": {"1122dd834e37a318bf35189c2349c05cac954098": {"00000000": {"type": "FUNCTION", "size": 60, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceTtyHandler": {"a4d9032b7fe72aa4b207a0de4474eed2728be3c0": {"132c299d": {"type": "FUNCTION", "size": 404, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"96": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "100": {"type": "MIPS_26", "symbol": "kprintf", "scope": "LIBRARY"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "124": {"type": "MIPS_26", "symbol": "sceDeci2ExRecv", "scope": "LIBRARY"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_26", "symbol": "kprintf", "scope": "LIBRARY"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "232": {"type": "MIPS_26", "symbol": "QueuePeekWriteDone", "scope": "LIBRARY", "original": ".text"}, "280": {"type": "MIPS_26", "symbol": "sceDeci2ExSend", "scope": "LIBRARY"}, "300": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "304": {"type": "MIPS_26", "symbol": "kprintf", "scope": "LIBRARY"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "360": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "368": {"type": "MIPS_26", "symbol": "kprintf", "scope": "LIBRARY"}, "372": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "3ffde8856a48c3827bcbae5e295f3b8cdc3bee78": {"81591aa8": {"type": "FUNCTION", "size": 380, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"96": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "100": {"type": "MIPS_26", "symbol": "kprintf", "scope": "LIBRARY"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "124": {"type": "MIPS_26", "symbol": "sceDeci2ExRecv", "scope": "LIBRARY"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_26", "symbol": "kprintf", "scope": "LIBRARY"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "208": {"type": "MIPS_26", "symbol": "QueuePeekWriteDone", "scope": "LIBRARY", "original": ".text"}, "256": {"type": "MIPS_26", "symbol": "sceDeci2ExSend", "scope": "LIBRARY"}, "276": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "280": {"type": "MIPS_26", "symbol": "kprintf", "scope": "LIBRARY"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "336": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "344": {"type": "MIPS_26", "symbol": "kprintf", "scope": "LIBRARY"}, "348": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sceTtyWrite": {"6c3c35f723bd5d6af33b41a627bb8028e8d2bfe0": {"6cb61560": {"type": "FUNCTION", "size": 336, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_26", "symbol": "DIntr", "scope": "LIBRARY"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "196": {"type": "MIPS_LO16", "symbol")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: "", "original": ".bss"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "220": {"type": "MIPS_26", "symbol": "sceDeci2ReqSend", "scope": "LIBRARY"}, "236": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "268": {"type": "MIPS_26", "symbol": "sceDeci2Poll", "scope": "LIBRARY"}, "288": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}}}}, "e09e3a56a7c84ab90db2d6c4e1ad0b8e3d1c00f6": {"450ca2e1": {"type": "FUNCTION", "size": 372, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_26", "symbol": "DIntr", "scope": "LIBRARY"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "228": {"type": "MIPS_26", "symbol": "sceDeci2ReqSend", "scope": "LIBRARY"}, "256": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "292": {"type": "MIPS_26", "symbol": "sceDeci2Poll", "scope": "LIBRARY"}, "320": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}}}}, "90bc050a1ee4dcf7bb6baf97a1818aa51b891cdd": {"1066ee4c": {"type": "FUNCTION", "size": 336, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "244": {"type": "MIPS_26", "symbol": "sceDeci2ReqSend", "scope": "LIBRARY"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "284": {"type": "MIPS_26", "symbol": "sceDeci2Poll", "scope": "LIBRARY"}}}}, "ca0d12c97c043ac514998df040d49e022303daff": {"cc26f7ef": {"type": "FUNCTION", "size": 336, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "sdk": ["2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "244": {"type": "MIPS_26", "symbol": "sceDeci2ReqSend", "scope": "LIBRARY"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "284": {"type": "MIPS_26", "symbol": "sceDeci2Poll", "scope": "LIBRARY"}}}}, "24e26e84fb9240c18b6de971bf3b3ce730ccfeae": {"8294baa9": {"type": "FUNCTION", "size": 336, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "244": {"type": "MIPS_26", "symbol": "sceDeci2ReqSend", "scope": "LIBRARY"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "284": {"type": "MIPS_26", "symbol": "sceDeci2Poll", "scope": "LIBRARY"}}}}}, "sceTtyRead": {"07948f7446defb6b40e5f9d0d995b76398d30cca": {"a67761b4": {"type": "FUNCTION", "size": 208, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_26", "symbol": "QueuePeekReadDone", "scope": "LIBRARY", "original": ".text"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}}}}, "733a5810880fe8658028859ac4358a0e4e37d2c8": {"db56fc9a": {"type": "FUNCTION", "size": 216, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_26", "symbol": "QueuePeekReadDone", "scope": "LIBRARY", "original": ".text"}}}}}, "sceTtyInit": {"7dcdf0cb3749ea3be4d6bd1b0ef54ec80f918d19": {"6715c1b9": {"type": "FUNCTION", "size": 188, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "FlushCache", "scope": "LIBRARY"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_HI16", "symbol": "sceTtyHandler", "original": ".text"}, "40": {"type": "MIPS_LO16", "symbol": "sceTtyHandler", "original": ".text"}, "44": {"type": "MIPS_26", "symbol": "sceDeci2Open", "scope": "LIBRARY"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "")PS2SDB", 8192}, + std::string_view{R"PS2SDB(, "original": ".bss"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_26", "symbol": "QueueInit", "scope": "LIBRARY", "original": ".text"}}}}}, "kputchar": {"2b7ca6473db17a09708beb7253d3b5341ad79700": {"00000000": {"type": "FUNCTION", "size": 56, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "3.0.0", "3.1.0"], "sdk": ["2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "24888df5e2b131392e8b83dfae2b73cb2c88560b": {"00000000": {"type": "FUNCTION", "size": 60, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0"], "sdk": ["1.6.1", "1.6.5", "2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "b44d275f80895ffcb514a840714385a96fe5067f": {"00000000": {"type": "FUNCTION", "size": 52, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}}, "deci2Putchar": {"2d68176436ff781728afedb7d1e5c3ea464a558c": {"d5954797": {"type": "FUNCTION", "size": 176, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "kputs", "scope": "LIBRARY"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "kputs", "scope": "LIBRARY"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "93bc10a83fb6f0254496d51a82ecbc9d6c8ca6fd": {"9bb6c95d": {"type": "FUNCTION", "size": 176, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "kputs", "scope": "LIBRARY"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_26", "symbol": "kputs", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "serialPutchar": {"a32b5fbe12972a728dac5b169f8f17eb94f6ba1b": {"9ba9dbe6": {"type": "FUNCTION", "size": 52, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "kputchar", "scope": "LIBRARY", "original": ".text"}, "32": {"type": "MIPS_26", "symbol": "kputchar", "scope": "LIBRARY", "original": ".text"}, "44": {"type": "MIPS_26", "symbol": "kputchar", "scope": "LIBRARY", "original": ".text"}}}}}, "ftoi": {"90246e26b693c3b5cf09b694f998d656c8f89fe2": {"00000000": {"type": "FUNCTION", "size": 144, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "f28c96239b03a84109492a734481003b28111b6e": {"00000000": {"type": "FUNCTION", "size": 148, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0"], "sdk": ["1.6.1", "1.6.5", "2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "printfloat": {"d3dc69a4a089be4962b21696b80497d57d9ab1e7": {"d84121a1": {"type": "FUNCTION", "size": 360, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0"], "sdk": ["2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "dpcmp"}, "48": {"type": "MIPS_26", "symbol": "dpsub"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_LO16", "symbol")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: "", "original": ".data"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_26", "symbol": "dpcmp"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "120": {"type": "MIPS_26", "symbol": "dpmul"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "140": {"type": "MIPS_26", "symbol": "dpcmp"}, "172": {"type": "MIPS_26", "symbol": "dpcmp"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "208": {"type": "MIPS_26", "symbol": "dpdiv"}, "228": {"type": "MIPS_26", "symbol": "dpcmp"}, "244": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "252": {"type": "MIPS_26", "symbol": "dpmul"}, "260": {"type": "MIPS_26", "symbol": "__fixunsdfdi"}, "268": {"type": "MIPS_26", "symbol": "ftoi", "scope": "LIBRARY", "original": ".text"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "280": {"type": "MIPS_26", "symbol": "kprintf", "scope": "LIBRARY", "original": ".text"}, "296": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "320": {"type": "MIPS_26", "symbol": "kprintf", "scope": "LIBRARY", "original": ".text"}, "328": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "336": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "352": {"type": "MIPS_26", "symbol": "kprintf", "scope": "LIBRARY", "original": ".text"}}}}, "c1bf1af6052cf5616bc6f0ae79db612cc79310ce": {"a08ad7bd": {"type": "FUNCTION", "size": 416, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "dpcmp"}, "60": {"type": "MIPS_26", "symbol": "dpsub"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_26", "symbol": "dpcmp"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_26", "symbol": "dpmul"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "168": {"type": "MIPS_26", "symbol": "dpcmp"}, "208": {"type": "MIPS_26", "symbol": "dpcmp"}, "212": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "216": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "228": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "240": {"type": "MIPS_26", "symbol": "dpdiv"}, "264": {"type": "MIPS_26", "symbol": "dpcmp"}, "284": {"type": "MIPS_26", "symbol": "dpmul"}, "292": {"type": "MIPS_26", "symbol": "__fixunsdfdi"}, "300": {"type": "MIPS_26", "symbol": "ftoi", "scope": "LIBRARY", "original": ".text"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "312": {"type": "MIPS_26", "symbol": "kprintf", "scope": "LIBRARY", "original": ".text"}, "324": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "332": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "368": {"type": "MIPS_26", "symbol": "kprintf", "scope": "LIBRARY", "original": ".text"}, "408": {"type": "MIPS_26", "symbol": "kprintf", "scope": "LIBRARY", "original": ".text"}}}}, "fdd0a1a3f04eab7c1857c2d8596a0498c799886d": {"d3f394ee": {"type": "FUNCTION", "size": 376, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "dpcmp"}, "52": {"type": "MIPS_26", "symbol": "dpsub"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_26", "symbol": "dpcmp"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_26", "symbol": "dpmul"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_26", "symbol": "dpcmp"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_26", "symbol": "dpcmp"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "216": {"type": "MIPS_26", "symbol": "dpdiv"}, "236": {"type": "MIPS_26", "symbol": "dpcmp"}, "252": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "260": {"type": "MIPS_26", "symbol": "dpmul"}, "268": {"type": "MIPS_26", "symbol": "__fixunsdfdi"}, "276": {"type": "MIPS_26", "symbol": "ftoi", "scope": "LIBRARY", "original": ".text"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "288": {"type": "MIPS_26", "symbol": "kprintf", "scope": "LIBRARY", "original": ".text"}, "300": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "308": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "336": {"type": "MIPS_26", "symbol": "kprintf", "scope": "LIBRARY", "original": ".text"}, "368": {"type": "MIPS_26", "symbol": "kprintf", "scope": "LIBRARY", "original": ".text"}}}}, "34781667424032b2c3dbcdc5109d60f56dcaff26": {"e6a1e96f": {"type": "FUNCTION", "size": 472, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["3.0.0", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"84": {"type": "MIPS_26", "symbol": "dpcmp"}, "100": {"type": "MIPS_26", "symbol": "dpsub"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "152": {"type": "MIPS_26", "symbol": "dpcmp"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_26", "symbol": "dpmul"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "204": {"type": "MIPS_26", "symbol": "dpcmp"}, "236": {"type": "MIPS_26", "symbol": "dpcmp"}, "248": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "272": {"type": "MIPS_26", "symbol": "dpdiv"}, "292": {"type": "MIPS_26", "symbol": "dpcmp"}, "308": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "312": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "316": {"type": "MIPS_26", "symbol": "dpmul"}, "324": {"type": "MIPS_26", "symbol": "__fixunsdfdi"}, "332": {"type": "MIPS_26", "symbol": "ftoi", "scope": "LIBRARY", "original": ".text"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "356": {"type": "MIPS_26", "symbol": "_sceSnprintf_pf", "scope": "LIBRARY", "original": ".text"}, "372": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "392": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "396": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "412": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "416": {"type": "MIPS_26", "symbol": "_sceSnprintf_pf", "scope": "LIBRARY", "original": ".text"}}}}}, "_printf": {"c4cc0dd2d3199237f2229026f4f18499c925256f": {"1011aa3e": {"type": "FUNCTION", "size": 1516, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1"], "sdk": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "DIntr", "scope": "LIBRARY"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "440": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "452": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "632": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "644": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "756": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "764": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "792": {"type": "MIPS_26", "symbol": "__moddi3"}, "820": {"type": "MIPS_26", "symbol": "__divdi3"}, "876": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "884": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1008": {"type": "MIPS_26", "symbol": "__umoddi3"}, "1036": {"type": "MIPS_26", "symbol": "__udivdi3"}, "1080": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1092": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1152": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1160": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1180": {"type": "MIPS_26", "symbol": "fptodp"}, "1188": {"type": "MIPS_26", "symbol": "printfloat", "scope": "LIBRARY", "original": ".text"}, "1224": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1232": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1244": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1256": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1268": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1280": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1292": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1320": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1332": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1372": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1380": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1408": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1412": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1468": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}}}}, "04e9c0a62688e9e763c5e20e326fca093fb85100": {"a709b1b0": {"type": "FUNCTION", "size": 1480, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3"], "sdk": ["2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"104": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "424": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "436": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "616": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "628": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "740": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "748": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "776": {"type": "MIPS_26", "symbol": "__moddi3"}, "804": {"type": "MIPS_26", "symbol": "__divdi3"}, "860": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "868": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "992": {"type": "MIPS_26", "symbol": "__umoddi3"}, "1020": {"type": "MIPS_26", "symbol": "__udivdi3"}, "1064": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1076": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1136": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1164": {"type": "MIPS_26", "symbol": "fptodp"}, "1172": {"type": "MIPS_26", "symbol": "printfloat", "scope": "LIBRARY", "original": ".text"}, "1208": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1216": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1228": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1240": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1252": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1264": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1276": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1304": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1316": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1356": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1364": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1392": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1396": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "c1c84e369613c68d3beab9acb9c14e89eb2155dd": {"5162fbce": {"type": "FUNCTION", "size": 1524, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.0"], "sdk": ["2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "DIntr", "scope": "LIBRARY"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "440": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "452": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "632": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "644": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "756": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "764": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "792": {"type": "MIPS_26", "symbol": "__moddi3"}, "820": {"type": "MIPS_26", "symbol": "__divdi3"}, "876": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "884": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1008": {"type": "MIPS_26", "symbol": "__umoddi3"}, "1036": {"type": "MIPS_26", "symbol": "__udivdi3"}, "1080": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1092": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1132": {"type": "MIPS_26", "symbol": "dptofp"}, "1160": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1168": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1188": {"type": "MIPS_26", "symbol": "fptodp"}, "1196": {"type": "MIPS_26", "symbol": "printfloat", "scope": "LIBRARY", "original": ".text"}, "1232": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1240": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1252": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1264": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1276": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1288": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1300": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1328": {"type": "MIPS_HI16", "symbol": "", "origin)PS2SDB", 8192}, + std::string_view{R"PS2SDB(al": ".data"}, "1340": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1380": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1388": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1416": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1420": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1476": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}}}}, "b4d716a60afd3661a4eec2b9cfeabae9a9b33128": {"8d08989a": {"type": "FUNCTION", "size": 1368, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"92": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "404": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "412": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "584": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "596": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "708": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "716": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "736": {"type": "MIPS_26", "symbol": "__moddi3"}, "764": {"type": "MIPS_26", "symbol": "__divdi3"}, "808": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "820": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "932": {"type": "MIPS_26", "symbol": "__umoddi3"}, "960": {"type": "MIPS_26", "symbol": "__udivdi3"}, "1004": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1012": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1072": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1076": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1096": {"type": "MIPS_26", "symbol": "fptodp"}, "1104": {"type": "MIPS_26", "symbol": "printfloat", "scope": "LIBRARY", "original": ".text"}, "1140": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1156": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1168": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1180": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1192": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1204": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1224": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1232": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1268": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1276": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1304": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1308": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "4e90ca0759d6009976a89bec04f308f5fb2bc0c6": {"db1ec765": {"type": "FUNCTION", "size": 1376, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"92": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "408": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "420": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "592": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "604": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "716": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "724": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "744": {"type": "MIPS_26", "symbol": "__moddi3"}, "772": {"type": "MIPS_26", "symbol": "__divdi3"}, "816": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "828": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "940": {"type": "MIPS_26", "symbol": "__umoddi3"}, "968": {"type": "MIPS_26", "symbol": "__udivdi3"}, "1012": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1020": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1080": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1084": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1104": {"type": "MIPS_26", "symbol": "fptodp"}, "1112": {"type": "MIPS_26", "symbol": "printfloat", "scope": "LIBRARY", "original": ".text"}, "1148": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1152": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1164": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1176": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1200": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1212": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1232": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1240": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1276": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1284": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1312": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1316": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "kprintf": {"130aec7fde6742b54c471cd2d547ff991a9e4178": {"971737e1": {"type": "FUNCTION", "size": 56, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0"], "sdk": ["1.6.1", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "_printf", "scope": "LIBRARY", "original": ".text"}}}}, "8d82faf91c4fcb07d707235e8e949c98a1822678": {"2310913b": {"type": "FUNCTION", "size": 72, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "_printf", "scope": "LIBRARY", "original": ".text"}}}}, "aa79e64c7abbb3845b548b853d599c61140eccdc": {"1ebb4dad": {"type": "FUNCTION", "size": 128, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["3.0.0", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "DIntr", "scope": "LIBRARY"}, "56": {"type": "MIPS_HI16", "symbol": "kprintf_char", "original": ".text"}, "68": {"type": "MIPS_LO16", "symbol": "kprintf_char", "original": ".text"}, "84": {"type": "MIPS_26", "symbol": "_sceSnprintf", "scope": "LIBRARY", "original": ".text"}, "100": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}}}}}, "scePrintf": {"2f2ae120a57c01dc2639b463558759cf8af3073f": {"84bb177b": {"type": "FUNCTION", "size": 96, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0"], "sdk": ["1.6.1", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.)PS2SDB", 8192}, + std::string_view{R"PS2SDB(0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "deci2Putchar", "original": ".text"}, "12": {"type": "MIPS_LO16", "symbol": "deci2Putchar", "original": ".text"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_26", "symbol": "_printf", "scope": "LIBRARY", "original": ".text"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "406fa14845b816129fe0d393593b453615c2d0aa": {"d0b4dde9": {"type": "FUNCTION", "size": 112, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "deci2Putchar", "original": ".text"}, "12": {"type": "MIPS_LO16", "symbol": "deci2Putchar", "original": ".text"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_26", "symbol": "_printf", "scope": "LIBRARY", "original": ".text"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "aa79e64c7abbb3845b548b853d599c61140eccdc": {"1a57d2f9": {"type": "FUNCTION", "size": 128, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["3.0.0", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "DIntr", "scope": "LIBRARY"}, "56": {"type": "MIPS_HI16", "symbol": "printf_char", "original": ".text"}, "68": {"type": "MIPS_LO16", "symbol": "printf_char", "original": ".text"}, "84": {"type": "MIPS_26", "symbol": "_sceSnprintf", "scope": "LIBRARY", "original": ".text"}, "100": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}}}}}, "_set_sreg": {"8c030130a877fd6e9d7474a15da8274b6d8acea6": {"00000000": {"type": "FUNCTION", "size": 28, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "_change_addr": {"9590a4359f35fb34d526f1981b3aa3f5994266d2": {"00000000": {"type": "FUNCTION", "size": 12, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceSifGetSreg": {"f17faf3a611157355539f328e83eb27d052ff2dd": {"d3e72eac": {"type": "FUNCTION", "size": 24, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceSifSetSreg": {"47760f568f1cf6a164f3df6775d057dbdc4b4d74": {"d3e72eac": {"type": "FUNCTION", "size": 28, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceSifGetDataTable": {"2a51c093207f3b6546ea5ac91d4ae4a6999eaed5": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceSifInitCmd": {"883e2b6cbf774f83546458b827ade169878699d0": {"1a88f30a": {"type": "FUNCTION", "size": 640, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "DIntr", "scope": "LIBRARY"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}, "80": {"type": "MIPS_HI16", "symbol": "<)PS2SDB", 8192}, + std::string_view{R"PS2SDB(data>", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "212": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "260": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "264": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "300": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}, "308": {"type": "MIPS_26", "symbol": "FlushCache", "scope": "LIBRARY"}, "368": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "372": {"type": "MIPS_26", "symbol": "sceSifSetDChain", "scope": "LIBRARY"}, "380": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "388": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "392": {"type": "MIPS_26", "symbol": "AddDmacHandler", "scope": "LIBRARY"}, "400": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "408": {"type": "MIPS_26", "symbol": "EnableDmac", "scope": "LIBRARY"}, "412": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "420": {"type": "MIPS_26", "symbol": "sceSifGetReg", "scope": "LIBRARY"}, "436": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "440": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "492": {"type": "MIPS_26", "symbol": "sceSifSendCmd", "scope": "LIBRARY", "original": ".text"}, "504": {"type": "MIPS_26", "symbol": "sceSifGetReg", "scope": "LIBRARY"}, "524": {"type": "MIPS_26", "symbol": "sceSifGetReg", "scope": "LIBRARY"}, "528": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "540": {"type": "MIPS_26", "symbol": "sceSifSetReg", "scope": "LIBRARY"}, "556": {"type": "MIPS_26", "symbol": "sceSifSetReg", "scope": "LIBRARY"}, "564": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "568": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "632": {"type": "MIPS_26", "symbol": "sceSifSendCmd", "scope": "LIBRARY", "original": ".text"}}}}, "125aae804e45fe35708c54b692eab843dcfa0688": {"34fa96cc": {"type": "FUNCTION", "size": 640, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "DIntr", "scope": "LIBRARY"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "212": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "260": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "264": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "300": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}, "308": {"type": "MIPS_26", "symbol": "FlushCache", "scope": "LIBRARY"}, "368": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "372": {"type": "MIPS_26", "symbol": "sceSifSetDChain", "scope": "LIBRARY"}, "380": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "388": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "392": {"type": "MIPS_26", "symbol": "AddDmacHandler", "scope": "LIBRARY"}, "400": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "408": {"type": "MIPS_26", "symbol": "EnableDmac", "scope": "LIBRARY"}, "412": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "420": {"type": "MIPS_26", "symbol": "sceSifGetReg", "scope": "LIBRARY"}, "436": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "440": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "492": {"type": "MIPS_26", "symbol": "sceSifSendCmd", "scope": "LIBRARY", "original": ".text"}, "504": {"type": "MIPS_26", "symbol": "sceSifGetReg", "scope": "LIBRARY"}, "524": {"type": "MIPS_26", "symbol": "sceSifGetReg", "scope": "LIBRARY"}, "528": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "540": {"type": "MIPS_26", "symbol": "sceSifSetReg", "scope": "LIBRARY"}, "556": {"type": "MIPS_26", "symbol": "sceSifSetReg", "scope": "LIBRARY"}, "564": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "568": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "632": {"type": "MIPS_26", "symbol": "sceSifSendCmd", "scope": "LIBRARY", "original": ".text"}}}}, "edf23655086f5bb90a963e091645a7ba701d972f": {"70348c69": {"type": "FUNCTION", "size": 632, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "244": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "248": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "252": {"type": "MIPS_LO)PS2SDB", 8192}, + std::string_view{R"PS2SDB(16", "symbol": "", "original": ".text"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "292": {"type": "MIPS_26", "symbol": "FlushCache", "scope": "LIBRARY"}, "352": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "356": {"type": "MIPS_26", "symbol": "sceSifSetDChain", "scope": "LIBRARY"}, "364": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "372": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "376": {"type": "MIPS_26", "symbol": "AddDmacHandler", "scope": "LIBRARY"}, "384": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "392": {"type": "MIPS_26", "symbol": "EnableDmac", "scope": "LIBRARY"}, "396": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "404": {"type": "MIPS_26", "symbol": "sceSifGetReg", "scope": "LIBRARY"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "424": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "428": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "432": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "480": {"type": "MIPS_26", "symbol": "sceSifSendCmd", "scope": "LIBRARY", "original": ".text"}, "496": {"type": "MIPS_26", "symbol": "sceSifGetReg", "scope": "LIBRARY"}, "516": {"type": "MIPS_26", "symbol": "sceSifGetReg", "scope": "LIBRARY"}, "520": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "532": {"type": "MIPS_26", "symbol": "sceSifSetReg", "scope": "LIBRARY"}, "548": {"type": "MIPS_26", "symbol": "sceSifSetReg", "scope": "LIBRARY"}, "556": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "560": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "564": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "624": {"type": "MIPS_26", "symbol": "sceSifSendCmd", "scope": "LIBRARY", "original": ".text"}}}}, "c68214c672ed25a488be94b00ed79bb1e357e7fd": {"2d0ad8ee": {"type": "FUNCTION", "size": 668, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "sdk": ["2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "252": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "256": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "300": {"type": "MIPS_26", "symbol": "FlushCache", "scope": "LIBRARY"}, "360": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "364": {"type": "MIPS_26", "symbol": "sceSifSetDChain", "scope": "LIBRARY"}, "372": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "380": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "384": {"type": "MIPS_26", "symbol": "AddDmacHandler", "scope": "LIBRARY"}, "392": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "400": {"type": "MIPS_26", "symbol": "EnableDmac", "scope": "LIBRARY"}, "404": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "412": {"type": "MIPS_26", "symbol": "sceSifGetReg", "scope": "LIBRARY"}, "428": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "432": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "484": {"type": "MIPS_26", "symbol": "sceSifSendCmd", "scope": "LIBRARY", "original": ".text"}, "496": {"type": "MIPS_26", "symbol": "sceSifGetReg", "scope": "LIBRARY"}, "516": {"type": "MIPS_26", "symbol": "sceSifGetReg", "scope": "LIBRARY"}, "520": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "532": {"type": "MIPS_26", "symbol": "sceSifSetReg", "scope": "LIBRARY"}, "548": {"type": "MIPS_26", "symbol": "sceSifSetReg", "scope": "LIBRARY"}, "556": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "560": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "624": {"type": "MIPS_26", "symbol": "sceSifSendCmd", "scope": "LIBRARY", "original": ".text"}}}}, "1f24d7f4e379adc09fcc2d6b5823c4046f70cbef": {"a0f0ab9d": {"type": "FUNCTION", "size": 632, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.1", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "244": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "248": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "292": {"type": "MIPS_26", "symbol": "FlushCache", "scope": "LIBRARY"}, "352": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "356": {"type": "MIPS_26", "symbol": "sceSifSetDChain", "scope": "LIBRARY"}, "364": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "372": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "376": {"type": "MIPS_26", "symbol": "AddDmacHandler", "scope": "LIBRARY"}, "384": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "392": {"type": "MIPS_26", "symbol": "EnableDmac", "scope": "LIBRARY"}, "396": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "404": {"type": "MIPS_26", "symbol": "sceSifGetReg", "scope": "LIBRARY"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "424": {"type": "MIPS_HI16", "symbol")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: "", "original": ".bss"}, "428": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "432": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "480": {"type": "MIPS_26", "symbol": "sceSifSendCmd", "scope": "LIBRARY", "original": ".text"}, "496": {"type": "MIPS_26", "symbol": "sceSifGetReg", "scope": "LIBRARY"}, "516": {"type": "MIPS_26", "symbol": "sceSifGetReg", "scope": "LIBRARY"}, "520": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "532": {"type": "MIPS_26", "symbol": "sceSifSetReg", "scope": "LIBRARY"}, "548": {"type": "MIPS_26", "symbol": "sceSifSetReg", "scope": "LIBRARY"}, "556": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "560": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "564": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "624": {"type": "MIPS_26", "symbol": "sceSifSendCmd", "scope": "LIBRARY", "original": ".text"}}}}}, "sceSifExitCmd": {"12a278e826c6a6fe35a401dd72607b01e3ba604b": {"f65b890a": {"type": "FUNCTION", "size": 52, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "DisableDmac", "scope": "LIBRARY"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_26", "symbol": "RemoveDmacHandler", "scope": "LIBRARY"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "4c6d9feed8797c0b82b47e305e3a7429abecfbc0": {"02e947b6": {"type": "FUNCTION", "size": 40, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "DisableDmac", "scope": "LIBRARY"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_26", "symbol": "RemoveDmacHandler", "scope": "LIBRARY"}}}}}, "sceSifSetCmdBuffer": {"237ab43dd01a1922ddedcaa4c450bcbfdccb0c65": {"d6ed632d": {"type": "FUNCTION", "size": 24, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceSifSetSysCmdBuffer": {"cbab9fb03e5e7bc22f40bc15b229036a2a22c5a0": {"d6ed632d": {"type": "FUNCTION", "size": 24, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceSifAddCmdHandler": {"588bf835899ae4b8c7df4a6ca27ed584361811bd": {"17328b02": {"type": "FUNCTION", "size": 44, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "ccb567424bd135b6ee5cbc1e3dae333925b05619": {"56af0c82": {"type": "FUNCTION", "size": 120, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceSifRemoveCmdHandler": {"17921751767efd11d7f2d03d3577c97fad1f6571": {"17328b02": {"type": "FUNCTION", "size": 40, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "0b79685eca593ce98d637afc5085692c7f4b753f": {"679df418": {"type": "FUNCTION", "size": 76, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_)PS2SDB", 8192}, + std::string_view{R"PS2SDB(LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "_sceSifSendCmd": {"6b79ef1ef136da2f45c94c5f0517a5c4348cafed": {"9c117bbe": {"type": "FUNCTION", "size": 308, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0"], "sdk": ["1.6.1", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"128": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY", "original": ".text"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "232": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY", "original": ".text"}, "252": {"type": "MIPS_26", "symbol": "isceSifSetDma", "scope": "LIBRARY"}, "268": {"type": "MIPS_26", "symbol": "sceSifSetDma", "scope": "LIBRARY"}}}, "b4ea944f": {"type": "FUNCTION", "size": 308, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["3.1.0"], "sdk": ["3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"128": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY", "original": ".text"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "232": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY", "original": ".text"}, "252": {"type": "MIPS_26", "symbol": "_isceSifSetDma", "scope": "LIBRARY"}, "268": {"type": "MIPS_26", "symbol": "_sceSifSetDma", "scope": "LIBRARY"}}}}, "4765c6c70814e26e35e87ba178b3a5012bae1f46": {"0d0463a9": {"type": "FUNCTION", "size": 320, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"136": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY", "original": ".text"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "240": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY", "original": ".text"}, "260": {"type": "MIPS_26", "symbol": "isceSifSetDma", "scope": "LIBRARY"}, "276": {"type": "MIPS_26", "symbol": "sceSifSetDma", "scope": "LIBRARY"}}}}}, "sceSifSendCmd": {"72105d7d51f52f4bc9c584fb8b8df0e4a8554d4b": {"d0585e11": {"type": "FUNCTION", "size": 60, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "_sceSifSendCmd", "scope": "LIBRARY", "original": ".text"}}}}}, "isceSifSendCmd": {"1b477088e11451cc9c00c0341f3db8bfb6c68807": {"d0585e11": {"type": "FUNCTION", "size": 60, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "_sceSifSendCmd", "scope": "LIBRARY", "original": ".text"}}}}}, "_sceSifCmdIntrHdlr": {"ca7862631c2bfbbbd9778287080587377afe325c": {"fa8f2727": {"type": "FUNCTION", "size": 296, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_26", "symbol": "isceSifSetDChain", "scope": "LIBRARY"}}}}, "6234a354b35ad6b0aa40a856168dce1b5b5bd7d9": {"d88b5119": {"type": "FUNCTION", "size": 328, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_26", "symbol": "isceSifSetDChain", "scope": "LIBRARY"}}}}, "6be036d87ee0a652c03ac2571568dbcbbcda2741": {"d88b5119": {"type": "FUNCTION", "size": 280, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_26", "symbol": "isceSifSetDChain", "scope": "LIBRARY"}}}}, "abf546ba2da12054d9ef3087df2308d3edbe7e9d": {"d88b5119": {"type": "FUNCTION", "size": 288, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "sdk": ["1.6.1", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_26", "symbol": "isceSifSetDChain", "scope": "LIBRARY"}}}}, "6bfb02ddf462f65356a2ffea09c3ddb21e9a4a38": {"d88b5119": {"type": "FUNCTION", "size": 288, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.6.3", "1.6.5"], "compile)PS2SDB", 8192}, + std::string_view{R"PS2SDB(r_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_26", "symbol": "isceSifSetDChain", "scope": "LIBRARY"}}}}}, "sceSifWriteBackDCache": {"553f39bbf58ae8e3cdad9cc82f436fbbe38a26b2": {"00000000": {"type": "FUNCTION", "size": 176, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "39c57e8fd5c34adfc03f98e6738fd0e4fd52a5fb": {"00000000": {"type": "FUNCTION", "size": 176, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceSifInitRpc": {"d2b7c9cff57b9c80cc8cf40cc58feed5c679b60b": {"931e8e43": {"type": "FUNCTION", "size": 412, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "DIntr", "scope": "LIBRARY"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_26", "symbol": "sceSifInitCmd", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "DIntr", "scope": "LIBRARY"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "196": {"type": "MIPS_26", "symbol": "sceSifAddCmdHandler", "scope": "LIBRARY"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "220": {"type": "MIPS_26", "symbol": "sceSifAddCmdHandler", "scope": "LIBRARY"}, "228": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "244": {"type": "MIPS_26", "symbol": "sceSifAddCmdHandler", "scope": "LIBRARY"}, "252": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "268": {"type": "MIPS_26", "symbol": "sceSifAddCmdHandler", "scope": "LIBRARY"}, "276": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}, "288": {"type": "MIPS_26", "symbol": "sceSifGetReg", "scope": "LIBRARY"}, "332": {"type": "MIPS_26", "symbol": "sceSifSendCmd", "scope": "LIBRARY"}, "344": {"type": "MIPS_26", "symbol": "sceSifGetSreg", "scope": "LIBRARY"}, "384": {"type": "MIPS_26", "symbol": "sceSifSetReg", "scope": "LIBRARY"}}}}, "6fdfed13fc40244120396d9f9d44b8b51e480d61": {"d79dff69": {"type": "FUNCTION", "size": 400, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_26", "symbol": "sceSifInitCmd", "scope": "LIBRARY"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "188": {"type": "MIPS_26", "symbol": "sceSifAddCmdHandler", "scope": "LIBRARY"}, "200": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "212": {"type": "MIPS_26", "symbol": "sceSifAddCmdHandler", "scope": "LIBRARY"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "236": {"type": "MIPS_26", "symbol": "sceSifAddCmdHandler", "scope": "LIBRARY"}, "248": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "260": {"type": "MIPS_26", "symbol": "sceSifAddCmdHandler", "scope": "LIBRARY"}, "276": {"type": "MIPS_26", "symbol": "sceSifGetReg", "scope": "LIBRARY"}, "320": {"type": "MIPS_26", "symbol": "sceSifSendCmd", "scope": "LIBRARY"}, "328": {"type": "MIPS_26", "symbol": "sceSifGetSreg", "scope": "LIBRARY"}, "368": {"type": "MIPS_26", "symbol": "sceSifSetReg", "scope": "LIBRARY"}}}}, "40f523be621596797099649f0dcd52ad56943555": {"4f21be9f": {"type": "FUNCTION", "size": 444, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "sdk": ["2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_26", "symbol": "sceSifInitCmd", "scope": "LIBRARY"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, )PS2SDB", 8192}, + std::string_view{R"PS2SDB("156": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "232": {"type": "MIPS_26", "symbol": "sceSifAddCmdHandler", "scope": "LIBRARY"}, "244": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "256": {"type": "MIPS_26", "symbol": "sceSifAddCmdHandler", "scope": "LIBRARY"}, "268": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "280": {"type": "MIPS_26", "symbol": "sceSifAddCmdHandler", "scope": "LIBRARY"}, "292": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "304": {"type": "MIPS_26", "symbol": "sceSifAddCmdHandler", "scope": "LIBRARY"}, "320": {"type": "MIPS_26", "symbol": "sceSifGetReg", "scope": "LIBRARY"}, "364": {"type": "MIPS_26", "symbol": "sceSifSendCmd", "scope": "LIBRARY"}, "376": {"type": "MIPS_26", "symbol": "sceSifGetSreg", "scope": "LIBRARY"}, "416": {"type": "MIPS_26", "symbol": "sceSifSetReg", "scope": "LIBRARY"}}}}, "a6da2f5bc484195ae3434ddecf225938e6459b91": {"6231eca0": {"type": "FUNCTION", "size": 408, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.1", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_26", "symbol": "sceSifInitCmd", "scope": "LIBRARY"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "192": {"type": "MIPS_26", "symbol": "sceSifAddCmdHandler", "scope": "LIBRARY"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "216": {"type": "MIPS_26", "symbol": "sceSifAddCmdHandler", "scope": "LIBRARY"}, "228": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "240": {"type": "MIPS_26", "symbol": "sceSifAddCmdHandler", "scope": "LIBRARY"}, "252": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "264": {"type": "MIPS_26", "symbol": "sceSifAddCmdHandler", "scope": "LIBRARY"}, "280": {"type": "MIPS_26", "symbol": "sceSifGetReg", "scope": "LIBRARY"}, "324": {"type": "MIPS_26", "symbol": "sceSifSendCmd", "scope": "LIBRARY"}, "336": {"type": "MIPS_26", "symbol": "sceSifGetSreg", "scope": "LIBRARY"}, "376": {"type": "MIPS_26", "symbol": "sceSifSetReg", "scope": "LIBRARY"}}}}}, "sceSifExitRpc": {"ed6463e651f65ed76c3dd764e933c23f0b0bd3c9": {"3bf51da5": {"type": "FUNCTION", "size": 36, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceSifExitCmd", "scope": "LIBRARY"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "_sceRpcGetPacket": {"c8b68a71f6b89c126a6d5ec29f856e07bb2978a0": {"6196c581": {"type": "FUNCTION", "size": 168, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "DIntr", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}, "136": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}}}}, "f1d5cf623729f01da13f2f1352fa9f98a7431de4": {"00000000": {"type": "FUNCTION", "size": 164, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}, "1ae3a358529e71bbb09e2a7916e5df3f332f1a12": {"00000000": {"type": "FUNCTION", "size": 164, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "sdk": ["2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "c3065686e880962aa4527d5bcf689ab0b5b47c3d": {"d14fb603": {"type": "FUNCTION", "size": 172, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.4"], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "DIntr", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}, "140": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}}}}}, "_sceRpcFreePacket": {"9eb531b872c12ccaf70f9dc9561072fd9b5c90b4": {"00000000": {"type": "FUNCTION", "size": 28, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "_sceRpcGetFPacket": {"7e78ca9317d305835bec988263447ea49825159c": {"00000000": {"type": "FUNCTION", "size": 48, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3")PS2SDB", 8192}, + std::string_view{R"PS2SDB(, "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "_sceRpcGetFPacket2": {"921859b429c37cc09adca94731a881850fd78e59": {"d08fbf3b": {"type": "FUNCTION", "size": 64, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "_sceRpcGetFPacket", "scope": "LIBRARY", "original": ".text"}}}}}, "_request_end": {"73b849fa996f4c3d02134b89ec9ab12bc7a73648": {"84af978b": {"type": "FUNCTION", "size": 180, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1"], "sdk": ["2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"140": {"type": "MIPS_26", "symbol": "iSignalSema", "scope": "LIBRARY"}, "148": {"type": "MIPS_26", "symbol": "_sceRpcFreePacket", "original": ".text"}}}}, "1c1cf4d4ec11686965edbb305795e4232356febc": {"1f903c77": {"type": "FUNCTION", "size": 204, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"160": {"type": "MIPS_26", "symbol": "iSignalSema", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "_sceRpcFreePacket", "original": ".text"}}}}, "652e3fb2e88c938071ad505598e174e422268067": {"84af978b": {"type": "FUNCTION", "size": 176, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.4"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.5.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"140": {"type": "MIPS_26", "symbol": "iSignalSema", "scope": "LIBRARY"}, "148": {"type": "MIPS_26", "symbol": "_sceRpcFreePacket", "original": ".text"}}}}}, "_request_rdata": {"9e4804a899d9b18d84ab5156242e16200362e386": {"52337cc3": {"type": "FUNCTION", "size": 96, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "_sceRpcGetFPacket", "scope": "LIBRARY", "original": ".text"}, "88": {"type": "MIPS_26", "symbol": "isceSifSendCmd", "scope": "LIBRARY"}}}}, "d3d7b4871e5c96433efb0f0e7f1ff440eddfca8e": {"168e3d43": {"type": "FUNCTION", "size": 208, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.4", "2.6.0", "2.7.0", "2.7.1"], "sdk": ["2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "_sceRpcGetFPacket2", "scope": "LIBRARY", "original": ".text"}, "56": {"type": "MIPS_26", "symbol": "_sceRpcGetFPacket", "scope": "LIBRARY", "original": ".text"}, "144": {"type": "MIPS_26", "symbol": "isceSifSendCmd", "scope": "LIBRARY"}, "164": {"type": "MIPS_HI16", "symbol": "_alarm_rdata", "original": ".text"}, "168": {"type": "MIPS_LO16", "symbol": "_alarm_rdata", "original": ".text"}, "184": {"type": "MIPS_26", "symbol": "iSetAlarm", "scope": "LIBRARY"}}}}, "85ef2965a7281c0a793ed5138ece0f11671610fd": {"d339e0c3": {"type": "FUNCTION", "size": 208, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "_sceRpcGetFPacket2", "scope": "LIBRARY", "original": ".text"}, "56": {"type": "MIPS_26", "symbol": "_sceRpcGetFPacket", "scope": "LIBRARY", "original": ".text"}, "144": {"type": "MIPS_26", "symbol": "isceSifSendCmd", "scope": "LIBRARY"}, "164": {"type": "MIPS_HI16", "symbol": "_alarm_rdata", "original": ".text"}, "168": {"type": "MIPS_LO16", "symbol": "_alarm_rdata", "original": ".text"}, "184": {"type": "MIPS_26", "symbol": "iSetTimerAlarm", "scope": "LIBRARY"}}}}}, "sceSifGetOtherData": {"353c79f9e940a9799c1609f78040d794d218dabc": {"d3783e0d": {"type": "FUNCTION", "size": 344, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0"], "sdk": ["2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "_sceRpcGetPacket", "original": ".text"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "144": {"type": "MIPS_26", "symbol": "_sceRpcFreePacket", "original": ".text"}, "184": {"type": "MIPS_26", "symbol": "sceSifSendCmd", "scope": "LIBRARY"}, "200": {"type": "MIPS_26", "symbol": "_sceRpcFreePacket", "original": ".text"}, "208": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "224": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "232": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "280": {"type": "MIPS_26", "symbol": "sceSifSendCmd", "scope": "LIBRARY"}, "296": {"type": "MIPS_26", "symbol": "_sceRpcFreePacket", "original": ".text"}}}}, "911d6a4b2df06677735ce2f6fba18f3460252565": {"0d6d6582": {"type": "FUNCTION", "size": 308, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "_sceRpcGetPacket", "original": ".text"}, ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "176": {"type": "MIPS_26", "symbol": "sceSifSendCmd", "scope": "LIBRARY"}, "192": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "200": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "248": {"type": "MIPS_26", "symbol": "sceSifSendCmd", "scope": "LIBRARY"}}}}, "67b9d9fe14d390230743d4cd70d139dee86bafa2": {"52b11e95": {"type": "FUNCTION", "size": 356, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "_sceRpcGetPacket", "original": ".text"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "140": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "156": {"type": "MIPS_26", "symbol": "_sceRpcFreePacket", "original": ".text"}, "196": {"type": "MIPS_26", "symbol": "sceSifSendCmd", "scope": "LIBRARY"}, "212": {"type": "MIPS_26", "symbol": "_sceRpcFreePacket", "original": ".text"}, "220": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "236": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "244": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "292": {"type": "MIPS_26", "symbol": "sceSifSendCmd", "scope": "LIBRARY"}, "308": {"type": "MIPS_26", "symbol": "_sceRpcFreePacket", "original": ".text"}}}}}, "_search_svdata": {"d9d35c0352f7198363a20661b2d40500c3c27627": {"00000000": {"type": "FUNCTION", "size": 76, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "_request_bind": {"9b0e1fbb8c5cca034ec16063e6ee1a71c267b1c8": {"5ee10716": {"type": "FUNCTION", "size": 176, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "_sceRpcGetFPacket", "scope": "LIBRARY", "original": ".text"}, "72": {"type": "MIPS_26", "symbol": "_search_svdata", "scope": "LIBRARY", "original": ".text"}, "168": {"type": "MIPS_26", "symbol": "isceSifSendCmd", "scope": "LIBRARY"}}}}, "2d1cc40a92e33740ef251c2a562672f1552d6201": {"fd927048": {"type": "FUNCTION", "size": 204, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "_sceRpcGetFPacket", "scope": "LIBRARY", "original": ".text"}, "72": {"type": "MIPS_26", "symbol": "_search_svdata", "scope": "LIBRARY", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "isceSifSendCmd", "scope": "LIBRARY"}, "152": {"type": "MIPS_HI16", "symbol": "_alarm_bind", "original": ".text"}, "156": {"type": "MIPS_LO16", "symbol": "_alarm_bind", "original": ".text"}, "176": {"type": "MIPS_26", "symbol": "iSetTimerAlarm", "scope": "LIBRARY"}}}}}, "sceSifBindRpc": {"d32696b122c0034f62f0ec5f698874f92be0f719": {"3fdd35d6": {"type": "FUNCTION", "size": 320, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0"], "sdk": ["2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_26", "symbol": "_sceRpcGetPacket", "original": ".text"}, "112": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "128": {"type": "MIPS_26", "symbol": "_sceRpcFreePacket", "original": ".text"}, "168": {"type": "MIPS_26", "symbol": "sceSifSendCmd", "scope": "LIBRARY"}, "184": {"type": "MIPS_26", "symbol": "_sceRpcFreePacket", "original": ".text"}, "192": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "208": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "216": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "264": {"type": "MIPS_26", "symbol": "sceSifSendCmd", "scope": "LIBRARY"}, "280": {"type": "MIPS_26", "symbol": "_sceRpcFreePacket", "original": ".text"}}}}, "2b7d9d08826f357818df0989821463e2b22bd422": {"9e5e428e": {"type": "FUNCTION", "size": 284, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_26", "symbol": "_sceRpcGetPacket", "original": ".text"}, "112": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "160": {"type": "MIPS_26", "symbol": "sceSifSendCmd", "scope": "LIBRARY"}, "176": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "184": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "232": {"type": "MIPS_26", "symbol": "sceSifSendCmd", "scope": "LIBRARY"}}}}, "ae6565293047153d636c5a437d86fa2a824c829e": {"c1684c4b": {"type": "FUNCTION", "size": 332, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_26", "symbol": "_sceRpcGetPacket", "original": ".text"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "124": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "140": {"type": "MIPS_26", "symbol": "_sceRpcFreePacket", "original": ".text"}, "180": {"type": "MIPS_26", "symbol": "sceSifSendCmd", "scope": "LIBRARY"}, "196": {"type": "MIPS_26", "symbol": "_sceRpcFreePacket", "original": ".text"}, "204": {"type": "MIPS_26", "symbol": "DeleteSema")PS2SDB", 8192}, + std::string_view{R"PS2SDB(, "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "228": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "276": {"type": "MIPS_26", "symbol": "sceSifSendCmd", "scope": "LIBRARY"}, "292": {"type": "MIPS_26", "symbol": "_sceRpcFreePacket", "original": ".text"}}}}}, "_request_call": {"231b1863be9349ff354be48b6ec85f83a23e98bd": {"28c9ab35": {"type": "FUNCTION", "size": 140, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"124": {"type": "MIPS_26", "symbol": "iWakeupThread", "scope": "LIBRARY"}}}}, "57f703b281721e0f971665a2007f8fb6b14bdd33": {"28c9ab35": {"type": "FUNCTION", "size": 140, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"124": {"type": "MIPS_26", "symbol": "iWakeupThread", "scope": "LIBRARY"}}}}}, "sceSifCallRpc": {"baa991daeccd6d04a3d4e7bdf135eeefc77482e4": {"157aa5c2": {"type": "FUNCTION", "size": 492, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1"], "sdk": ["2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "_sceRpcGetPacket", "original": ".text"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "180": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "204": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "292": {"type": "MIPS_26", "symbol": "sceSifSendCmd", "scope": "LIBRARY"}, "324": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "340": {"type": "MIPS_26", "symbol": "_sceRpcFreePacket", "original": ".text"}, "384": {"type": "MIPS_26", "symbol": "sceSifSendCmd", "scope": "LIBRARY"}, "400": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "408": {"type": "MIPS_26", "symbol": "_sceRpcFreePacket", "original": ".text"}, "424": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "432": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}}}}, "dd40c3ad71c21c86914a04c31cedcdcc787cc14b": {"651ec6f6": {"type": "FUNCTION", "size": 500, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0"], "sdk": ["2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "_sceRpcGetPacket", "original": ".text"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "212": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "228": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "300": {"type": "MIPS_26", "symbol": "sceSifSendCmd", "scope": "LIBRARY"}, "332": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "348": {"type": "MIPS_26", "symbol": "_sceRpcFreePacket", "original": ".text"}, "392": {"type": "MIPS_26", "symbol": "sceSifSendCmd", "scope": "LIBRARY"}, "408": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "416": {"type": "MIPS_26", "symbol": "_sceRpcFreePacket", "original": ".text"}, "432": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "440": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}}}}, "8954cd52c4447fd4fe8a3f646e921cc6cc6c7217": {"105fafd3": {"type": "FUNCTION", "size": 436, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "_sceRpcGetPacket", "original": ".text"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "172": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "196": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "268": {"type": "MIPS_26", "symbol": "sceSifSendCmd", "scope": "LIBRARY"}, "300": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "352": {"type": "MIPS_26", "symbol": "sceSifSendCmd", "scope": "LIBRARY"}, "368": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "376": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}}}}, "0a4d1a478931e4d41fa8a9c29608c7a147de77a5": {"e8ad08f4": {"type": "FUNCTION", "size": 512, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "_sceRpcGetPacket", "original": ".text"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "212": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "228": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "244": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "300": {"type": "MIPS_26", "symbol": "sceSifSendCmd", "scope": "LIBRARY"}, "328": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "344": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "360": {"type": "MIPS_26", "symbol": "_sceRpcFreePacket", "original": ".text"}, "404": {"type": "MIPS_26", "symbol": "sceSifSendCmd", "scope": "LIBRARY"}, "420": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "428": {"type": "MIPS_26", "symbol": "_sceRpcFreePacket", "original": ".text"}, "444": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "452": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}}}}}, "sceSifCheckStatRpc": {"9b7a5d32777dce4a7f2b2a414b86c29da031d4cd": {"00000000": {"type": "FUNCTION", "size": 60, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"])PS2SDB", 8192}, + std::string_view{R"PS2SDB(, "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceSifSetRpcQueue": {"27d8084474838eff8dbfde54a058fa3bc0fdf706": {"ac1ed815": {"type": "FUNCTION", "size": 148, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "DIntr", "scope": "LIBRARY"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}}}}, "946f6eeec1258ca55bc1e50d1d27be2774b6f2b5": {"35000b2e": {"type": "FUNCTION", "size": 120, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "13b5f84a065bcd1e7549d76df9dc0494c802629b": {"5f00ae0e": {"type": "FUNCTION", "size": 144, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "sdk": ["2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "e0107598315fb3091108fe14e4a287b45c62c20c": {"5f00ae0e": {"type": "FUNCTION", "size": 132, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.1", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "3130e59a6ab4506800c7b579d0a9189d6e00e544": {"ac1ed815": {"type": "FUNCTION", "size": 148, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.4"], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "DIntr", "scope": "LIBRARY"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}}}}}, "sceSifRegisterRpc": {"7e66c91ced63c87cbffdf9fb1dafbb6a4d6e7104": {"fa8c6dbb": {"type": "FUNCTION", "size": 208, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "DIntr", "scope": "LIBRARY"}, "200": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}}}}, "c8d9d300b10ec66b8dc559b65b02032011616c6c": {"00000000": {"type": "FUNCTION", "size": 144, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}, "c019d2a05f902b492c1d7792d6e43b68180a37f7": {"00000000": {"type": "FUNCTION", "size": 144, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "sdk": ["2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "00a86665272b7266c806d68a52495e2f20dedcb9": {"00000000": {"type": "FUNCTION", "size": 148, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.1", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}, "629114184f8c7c534732190db1d749042c1c6572": {"fa8c6dbb": {"type": "FUNCTION", "size": 208, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.4"], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "DIntr", "scope": "LIBRARY"}, "200": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}}}}}, "sceSifRemoveRpc": {"64efc9fcb430dbbe3ae71462a71aff5a28b697ce": {"cbfaf3be": {"type": "FUNCTION", "size": 148, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "DIntr", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}}}}, "acd908aabf6fd0046845554f186a7d7a9ab64f34": {"00000000": {"type": "FUNCTION", "size": 124, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}, "e6f907492bc09d8b07d0b5cae30ed0330d484acf": {"00000000": {"type": "FUNCTION", "size": 124, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "sdk": ["2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceSifRemoveRpcQueue": {"84ab76333cd5832b494869a8b1d00c95fa696a8c": {"8024dfe3": {"type": "FUNCTION", "size": 144, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "DIntr", "scope": "LIBRARY"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}}}}, "7efd892ba7f0e30b5cf83e5320358aa39057f529": {"300a46af": {"type": "FUNCTION", "size": 132, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "4c4e5a46e72e5728da91a84cd85ce7a75c13d14f": {"5c069571": {"type": "FUNCTION", "size": 132, "library": "libke)PS2SDB", 8192}, + std::string_view{R"PS2SDB(rnl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "sdk": ["1.6.1", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceSifGetNextRequest": {"14fc7f55c95de094e96fd4abf68b0fd55cee7634": {"1e322d14": {"type": "FUNCTION", "size": 88, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "DIntr", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}}}}, "ba03daea762887c37ce86c62a62830eba3c071cd": {"00000000": {"type": "FUNCTION", "size": 80, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}, "381eb40e5f1af87eb329d0808d55bb6bd1eafd3c": {"00000000": {"type": "FUNCTION", "size": 76, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "sdk": ["2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceSifExecRequest": {"03edf79eea97a48d78590dbc05d4c97de1dd3372": {"8d21f93c": {"type": "FUNCTION", "size": 452, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"80": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "DIntr", "scope": "LIBRARY"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_26", "symbol": "_sceRpcGetFPacket2", "scope": "LIBRARY", "original": ".text"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_26", "symbol": "_sceRpcGetFPacket", "scope": "LIBRARY", "original": ".text"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}, "232": {"type": "MIPS_26", "symbol": "sceSifSendCmd", "scope": "LIBRARY"}, "360": {"type": "MIPS_26", "symbol": "sceSifSetDma", "scope": "LIBRARY"}}}}, "99969b33306a3647180b37a983745a38de3bbdcc": {"4259d5a3": {"type": "FUNCTION", "size": 476, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"80": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "_sceRpcGetFPacket2", "scope": "LIBRARY", "original": ".text"}, "176": {"type": "MIPS_26", "symbol": "_sceRpcGetFPacket", "scope": "LIBRARY", "original": ".text"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "248": {"type": "MIPS_26", "symbol": "sceSifSendCmd", "scope": "LIBRARY"}, "376": {"type": "MIPS_26", "symbol": "sceSifSetDma", "scope": "LIBRARY"}}}}, "9656abb0384ecc3510bae0402a681857b0510d28": {"40c9eb66": {"type": "FUNCTION", "size": 476, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "sdk": ["1.6.1", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"80": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_26", "symbol": "_sceRpcGetFPacket2", "scope": "LIBRARY", "original": ".text"}, "180": {"type": "MIPS_26", "symbol": "_sceRpcGetFPacket", "scope": "LIBRARY", "original": ".text"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "256": {"type": "MIPS_26", "symbol": "sceSifSendCmd", "scope": "LIBRARY"}, "384": {"type": "MIPS_26", "symbol": "sceSifSetDma", "scope": "LIBRARY"}}}}, "16506b0f6d43ba6f0a4cc4d5e7a6fac364c02a3e": {"8d21f93c": {"type": "FUNCTION", "size": 460, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.4"], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"80": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "DIntr", "scope": "LIBRARY"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_26", "symbol": "_sceRpcGetFPacket2", "scope": "LIBRARY", "original": ".text"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_26", "symbol": "_sceRpcGetFPacket", "scope": "LIBRARY", "original": ".text"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}, "232": {"type": "MIPS_26", "symbol": "sceSifSendCmd", "scope": "LIBRARY"}, "360": {"type": "MIPS_26", "symbol": "sceSifSetDma", "scope": "LIBRARY"}}}}}, "sceSifRpcLoop": {"eab52c2bf39512427ac2e965a89b9f536b366b93": {"b0159926": {"type": "FUNCTION", "size": 64, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "sceSifExecRequest", "scope": "LIBRARY", "original": ".text"}, "32": {"type": "MIPS_26", "symbol": "sceSifGetNextRequest", "scope": "LIBRARY", "original": ".text"}, "48": {"type": "MIPS_26", "symbol": "SleepThread", "scope": "LIBRARY"}}}}}, "_sceFsIobSemaMK": {"9bc43a7ce110af0bfa7a1eb210c7d7a99cd4a86)PS2SDB", 8192}, + std::string_view{R"PS2SDB(3": {"783d2375": {"type": "FUNCTION", "size": 92, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "ebd430d065576c5aa6a1c0d0d34deeb78a0f2902": {"f64d0d80": {"type": "FUNCTION", "size": 112, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["3.0.0", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "56": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "new_iob": {"e78ee25942962aa574465e0f3fe019bf6ae1bd0e": {"5847e3b0": {"type": "FUNCTION", "size": 136, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "_sceFsIobSemaMK", "scope": "LIBRARY", "original": ".text"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_26", "symbol": "SignalSema", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "SignalSema", "scope": "LIBRARY"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "a662abd4a348d8c3d0d44dccb59d6458b4c20209": {"300a46af": {"type": "FUNCTION", "size": 112, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "6bb069f4d022f62d14ab690e01fcba68f9f61890": {"cedcb8d5": {"type": "FUNCTION", "size": 112, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "sdk": ["2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "a5828992379dc51eee831f7a159b057c2257fba0": {"5c069571": {"type": "FUNCTION", "size": 112, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "get_iob": {"bf53adf5aa97567b19f48cb8dc04b07873933b41": {"8ede36e5": {"type": "FUNCTION", "size": 108, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "_sceFsIobSemaMK", "scope": "LIBRARY", "original": ".text"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_26", "symbol": "SignalSema", "scope": "LIBRARY"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_26", "symbol": "SignalSema", "scope": "LIBRARY"}}}}, "afa1c0d2b39cff5a6e107c269dde60c7d7561116": {"0df2ffee": {"type": "FUNCTION", "size": 36, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "_sceFs_Rcv_Intr": {"cfd221066f605a33365e946f60a96166d7d2d9f4": {"69cd2c4b": {"type": "FUNCTION", "size": 960, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3"], "sdk": ["2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_26", "symbol": "memcpy"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "336": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "344": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "560": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "568": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "736": {"type": "MIPS_HI16", )PS2SDB", 8192}, + std::string_view{R"PS2SDB("symbol": "", "original": ".bss"}, "744": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "824": {"type": "MIPS_26", "symbol": "memcpy"}, "840": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "848": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "872": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "900": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "940": {"type": "MIPS_26", "symbol": "iSignalSema", "scope": "LIBRARY"}}}}, "69ba3c8ca3483ccf7a6213940a5560dc85debeef": {"8a1294b2": {"type": "FUNCTION", "size": 932, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.6.0", "2.7.0", "2.7.1"], "sdk": ["2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_26", "symbol": "memcpy"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "792": {"type": "MIPS_26", "symbol": "memcpy"}, "808": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "816": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "840": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "868": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "908": {"type": "MIPS_26", "symbol": "iSignalSema", "scope": "LIBRARY"}}}}, "4093e2924b4c06ca9ae41e4cd5dd812109811295": {"37afb9ed": {"type": "FUNCTION", "size": 948, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_26", "symbol": "memcpy"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "808": {"type": "MIPS_26", "symbol": "memcpy"}, "824": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "832": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "856": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "884": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "924": {"type": "MIPS_26", "symbol": "iSignalSema", "scope": "LIBRARY"}}}}, "3f7d6fe77ce232a48060a41c345219b24b92392b": {"0867b2a9": {"type": "FUNCTION", "size": 952, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.2.0", "2.2.1", "2.2.2", "2.2.4"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_26", "symbol": "memcpy"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "328": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "336": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "552": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "560": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "728": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "736": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "816": {"type": "MIPS_26", "symbol": "memcpy"}, "832": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "840": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "864": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "892": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "932": {"type": "MIPS_26", "symbol": "iSignalSema", "scope": "LIBRARY"}}}}, "5da540c250c60ea2184889a6cc8d7d0fc0fc0787": {"01f4ea64": {"type": "FUNCTION", "size": 900, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.3.0-5", "2.5.4", "2.5.5"], "sdk": ["2.5.4", "2.5.5", "2.5.7"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_26", "symbol": "memcpy"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "760": {"type": "MIPS_26", "symbol": "memcpy"}, "776": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "784": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "808": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "836": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "876": {"type": "MIPS_26", "symbol": "iSignalSema", "scope": "LIBRARY"}}}}}, "_sceFsSemInit": {"0ee9aceb2e47b28c818a62928ccc9d5c1302bde8": {"3b57fcef": {"type": "FUNCTION", "size": 76, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "7678540574197b420f17571673856a74783eb9d5": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "sdk": ["2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "2d9e3edf85adc08d16d9f4664ca7c9da41bf9d56": {"da19478e": {"type": "FUNCTION", "size": 84, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["3.0.0", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "56": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "_sceFsWaitS": {"cac9d6b0d2b780a73e667f4795ce6b6cc21b96a4": {"c65864b2": {"type": "FUNCTION", "size)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": 44, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "_sceFsSemInit", "scope": "LIBRARY", "original": ".text"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "_sceFsSigSema": {"3887f1de7e61e4ad19b4f8bb2aa8b864094372d9": {"7cc05e8f": {"type": "FUNCTION", "size": 12, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "4": {"type": "MIPS_26", "symbol": "SignalSema", "scope": "LIBRARY"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "7678540574197b420f17571673856a74783eb9d5": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "sdk": ["2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "scePowerOffHandler": {"362b7a58666b9520b93dc7ba9fe2687b6c4d2ffc": {"1856e17c": {"type": "FUNCTION", "size": 152, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0-5", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1"], "sdk": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_26", "symbol": "_sceFsWaitS", "scope": "LIBRARY", "original": ".text"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_26", "symbol": "sceFsInit", "scope": "LIBRARY", "original": ".text"}, "76": {"type": "MIPS_26", "symbol": "DIntr", "scope": "LIBRARY"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}}}}, "cae2e1dcfc989b77cc6904cca33cd7dde152b34a": {"f9c7d49a": {"type": "FUNCTION", "size": 144, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3"], "sdk": ["2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_26", "symbol": "_sceFsWaitS", "scope": "LIBRARY", "original": ".text"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_26", "symbol": "sceFsInit", "scope": "LIBRARY", "original": ".text"}, "76": {"type": "MIPS_26", "symbol": "DIntr", "scope": "LIBRARY"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}}}}, "905b3614645d2773869e73ee1af61f0be30eb6a8": {"d6eb74e2": {"type": "FUNCTION", "size": 164, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0"], "sdk": ["2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_26", "symbol": "_sceFsWaitS", "scope": "LIBRARY", "original": ".text"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_26", "symbol": "sceFsInit", "scope": "LIBRARY", "original": ".text"}, "76": {"type": "MIPS_26", "symbol": "DIntr", "scope": "LIBRARY"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}, "120": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}}}}, "dee73fa32090c37c9f80e7fb2910abb22f146a37": {"6fd5e76a": {"type": "FUNCTION", "size": 160, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_26", "symbol": "_sceFsWaitS", "scope": "LIBRARY", "original": ".text"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_26", "symbol": "sceFsInit", "scope": "LIBRARY", "original": ".text"}, "76": {"type": "MIPS_26", "symbol": "DIntr", "scope": "LIBRARY"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}}}}}, "_sceFs_Poff_Intr": {"9cdf19fc790eed6d779d9629da6a6fd37643e952": {"00000000": {"type": "FUNCTION", "size": 44, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.3.0-5", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1"], "sdk": ["2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "ef57916bf7fe82c52737f32e933c8ef61006587a": {"ca94194d": {"type": "FUNCTION", "size": 68, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceFsInit": {"a7842c6c2ca1cb08c198f72d721a0d647bdd0358": {"57b4bef3")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: {"type": "FUNCTION", "size": 464, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.5.2", "2.5.3"], "sdk": ["2.5.0", "2.5.2", "2.5.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "sceSifInitRpc", "scope": "LIBRARY"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_26", "symbol": "DIntr", "scope": "LIBRARY"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "sceSifAddCmdHandler", "scope": "LIBRARY"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "104": {"type": "MIPS_26", "symbol": "sceSifAddCmdHandler", "scope": "LIBRARY"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_26", "symbol": "sceSifBindRpc", "scope": "LIBRARY"}, "216": {"type": "MIPS_26", "symbol": "_sceFsIobSemaMK", "scope": "LIBRARY", "original": ".text"}, "220": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "224": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "232": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "252": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "256": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "260": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "300": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "304": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "312": {"type": "MIPS_26", "symbol": "SignalSema", "scope": "LIBRARY"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "324": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "328": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "332": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "360": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "388": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "396": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "400": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "c9c65383abc1880f07091b910729a4a2f0acc7b0": {"55ae855b": {"type": "FUNCTION", "size": 456, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3"], "sdk": ["2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "sceSifInitRpc", "scope": "LIBRARY"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_26", "symbol": "DIntr", "scope": "LIBRARY"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_26", "symbol": "sceSifAddCmdHandler", "scope": "LIBRARY"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "100": {"type": "MIPS_26", "symbol": "sceSifAddCmdHandler", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "180": {"type": "MIPS_26", "symbol": "sceSifBindRpc", "scope": "LIBRARY"}, "208": {"type": "MIPS_26", "symbol": "_sceFsIobSemaMK", "scope": "LIBRARY", "original": ".text"}, "212": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "216": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "244": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "248": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "252": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "292": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "296": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "300": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "304": {"type": "MIPS_26", "symbol": "SignalSema", "scope": "LIBRARY"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "312": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "324": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "352": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "380": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "388": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "392": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "416": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "21fa44749553642311e932ee9c9dbc44a2687816": {"646ef1f0": {"type": "FUNCTION", "size": 516, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0-5", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0"], "sdk": ["2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "sceSifInitRpc", "scope": "LIBRARY"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_26", "symbol": "DIntr", "scope": "LIBRARY"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "sceSifAddCmdHandler", "scope": "LIBRARY"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "104": {"type": "MIPS_26", "symbol": "sceSifAddCmdHandler", "scope": "LIBRARY"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_26", "s)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ymbol": "sceSifBindRpc", "scope": "LIBRARY"}, "216": {"type": "MIPS_26", "symbol": "_sceFsIobSemaMK", "scope": "LIBRARY", "original": ".text"}, "220": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "224": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "232": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "252": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "256": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "260": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "300": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "304": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "312": {"type": "MIPS_26", "symbol": "SignalSema", "scope": "LIBRARY"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "324": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "328": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "332": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "368": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "408": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "412": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "448": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "452": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "464": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "480": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "64c46aecfe67d04c9b1d13ee717a6baeba3d0988": {"85ac91d5": {"type": "FUNCTION", "size": 416, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "sceSifInitRpc", "scope": "LIBRARY"}, "36": {"type": "MIPS_26", "symbol": "DIntr", "scope": "LIBRARY"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_HI16", "symbol": "_sceFs_Rcv_Intr", "original": ".text"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "_sceFs_Rcv_Intr", "original": ".text"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_26", "symbol": "sceSifAddCmdHandler", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_26", "symbol": "sceSifBindRpc", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "_sceFsIobSemaMK", "scope": "LIBRARY", "original": ".text"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "176": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "212": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "256": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "264": {"type": "MIPS_26", "symbol": "SignalSema", "scope": "LIBRARY"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "312": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "340": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "348": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "376": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "8e82b808458a76582e68b105e969d7968ed1ceaa": {"36ed2060": {"type": "FUNCTION", "size": 232, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "sceSifInitRpc", "scope": "LIBRARY"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_26", "symbol": "sceSifBindRpc", "scope": "LIBRARY"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "200": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "75bfb7aaf4e27afcc2446b4890643a2c5f02c790": {"fa4fa571": {"type": "FUNCTION", "size": 328, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "sdk": ["2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "sceSifInitRpc", "scope": "LIBRARY"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "sceSifBindRpc", "scope": "LIBRARY"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "192": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "236": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "264": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "272": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "300": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "b48cf76f254d534553121a99c69cf1eaa486021b": {"1760615f": {"type": "FUNCTION", "size": 320, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2"], "sdk": ["2.0.0", "2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "sceSifInitRpc", "scope": "LIBRARY"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "sceSifBindRpc", "scope": "LIBRARY"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_)PS2SDB", 8192}, + std::string_view{R"PS2SDB(HI16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "192": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "232": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "244": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "260": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "292": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "e253efb2a11859eeed5dfa52f98a1e102cbeb998": {"b0db49f0": {"type": "FUNCTION", "size": 216, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.1", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "sceSifInitRpc", "scope": "LIBRARY"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "sceSifBindRpc", "scope": "LIBRARY"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "172": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "cd885fefa83690e264a872f4be609f02ac6e59b0": {"6c2e0ff3": {"type": "FUNCTION", "size": 520, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "sceSifInitRpc", "scope": "LIBRARY"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_26", "symbol": "DIntr", "scope": "LIBRARY"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "sceSifAddCmdHandler", "scope": "LIBRARY"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "104": {"type": "MIPS_26", "symbol": "sceSifAddCmdHandler", "scope": "LIBRARY"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_26", "symbol": "sceSifBindRpc", "scope": "LIBRARY"}, "216": {"type": "MIPS_26", "symbol": "_sceFsIobSemaMK", "scope": "LIBRARY", "original": ".text"}, "220": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "224": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "232": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "252": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "256": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "260": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "300": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "304": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "312": {"type": "MIPS_26", "symbol": "SignalSema", "scope": "LIBRARY"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "324": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "328": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "332": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "372": {"type": "MIPS_26", "symbol": "sceFsSifCallRpc", "scope": "LIBRARY", "original": ".text"}, "412": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "416": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "452": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "456": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "468": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "484": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "_fs_version": {"db4e90d7867018764d3d227af738c9ad812e582d": {"690460a8": {"type": "FUNCTION", "size": 140, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "__ps2_klibinfo__"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": "__ps2_klibinfo__"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_26", "symbol": "memcmp"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_26", "symbol": "memcmp"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_26", "symbol": "memcmp"}}}}, "244d1a1aa4c1977f545b906fe24133ce04c38ad4": {"aaec6d69": {"type": "FUNCTION", "size": 100, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "sdk": ["2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": "__ps2_klibinfo__"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": "__ps2_klibinfo__"}, "40": {"type": "MIPS_26", "symbol": "memcmp"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_26", "symbol": "memcmp"}}}}, "0a5e1d71e9d612e7f777b529b5e9c448e269e17b": {"bb28951d": {"type": "FUNCTION", "size": 44, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.0.0", "2.0.2"], "sdk": ["2.0.0", "2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "__ps2_klibi)PS2SDB", 8192}, + std::string_view{R"PS2SDB(nfo__"}, "8": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": "__ps2_klibinfo__"}, "24": {"type": "MIPS_26", "symbol": "memcmp"}}}}}, "sceFsReset": {"0795d766f091faf6f0ad64ed0cb2a4cec5e1b5e0": {"6bbc4303": {"type": "FUNCTION", "size": 52, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_26", "symbol": "memset"}}}}, "cfaf9fb7a176229a6d2415ff621875ffc2228998": {"d0e115d3": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceOpen": {"0eeb91c23368070e65bc170dc0612064fbd989bb": {"757d46e7": {"type": "FUNCTION", "size": 644, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0-5", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0"], "sdk": ["2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "_sceFsWaitS", "scope": "LIBRARY", "original": ".text"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_26", "symbol": "sceFsInit", "scope": "LIBRARY", "original": ".text"}, "116": {"type": "MIPS_26", "symbol": "_fs_version", "scope": "LIBRARY", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "152": {"type": "MIPS_26", "symbol": "new_iob", "scope": "LIBRARY", "original": ".text"}, "172": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "208": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "216": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "220": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "276": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "284": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "288": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "348": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "360": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "388": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "392": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "420": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "436": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "444": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "464": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "480": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "496": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "504": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "520": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "524": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "528": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "536": {"type": "MIPS_26", "symbol": "SignalSema", "scope": "LIBRARY"}, "540": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "556": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "560": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "572": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "584": {"type": "MIPS_26", "symbol": "SignalSema", "scope": "LIBRARY"}}}}, "d28709736440c1c7e5ed9143752b45e987049d8b": {"757d46e7": {"type": "FUNCTION", "size": 644, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.1", "2.8.0"], "sdk": ["2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "_sceFsWaitS", "scope": "LIBRARY", "original": ".text"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_26", "symbol": "sceFsInit", "scope": "LIBRARY", "original": ".text"}, "116": {"type": "MIPS_26", "symbol": "_fs_version", "scope": "LIBRARY", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "152": {"type": "MIPS_26", "symbol": "new_iob", "scope": "LIBRARY", "original": ".text"}, "172": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "208": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "216": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "220": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "276": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "284": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "288": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "348": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "360": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "388": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "392": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "420": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "436": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "444": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "464": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "480": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "496": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "504": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "520": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "524": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "528": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "536": {"type": "MIPS_26", "symbol": "SignalSema", "scope": "LIBRARY"}, "540": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "556": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "560": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "572": {"type": "MIPS_LO16", "symbol")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: "", "original": ".data"}, "584": {"type": "MIPS_26", "symbol": "SignalSema", "scope": "LIBRARY"}}}}, "d5c4fdd00527bc15afc4e2ae489206142b12d611": {"fb2dcaac": {"type": "FUNCTION", "size": 632, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0", "2.2.1"], "sdk": ["2.2.0", "2.2.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "_sceFsWaitS", "scope": "LIBRARY", "original": ".text"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_26", "symbol": "sceFsInit", "scope": "LIBRARY", "original": ".text"}, "116": {"type": "MIPS_26", "symbol": "_fs_version", "scope": "LIBRARY", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "152": {"type": "MIPS_26", "symbol": "new_iob", "scope": "LIBRARY", "original": ".text"}, "172": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "212": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "216": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "272": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "276": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "332": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "336": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "364": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "368": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "396": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "412": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "420": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "440": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "456": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "472": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "480": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "496": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "500": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "504": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "512": {"type": "MIPS_26", "symbol": "SignalSema", "scope": "LIBRARY"}, "516": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "528": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "532": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "540": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "548": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "552": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "572": {"type": "MIPS_26", "symbol": "SignalSema", "scope": "LIBRARY"}}}}, "09155ec62a755b8f77d8408da29cd2da9cf1e538": {"757d46e7": {"type": "FUNCTION", "size": 644, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.2", "2.2.4", "2.3.0"], "sdk": ["2.2.2", "2.2.4", "2.3.0", "2.3.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "_sceFsWaitS", "scope": "LIBRARY", "original": ".text"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_26", "symbol": "sceFsInit", "scope": "LIBRARY", "original": ".text"}, "116": {"type": "MIPS_26", "symbol": "_fs_version", "scope": "LIBRARY", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "152": {"type": "MIPS_26", "symbol": "new_iob", "scope": "LIBRARY", "original": ".text"}, "172": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "208": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "216": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "220": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "276": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "284": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "288": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "348": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "360": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "388": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "392": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "420": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "436": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "444": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "464": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "480": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "496": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "504": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "520": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "524": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "528": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "536": {"type": "MIPS_26", "symbol": "SignalSema", "scope": "LIBRARY"}, "540": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "556": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "560": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "572": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "584": {"type": "MIPS_26", "symbol": "SignalSema", "scope": "LIBRARY"}}}}, "1c7168406b997c9d8aeee83d693312b8bc281d79": {"c3d8b10c": {"type": "FUNCTION", "size": 344, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_26", "symbol": "sceFsInit", "scope": "LIBRARY", "original": ".text"}, "68": {"type": "MIPS_26", "symbol": "new_iob", "scope": "LIBRARY", "original": ".text"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "232": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "284": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "85c4d521110393e1bc0dbeed9a924e367b0f3059": {"24951c9e": {"type": "FUNCTION", "size": 448, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.0", "2.1.1", "2.1.3", "2.1.4"], "sdk": ["2.1.0", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_26", "symbol": "sceFsI)PS2SDB", 8192}, + std::string_view{R"PS2SDB(nit", "scope": "LIBRARY", "original": ".text"}, "88": {"type": "MIPS_26", "symbol": "_fs_version", "scope": "LIBRARY", "original": ".text"}, "116": {"type": "MIPS_26", "symbol": "_sceFsDbChk", "scope": "LIBRARY", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "new_iob", "scope": "LIBRARY", "original": ".text"}, "152": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "244": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "248": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "324": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "340": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "360": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "388": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "392": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "e5eff1f74428f24a3938e4d57e9e6ebc99219083": {"1b31e2c6": {"type": "FUNCTION", "size": 420, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.5"], "sdk": ["2.0.7"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "sceFsInit", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_26", "symbol": "_fs_version", "scope": "LIBRARY", "original": ".text"}, "92": {"type": "MIPS_26", "symbol": "_sceFsDbChk", "scope": "LIBRARY", "original": ".text"}, "108": {"type": "MIPS_26", "symbol": "new_iob", "scope": "LIBRARY", "original": ".text"}, "128": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "220": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "296": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "312": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "332": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "360": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "364": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "defa2eb53fc87b405c36faa1a1fec9f3b77ec745": {"0349a78b": {"type": "FUNCTION", "size": 384, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2"], "sdk": ["2.0.0", "2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "sceFsInit", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_26", "symbol": "_fs_version", "scope": "LIBRARY", "original": ".text"}, "92": {"type": "MIPS_26", "symbol": "new_iob", "scope": "LIBRARY", "original": ".text"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "200": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "272": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "324": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "328": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "9cf5b37ca34771f347e6782e76c709cf52e14fe9": {"e1388baa": {"type": "FUNCTION", "size": 656, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "_sceFsWaitS", "scope": "LIBRARY", "original": ".text"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_26", "symbol": "sceFsInit", "scope": "LIBRARY", "original": ".text"}, "116": {"type": "MIPS_26", "symbol": "_fs_version", "scope": "LIBRARY", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "152": {"type": "MIPS_26", "symbol": "new_iob", "scope": "LIBRARY", "original": ".text"}, "172": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "208": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "212": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "220": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "276": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "280": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "288": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "292": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "336": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "360": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "368": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "396": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "400": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "432": {"type": "MIPS_26", "symbol": "sceFsSifCallRpc", "scope": "LIBRARY", "original": ".text"}, "448": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "456": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "476": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "492": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "508": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "516": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "532": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "536": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "540": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "548": {"type": "MIPS_26", "symbol": "SignalSema", "scope": "LIBRARY"}, "552": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "568": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "572": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "584": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "596": {"type": "MIPS_26", "symbol": "SignalSema", "scope": "LIBRARY"}}}}}, "sceClose": {"13ad88cb600b913f58146ab87cb951ac11f09f29": {"ef2e9030": {"type": "FUNCTION", "size": 380, "library": "libkernl", "s)PS2SDB", 8192}, + std::string_view{R"PS2SDB(cope": "GLOBAL", "is_interface": true, "versions": ["2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0"], "sdk": ["2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_26", "symbol": "get_iob", "scope": "LIBRARY", "original": ".text"}, "44": {"type": "MIPS_26", "symbol": "_sceFsWaitS", "scope": "LIBRARY", "original": ".text"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "104": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "236": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "252": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "260": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "284": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "300": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "316": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "324": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}}}}, "9de56e185fd7771afe5252e6817fcbd13f34d097": {"e192ec0d": {"type": "FUNCTION", "size": 392, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0"], "sdk": ["2.2.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_26", "symbol": "get_iob", "scope": "LIBRARY", "original": ".text"}, "44": {"type": "MIPS_26", "symbol": "_sceFsWaitS", "scope": "LIBRARY", "original": ".text"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "104": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "140": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "216": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "232": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "240": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "264": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "280": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "296": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "304": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "320": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "324": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "328": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "332": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "336": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "348": {"type": "MIPS_26", "symbol": "SignalSema", "scope": "LIBRARY"}}}}, "b9e151778e2e2c3cdf14803bc73c3e36e240dbe6": {"9babe403": {"type": "FUNCTION", "size": 184, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_26", "symbol": "get_iob", "scope": "LIBRARY", "original": ".text"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "615cf34fa14570418390b611588a1402339bdb9e": {"00a03fa0": {"type": "FUNCTION", "size": 244, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "sdk": ["2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_26", "symbol": "get_iob", "scope": "LIBRARY", "original": ".text"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_26", "symbol": "_sceFsDbChk", "scope": "LIBRARY", "original": ".text"}, "100": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "204": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}}}}, "b760dfef142db2fb9123ae9362244fcff00dcb44": {"1f2ddb23": {"type": "FUNCTION", "size": 376, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_26", "symbol": "get_iob", "scope": "LIBRARY", "original": ".text"}, "44": {"type": "MIPS_26", "symbol": "_sceFsWaitS", "scope": "LIBRARY", "original": ".text"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_26)PS2SDB", 8192}, + std::string_view{R"PS2SDB(", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "152": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "232": {"type": "MIPS_26", "symbol": "sceFsSifCallRpc", "scope": "LIBRARY", "original": ".text"}, "248": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "256": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "280": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "296": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "312": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "320": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}}}}, "b842fea68add6965b88e25b5ae588178a28e3049": {"74d0a65f": {"type": "FUNCTION", "size": 360, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.1"], "sdk": ["2.2.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_26", "symbol": "get_iob", "scope": "LIBRARY", "original": ".text"}, "44": {"type": "MIPS_26", "symbol": "_sceFsWaitS", "scope": "LIBRARY", "original": ".text"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "104": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "140": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "216": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "232": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "240": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "264": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "280": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "296": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "304": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}}}}}, "sceLseek": {"789c1bb83659d2d09aa467a1d27e9887f5639ab7": {"72c3a333": {"type": "FUNCTION", "size": 568, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0"], "sdk": ["2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_26", "symbol": "get_iob", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_26", "symbol": "_sceFsWaitS", "scope": "LIBRARY", "original": ".text"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "184": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "228": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "256": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "264": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "288": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "348": {"type": "MIPS_26", "symbol": "SignalSema", "scope": "LIBRARY"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "360": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "364": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "368": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "372": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "376": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "380": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "408": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "424": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "432": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "452": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "468": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "492": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "508": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "516": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}}}}, "a596a0835f119afef4dbee147a5768bcab7c5801": {"77d7a4b0": {"type": "FUNCTION", "size": 544, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0", "2.2.1"], "sdk": ["2.2.0", "2.2.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_26", "symbol": "get_iob", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_26", "symbol": "_sceFsWaitS", "scope": "LIBRARY", "original": ".text"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "120": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "164": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "208": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "216": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(.data"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "244": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "264": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "324": {"type": "MIPS_26", "symbol": "SignalSema", "scope": "LIBRARY"}, "328": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "336": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "340": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "344": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "348": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "356": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "384": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "400": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "408": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "428": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "444": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "468": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "484": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "492": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}}}}, "452c62f35694375cf5565a340fe5bd54e8e6c938": {"a326023e": {"type": "FUNCTION", "size": 224, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_26", "symbol": "get_iob", "scope": "LIBRARY", "original": ".text"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "ca1456aacb76193e85f73570c83269b6df5a4d15": {"e94e2d7c": {"type": "FUNCTION", "size": 332, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "sdk": ["2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "get_iob", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_26", "symbol": "_sceFsDbChk", "scope": "LIBRARY", "original": ".text"}, "128": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "192": {"type": "MIPS_HI16", "symbol": "_sceFsIntrSigSema", "original": ".text"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "212": {"type": "MIPS_LO16", "symbol": "_sceFsIntrSigSema", "original": ".text"}, "228": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "244": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "280": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}}}}, "bf53a565bd4c639f30424ff753924c4aaacf5e56": {"374c81bc": {"type": "FUNCTION", "size": 572, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_26", "symbol": "get_iob", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_26", "symbol": "_sceFsWaitS", "scope": "LIBRARY", "original": ".text"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "180": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "216": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "220": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "228": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "256": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "260": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "280": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "284": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "344": {"type": "MIPS_26", "symbol": "SignalSema", "scope": "LIBRARY"}, "348": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "356": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "360": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "364": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "372": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "376": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "380": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "412": {"type": "MIPS_26", "symbol": "sceFsSifCallRpc", "scope": "LIBRARY", "original": ".text"}, "428": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "436": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "456": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "472": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "496": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "512": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "520": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}}}}}, "sceRead": {"139a38e95428460316ce641a50a6e45ab229adc5": {"cb405e84": {"type": "FUNCTION")PS2SDB", 8192}, + std::string_view{R"PS2SDB(, "size": 624, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.2", "2.2.4", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3"], "sdk": ["2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "get_iob", "scope": "LIBRARY", "original": ".text"}, "68": {"type": "MIPS_26", "symbol": "_sceFsWaitS", "scope": "LIBRARY", "original": ".text"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "128": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "192": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "232": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "236": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "244": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "264": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "344": {"type": "MIPS_26", "symbol": "SignalSema", "scope": "LIBRARY"}, "348": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "360": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "376": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "384": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "392": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "400": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "404": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "408": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "416": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "424": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "428": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "432": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "460": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "476": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "484": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "500": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "516": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "540": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "556": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "564": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}}}}, "46ff5d6d48639c8f3d585664a935ae6cf63fd6fb": {"4835482b": {"type": "FUNCTION", "size": 608, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0-5", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0"], "sdk": ["2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "get_iob", "scope": "LIBRARY", "original": ".text"}, "68": {"type": "MIPS_26", "symbol": "_sceFsWaitS", "scope": "LIBRARY", "original": ".text"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "128": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "192": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "232": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "236": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "244": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "264": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "344": {"type": "MIPS_26", "symbol": "SignalSema", "scope": "LIBRARY"}, "348": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "360": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "384": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "396": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "404": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "408": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "412": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "416": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "444": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "460": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "468": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "484": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "500": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "524": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "540": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "548": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}}}}, "133537e17b3433c05c061b0ac36ad41e66b7918d": {"1cceab28": {"type": "FUNCTION", "size": 608, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0", "2.2.1"], "sdk": ["2.2.0", "2.2.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "get_iob", "scope": "LIBRARY", "original": ".text"}, "68": {"type": "MIPS_26", "symbol": "_sceFsWaitS", "scope": "LIBRARY", "original": ".text"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "128": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "172": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "212": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "216": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".data)PS2SDB", 8192}, + std::string_view{R"PS2SDB("}, "224": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "244": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "328": {"type": "MIPS_26", "symbol": "SignalSema", "scope": "LIBRARY"}, "332": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "344": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "360": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "368": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "376": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "384": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "388": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "392": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "400": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "408": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "412": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "416": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "444": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "460": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "468": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "484": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "500": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "524": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "540": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "548": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}}}}, "3fbc2d18ffe7080ccc67c5db5b41d31cfb24eb41": {"c71adda5": {"type": "FUNCTION", "size": 304, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2"], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_26", "symbol": "get_iob", "scope": "LIBRARY", "original": ".text"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "164": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "180": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "192": {"type": "MIPS_HI16", "symbol": "fs_read_intr", "original": ".text"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "212": {"type": "MIPS_LO16", "symbol": "fs_read_intr", "original": ".text"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "228": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "87a80646fd845b5a86d9f36436cc7fdab609e3b7": {"93ff10b6": {"type": "FUNCTION", "size": 424, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "sdk": ["2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "get_iob", "scope": "LIBRARY", "original": ".text"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_26", "symbol": "_sceFsDbChk", "scope": "LIBRARY", "original": ".text"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "240": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "252": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "264": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "272": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "276": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "284": {"type": "MIPS_HI16", "symbol": "fs_read_intr", "original": ".text"}, "292": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "304": {"type": "MIPS_LO16", "symbol": "fs_read_intr", "original": ".text"}, "320": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "336": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "368": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}}}}, "1ef3fc021b12d52b44f0a9ea3483c8116fecdc0f": {"50bd2075": {"type": "FUNCTION", "size": 620, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "get_iob", "scope": "LIBRARY", "original": ".text"}, "68": {"type": "MIPS_26", "symbol": "_sceFsWaitS", "scope": "LIBRARY", "original": ".text"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "188": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "228": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "264": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "288": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "308": {"type)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": "MIPS_LO16", "symbol": "", "original": ".data"}, "348": {"type": "MIPS_26", "symbol": "SignalSema", "scope": "LIBRARY"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "364": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "392": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "404": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "412": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "416": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "420": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "456": {"type": "MIPS_26", "symbol": "sceFsSifCallRpc", "scope": "LIBRARY", "original": ".text"}, "472": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "480": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "496": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "512": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "536": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "552": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "560": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}}}}, "e53c7150e528a3bb11259d50b65d2a6f6835b7df": {"6e459ef0": {"type": "FUNCTION", "size": 280, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_26", "symbol": "get_iob", "scope": "LIBRARY", "original": ".text"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_HI16", "symbol": "fs_read_intr", "original": ".text"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_LO16", "symbol": "fs_read_intr", "original": ".text"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "204": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceWrite": {"86065333db2a4444794d80b4f0d42bc7c6a9a775": {"f19f8495": {"type": "FUNCTION", "size": 704, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0"], "sdk": ["2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "get_iob", "scope": "LIBRARY", "original": ".text"}, "68": {"type": "MIPS_26", "symbol": "_sceFsWaitS", "scope": "LIBRARY", "original": ".text"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "128": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "192": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "232": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "236": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "244": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "272": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "296": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "356": {"type": "MIPS_26", "symbol": "SignalSema", "scope": "LIBRARY"}, "360": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "376": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "432": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "496": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "500": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "504": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "508": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "536": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "552": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "560": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "580": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "596": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "620": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "636": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "644": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}}}}, "f1ee046624c0c6ada9e213e24ff8018ba6132431": {"1d3aeda2": {"type": "FUNCTION", "size": 680, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0", "2.2.1"], "sdk": ["2.2.0", "2.2.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "get_iob", "scope": "LIBRARY", "original": ".text"}, "68": {"type": "MIPS_26", "symbol": "_sceFsWaitS", "scope": "LIBRARY", "original": ".text"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "128": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "172": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "212": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "216": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "252": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "272": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "292": {"type":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "MIPS_LO16", "symbol": "", "original": ".data"}, "332": {"type": "MIPS_26", "symbol": "SignalSema", "scope": "LIBRARY"}, "336": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "352": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "408": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "472": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "476": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "480": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "484": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "512": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "528": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "536": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "556": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "572": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "596": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "612": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "620": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}}}}, "7deaff068c62cec285f6176a69ac031ff3348631": {"3860aa34": {"type": "FUNCTION", "size": 380, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "get_iob", "scope": "LIBRARY", "original": ".text"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "196": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "220": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "260": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "296": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "332": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "1deb40fec861f0dc6177c93fc20820f5973663a3": {"94f149e9": {"type": "FUNCTION", "size": 488, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "sdk": ["2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_26", "symbol": "get_iob", "scope": "LIBRARY", "original": ".text"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_26", "symbol": "_sceFsDbChk", "scope": "LIBRARY", "original": ".text"}, "136": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "216": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "248": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "276": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "280": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "284": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "324": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "328": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "332": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "336": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "344": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "356": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "360": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "376": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "392": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "428": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}}}}, "a42690999f90605d00d500d1108856ccff69ac18": {"febf7ef1": {"type": "FUNCTION", "size": 388, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2"], "sdk": ["2.0.0", "2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_26", "symbol": "get_iob", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "216": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "220": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "264": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "268": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "304": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "02a4368f8cc1fce85a788d61259779132b3d04c9": {"bcef2b60": {"type": "FUNCTION", "size": 376, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.1", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "get_iob", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "192": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "216": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "256": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "292": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "328": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "93d4b75e0c75a3f9ea4d0b158eea2b0d513a8e6e": {"6533cc6f": {"type": "FUNCTION", "size": 704, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "get_iob", "scope": "LIBRARY", "original": ".text"}, "68": {"type": "MIPS_26", "symbol": "_sceFsWaitS", "scope": "LIBRARY", "original": ".text"}, "76": {"type": "MIPS_HI16", "sy)PS2SDB", 8192}, + std::string_view{R"PS2SDB(mbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "188": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "228": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "348": {"type": "MIPS_26", "symbol": "SignalSema", "scope": "LIBRARY"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "424": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "488": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "492": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "496": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "504": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "512": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "536": {"type": "MIPS_26", "symbol": "sceFsSifCallRpc", "scope": "LIBRARY", "original": ".text"}, "552": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "560": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "580": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "596": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "620": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "636": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "644": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}}}}}, "sceIoctl": {"7d75f5e8c2f0cb97469be84e096a9771588144e2": {"6e935cb0": {"type": "FUNCTION", "size": 844, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "get_iob", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_26", "symbol": "_sceFsWaitS", "scope": "LIBRARY", "original": ".text"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_26", "symbol": "sceFsInit", "scope": "LIBRARY", "original": ".text"}, "124": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "196": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "296": {"type": "MIPS_26", "symbol": "SignalSema", "scope": "LIBRARY"}, "300": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "312": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "344": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "360": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "396": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "404": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "444": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "448": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "552": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "556": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "632": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "636": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "640": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "668": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "676": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "708": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "724": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "732": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "752": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "768": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "784": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "792": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}}}}, "acb177e65d14a1c3e77ce20a2a2d758ce899357f": {"83cfc7df": {"type": "FUNCTION", "size": 884, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0-5", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0"], "sdk": ["2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "get_iob", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_26", "symbol": "_sceFsWaitS", "scope": "LIBRARY", "original": ".text"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_26", "symbol": "sceFsInit", "scope": "LIBRARY", "original": ".text"}, "124": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "196": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "296": {"type": "MIPS_26", "symbol": "SignalSema", "scope": "LIBRARY"}, "300": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "312": {"type": "MIPS_HI16")PS2SDB", 8192}, + std::string_view{R"PS2SDB(, "symbol": "", "original": ".data"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "324": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "328": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "364": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "368": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "372": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "400": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "436": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "444": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "484": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "488": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "592": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "596": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "672": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "676": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "680": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "708": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "716": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "748": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "764": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "772": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "792": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "808": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "824": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "832": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}}}}, "e81b9adb3c2577e984b3e6fb7fc7d77af500349f": {"7ba2c288": {"type": "FUNCTION", "size": 152, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "get_iob", "scope": "LIBRARY", "original": ".text"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_26", "symbol": "sceSifCheckStatRpc", "scope": "LIBRARY"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "f1343cecb08d71b625a6e61eb755438b643fbf3f": {"dc5e468e": {"type": "FUNCTION", "size": 576, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.0", "2.1.1", "2.1.3", "2.1.4"], "sdk": ["2.1.0", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "get_iob", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_26", "symbol": "sceFsInit", "scope": "LIBRARY", "original": ".text"}, "108": {"type": "MIPS_26", "symbol": "_sceFsDbChk", "scope": "LIBRARY", "original": ".text"}, "152": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "180": {"type": "MIPS_26", "symbol": "sceSifCheckStatRpc", "scope": "LIBRARY"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "240": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "244": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "344": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "348": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "352": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "428": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "432": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "440": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "448": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "452": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "468": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "484": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "524": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}}}}, "9f0ae9e0de93ef891c8f5bc5bf68cf76420f7f69": {"c5c34588": {"type": "FUNCTION", "size": 680, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.5"], "sdk": ["2.0.7"], "compiler_versions": ["2.3.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "get_iob", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_26", "symbol": "sceFsInit", "scope": "LIBRARY", "original": ".text"}, "108": {"type": "MIPS_26", "symbol": "_sceFsDbChk", "scope": "LIBRARY", "original": ".text"}, "156": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "212": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "224": {"type": "MIPS_26", "symbol": "sceSifCheckStatRpc", "scope": "LIBRARY"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "248": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "296": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "344": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "348": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "352": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "452": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "456": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "460": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "528": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "536": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "540": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "548": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "556": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "560": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "576": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "592": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "628": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}}}}, "1a39f034f634f1c75dbdc0de7cf0f83545bf0335": {"0868ebb7": {"type": "FUNCTION", "size": 904, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "get)PS2SDB", 8192}, + std::string_view{R"PS2SDB(_iob", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_26", "symbol": "_sceFsWaitS", "scope": "LIBRARY", "original": ".text"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_26", "symbol": "sceFsInit", "scope": "LIBRARY", "original": ".text"}, "124": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "196": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "296": {"type": "MIPS_26", "symbol": "SignalSema", "scope": "LIBRARY"}, "300": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "312": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "324": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "328": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "364": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "368": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "372": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "400": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "432": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "440": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "448": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "484": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "492": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "496": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "588": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "596": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "604": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "608": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "664": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "684": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "692": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "696": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "724": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "732": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "768": {"type": "MIPS_26", "symbol": "sceFsSifCallRpc", "scope": "LIBRARY", "original": ".text"}, "784": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "792": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "812": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "828": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "844": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "852": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}}}}}, "sceIoctl2": {"c6e1822f3171f3813a3e2414d311dfe45b46574b": {"f6f28fc6": {"type": "FUNCTION", "size": 476, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0-5", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0"], "sdk": ["2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_26", "symbol": "get_iob", "scope": "LIBRARY", "original": ".text"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_26", "symbol": "_sceFsWaitS", "scope": "LIBRARY", "original": ".text"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_26", "symbol": "sceFsInit", "scope": "LIBRARY", "original": ".text"}, "128": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "160": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "196": {"type": "MIPS_26", "symbol": "memcpy"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "240": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "284": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "292": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "296": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "300": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "336": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "352": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "360": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "380": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "396": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "412": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "420": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}}}}, "077acb9d2fce9544d80eb82c03a9c1175320b436": {"bcccccfd": {"type": "FUNCTION", "size": 468, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.4"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_26", "symbol": "get_iob", "scope": "LIBRARY", "original": ".text"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_26", "symbol": "_sceFsWaitS", "scope": "LIBRARY", "original": ".text"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_26", "symbol": "sceFsInit", "scope": "LIBRARY", "original": ".text"}, "128": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "188": {"type": "MIPS_26", "symbol": "memcpy"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "232": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "276": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "284": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "288": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "292": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "328": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "344": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "352": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "372": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "388": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "404": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "412": {"type": "MIPS_26", "symbol": "DeleteS)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ema", "scope": "LIBRARY"}}}}, "d129a9a95242a23cb738219744edbb1a6ead97ec": {"eabb8ac4": {"type": "FUNCTION", "size": 488, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_26", "symbol": "get_iob", "scope": "LIBRARY", "original": ".text"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_26", "symbol": "_sceFsWaitS", "scope": "LIBRARY", "original": ".text"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_26", "symbol": "sceFsInit", "scope": "LIBRARY", "original": ".text"}, "128": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "160": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "196": {"type": "MIPS_26", "symbol": "memcpy"}, "208": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "248": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "292": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "300": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "304": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "312": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "348": {"type": "MIPS_26", "symbol": "sceFsSifCallRpc", "scope": "LIBRARY", "original": ".text"}, "364": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "372": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "392": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "408": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "424": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "432": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}}}}}, "_sceCallCode": {"f9c4d28e0fd3bba3ae876e2edb801da07664dd68": {"48d3a030": {"type": "FUNCTION", "size": 420, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "_sceFsWaitS", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_26", "symbol": "sceFsInit", "scope": "LIBRARY", "original": ".text"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "220": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "280": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "296": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "304": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "324": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "340": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "356": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "364": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}}}}, "e321676468fccbc2c1b792fc37c45b29a190d00d": {"92dad39d": {"type": "FUNCTION", "size": 432, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["3.0.0", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "_sceFsWaitS", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_26", "symbol": "sceFsInit", "scope": "LIBRARY", "original": ".text"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "228": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "292": {"type": "MIPS_26", "symbol": "sceFsSifCallRpc", "scope": "LIBRARY", "original": ".text"}, "308": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "316": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "336": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "352": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "368": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "376": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}}}}}, "sceRemove": {"f3e4a8c54bdf0ad3e94fc1ba116165b7f75b1fd8": {"33a9f3c5": {"type": "FUNCTION", "size": 28, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "_sceCallCode", "scope": "LIBRARY", "original": ".text"}}}}}, "sceMkdir": {"de45ef47ca29f1fdd6cb691d99d4377419a7378c": {"4385fff8": {"type": "FUNCTION", "size": 428, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"36": {"type": "MIPS)PS2SDB", 8192}, + std::string_view{R"PS2SDB(_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "_sceFsWaitS", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_26", "symbol": "sceFsInit", "scope": "LIBRARY", "original": ".text"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "228": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "288": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "304": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "312": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "332": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "348": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "364": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "372": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}}}}, "a76e1a1e7a50eb2a519a8c642e0dbcef931f7f79": {"c79fa06e": {"type": "FUNCTION", "size": 440, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "_sceFsWaitS", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_26", "symbol": "sceFsInit", "scope": "LIBRARY", "original": ".text"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "236": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "300": {"type": "MIPS_26", "symbol": "sceFsSifCallRpc", "scope": "LIBRARY", "original": ".text"}, "316": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "324": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "344": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "360": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "376": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "384": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}}}}}, "sceRmdir": {"7042450565769c05ff4cd8221d4ba0d917b33323": {"33a9f3c5": {"type": "FUNCTION", "size": 28, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "_sceCallCode", "scope": "LIBRARY", "original": ".text"}}}}}, "sceFormat": {"0f6e51cefc455abe419c7379305cabc626a7a2c6": {"25642eec": {"type": "FUNCTION", "size": 620, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_26", "symbol": "_sceFsWaitS", "scope": "LIBRARY", "original": ".text"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_26", "symbol": "sceFsInit", "scope": "LIBRARY", "original": ".text"}, "288": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "320": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "324": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "372": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "376": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "400": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "408": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "412": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "440": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "448": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "480": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "496": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "504": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "524": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "540": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "556": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "564": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}}}}, "b334fee9c5fe3e4871eed8e2c3925b2f0c09a5ae": {"18a46975": {"type": "FUNCTION", "size": 640, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_26", "symbol": "_sceFsWaitS", "scope": "LIBRARY", "original": ".text"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_26", "symbol": "sceFsInit", "scope": "LIBRARY", "original": ".text"}, "288": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "316": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "324": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "328": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "376": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "384": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "388": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "396": {"type": "MI)PS2SDB", 8192}, + std::string_view{R"PS2SDB(PS_LO16", "symbol": "", "original": ".rodata"}, "412": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "420": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "424": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "456": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "464": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "500": {"type": "MIPS_26", "symbol": "sceFsSifCallRpc", "scope": "LIBRARY", "original": ".text"}, "516": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "524": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "544": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "560": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "576": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "584": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}}}}}, "sceAddDrv": {"77c374936bcb4864450703dd32ad3b8a61c6df0c": {"9f3109fe": {"type": "FUNCTION", "size": 288, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "_sceFsWaitS", "scope": "LIBRARY", "original": ".text"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_26", "symbol": "sceFsInit", "scope": "LIBRARY", "original": ".text"}, "88": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "188": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "208": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "224": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "240": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "248": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}}}}, "2202d29d487edfe66d73942489fed8caf09387ec": {"ab662996": {"type": "FUNCTION", "size": 300, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["3.0.0", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "_sceFsWaitS", "scope": "LIBRARY", "original": ".text"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "60": {"type": "MIPS_26", "symbol": "sceFsInit", "scope": "LIBRARY", "original": ".text"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "176": {"type": "MIPS_26", "symbol": "sceFsSifCallRpc", "scope": "LIBRARY", "original": ".text"}, "192": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "200": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "220": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "236": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "252": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "260": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}}}}}, "sceDelDrv": {"29ae6c1c79031490edac54175a6ad7b8c5ecd61e": {"33a9f3c5": {"type": "FUNCTION", "size": 28, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "_sceCallCode", "scope": "LIBRARY", "original": ".text"}}}}}, "sceDopen": {"42ba6a03bb1d29e569ef51f800c35026c8bb78d2": {"02abdbbd": {"type": "FUNCTION", "size": 200, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0-5", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "_sceFsWaitS", "scope": "LIBRARY", "original": ".text"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_26", "symbol": "sceFsInit", "scope": "LIBRARY", "original": ".text"}, "56": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_26", "symbol": "new_iob", "scope": "LIBRARY", "original": ".text"}, "92": {"type": "MIPS_26", "symbol": "_sceCallCode", "scope": "LIBRARY", "original": ".text"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_26", "symbol": "SignalSema", "scope": "LIBRARY"}}}}, "b02b9d5cefa4ede9d7a66e4b464f009674c1360b": {"293f4217": {"type": "FUNCTION", "size": 156, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "new_iob", "scope": "LIBRARY", "original": ".text"}, "48": {"type": "MIPS_26", "symbol": "_sceCallCode", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_26", "symbol": "SignalSema", "scope": "LIBRARY"}}}}}, "sceDclose": {"739c3a808ce51d4c41f3b8e2f27aba3fbc584fa3": {"74d0a65f": {"type": "FUNCTION", "size": 360, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0"], "sdk": ["2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_26", "symbol": "get_iob", "scope": "LIBRARY", "original": ".text"}, "44": {"type": "MIPS_26", "symbol": "_sceFsWaitS", "scope": "LIBRARY", "original": ".text"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "104": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "140": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "216": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "232": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "240": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "264": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "280": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "296": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "304": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}}}}, "7c7fb080ea4fd5af60d0ee70500cf25bae09fccd": {"e192ec0d": {"type": "FUNCTION", "size": 392, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0"], "sdk": ["2.2.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_26", "symbol": "get_iob", "scope": "LIBRARY", "original": ".text"}, "44": {"type": "MIPS_26", "symbol": "_sceFsWaitS", "scope": "LIBRARY", "original": ".text"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "104": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "140": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "216": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "232": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "240": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "264": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "280": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "296": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "304": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "320": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "324": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "328": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "332": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "336": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "348": {"type": "MIPS_26", "symbol": "SignalSema", "scope": "LIBRARY"}}}}, "ce616982c91932e5f9fea9784f0836bc4bfa7413": {"9424fdc0": {"type": "FUNCTION", "size": 356, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_26", "symbol": "get_iob", "scope": "LIBRARY", "original": ".text"}, "44": {"type": "MIPS_26", "symbol": "_sceFsWaitS", "scope": "LIBRARY", "original": ".text"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "132": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "212": {"type": "MIPS_26", "symbol": "sceFsSifCallRpc", "scope": "LIBRARY", "original": ".text"}, "228": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "236": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "260": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "276": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "292": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "300": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}}}}, "f99c1d941d1a68a0111e49457796e32c15999c5d": {"74d0a65f": {"type": "FUNCTION", "size": 360, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.1"], "sdk": ["2.2.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_26", "symbol": "get_iob", "scope": "LIBRARY", "original": ".text"}, "44": {"type": "MIPS_26", "symbol": "_sceFsWaitS", "scope": "LIBRARY", "original": ".text"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".da)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ta"}, "68": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "104": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "140": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "216": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "232": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "240": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "264": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "280": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "296": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "304": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}}}}}, "sceDread": {"49c1c2f03e101452b43e6088cafa06f231275d01": {"b3a86255": {"type": "FUNCTION", "size": 344, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0"], "sdk": ["2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_26", "symbol": "get_iob", "scope": "LIBRARY", "original": ".text"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_26", "symbol": "_sceFsWaitS", "scope": "LIBRARY", "original": ".text"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "104": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "144": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "220": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "236": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "244": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "264": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "280": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "296": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "304": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}}}}, "93a9bcdf82d4af6d74d87c8038697105cbd1f1ff": {"b3a86255": {"type": "FUNCTION", "size": 344, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0", "2.2.1"], "sdk": ["2.2.0", "2.2.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_26", "symbol": "get_iob", "scope": "LIBRARY", "original": ".text"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_26", "symbol": "_sceFsWaitS", "scope": "LIBRARY", "original": ".text"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "104": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "144": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "220": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "236": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "244": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "264": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "280": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "296": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "304": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}}}}, "d002e0cd6f22323df299e2311df0e1e43b7c82e3": {"67ff4160": {"type": "FUNCTION", "size": 340, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_26", "symbol": "get_iob", "scope": "LIBRARY", "original": ".text"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_26", "symbol": "_sceFsWaitS", "scope": "LIBRARY", "original": ".text"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "216": {"type": "MIPS_26", "symbol": "sceFsSifCallRpc", "scope": "LIBRARY", "original": ".text"}, "232": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "240": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "260": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "276": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "292": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "300": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}}}}}, "sceGetstat": {"7d65ee9f3222aec1b8ea43535b1a2f85674d6eb6": {"9a8808e6": {"type": "FUNCTION", "size": 416, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "_sceFsWaitS", "scope": "LIBRAR)PS2SDB", 8192}, + std::string_view{R"PS2SDB(Y", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_26", "symbol": "sceFsInit", "scope": "LIBRARY", "original": ".text"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "216": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "276": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "292": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "300": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "320": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "336": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "352": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "360": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}}}}, "3cd3aba3ccedd1b302b6e6cd8f68e83f9da48ce1": {"80aaab04": {"type": "FUNCTION", "size": 436, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "_sceFsWaitS", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_26", "symbol": "sceFsInit", "scope": "LIBRARY", "original": ".text"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "232": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "296": {"type": "MIPS_26", "symbol": "sceFsSifCallRpc", "scope": "LIBRARY", "original": ".text"}, "312": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "320": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "340": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "356": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "372": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "380": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}}}}}, "sceChstat": {"33be0027c7dff61655594bc22b9df086e37cecea": {"37db6aee": {"type": "FUNCTION", "size": 572, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_26", "symbol": "_sceFsWaitS", "scope": "LIBRARY", "original": ".text"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_26", "symbol": "sceFsInit", "scope": "LIBRARY", "original": ".text"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "344": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "356": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "388": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "396": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "428": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "444": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "452": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "472": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "488": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "504": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "512": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}}}}, "de600a83e460b86fcb843108613f133647f2f50c": {"deccde32": {"type": "FUNCTION", "size": 588, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_26", "symbol": "_sceFsWaitS", "scope": "LIBRARY", "original": ".text"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_26", "symbol": "sceFsInit", "scope": "LIBRARY", "original": ".text"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "344": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "360": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "368": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "400": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "408": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "444": {"type": "MIPS_26", "symbol": "sceFsSifCallRpc", "scope": "LIBRARY", "original": ".text"}, "460": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "468": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "488": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "504": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "520": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "528": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}}}}}, "sceRename": {"63f8b0e1757ed11ba1deb2afe7acf4dc2b0b697d": {"1ae6ef3e": {"type": "FUNCTION", "size": 496, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0", "2)PS2SDB", 8192}, + std::string_view{R"PS2SDB(.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_26", "symbol": "_sceFsWaitS", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_26", "symbol": "sceFsInit", "scope": "LIBRARY", "original": ".text"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "284": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "292": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "320": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "328": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "360": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "376": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "384": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "404": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "420": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "436": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "444": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}}}}, "d211158e5355641baa6e54478cabc1bed05da419": {"52ce397c": {"type": "FUNCTION", "size": 520, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_26", "symbol": "_sceFsWaitS", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_26", "symbol": "sceFsInit", "scope": "LIBRARY", "original": ".text"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "300": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "308": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "312": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "340": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "348": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "384": {"type": "MIPS_26", "symbol": "sceFsSifCallRpc", "scope": "LIBRARY", "original": ".text"}, "400": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "408": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "428": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "444": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "460": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "468": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}}}}}, "sceChdir": {"613eaad85fd7f2de5ad868f25c40eaa7aea96395": {"33a9f3c5": {"type": "FUNCTION", "size": 28, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "_sceCallCode", "scope": "LIBRARY", "original": ".text"}}}}}, "sceSync": {"7814fd757a2ed8420caff6360686911e791b3014": {"0853390f": {"type": "FUNCTION", "size": 408, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_26", "symbol": "_sceFsWaitS", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_26", "symbol": "sceFsInit", "scope": "LIBRARY", "original": ".text"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "212": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "272": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "288": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "296": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "316": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "332": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "348": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "356": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}}}}, "2b8f9c5b93f826236e9ecb75ccc683d402eb6e63": {"86f72524": {"type": "FUNCTION", "size": 428, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_26", "symbol": "_sceFsWaitS", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_26", "symbol": "sceFsInit", "scope": "LIBRARY", "original": ".text"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".)PS2SDB", 8192}, + std::string_view{R"PS2SDB(rodata"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "228": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "292": {"type": "MIPS_26", "symbol": "sceFsSifCallRpc", "scope": "LIBRARY", "original": ".text"}, "308": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "316": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "336": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "352": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "368": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "376": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}}}}}, "sceMount": {"7bae7b63f6cc47473123f420ede646d8ff20e020": {"ff519e87": {"type": "FUNCTION", "size": 620, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_26", "symbol": "_sceFsWaitS", "scope": "LIBRARY", "original": ".text"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_26", "symbol": "sceFsInit", "scope": "LIBRARY", "original": ".text"}, "280": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "312": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "316": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "364": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "368": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "392": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "400": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "404": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "436": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "444": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "476": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "492": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "500": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "520": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "536": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "552": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "560": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}}}}, "453fa1bf6aa061cf3c244a4e8217aea2dc5454d6": {"53eca653": {"type": "FUNCTION", "size": 640, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_26", "symbol": "_sceFsWaitS", "scope": "LIBRARY", "original": ".text"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_26", "symbol": "sceFsInit", "scope": "LIBRARY", "original": ".text"}, "280": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "308": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "316": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "320": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "368": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "376": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "380": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "388": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "412": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "420": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "452": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "460": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "496": {"type": "MIPS_26", "symbol": "sceFsSifCallRpc", "scope": "LIBRARY", "original": ".text"}, "512": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "520": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "540": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "556": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "572": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "580": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}}}}}, "sceUmount": {"28c5bdcd2537de61539f812a02da91b579bb01ed": {"33a9f3c5": {"type": "FUNCTION", "size": 28, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "_sceCallCode", "scope": "LIBRARY", "original": ".text"}}}}}, "sceLseek64": {"ce7185ddf6e31462c9ab3db24f34593e38b9cdd7": {"72c3a333": {"type": "FUNCTION", "size": 568, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0"], "sdk": ["2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_26", "symbol": "get_iob", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_26", "symbol": "_sceFsWaitS", "scope": "LIBRARY", "original": ".text"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "140": {"type": ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(MIPS_LO16", "symbol": "", "original": ".bss"}, "184": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "228": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "256": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "264": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "288": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "348": {"type": "MIPS_26", "symbol": "SignalSema", "scope": "LIBRARY"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "360": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "364": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "368": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "372": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "376": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "380": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "408": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "424": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "432": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "452": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "468": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "492": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "508": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "516": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}}}}, "fa005eecbb8fcde1eaee9ee4344b544278f0685d": {"77d7a4b0": {"type": "FUNCTION", "size": 544, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0", "2.2.1"], "sdk": ["2.2.0", "2.2.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_26", "symbol": "get_iob", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_26", "symbol": "_sceFsWaitS", "scope": "LIBRARY", "original": ".text"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "120": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "164": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "208": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "216": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "244": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "264": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "324": {"type": "MIPS_26", "symbol": "SignalSema", "scope": "LIBRARY"}, "328": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "336": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "340": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "344": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "348": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "356": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "384": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "400": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "408": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "428": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "444": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "468": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "484": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "492": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}}}}, "c553523d21fd0e25190df78ca7b63cae3570efd9": {"374c81bc": {"type": "FUNCTION", "size": 572, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_26", "symbol": "get_iob", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_26", "symbol": "_sceFsWaitS", "scope": "LIBRARY", "original": ".text"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "180": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "216": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "220": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "228": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "256": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "260": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "280": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "284": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "344": {"type": "MIPS_26", "symbol": "SignalSema", "scope": "LIBRARY"}, "348": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "356": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "360": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "364": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "372": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "376": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "380": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "412": {"type": "MIPS_26", "symbol": "sceFsSifCallRpc", "scope": "LIBRARY", "original": ".text"}, "428": {")PS2SDB", 8192}, + std::string_view{R"PS2SDB(type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "436": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "456": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "472": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "496": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "512": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "520": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}}}}}, "sceDevctl": {"7f76ae7a9557d79ab1b4678500a801923424972d": {"a62c6ea1": {"type": "FUNCTION", "size": 568, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0-5", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0"], "sdk": ["2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "_sceFsWaitS", "scope": "LIBRARY", "original": ".text"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_26", "symbol": "sceFsInit", "scope": "LIBRARY", "original": ".text"}, "212": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "244": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "248": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "300": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "304": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "328": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "332": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "344": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "384": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "392": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "424": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "440": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "448": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "468": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "484": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "500": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "508": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}}}}, "708a11121749ff26658d0b2d40cc66434c643592": {"2590b5ce": {"type": "FUNCTION", "size": 560, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.4"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "_sceFsWaitS", "scope": "LIBRARY", "original": ".text"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_26", "symbol": "sceFsInit", "scope": "LIBRARY", "original": ".text"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "240": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "292": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "296": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "324": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "332": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "336": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "376": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "384": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "416": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "432": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "440": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "460": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "476": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "492": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "500": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}}}}, "9f6b308edc9cc99eda6d55295cc6dcc9261db2c5": {"3d19ce27": {"type": "FUNCTION", "size": 680, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "_sceFsWaitS", "scope": "LIBRARY", "original": ".text"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_26", "symbol": "sceFsInit", "scope": "LIBRARY", "original": ".text"}, "232": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "256": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "284": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "292": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "296": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "344": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "352": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "356": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "364": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "388": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "456": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "468": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "476": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "484": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "488": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "492": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "500": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "536": {"type": "MIPS_26", "symbol": "sceFsSifCallRpc", "scope": "LIBRARY", "original": ".text"}, "552": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "560": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "580": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "596": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "612": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "620": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}}}}}, "sceSymlink": {"72415c568f31aff9a6790ea0c3aa61529b966ec7": {"3b5711c7": {"type": "FUNCTION", "size": 480, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2)PS2SDB", 8192}, + std::string_view{R"PS2SDB(", "2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_26", "symbol": "_sceFsWaitS", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_26", "symbol": "sceFsInit", "scope": "LIBRARY", "original": ".text"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "284": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "312": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "344": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "360": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "368": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "388": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "404": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "420": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "428": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}}}}, "4a52cdf6b3092f9b28eea940f2825c05e0ec9f11": {"1f187c97": {"type": "FUNCTION", "size": 504, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_26", "symbol": "_sceFsWaitS", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_26", "symbol": "sceFsInit", "scope": "LIBRARY", "original": ".text"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "300": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "304": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "332": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "336": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "368": {"type": "MIPS_26", "symbol": "sceFsSifCallRpc", "scope": "LIBRARY", "original": ".text"}, "384": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "392": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "412": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "428": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "444": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "452": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}}}}}, "sceReadlink": {"b323f1eb4f5241b913722f85369dc60fe55c1c99": {"e9cba496": {"type": "FUNCTION", "size": 456, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_26", "symbol": "_sceFsWaitS", "scope": "LIBRARY", "original": ".text"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_26", "symbol": "sceFsInit", "scope": "LIBRARY", "original": ".text"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "228": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "256": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "316": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "332": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "340": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "360": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "376": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "392": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "400": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}}}}, "94a16055103ad45e1a8a349c732678b1e03ab8f7": {"9382dd1d": {"type": "FUNCTION", "size": 480, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_26", "symbol": "_sceFsWaitS", "scope": "LIBRARY", "original": ".text"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_26", "symbol": "sceFsInit", "scope": "LIBRARY", "original": ".text"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "200": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "240": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "272": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "300": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "336": {"type": "MIPS_26", "symbol": "sceFsSifCallRpc", "scope": "LIBRARY", "original": ".text"}, "352": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "360": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "380": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "396": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "412": {"type": "MIPS_26", "symbol":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "WaitSema", "scope": "LIBRARY"}, "420": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}}}}}, "sceSifInitIopHeap": {"a15995c3a07c6c52b983c28bfc4d3e7ee1f054ef": {"b402d77a": {"type": "FUNCTION", "size": 136, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.6.1", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_26", "symbol": "sceSifBindRpc", "scope": "LIBRARY"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "10cd2602f18b57526332b0bd1cdbc1003d1bf107": {"1c20f31f": {"type": "FUNCTION", "size": 144, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "sceSifBindRpc", "scope": "LIBRARY"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceSifAllocIopHeap": {"855359b390fa6655457f1fb5b8c64b3be89a29f2": {"49818efa": {"type": "FUNCTION", "size": 112, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceSifAllocSysMemory": {"140f1b18e5e9c3d6444b11a9261e355dbb8c967c": {"ef780d73": {"type": "FUNCTION", "size": 128, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceSifFreeSysMemory": {"24e378871789e2dbd2676fb5a75d5570ca2bd3ff": {"607228e9": {"type": "FUNCTION", "size": 120, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceSifFreeIopHeap": {"7ba17f652620d1a8770717ffc05543c774ba24f8": {"9d76f364": {"type": "FUNCTION", "size": 28, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceSifFreeSysMemory", "scope": "LIBRARY", "original": ".text"}}}}, "24e378871789e2dbd2676fb5a75d5570ca2bd3ff": {"607228e9": {"type": "FUNCTION", "size": 120, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4"], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "origi)PS2SDB", 8192}, + std::string_view{R"PS2SDB(nal": ".bss"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceSifLoadIopHeap": {"65d723d9237c44b92a8ab73bce7a0710f6a9756b": {"345bf7c5": {"type": "FUNCTION", "size": 240, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "204": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "47e0b128c1f078224516f5f177a411bbddc3e216": {"3a6ab7db": {"type": "FUNCTION", "size": 224, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceSifQueryMemSize": {"bb648774b6ddaedeae8f013d2b0b30a1d9223b89": {"7cd49751": {"type": "FUNCTION", "size": 112, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceSifQueryMaxFreeMemSize": {"074885dccabab7207732714235939c616a1af8f6": {"7cd49751": {"type": "FUNCTION", "size": 112, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceSifQueryTotalFreeMemSize": {"62aef5e04d1dfcf1810323439fc93e915f3fe3aa": {"7cd49751": {"type": "FUNCTION", "size": 112, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceSifQueryBlockTopAddress": {"d5c0a2859bbdd0aa30201c72fd7eff1cba33baed": {"607228e9": {"type": "FUNCTION", "size": 124, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceSifQueryBlockSize": {"72f60df1136e80b9f3623bb77ee8ae790eef659f": {"607228e9": {"type": "FUNCTION", "size": 124, "library": "libkernl", "scope": "GLOBAL", "i)PS2SDB", 8192}, + std::string_view{R"PS2SDB(s_interface": true, "versions": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "_lf_bind": {"2426aece103d8d125220d478f93a733b91934e84": {"d100ccbf": {"type": "FUNCTION", "size": 256, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_26", "symbol": "sceSifBindRpc", "scope": "LIBRARY"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "5d83943ae3ea52e682a318c38bac6be642583416": {"8005e2ca": {"type": "FUNCTION", "size": 164, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_26", "symbol": "sceSifBindRpc", "scope": "LIBRARY"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "36683df3b474361c83be00b2bf02b3e92a338d3b": {"8005e2ca": {"type": "FUNCTION", "size": 156, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_26", "symbol": "sceSifBindRpc", "scope": "LIBRARY"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "_lf_version": {"db4e90d7867018764d3d227af738c9ad812e582d": {"690460a8": {"type": "FUNCTION", "size": 140, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "__ps2_klibinfo__"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": "__ps2_klibinfo__"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_26", "symbol": "memcmp"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_26", "symbol": "memcmp"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_26", "symbol": "memcmp"}}}}, "244d1a1aa4c1977f545b906fe24133ce04c38ad4": {"aaec6d69": {"type": "FUNCTION", "size": 100, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "sdk": ["2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": "__ps2_klibinfo__"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": "__ps2_klibinfo__"}, "40": {"type": "MIPS_26", "symbol": "memcmp"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_26", "symbol": "memcmp"}}}}, "0a5e1d71e9d612e7f777b529b5e9c448e269e17b": {"bb28951d": {"type": "FUNCTION", "size": 44, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.0.0", "2.0.2"], "sdk": ["2.0.0", "2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "__ps2_klibinfo__"}, "8": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": "__ps2_klibinfo__"}, "24": {"type": "MIPS_26", "symbol": "memcmp"}}}}}, "sceSifLoadFileReset": {"3bdb8ef212924fd9ac1a59387d41d1d9ae060e99": {"0f037180": {"type": "FUNCTION", "size": 56, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "2)PS2SDB", 8192}, + std::string_view{R"PS2SDB(4": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_26", "symbol": "memset"}}}}, "4fbf6c92aa9ae0238022b1fe26ffb35e12dba792": {"bae1b0f3": {"type": "FUNCTION", "size": 20, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "_sceSifLoadModuleBuffer": {"c75a5bfa2ea4526a0837c94373ab6a8369338a79": {"43887dd8": {"type": "FUNCTION", "size": 520, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "_lf_bind", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_26", "symbol": "_lf_version", "scope": "LIBRARY", "original": ".text"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "244": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "360": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "384": {"type": "MIPS_26", "symbol": "memcpy"}, "404": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "408": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "412": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "444": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "472": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "7c13ef3007aa0059cad0dcb78409563fc2dc680f": {"43887dd8": {"type": "FUNCTION", "size": 520, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.2.0"], "sdk": ["2.2.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "_lf_bind", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_26", "symbol": "_lf_version", "scope": "LIBRARY", "original": ".text"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "244": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "360": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "384": {"type": "MIPS_26", "symbol": "memcpy"}, "404": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "408": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "412": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "444": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "472": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceSifStopModule": {"d25eaaf3121292f727f0ecf24a3acf0299361135": {"43887dd8": {"type": "FUNCTION", "size": 520, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "_lf_bind", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_26", "symbol": "_lf_version", "scope": "LIBRARY", "original": ".text"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "244": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "360": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "384": {"type": "MIPS_26", "symbol": "memcpy"}, "404": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "408": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "412": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "444": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "472": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceSifUnloadModule": {"7b3482c642e61056c70e5b93c104ff0eb2821cd2": {"24de9253": {"type": "FUNCTION", "size": 144, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "_lf_bind", "scope": "LIBRARY", "original": ".text"}, "32": {"type": "MIPS_26", "symbol": "_lf_version", "scope": "LIBRARY", "original": ".text"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceSifSearchModuleByName": {"7aff60ca9a0d83301ee9e584ebf9f8d37f600c08": {"429dea8f": {"type": "FUNCTION", "size": 160, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "_lf_bind", "scope": "LIBRARY", "original": ".text"}, "28": {"type": "MIPS_26", "symbol": "_lf_version", "scope": "LIBRARY", "original": ".text"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_26", "symbol": "strncpy"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}}}}}, "sceSifSearchModuleByAddress": {"962f229b3550edd4eed6d3ba11ffeab55d0dd6ab": {"24de9253": {"type": "FUNCTION", "size": 144, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.3.0", "2.3.2", "2.)PS2SDB", 8192}, + std::string_view{R"PS2SDB(3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "_lf_bind", "scope": "LIBRARY", "original": ".text"}, "32": {"type": "MIPS_26", "symbol": "_lf_version", "scope": "LIBRARY", "original": ".text"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceSifLoadModuleBuffer": {"17046b8835f55db47825df4b9ca7850182e23ae6": {"423bfa0c": {"type": "FUNCTION", "size": 28, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "_sceSifLoadModuleBuffer", "scope": "LIBRARY", "original": ".text"}}}}, "e079a2dbcef20f2bf676d0a5f38ba1dc49f7f724": {"1aeda9e5": {"type": "FUNCTION", "size": 492, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "sdk": ["2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "_lf_bind", "scope": "LIBRARY", "original": ".text"}, "56": {"type": "MIPS_26", "symbol": "_lf_version", "scope": "LIBRARY", "original": ".text"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "376": {"type": "MIPS_26", "symbol": "memcpy"}, "396": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "400": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "404": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "432": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "444": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceSifLoadStartModuleBuffer": {"7ba17f652620d1a8770717ffc05543c774ba24f8": {"423bfa0c": {"type": "FUNCTION", "size": 28, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "_sceSifLoadModuleBuffer", "scope": "LIBRARY", "original": ".text"}}}}}, "_sceSifLoadModule": {"94e15346f1af7faa9f4102107444705e629c5689": {"f9696511": {"type": "FUNCTION", "size": 548, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "_lf_bind", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_26", "symbol": "_lf_version", "scope": "LIBRARY", "original": ".text"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_26", "symbol": "strncpy"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "264": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "268": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "396": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "408": {"type": "MIPS_26", "symbol": "memcpy"}, "412": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "428": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "436": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "440": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "444": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "476": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "504": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "34194e63e607b54bbd207c605957921f67017f24": {"ad8cb375": {"type": "FUNCTION", "size": 476, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.5.1", "1.5.3", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "_lf_bind", "scope": "LIBRARY", "original": ".text"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_26", "symbol": "strncpy"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "228": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "348": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "360": {"type": "MIPS_26", "symbol": "memcpy"}, "364": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "380": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "388": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "392": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "396": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "424": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "436": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "3ec1d370c6db88f0b8d7680e67534c44a7faef80": {"32b621ff": {"type": "FUNCTION", "size": 512, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "sdk": ["2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "_lf_bind", "scope": "LIBRARY", "original": ".text"}, "52": {"type": "MIPS_26", "symbol": "_lf_version", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_26", "symbol": "strncpy"}, "148": {"type": )PS2SDB", 8192}, + std::string_view{R"PS2SDB("MIPS_HI16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "252": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "256": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "384": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "396": {"type": "MIPS_26", "symbol": "memcpy"}, "400": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "416": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "424": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "428": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "432": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "460": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "472": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "60c0d53f26bcc4f9654289d4def3c94a93f7714b": {"300f48dc": {"type": "FUNCTION", "size": 492, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "_lf_bind", "scope": "LIBRARY", "original": ".text"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_26", "symbol": "strncpy"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "232": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "364": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "376": {"type": "MIPS_26", "symbol": "memcpy"}, "380": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "396": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "404": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "408": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "412": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "440": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "452": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "88ff4f28bf6b8a669aa8833ab7f9c6f318f3cc51": {"e8ac0cd6": {"type": "FUNCTION", "size": 224, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0"], "compiler_versions": ["2.3.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "_lf_bind", "scope": "LIBRARY", "original": ".text"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "strncpy"}, "104": {"type": "MIPS_26", "symbol": "strncpy"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceSifLoadModule": {"8166143678ce2489fcc1d9045139a45cecdb56da": {"dd5f7f12": {"type": "FUNCTION", "size": 32, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "_sceSifLoadModule", "scope": "LIBRARY", "original": ".text"}}}}, "a0d6c7e083285f643ea590185282b940843f0637": {"dd03de81": {"type": "FUNCTION", "size": 28, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "_sceSifLoadModule", "scope": "LIBRARY", "original": ".text"}}}}}, "sceSifLoadStartModule": {"e42893914e3fe33789b75ad07b93d1cefcb84f0a": {"dd03de81": {"type": "FUNCTION", "size": 28, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "_sceSifLoadModule", "scope": "LIBRARY", "original": ".text"}}}}}, "_sceSifLoadElfPart": {"389cb9c41401987bc1bfc01e1da99b93ca0c076c": {"f0bdead0": {"type": "FUNCTION", "size": 260, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "_lf_bind", "scope": "LIBRARY", "original": ".text"}, "56": {"type": "MIPS_26", "symbol": "_lf_version", "scope": "LIBRARY", "original": ".text"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_26", "symbol": "strncpy"}, "120": {"type": "MIPS_26", "symbol": "strncpy"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}}}}, "56c511c723581fde7ddc1212c95e193ce0af79f1": {"ad55b000": {"type": "FUNCTION", "size": 240, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "_lf_bind", "scope": "LIBRARY", "original": ".text"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "strncpy"}, "100": {"type": "MIPS_26", "symbol": "strncpy"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}}}}}, "sceSifLoadElfPart": {"e29f42449c276c58a8df0991fc9c82ff09bc27c8": {"4a04cda0": {"type": "FUNCTION", "size": 28, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1",)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "_sceSifLoadElfPart", "scope": "LIBRARY", "original": ".text"}}}}}, "sceSifLoadElf": {"3f54f74d35af8d283604adee724f13d9fe2989fe": {"50c4b94c": {"type": "FUNCTION", "size": 40, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "20": {"type": "MIPS_26", "symbol": "_sceSifLoadElfPart", "scope": "LIBRARY", "original": ".text"}}}}}, "sceSifGetIopAddr": {"a1cc3b2776e30604d5676d93347e38a79c5898c5": {"cc781f57": {"type": "FUNCTION", "size": 236, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "_lf_bind", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceSifSetIopAddr": {"61165350e86bba0a2d17eff2ae5d89f9bbb0926d": {"269f203d": {"type": "FUNCTION", "size": 220, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "_lf_bind", "scope": "LIBRARY", "original": ".text"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}}}}, "9f8696f0c8b29b32e2685add97224bc790f71c72": {"e7f53fe8": {"type": "FUNCTION", "size": 224, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "_lf_bind", "scope": "LIBRARY", "original": ".text"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}}}}}, "sceSifResetIop": {"1e6da24ddedada4c8f4e8d946424a8651e1d438a": {"f087ff29": {"type": "FUNCTION", "size": 316, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.3.0", "2.3.0-5", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1"], "sdk": ["2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "sceSifStopDma", "scope": "LIBRARY"}, "32": {"type": "MIPS_26", "symbol": "sceSifGetReg", "scope": "LIBRARY"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "196": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "208": {"type": "MIPS_26", "symbol": "sceSifSetReg", "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "sceSifSetDma", "scope": "LIBRARY"}, "236": {"type": "MIPS_26", "symbol": "sceSifSetReg", "scope": "LIBRARY"}, "248": {"type": "MIPS_26", "symbol": "sceSifSetReg", "scope": "LIBRARY"}, "264": {"type": "MIPS_26", "symbol": "sceSifSetReg", "scope": "LIBRARY"}, "276": {"type": "MIPS_26", "symbol": "sceSifSetReg", "scope": "LIBRARY"}}}}, "33bac3151c16b048e4a4e82beb83e796fe5b4dc1": {"310c0c8e": {"type": "FUNCTION", "size": 340, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.0"], "sdk": ["2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "sceSifExecNotifyHandler", "scope": "LIBRARY"}, "40": {"type": "MIPS_26", "symbol": "sceSifExecNotifyHandler", "scope": "LIBRARY"}, "48": {"type": "MIPS_26", "symbol": "sceSifStopDma", "scope": "LIBRARY"}, "60": {"type": "MIPS_26", "symbol": "sceSifGetReg")PS2SDB", 8192}, + std::string_view{R"PS2SDB(, "scope": "LIBRARY"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "220": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "232": {"type": "MIPS_26", "symbol": "sceSifSetReg", "scope": "LIBRARY"}, "244": {"type": "MIPS_26", "symbol": "sceSifSetDma", "scope": "LIBRARY"}, "260": {"type": "MIPS_26", "symbol": "sceSifSetReg", "scope": "LIBRARY"}, "272": {"type": "MIPS_26", "symbol": "sceSifSetReg", "scope": "LIBRARY"}, "288": {"type": "MIPS_26", "symbol": "sceSifSetReg", "scope": "LIBRARY"}, "300": {"type": "MIPS_26", "symbol": "sceSifSetReg", "scope": "LIBRARY"}}}}, "13ebc3d13d48d69bfe0a84735c4d2c844438d9b6": {"9f996e1e": {"type": "FUNCTION", "size": 304, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4"], "sdk": ["2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "sceSifStopDma", "scope": "LIBRARY"}, "32": {"type": "MIPS_26", "symbol": "sceSifGetReg", "scope": "LIBRARY"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "196": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "208": {"type": "MIPS_26", "symbol": "sceSifSetDma", "scope": "LIBRARY"}, "224": {"type": "MIPS_26", "symbol": "sceSifSetReg", "scope": "LIBRARY"}, "236": {"type": "MIPS_26", "symbol": "sceSifSetReg", "scope": "LIBRARY"}, "252": {"type": "MIPS_26", "symbol": "sceSifSetReg", "scope": "LIBRARY"}, "264": {"type": "MIPS_26", "symbol": "sceSifSetReg", "scope": "LIBRARY"}}}}, "20b97ded59dce03567491d0b26af0f18e0b2a4aa": {"35e36b66": {"type": "FUNCTION", "size": 300, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "sceSifStopDma", "scope": "LIBRARY"}, "32": {"type": "MIPS_26", "symbol": "sceSifGetReg", "scope": "LIBRARY"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "192": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "204": {"type": "MIPS_26", "symbol": "sceSifSetDma", "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "sceSifSetReg", "scope": "LIBRARY"}, "232": {"type": "MIPS_26", "symbol": "sceSifSetReg", "scope": "LIBRARY"}, "248": {"type": "MIPS_26", "symbol": "sceSifSetReg", "scope": "LIBRARY"}, "260": {"type": "MIPS_26", "symbol": "sceSifSetReg", "scope": "LIBRARY"}}}}, "9a7a9709a46c6b81fa5ee16600e86e410192c854": {"c55252ba": {"type": "FUNCTION", "size": 304, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "sceSifStopDma", "scope": "LIBRARY"}, "32": {"type": "MIPS_26", "symbol": "sceSifGetReg", "scope": "LIBRARY"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "196": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "208": {"type": "MIPS_26", "symbol": "sceSifSetDma", "scope": "LIBRARY"}, "224": {"type": "MIPS_26", "symbol": "sceSifSetReg", "scope": "LIBRARY"}, "236": {"type": "MIPS_26", "symbol": "sceSifSetReg", "scope": "LIBRARY"}, "252": {"type": "MIPS_26", "symbol": "sceSifSetReg", "scope": "LIBRARY"}, "264": {"type": "MIPS_26", "symbol": "sceSifSetReg", "scope": "LIBRARY"}}}}, "ee1ff398a2567fafd81f31ee3219cb0020ee8fa6": {"ff179d57": {"type": "FUNCTION", "size": 340, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["3.0.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "sceSifExecNotifyHandler", "scope": "LIBRARY"}, "40": {"type": "MIPS_26", "symbol": "sceSifExecNotifyHandler", "scope": "LIBRARY"}, "48": {"type": "MIPS_26", "symbol": "sceSifStopDma", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "sceSifGetReg", "scope": "LIBRARY"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "220": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "232": {"type": "MIPS_26", "symbol": "sceSifSetReg", "scope": "LIBRARY"}, "244": {"type": "MIPS_26", "symbol": "sceSifSetDma", "scope": "LIBRARY"}, "260": {"type": "MIPS_26", "symbol": "sceSifSetReg", "scope": "LIBRARY"}, "272": {"type": "MIPS_26", "symbol": "sceSifSetReg", "scope": "LIBRARY"}, "288": {"type": "MIPS_26", "symbol": "sceSifSetReg", "scope": "LIBRARY"}, "300": {"type": "MIPS_26", "symbol": "sceSifSetReg", "scope": "LIBRARY"}}}, "b4b4678f": {"type": "FUNCTION", "size": 340, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["3.1.0"], "sdk": ["3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "sceSifExecNotifyHandler", "scope": "LIBRARY"}, "40": {"type": "MIPS_26", "symbol": "sceSifExecNotifyHandler", "scope": "LIBRARY"}, "48": {"type": "MIPS_26", "symbol": "sceSifStopDma", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "sceSifGetReg", "scope": "LIBRARY"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "220": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache", "scope": "LIBRARY"}, "232": {"type": "MIPS_26", "symbol": "sceSifSetReg", "scope": "LIBRARY"}, "244": {"type": "MIPS_26", "symbol": "_sceSifSetDma", "scope": "LIBRARY"}, "260": {"type": "MIPS_26", "symbol": "sceSifSetReg", "scope": "LIBRARY"}, "272": {"type": "MIPS_26", "symbol": "sceSifSetReg", "scope": "LIBRARY"}, "288": {"type": "MIPS_26", "symbol": "sceSifSetReg)PS2SDB", 8192}, + std::string_view{R"PS2SDB(", "scope": "LIBRARY"}, "300": {"type": "MIPS_26", "symbol": "sceSifSetReg", "scope": "LIBRARY"}}}}}, "sceSifIsAliveIop": {"90858e26e668b48956b9c2b323fee1e75761f82b": {"ab61594a": {"type": "FUNCTION", "size": 40, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceSifGetReg", "scope": "LIBRARY"}}}}}, "sceSifSyncIop": {"3294f4ace62d2a1f61a49e6631f787b50ea7c796": {"b271b9ba": {"type": "FUNCTION", "size": 56, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0", "2.3.0-5", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1"], "sdk": ["2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceSifGetReg", "scope": "LIBRARY"}, "32": {"type": "MIPS_26", "symbol": "sceResetttyinit", "scope": "LIBRARY"}}}}, "3592b50eba3fb9687ed49051aae323374e144634": {"5d7400db": {"type": "FUNCTION", "size": 80, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceSifGetReg", "scope": "LIBRARY"}, "32": {"type": "MIPS_26", "symbol": "sceResetttyinit", "scope": "LIBRARY"}, "44": {"type": "MIPS_26", "symbol": "sceSifExecNotifyHandler", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "sceSifExecNotifyHandler", "scope": "LIBRARY"}}}}, "812eb9c5f9154b0055ab4bac3224621e510537fa": {"d5646f89": {"type": "FUNCTION", "size": 72, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4"], "sdk": ["2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceSifGetReg", "scope": "LIBRARY"}, "32": {"type": "MIPS_26", "symbol": "sceSifSetReg", "scope": "LIBRARY"}, "40": {"type": "MIPS_26", "symbol": "sceResetttyinit", "scope": "LIBRARY"}}}, "a89862c4": {"type": "FUNCTION", "size": 72, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceSifGetReg", "scope": "LIBRARY"}, "32": {"type": "MIPS_26", "symbol": "sceSifSetReg", "scope": "LIBRARY"}, "40": {"type": "MIPS_26", "symbol": "sceTtyInit", "scope": "LIBRARY"}}}}}, "sceSifRebootIop": {"bf5d948151d24286291e5161702db4d49bf65643": {"fddee473": {"type": "FUNCTION", "size": 272, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "100": {"type": "MIPS_26", "symbol": "scePrintf", "scope": "LIBRARY"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_26", "symbol": "sceSifInitRpc", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "sceSifExitRpc", "scope": "LIBRARY"}, "244": {"type": "MIPS_26", "symbol": "sceSifResetIop", "scope": "LIBRARY", "original": ".text"}}}, "bd740d0b": {"type": "FUNCTION", "size": 272, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.0-5", "2.3.4", "2.4.0"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "100": {"type": "MIPS_26", "symbol": "printf"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_26", "symbol": "sceSifInitRpc", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "sceSifExitRpc", "scope": "LIBRARY"}, "244": {"type": "MIPS_26", "symbol": "sceSifResetIop", "scope": "LIBRARY", "original": ".text"}}}}, "9ff31ad5641f76f1abccc3e1cc5813b62d901a7c": {"c353d5dd": {"type": "FUNCTION", "size": 248, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_26", "symbol": "printf"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "108": {"type": "MIPS_26", "symbol": "sceSifInitRpc", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "sceSifExitRpc", "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "sceSifResetIop", "scope": "LIBRARY", "original": ".text"}}}}, "24506c42b358da9f84466ded4fe458178660c5b9": {"5db2a62e": {"type": "FUNCTION", "size": 256, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.3", "2.1.4"], "sdk": ["2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "100": {"type": "MIPS_26", "symbol": "printf"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_26", "symbol": "sceSifInitRpc", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "sceSifExitRpc", "scope": "LIBRARY"}, "228": {"type": "MIPS_26", "symbol": "sceSifResetIop", "scope": "LIBRARY", "original": ".text"}}}}, "dd066cf7ac3df695a9595b0c79630868868a66f7": {"5db2a62e": {"type": "FUNCTION", "size": 256, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1"], "sdk": ["2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "100": {"type": "MIPS_26", "symbol": "printf"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_26", "symbol": "sceSifInitRpc", "scope": "LIBR)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ARY"}, "124": {"type": "MIPS_26", "symbol": "sceSifExitRpc", "scope": "LIBRARY"}, "228": {"type": "MIPS_26", "symbol": "sceSifResetIop", "scope": "LIBRARY", "original": ".text"}}}}, "5394ae326363de7c874d9aab65a654d5bcc4e021": {"c353d5dd": {"type": "FUNCTION", "size": 248, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.1", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_26", "symbol": "printf"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "108": {"type": "MIPS_26", "symbol": "sceSifInitRpc", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "sceSifExitRpc", "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "sceSifResetIop", "scope": "LIBRARY", "original": ".text"}}}}}, "SetTLBHandler": {"0bd7220911d4f0146903dad8877a69d35d6c09e7": {"c2c251ea": {"type": "FUNCTION", "size": 96, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.3.0", "2.3.0-5", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.3.0", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_HI16", "symbol": "_kTLBException"}, "20": {"type": "MIPS_LO16", "symbol": "_kTLBException"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "SetVTLBRefillHandler", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "SetVTLBRefillHandler", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "SetVTLBRefillHandler", "scope": "LIBRARY"}}}}}, "SetDebugHandler": {"5489caa7b1c700198b7ecaa15e7286d22081a15b": {"2ab68d99": {"type": "FUNCTION", "size": 132, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0", "2.3.0-5", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.3.0", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"40": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": "_kDebugException"}, "80": {"type": "MIPS_26", "symbol": "SetVTLBRefillHandler", "scope": "LIBRARY"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": "_kDebugException"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": "_kDebugException"}, "104": {"type": "MIPS_26", "symbol": "SetVCommonHandler", "scope": "LIBRARY"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": "_kDebugException"}}}}}, "Copy": {"2641980b293b45b1d8ba8e6e18eea7f4acba5228": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "kCopy": {"417d769e1ff2b415ec14548d2aeb1e6fe40e685f": {"00000000": {"type": "FUNCTION", "size": 56, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "0c0e0b697171cf1f8db6c285641d95381c8051f9": {"00000000": {"type": "FUNCTION", "size": 48, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "GetEntryAddress": {"4328807a69c047c9c44a0c0f235233072d832cd7": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "setup": {"69c56eae5e01cc87e2221804a4974cf24c00fc9e": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "InitTLBFunctions": {"2570ece463697f085e8f655b0eab588f2ad48ca8": {"95325f89": {"type": "FUNCTION", "size": 196, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "setup", "original": ".text"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_26", "symbol": "Copy", "original": ".text"}, "72": {"type": "MIPS_26", "symbol": "FlushCache", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "FlushCache", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "setup", "original": ".text"}, "104": {"type": "MIPS_26", "symbol": "setup", "original": ".text"}, "120": {"type": "MIPS_26", "symbol": "GetEntryAddress", "original": ".text"}, "136": {"type": "MIPS_26", "symbol": "setup", "original": ".text"}, "156": {"type": "MIPS_26", "symbol": "GetEntryAddress", "original": ".text)PS2SDB", 8192}, + std::string_view{R"PS2SDB("}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "2acf4083f2c6bc1f85fd1458eb6840324b722869": {"b7e2befb": {"type": "FUNCTION", "size": 180, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.0", "2.4.1", "2.4.2", "2.4.3"], "sdk": ["2.4.0", "2.4.1", "2.4.2", "2.4.3"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "setup", "original": ".text"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_26", "symbol": "Copy", "original": ".text"}, "72": {"type": "MIPS_26", "symbol": "FlushCache", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "FlushCache", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "setup", "original": ".text"}, "104": {"type": "MIPS_26", "symbol": "setup", "original": ".text"}, "120": {"type": "MIPS_26", "symbol": "GetEntryAddress", "original": ".text"}, "136": {"type": "MIPS_26", "symbol": "setup", "original": ".text"}}}}, "38c751fae22b1b1df1d58d9ddafaff3143eb61af": {"b7e2befb": {"type": "FUNCTION", "size": 180, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0-5", "2.3.0"], "sdk": ["2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "setup", "original": ".text"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_26", "symbol": "Copy", "original": ".text"}, "72": {"type": "MIPS_26", "symbol": "FlushCache", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "FlushCache", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "setup", "original": ".text"}, "104": {"type": "MIPS_26", "symbol": "setup", "original": ".text"}, "120": {"type": "MIPS_26", "symbol": "GetEntryAddress", "original": ".text"}, "136": {"type": "MIPS_26", "symbol": "setup", "original": ".text"}}}}}, "PutTLBEntry": {"790c798c0dbf63183ce5df5a6d5267a634f6d3e6": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.3.0", "2.3.0-5", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.3.0", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "iPutTLBEntry": {"8ee2efac49ce9e90fa6ea18e178d24dfa2df8450": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.3.0", "2.3.0-5", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.3.0", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "_SetTLBEntry": {"65ed5b93600e7a9f26585e8b353fa56e234131a5": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "SetTLBEntry": {"b435ff4ccf7bb1366112cccb67c7d099053820c7": {"454a4ace": {"type": "FUNCTION", "size": 48, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "_SetTLBEntry", "scope": "LIBRARY", "original": ".text"}}}}, "65ed5b93600e7a9f26585e8b353fa56e234131a5": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.3.0-5", "2.3.0"], "sdk": ["2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "iSetTLBEntry": {"223b7de64671ae6bcd4545a40e87c917f0c5e112": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.3.0", "2.3.0-5", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.3.0", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "GetTLBEntry": {"d08e263af6e640d78185cf3c6b3bbc407fd4ce35": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.3.0", "2.3.0-5", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.3.0", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "iGetTLBEntry": {"b51deb2cbfcf3338557fab6e25e142ee49bf4e52": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.3.0", "2.3.0-5", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.3.0", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "ProbeTLBEntry": {"0f6f5681cd2f95f469b2ba676fffac6ac2dc9639": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.3.0", "2.3.0-5", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.3.0", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "iProbeTLBEntry": {"925991225c1c6e67d4abe09808a1bf62e6a2387a": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.3.0", "2.3.0-5", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0)PS2SDB", 8192}, + std::string_view{R"PS2SDB(", "3.0.0", "3.1.0"], "sdk": ["2.3.0", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "ExpandScratchPad": {"62b2024c711b77fab4c2261dd07120974d493273": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0", "2.3.0-5", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.3.0", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "InitTLB": {"459b65d976116059c068fe09c88f0d6a9b71d7bc": {"cd5b64b0": {"type": "FUNCTION", "size": 64, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "GetMemorySize", "scope": "LIBRARY"}, "28": {"type": "MIPS_26", "symbol": "InitTLB32MB", "scope": "LIBRARY", "original": ".text"}, "44": {"type": "MIPS_26", "symbol": "_InitTLB", "scope": "LIBRARY"}}}}}, "InitTLB32MB": {"81508695ccf3a1a5a5d0eb589b58bf32938494b8": {"8d0cc712": {"type": "FUNCTION", "size": 500, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_26", "symbol": "kprintf", "scope": "LIBRARY"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "108": {"type": "MIPS_26", "symbol": "kprintf", "scope": "LIBRARY"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_26", "symbol": "Exit", "scope": "LIBRARY"}, "160": {"type": "MIPS_26", "symbol": "_SetTLBEntry", "scope": "LIBRARY", "original": ".text"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "208": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "212": {"type": "MIPS_26", "symbol": "kprintf", "scope": "LIBRARY"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "220": {"type": "MIPS_26", "symbol": "Exit", "scope": "LIBRARY"}, "264": {"type": "MIPS_26", "symbol": "_SetTLBEntry", "scope": "LIBRARY", "original": ".text"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "332": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "336": {"type": "MIPS_26", "symbol": "kprintf", "scope": "LIBRARY"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "344": {"type": "MIPS_26", "symbol": "Exit", "scope": "LIBRARY"}, "384": {"type": "MIPS_26", "symbol": "_SetTLBEntry", "scope": "LIBRARY", "original": ".text"}, "452": {"type": "MIPS_26", "symbol": "_SetTLBEntry", "scope": "LIBRARY", "original": ".text"}}}}}, "_kTLBException": {"4370e7cde566469c0ec2cb8077e3f4ecd30ceceb": {"e069dad7": {"type": "FUNCTION", "size": 284, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.3.0", "2.3.0-5", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.3.0", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "200": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "208": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "216": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "256": {"type": "MIPS_HI16", "symbol": "", "original": "_kTLBRefillHandler"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": "_kTLBRefillHandler"}, "264": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "_kExitTLBHandler": {"7b327e6e91ddc6fb8366741738280fb35fec5164": {"71405c0a": {"type": "FUNCTION", "size": 244, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.3.0", "2.3.0-5", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.3.0", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "_kDebugException": {"de5e408f262116b755b989a8e026b94a9ff6bd6e": {"ca71722d": {"type": "FUNCTION", "size": 284, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "version)PS2SDB", 8192}, + std::string_view{R"PS2SDB(s": ["2.3.0", "2.3.0-5", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.3.0", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "212": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "256": {"type": "MIPS_HI16", "symbol": "", "original": "_kDebugHandler"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": "_kDebugHandler"}, "268": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "DIntr": {"d1995a59d6f99d37a22eea96f5651af6bfa0fba5": {"00000000": {"type": "FUNCTION", "size": 72, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "80f1b150e1adf2ed7eae8d6ff3133db2f90fdd9a": {"00000000": {"type": "FUNCTION", "size": 84, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0"], "sdk": ["2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "d1bfd6de1bb2db94bccb79aa5eecc9d90460e66b": {"00000000": {"type": "FUNCTION", "size": 80, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "EIntr": {"34ff265caf27067a176fca5b0e9ba9018692d0aa": {"00000000": {"type": "FUNCTION", "size": 24, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "supplement_crt0": {"45f42b3e740578bffbc781f96e92959cc5b8918e": {"ac16eb48": {"type": "FUNCTION", "size": 72, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.3.0", "2.3.0-5", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0"], "sdk": ["2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "5bfe37752de07f87d88a7c437ca85a4947915cdd": {"929e026e": {"type": "FUNCTION", "size": 96, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["3.0.0", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "4": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "52": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "kFindAddress": {"26a2b72a186c3474375a840d3a2a7f5c16c9e628": {"00000000": {"type": "FUNCTION", "size": 64, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "8ca94cb21e4e2f45afd4367c083cbd29ba34a35d": {"00000000": {"type": "FUNCTION", "size": 52, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.4.0", "2.4.1", "2.4.2", "2.4.3"], "sdk": ["2.4.0", "2.4.1", "2.4.2", "2.4.3"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "FindAddress": {"2128efeacbdbf591b7d338da96d05884fbcb9815": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "GetSystemCallEntry": {"1611a7de0f7373d45f0050caf902c7a884101acc": {"5e4c2fd8": {"type": "FUNCTION", "size": 52, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_26", "symbol": "Copy", "original": ".text"}}}}}, "InitSystemCallTableAddress": {"65617944971c8e522ac2ff1e785b86eead94e4fc": {"1c36d111": {"type": "FUNCTION", "size": 252, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1",)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "setup", "original": ".text"}, "68": {"type": "MIPS_26", "symbol": "setup", "original": ".text"}, "84": {"type": "MIPS_26", "symbol": "FindAddress", "scope": "LIBRARY", "original": ".text"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "104": {"type": "MIPS_26", "symbol": "FindAddress", "scope": "LIBRARY", "original": ".text"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "FindAddress", "scope": "LIBRARY", "original": ".text"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "176": {"type": "MIPS_26", "symbol": "FindAddress", "scope": "LIBRARY", "original": ".text"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "_InitSys": {"2df691dfa6e2c51e5966ff08884f554b45a4486d": {"20862080": {"type": "FUNCTION", "size": 60, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1"], "sdk": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "supplement_crt0", "scope": "LIBRARY", "original": ".text"}, "16": {"type": "MIPS_26", "symbol": "InitSystemCallTableAddress", "scope": "LIBRARY", "original": ".text"}, "24": {"type": "MIPS_26", "symbol": "InitAlarm", "scope": "LIBRARY"}, "32": {"type": "MIPS_26", "symbol": "InitThread", "scope": "LIBRARY"}, "40": {"type": "MIPS_26", "symbol": "InitExecPS2", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "InitTLBFunctions", "scope": "LIBRARY"}}}, "fbab7dfc": {"type": "FUNCTION", "size": 60, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.4.0", "2.4.1", "2.4.2", "2.4.3"], "sdk": ["2.4.0", "2.4.1", "2.4.2", "2.4.3"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "supplement_crt0", "scope": "LIBRARY", "original": ".text"}, "16": {"type": "MIPS_26", "symbol": "GetSystemCallTableEntry", "scope": "LIBRARY", "original": ".text"}, "24": {"type": "MIPS_26", "symbol": "InitAlarm", "scope": "LIBRARY"}, "32": {"type": "MIPS_26", "symbol": "InitThread", "scope": "LIBRARY"}, "40": {"type": "MIPS_26", "symbol": "InitExecPS2", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "InitTLBFunctions", "scope": "LIBRARY"}}}}, "c69b3f916196e59ab632fab6d687eead8405ddff": {"5ed84685": {"type": "FUNCTION", "size": 84, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "supplement_crt0", "scope": "LIBRARY", "original": ".text"}, "16": {"type": "MIPS_26", "symbol": "InitSystemCallTableAddress", "scope": "LIBRARY", "original": ".text"}, "24": {"type": "MIPS_26", "symbol": "InitAlarm", "scope": "LIBRARY"}, "32": {"type": "MIPS_26", "symbol": "InitTimer", "scope": "LIBRARY"}, "40": {"type": "MIPS_26", "symbol": "StartTimerSystemTime", "scope": "LIBRARY"}, "48": {"type": "MIPS_26", "symbol": "InitThread", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "InitExecPS2", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "InitTLBFunctions", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "sceSifInitRebootNotify", "scope": "LIBRARY"}}}}, "49a024c2bc0cc90c5377c03b17c59420cff62154": {"fba039bf": {"type": "FUNCTION", "size": 36, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.3.0-5", "2.3.0", "2.3.4"], "sdk": ["2.3.0", "2.3.2", "2.3.4", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "supplement_crt0", "scope": "LIBRARY", "original": ".text"}, "16": {"type": "MIPS_26", "symbol": "InitAlarm", "scope": "LIBRARY"}, "28": {"type": "MIPS_26", "symbol": "InitThread", "scope": "LIBRARY"}}}}, "44cfc1ba7c8f678529790b74833dc58f61fe1ab0": {"cdd12dad": {"type": "FUNCTION", "size": 28, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.2.1", "2.2.2"], "sdk": ["2.2.1", "2.2.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "InitAlarm", "scope": "LIBRARY"}, "20": {"type": "MIPS_26", "symbol": "InitThread", "scope": "LIBRARY"}}}}}, "PatchIsNeeded": {"52cf444bdb14214781a250137851098be2ab534e": {"03bf3feb": {"type": "FUNCTION", "size": 104, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "GetOsdConfigParam", "scope": "LIBRARY"}, "48": {"type": "MIPS_26", "symbol": "SetOsdConfigParam", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "GetOsdConfigParam", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "SetOsdConfigParam", "scope": "LIBRARY"}}}}}, "InitExecPS2": {"2796973aaf0ac6bd4f441818fd479d6527af5b4c": {"5cccec52": {"type": "FUNCTION", "size": 172, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "PatchIsNeeded", "scope": "LIBRARY", "original": ".text"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_26", "symbol": "setup", "original": ".text"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_26", "symbol": "Copy", "original": ".text"}, "80": {"type": "MIPS_26", "symbol": "FlushCache", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "FlushCache", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "setup", "original": ".text"}, "112": {"type": "MIPS_26", "symbol": "GetEntryAddress", "original": ".text"}, "128": {"type": "MIPS_26", "symbol": "setup", "original": ".text"}}}}}, "SetArg": {"cb69d9bcbcf0542cc0a196c06ce6b86c68678596": {"4a6f7a24": {"type": "FUNCTION", "size": 280, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"])PS2SDB", 8192}, + std::string_view{R"PS2SDB(, "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_kExecArg"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "_kExecArg"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_26", "symbol": "setup", "original": ".text"}, "104": {"type": "MIPS_26", "symbol": "Copy", "original": ".text"}, "116": {"type": "MIPS_26", "symbol": "strlen"}, "136": {"type": "MIPS_26", "symbol": "Copy", "original": ".text"}, "180": {"type": "MIPS_26", "symbol": "Copy", "original": ".text"}, "192": {"type": "MIPS_26", "symbol": "strlen"}, "216": {"type": "MIPS_26", "symbol": "Copy", "original": ".text"}}}}}, "TerminateLibrary": {"a639a8a356321edbeccee089cae462e9fca431ea": {"6e21cd20": {"type": "FUNCTION", "size": 8, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_26", "symbol": "InitTLB", "scope": "LIBRARY"}}}}}, "ExecPS2": {"eeca3aad9e4d92c02b1082762ae4f141d2a120bc": {"face69b0": {"type": "FUNCTION", "size": 112, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "44": {"type": "MIPS_26", "symbol": "SetArg", "scope": "LIBRARY", "original": ".text"}, "52": {"type": "MIPS_26", "symbol": "TerminateLibrary", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": "_kExecArg"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": "_kExecArg"}, "80": {"type": "MIPS_26", "symbol": "_ExecPS2", "scope": "LIBRARY"}}}}, "5ba9cd6405085309e9ec5f20c3a15c40cf18e66f": {"fe87fcce": {"type": "FUNCTION", "size": 92, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.4.0", "2.4.1", "2.4.2", "2.4.3"], "sdk": ["2.4.0", "2.4.1", "2.4.2", "2.4.3"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "TerminateLibrary", "scope": "LIBRARY", "original": ".text"}, "56": {"type": "MIPS_26", "symbol": "_ExecPS2", "scope": "LIBRARY"}}}}, "2941b20999f5a30ea77eb78af84b6a1a5e654567": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.0-5", "2.3.4"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "LoadExecPS2": {"463d748f95eb69330b9d1c71cdd32d0e1a4f5538": {"e2549605": {"type": "FUNCTION", "size": 72, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "SetArg", "scope": "LIBRARY", "original": ".text"}, "24": {"type": "MIPS_26", "symbol": "TerminateLibrary", "scope": "LIBRARY", "original": ".text"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": "_kExecArg"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": "_kExecArg"}, "64": {"type": "MIPS_26", "symbol": "_LoadExecPS2", "scope": "LIBRARY"}}}}, "b586db586efe3f80d4decfae3fcaccd26ae189b8": {"601b24fe": {"type": "FUNCTION", "size": 72, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.0", "2.4.1", "2.4.2", "2.4.3"], "sdk": ["2.4.0", "2.4.1", "2.4.2", "2.4.3"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "TerminateLibrary", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_26", "symbol": "_LoadExecPS2", "scope": "LIBRARY"}}}}, "9dbe3e0556afc4f20b36e0a8daf7f38187049fa4": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.0-5", "2.3.4"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "Exit": {"a783a097dcfe6f63bc3367c4851277d9d2372d90": {"964d3e61": {"type": "FUNCTION", "size": 40, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "TerminateLibrary", "scope": "LIBRARY", "original": ".text"}, "32": {"type": "MIPS_26", "symbol": "_Exit", "scope": "LIBRARY"}}}}, "db06665bc03faf529267fc9071f1e35cab35e68e": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.0-5", "2.3.4"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "ExecOSD": {"b8c7cde14b60cb7b9a0012dcd410b509dd89ec19": {"de8025ff": {"type": "FUNCTION", "size": 76, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "28": {"type": "MIPS_26", "symbol": "SetArg", "scope": "LIBRARY", "original": ".text"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_26", "symbol": "TerminateLibrary", "scope": "LIBRARY", "original": ".text"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": "_kExecArg"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": "_kExecArg"}, "68": {"type": "MIPS_26", "symbol": "_ExecOSD", "scope": "LIBRARY"}}}}, "63476cf55fc33f45aba4ee663f52fa1b78786d3a": {"9b707219": {"type": "FUNCTION", "size": 56, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.4.0", "2.4.1", "2.4.2", "2.4.3"], "sdk": ["2.4.0", "2.4.1", "2.4.2", "2.4.3"], "compiler_v)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ersions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "TerminateLibrary", "scope": "LIBRARY", "original": ".text"}, "48": {"type": "MIPS_26", "symbol": "_ExecOSD", "scope": "LIBRARY"}}}}, "2451c7a1c6cdfbea41721126e6deea87c171229d": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.0-5", "2.3.4"], "sdk": ["1.4.2", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "InitAlarm": {"ada22800325ace796f5f417103ed9aa554ad577a": {"ed3c7d18": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.3.0-5", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_26", "symbol": "setup", "original": ".text"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_26", "symbol": "Copy", "original": ".text"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_26", "symbol": "Copy", "original": ".text"}, "120": {"type": "MIPS_26", "symbol": "FlushCache", "scope": "LIBRARY"}, "128": {"type": "MIPS_26", "symbol": "FlushCache", "scope": "LIBRARY"}, "140": {"type": "MIPS_26", "symbol": "setup", "original": ".text"}, "152": {"type": "MIPS_26", "symbol": "GetEntryAddress", "original": ".text"}, "168": {"type": "MIPS_26", "symbol": "setup", "original": ".text"}}}}, "59d07a8650c8a6478a0761d4d5740601df74becb": {"ed3c7d18": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.2.2", "2.2.4"], "sdk": ["2.2.2", "2.2.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_26", "symbol": "setup", "original": ".text"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_26", "symbol": "Copy", "original": ".text"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_26", "symbol": "Copy", "original": ".text"}, "120": {"type": "MIPS_26", "symbol": "FlushCache", "scope": "LIBRARY"}, "128": {"type": "MIPS_26", "symbol": "FlushCache", "scope": "LIBRARY"}, "140": {"type": "MIPS_26", "symbol": "setup", "original": ".text"}, "152": {"type": "MIPS_26", "symbol": "GetEntryAddress", "original": ".text"}, "168": {"type": "MIPS_26", "symbol": "setup", "original": ".text"}}}}, "11eb518d6af2f0273d8b01c7503d66001f0499f7": {"ed3c7d18": {"type": "FUNCTION", "size": 212, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.2.1"], "sdk": ["2.2.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_26", "symbol": "setup", "original": ".text"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_26", "symbol": "Copy", "original": ".text"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_26", "symbol": "Copy", "original": ".text"}, "120": {"type": "MIPS_26", "symbol": "FlushCache", "scope": "LIBRARY"}, "128": {"type": "MIPS_26", "symbol": "FlushCache", "scope": "LIBRARY"}, "140": {"type": "MIPS_26", "symbol": "setup", "original": ".text"}, "152": {"type": "MIPS_26", "symbol": "GetEntryAddress", "original": ".text"}, "168": {"type": "MIPS_26", "symbol": "setup", "original": ".text"}}}}}, "GetSystemCallTableEntry": {"ff7ba10bf970fe8a90018a3529ba9a5a8170c8b4": {"769fa05f": {"type": "FUNCTION", "size": 60, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.4.0", "2.4.1", "2.4.2", "2.4.3"], "sdk": ["2.4.0", "2.4.1", "2.4.2", "2.4.3"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_26", "symbol": "setup", "original": ".text"}, "32": {"type": "MIPS_HI16", "symbol": "kFindAddress", "original": ".text"}, "36": {"type": "MIPS_26", "symbol": "FindAddress", "scope": "LIBRARY", "original": ".text"}, "40": {"type": "MIPS_LO16", "symbol": "kFindAddress", "original": ".text"}}}}}, "_setup": {"2e50ba8431aaba9fd9b04b787d539f53bf894c56": {"0bfe8910": {"type": "FUNCTION", "size": 28, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.4.0", "2.4.1", "2.4.2", "2.4.3"], "sdk": ["2.4.0", "2.4.1", "2.4.2", "2.4.3"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "_alarm_rdata": {"7d37c47e07c2012f49d938a4853efbf93b29aca1": {"ac28ca16": {"type": "FUNCTION", "size": 96, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.4", "2.6.0", "2.7.0", "2.7.1"], "sdk": ["2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "isceSifSendCmd", "scope": "LIBRARY"}, "60": {"type": "MIPS_HI16", "symbol": "_alarm_rdata", "original": ".text"}, "64": {"type": "MIPS_LO16", "symbol": "_alarm_rdata", "original": ".text"}, "76": {"type": "MIPS_26", "symbol": "iSetAlarm", "scope": "LIBRARY"}}}}, "7675e65488be3fc5b48d4d13a9019ad00e76423f": {"1e9787a1": {"type": "FUNCTION", "size": 64, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "isceSifSendCmd", "scope": "LIBRARY"}}}}}, "DelayThread": {"00a31e89018185bfa2f37fdab8b3322ac6218238": {"805585df": {"type": "FUNCTION", "size": 200, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_26", "symbol": "CreateSema", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "TimerUSec2BusClock", "scope": "LIBRARY"}, "112": {"type": "MIPS_HI16", "symbol": "_DelayThreadHa)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ndler", "original": ".text"}, "120": {"type": "MIPS_LO16", "symbol": "_DelayThreadHandler", "original": ".text"}, "124": {"type": "MIPS_26", "symbol": "SetTimerAlarm", "scope": "LIBRARY"}, "144": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}, "160": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "DeleteSema", "scope": "LIBRARY"}}}}}, "_DelayThreadHandler": {"f5a9bf4a1d0db65651a931db2684a4f045d175a5": {"85b343b6": {"type": "FUNCTION", "size": 40, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "iSignalSema", "scope": "LIBRARY"}}}}}, "sceDeci2GrpOpen": {"f1128d706ee88e2b34405d842f6dbf4ae8ab8ba6": {"7e54060a": {"type": "FUNCTION", "size": 48, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "Deci2Call", "scope": "LIBRARY"}}}}}, "sceDeci2GrpClose": {"3268731cac8852f238261d3d4205fad70c5d8508": {"3ba1afee": {"type": "FUNCTION", "size": 36, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "Deci2Call", "scope": "LIBRARY"}}}}}, "_alarm_bind": {"42aa3c234d9b54ab482066c0bcfb2b99c498c68d": {"1e9787a1": {"type": "FUNCTION", "size": 64, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "isceSifSendCmd", "scope": "LIBRARY"}}}}}, "__sceKernlGetEhSemaId": {"ceaacd8dbc6550567edb1845aa0d5c1d3047b02c": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "SetT2": {"047e9f89190978e83869e292ad475621d359f3eb": {"00000000": {"type": "FUNCTION", "size": 112, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "SetT2_COUNT": {"6cdd5bc93227f78236901a05548a500d9a95fa8d": {"13b8cfcc": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "SetT2", "scope": "LIBRARY", "original": ".text"}}}}}, "SetT2_MODE": {"39321c22c15864ddb992ad95dd0aa887de9f7480": {"13b8cfcc": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "SetT2", "scope": "LIBRARY", "original": ".text"}}}}}, "SetT2_COMP": {"5864cb31d4f7473fba53c5811c6d71ee9ade727e": {"13b8cfcc": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "SetT2", "scope": "LIBRARY", "original": ".text"}}}}}, "InitTimer": {"898144d8447c30d2ec34226cf8c67ad3a71e5154": {"af14cd70": {"type": "FUNCTION", "size": 340, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "memset"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_26", "symbol": "_InitAlarm", "scope": "LIBRARY"}, "152": {"type": "MIPS_HI16", "symbol": "cbTimerHandler", "original": ".text"}, "160": {"type": "MIPS_LO16", "symbol": "cbTimerHandler", "original": ".text"}, "168": {"type": "MIPS_26", "symbol": "AddIntcHandler2", "scope": "LIBRARY"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "200": {"type": "MIPS_26", "symbol": "DIntr", "scope": "LIBRARY"}, "256": {"type": "MIPS_26", "symbol": "SetT2_COUNT", "scope": "LIBRARY", "original": ".text"}, "264": {"type": "MIPS_26", "symbol": "SetT2_COMP", "scope": "LIBRARY", "original": ".text"}, "272": {"type": "MIPS_26", "symbol": "SetT2_MODE", "scope": "LIBRARY", "original": ".text"}, "280": {"type": "MIPS_26", "symbol": "EnableIntc", "scope": "LIBRARY"}, "296": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}}}}}, "EndTimer": {"2127122447ac7222a0bb3176e0bb80949059f6a6": {"2cc842a5": {"type": "FUNCTION", "size": 184, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_26", "symbol": "DIntr", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "RemoveIntcHandler", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "DisableIntc", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "SetT2_MODE", "scope": "LIBRARY", "original": ".text"}, "124": {"type": "MIPS_26", "symbol": "SetT2_COUNT", "scope": "LIBRARY", "original": ".text"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}}}}}, "GetTimerPreScaleFactor": {"056d2623657b41ed2994a2d5700b23469ebc12c8": {"d6ed632d": {"type": "FUNCTION", "size": 44, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "StartTimerSystemTime": {"4ebf0aedf83c5cdf9e28ea3d4d4ae3ea8cb823a6": {"91ddaf87": {"type": "FUNCTION", "size": 144, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "DIntr", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "SetT2_MODE", "scope": "LIBRARY", "original": ".text"}, "92": {"type": "MIPS_26", "symbol": "iGetTimerSystemTime", "scope": "LIBRARY", "original": ".text"}, "100": {"type": "MIPS_26", "symbol": "SetNextComp", "original": ".text"}, "116": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}}}}}, "StopTimerSystemT)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ime": {"c70eebb7ee960ff774eaf22cede8a1c50c3f7c13": {"367fb06a": {"type": "FUNCTION", "size": 124, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "DIntr", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "SetT2_MODE", "scope": "LIBRARY", "original": ".text"}, "96": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}}}}}, "SetNextComp": {"910a54f99075e0a1a3dabb5c0ac4364209924146": {"0ce18960": {"type": "FUNCTION", "size": 400, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_26", "symbol": "SetT2_COMP", "scope": "LIBRARY", "original": ".text"}, "100": {"type": "MIPS_26", "symbol": "SetT2_MODE", "scope": "LIBRARY", "original": ".text"}, "276": {"type": "MIPS_26", "symbol": "SetT2_COMP", "scope": "LIBRARY", "original": ".text"}, "312": {"type": "MIPS_26", "symbol": "SetT2_MODE", "scope": "LIBRARY", "original": ".text"}, "328": {"type": "MIPS_26", "symbol": "SetT2_MODE", "scope": "LIBRARY", "original": ".text"}, "368": {"type": "MIPS_26", "symbol": "SetT2_COMP", "scope": "LIBRARY", "original": ".text"}}}}}, "InsertAlarm": {"0b71c7eb7da3ef8ca6d4157d84a846e34120d04a": {"4d9cb420": {"type": "FUNCTION", "size": 132, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "UnlinkAlarm": {"4cc8dae9761399a514c91e6b425fa0c040c1e23c": {"c9922232": {"type": "FUNCTION", "size": 56, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "cbTimerHandler": {"5ed23d426d5441506c027ed96e73860a36e8d2b8": {"2df68c93": {"type": "FUNCTION", "size": 672, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0"], "sdk": ["2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_26", "symbol": "SetT2_MODE", "scope": "LIBRARY", "original": ".text"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "228": {"type": "MIPS_26", "symbol": "UnlinkAlarm", "scope": "LIBRARY", "original": ".text"}, "392": {"type": "MIPS_26", "symbol": "InsertAlarm", "scope": "LIBRARY", "original": ".text"}, "416": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "420": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "468": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "488": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "492": {"type": "MIPS_26", "symbol": "SetT2_MODE", "scope": "LIBRARY", "original": ".text"}, "508": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "536": {"type": "MIPS_26", "symbol": "SetNextComp", "original": ".text"}, "572": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "592": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "596": {"type": "MIPS_26", "symbol": "SetT2_MODE", "scope": "LIBRARY", "original": ".text"}, "612": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "2d3daa75cd6a75e6e1dbb00bb0b1bc45cc72a3dd": {"7db47711": {"type": "FUNCTION", "size": 676, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["3.0.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_26", "symbol": "SetT2_MODE", "scope": "LIBRARY", "original": ".text"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "224": {"type": "MIPS_26", "symbol": "UnlinkAlarm", "scope": "LIBRARY", "original": ".text"}, "404": {"type": "MIPS_26", "symbol": "InsertAlarm", "scope": "LIBRARY", "original": ".text"}, "428": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "432": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "480": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "500": {"type": "MIPS_26", "symbol": "SetT2_MODE", "scope": "LIBRARY", "original": ".text"}, "504": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "516": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "544": {"type": "MIPS_26", "symbol": "SetNextComp", "original": ".text"}, "580": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "600": {"type": "MIPS_26", "symbol": "SetT2_MODE", "scope": "LIBRARY", "original": ".text"}, "604": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "616": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "8b5b6202d7bdc5d96ca8f2f4a25d6f8dda662a6f": {"d926966c": {"type": "FUNCTION", "size": 692, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["3.1.0"], "sdk": ["3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_26", "symbol": "SetT2_MODE", "scope": "LIBRARY", "original": ".text"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "232": {"type": "MIPS_26", "symbol": "UnlinkAlarm", "scope": "LIBRARY", "original": ".text"}, "388": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "412": {"type": "MIPS_26", "symbol": "InsertAlarm", "scope": "LIBRARY", "original": ".text"}, "420": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "440": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "444": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "492": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "512": {"type": "MIPS_26", "symbol": "SetT2_MODE", "scope": "LIBRARY", "original": ".text"}, "516": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "528": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "556": {"type": "MIPS_26", "symbol": "SetNextComp", "original": ".text"}, "592": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "612": {"type": "MIPS_26", "symbol": "SetT2_MODE", "scope": "LIBRARY", "original": ".text"}, "616": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "628": {"type": "MIPS_LO16")PS2SDB", 8192}, + std::string_view{R"PS2SDB(, "symbol": "", "original": ".data"}}}}}, "iGetTimerSystemTime": {"dc670a61f03e4dd5595ead4034d34a076484e833": {"b3f3108e": {"type": "FUNCTION", "size": 76, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "GetTimerSystemTime": {"df10c5f9890f610ed16d0e0c4e3d1e63a5890b08": {"d0bd284c": {"type": "FUNCTION", "size": 124, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "DIntr", "scope": "LIBRARY"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}}}}}, "iAllocTimerCounter": {"3acbf949afa1faa69d6f3c5a3d0f82413610ca1c": {"d6ed632d": {"type": "FUNCTION", "size": 112, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "AllocTimerCounter": {"99d8047509d9af0dd9ba87c0a7741b5503ddb3fd": {"6bb4a445": {"type": "FUNCTION", "size": 72, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "DIntr", "scope": "LIBRARY"}, "24": {"type": "MIPS_26", "symbol": "iAllocTimerCounter", "scope": "LIBRARY", "original": ".text"}, "40": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}}}}}, "iFreeTimerCounter": {"2edddd48376878cf05d6bd15c047584679f21933": {"b2d8cc44": {"type": "FUNCTION", "size": 160, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_26", "symbol": "UnlinkAlarm", "scope": "LIBRARY", "original": ".text"}}}}, "c9cc53c808440e2afc98cf73e0b04df10e94c2f3": {"daa6544c": {"type": "FUNCTION", "size": 188, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["3.1.0"], "sdk": ["3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_26", "symbol": "UnlinkAlarm", "scope": "LIBRARY", "original": ".text"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "FreeTimerCounter": {"a909c70e2420b31c995340f242e297c467f94658": {"0f0d7ee4": {"type": "FUNCTION", "size": 76, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "DIntr", "scope": "LIBRARY"}, "28": {"type": "MIPS_26", "symbol": "iFreeTimerCounter", "scope": "LIBRARY", "original": ".text"}, "44": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}}}}}, "iGetTimerUsedUnusedCounters": {"071728dd9f58e3464340b6448a6f410b8c8b6fe4": {"d6ed632d": {"type": "FUNCTION", "size": 80, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "GetTimerUsedUnusedCounters": {"a5d54a3308f270998735f2e107f46e0f82ab7918": {"4ebac62f": {"type": "FUNCTION", "size": 92, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "DIntr", "scope": "LIBRARY"}, "40": {"type": "MIPS_26", "symbol": "iGetTimerUsedUnusedCounters", "scope": "LIBRARY", "original": ".text"}, "56": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}}}}}, "iStartTimerCounter": {"413e2917fe28e291834c8cd66088b392628bf922": {"ef57c4fb": {"type": "FUNCTION", "size": 172, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_26", "symbol": "iGetTimerSystemTime", "scope": "LIBRARY", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "InsertAlarm", "scope": "LIBRARY", "original": ".text"}, "140": {"type": "MIPS_26", "symbol": "SetNextComp", "original": ".text"}}}}}, "StartTimerCounter": {"a909c70e2420b31c995340f242e297c467f94658": {"2bcce9c3": {"type": "FUNCTION", "size": 76, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "DIntr", "scope": "LIBRARY"}, "28": {"type": "MIPS_26", "symbol": "iStartTimerCounter", "scope": "LIBRARY", "original": ".text"}, "44": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}}}}}, "iStopTimerCounter": {"33f5ef3f00e235b1b98bbf8f24ac8bcb8a248097": {"ae0ab637": {"type": "FUNCTION", "size": 196, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_26", "symbol": "iGetTimerSystemTime", "scope": "LIBRARY", "original": ".text"}, "156": {"type": "MIPS_26", "symbol": "UnlinkAlarm", "scope": "LIBRARY", "original": ".text"}, "164": {"type": "MIPS_26", "symbol": "SetNextComp", "original": ".text"}}}}, "5cf4b8d741f4aeccfd58906f838aa9facef9c26d": {"96489388": {"type": "FUNCTION", "size": 220, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["3.1.0"], "sdk": ["3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_26", "symbol": "iGetTimerSystemTime", "scope": "LIBRARY", "original": ".text"}, "160": {"type": "MIPS_26", "symbol": "UnlinkAlarm", "scope": "LIBRARY", "original": ".text"}, "184": {"type": "MIPS_26", "symbol": "SetNextComp", "original": ".text"}}}}}, "StopTimerCounter": {"a909c70e2420b31c995340f242e297c467f94658": {"4a4f49ab": {"type": "FUNCTION", "size": 76, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "DIntr", "scope": "LIBRARY"}, "28": {"type": "MIPS_26", "symbol": "iStopTimerCou)PS2SDB", 8192}, + std::string_view{R"PS2SDB(nter", "scope": "LIBRARY", "original": ".text"}, "44": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}}}}}, "SetTimerCount": {"79e277250f310d41de8ae0735e4d78f7e2ce5396": {"9658060d": {"type": "FUNCTION", "size": 204, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "DIntr", "scope": "LIBRARY"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}, "120": {"type": "MIPS_26", "symbol": "iGetTimerSystemTime", "scope": "LIBRARY", "original": ".text"}, "164": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}}}}}, "iGetTimerBaseTime": {"3f2e4380b042b3e55c91edc5ccc79ad1422001b1": {"00000000": {"type": "FUNCTION", "size": 72, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "GetTimerBaseTime": {"a909c70e2420b31c995340f242e297c467f94658": {"5f9d157f": {"type": "FUNCTION", "size": 76, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "DIntr", "scope": "LIBRARY"}, "28": {"type": "MIPS_26", "symbol": "iGetTimerBaseTime", "scope": "LIBRARY", "original": ".text"}, "44": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}}}}}, "iGetTimerCount": {"e53fe06f8452cff59af17ad9991dcf2d34aaed5c": {"b8c7fcfa": {"type": "FUNCTION", "size": 108, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_26", "symbol": "iGetTimerSystemTime", "scope": "LIBRARY", "original": ".text"}}}}}, "GetTimerCount": {"a909c70e2420b31c995340f242e297c467f94658": {"93e3e953": {"type": "FUNCTION", "size": 76, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "DIntr", "scope": "LIBRARY"}, "28": {"type": "MIPS_26", "symbol": "iGetTimerCount", "scope": "LIBRARY", "original": ".text"}, "44": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}}}}}, "iSetTimerHandler": {"3f3cfe89c0d5046092b0565e42dbb543cf84cfc1": {"ead5e8b3": {"type": "FUNCTION", "size": 244, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_26", "symbol": "UnlinkAlarm", "scope": "LIBRARY", "original": ".text"}, "188": {"type": "MIPS_26", "symbol": "InsertAlarm", "scope": "LIBRARY", "original": ".text"}, "196": {"type": "MIPS_26", "symbol": "iGetTimerSystemTime", "scope": "LIBRARY", "original": ".text"}, "204": {"type": "MIPS_26", "symbol": "SetNextComp", "original": ".text"}}}}, "deb108d3f1d5e0d1b4212298f370c3d267a3e849": {"a0859f8c": {"type": "FUNCTION", "size": 268, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["3.1.0"], "sdk": ["3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_26", "symbol": "UnlinkAlarm", "scope": "LIBRARY", "original": ".text"}, "208": {"type": "MIPS_26", "symbol": "InsertAlarm", "scope": "LIBRARY", "original": ".text"}, "216": {"type": "MIPS_26", "symbol": "iGetTimerSystemTime", "scope": "LIBRARY", "original": ".text"}, "224": {"type": "MIPS_26", "symbol": "SetNextComp", "original": ".text"}}}}}, "SetTimerHandler": {"1c21c4f5b5a8f9e45dd336dbf8061f62e61a258d": {"4dcaa948": {"type": "FUNCTION", "size": 124, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "DIntr", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "iSetTimerHandler", "scope": "LIBRARY", "original": ".text"}, "80": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}}}}}, "TimerBusClock2USec": {"dde2d1f92c1d2ffc2645983f38e99ac99d93f34f": {"edc1ee1a": {"type": "FUNCTION", "size": 168, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "__udivdi3"}, "124": {"type": "MIPS_26", "symbol": "__udivdi3"}}}}}, "TimerUSec2BusClock": {"df11877703d0130a7a28c056bd6af075364b4421": {"1eb27f7f": {"type": "FUNCTION", "size": 112, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"84": {"type": "MIPS_26", "symbol": "__udivdi3"}}}}}, "TimerBusClock2Freq": {"17f973ef5167a3da189e7b4cd66c77bdb725f844": {"ed28014a": {"type": "FUNCTION", "size": 84, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "__floatdisf"}, "36": {"type": "MIPS_26", "symbol": "__floatdisf"}}}}}, "TimerFreq2BusClock": {"ea630b1b8a5e1d94131b5d0507ac95c980c46a17": {"3ab1c097": {"type": "FUNCTION", "size": 52, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "__fixunssfdi"}}}}}, "_InitAlarm": {"b38d1998c2cc3c694055b44636d9b40c28167369": {"d3940191": {"type": "FUNCTION", "size": 76, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "AlarmHandler": {"204be2d3cc14f29e088eb5229d29565b9717ec5d": {"20baa3c6": {"type": "FUNCTION", "size": 92, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "SetTimerAlarm": {"71f5fd41393b08fe898d588486b081b6a43da80f": {"d9835ec7": {"type": "FUNCTION", "size": 300, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", )PS2SDB", 8192}, + std::string_view{R"PS2SDB("3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_26", "symbol": "DIntr", "scope": "LIBRARY"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}, "128": {"type": "MIPS_26", "symbol": "AllocTimerCounter", "scope": "LIBRARY"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "172": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}, "188": {"type": "MIPS_HI16", "symbol": "AlarmHandler", "original": ".text"}, "196": {"type": "MIPS_LO16", "symbol": "AlarmHandler", "original": ".text"}, "212": {"type": "MIPS_26", "symbol": "SetTimerHandler", "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "StartTimerCounter", "scope": "LIBRARY"}, "236": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}}}}}, "iSetTimerAlarm": {"d06bcf31e535a903198c551ce34a0fe5d4b17109": {"6dcdbb60": {"type": "FUNCTION", "size": 240, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_26", "symbol": "iAllocTimerCounter", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_HI16", "symbol": "AlarmHandler", "original": ".text"}, "156": {"type": "MIPS_LO16", "symbol": "AlarmHandler", "original": ".text"}, "172": {"type": "MIPS_26", "symbol": "iSetTimerHandler", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "iStartTimerCounter", "scope": "LIBRARY"}}}}}, "ReleaseTimerAlarm": {"b9f2c66d3657339c431901b649c1df7c7764992c": {"99dd3f16": {"type": "FUNCTION", "size": 168, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "DIntr", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "FreeTimerCounter", "scope": "LIBRARY"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}}}}}, "iReleaseTimerAlarm": {"60d307d13b92499fbd01edc690b2179d9412e53b": {"75b8728d": {"type": "FUNCTION", "size": 120, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "iFreeTimerCounter", "scope": "LIBRARY"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceSifInitRebootNotify": {"027c8faca4c6399237a96ce8e47f4f50f1f97886": {"deb8b572": {"type": "FUNCTION", "size": 36, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_26", "symbol": "memset"}}}}}, "sceSifSetRebootNotifyBuffer": {"6ba88c72912403a3b509b9d1749e8c27e2350bf4": {"5e2fc549": {"type": "FUNCTION", "size": 124, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "DIntr", "scope": "LIBRARY"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_26", "symbol": "memset"}, "84": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}}}}}, "sceSifAddRebootNotifyHandler": {"ddd9b94c6df95381cbcd31453a9761c431f950ff": {"05a73c64": {"type": "FUNCTION", "size": 184, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_26", "symbol": "DIntr", "scope": "LIBRARY"}, "144": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}}}}}, "sceSifRemoveRebootNotifyHandler": {"1934c1595980076f2a267519d7152ba0884fcfba": {"20e53bd7": {"type": "FUNCTION", "size": 84, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceSifExecNotifyHandler": {"24d1c9e3098f34e33ce966c82fcc974f83998f1e": {"3f905959": {"type": "FUNCTION", "size": 168, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "_SetAlarm": {"99f1e5a7523e93e57b755603050fafd27a9ce14e": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", )PS2SDB", 8192}, + std::string_view{R"PS2SDB("2.2.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "_ReleaseAlarm": {"0353e4c7a1f5480e1827301d1ea113f9dccfe1ce": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "_iSetAlarm": {"078eb47a1d4cea4ce8d56b3a91589cc0f74e3e44": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "_iReleaseAlarm": {"add62d67c123a2ac9deb646e1611baf1e63c9bd3": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "ForceRead": {"8d42041873ac88d8dc503025d686fef48007b8d4": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}}, "ForceWrite": {"5a2a6a344c5df6c2d6e63c0866fbf43367fa57d0": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}}, "print": {"26108dd8fcd60a86390eda4ae9972e34bbeb161a": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "putnum": {"d3be16bf441a9f017a2017eecbc3032344176d51": {"5128d4ce": {"type": "FUNCTION", "size": 84, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"64": {"type": "MIPS_26", "symbol": "print"}}}}}, "get_mem_info": {"7da7c99f3ecc3a4495c613c08819d3c0580396c8": {"00000000": {"type": "FUNCTION", "size": 20, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "itof": {"d8d7747bd1139eb06741b860da507fb7da8d2ad9": {"a9cbe39d": {"type": "FUNCTION", "size": 200, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"148": {"type": "MIPS_26", "symbol": "__floatdidf"}, "168": {"type": "MIPS_26", "symbol": "__floatdidf"}, "180": {"type": "MIPS_26", "symbol": "dpadd"}}}}, "00628507f65ae66dca15ca3102e2ec649a05f19b": {"a9cbe39d": {"type": "FUNCTION", "size": 200, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "sdk": ["1.6.1", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"148": {"type": "MIPS_26", "symbol": "__floatdidf"}, "168": {"type": "MIPS_26", "symbol": "__floatdidf"}, "180": {"type": "MIPS_26", "symbol": "dpadd"}}}}}, "fs_read_intr": {"df1e2a846f94861fb4b0e8569139f0cb32515d52": {"00000000": {"type": "FUNCTION", "size": 144, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}, "547bc51a2510edd2fe91ad135c10473850f613f6": {"00000000": {"type": "FUNCTION", "size": 152, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "sdk": ["2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "c89f46b67abdd2ec970fdb4260a5e88ce0783bff": {"00000000": {"type": "FUNCTION", "size": 144, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.0.0", "2.0.2"], "sdk": ["2.0.0", "2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}, "946dcbb7045e0f006ad584ce378c5839a082e15d": {"00000000": {"type": "FUNCTION", "size": 160, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}}, "_sceFsSemExit": {"7678540574197b420f17571673856a74783eb9d5": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "sdk": ["2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "_sceFsDbChk": {"0a5385cf4a659d302a43046ea0269e2b17a3ef1d": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "sdk": ["2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "_sceFsIntrSigSema": {"7678540574197b420f17571673856a74783eb9d5": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "sdk": ["2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "_StartThread": {"c805f4cb58dd73bf4b3388018ef3085972441211": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["3.0.0", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_sceSnprintf": {"c32f02b2f05c60e2a03026f4bf9c817a9c0b73cb": {"6a7a74b1": {"type": "FUNCTION", "size": 3348, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["3.0.0", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"160": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "632": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "644": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "676": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "688": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1072": {"type": "MIPS_26", "symbol": "__moddi3"}, "1096": {"type": "MIPS_26", "symbol": "__divdi3"}, "1264": {"type": "MIPS_26", "symbol": "__umoddi3"}, "1288": {"type": "MIPS_26", "symbol": "__udivdi3"}, "1348": {"type": "MIPS_26", "symbol": "dptofp"}, "1396": {"type": "MIPS_26", "symbol": "fptodp"}, "1416": {"type": "MIPS_26",)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "symbol": "printfloat", "scope": "LIBRARY", "original": ".text"}, "1828": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1836": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "snprintf_char": {"a6053b8c0e1ed2a4ff7a980702c75e107122e5a0": {"00000000": {"type": "FUNCTION", "size": 88, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["3.0.0", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "printf_char": {"89acbd238b594305844b8dc7343221f06224df7b": {"8ee91686": {"type": "FUNCTION", "size": 40, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["3.0.0", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "deci2Putchar", "scope": "LIBRARY", "original": ".text"}}}}}, "kprintf_char": {"89acbd238b594305844b8dc7343221f06224df7b": {"6acbc386": {"type": "FUNCTION", "size": 40, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["3.0.0", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "serialPutchar", "scope": "LIBRARY", "original": ".text"}}}}}, "_sceSnprintf_pf": {"d98d5b534653facacded8fd1538d7c0ded57ddff": {"4ea7feb8": {"type": "FUNCTION", "size": 76, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["3.0.0", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "_sceSnprintf", "scope": "LIBRARY", "original": ".text"}}}}}, "sceVsnprintf": {"513a7314e4cc120e6bb137f4306850805d43cfcb": {"8869a6e5": {"type": "FUNCTION", "size": 56, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "snprintf_char", "original": ".text"}, "28": {"type": "MIPS_LO16", "symbol": "snprintf_char", "original": ".text"}, "36": {"type": "MIPS_26", "symbol": "_sceSnprintf", "scope": "LIBRARY", "original": ".text"}}}}}, "sceSnprintf": {"16e53e9974fa3e812501be8342af9d09d5304547": {"46d463a0": {"type": "FUNCTION", "size": 72, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "snprintf_char", "original": ".text"}, "36": {"type": "MIPS_LO16", "symbol": "snprintf_char", "original": ".text"}, "52": {"type": "MIPS_26", "symbol": "_sceSnprintf", "scope": "LIBRARY", "original": ".text"}}}}}, "sceVprintf": {"dce1031d825f9e6994ac24f48bf460b5717ef930": {"b4499da6": {"type": "FUNCTION", "size": 112, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "DIntr", "scope": "LIBRARY"}, "36": {"type": "MIPS_HI16", "symbol": "printf_char", "original": ".text"}, "48": {"type": "MIPS_LO16", "symbol": "printf_char", "original": ".text"}, "64": {"type": "MIPS_26", "symbol": "_sceSnprintf", "scope": "LIBRARY", "original": ".text"}, "80": {"type": "MIPS_26", "symbol": "EIntr", "scope": "LIBRARY"}}}}}, "use_iob_cnt": {"7bd66702c8c785fccf06fe69209c09fd54f105a0": {"5ebbf8c3": {"type": "FUNCTION", "size": 124, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["3.0.0", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_26", "symbol": "_sceFsIobSemaMK", "scope": "LIBRARY", "original": ".text"}, "28": {"type": "MIPS_26", "symbol": "WaitSema", "scope": "LIBRARY"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_26", "symbol": "SignalSema", "scope": "LIBRARY"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceFsSifCallRpc": {"92a3bcb3833f9646abd6ea406a8a7c50f5736f14": {"8ea1d645": {"type": "FUNCTION", "size": 236, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["3.0.0", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"120": {"type": "MIPS_26", "symbol": "sceSifCallRpc", "scope": "LIBRARY"}, "148": {"type": "MIPS_26", "symbol": "DelayThread", "scope": "LIBRARY"}}}}}, "sceFsSetIopBuf": {"37935b9c33bceb354729a84fddd320ac259f9b22": {"94e5e4d2": {"type": "FUNCTION", "size": 320, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "_sceFsWaitS", "scope": "LIBRARY", "original": ".text"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_26", "symbol": "sceFsInit", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_26", "symbol": "_fs_version", "scope": "LIBRARY", "original": ".text"}, "76": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "96": {"type": "MIPS_26", "symbol": "use_iob_cnt", "scope": "LIBRARY", "original": ".text"}, "112": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "176": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "212": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "248": {"type": "MIPS_26", "symbol": "sceFsSifCallRpc", "scope": "LIBRARY", "original": ".text"}, "264": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "284": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}}}}}, "sceFsSetIopPrio": {"dfb760328bd06080ab2cede7055862edd64802ce": {"589058da": {"type": "FUNCTION", "size": 240, "library": "libkernl", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "_sceFsWaitS", "scope": "LIBRARY", "original": ".text"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_26", "symbol": "sceFsInit", "scope": "LIBRARY", "original": ".text"}, "52": {"type": "MIPS_26", "symbol": "_fs_version", "scope": "LIBRARY", "original": ".text"}, "68": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "88": {"type": "MIPS_26", "symbol": "use_iob_cnt", "scope": "LIBRARY", "original": ".text"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "172": {"type": "MIPS_26", "symbol": "sceFsSifCallRpc", "scope": "LIBRARY", "original": ".text"}, "188": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}, "208": {"type": "MIPS_26", "symbol": "_sceFsSigSema", "scope": "LIBRARY", "original": ".text"}}}}}, "_sceSifSetDma": {"b27c5be62bb6cd49976f01cc3da3ce4e0a09c977": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["3.1.0"], "sdk": ["3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_isceSifSetDma": {"e3869021c192d9a0febf08360e3d6337adfdae1c": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libkernl", "scope": "GLOBAL", "is_interface": false, "versions": ["3.1.0"], "sdk": ["3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceSifSetDmaInternal": {"58101b656fc454af0a75223ba0c036e8b964a597": {"6f9c6bb3": {"type": "FUNCTION", "size": 200, "library": "libkernl", "scope": "LOCAL", "is_interface": false, "versions": ["3.1.0"], "sdk": ["3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "memcpy"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_26", "symbol": "_sceSifSetDma", "scope": "LIBRARY"}, "156": {"type": "MIPS_26", "symbol": "_isceSifSetDma", "scope": "LIBRARY"}}}}}}, "libpad": {"_send_to_iop": {"1e0d692a0985b7ce22c3f41b1832d42e7ec4bf7e": {"13f7b877": {"type": "FUNCTION", "size": 276, "library": "libpad", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.0", "2.6.0", "2.7.0"], "sdk": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "sceSifDmaStat"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_26", "symbol": "SyncDCache"}, "188": {"type": "MIPS_26", "symbol": "sceSifSetDma"}, "208": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "220": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "224": {"type": "MIPS_26", "symbol": "scePrintf"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}, "d4290066": {"type": "FUNCTION", "size": 276, "library": "libpad", "scope": "LOCAL", "is_interface": false, "versions": ["2.4.1"], "sdk": ["2.4.1", "2.4.2", "2.4.3"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "sceSifDmaStat"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_26", "symbol": "SyncDCache"}, "188": {"type": "MIPS_26", "symbol": "sceSifSetDma"}, "208": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "220": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "224": {"type": "MIPS_26", "symbol": "printf"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "8b79844e7c044606c8ebc6a448050d81d0bb065c": {"13f7b877": {"type": "FUNCTION", "size": 276, "library": "libpad", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.1", "2.8.0", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "sdk": ["2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "sceSifDmaStat"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_26", "symbol": "SyncDCache"}, "188": {"type": "MIPS_26", "symbol": "sceSifSetDma"}, "208": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "220": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "224": {"type": "MIPS_26", "symbol": "scePrintf"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "a3140e87c2ac8f53c0b5e459ba2f1f7ba17d5a9e": {"9db3ed33": {"type": "FUNCTION", "size": 304, "library": "libpad", "scope": "LOCAL", "is_interface": false, "versions": ["2.1.3", "2.2.0", "2.3.0", "2.4.0"], "sdk": ["2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.2", "2.4.3", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "sceSifDmaStat"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "108": {"type": "MIPS_26", "symbol": "printf"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "160": {"type": "MIPS_26", "symbol": "SyncDCache"}, "192": {"type": "MIPS_26", "symbol": "sceSifSetDma"}, "212": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "228": {"type": "MIPS_26", "symbol": "printf"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "6c4661e72b14a72a2a1ae3d2e3159f6782d4e1cc": {"788c24f1": {"type": "FUNCTION", "size": 132, "library": "libpad", "scope": "LOCAL", "is_interface": false, "versions": ["2.0.7", "2.1.0"], "sdk": ["2.0.7", "2.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_26", "symbol": "sceSifSetDma"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "112": {"type": "MIPS_26", "symbol": "kprintf"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}, "3829bd04": {"type": "FUNCTION", "size": 132, "library": "libpad", "scope": "LOCAL", "is_interface": false, "versions": ["2.0.0"], "sdk": ["2.0.0", "2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_26", "symbol": "sceSifSetDma"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "112": {"type": "MIPS_26", "symbol": "printf"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "d0c52157ef95a36e1a613495ee672975a472f364": {"3829bd04": {"type": "FUNCTION", "size": 132, "library": "libpad", "scope": "LOCAL", "is_interface": false, "versions": ["1.6.1", "1.6.3"], "sdk": ["1.6.1", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_26", "symbol": "sceSifSetDma"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "112": {"type": "MIPS_26", "symbol": "printf"}, "116": {"type": "MIPS_LO16", "s)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ymbol": "", "original": ".rodata"}}}}, "a58271224f5cc2d36bfc0d033d6178a6fc85eb1c": {"9db3ed33": {"type": "FUNCTION", "size": 304, "library": "libpad", "scope": "LOCAL", "is_interface": false, "versions": ["2.1.1"], "sdk": ["2.1.1"], "compiler_versions": ["2.3.1.01"], "relocations": {"44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "sceSifDmaStat"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "108": {"type": "MIPS_26", "symbol": "printf"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "160": {"type": "MIPS_26", "symbol": "SyncDCache"}, "192": {"type": "MIPS_26", "symbol": "sceSifSetDma"}, "212": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "228": {"type": "MIPS_26", "symbol": "printf"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "35574156aac80939313e32cb10f973002da2841b": {"cf267f7b": {"type": "FUNCTION", "size": 308, "library": "libpad", "scope": "LOCAL", "is_interface": false, "versions": ["3.0.1-1"], "sdk": ["3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_26", "symbol": "sceSifDmaStat"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "172": {"type": "MIPS_26", "symbol": "SyncDCache"}, "204": {"type": "MIPS_26", "symbol": "sceSifSetDma"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "240": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "244": {"type": "MIPS_26", "symbol": "scePrintf"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "scePadInit": {"d5488b6d397ac0c8340e18363e31371e42487d1e": {"6736ae2e": {"type": "FUNCTION", "size": 320, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.0.1"], "sdk": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "184": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "204": {"type": "MIPS_26", "symbol": "scePadGetModVersion", "scope": "LIBRARY", "original": ".text"}, "228": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "240": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "244": {"type": "MIPS_26", "symbol": "scePrintf"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "252": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "272": {"type": "MIPS_26", "symbol": "scePrintf"}, "288": {"type": "MIPS_26", "symbol": "scePadInit2", "scope": "LIBRARY", "original": ".text"}}}, "4ad73833": {"type": "FUNCTION", "size": 320, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.1", "2.1.3", "2.2.0", "2.3.0", "2.4.0", "2.4.1"], "sdk": ["2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "184": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "204": {"type": "MIPS_26", "symbol": "scePadGetModVersion", "scope": "LIBRARY", "original": ".text"}, "228": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "240": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "244": {"type": "MIPS_26", "symbol": "printf"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "252": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "272": {"type": "MIPS_26", "symbol": "printf"}, "288": {"type": "MIPS_26", "symbol": "scePadInit2", "scope": "LIBRARY", "original": ".text"}}}}, "6194b4a0dea6f50f55b1f0143e8c22564ebaf0fb": {"f92b41b1": {"type": "FUNCTION", "size": 268, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.3", "1.5.0"], "sdk": ["1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_26", "symbol": "printf"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "60": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "64": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "216": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "236": {"type": "MIPS_26", "symbol": "scePadInit2", "scope": "LIBRARY", "original": ".text"}}}}, "7c924fe1ca658a1193bdaa9ccb896cbea3e21c82": {"5d228165": {"type": "FUNCTION", "size": 308, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.7", "2.1.0"], "sdk": ["2.0.7", "2.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "184": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "204": {"type": "MIPS_26", "symbol": "scePadGetModVersion", "scope": "LIBRARY", "original": ".text"}, "228": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "232": {"type": "MIPS_26", "symbol": "kprintf"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "240": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "260": {"type": "MIPS_26", "symbol": "kprintf"}, "276": {"type": "MIPS_26", "symbol": "scePadInit2", "scope": "LIBRARY", "original": ".text"}}}, "757df6e0": {"type": "FUNCTION", "size": 308, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0"], "sdk": ["2.0.0", "2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "184": {"type": "MIPS_)PS2SDB", 8192}, + std::string_view{R"PS2SDB(26", "symbol": "sceSifBindRpc"}, "204": {"type": "MIPS_26", "symbol": "scePadGetModVersion", "scope": "LIBRARY", "original": ".text"}, "228": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "232": {"type": "MIPS_26", "symbol": "printf"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "240": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "260": {"type": "MIPS_26", "symbol": "printf"}, "276": {"type": "MIPS_26", "symbol": "scePadInit2", "scope": "LIBRARY", "original": ".text"}}}}, "ae593e63b30b5a823306c48011e85f1af34c8b6c": {"266f3888": {"type": "FUNCTION", "size": 272, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1"], "sdk": ["1.6.1", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "184": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "204": {"type": "MIPS_26", "symbol": "scePadGetModVersion", "scope": "LIBRARY", "original": ".text"}, "220": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "224": {"type": "MIPS_26", "symbol": "printf"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "240": {"type": "MIPS_26", "symbol": "scePadInit2", "scope": "LIBRARY", "original": ".text"}}}}, "d1981ccdb2dde10306ab1b3aca7d2087173747b2": {"266f3888": {"type": "FUNCTION", "size": 272, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.3"], "sdk": ["1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "184": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "204": {"type": "MIPS_26", "symbol": "scePadGetModVersion", "scope": "LIBRARY", "original": ".text"}, "220": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "224": {"type": "MIPS_26", "symbol": "printf"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "240": {"type": "MIPS_26", "symbol": "scePadInit2", "scope": "LIBRARY", "original": ".text"}}}}, "428f888bbcbe339a64301b04f760e0f43c5db5aa": {"33f9a881": {"type": "FUNCTION", "size": 332, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.2", "3.1.0"], "sdk": ["3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "184": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "204": {"type": "MIPS_26", "symbol": "scePadGetModVersion", "scope": "LIBRARY", "original": ".text"}, "228": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "240": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "244": {"type": "MIPS_26", "symbol": "scePrintf"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "252": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "272": {"type": "MIPS_26", "symbol": "scePrintf"}, "288": {"type": "MIPS_26", "symbol": "scePadInit2", "scope": "LIBRARY", "original": ".text"}, "300": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "825183f97108fd51d757bf34b37200f91cb61331": {"39748ea7": {"type": "FUNCTION", "size": 332, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.1-1"], "sdk": ["3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "180": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "200": {"type": "MIPS_26", "symbol": "scePadGetModVersion", "scope": "LIBRARY", "original": ".text"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "240": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "244": {"type": "MIPS_26", "symbol": "scePrintf"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "252": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "272": {"type": "MIPS_26", "symbol": "scePrintf"}, "288": {"type": "MIPS_26", "symbol": "scePadInit2", "scope": "LIBRARY", "original": ".text"}, "300": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "dadc314350c9cb06bdacf59ffa704aaa2d73c301": {"018c85c6": {"type": "FUNCTION", "size": 260, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.0"], "sdk": ["1.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "28": {"type": "MIPS_26", "symbol": "printf"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "52": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "56": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "208": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "228": {"type": "MIPS_26", "symbol": "scePadInit2", "scope": "LIBRARY", "original": ".text"}}}}}, "scePadInit2": {"4f1bb316c20cc52bc4860f58e5a448d5d24a4842": {"115c0099": {"type": "FUNCTION", "size": 156, "library": "libpad", "scope": "LOCAL", "is_interface": false, "versions": ["2.1.1", "2.1.3", "2.2.0", "2.3.0", "2.4.0", "2.4.1", "2.5.0", "2.6.0", "2.7.0", "2.7.1", "2.8.0"], "sdk": ["2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}}}}, "8d7a1b963dcc8b1d901592557a0adeb1de3735c0": {"235f8bef": {"type": "FUNCTION", "size": 164, "library": "libpad", "scope": "LOCAL", "is_interface": false, "versions": ["1.4.3", "1.5.0"], "sdk": ["1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_HI16", "symbol": "", "o)PS2SDB", 8192}, + std::string_view{R"PS2SDB(riginal": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_26", "symbol": "kprintf"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "6faa0b96705d8f4c977c490507f19978b4c09f7d": {"0440d295": {"type": "FUNCTION", "size": 156, "library": "libpad", "scope": "LOCAL", "is_interface": false, "versions": ["2.0.0", "2.0.7", "2.1.0"], "sdk": ["2.0.0", "2.0.2", "2.0.7", "2.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}}}}, "fd21fb17456bbd7e3af9f39962a5754e8bb44a89": {"41948bdb": {"type": "FUNCTION", "size": 152, "library": "libpad", "scope": "LOCAL", "is_interface": false, "versions": ["1.6.1", "1.6.3"], "sdk": ["1.6.1", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}}}}, "5601bd9e3ba97ac67afc5e62e9321cdb819ce2f3": {"ea81d134": {"type": "FUNCTION", "size": 244, "library": "libpad", "scope": "LOCAL", "is_interface": false, "versions": ["3.0.1", "3.0.2", "3.1.0"], "sdk": ["3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_26", "symbol": "DIntr"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_HI16", "symbol": "_pad_intr_hdr", "original": ".text"}, "184": {"type": "MIPS_LO16", "symbol": "_pad_intr_hdr", "original": ".text"}, "192": {"type": "MIPS_26", "symbol": "sceSifAddCmdHandler"}, "212": {"type": "MIPS_26", "symbol": "EIntr"}}}}, "a2c0ccc7fa49b6f75391b2c2b5e756b03a68f303": {"fcfe4375": {"type": "FUNCTION", "size": 224, "library": "libpad", "scope": "LOCAL", "is_interface": false, "versions": ["3.0.0"], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "144": {"type": "MIPS_26", "symbol": "DIntr"}, "152": {"type": "MIPS_HI16", "symbol": "_pad_intr_hdr", "original": ".text"}, "164": {"type": "MIPS_LO16", "symbol": "_pad_intr_hdr", "original": ".text"}, "172": {"type": "MIPS_26", "symbol": "sceSifAddCmdHandler"}, "192": {"type": "MIPS_26", "symbol": "EIntr"}}}}, "29e0e0346416fbd95d75b92be0ab3bc513a67e69": {"c8b91af3": {"type": "FUNCTION", "size": 240, "library": "libpad", "scope": "LOCAL", "is_interface": false, "versions": ["3.0.1-1"], "sdk": ["3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_26", "symbol": "DIntr"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_HI16", "symbol": "_pad_intr_hdr", "original": ".text"}, "176": {"type": "MIPS_LO16", "symbol": "_pad_intr_hdr", "original": ".text"}, "188": {"type": "MIPS_26", "symbol": "sceSifAddCmdHandler"}, "208": {"type": "MIPS_26", "symbol": "EIntr"}}}}, "cff95db8ab9311c0f38c05361881ea4de2d5e7c9": {"e7886060": {"type": "FUNCTION", "size": 128, "library": "libpad", "scope": "LOCAL", "is_interface": false, "versions": ["1.4.0"], "sdk": ["1.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_26", "symbol": "kprintf"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_GPREL16", "symbol": ".sdata"}}}}}, "scePadEnd": {"8e336a7ce7483b5cf05e42601539af59a59a2ac6": {"7b699657": {"type": "FUNCTION", "size": 128, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1", "1.6.3", "2.0.0", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.2.0", "2.3.0", "2.4.0", "2.4.1", "2.5.0", "2.6.0", "2.7.0", "2.7.1", "2.8.0"], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "8c5b9d117f0daeef9c31c5f2bb29e3a339e749f9": {"3482f951": {"type": "FUNCTION", "size": 136, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.3", "1)PS2SDB", 8192}, + std::string_view{R"PS2SDB(.5.0"], "sdk": ["1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_26", "symbol": "kprintf"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "112": {"type": "MIPS_GPREL16", "symbol": ".sdata"}}}}, "0aab2da674a93ac6da7784ae765470d2a312e5c0": {"445dc5c0": {"type": "FUNCTION", "size": 172, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.2", "3.1.0"], "sdk": ["3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_26", "symbol": "scePadSetDmaCallback", "scope": "LIBRARY", "original": ".text"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "116": {"type": "MIPS_26", "symbol": "sceSifRemoveCmdHandler"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "95746c1808daa41a1786de3a80fa9b599f92a328": {"70566d50": {"type": "FUNCTION", "size": 136, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0"], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "84": {"type": "MIPS_26", "symbol": "sceSifRemoveCmdHandler"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "6904cc24b83602a420597829f2fb33d98ee5817e": {"e66de0ec": {"type": "FUNCTION", "size": 144, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.1"], "sdk": ["3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "scePadSetDmaCallback", "scope": "LIBRARY", "original": ".text"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "92": {"type": "MIPS_26", "symbol": "sceSifRemoveCmdHandler"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "f334ee48aae071ec7c1d020a0fc398278a4979ab": {"d53edb99": {"type": "FUNCTION", "size": 172, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.1-1"], "sdk": ["3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_26", "symbol": "scePadSetDmaCallback", "scope": "LIBRARY", "original": ".text"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "116": {"type": "MIPS_26", "symbol": "sceSifRemoveCmdHandler"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "d5ec6959dcd076bb90acfcf7f6a74b0143e1622d": {"3482f951": {"type": "FUNCTION", "size": 136, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.0"], "sdk": ["1.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_26", "symbol": "kprintf"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "112": {"type": "MIPS_GPREL16", "symbol": ".sdata"}}}}}, "scePadPortOpen": {"090d32e552661467fa0d1e1ea839cd33488404dd": {"0c581205": {"type": "FUNCTION", "size": 484, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "sdk": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_26", "symbol": "scePrintf"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "172": {"type": "MIPS_26", "symbol": "scePrintf"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "236": {"type": "MIPS_26", "symbol": "memset"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "268": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "316": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "352": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "360": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "364": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}, "d018ee83": {"type": "FUNCTION", "size": 484, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.1"], "sdk": ["2.4.1", "2.4.2", "2.4.3"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_26", "symbol": "printf"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_HI16", "sy)PS2SDB", 8192}, + std::string_view{R"PS2SDB(mbol": "", "original": ".bss"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "172": {"type": "MIPS_26", "symbol": "printf"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "236": {"type": "MIPS_26", "symbol": "memset"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "268": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "316": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "352": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "360": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "364": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "a3a8dd936f63d38f2362f0c9087da0fabc054f23": {"d018ee83": {"type": "FUNCTION", "size": 484, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.3", "2.2.0", "2.3.0", "2.4.0"], "sdk": ["2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.2", "2.4.3", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_26", "symbol": "printf"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "172": {"type": "MIPS_26", "symbol": "printf"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "236": {"type": "MIPS_26", "symbol": "memset"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "268": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "316": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "352": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "360": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "364": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "139828345bfaa64c7c0dae410328cfcb9df6fa69": {"8b53d15c": {"type": "FUNCTION", "size": 320, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.3", "1.5.0"], "sdk": ["1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "60": {"type": "MIPS_26", "symbol": "printf"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_26", "symbol": "memset"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "204": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "220": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "224": {"type": "MIPS_26", "symbol": "kprintf"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "244": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "473c624bbac5c10d465a67b2a160f4faf53cab95": {"45d5538e": {"type": "FUNCTION", "size": 420, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.7", "2.1.0"], "sdk": ["2.0.7", "2.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"64": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_26", "symbol": "kprintf"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_26", "symbol": "kprintf"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "212": {"type": "MIPS_26", "symbol": "memset"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "244": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "292": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "328": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "69a05db07d72eea04765ee6fb53e29392b86f691": {"534ae4d0": {"type": "FUNCTION", "size": 340, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0"], "sdk": ["2.0.0", "2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"60": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_26", "symbol": "printf"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_26", "symbol": "memset"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "212": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "248": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "7a2596d45412e661c57b86548758791ec0c03e53": {"534ae4d0": {"type": "FUNCTION", "size": 340, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1", "1.6.3"], "sdk": ["1.6.1", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"60": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_26", "symbol": "printf"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_26", "symbol": "memset"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "212": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "248": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "55972922331c1c20f4e1dfec634069dd323af6b0": {"d018ee83": {"type": "FUNCTION", "size": 484, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.1"], "sdk": ["2.1.1"], "compiler_versions": ["2.3.1.01"], "relocations": {"64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_26", "symbol": "printf"}, "88": {"type": "MIPS_LO16)PS2SDB", 8192}, + std::string_view{R"PS2SDB(", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "172": {"type": "MIPS_26", "symbol": "printf"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "236": {"type": "MIPS_26", "symbol": "memset"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "268": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "316": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "352": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "360": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "364": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "edc1029d00cbf7309c1b45fd5f4d4da4625317e5": {"d1c846aa": {"type": "FUNCTION", "size": 500, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.1-1"], "sdk": ["3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_26", "symbol": "scePrintf"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "180": {"type": "MIPS_26", "symbol": "scePrintf"}, "244": {"type": "MIPS_26", "symbol": "memset"}, "264": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "276": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "328": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "372": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "380": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "396": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "400": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "a51ebf3ca8c818d7fb0570684b6314b5cb5520f0": {"2720baec": {"type": "FUNCTION", "size": 228, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.0"], "sdk": ["1.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_26", "symbol": "printf"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "180": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "200": {"type": "MIPS_26", "symbol": "kprintf"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "scePadPortClose": {"525759a7f2cd55e6cd6ab7570d405644a409922a": {"31667723": {"type": "FUNCTION", "size": 184, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.1", "2.1.3", "2.2.0", "2.3.0", "2.4.0", "2.4.1", "2.5.0", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "sdk": ["2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}}}}, "c0c6957f69df793d5214c798b736a56f5dd51c85": {"00ee4019": {"type": "FUNCTION", "size": 124, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.3", "1.5.0"], "sdk": ["1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_26", "symbol": "kprintf"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "53ceab8b9a125c3347e580987464b0b353d64cf9": {"56857cdc": {"type": "FUNCTION", "size": 180, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.7", "2.1.0"], "sdk": ["2.0.7", "2.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}}}}, "65328a25ebdeabb1ea7130a333bc948b56531513": {"a4665609": {"type": "FUNCTION", "size": 116, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.3", "2.0.0"], "sdk": ["1.6.3", "1.6.5", "2.0.0", "2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}}}}, "4787d7ee72d54fe87ce6191b05fad6d54aba8143": {"a311a202": {"type": "FUNCTION", "size": 108, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1"], "sdk": ["1.6.1", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}}}}, "7ccfb99cb635535ac12219986b609acc9548f05a": {"d7d0175d": {"type": "FUNCTION", "size": 192, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.1-1"], "sdk": ["3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}}}}, "6799d4dfb443a0a42e06475b8f71acfd5724f6a8": {"00ee4019": {"type": "FUNCTION", "size": 124, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.0"], "sdk": ["1.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_26", "symbol": "kprintf"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "scePadGetDmaStr": {"da4f38791201a8e2a50753caeb836c64b8ebdec2": {"669a43b2": {"type": "FUNCTION", "size": 96, "library": "libpad", "scope": "LOCAL", "is_interface": false, "versions": ["2.1.1", "2.1.3", "2.2.0", "2.3.0", "2.4.0", "2.4.1", "2.5.0", "2.6.0", "2.7.0"], "sdk": ["2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_26", "symbol": "SyncDCache"}}}}, "d3234354d24151dddaeba66bed503c865c7037c9": {"669a43b2": {"type": "FUNCTION", "size": 96, "library": "libpad", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.1", "2.8.0", "3.0.0"], "sdk": ["2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_26", "symbol": "SyncDCache"}}}}, "af684aa27c6264b0d377f1c8969571fb5a4997d5": {"669a43b2": {"type": "FUNCTION", "size": 96, "library": "libpad", "scope": "LOCAL", "is_interface": false, "versions": ["2.0.0", "2.0.7", "2.1.0"], "sdk": ["2.0.0", "2.0.2", "2.0.7", "2.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_26", "symbol": "SyncDCache"}}}}, "3da32626da23ddbcafaf566c4cddc2ebbae75482": {"52072139": {"type": "FUNCTION", "size": 96, "library": "libpad", "scope": "LOCAL", "is_interface": false, "versions": ["1.6.1"], "sdk": ["1.6.1", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}}}}, "01f2d8eb0aec49e05bde63d53e81008d80cd42f2": {"669a43b2": {"type": "FUNCTION", "size": 96, "library": "libpad", "scope": "LOCAL", "is_interface": false, "versions": ["1.6.3"], "sdk": ["1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_26", "symbol": "SyncDCache"}}}}, "a0b3161aa44c340cb87a20f8818feed4d8775438": {"f0d34ea8": {"type": "FUNCTION", "size": 344, "library": "libpad", "scope": "LOCAL", "is_interface": false, "versions": ["3.0.2", "3.1.0"], "sdk": ["3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "DIntr"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "SyncDCache"}, "304": {"type": "MIPS_26", "symbol": "EIntr"}}}, "2a236033": {"type": "FUNCTION", "size": 344, "library": "libpad", "scope": "LOCAL", "is_interface": false, "versions": ["3.0.1"], "sdk": ["3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "DIntr"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "iInvalidDCache"}, "304": {"type": "MIPS_26", "symbol": "EIntr"}}}}, "6b220e09720ca364ad7dcc2aa8c7c715e30b8a5b": {"2db07a1b": {"type": "FUNCTION", "size": 352, "library": "libpad", "scope": "LOCAL", "is_interface": false, "versions": ["3.0.1-1"], "sdk": ["3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "DIntr"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_26", "symbol": "SyncDCache"}, "312": {"type": "MIPS_26", "symbol": "EIntr"}}}}}, "scePadGetFrameCount": {"82b30738816320d4c4ff5d6e518dfea7403d8084": {"460e7923": {"type": "FUNCTION", "size": 80, "library": "libpad", "scope": "GLOBAL", "is_interface": false, "versions": ["2.1.1", "2.1.3", "2.2.0", "2.3.0", "2.4.0", "2.4.1", "2.5.0", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0"], "sdk": ["2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "scePadGetDmaStr", "scope": "LIBRARY", "original": ".text"}}}}, "3ac40ba7ffbdd7efc2f39557640a13d0d6193557": {"dd12f625": {"type": "FUNCTION", "size": 92, "library": "libpad", "scope": "GLOBAL", "is_interface": false, "versions": ["1.4.3", "1.5.0"], "sdk": ["1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}}}}, "8c71d33c5245567e31a203c36dca82705a3b7f19": {"460e7923": {"type": "FUNCTION", "size": 80, "library": "libpad", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.7", "2.1.0"], "sdk": ["2.0.7", "2.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "scePadGetDmaStr", "scope": "LIBRARY", "original": ".text"}}}}, "4ed6f879e358405d4d2207e1ebbc4bac47941888": {"411e4c64": {"type": "FUNCTION", "size": 32, "library": "libpad", "scope": "GLOBAL", "is_interface": false, "versions": ["1.6.1", "1.6.3", "2.0.0"], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "scePadGetDmaStr", "scope": "LIBRARY", "original": ".text"}}}}, "cdc38677048a7a3175b043e66ee443563d7e7834": {"4b310a90": {"ty)PS2SDB", 8192}, + std::string_view{R"PS2SDB(pe": "FUNCTION", "size": 88, "library": "libpad", "scope": "GLOBAL", "is_interface": false, "versions": ["3.0.1", "3.0.2", "3.1.0"], "sdk": ["3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_26", "symbol": "scePadGetDmaStr", "scope": "LIBRARY", "original": ".text"}}}}, "012a6e1f690a2a0b1ecb6e3328395aafacc50127": {"7c584c8f": {"type": "FUNCTION", "size": 80, "library": "libpad", "scope": "GLOBAL", "is_interface": false, "versions": ["3.0.1-1"], "sdk": ["3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "scePadGetDmaStr", "scope": "LIBRARY", "original": ".text"}}}}, "79cffdd3f633a8758cef9226e76c1a9b5ff6e4d0": {"dd12f625": {"type": "FUNCTION", "size": 92, "library": "libpad", "scope": "GLOBAL", "is_interface": false, "versions": ["1.4.0"], "sdk": ["1.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}}}}}, "scePadRead": {"1cb63223ed2130c067d44d76a4e07131ff90d8b2": {"dab25eb2": {"type": "FUNCTION", "size": 124, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.1", "2.1.3", "2.2.0", "2.3.0", "2.4.0", "2.4.1", "2.5.0", "2.6.0", "2.7.0"], "sdk": ["2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_26", "symbol": "scePadGetDmaStr", "scope": "LIBRARY", "original": ".text"}, "92": {"type": "MIPS_26", "symbol": "memcpy"}}}}, "704ed268e8fb174722966b6ab9de0c240737cb59": {"bcbc0a8a": {"type": "FUNCTION", "size": 356, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.1", "2.8.0"], "sdk": ["2.7.1", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_26", "symbol": "DIntr"}, "108": {"type": "MIPS_26", "symbol": "scePadGetDmaStr", "scope": "LIBRARY", "original": ".text"}, "292": {"type": "MIPS_26", "symbol": "memcpy"}, "312": {"type": "MIPS_26", "symbol": "EIntr"}}}}, "c84a9430bf6af1e1310e543e7c52edab68c3de12": {"79322967": {"type": "FUNCTION", "size": 136, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.3", "1.5.0"], "sdk": ["1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "100": {"type": "MIPS_26", "symbol": "memcpy"}}}}, "8bf1e39bb6be6bf2e5f46e2d9433333a31b49715": {"dab25eb2": {"type": "FUNCTION", "size": 124, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.7", "2.1.0"], "sdk": ["2.0.7", "2.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_26", "symbol": "scePadGetDmaStr", "scope": "LIBRARY", "original": ".text"}, "92": {"type": "MIPS_26", "symbol": "memcpy"}}}}, "d6eede82662cb71dd12e65c2b1bfbddc76bc9b5e": {"90fad5fd": {"type": "FUNCTION", "size": 68, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0"], "sdk": ["2.0.0", "2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "scePadGetDmaStr", "scope": "LIBRARY", "original": ".text"}, "36": {"type": "MIPS_26", "symbol": "memcpy"}}}}, "030dd87665c6638b2ebb129ac5a2a14dc550b845": {"1c8b9c2b": {"type": "FUNCTION", "size": 140, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1", "1.6.3"], "sdk": ["1.6.1", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "104": {"type": "MIPS_26", "symbol": "memcpy"}}}}, "11312357a9bce1c03c0a81262df6fb81a893307e": {"d9b465cd": {"type": "FUNCTION", "size": 116, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.1", "3.0.2", "3.1.0"], "sdk": ["3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_26", "symbol": "scePadGetDmaStr", "scope": "LIBRARY", "original": ".text"}, "88": {"type": "MIPS_26", "symbol": "memcpy"}}}}, "9d6398e3de6bbcf98cc9df7c164a45e23b822ab5": {"660be26c": {"type": "FUNCTION", "size": 180, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0"], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "DIntr"}, "100": {"type": "MIPS_26", "symbol": "scePadGetDmaStr", "scope": "LIBRARY", "original": ".text"}, "120": {"type": "MIPS_26", "symbol": "memcpy"}, "140": {"type": "MIPS_26", "symbol": "EIntr"}}}}, "b5f639add2d8567af08c1fc76a6436222017edff": {"a38ee32e": {"type": "FUNCTION", "size": 112, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.1-1"], "sdk": ["3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_26", "symbol": "scePadGetDmaStr", "scope": "LIBRARY", "original": ".text"}, "84": {"type": "MIPS_26", "symbol": "memcpy"}}}}, "7c6fd5c381e242b714313f4163e54bae4aaabd25": {"79322967": {"type": "FUNCTION", "size": 136, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.0"], "sdk": ["1.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "100": {"type": "MIPS_26", "symbol": "memcpy"}}}}}, "scePadGetState": {"bc2ba54693efaf1b65614c037421d7c771151b79": {"460e7923": {"type": "FUNCTION", "size": 120, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.1", "2.1.3", "2.2.0", "2.3.0", "2.4.0", "2.4.1", "2.5.0", "2.6.0", "2.7.0", "2.7.1", "2.8.0"], "sdk": ["2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "scePadGetDmaStr", "scope": "LIBRARY", "original": ".text"}}}}, "c601e6e549947a3527b70479c88790e3903fcf0e": {"08ba3d46": {"type": "FUNCTION", "size": 176, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.3", "1.5.0"], "sdk": ["1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": [")PS2SDB", 8192}, + std::string_view{R"PS2SDB(2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "112": {"type": "MIPS_26", "symbol": "scePadGetReqState", "scope": "LIBRARY", "original": ".text"}}}}, "c0103018c99b0d289eef3ef2602920cf048a76db": {"460e7923": {"type": "FUNCTION", "size": 120, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.7", "2.1.0"], "sdk": ["2.0.7", "2.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "scePadGetDmaStr", "scope": "LIBRARY", "original": ".text"}}}}, "b73daf163cf4a47ecba74ef90cd34bdb7225792b": {"411e4c64": {"type": "FUNCTION", "size": 64, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0"], "sdk": ["2.0.0", "2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "scePadGetDmaStr", "scope": "LIBRARY", "original": ".text"}}}}, "2c700b6d4586166d8cbf37ab58334c4b728f61a5": {"0aa5fc6d": {"type": "FUNCTION", "size": 184, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1", "1.6.3"], "sdk": ["1.6.1", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "120": {"type": "MIPS_26", "symbol": "scePadGetReqState", "scope": "LIBRARY", "original": ".text"}}}}, "e2abe0704d6ea9271c258d55ed0074b18dcdbc7d": {"4b310a90": {"type": "FUNCTION", "size": 120, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.1", "3.0.2", "3.1.0"], "sdk": ["3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_26", "symbol": "scePadGetDmaStr", "scope": "LIBRARY", "original": ".text"}}}}, "6763b1050a3dd932b30428a7a1b663db4ed60943": {"b3fbb806": {"type": "FUNCTION", "size": 200, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0"], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_26", "symbol": "DIntr"}, "88": {"type": "MIPS_26", "symbol": "scePadGetDmaStr", "scope": "LIBRARY", "original": ".text"}, "140": {"type": "MIPS_26", "symbol": "EIntr"}, "164": {"type": "MIPS_26", "symbol": "EIntr"}}}}, "3b6a1cfc655fb702279fe2785bcd708fdf7eb8df": {"7c584c8f": {"type": "FUNCTION", "size": 112, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.1-1"], "sdk": ["3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "scePadGetDmaStr", "scope": "LIBRARY", "original": ".text"}}}}, "441ff44a7f3bb789dce52f9c175d78a35b729ca4": {"08ba3d46": {"type": "FUNCTION", "size": 176, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.0"], "sdk": ["1.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "112": {"type": "MIPS_26", "symbol": "scePadGetReqState", "scope": "LIBRARY", "original": ".text"}}}}}, "scePadStateIntToStr": {"fdd996ecc8bada1f81669c73508a5f4fe72747b1": {"98f3bd05": {"type": "FUNCTION", "size": 52, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.3", "1.5.0", "1.6.1", "1.6.3", "2.0.0", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.2.0", "2.3.0", "2.4.0", "2.4.1", "2.5.0", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "sdk": ["1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_26", "symbol": "strcpy"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "a0d8d8ddc5febd0fcff84ff8d1665393a5a2d477": {"15a8ffe4": {"type": "FUNCTION", "size": 80, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.1-1"], "sdk": ["3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_26", "symbol": "strcpy"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "a77f525d7938bfa1c753840d2180914b79cb8096": {"d03b332d": {"type": "FUNCTION", "size": 44, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.0"], "sdk": ["1.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_26", "symbol": "strcpy"}}}}}, "scePadSetReqState": {"4efa921a0181aba9f314429fca8d0c63ebb8d3fa": {"82024de7": {"type": "FUNCTION", "size": 100, "library": "libpad", "scope": "LOCAL", "is_interface": false, "versions": ["2.1.1", "2.1.3", "2.2.0", "2.3.0", "2.4.0", "2.4.1", "2.5.0", "2.6.0", "2.7.0", "2.7.1", "2.8.0"], "sdk": ["2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_26", "symbol": "scePadGetDmaStr", "scope": "LIBRARY", "original": ".text"}}}}, "4108edd27ec96c4c3a324bf29ac7176f9cf9553b": {"a0b1a31f": {"type": "FUNCTION", "size": 108, "library": "libpad", "scope": "GLOBAL", "is_interface": false, "versions": ["1.4.3", "1.5.0"], "sdk": ["1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}}}}, "a441f292e239a3cc96b170550480ae5376718d1d": {"82024de7": {"type": "FUNCTION", "size": 100, "library": "libpad", "scope": "LOCAL", "is_interface": false, "versions": ["2.0.7", "2.1.0"], "sdk": ["2.0.7", "2.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_26", "symbol": "scePadGetDmaStr", "scope": "LIBRARY", "original": ".text"}}}}, "ca55c74daf7fdf3299f64265eee91fdd207ebed7": {"53e748df": {"type": "FUNCTION", "size": 44, "library": "libpad", "scope": "LOCAL", "is_interface": false, "versions": ["2.0.0"], "sdk": ["2.0.0", "2.0.2"], "compiler_versions": ["2.3.1.01"], )PS2SDB", 8192}, + std::string_view{R"PS2SDB("relocations": {"12": {"type": "MIPS_26", "symbol": "scePadGetDmaStr", "scope": "LIBRARY", "original": ".text"}}}}, "710bdc860c593c2340e11c4201e86d3004978f52": {"9085f7b3": {"type": "FUNCTION", "size": 116, "library": "libpad", "scope": "LOCAL", "is_interface": false, "versions": ["1.6.1", "1.6.3"], "sdk": ["1.6.1", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}}}}, "1027066a972d6f19fa33cb29263bc68c14f47c00": {"ffc2ecad": {"type": "FUNCTION", "size": 180, "library": "libpad", "scope": "LOCAL", "is_interface": false, "versions": ["3.0.1", "3.0.2", "3.1.0"], "sdk": ["3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "DIntr"}, "104": {"type": "MIPS_26", "symbol": "scePadGetDmaStr", "scope": "LIBRARY", "original": ".text"}, "120": {"type": "MIPS_26", "symbol": "SyncDCache"}, "140": {"type": "MIPS_26", "symbol": "EIntr"}}}}, "0e07417f8cec54c2d919f2a21d47cb0056750880": {"5e337877": {"type": "FUNCTION", "size": 164, "library": "libpad", "scope": "LOCAL", "is_interface": false, "versions": ["3.0.0"], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "DIntr"}, "100": {"type": "MIPS_26", "symbol": "scePadGetDmaStr", "scope": "LIBRARY", "original": ".text"}, "124": {"type": "MIPS_26", "symbol": "EIntr"}}}}, "257ee05f6790016c691f3ef3846c658e59997155": {"aacc4b77": {"type": "FUNCTION", "size": 180, "library": "libpad", "scope": "LOCAL", "is_interface": false, "versions": ["3.0.1-1"], "sdk": ["3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "DIntr"}, "104": {"type": "MIPS_26", "symbol": "scePadGetDmaStr", "scope": "LIBRARY", "original": ".text"}, "120": {"type": "MIPS_26", "symbol": "SyncDCache"}, "140": {"type": "MIPS_26", "symbol": "EIntr"}}}}, "351ddc37438a239a39bae68af804a2680a5dec1a": {"a0b1a31f": {"type": "FUNCTION", "size": 108, "library": "libpad", "scope": "GLOBAL", "is_interface": false, "versions": ["1.4.0"], "sdk": ["1.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}}}}}, "scePadGetReqState": {"6c14d45d989897cdf73ac52c8d1de54fa3cd7d18": {"460e7923": {"type": "FUNCTION", "size": 80, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.1", "2.1.3", "2.2.0", "2.3.0", "2.4.0", "2.4.1", "2.5.0", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0"], "sdk": ["2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "scePadGetDmaStr", "scope": "LIBRARY", "original": ".text"}}}}, "4fb654014cfb23687d2f3b774905f7615198288f": {"dd12f625": {"type": "FUNCTION", "size": 92, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.3", "1.5.0"], "sdk": ["1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}}}}, "f8d55e671fb0b0c59c91ce6b77d89d2218cadda5": {"460e7923": {"type": "FUNCTION", "size": 80, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.7", "2.1.0"], "sdk": ["2.0.7", "2.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "scePadGetDmaStr", "scope": "LIBRARY", "original": ".text"}}}}, "2e2fd02209c249d4e190ad4caa34ada19727d6dc": {"411e4c64": {"type": "FUNCTION", "size": 32, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0"], "sdk": ["2.0.0", "2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "scePadGetDmaStr", "scope": "LIBRARY", "original": ".text"}}}}, "03ff25101a65817d11191ef92b3f6cf16df266a0": {"52072139": {"type": "FUNCTION", "size": 100, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1", "1.6.3"], "sdk": ["1.6.1", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}}}}, "e55541ae71f899c4e4127480e2cb55125d4709b4": {"4b310a90": {"type": "FUNCTION", "size": 88, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.1", "3.0.2", "3.1.0"], "sdk": ["3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_26", "symbol": "scePadGetDmaStr", "scope": "LIBRARY", "original": ".text"}}}}, "75d8d40a5fbc3923d3a78a3126ad04794be2630e": {"7c584c8f": {"type": "FUNCTION", "size": 80, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.1-1"], "sdk": ["3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "scePadGetDmaStr", "scope": "LIBRARY", "original": ".text"}}}}, "79c11b6076dac6d0ac7b1e16d0ae701ce2fcb4a1": {"dd12f625": {"type": "FUNCTION", "size": 92, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.0"], "sdk": ["1.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}}}}}, "scePadReqIntToStr": {"812e39510582e688715d57d5186b034d9b34cae0": {"98f3bd05": {"type": "FUNCTION", "size": 52, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.3", "1.5.0", "1.6.1", "1.6.3", "2.0.0", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.2.0", "2.3.0", "2.4.0", "2.4.1", "2.5.0", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "sdk": ["1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_26", "symbol": "strcpy"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata)PS2SDB", 8192}, + std::string_view{R"PS2SDB("}}}}, "c0091500699ecc71f49bcbd0f855e3d6632a9880": {"15a8ffe4": {"type": "FUNCTION", "size": 80, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.1-1"], "sdk": ["3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_26", "symbol": "strcpy"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "0302a2c723d810c340d8faa4b79520b2e9c04d24": {"d03b332d": {"type": "FUNCTION", "size": 44, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.0"], "sdk": ["1.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_26", "symbol": "strcpy"}}}}}, "scePadInfoAct": {"6b85bb1cb27159a4979f26932742382c7603bb93": {"82024de7": {"type": "FUNCTION", "size": 288, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.1", "2.1.3", "2.2.0", "2.3.0", "2.4.0", "2.4.1", "2.5.0", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0"], "sdk": ["2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_26", "symbol": "scePadGetDmaStr", "scope": "LIBRARY", "original": ".text"}}}}, "519d0f050a458421c00b8da5855273c423191b72": {"2b71b551": {"type": "FUNCTION", "size": 132, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.3", "1.5.0"], "sdk": ["1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_26", "symbol": "kprintf"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "f657db85164d852ebf492e0690b4bd1589870d92": {"82024de7": {"type": "FUNCTION", "size": 288, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.7", "2.1.0"], "sdk": ["2.0.7", "2.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_26", "symbol": "scePadGetDmaStr", "scope": "LIBRARY", "original": ".text"}}}}, "3e029bff09d646d522f30935dd190fe6e0d9b933": {"3df15345": {"type": "FUNCTION", "size": 240, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1", "1.6.3", "2.0.0"], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "scePadGetDmaStr", "scope": "LIBRARY", "original": ".text"}}}}, "8b483cc1d4e6bd22b472ff7ae3c94dc04f9609d0": {"b509402a": {"type": "FUNCTION", "size": 280, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.1", "3.0.2", "3.1.0"], "sdk": ["3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_26", "symbol": "scePadGetDmaStr", "scope": "LIBRARY", "original": ".text"}}}}, "c6f3bca26f134cffd09977f2cd9ac48e9cdd0c27": {"5495364a": {"type": "FUNCTION", "size": 288, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.1-1"], "sdk": ["3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_26", "symbol": "scePadGetDmaStr", "scope": "LIBRARY", "original": ".text"}}}}, "17cb98bcc4e5db0b56b73f2ec92debf96f6467ca": {"2b71b551": {"type": "FUNCTION", "size": 132, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.0"], "sdk": ["1.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_26", "symbol": "kprintf"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "scePadInfoComb": {"4786b63362d783de1b6ee258e4ae08967a720e71": {"82024de7": {"type": "FUNCTION", "size": 284, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.1", "2.1.3", "2.2.0", "2.3.0", "2.4.0", "2.4.1", "2.5.0", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0"], "sdk": ["2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_26", "symbol": "scePadGetDmaStr", "scope": "LIBRARY", "original": ".text"}}}}, "e3ce57808a5e7b886793385720a34d3f4223afef": {"2b71b551": {"type": "FUNCTION", "size": 132, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.3", "1.5.0"], "sdk": ["1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_26", "symbol": "kprintf"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "d4b5aa3dffccf35925011013e9469feb6920670c": {"82024de7": {"type": "FUNCTION", "size": 284, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.7", "2.1.0"], "sdk": ["2.0.7", "2.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_26", "symbol": "scePadGetDmaStr", "scope": "LIBRARY", "original": ".text"}}}}, "40b4f4d1ca9a702bc48a25b035a2ca7476eebffc": {"3df15345": {"type": "FUNCTION", "size": 228, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1", "1.6.3", "2.0.0"], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "scePadGetDmaStr", "scope": "LIBRARY", "original": ".text"}}}}, "64307fc2109f16d2fdb2e9dfd7b3a3c0aa4d4bdd": {"b509)PS2SDB", 8192}, + std::string_view{R"PS2SDB(402a": {"type": "FUNCTION", "size": 276, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.1", "3.0.2", "3.1.0"], "sdk": ["3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_26", "symbol": "scePadGetDmaStr", "scope": "LIBRARY", "original": ".text"}}}}, "f923d8bdec90020f96986481dabf0ad63a75f60c": {"5495364a": {"type": "FUNCTION", "size": 288, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.1-1"], "sdk": ["3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_26", "symbol": "scePadGetDmaStr", "scope": "LIBRARY", "original": ".text"}}}}, "5fc4770a974edaec0c2be680266df9db9c12c85e": {"2b71b551": {"type": "FUNCTION", "size": 132, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.0"], "sdk": ["1.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_26", "symbol": "kprintf"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "scePadInfoMode": {"e6575e39e2e48e366685f76c9ec2bb71b74db80d": {"82024de7": {"type": "FUNCTION", "size": 312, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.1", "2.1.3", "2.2.0", "2.3.0", "2.4.0", "2.4.1", "2.5.0", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0"], "sdk": ["2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_26", "symbol": "scePadGetDmaStr", "scope": "LIBRARY", "original": ".text"}}}}, "914212de6b13d429a99f10bf43ec344582b553ce": {"2b71b551": {"type": "FUNCTION", "size": 132, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.3", "1.5.0"], "sdk": ["1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_26", "symbol": "kprintf"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "d83ad37b50ab6f2de8120ab24d564ef575c5cf07": {"82024de7": {"type": "FUNCTION", "size": 312, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.7", "2.1.0"], "sdk": ["2.0.7", "2.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_26", "symbol": "scePadGetDmaStr", "scope": "LIBRARY", "original": ".text"}}}}, "3327a1a33df8048dbc01eb4c4ea32cd08365c82f": {"3df15345": {"type": "FUNCTION", "size": 264, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1", "1.6.3", "2.0.0"], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "scePadGetDmaStr", "scope": "LIBRARY", "original": ".text"}}}}, "fa4ce3ac72ba0bc8ff99a11e9e20085bc14710fd": {"b509402a": {"type": "FUNCTION", "size": 308, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.1", "3.0.2", "3.1.0"], "sdk": ["3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_26", "symbol": "scePadGetDmaStr", "scope": "LIBRARY", "original": ".text"}}}}, "834f3f619da96598437d45eaf24cd9d196fb658e": {"5495364a": {"type": "FUNCTION", "size": 316, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.1-1"], "sdk": ["3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_26", "symbol": "scePadGetDmaStr", "scope": "LIBRARY", "original": ".text"}}}}, "20e0a13e9946bf4acb7663beafe9c5889ef5c6e6": {"2b71b551": {"type": "FUNCTION", "size": 132, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.0"], "sdk": ["1.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_26", "symbol": "kprintf"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "scePadSetMainMode": {"76f9da1db829d1a642b244ddf32e8cfa10a72d2b": {"da4aa22c": {"type": "FUNCTION", "size": 180, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.2.0", "2.3.0", "2.4.0", "2.4.1", "2.5.0", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "sdk": ["2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "140": {"type": "MIPS_26", "symbol": "scePadSetReqState", "scope": "LIBRARY", "original": ".text"}}}}, "faa937ff5db3d2a9345efc8cc16c20dec1d90ec2": {"3c9335dc": {"type": "FUNCTION", "size": 192, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.3", "1.5.0"], "sdk": ["1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, )PS2SDB", 8192}, + std::string_view{R"PS2SDB("116": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "120": {"type": "MIPS_26", "symbol": "kprintf"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "156": {"type": "MIPS_26", "symbol": "scePadSetReqState", "scope": "LIBRARY", "original": ".text"}}}}, "5540bb8a430476811e2824d0ef6594b144245e4c": {"da4aa22c": {"type": "FUNCTION", "size": 176, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1", "1.6.3"], "sdk": ["1.6.1", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "140": {"type": "MIPS_26", "symbol": "scePadSetReqState", "scope": "LIBRARY", "original": ".text"}}}}, "2315ed23901d7aa90ae8115c4203d0265ad0814c": {"a0beec21": {"type": "FUNCTION", "size": 176, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.1-1"], "sdk": ["3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "140": {"type": "MIPS_26", "symbol": "scePadSetReqState", "scope": "LIBRARY", "original": ".text"}}}}, "7921344f7c40e9de9eb86b9b364f92a2b75507aa": {"3c9335dc": {"type": "FUNCTION", "size": 192, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.0"], "sdk": ["1.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "120": {"type": "MIPS_26", "symbol": "kprintf"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "156": {"type": "MIPS_26", "symbol": "scePadSetReqState", "scope": "LIBRARY", "original": ".text"}}}}}, "scePadSetActDirect": {"10309dd1f1aa64be4a500dc614221aebb298a04b": {"573be876": {"type": "FUNCTION", "size": 192, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.1", "2.5.0", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0"], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "scePadGetDmaStr", "scope": "LIBRARY", "original": ".text"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_26", "symbol": "_send_to_iop", "scope": "LIBRARY", "original": ".text"}}}}, "1e5fda830d10911a07215d0b8ee6d8718f743a9a": {"573be876": {"type": "FUNCTION", "size": 184, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.3", "2.2.0", "2.3.0", "2.4.0"], "sdk": ["2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.2", "2.4.3", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "scePadGetDmaStr", "scope": "LIBRARY", "original": ".text"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_26", "symbol": "_send_to_iop", "scope": "LIBRARY", "original": ".text"}}}}, "bf0b4762e7adf92a62dd4c4bca8679b77d0304aa": {"09aed449": {"type": "FUNCTION", "size": 160, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.3", "1.5.0"], "sdk": ["1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "132": {"type": "MIPS_26", "symbol": "kprintf"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "766e691efad59a0dacb9d24d9b64134ab9a97db4": {"c06ce0d8": {"type": "FUNCTION", "size": 152, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1", "2.0.0", "2.0.7", "2.1.0"], "sdk": ["1.6.1", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}}}}, "c0ae943cf48b99a4073ae75548f9d5d8b9166665": {"58b790c2": {"type": "FUNCTION", "size": 96, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.1"], "sdk": ["2.1.1"], "compiler_versions": ["2.3.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_26", "symbol": "_send_to_iop", "scope": "LIBRARY", "original": ".text"}}}}, "82221dfee1b2bc776b9efd6f5ecd4b7150b25876": {"5d8f1276": {"type": "FUNCTION", "size": 148, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.3"], "sdk": ["1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}}}}, "b83e58865e94b9d10f76464da0b115fc7fc8986b": {"758bf68e": {"type": "FUNCTION", "size": 200, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.1", "3.0.2", "3.1.0"], "sdk": ["3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "scePadGetDmaStr", "scope": "LIBRARY", "original": ".text"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_26", "symbol": "_send_to_iop", "scope": "LIBRARY", "original": ".text"}}}}, "98890c220177082c7cdce0f0602f4cf4189c307a": {"fc210ce0": {"type": "FUNCTION", "size": 192, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.1-1"], "sdk": ["3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "scePadGetDmaStr", "scope": "LIBRARY", "original": ".text"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_26", "symbol": "_send_to_iop", "scope": "LIBRARY", "original": ".text"}}}}, "442a081382da0c91ad3bb07c5efd4a1c22ce59)PS2SDB", 8192}, + std::string_view{R"PS2SDB(e6": {"09aed449": {"type": "FUNCTION", "size": 160, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.0"], "sdk": ["1.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "132": {"type": "MIPS_26", "symbol": "kprintf"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "scePadSetActAlign": {"307b0d6003f7d0308758607ee7ca7b7b8e5e728a": {"907ce732": {"type": "FUNCTION", "size": 216, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.2.0", "2.3.0", "2.4.0", "2.4.1", "2.5.0", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "sdk": ["2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "176": {"type": "MIPS_26", "symbol": "scePadSetReqState", "scope": "LIBRARY", "original": ".text"}}}}, "caf5f84ba75de944796b6d179c8ce625f0d0caf6": {"285f8751": {"type": "FUNCTION", "size": 220, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.3", "1.5.0"], "sdk": ["1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_26", "symbol": "kprintf"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_26", "symbol": "scePadSetReqState", "scope": "LIBRARY", "original": ".text"}}}}, "ec69d89081269a1e55666644808d9528a2fed2a9": {"907ce732": {"type": "FUNCTION", "size": 212, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1"], "sdk": ["1.6.1", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "176": {"type": "MIPS_26", "symbol": "scePadSetReqState", "scope": "LIBRARY", "original": ".text"}}}}, "517560190c6c6628e7d8bc6e63c14064c6e24c0b": {"63e9ed44": {"type": "FUNCTION", "size": 208, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.3"], "sdk": ["1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "172": {"type": "MIPS_26", "symbol": "scePadSetReqState", "scope": "LIBRARY", "original": ".text"}}}}, "8e7e77153c34cfe983cd96cf3fd2c81f550c00d5": {"89cf51d1": {"type": "FUNCTION", "size": 212, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.1-1"], "sdk": ["3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "172": {"type": "MIPS_26", "symbol": "scePadSetReqState", "scope": "LIBRARY", "original": ".text"}}}}, "648d88b05d3238ab463770199125a8b22398c275": {"285f8751": {"type": "FUNCTION", "size": 220, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.0"], "sdk": ["1.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_26", "symbol": "kprintf"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_26", "symbol": "scePadSetReqState", "scope": "LIBRARY", "original": ".text"}}}}}, "scePadGetButtonMask": {"6de6267c96fee2b5a2feedb2ccd487283c078376": {"460e7923": {"type": "FUNCTION", "size": 180, "library": "libpad", "scope": "LOCAL", "is_interface": false, "versions": ["2.1.1", "2.1.3", "2.2.0", "2.3.0", "2.4.0", "2.4.1", "2.5.0", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0"], "sdk": ["2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "scePadGetDmaStr", "scope": "LIBRARY", "original": ".text"}}}}, "6dafb887e1d73adb8cb32d70f49b55b09984eb1a": {"00ee4019": {"type": "FUNCTION", "size": 124, "library": "libpad", "scope": "LOCAL", "is_interface": false, "versions": ["1.4.3", "1.5.0"], "sdk": ["1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_26", "symbol": "kprintf"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "e1e075374e664de51eedf16aac54894834b6fd0f": {"460e7923": {"type": "FUNCTION", "size": 180, "library": "libpad", "scope": "LOCAL", "is_interface": false, "versions": ["2.0.7", "2.1.0"], "sdk": ["2.0.7", "2.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symb)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "scePadGetDmaStr", "scope": "LIBRARY", "original": ".text"}}}}, "e2ef9c6afdf7621d1cb64b0a2d9255988b9de894": {"a311a202": {"type": "FUNCTION", "size": 108, "library": "libpad", "scope": "LOCAL", "is_interface": false, "versions": ["1.6.1", "1.6.3", "2.0.0"], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}}}}, "31f50dfe987567d6566d2f64aa6e7315a7f0ab6b": {"460e7923": {"type": "FUNCTION", "size": 176, "library": "libpad", "scope": "LOCAL", "is_interface": false, "versions": ["3.0.1", "3.0.2", "3.1.0"], "sdk": ["3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "scePadGetDmaStr", "scope": "LIBRARY", "original": ".text"}}}}, "96643b50f1b9baf4f05d885e9b8f7bffecf6f6aa": {"7c584c8f": {"type": "FUNCTION", "size": 176, "library": "libpad", "scope": "LOCAL", "is_interface": false, "versions": ["3.0.1-1"], "sdk": ["3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "scePadGetDmaStr", "scope": "LIBRARY", "original": ".text"}}}}, "0d5839addd0d28fa0bea5f76f8cd9a077af1c343": {"00ee4019": {"type": "FUNCTION", "size": 124, "library": "libpad", "scope": "LOCAL", "is_interface": false, "versions": ["1.4.0"], "sdk": ["1.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_26", "symbol": "kprintf"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "scePadSetButtonInfo": {"5bdc2b681201dcea355376a77a0e38654854e198": {"f8cecc94": {"type": "FUNCTION", "size": 176, "library": "libpad", "scope": "LOCAL", "is_interface": false, "versions": ["2.0.0", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.2.0", "2.3.0", "2.4.0", "2.4.1", "2.5.0", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "sdk": ["2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "136": {"type": "MIPS_26", "symbol": "scePadSetReqState", "scope": "LIBRARY", "original": ".text"}}}}, "eb614faa2ef935fb555fadc5c41121e859a69067": {"0ba7cc02": {"type": "FUNCTION", "size": 188, "library": "libpad", "scope": "LOCAL", "is_interface": false, "versions": ["1.4.3", "1.5.0"], "sdk": ["1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_26", "symbol": "kprintf"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "152": {"type": "MIPS_26", "symbol": "scePadSetReqState", "scope": "LIBRARY", "original": ".text"}}}}, "182b90c0cf4420d15ce704bb1e8a2814bff6c7fe": {"f8cecc94": {"type": "FUNCTION", "size": 172, "library": "libpad", "scope": "LOCAL", "is_interface": false, "versions": ["1.6.1", "1.6.3"], "sdk": ["1.6.1", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "136": {"type": "MIPS_26", "symbol": "scePadSetReqState", "scope": "LIBRARY", "original": ".text"}}}}, "ee292f6bc20c3964e21810902823613e757a0c25": {"782737ef": {"type": "FUNCTION", "size": 176, "library": "libpad", "scope": "LOCAL", "is_interface": false, "versions": ["3.0.1-1"], "sdk": ["3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "140": {"type": "MIPS_26", "symbol": "scePadSetReqState", "scope": "LIBRARY", "original": ".text"}}}}, "6c90a7fb78554807f7b3f061492d370c5b4e7a5c": {"0ba7cc02": {"type": "FUNCTION", "size": 188, "library": "libpad", "scope": "LOCAL", "is_interface": false, "versions": ["1.4.0"], "sdk": ["1.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_26", "symbol": "kprintf"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "152": {"type": "MIPS_26", "symbol": "scePadSetReqState", "scope": "LIBRARY", "original": ".text"}}}}}, "scePadInfoPressMode": {"9202e24754618ac137d5e0fe68efeb1426d9f7c6": {"df80d682": {"type": "FUNCTION", "size": 92, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.1", "2.1.3", "2.2.0", "2.3.0", "2.4.0", "2.4.1", "2.5.0", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.0.1"], "sdk": ["2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "scePadGetButtonMask", "scope": )PS2SDB", 8192}, + std::string_view{R"PS2SDB("LIBRARY", "original": ".text"}}}}, "dae2de7c53988185ed650bc7b5c6644c40aae9ba": {"2f45168f": {"type": "FUNCTION", "size": 44, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.0", "1.4.3", "1.5.0", "1.6.1", "1.6.3", "2.0.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "scePadGetButtonMask", "scope": "LIBRARY", "original": ".text"}}}}, "4621a73cd7a53e149a7a6c6bf6ab62fd2316ae49": {"df80d682": {"type": "FUNCTION", "size": 92, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.7", "2.1.0"], "sdk": ["2.0.7", "2.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "scePadGetButtonMask", "scope": "LIBRARY", "original": ".text"}}}}, "7f90702753cad671b07dc2f67a586cd032574a19": {"460e7923": {"type": "FUNCTION", "size": 128, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.2", "3.1.0"], "sdk": ["3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "scePadGetDmaStr", "scope": "LIBRARY", "original": ".text"}}}}, "36c25bd273d9b06f319e72ef02bff5f706e5d1fb": {"d0707424": {"type": "FUNCTION", "size": 92, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.1-1"], "sdk": ["3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "scePadGetButtonMask", "scope": "LIBRARY", "original": ".text"}}}}}, "scePadEnterPressMode": {"8cab48a4a7ecb766c01fdb5a1d5e3444439ae373": {"60c78955": {"type": "FUNCTION", "size": 84, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.1", "2.1.3", "2.2.0", "2.3.0", "2.4.0", "2.4.1", "2.5.0", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "sdk": ["2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_26", "symbol": "scePadSetButtonInfo", "scope": "LIBRARY", "original": ".text"}}}}, "77e1a0cf146a6a063a2ee019dba2932b2a12c9fd": {"ef1d28a4": {"type": "FUNCTION", "size": 28, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.0", "1.4.3", "1.5.0", "1.6.1", "1.6.3", "2.0.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "scePadSetButtonInfo", "scope": "LIBRARY", "original": ".text"}}}}, "466a0520cabad416fd1dd1494c388176c49fd1ee": {"60c78955": {"type": "FUNCTION", "size": 84, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.7", "2.1.0"], "sdk": ["2.0.7", "2.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_26", "symbol": "scePadSetButtonInfo", "scope": "LIBRARY", "original": ".text"}}}}, "720a596086a4db7d50303a07697408dde60b9985": {"6f372bf3": {"type": "FUNCTION", "size": 84, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.1-1"], "sdk": ["3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_26", "symbol": "scePadSetButtonInfo", "scope": "LIBRARY", "original": ".text"}}}}}, "scePadExitPressMode": {"1cd76a7f460323c945ed8bb50fe4e20b66a63037": {"60c78955": {"type": "FUNCTION", "size": 84, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.1", "2.1.3", "2.2.0", "2.3.0", "2.4.0", "2.4.1", "2.5.0", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "sdk": ["2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_26", "symbol": "scePadSetButtonInfo", "scope": "LIBRARY", "original": ".text"}}}}, "e1e028210078668942189d5d8a2c4d8d4b00a4fa": {"ef1d28a4": {"type": "FUNCTION", "size": 28, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.0", "1.4.3", "1.5.0", "1.6.1", "1.6.3", "2.0.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "scePadSetButtonInfo", "scope": "LIBRARY", "original": ".text"}}}}, "9671b5961ce6aa9e2d4da689df34258b8762d094": {"60c78955": {"type": "FUNCTION", "size": 84, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.7", "2.1.0"], "sdk": ["2.0.7", "2.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_26", "symbol": "scePadSetButtonInfo", "scope": "LIBRARY", "original": ".text"}}}}, "54b93fecd0fa81f812b197f64e09deafc09319bd": {"6f372bf3": {"type": "FUNCTION", "size": 84, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.1-1"], "sdk": ["3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_26", "symbol": "scePadSetButtonInfo", "scope": "LIBRARY", "original": ".text"}}}}}, "scePadSetVrefParam": {"da712bc74731f7029d083cbf5594f570730d8373": {"402a4be2": {"type": "FUNCTION", "size": 204, "library": "libpad", "scope": "LOCAL", "is_interface": false, "versions": ["2.0.0", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.2.0", "2.3.0", "2.4.0", "2.4.1", "2.5.0", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "sdk": ["2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "164": {"type": "MIPS_26", "symbol": "scePadSetReqState", "scope": "LIBRARY", "original": ".text"}}}}, "fa6690ac7cfba8f959c68e6c39faebdd0ff2272b": {"c4785cfa": {"type": "FUNCTION", "size": 216, "library": "libpad", "scope": "LOCAL", "is_interface": false, "versions":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( ["1.4.3", "1.5.0"], "sdk": ["1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_26", "symbol": "kprintf"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "180": {"type": "MIPS_26", "symbol": "scePadSetReqState", "scope": "LIBRARY", "original": ".text"}}}}, "0e13fdeec06fc9fb68a304a7e0d14cc8c540e60b": {"402a4be2": {"type": "FUNCTION", "size": 200, "library": "libpad", "scope": "LOCAL", "is_interface": false, "versions": ["1.6.1", "1.6.3"], "sdk": ["1.6.1", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "164": {"type": "MIPS_26", "symbol": "scePadSetReqState", "scope": "LIBRARY", "original": ".text"}}}}, "6f19b141a1ab63e0a9284d0ac2b92e283e9026e7": {"10aaded9": {"type": "FUNCTION", "size": 200, "library": "libpad", "scope": "LOCAL", "is_interface": false, "versions": ["3.0.1-1"], "sdk": ["3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "164": {"type": "MIPS_26", "symbol": "scePadSetReqState", "scope": "LIBRARY", "original": ".text"}}}}, "80bf06399598097ffdf3e0cf7e02efa23823675c": {"c4785cfa": {"type": "FUNCTION", "size": 216, "library": "libpad", "scope": "LOCAL", "is_interface": false, "versions": ["1.4.0"], "sdk": ["1.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_26", "symbol": "kprintf"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "180": {"type": "MIPS_26", "symbol": "scePadSetReqState", "scope": "LIBRARY", "original": ".text"}}}}}, "scePadGetPortMax": {"9466d4782dc9b7ce885b90456aa79f74f4b9fddf": {"cf18913c": {"type": "FUNCTION", "size": 100, "library": "libpad", "scope": "LOCAL", "is_interface": false, "versions": ["1.6.1", "1.6.3", "2.0.0", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.2.0", "2.3.0", "2.4.0", "2.4.1", "2.5.0", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}}}}, "43e48014dc7966fdbb8b3ff1a9aecab42f9a0c1c": {"ec7808e4": {"type": "FUNCTION", "size": 116, "library": "libpad", "scope": "LOCAL", "is_interface": false, "versions": ["1.4.3", "1.5.0"], "sdk": ["1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_26", "symbol": "kprintf"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "8610db0d9e4950079802e841d3aad67170ec2645": {"886e91cf": {"type": "FUNCTION", "size": 100, "library": "libpad", "scope": "LOCAL", "is_interface": false, "versions": ["3.0.1-1"], "sdk": ["3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}}}}, "ccb30c9edc2618c53ca50d7f84fca5662e368122": {"ec7808e4": {"type": "FUNCTION", "size": 116, "library": "libpad", "scope": "LOCAL", "is_interface": false, "versions": ["1.4.0"], "sdk": ["1.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_26", "symbol": "kprintf"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "scePadGetSlotMax": {"d22652704ec4d28b55d38e061096fe225367bdf7": {"2d4bac3a": {"type": "FUNCTION", "size": 104, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1", "1.6.3", "2.0.0", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.2.0", "2.3.0", "2.4.0", "2.4.1", "2.5.0", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}}}}, "59db09c2d75449ac219aebe32d8205508f30ff51": {"ba2d988a": {"type": "FUNCTION", "size": 120, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.0", "1.4.3", "1.5.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_26", "symbol": "kprintf"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "6cf7b8f0075238c9a7041e9bb28e331ef9cfbe5f": {"61069c2d": {"type": "FUNCTION", "size": 104, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.1-1"], "sdk": ["3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}}}}}, "scePadGetModVersion": {"397119362d264f34615452fd6ee8a6d7e9b3bc70": {"cf18913c": {"type": "FUNCTION", "size": 100, "library": "libpad", "scope": "LOCAL", "is_interface": false, "versions": ["1.6.1", "1.6.3", "2.0.0", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.2.0", "2.3.0", "2.4.0", "2.4.1", "2.5.0", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}}}}, "1106bd8c96671ea18b39d226c29a8d99b30b4792": {"886e91cf": {"type": "FUNCTION", "size": 100, "library": "libpad", "scope": "LOCAL", "is_interface": false, "versions": ["3.0.1-1"], "sdk": ["3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}}}}}, "scePadSetWarningLevel": {"ef99805708936c0ab3061f36cad57d8777cda43b": {"2d4bac3a": {"type": "FUNCTION", "size": 104, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.1", "2.1.3", "2.2.0", "2.3.0", "2.4.0", "2.4.1", "2.5.0", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "sdk": ["2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}}}}, "8191fb2dfb84ae2b1944810e90bd6cd8d886fcf6": {"61069c2d": {"type": "FUNCTION", "size": 104, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.1-1"], "sdk": ["3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}}}}}, "scePadChangeThreadPriority": {"53fed3c9ceb28b3b02b9b8a46be8094281652529": {"a311a202": {"type": "FUNCTION", "size": 108, "library": "libpad", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0"], "sdk": ["2.0.0", "2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}}}}}, "scePadGetConnection": {"857c0b0e75b628fd1012ae02ef48ac93d3fb13e6": {"2541f3b1": {"type": "FUNCTION", "size": 100, "library": "libpad", "scope": "GLOBAL", "is_interface": false, "versions": ["1.6.1"], "sdk": ["1.6.1", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}}}}, "f4d82dde59e0788641e9179c9ef69af3b286a5dd": {"a311a202": {"type": "FUNCTION", "size": 108, "library": "libpad", "scope": "GLOBAL", "is_interface": false, "versions": ["1.6.3"], "sdk": ["1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}}}}}, "_pad_intr_hdr": {"6ad48c074db2fcac538d8d59d7b10f63efe0459a": {"1903daca": {"type": "FUNCTION", "size": 72, "library": "libpad", "scope": "LOCAL", "is_interface": false, "versions": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "492b1f488d41b36cc69cf47e5ced1d20b1e58782": {"1903daca": {"type": "FUNCTION", "size": 72, "library": "libpad", "scope": "LOCAL", "is_interface": false, "versions": ["3.0.1-1"], "sdk": ["3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "scePadSetDmaCallback": {"c7f5e19cf9394ea39b0e5c1679eb1483836323ad": {"f2d90266": {"type": "FUNCTION", "size": 292, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_HI16", "s)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ymbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "204": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "220": {"type": "MIPS_26", "symbol": "DIntr"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "244": {"type": "MIPS_26", "symbol": "EIntr"}}}}, "0e0ea8c367a2df6ebe0b43f8f1a4387726650437": {"735f1d28": {"type": "FUNCTION", "size": 292, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.1-1"], "sdk": ["3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "204": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "220": {"type": "MIPS_26", "symbol": "DIntr"}, "228": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "248": {"type": "MIPS_26", "symbol": "EIntr"}}}}}, "scePadSetFlushRate": {"ae7d8703c75e39ea395a0d8b4fa6521ca9326fe7": {"b7bbb116": {"type": "FUNCTION", "size": 48, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.2", "3.1.0"], "sdk": ["3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "2f1f98b6b6623eb3ad80ae62c1826111486c3ab8": {"d0e115d3": {"type": "FUNCTION", "size": 16, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.1"], "sdk": ["3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "7e51e95736d31b05e28058223c632d801150e5ba": {"7b32dd6f": {"type": "FUNCTION", "size": 48, "library": "libpad", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.1-1"], "sdk": ["3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}}, "libsdr": {"sceSdRemoteInit": {"b9c6f88129d0f247ba20f62bca8e990a7822c059": {"11b75b8f": {"type": "FUNCTION", "size": 164, "library": "libsdr", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.5.3", "2.6.0", "2.7.0"], "sdk": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "68": {"type": "MIPS_26", "symbol": "scePrintf"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_26", "symbol": "FlushCache"}}}, "7c0acf1b": {"type": "FUNCTION", "size": 164, "library": "libsdr", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0", "2.4.0"], "sdk": ["2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "68": {"type": "MIPS_26", "symbol": "printf"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_26", "symbol": "FlushCache"}}}}, "effa161d972c446d4d1454f3260767c7ddcbb471": {"e93e6eca": {"type": "FUNCTION", "size": 188, "library": "libsdr", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1", "2.0.0", "2.1.0", "2.2.0"], "sdk": ["1.6.1", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.4", "2.4.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "68": {"type": "MIPS_26", "symbol": "printf"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "152": {"type": "MIPS_26", "symbol": "FlushCache"}}}}, "f46c66e5a71343290bd3b91584ed2971fca93866": {"14dd7280": {"type": "FUNCTION", "size": 176, "library": "libsdr", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "68": {"type": "MIPS_26", "symbol": "scePrintf"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "db29a15bc19444b1317eaddfa048820d910a0740": {"8a14de7b": {"type": "FUNCTION", "size": 172, "library": "libsdr", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "36": {"type": "MIP)PS2SDB", 8192}, + std::string_view{R"PS2SDB(S_HI16", "symbol": "", "original": ".rodata"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "68": {"type": "MIPS_26", "symbol": "scePrintf"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_26", "symbol": "FlushCache"}}}}, "c55f21d7b8ccb6fb56f7600be7f20d827081f2c7": {"6b35b466": {"type": "FUNCTION", "size": 196, "library": "libsdr", "scope": "GLOBAL", "is_interface": true, "versions": ["1.5.0", "1.6.2"], "sdk": ["1.5.0", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "68": {"type": "MIPS_26", "symbol": "printf"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "160": {"type": "MIPS_26", "symbol": "FlushCache"}}}}}, "sceSdTransToIOP": {"d50ab1a3fccb884ffb0f4c166d88343961fe73e9": {"86ad8e2e": {"type": "FUNCTION", "size": 132, "library": "libsdr", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0", "2.4.0", "2.5.0", "2.5.3", "2.6.0", "2.7.0", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "sceSifSetDma"}, "96": {"type": "MIPS_26", "symbol": "sceSifDmaStat"}}}}, "b7d11c51872b8e652eaf70576322ea9fab5da556": {"b8c90a98": {"type": "FUNCTION", "size": 112, "library": "libsdr", "scope": "GLOBAL", "is_interface": true, "versions": ["1.5.0", "1.6.1", "1.6.2", "2.0.0", "2.1.0", "2.2.0"], "sdk": ["1.5.0", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.4", "2.4.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_26", "symbol": "sceSifSetDma"}, "72": {"type": "MIPS_26", "symbol": "sceSifDmaStat"}}}}, "cad999be07f994a44f80f08d4b0a6dc7e9250119": {"14b86cc4": {"type": "FUNCTION", "size": 164, "library": "libsdr", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "SyncDCache"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "sceSifSetDma"}, "120": {"type": "MIPS_26", "symbol": "sceSifDmaStat"}}}}}, "sceSdCallBack": {"0f72143bbde701febfcbee128cbe1f2870065c43": {"86811c7c": {"type": "FUNCTION", "size": 16, "library": "libsdr", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0", "2.4.0", "2.5.0", "2.5.3", "2.6.0", "2.7.0"], "sdk": ["2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "379568001121d67192b561489fbcf0e0086b0eb3": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libsdr", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1", "1.6.2", "2.0.0", "2.1.0", "2.2.0"], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.4", "2.4.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "26bdc2ea573999bc0283ea4213072051ae866e8c": {"1972e47a": {"type": "FUNCTION", "size": 28, "library": "libsdr", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "486e430e72adf3e1135de3e589157f4f84cf745e": {"d6ed632d": {"type": "FUNCTION", "size": 20, "library": "libsdr", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "df64137a004d30a15c13927c9642063972d3d686": {"db022d9b": {"type": "FUNCTION", "size": 8, "library": "libsdr", "scope": "GLOBAL", "is_interface": true, "versions": ["1.5.0"], "sdk": ["1.5.0"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_GPREL16", "symbol": ".sdata"}}}}}, "sceSdRemote": {"4059f70edce047a0b7e4f5d915625d41c49214b2": {"b0823a65": {"type": "FUNCTION", "size": 704, "library": "libsdr", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.6.0", "2.7.0"], "sdk": ["2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sdr_transIntr0Hdr"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sdr_transIntr0Arg"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_transIntr0Hdr"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_transIntr0Hdr"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_transIntr0Arg"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sdr_transIntr1Hdr"}, "200": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sdr_transIntr1Arg"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_transIntr1Hdr"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_transIntr1Hdr"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_transIntr1Arg"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sdr_spu2IntrHdr"}, "244": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sdr_spu2IntrArg"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_spu2IntrHdr"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_spu2IntrHdr"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_spu2IntrArg"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "300": {"type": "MIPS_LO16", "symbol": "",)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "original": ".bss"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "364": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "392": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "488": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "508": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "560": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "572": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "608": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "636": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "644": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "b42a4a9b9875d333a068fabab5dc9b0645a2fc40": {"7a48912c": {"type": "FUNCTION", "size": 496, "library": "libsdr", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.0"], "sdk": ["2.4.0", "2.4.1", "2.4.2", "2.4.3"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sdr_transIntr0Hdr"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sdr_transIntr0Arg"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_transIntr0Arg"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_transIntr0Hdr"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sdr_transIntr1Hdr"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sdr_transIntr1Arg"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_transIntr1Arg"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_transIntr1Hdr"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "216": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sdr_spu2IntrHdr"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sdr_spu2IntrArg"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_spu2IntrArg"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_spu2IntrHdr"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "312": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "348": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "384": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "392": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "460": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "468": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "ae7636cdfbd5774abfd05b3ceac90fc46d7ba1bf": {"146f82a0": {"type": "FUNCTION", "size": 516, "library": "libsdr", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.1.0", "2.2.0"], "sdk": ["2.0.0", "2.0.2", "2.0.7", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.4", "2.4.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sdr_gDMA0CB"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_gDMA0CB"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sdr_gDMA1CB"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_gDMA1CB"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sdr_gIRQCB"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_gIRQCB"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "232": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sdr_transIntr0Hdr"}, "240": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sdr_transIntr0Arg"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_transIntr0Arg"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_transIntr0Hdr"}, "256": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sdr_transIntr1Hdr"}, "264": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sdr_transIntr1Arg"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_transIntr1Arg"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_transIntr1Hdr"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "292": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sdr_spu2IntrHdr"}, "300": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sdr_spu2IntrArg"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_spu2IntrArg"}, "312": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_spu2IntrHdr"}, "328": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "332": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "384": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "388": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "392": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "428": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "444": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "480": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "488": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "5e481f398717fbdc6dae2471f5d36263c0b4a686": {"a23d7f16": {"type": "FUNCTION", "size": 904, "library": "libsdr", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sdr_transIntr0Hdr"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sdr_transIntr0Arg"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_transIntr0Hdr"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_transIntr0Hdr"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_transIntr0Arg"}, "208": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sdr_transIntr0Gp"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_transIntr0Gp"}, "220": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sdr)PS2SDB", 8192}, + std::string_view{R"PS2SDB(_transIntr1Hdr"}, "228": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sdr_transIntr1Arg"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_transIntr1Hdr"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_transIntr1Hdr"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_transIntr1Arg"}, "248": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sdr_transIntr1Gp"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_transIntr1Gp"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "276": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sdr_spu2IntrHdr"}, "284": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sdr_spu2IntrArg"}, "292": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_spu2IntrHdr"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_spu2IntrHdr"}, "300": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_spu2IntrArg"}, "308": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sdr_spu2IntrGp"}, "312": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_spu2IntrGp"}, "352": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "356": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "368": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "372": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "388": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "424": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "428": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "440": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "452": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "480": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "528": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "584": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "588": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "612": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "632": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "704": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "708": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "720": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "732": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "760": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "764": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "776": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "788": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "812": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "824": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "836": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "c7541cfc65324eadb0351344bd0c6eb4f426c992": {"1e85269b": {"type": "FUNCTION", "size": 440, "library": "libsdr", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0"], "sdk": ["2.3.0", "2.3.2", "2.3.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sdr_transIntr0Hdr"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sdr_transIntr0Arg"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_transIntr0Arg"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_transIntr0Hdr"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sdr_transIntr1Hdr"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sdr_transIntr1Arg"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_transIntr1Arg"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_transIntr1Hdr"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "216": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sdr_spu2IntrHdr"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sdr_spu2IntrArg"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_spu2IntrArg"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_spu2IntrHdr"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "312": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "352": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "368": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "404": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "412": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "ea791810915f9dda28b9b0cf78e221772c5636d2": {"995bfd9f": {"type": "FUNCTION", "size": 764, "library": "libsdr", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sdr_transIntr0Hdr"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sdr_transIntr0Arg"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_transIntr0Hdr"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_transIntr0Arg"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sdr_transIntr1Hdr"}, "232": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sdr_transIntr1Arg"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_transIntr1Hdr"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_transIntr1Arg"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "272": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sdr_spu2IntrArg"}, "280": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sdr_spu2IntrHdr"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_spu2IntrHdr"}, "292": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_spu2IntrArg"}, "336": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "340": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "356": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "400": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "404": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "420": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "444": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "480": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "536": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "552": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "568": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "620": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "624": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "640": {"type": "MIPS_LO16", "symbol": "", ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(original": ".bss"}, "656": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "668": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "696": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}}}}, "47cb570c1e46d941fb55867ac76148db530af4c3": {"7bd77ff9": {"type": "FUNCTION", "size": 512, "library": "libsdr", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1"], "sdk": ["1.6.1", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sdr_gDMA0CB"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_gDMA0CB"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sdr_gDMA1CB"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_gDMA1CB"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "200": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sdr_gIRQCB"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_gIRQCB"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "240": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sdr_transIntr0Hdr"}, "248": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sdr_transIntr0Arg"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_transIntr0Arg"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_transIntr0Hdr"}, "264": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sdr_transIntr1Hdr"}, "272": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sdr_transIntr1Arg"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_transIntr1Arg"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_transIntr1Hdr"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "300": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sdr_spu2IntrHdr"}, "308": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sdr_spu2IntrArg"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_spu2IntrArg"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_spu2IntrHdr"}, "336": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "348": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "388": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "392": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "396": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "428": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "444": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "476": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "484": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "ab8c2b77a44c7b44e4fbf1aa4b0e915990d2a9bf": {"c92b82b6": {"type": "FUNCTION", "size": 528, "library": "libsdr", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.2"], "sdk": ["1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sdr_gDMA0CB"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_gDMA0CB"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sdr_gDMA1CB"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_gDMA1CB"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "216": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sdr_gIRQCB"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_gIRQCB"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "256": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sdr_transIntr0Hdr"}, "264": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sdr_transIntr0Arg"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_transIntr0Arg"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_transIntr0Hdr"}, "280": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sdr_transIntr1Hdr"}, "288": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sdr_transIntr1Arg"}, "292": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_transIntr1Arg"}, "300": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_transIntr1Hdr"}, "312": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "316": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sdr_spu2IntrHdr"}, "324": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sdr_spu2IntrArg"}, "332": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_spu2IntrArg"}, "336": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_spu2IntrHdr"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "356": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "364": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "404": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "408": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "412": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "444": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "460": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "492": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "500": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "6db2311a3456d0f0e4b1cddddbe283eafb958504": {"359194bc": {"type": "FUNCTION", "size": 508, "library": "libsdr", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0"], "sdk": ["2.5.0", "2.5.2", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sdr_transIntr0Hdr"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sdr_transIntr0Arg"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_transIntr0Arg"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_transIntr0Hdr"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sdr_transIntr1Hdr"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sdr_transIntr1Arg"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_transIntr1Arg"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_transIntr1Hdr"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "216": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sdr_spu2IntrHdr"}, "224": {"type": "MIPS_HI16", "sym)PS2SDB", 8192}, + std::string_view{R"PS2SDB(bol": "", "original": "_sce_sdr_spu2IntrArg"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_spu2IntrArg"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sdr_spu2IntrHdr"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "324": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "360": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "396": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "404": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "436": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "472": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "480": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "d62ccdeca1d87e5fd2ac46bb03e11343d6a31e8a": {"9e96f671": {"type": "FUNCTION", "size": 384, "library": "libsdr", "scope": "GLOBAL", "is_interface": true, "versions": ["1.5.0"], "sdk": ["1.5.0"], "compiler_versions": ["2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "180": {"type": "MIPS_GPREL16", "symbol": "gDMA0CB"}, "188": {"type": "MIPS_GPREL16", "symbol": "gDMA1CB"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "208": {"type": "MIPS_GPREL16", "symbol": "gIRQCB"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "308": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "324": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "348": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "356": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceSdRemoteCallbackInit": {"49bc401b7ec380d7e54dd51ab44e6b2c498e650f": {"3a980cab": {"type": "FUNCTION", "size": 212, "library": "libsdr", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0"], "sdk": ["2.3.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_26", "symbol": "sceSdRemote", "scope": "LIBRARY"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_HI16", "symbol": "_sdrCBThread", "original": ".text"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "_sdrCBThread", "original": ".text"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_26", "symbol": "CreateThread"}, "164": {"type": "MIPS_26", "symbol": "StartThread"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_26", "symbol": "printf"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "1f3970482d6e7e738fff471bb1bd3052ef904523": {"2459a403": {"type": "FUNCTION", "size": 212, "library": "libsdr", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0"], "sdk": ["2.5.0", "2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_26", "symbol": "sceSdRemote", "scope": "LIBRARY"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_HI16", "symbol": "_sdrCBThread", "original": ".text"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": "_gp"}, "112": {"type": "MIPS_LO16", "symbol": "_sdrCBThread", "original": ".text"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": "_gp"}, "148": {"type": "MIPS_26", "symbol": "CreateThread"}, "164": {"type": "MIPS_26", "symbol": "StartThread"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_26", "symbol": "scePrintf"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "52f10bc25fee728e6b62d81141bdcee3299ee426": {"e13475db": {"type": "FUNCTION", "size": 212, "library": "libsdr", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0"], "sdk": ["2.7.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_26", "symbol": "sceSdRemote", "scope": "LIBRARY"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_HI16", "symbol": "_sdrCBThread", "original": ".text"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "_sdrCBThread", "original": ".text"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_26", "symbol": "CreateThread"}, "164": {"type": "MIPS_26", "symbol": "StartThread"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_26", "symbol": "scePrintf"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "a7e8bb9e4ea817e1b7a47eb3bb68f0dd513bc86a": {"e13475db": {"type": "FUNCTION", "size": 212, "library": "libsdr", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_26", "symbol": "sceSdRemote", "scope": "LIBRARY"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_HI16", "symbol": "_sdrCBThread", "original": ".text"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "_sdrCBThread", "original": ".text"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_26", "symbol": "CreateThread"}, "164": {"type": "MIPS_26", "symbol": "StartThread"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_26", "symbol": "scePrintf"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "7c55d9bcb58caea4368f127b4e5ebffde13e9dec": {"e13475db": {"type": "FUNCTION", "size": 212, "library": "libsdr", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0"], "sdk": ["2.7.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_26", "symbol": "sceSdRemote", "scope": "LIBRARY"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_HI16", "symbol": "_sdrCBThread", "original": ".text"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "_sdrCBThread", "original": ".text"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_26", "symbol": "CreateThread"}, "164": {"type": "MIPS_26", "symbol": "StartThread"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_26", "symbol": "scePrintf"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "c79665f4de1e3a518683c0d0308758d167482120": {"3a980cab": {"type": "FUNCTION", "size": 212, "library": "libsdr", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.0"], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_26", "symbol": "sceSdRemote", "scope": "LIBRARY"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_HI16", "symbol": "_sdrCBThread", "original": ".text"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "_sdrCBThread", "original": ".text"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_26", "symbol": "CreateThread"}, "164": {"type": "MIPS_26", "symbol": "StartThread"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_26", "symbol": "printf"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "9eb1a799f2c75b0ae1a09622c43e987e5757f54c": {"2fbe760f": {"type": "FUNCTION", "size": 252, "library": "libsdr", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_26", "symbol": "sceSdRemote", "scope": "LIBRARY"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_HI16", "symbol": "_sdrCBThread", "original": ".text"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": "_gp"}, "132": {"type": "MIPS_LO16", "symbol": "_sdrCBThread", "original": ".text"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": "_gp"}, "176": {"type": "MIPS_26", "symbol": "CreateThread"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "200": {"type": "MIPS_26", "symbol": "StartThread"}, "216": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "220": {"type": "MIPS_26", "symbol": "scePrintf"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "0f653b1647183e857940acad27a848b9342db2f2": {"8f6c0482": {"type": "FUNCTION", "size": 240, "library": "libsdr", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0"], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_26", "symbol": "sceSdRemote", "scope": "LIBRARY"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_HI16", "symbol": "_sdrCBThread", "original": ".text"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": "_gp"}, "128": {"type": "MIPS_LO16", "symbol": "_sdrCBThread", "original": ".text"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "_gp"}, "164": {"type": "MIPS_26", "symbol": "CreateThread"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "188": {"type": "MIPS_26", "symbol": "StartThread"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "208": {"type": "MIPS_26", "symbol": "scePrintf"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "f6cf3a207326c868f6e33b47a00c496050173870": {"e13475db": {"type": "FUNCTION", "size": 212, "library": "libsdr", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0"], "sdk": ["2.5.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_26", "symbol": "sceSdRemote", "scope": "LIBRARY"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_HI16", "symbol": "_sdrCBThread", "original": ".text"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "_sdrCBThread", "original": ".text"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_26", "symbol": "CreateThread"}, "164": {"type": "MIPS_26", "symbol": "StartThread"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_26", "symbol": "scePrintf"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "4761765f4fd8c5499750be1250c9fa5fa956b600": {"e13475db": {"type": "FUNCTION", "size": 212, "library": "libsdr", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbo)PS2SDB", 8192}, + std::string_view{R"PS2SDB(l": "", "original": ".data"}, "92": {"type": "MIPS_26", "symbol": "sceSdRemote", "scope": "LIBRARY"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_HI16", "symbol": "_sdrCBThread", "original": ".text"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "_sdrCBThread", "original": ".text"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_26", "symbol": "CreateThread"}, "164": {"type": "MIPS_26", "symbol": "StartThread"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_26", "symbol": "scePrintf"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "e60179a27a4fc5b4ceb4b94751aff6ddda69065e": {"e13475db": {"type": "FUNCTION", "size": 212, "library": "libsdr", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_26", "symbol": "sceSdRemote", "scope": "LIBRARY"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_HI16", "symbol": "_sdrCBThread", "original": ".text"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "_sdrCBThread", "original": ".text"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_26", "symbol": "CreateThread"}, "164": {"type": "MIPS_26", "symbol": "StartThread"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_26", "symbol": "scePrintf"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "098128be5983e89089d3e338fff2db56f48c8009": {"e13475db": {"type": "FUNCTION", "size": 212, "library": "libsdr", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0"], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_26", "symbol": "sceSdRemote", "scope": "LIBRARY"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_HI16", "symbol": "_sdrCBThread", "original": ".text"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "_sdrCBThread", "original": ".text"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_26", "symbol": "CreateThread"}, "164": {"type": "MIPS_26", "symbol": "StartThread"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_26", "symbol": "scePrintf"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "de1c8721eb802b8bde110e5a31c90147e256693b": {"e13475db": {"type": "FUNCTION", "size": 212, "library": "libsdr", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_26", "symbol": "sceSdRemote", "scope": "LIBRARY"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_HI16", "symbol": "_sdrCBThread", "original": ".text"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "_sdrCBThread", "original": ".text"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_26", "symbol": "CreateThread"}, "164": {"type": "MIPS_26", "symbol": "StartThread"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_26", "symbol": "scePrintf"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "440b3bef2755482b1e63568ceedc9f72df9db037": {"e13475db": {"type": "FUNCTION", "size": 212, "library": "libsdr", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {")PS2SDB", 8192}, + std::string_view{R"PS2SDB(type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_26", "symbol": "sceSdRemote", "scope": "LIBRARY"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_HI16", "symbol": "_sdrCBThread", "original": ".text"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "_sdrCBThread", "original": ".text"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_26", "symbol": "CreateThread"}, "164": {"type": "MIPS_26", "symbol": "StartThread"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_26", "symbol": "scePrintf"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "d2c9217f6a95e601910a021c8a69050c9925cd43": {"e13475db": {"type": "FUNCTION", "size": 212, "library": "libsdr", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_26", "symbol": "sceSdRemote", "scope": "LIBRARY"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_HI16", "symbol": "_sdrCBThread", "original": ".text"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "_sdrCBThread", "original": ".text"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_26", "symbol": "CreateThread"}, "164": {"type": "MIPS_26", "symbol": "StartThread"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_26", "symbol": "scePrintf"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "1b70873ecf38052449c79d3b3da9a83039463213": {"e13475db": {"type": "FUNCTION", "size": 212, "library": "libsdr", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_26", "symbol": "sceSdRemote", "scope": "LIBRARY"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_HI16", "symbol": "_sdrCBThread", "original": ".text"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "_sdrCBThread", "original": ".text"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_26", "symbol": "CreateThread"}, "164": {"type": "MIPS_26", "symbol": "StartThread"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_26", "symbol": "scePrintf"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "a66347c1933db2a1deba45309075d5df1c6e4262": {"3a980cab": {"type": "FUNCTION", "size": 212, "library": "libsdr", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.0"], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_26", "symbol": "sceSdRemote", "scope": "LIBRARY"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_HI16", "symbol": "_sdrCBThread", "original": ".text"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "_sdrCBThread", "original": ".text"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_26", "symbol": "CreateThread"}, "164": {"type": "MIPS_26", "symbol": "StartThread"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_26", "symbol": "printf"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "f9417e8e9916e542c8864a20dcaa479332a1146a": {"e13475db": {"type": "FUNCTION", "size": 212, "library": "libsdr", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "", "origin)PS2SDB", 8192}, + std::string_view{R"PS2SDB(al": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_26", "symbol": "sceSdRemote", "scope": "LIBRARY"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_HI16", "symbol": "_sdrCBThread", "original": ".text"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "_sdrCBThread", "original": ".text"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_26", "symbol": "CreateThread"}, "164": {"type": "MIPS_26", "symbol": "StartThread"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_26", "symbol": "scePrintf"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "06a171053d4d9b78ae51eb439185cf32100d2bb1": {"e13475db": {"type": "FUNCTION", "size": 212, "library": "libsdr", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_26", "symbol": "sceSdRemote", "scope": "LIBRARY"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_HI16", "symbol": "_sdrCBThread", "original": ".text"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "_sdrCBThread", "original": ".text"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_26", "symbol": "CreateThread"}, "164": {"type": "MIPS_26", "symbol": "StartThread"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_26", "symbol": "scePrintf"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "2d3cbda515d93e422d495cf23ceef52cbaba6ab5": {"e13475db": {"type": "FUNCTION", "size": 212, "library": "libsdr", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0"], "sdk": ["2.7.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_26", "symbol": "sceSdRemote", "scope": "LIBRARY"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_HI16", "symbol": "_sdrCBThread", "original": ".text"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "_sdrCBThread", "original": ".text"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_26", "symbol": "CreateThread"}, "164": {"type": "MIPS_26", "symbol": "StartThread"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_26", "symbol": "scePrintf"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "b469d309cfc1c99d731deb547e80f58f1071b787": {"e13475db": {"type": "FUNCTION", "size": 212, "library": "libsdr", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0"], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_26", "symbol": "sceSdRemote", "scope": "LIBRARY"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_HI16", "symbol": "_sdrCBThread", "original": ".text"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "_sdrCBThread", "original": ".text"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_26", "symbol": "CreateThread"}, "164": {"type": "MIPS_26", "symbol": "StartThread"}, "180": {"type": "MIPS_HI16", "symbol": "", "ori)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ginal": ".rodata"}, "184": {"type": "MIPS_26", "symbol": "scePrintf"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "a862b51e521fe6807ee3f8d1332682ee8f846d8a": {"e13475db": {"type": "FUNCTION", "size": 212, "library": "libsdr", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0"], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_26", "symbol": "sceSdRemote", "scope": "LIBRARY"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_HI16", "symbol": "_sdrCBThread", "original": ".text"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "_sdrCBThread", "original": ".text"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_26", "symbol": "CreateThread"}, "164": {"type": "MIPS_26", "symbol": "StartThread"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_26", "symbol": "scePrintf"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "472c969c42579671a1c4164b8ad3d1cfacde0934": {"ef6fa53f": {"type": "FUNCTION", "size": 252, "library": "libsdr", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0"], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_26", "symbol": "sceSdRemote", "scope": "LIBRARY"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_HI16", "symbol": "_sdrCBThread", "original": ".text"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "132": {"type": "MIPS_LO16", "symbol": "_sdrCBThread", "original": ".text"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "176": {"type": "MIPS_26", "symbol": "CreateThread"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "200": {"type": "MIPS_26", "symbol": "StartThread"}, "216": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "220": {"type": "MIPS_26", "symbol": "scePrintf"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "cb29418cab7fea0fdfde67b7e2d5b50adbb7363e": {"ef6fa53f": {"type": "FUNCTION", "size": 252, "library": "libsdr", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0"], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_26", "symbol": "sceSdRemote", "scope": "LIBRARY"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_HI16", "symbol": "_sdrCBThread", "original": ".text"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "132": {"type": "MIPS_LO16", "symbol": "_sdrCBThread", "original": ".text"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "176": {"type": "MIPS_26", "symbol": "CreateThread"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "200": {"type": "MIPS_26", "symbol": "StartThread"}, "216": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "220": {"type": "MIPS_26", "symbol": "scePrintf"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "1adac3f54d63444893af76d22f50a859b9749284": {"846af1d0": {"type": "FUNCTION", "size": 240, "library": "libsdr", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_HI16", "symbol": "", "original")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: ".data"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_26", "symbol": "sceSdRemote", "scope": "LIBRARY"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_HI16", "symbol": "_sdrCBThread", "original": ".text"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_LO16", "symbol": "_sdrCBThread", "original": ".text"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_26", "symbol": "CreateThread"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "188": {"type": "MIPS_26", "symbol": "StartThread"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "208": {"type": "MIPS_26", "symbol": "scePrintf"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "51bd2dd445c323e9d85db557f1f4f175c4948528": {"e13475db": {"type": "FUNCTION", "size": 212, "library": "libsdr", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0"], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_26", "symbol": "sceSdRemote", "scope": "LIBRARY"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_HI16", "symbol": "_sdrCBThread", "original": ".text"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "_sdrCBThread", "original": ".text"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_26", "symbol": "CreateThread"}, "164": {"type": "MIPS_26", "symbol": "StartThread"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_26", "symbol": "scePrintf"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "4c7996fa4c96cd783783fbea08ed6cfdaf70e532": {"e13475db": {"type": "FUNCTION", "size": 212, "library": "libsdr", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0"], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_26", "symbol": "sceSdRemote", "scope": "LIBRARY"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_HI16", "symbol": "_sdrCBThread", "original": ".text"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "_sdrCBThread", "original": ".text"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_26", "symbol": "CreateThread"}, "164": {"type": "MIPS_26", "symbol": "StartThread"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_26", "symbol": "scePrintf"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "fac27eec3fc9d2d92f3cb03ffe804650ee67a4ca": {"846af1d0": {"type": "FUNCTION", "size": 240, "library": "libsdr", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_26", "symbol": "sceSdRemote", "scope": "LIBRARY"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_HI16", "symbol": "_sdrCBThread", "original": ".text"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_LO16", "symbol": "_sdrCBThread", "original": ".text"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_26", "symbol": "CreateThread"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "188": {"type": "MIPS_26", "symbol": "StartThread"}, "204": {"type": "MIPS_HI16", "symbol": ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(", "original": ".rodata"}, "208": {"type": "MIPS_26", "symbol": "scePrintf"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "0208e119e36d1ed4e373e4e24b5080a2ac5a52c7": {"3a980cab": {"type": "FUNCTION", "size": 212, "library": "libsdr", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.0"], "sdk": ["2.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_26", "symbol": "sceSdRemote", "scope": "LIBRARY"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_HI16", "symbol": "_sdrCBThread", "original": ".text"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "_sdrCBThread", "original": ".text"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_26", "symbol": "CreateThread"}, "164": {"type": "MIPS_26", "symbol": "StartThread"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_26", "symbol": "printf"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "8c9964394551dca126f9a57e0c54562a9d27885c": {"e13475db": {"type": "FUNCTION", "size": 212, "library": "libsdr", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_26", "symbol": "sceSdRemote", "scope": "LIBRARY"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_HI16", "symbol": "_sdrCBThread", "original": ".text"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "_sdrCBThread", "original": ".text"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_26", "symbol": "CreateThread"}, "164": {"type": "MIPS_26", "symbol": "StartThread"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_26", "symbol": "scePrintf"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "3634df20eab34b5c42379e64e9294024943cbfd7": {"e13475db": {"type": "FUNCTION", "size": 212, "library": "libsdr", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0"], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_26", "symbol": "sceSdRemote", "scope": "LIBRARY"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_HI16", "symbol": "_sdrCBThread", "original": ".text"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "_sdrCBThread", "original": ".text"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_26", "symbol": "CreateThread"}, "164": {"type": "MIPS_26", "symbol": "StartThread"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_26", "symbol": "scePrintf"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "_sdrCBThread": {"25e6ff3390a06b2159521811770a0f99b572f3a2": {"277c5607": {"type": "FUNCTION", "size": 100, "library": "libsdr", "scope": "LOCAL", "is_interface": false, "versions": ["2.3.0", "2.4.0", "2.5.0", "2.5.3", "2.7.0"], "sdk": ["2.3.4", "2.4.2", "2.4.3", "2.5.0", "2.5.3", "2.5.4", "2.5.5", "2.7.0", "2.7.1", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "16": {"type": "MIPS_26", "symbol": "GetThreadId"}, "28": {"type": "MIPS_26", "symbol": "sceSifSetRpcQueue"}, "36": {"type": "MIPS_HI16", "symbol": "_sdrCB", "original": ".text"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "_sdrCB", "original": ".text"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_26", "symbol": "sceSifRegisterRpc"}, "80": {"type": "MIPS_26", "symbol": "sceSifRpcLoop"}}}}, "2addd939563bf066d4707a960bcc95c5bfa94065": {"fca22f7f": {"type": "FUNCTION", "size": 112, "library": "libsdr", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "3.0.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_26", "symbol": "GetThreadId"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "s)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ymbol": "sceSifSetRpcQueue"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_HI16", "symbol": "_sdrCB", "original": ".text"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "_sdrCB", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "sceSifRegisterRpc"}, "104": {"type": "MIPS_26", "symbol": "sceSifRpcLoop"}}}}}, "_sdrCB": {"99d3b7ffc284a29ee098f5223eb31e50b9021dbf": {"8783e108": {"type": "FUNCTION", "size": 224, "library": "libsdr", "scope": "LOCAL", "is_interface": false, "versions": ["2.3.0", "2.4.0", "2.5.0"], "sdk": ["2.3.4", "2.4.2", "2.4.3", "2.5.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "c00bbee077f63202404f25c39c1dd0e6c6dceaad": {"07265a97": {"type": "FUNCTION", "size": 156, "library": "libsdr", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0"], "sdk": ["2.5.3", "2.5.4", "2.5.5", "2.7.0", "2.7.1", "2.7.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "184fe7e89e140bd2a404f42359824c3913e3b9f2": {"75a6d23d": {"type": "FUNCTION", "size": 248, "library": "libsdr", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "3.0.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceSdRemoteCallbackQuit": {"c72ad2f22888f4e39ab8fdfdc1eda08db7e71eed": {"0786e007": {"type": "FUNCTION", "size": 312, "library": "libsdr", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "sceSdRemote", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "sceSdRemote", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "sceSdRemote", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "sceSdRemote", "scope": "LIBRARY"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "220": {"type": "MIPS_26", "symbol": "sceSifRemoveRpc"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "232": {"type": "MIPS_26", "symbol": "sceSifRemoveRpcQueue"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "244": {"type": "MIPS_26", "symbol": "TerminateThread"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "260": {"type": "MIPS_26", "symbol": "DeleteThread"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}}, "libcdvd": {"CB_DelayTh": {"ad849324198c2b60157a3e8d2eb2ba064fa172c0": {"1e160fd9": {"type": "FUNCTION", "size": 36, "library": "libcdvd", "scope": "LOCAL", "is_interface": false, "versions": ["-2.-2.-2-46", "2.2.1", "2.)PS2SDB", 8192}, + std::string_view{R"PS2SDB(2.2", "2.2.4", "2.3.0", "2.3.4", "2.4.0", "2.4.2", "2.5.0", "2.5.2", "2.5.3", "2.6.0", "2.7.0", "2.7.1"], "sdk": ["2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "iSignalSema"}}}}, "f0ba8beba54aa6bc4e337e6b93db005fe4e6b800": {"f8064047": {"type": "FUNCTION", "size": 8, "library": "libcdvd", "scope": "LOCAL", "is_interface": false, "versions": ["2.1.1", "2.1.3", "2.2.0"], "sdk": ["2.1.1", "2.1.3", "2.1.4", "2.2.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_26", "symbol": "iSignalSema"}}}}}, "sceCdDelayThread": {"dff9762df2a970acdcdaef79b130389360ee6713": {"7a558e31": {"type": "FUNCTION", "size": 104, "library": "libcdvd", "scope": "GLOBAL", "is_interface": false, "versions": ["-2.-2.-2-46", "2.1.1", "2.1.3", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.4", "2.4.0", "2.4.2", "2.5.0", "2.5.2", "2.5.3", "2.6.0", "2.7.0", "2.7.1"], "sdk": ["2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "CreateSema"}, "48": {"type": "MIPS_HI16", "symbol": "CB_DelayTh", "original": ".text"}, "60": {"type": "MIPS_26", "symbol": "SetAlarm"}, "64": {"type": "MIPS_LO16", "symbol": "CB_DelayTh", "original": ".text"}, "68": {"type": "MIPS_26", "symbol": "WaitSema"}, "76": {"type": "MIPS_26", "symbol": "DeleteSema"}}}}}, "sceCdCallback": {"67e6fbe5ce739c58ae39609c1dd184d1b554fb8d": {"dd944420": {"type": "FUNCTION", "size": 92, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["-2.-2.-2-46", "2.5.0", "2.5.2", "2.5.3", "2.6.0", "2.7.0"], "sdk": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "sceCdSync", "scope": "LIBRARY", "original": ".text"}, "36": {"type": "MIPS_26", "symbol": "DIntr"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_26", "symbol": "EIntr"}}}}, "d3639560fdc2796319c5bc091c7d07ba658e8cb7": {"ce40d863": {"type": "FUNCTION", "size": 84, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.4", "2.4.0", "2.4.2"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "sceCdSync", "scope": "LIBRARY", "original": ".text"}, "36": {"type": "MIPS_26", "symbol": "DIntr"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_26", "symbol": "EIntr"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "e5f6e260e31c5bc096d26ea2dcea2ed5dff5fb9e": {"7a387af8": {"type": "FUNCTION", "size": 104, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "sceCdSync", "scope": "LIBRARY", "original": ".text"}, "36": {"type": "MIPS_26", "symbol": "DIntr"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_26", "symbol": "EIntr"}}}}, "9a5dd1a35c07367a1cd657d203feb85aeb1aa962": {"41f130aa": {"type": "FUNCTION", "size": 60, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.2", "1.6.5", "2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "sceCdSync", "scope": "LIBRARY", "original": ".text"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "_sceCd_cd_callback": {"a3e5dd9463f25f1d76b7e00c85a943d3e35da4dc": {"c4540a8e": {"type": "FUNCTION", "size": 160, "library": "libcdvd", "scope": "GLOBAL", "is_interface": false, "versions": ["-2.-2.-2-46", "2.2.4", "2.3.0", "2.3.4", "2.4.0", "2.4.2", "2.5.0", "2.5.2", "2.5.3", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_26", "symbol": "iSignalSema"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_26", "symbol": "iSignalSema"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "_Cdvd_cbLoop": {"8987fac9f08253b6c3a7196bbb657728e1660bea": {"ffad51db": {"type": "FUNCTION", "size": 188, "library": "libcdvd", "scope": "GLOBAL", "is_interface": false, "versions": ["2.2.4", "2.3.0", "2.3.4", "2.4.0", "2.4.2", "2.5.0", "2.5.2", "2.5.3", "2.6.0", "2.7.0"], "sdk": ["2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {)PS2SDB", 8192}, + std::string_view{R"PS2SDB("type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_26", "symbol": "WaitSema"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_26", "symbol": "ExitDeleteThread"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_26", "symbol": "scePrintf"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}, "4d3c0727": {"type": "FUNCTION", "size": 188, "library": "libcdvd", "scope": "GLOBAL", "is_interface": false, "versions": ["2.2.0", "2.2.1", "2.2.2"], "sdk": ["2.2.0", "2.2.1", "2.2.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "WaitSema"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_26", "symbol": "ExitDeleteThread"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_26", "symbol": "printf"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "cdedc9640049f2454ed8a761cce4256114bee6f3": {"7f4e8fe8": {"type": "FUNCTION", "size": 208, "library": "libcdvd", "scope": "GLOBAL", "is_interface": false, "versions": ["2.7.1", "2.8.0"], "sdk": ["2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_26", "symbol": "WaitSema"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_26", "symbol": "ExitDeleteThread"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_26", "symbol": "scePrintf"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}}}}, "12d9b279fcd73d2e176c79aeb4f6b6e5ba68ab02": {"3b23b4e4": {"type": "FUNCTION", "size": 176, "library": "libcdvd", "scope": "GLOBAL", "is_interface": false, "versions": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_26", "symbol": "WaitSema"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_26", "symbol": "ExitThread"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "printf"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "3ec37b603a933038befeb0cb71eb8f1bd32eedd9": {"5d4dd7b6": {"type": "FUNCTION", "size": 200, "library": "libcdvd", "scope": "GLOBAL", "is_interface": false, "versions": ["2.1.1", "2.1.3"], "sdk": ["2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".dat)PS2SDB", 8192}, + std::string_view{R"PS2SDB(a"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_26", "symbol": "WaitSema"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_26", "symbol": "ExitDeleteThread"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "printf"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "184": {"type": "MIPS_26", "symbol": "PowerOffCB", "scope": "LIBRARY", "original": ".text"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "7e793a9bb1f0bff868d0093baadd38ce0707dccf": {"badade9d": {"type": "FUNCTION", "size": 188, "library": "libcdvd", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0"], "sdk": ["2.0.0", "2.0.2", "2.0.7", "2.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_26", "symbol": "WaitSema"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_26", "symbol": "ExitThread"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_26", "symbol": "printf"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_26", "symbol": "PowerOffCB", "scope": "LIBRARY", "original": ".text"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "b4f3c26f68311e75f3bef1762e0fcb541c3cdfc9": {"2ca11d79": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": false, "versions": ["1.6.5"], "sdk": ["1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_26", "symbol": "WaitSema"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_26", "symbol": "ExitThread"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_26", "symbol": "printf"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "192": {"type": "MIPS_26", "symbol": "PowerOffCB", "scope": "LIBRARY", "original": ".text"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "208": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}}}}, "1c5eef563d5e6341a39fefff7d18ef70fc25bbcd": {"45179112": {"type": "FUNCTION", "size": 188, "library": "libcdvd", "scope": "GLOBAL", "is_interface": false, "versions": ["1.6.1"], "sdk": ["1.6.1"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_26", "symbol": "WaitSema"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_26", "symbol": "ExitThread"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_26", "symbol": "printf"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "adecb4369323d663b9be67bb1901d2b9fbea68f2": {"3b23b4e4": {"type": "FUNCTION", "size": 176, "library": "libcdvd", "scope": "GLOBAL", "is_interface": false, "versions": ["1.6.2"], "sdk": ["1.6.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS)PS2SDB", 8192}, + std::string_view{R"PS2SDB(_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_26", "symbol": "WaitSema"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_26", "symbol": "ExitThread"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "printf"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "c45bc97e76e0f37ca1b16cc0a976f96af0dff208": {"9b95e445": {"type": "FUNCTION", "size": 208, "library": "libcdvd", "scope": "GLOBAL", "is_interface": false, "versions": ["-2.-2.-2-46"], "sdk": ["2.5.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_26", "symbol": "WaitSema"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_26", "symbol": "ExitDeleteThread"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_26", "symbol": "scePrintf"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceCdInitEeCB": {"67b2a3372bbb1495233ee1cca4f07b5d5e190c35": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "85d4cbd62ff29fcdf606b658a943df48e356ca0e": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.2"], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "74b294dfc57afd8dc72b4cba4845f188e24c12e3": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "bb4b0abf30dbc5a8822dbf1403c3c1b5ab6aba73": {"f30483b4": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.4", "2.5.0", "2.5.3", "2.7.0"], "sdk": ["2.3.4", "2.5.0", "2.5.5", "2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_HI16", "symbol": "", "original)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": "_gp"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": "_gp"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "cb51212c7af8a01127989c1c3e241ef3c2ad9dcd": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.2"], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "87e63b69528e9f930930b67deb045c0e691c8bc9": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.2"], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "847fab189c39d73cfd7e310de9ebeb969b52ad0b": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.2"], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "bc48593bdbe94fae5ffba8bcf0cc1fceb199e1be": {"eab8f995": {"type": "FUNCTION", "size": 204, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.1", "2.8.0"], "sdk": ["2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "124": {"type": "MIPS_26", "symbol": "CreateThread"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_26", "symbol": "StartThread"}, "160": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "8fcac7ab8367a6409b2a9307f3c6a3b8db624b14": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0"], "sdk": ["2.2.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "270ee35321ef379a7258b3f9cc1eeb00ce74000a": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0"], "sdk": ["2.2.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": )PS2SDB", 8192}, + std::string_view{R"PS2SDB(".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "94900761243fe80465ce8cea84e30f0ac100cc9e": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0"], "sdk": ["2.2.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "b474bd3ca6aed1a573860004a3fbfa20ac06fad7": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0"], "sdk": ["2.5.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "aec3df045dabcdc16afe8090d6a6e3fb72bf9190": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0"], "sdk": ["2.3.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "92d36948d01101c769ff344c1fc5a69af4a54ba6": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.6.0"], "sdk": ["2.6.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "bda6837764f3864d01c0038b971a10f48bc8a5b9": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.6.0"], "sdk": ["2.6.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "f67a27afbea200b6685e81d7e28d23a019f1610e": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0"], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "bfe5e1a14f1e8671b31f4183b7ae95354197873c": {"48a73861": {"type": "FUNCTION", "size": 212, "libra)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ry": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.5.3"], "sdk": ["1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "bcbde7b232d7547e1ab31b495af12c4970a279a9": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.5.3"], "sdk": ["1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "e088bd1b2de8c970e59aaa4a6858c388c7d0de8b": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.3"], "sdk": ["2.1.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "aa557672661bab2d84f14419e8411ed087358542": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.4"], "sdk": ["2.3.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "0b81379bae79ac82fb0f166e096403f1d43fc794": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.6.0"], "sdk": ["2.6.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "9e7e025b9e22c2cd6ee1f3290aaa030fe8b19ae1": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0"], "sdk": ["2.3.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "0eb6440c369b078b69d7abacbe4055e27c095e5f": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"t)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ype": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "251c0801fd0e1c7dd5a164f701a8e387dde84978": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0"], "sdk": ["2.3.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "58e94fec90f8635d6cb161a21f4b80c6995a00f8": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0"], "sdk": ["2.3.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "2e8a6ffd041532b19eea06d089e6e76957363cc4": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0"], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "05400ba003bc81c2e6a3de98987cb86d30ab892c": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "db35d626bec1d06cd0f460187b4d72439fe35b2b": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "58dd6475fc7300aa9e244e90dc982ecfe8995e81": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.0"], "sdk": ["2.1.0"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16)PS2SDB", 8192}, + std::string_view{R"PS2SDB(", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "77898c4f7d3d8c910a9398c6f53214c67c0c0e13": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.2"], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "1572617f3c6e619eb6bf3e3e4eecaf05eeebdaff": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.5"], "sdk": ["2.0.7"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "4db392ac0053507cc2e83992e1d2aa18f7d88fea": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.4"], "sdk": ["2.3.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "0f26072f92e62be3295edcaeab2ba70de732a504": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "0da4744d9381ea933e97daa7f58783aeaa98de67": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.2"], "sdk": ["2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "959a02346d088755d7356a3926f0eae102396c4b": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.2"], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", )PS2SDB", 8192}, + std::string_view{R"PS2SDB("symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "c667c9519435db98c469973b3fdd2c22fcce0890": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.2"], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "4db1bd7ed4bf2d08be77b8a4029b07ae74607bd8": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.2"], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "7f5c590810d1b0878f8d05592865103568083cf2": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.5"], "sdk": ["1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "0619dab2d49e493d783436cdca14309cacf7eea4": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.5"], "sdk": ["1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "9a880664532e85d930b6a9ce38c0bc1740047460": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0"], "sdk": ["2.3.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "98c2266995cc5f018c68ed951aa434b08ca5c3ac": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0"], "sdk": ["2.3.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "bfc8f56cfeb16d1c2f303efce8bb5a60a294a951": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0"], "sdk": ["2.3.)PS2SDB", 8192}, + std::string_view{R"PS2SDB(0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "6ae2dbaa9e44e7fc604e64c001c6c82e0afc4044": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.2"], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "2ec7914b8fffdb73c26564c481dde82bea70a3a8": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0"], "sdk": ["2.5.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "e1e2c2827b3e8604def3d3293ec00ed9cef34a80": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0"], "sdk": ["2.5.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "e9830daa14516c82126547a4a39090ee468cd004": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.6.0"], "sdk": ["2.6.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "35ceec5526eabc09e3f1660bd46f0da336b792c9": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "92b7d6564306151b45d5fccfff177075957688bf": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.2"], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symb)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "d619383f88b83e9fe473fd6b97004c970a296e09": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.2"], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "bd94ca36a3578f00c9267210a3abbaea55efeb7b": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.4"], "sdk": ["2.2.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "82f3476b7ad101e82c660ae45aeb039751cff0ca": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.1"], "sdk": ["2.1.1"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "fd58ef5c61d8a787dfbc4c305c3a907d8098cb60": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.4"], "sdk": ["2.2.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "fbf907641451cde628273c9daded781131fcd3cc": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0"], "sdk": ["2.5.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "5935089da98dd7ad3f31c2a55b917345f1153162": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.2"], "sdk": ["2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLo)PS2SDB", 8192}, + std::string_view{R"PS2SDB(op", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "33aee68a38ae38c215a29c33b483e239d966471c": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.5"], "sdk": ["1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "eb6236ccbae3cd849c9d0d1727a3669c5b07b13a": {"d1a5f907": {"type": "FUNCTION", "size": 156, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_HI16", "symbol": "_sceCd_cbLoop", "original": ".text"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "_sceCd_cbLoop", "original": ".text"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_26", "symbol": "CreateThread"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_26", "symbol": "StartThread"}, "124": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "a0cfaea9bf928f79f5d078193f3eec6a5937585f": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.2"], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "b7522164fa6a317885c0a042f19bbbd72e4ce12f": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.2"], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "b961a1f49e0ff6e09c6215ece8fd1f3436401cdc": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.2"], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "494aae6c3cf0dea5367b3327ad06f661bf8f0805": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.5"], "sdk": ["1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "3c8373c0b91aba3a72f33fde06bf2f3eb66ce5d4": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_inte)PS2SDB", 8192}, + std::string_view{R"PS2SDB(rface": true, "versions": ["2.1.3"], "sdk": ["2.1.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "02974aff4a721bf912028382226beaf7f42ba732": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.3"], "sdk": ["2.1.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "068b35b7e6b5b20740f59fd0cddb04216458efb6": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.3"], "sdk": ["2.1.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "d4382db54ca0ebb8448d4ce7fdfd7c7c6c088379": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.5"], "sdk": ["1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "bbdd65d69816785a5ade76a6776fb972a5d1283c": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0"], "sdk": ["2.3.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "ebeebeb025ed1da4855c647a851f21ec843cf8f4": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.0"], "sdk": ["2.4.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "1c2443c8c3e19b4207ad4b324a4c842b90cda398": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "ori)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ginal": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "797bb623be06585abc6d24280564c357e91cd561": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.3"], "sdk": ["2.1.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "4b7f2ffd4e4809d22584c1a486bdd065c8bdea5f": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.3"], "sdk": ["2.1.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "e83fd8e5314ea519025c0e584420763e3be962fe": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.2"], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "d69f9a3199528074109f9bbf90c91f556f476b7d": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.2"], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "fe49b231eb8fd3622db12178d8041a14717921db": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.2"], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "0ad2101c1979792f051529291e1930104f2a3438": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"},)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "89d387b0def884293e26307a8c74ce010ab77897": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0"], "sdk": ["2.5.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "4031b72aed298eccc2b78b289b4805843b4e0fb2": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "b43884b81c57f0d1fbd8dbe72053a5d29178146a": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "02b9db5a336002973d3deb3e5d92acc9a77b6728": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0"], "sdk": ["2.3.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "2883e0f554a75c3abb15bd169a09c3903e41871c": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0"], "sdk": ["2.3.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "10388ab2653c997a80e2ab9566edb8f9b78e104a": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0"], "sdk": ["2.5.7"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "682dced468e5cf8c97da5d01d2c4cd705ee7ba21": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0"], "sdk": ["2.5.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "3e5b1b6804cc4dc9d4ca886b9673995e7176a37c": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.5"], "sdk": ["1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "9bff11b6aec776478f15e2b336bbabde112089c0": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.5"], "sdk": ["1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "f45a645c8c37fbb564fb061f7d221d0873db4b17": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.3"], "sdk": ["2.1.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "aded5ba16a935a2d8ce2aae0d25cc3625f5bb1a1": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.2"], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "37a616dc1662971d6ced20d68e31f5366b08fd8b": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.0"], "sdk": ["2.4.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "58bb19dd8cce7546dd3b8ee43d0821d12dc1d6b6": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.3"], "compiler_versions": ["2.4.1.01"], "re)PS2SDB", 8192}, + std::string_view{R"PS2SDB(locations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "6f91639b306598099a4f9af4e9f77d412c321724": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1"], "sdk": ["1.6.1"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "808ab148be84e9165b98c917a38fd9c66321c53f": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.3"], "sdk": ["2.1.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "ebc53bd6cc8f6d66eb536218ad2cb45d01704b50": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "c426ecc24ef94f832969eb10ef79ce9f33246410": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.1"], "sdk": ["2.2.1"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "81418c9b61b4e9fddf8ef93dd8b4b2c99cb14253": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "54bdd261a69dd17d4d103a48e4b703c5ca0c2a58": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {)PS2SDB", 8192}, + std::string_view{R"PS2SDB("type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "76a44114fc700639ba1cf293761dd3676746e5b0": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.3"], "sdk": ["2.1.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "ebf6956e3e494563140fb9a2150160bcac6fc27b": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.4"], "sdk": ["2.3.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "5798a97679689c9b35f196912d0b9bb3fb8d70dd": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0"], "sdk": ["2.3.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "ea22c7209ba6adca623611e7a5c4f13e9aa8ec80": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0"], "sdk": ["2.3.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "b280a45d5fe130c0b6e9ec34d45f0755998768f3": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.2"], "sdk": ["1.6.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "ea00be8ca4f71b2f1b39a8d0b2e017f90c631c92": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.2"], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": )PS2SDB", 8192}, + std::string_view{R"PS2SDB("MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "1f6d95c1f6cc013a5cf7e5f34d5dabc4a2f3667f": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.3"], "sdk": ["2.1.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "84bc8e6040ba1f3d272f46d684bde49c5a21b181": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "e6a67d6449772eb12da4020257007722ac8eba91": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.4"], "sdk": ["2.2.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "3e6787a88d20ec1a87609e3ac0dd0ef23538a175": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0"], "sdk": ["2.5.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "c291d92405cd0f04e254ccd6033cad73373bd67c": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0"], "sdk": ["2.5.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "b888b5b957e4e94bd42d46f011233b9aa1289382": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.3"], "sdk": ["2.1.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "Cha)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ngeThreadPriority"}}}}, "6e42d3d74808da9a8f0185da7a1ba759d0a506c7": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.4"], "sdk": ["2.3.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "ce1bbdd0ce7a8db5e57c353667e008f888277e13": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "1b1c23a24d5efa9ba940a5a0d4e1a853a98144ba": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.2"], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "622b61305db4b91c6e1883999e682e53b9354601": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0"], "sdk": ["2.2.0"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "b7e25cec2373f445ae4700b895c9406b3aa8846b": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.5.1"], "sdk": ["1.5.1"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "c8b0701133addc4787447bbd893b0d1965edddf6": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.4"], "sdk": ["2.2.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "543315046e97a00ee54f73222b89b5b99e653a6b": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.4"], "sdk": ["2.3.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"ty)PS2SDB", 8192}, + std::string_view{R"PS2SDB(pe": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "5b49684b98668fc3de087ecf709f8f8910763061": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.4"], "sdk": ["2.2.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "ef479d089e7db6006a8e17c410d2a8a3ea2a13de": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.3"], "sdk": ["2.1.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "18f2a8e9fb2b61287a4d90f094af3227bfba38ab": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.2"], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "0162ea1cd3925890f7d7ffde82eed1d031de387d": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.2"], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "e824e51fdff990aa5e88e8d6d019031591fdc5d7": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.2"], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "51d788e24c58b7406109d6a3dbfd7da926ec84a5": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.0"], "sdk": ["2.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symb)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "bee4914a90a9b4e83b03ed37a1510ff841bc6605": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.0"], "sdk": ["2.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "bf1c9a70f1bc0fdd8a37f8c2c8a23bc8866c4b9a": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.0"], "sdk": ["2.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "20da781f1b5dab57d6f279ccd1ddacaea8e24c14": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0"], "sdk": ["2.5.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "407e00f07b3bf6a3bd928fc46e92f30cfd65d0e6": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0"], "sdk": ["2.0.0"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "5d2dd38dcb3ee81aa8b2e13e2765a087b47eec7f": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.2"], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "446a01e7fd4390aa702dc39afe4c42a5b6c5bddc": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.6.0"], "sdk": ["2.6.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": )PS2SDB", 8192}, + std::string_view{R"PS2SDB("_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "a89abaf061d7b199f15d6d7c4ff5838ace501635": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.4"], "sdk": ["2.3.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "90f603909b64bdd38f82cdd5de4d56dde21f6201": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.4"], "sdk": ["2.3.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "5de1423dad867eb7d268b9d77ca7e9cd746473f5": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.3"], "sdk": ["2.1.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "93477cd98af6d026e1abe3f0355a8d416ceecf7c": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "6c2337ce08efa4c7c5a015f0d1523d51b5db2d97": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.5"], "sdk": ["2.0.7"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "8c0501702fbf1d3c807d8068239b9a6513ba5f8a": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.2"], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "177cefa64a3df78a36047be4506c8ac30fb57918": {"48a73861": {"type": "FU)PS2SDB", 8192}, + std::string_view{R"PS2SDB(NCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.6.0"], "sdk": ["2.6.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "1e36a758292ea93862577722293ba1b38019dcae": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.2"], "sdk": ["2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "34dec97ebd9e9f46875c00d5f1fb3116bdc26fcb": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.5.3"], "sdk": ["1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "c86d7627495a81d7f4c58e4045faff44d207ae70": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.0"], "sdk": ["2.4.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "cfb267dbc7bca429071142528d1a80ca189537f3": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.2"], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "bb3f05f1d22b55b3764c3388c030c01fe6d58e6f": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.2"], "sdk": ["2.5.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "02f08b4489fa0b2d69919a46edb2bc095d8b37f0": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.2"], "sdk": ["2.5.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "c1e97d435333d74bc94480835efa74cab5a525cd": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.5"], "sdk": ["2.0.7"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "5ade5924f98b7d050b819df0fc0607996939581a": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0"], "sdk": ["2.3.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "be1972956916b85d26a5b393aef5ee08ec7fb02b": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.5.0"], "sdk": ["1.5.0"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "286c90cf61c509be366066612ea28920f681cb76": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "60b5697f2e711a387b01c74070c42949d696fdb0": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.0"], "sdk": ["2.4.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "3a7c8b97820622e3b309cb6684ae689ec5d717d3": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss")PS2SDB", 8192}, + std::string_view{R"PS2SDB(}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "01827b69203c07fb1816d0678e0e68ca6543ce21": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "9a4761a5bf2eea6c183832b1a2e8625d3aecfaf1": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.2", "2.5.3"], "sdk": ["2.4.2", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "35665973b71b66eca2a6431f99973d2d9ebe790d": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "9183cb57d2ffb8ba9b97577a9be090dc80b63d85": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "d1847e63bb841405f98ebef9128a340ae4ec520e": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "9a31e77ac2700f8d367777e6ab2f9dd807a80775": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.6.0"], "sdk": ["2.6.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": )PS2SDB", 8192}, + std::string_view{R"PS2SDB("CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "0576213d18ad51a36cac7506ab139b73c6822bb7": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0"], "sdk": ["2.3.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "a26529618be0f287d5db0f4fbac42f24e055b29f": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "89f45819e7dfb2f1c29365e0c42956f7b5aab530": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "0bd23e59cd0892648351b7a23c75b2c6f4ed9864": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0"], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "f4a9de0f9a8dbb6ba398829a8c3eaad30dc8d7d1": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "5a515ef8edbd588021498298a1690ec32ae3c0ae": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.2"], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "7583b0e2534c0e392444911db5acdebd8db519b2": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interfac)PS2SDB", 8192}, + std::string_view{R"PS2SDB(e": true, "versions": ["2.4.2"], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "c73afcdb32d4c45620cb2427d62f992853230710": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0"], "sdk": ["2.3.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "f788677eb28047435682e1b40a545db43c7a588c": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.2"], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "d9d0252dda527e070a94d0bf9876ec39fc15888e": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0"], "sdk": ["2.3.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "f85f8031478af881efb60890b0cb1b6d9d542a7e": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.2"], "sdk": ["2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "e4669e322961663c69d3373ed0059a7fbaa21d45": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.2"], "sdk": ["2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "7372ef16e3552862a152a1c0f1bd62dca1054cd0": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.2"], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "origina)PS2SDB", 8192}, + std::string_view{R"PS2SDB(l": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "c00d42840d86d1750d7c526a10c5540d95fbb80d": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "bb9b89907f54ecb26e4c27a6dee59dd1fb6a68d6": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "14df84df0bf4362341438e17ac2bec405e380bf5": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "428ffb1d52388705ac032e07fee11a8be37ae6b3": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0"], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "ccb4ef6eab058550f3b784c61cb98887c9c42632": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.4"], "sdk": ["2.3.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "391e0d1769205418e211298f8bc00b164f6ce41c": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0"], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "0eecf7f8d19266b9ff308bd668f4f2517d1e33dd": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0"], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "9ab6ad5474d4f52b90ec683fd0fb75cc8123c8fa": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.5.3"], "sdk": ["1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "aecb9bdbdc0b5d91e86d1e503d383a2189d9329b": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.5"], "sdk": ["2.0.7"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "9250f8245ec60362454c54835abf409d479112da": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.2"], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "c4bb13e41bbc1eda282a1ed84fe9d064b079f135": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.2"], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "8621db29c882bf0eaf659a9ed9b1ebb4f25e905f": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "96601c8ca66f29fd48bae4f160edf723338490f4": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.2"], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "5b49c8d6357dd31866d136c33b942c32529d7ffa": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.1"], "sdk": ["2.2.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "207a027ef11e3a9267d0863806249c1d1d9edacc": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.2"], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "20c9475c490efb68dcbb9e7d6d2d738004c8a88a": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0"], "sdk": ["2.3.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "60ee7ca5bd052bed181d188a8834c273b71c7bdf": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.4"], "sdk": ["2.3.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "a8c1e6d251b02b672bc77f28f2e8ca5da584cc7b": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.2"], "sdk": ["2.2.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "603916d8d9b9f23b0960090039415e68299ec3ec": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.2"], "sdk": ["2.2.2"], "compiler_versions": ["2.3.1.01"], "reloca)PS2SDB", 8192}, + std::string_view{R"PS2SDB(tions": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "1beb5ad9b29e5c73b7ae97d2aa448fea0d2c06f5": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.2"], "sdk": ["2.2.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "f85048c005d04dd1bf4b8fc31d013c60d5b3916f": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.2"], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "fdabb3f3f5efa97a6dc9076a63c7c223bf9d4aae": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0"], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "5598c17dd43df38815618634b45893ae03e43bca": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "3817e1b811a06caa19b92f6fcbe708b63d688859": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "74b298db7cc34fba37c49f2aca2fef701c52b715": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.4"], "sdk": ["2.2.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"typ)PS2SDB", 8192}, + std::string_view{R"PS2SDB(e": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "e61430665bfe963eb0e8adf03677e6d78900bc13": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.2"], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "37c386ac4ec209ecc89164fe1a4fae6e831b273d": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.2"], "sdk": ["2.5.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "df7b76e819826395cad0148ddcfe182aa8900a3a": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0"], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "e3085acceee37066a0ff6a077e0701918deb86a2": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0"], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "eb4662cf57f113f51b25c614c853eeff4d80c947": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0"], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "bc5d41468176d9852c6c0fa27acf3a41f8b85559": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0"], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIP)PS2SDB", 8192}, + std::string_view{R"PS2SDB(S_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "d0a2e1ce0e192ceceaa92a347d1b7890fee18083": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0"], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "9ddfe64891f1a67c24ae9f076ee61beb385897a0": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.2"], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "99167b8dac4d1b84550fa4a3c9f017917c678abb": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "80eee050f4792ee668f964497083b69ca3863b25": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "a2074e59670b258f3e900d363503a48d823baa62": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.2"], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "607e460cca0f9353863baec7b1a893e9190065ef": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.4"], "sdk": ["1.4.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeT)PS2SDB", 8192}, + std::string_view{R"PS2SDB(hreadPriority"}}}}, "7be63ed9ad8986851c67b8b112f718d5d0a6af12": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.2"], "sdk": ["1.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "334c100e6323ac148897d593d25c614a16e5f49c": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.0"], "sdk": ["2.4.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "3252b7caeba6e0d23e58c6622e1ba2f47edef79f": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "de9f3b23402326c09b6d976803c9106442e184d5": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.0"], "sdk": ["2.4.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "214938fe98700e660f0d6877a07a815d4ca4b8bb": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.4"], "sdk": ["2.3.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "620d059d0cc7f7bade2923b753f166219fb36b68": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.5"], "sdk": ["1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "56fd4663b7c59f40d692371d8294261e26419b75": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.5"], "sdk": ["1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "0eea4d2b3b17dabd9fa69e4b7e12b47b433cc3d0": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0"], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "5fd2fbb4f614819f1f1b613419d908c1778da131": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "2e2d9f2c45dfc1d13f0170384d128488218863f7": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "cee9f7d507f162f38f5dba47d47d0eacbfc7f965": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "9b3951176afeebcf7547cb76a1f2cb9bd6a46e49": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "b8f91ed35a4b584698862be9fcda6a460fe9c186": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.2"], "sdk": ["2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "dc518c7d8beb0abf50eafd9d57d16737f468c3d4": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.2"], "sdk": ["2.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "e2649d2a939db7dac42cff64ac7136e140394f65": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.2"], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "1cd62c3772824b8f26374c98683df1e0a9d3c0b8": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.2"], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "f3ca66fc319c9cfcbb02ec90aa9c9fa04fca182c": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "ecfb1ba293d8deee09873bcf4359d8d7c75c1634": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["-2.-2.-2-46"], "sdk": ["2.5.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "fde2fc14de382c553fd7ae4055bf8952763bdc53": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["-2.-2.-2-46"], "sdk": ["2.5.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "s)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ymbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "bd10075d46a7e0c0b936ca52f9b966a3daf19b70": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.2"], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "e8857728e6e0c35a5ae2f4ab9afbaa1a83d63928": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0"], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "c6c38f8d9b83f69a563ada249b7a47253c528538": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.2"], "sdk": ["2.5.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "ec4edb37f75a2730e3f5708d956771238b835c71": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0"], "sdk": ["2.3.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "b5797228227f650af900cb6d7a1d434596ea0064": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "3fa4927b95eabb576e4ff6830b85e41f593b0cc7": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "f915fbf0e5b5aefd9864801d6f477c0a2d180b3b": {"48a73861": {"ty)PS2SDB", 8192}, + std::string_view{R"PS2SDB(pe": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "46a7ae4c2bd86c7d4640c83d20ea46121cafc304": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "a047bb655edb133612d2c828a2d10eb66c2f12cb": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.2"], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "bc97d22ba725d62389456d4b3a5e826c9e9c95e6": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.4"], "sdk": ["2.3.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "26c3feed7113c42c4499f14e933befafa395a3e5": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.2"], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "3093ee0e62099df2533f8054df4102533fb07c57": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.2"], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "305c26cf49e8b446b2e7dbedb7af022e8108a3ee": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26",)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "3dc642709e210e4602308c570aaec6b7898353bb": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.3"], "sdk": ["2.1.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "f3615afdcdc663032bf4e2fc9434e0797eb2e992": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.3"], "sdk": ["2.1.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "27c126ddd638cea9b59d658b61d6d6559798e206": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.4"], "sdk": ["2.3.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}, "39f42ce42946dc37f0f997f835776671ed82e62b": {"48a73861": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.4"], "sdk": ["2.3.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "CreateThread"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "StartThread"}, "168": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}}, "_sceCd_cd_read_intr": {"cce180cc59edd738f2e7095fda0c3984f832c800": {"0be0dfd5": {"type": "FUNCTION", "size": 160, "library": "libcdvd", "scope": "GLOBAL", "is_interface": false, "versions": ["2.2.4", "2.3.0", "2.3.4", "2.4.0", "2.4.2", "2.5.0", "2.5.2", "2.5.3"], "sdk": ["2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_26", "symbol": "_sceCd_cd_callback", "scope": "LIBRARY", "original": ".text"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "30c09dc74df91ba2b3e9203f0aeb1341b2d7460f": {"5603f7ce": {"type": "FUNCTION", "size": 184, "library": "libcdvd", "scope": "GLOBAL", "is_interface": false, "versions": ["-2.-2.-2-46", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.5.2", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "176": {"type": "MIPS_26", "symbol": "_sceCd_cd_callback", "scope": "LIBRARY", "original": ".text"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "cmd_sem_init": {"e1671e019f0c93907933b213954533008f2fed78": {"7587d51b": {"type": "FUNCTION", "size": 148, "library": "libcdvd", "scope": "LOCAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.4", "2.4.0", "2.4.2", "2.5.0", "2.5.2", "2.5.3"], "sdk": ["2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_26", "symbol": "CreateSema"}, "88": {"type": "MIPS_26", "symbol": "CreateSema"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_26", "symbol": "CreateSema"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "77795d95c4a11b85635c2bb10e99b06d418c563c": {"796bb280": {"type": "FUNCTION", "size": 184, "library": "libcdvd", "scope": "LOCAL", "is_interface": false, "versions": ["2.6.0", "2.7.0", "2.7.1", "2.8.0"], "sdk": ["2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_26", "symbol": "CreateSema"}, "108": {"type": "MIPS_26", "symbol": "CreateSema"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_26", "symbol": "CreateSema"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_26", "symbol": "CreateSema"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "b76623ba3a0798a23cd1e711af679fdff30a2f59": {"6624cc6b": {"type": "FUNCTION", "size": 136, "library": "libcdvd", "scope": "LOCAL", "is_interface": false, "versions": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.2", "1.6.5"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_26", "symbol": "CreateSema"}, "76": {"type": "MIPS_26", "symbol": "CreateSema"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_26", "symbol": "CreateSema"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "077e08d41ef5a698d15b6803d63a737ddd3d337f": {"1e9c64e0": {"type": "FUNCTION", "size": 228, "library": "libcdvd", "scope": "LOCAL", "is_interface": false, "versions": ["3.0.0", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_26", "symbol": "CreateSema"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_26", "symbol": "CreateSema"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "152": {"type": "MIPS_26", "symbol": "CreateSema"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "180": {"type": "MIPS_26", "symbol": "CreateSema"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "f55f1336519b0f179c28dd5dadc491a9a0194b9e": {"cccef349": {"type": "FUNCTION", "size": 140, "library": "libcdvd", "scope": "LOCAL", "is_interface": false, "versions": ["1.6.1"], "sdk": ["1.6.1"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_26", "symbol": "CreateSema"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_26", "symbol": "CreateSema"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_26", "symbol": "CreateSema"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "1fd3bf19b8e333381cf6906e7dbaf3e22200e4cf": {"98c2308c": {"type": "FUNCTION", "size": 192, "library": "libcdvd", "scope": "LOCAL", "is_interface": false, "versions": ["-2.-2.-2-46"], "sdk": ["2.5.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_26", "symbol": "CreateSema"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_26", "symbol": "CreateSema"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(128": {"type": "MIPS_26", "symbol": "CreateSema"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_26", "symbol": "CreateSema"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "cdvd_exit": {"2c871a7c7e8e226a9d7f5b354adb0ae55ef684c4": {"835287ff": {"type": "FUNCTION", "size": 148, "library": "libcdvd", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.0", "2.5.2", "2.5.3"], "sdk": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "SignalSema"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_26", "symbol": "DeleteSema"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_26", "symbol": "DeleteSema"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_26", "symbol": "DeleteSema"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_26", "symbol": "DIntr"}, "108": {"type": "MIPS_26", "symbol": "sceSifRemoveCmdHandler"}, "128": {"type": "MIPS_26", "symbol": "EIntr"}}}}, "a20545fd534d55cf49b66379bb0aa7f42522ab90": {"51072933": {"type": "FUNCTION", "size": 128, "library": "libcdvd", "scope": "LOCAL", "is_interface": false, "versions": ["2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.4", "2.4.0", "2.4.2"], "sdk": ["2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "SignalSema"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_26", "symbol": "DeleteSema"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_26", "symbol": "DeleteSema"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_26", "symbol": "DeleteSema"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_26", "symbol": "DIntr"}, "104": {"type": "MIPS_26", "symbol": "sceSifRemoveCmdHandler"}, "120": {"type": "MIPS_26", "symbol": "EIntr"}}}}, "b42afae5a30c429b192b3dbf65f20179d5230772": {"441760b1": {"type": "FUNCTION", "size": 160, "library": "libcdvd", "scope": "LOCAL", "is_interface": false, "versions": ["2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "SignalSema"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_26", "symbol": "DeleteSema"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_26", "symbol": "DeleteSema"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_26", "symbol": "DeleteSema"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_26", "symbol": "DeleteSema"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_26", "symbol": "DIntr"}, "120": {"type": "MIPS_26", "symbol": "sceSifRemoveCmdHandler"}, "140": {"type": "MIPS_26", "symbol": "EIntr"}}}}, "a9f10bced96a35f94489d6fe24c6c2f48498d09b": {"123e5f9e": {"type": "FUNCTION", "size": 104, "library": "libcdvd", "scope": "LOCAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.2.0"], "sdk": ["2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "SignalSema"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_26", "symbol": "DeleteSema"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_26", "symbol": "DeleteSema"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_26", "symbol": "DeleteSema"}}}}, "5eb601c62432a2ae7065c061b6d911925d5daa99": {"da7dcdfe": {"type": "FUNCTION", "size": 80, "library": "libcdvd", "scope": "LOCAL", "is_interface": false, "versions": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_26", "symbol": "DeleteSema"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_26", "symbol": "DeleteSema"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "DeleteSema"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16)PS2SDB", 8192}, + std::string_view{R"PS2SDB(", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_26", "symbol": "iWakeupThread"}}}}, "9c7e1d15de189b8133ba8a065b5d40cace10029c": {"831ca5cc": {"type": "FUNCTION", "size": 92, "library": "libcdvd", "scope": "LOCAL", "is_interface": false, "versions": ["1.6.2", "1.6.5"], "sdk": ["1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "SignalSema"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_26", "symbol": "DeleteSema"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_26", "symbol": "DeleteSema"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_26", "symbol": "DeleteSema"}}}}, "5579cdd17d92383e7a040ef4921bdd96cacef4a6": {"aa43a939": {"type": "FUNCTION", "size": 104, "library": "libcdvd", "scope": "LOCAL", "is_interface": false, "versions": ["1.6.1"], "sdk": ["1.6.1"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_26", "symbol": "SignalSema"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_26", "symbol": "DeleteSema"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_26", "symbol": "DeleteSema"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_26", "symbol": "DeleteSema"}}}}, "714f74e05893c1a7fb969199d110f73e57897d93": {"1fb282ed": {"type": "FUNCTION", "size": 180, "library": "libcdvd", "scope": "LOCAL", "is_interface": false, "versions": ["-2.-2.-2-46"], "sdk": ["2.5.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_26", "symbol": "SignalSema"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_26", "symbol": "DeleteSema"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_26", "symbol": "DeleteSema"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_26", "symbol": "DeleteSema"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_26", "symbol": "DeleteSema"}, "124": {"type": "MIPS_26", "symbol": "DIntr"}, "140": {"type": "MIPS_26", "symbol": "sceSifRemoveCmdHandler"}, "160": {"type": "MIPS_26", "symbol": "EIntr"}}}}}, "sceCdPOffCallback": {"47a522d94702c9c045ec6e1361fef7b62e4b1916": {"b2a558f7": {"type": "FUNCTION", "size": 116, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["-2.-2.-2-46", "2.5.0", "2.5.2", "2.5.3", "2.6.0", "2.7.0"], "sdk": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "PowerOffCB", "scope": "LIBRARY", "original": ".text"}, "48": {"type": "MIPS_26", "symbol": "DIntr"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "EIntr"}}}}, "50bb5a9cf873f40067b7adf86f6cecec747714e0": {"dc4a39e6": {"type": "FUNCTION", "size": 108, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.4", "2.4.0", "2.4.2"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "PowerOffCB", "scope": "LIBRARY", "original": ".text"}, "48": {"type": "MIPS_26", "symbol": "DIntr"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_26", "symbol": "EIntr"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "8003cc0f19970e95b484c4cd545ca31e00633a55": {"26b5f061": {"type": "FUNCTION", "size": 128, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "PowerOffCB", "scope": "LIBRARY", "original": ".text"}, "48": {"type": "MIPS_26", "symbol": "DIntr"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_26", "symbol": "EIntr"}}}}}, "_sceCd_Poff_Intr": {"2d366e150dba40274127404c32214d71fa03647e": {"5dcf9bad": {"type": "FUNCTION", "size": 60, "library": "libcdvd", "scope": "LOCAL", "is_interface": false, "versions": ["-2.-2.-2-46", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.4", "2.4.0", "2.4.2", "2.5.0", "2.5.2", "2.5.3", "2.6.0", "2.7.0"], "sdk": ["2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(.bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "8f29f8b97715f54ac995c68b5e3d33f0f54a3278": {"c6f23056": {"type": "FUNCTION", "size": 84, "library": "libcdvd", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "6af865bcc23c72da31a8d4764f16011cbd445e93": {"b32b03ae": {"type": "FUNCTION", "size": 44, "library": "libcdvd", "scope": "LOCAL", "is_interface": false, "versions": ["2.2.0"], "sdk": ["2.2.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "PowerOffCB": {"3014b900bf8218dc7cf3ddf2d015919d327854cd": {"0e86c02a": {"type": "FUNCTION", "size": 120, "library": "libcdvd", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.0", "2.5.2", "2.5.3", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_26", "symbol": "DIntr"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "_sceCd_Poff_Intr", "original": ".text"}, "48": {"type": "MIPS_LO16", "symbol": "_sceCd_Poff_Intr", "original": ".text"}, "56": {"type": "MIPS_26", "symbol": "sceSifAddCmdHandler"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_26", "symbol": "EIntr"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "732fa88b30dd0070f9cb8d82a990352ba4a01c88": {"b38c8ff8": {"type": "FUNCTION", "size": 100, "library": "libcdvd", "scope": "LOCAL", "is_interface": false, "versions": ["2.3.0", "2.3.4", "2.4.0", "2.4.2"], "sdk": ["2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_26", "symbol": "DIntr"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "_sceCd_Poff_Intr", "original": ".text"}, "44": {"type": "MIPS_LO16", "symbol": "_sceCd_Poff_Intr", "original": ".text"}, "48": {"type": "MIPS_26", "symbol": "sceSifAddCmdHandler"}, "56": {"type": "MIPS_26", "symbol": "EIntr"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "3acf6a870562d680e1c53decb3a9ee223f258202": {"8863141c": {"type": "FUNCTION", "size": 360, "library": "libcdvd", "scope": "LOCAL", "is_interface": false, "versions": ["2.2.0"], "sdk": ["2.2.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "36": {"type": "MIPS_26", "symbol": "DIntr"}, "44": {"type": "MIPS_HI16", "symbol": "_sceCd_Poff_Intr", "original": ".text"}, "52": {"type": "MIPS_LO16", "symbol": "_sceCd_Poff_Intr", "original": ".text"}, "60": {"type": "MIPS_26", "symbol": "sceSifAddCmdHandler"}, "68": {"type": "MIPS_26", "symbol": "EIntr"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "172": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "208": {"type": "MIPS_26", "symbol": "printf"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "272": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "316": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}}}}, "bee4a20172bc3c9f3cf954f6b81719a93ce6035c": {"53b9cb36": {"type": "FUNCTION", "size": 328, "library": "libcdvd", "scope": "LOCAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3"], "sdk": ["2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "168": {"type": "MIPS_26", "symbol": "printf"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "232": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "244": {"type": "MIPS_HI16", "symbol": "cd_callback", "original": ".text"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "260": {"type": "MIPS_LO16", "symbol": "cd_callback", "original": ".text"}, "284": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}}}}, "be53afa464d4af8ca0f18a81f0a9f10581098eee": {"ae18e685": {"type": "FUNCTION", "size": 352, "library": "libcdvd", "scope": "LOCAL", "is_interface": false, "versions": ["1.6.5"], "sdk": ["1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_LO16", "symbol": )PS2SDB", 8192}, + std::string_view{R"PS2SDB("", "original": ".data"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_26", "symbol": "printf"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "256": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "268": {"type": "MIPS_HI16", "symbol": "cd_callback", "original": ".text"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "284": {"type": "MIPS_LO16", "symbol": "cd_callback", "original": ".text"}, "308": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}}}}, "132d2b3fbd9e6dbc322036a2e2547b3f63875f21": {"6a8e8c61": {"type": "FUNCTION", "size": 392, "library": "libcdvd", "scope": "LOCAL", "is_interface": false, "versions": ["2.2.4"], "sdk": ["2.2.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "48": {"type": "MIPS_26", "symbol": "DIntr"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_HI16", "symbol": "_sceCd_Poff_Intr", "original": ".text"}, "64": {"type": "MIPS_LO16", "symbol": "_sceCd_Poff_Intr", "original": ".text"}, "72": {"type": "MIPS_26", "symbol": "sceSifAddCmdHandler"}, "80": {"type": "MIPS_26", "symbol": "EIntr"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "180": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "212": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "216": {"type": "MIPS_26", "symbol": "scePrintf"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "280": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "292": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "324": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}, "2b290d01": {"type": "FUNCTION", "size": 392, "library": "libcdvd", "scope": "LOCAL", "is_interface": false, "versions": ["2.2.1", "2.2.2"], "sdk": ["2.2.1", "2.2.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "48": {"type": "MIPS_26", "symbol": "DIntr"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_HI16", "symbol": "_sceCd_Poff_Intr", "original": ".text"}, "64": {"type": "MIPS_LO16", "symbol": "_sceCd_Poff_Intr", "original": ".text"}, "72": {"type": "MIPS_26", "symbol": "sceSifAddCmdHandler"}, "80": {"type": "MIPS_26", "symbol": "EIntr"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "180": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "212": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "216": {"type": "MIPS_26", "symbol": "printf"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "280": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "292": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "324": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "222a65f8ebdf088938aadbc0141f9ac7720a7e43": {"421e47bc": {"type": "FUNCTION", "size": 124, "library": "libcdvd", "scope": "LOCAL", "is_interface": false, "versions": ["-2.-2.-2-46"], "sdk": ["2.5.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_26", "symbol": "DIntr"}, "40": {"type": "MIPS_HI16", "symbol": "_sceCd_Poff_Intr", "original": ".text"}, "52": {"type": "MIPS_LO16", "symbol": "_sceCd_Poff_Intr", "original": ".text"}, "60": {"type": "MIPS_26", "symbol": "sceSifAddCmdHandler"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_26", "symbol": "EIntr"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceCdLayerSearchFile": {"8e0e9b93b62cd3ba5d98c71c6511c303f5fd4667": {"2c5b9f2b": {"type": "FUNCTION", "size": 788, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["-2.-2.-2-46", "2.5.0", "2.5.2", "2.5.3", "2.6.0", "2.7.0", "2.7.1", "2.8.0"], "sdk": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "cmd_sem_init", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_26", "symbol": "PollSema"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_26", "symbol": "sceCdSync", "scope": "LIBRARY", "original": ".text"}, "136": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "228": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "256": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "260": {"type": "MIPS_26", "symbol": "scePrintf"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "312": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "328": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "332": {"type")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: "MIPS_HI16", "symbol": "", "original": ".data"}, "336": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "340": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "348": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "420": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "432": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "440": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "444": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "448": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "452": {"type": "MIPS_26", "symbol": "scePrintf"}, "456": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "464": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "480": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "488": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "512": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "520": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "536": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "540": {"type": "MIPS_26", "symbol": "SignalSema"}, "640": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "648": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "656": {"type": "MIPS_26", "symbol": "scePrintf"}, "660": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "664": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "672": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "680": {"type": "MIPS_26", "symbol": "scePrintf"}, "684": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "688": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "696": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "704": {"type": "MIPS_26", "symbol": "scePrintf"}, "708": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "716": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "724": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "728": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "2a01e3c32d825082fc879abac565a3c0a65346b5": {"b0cba5ca": {"type": "FUNCTION", "size": 764, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "cmd_sem_init", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_26", "symbol": "PollSema"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_26", "symbol": "sceCdSync", "scope": "LIBRARY", "original": ".text"}, "116": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "204": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "232": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "236": {"type": "MIPS_26", "symbol": "scePrintf"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "308": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "312": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "316": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "324": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "396": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "400": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "408": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "416": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "428": {"type": "MIPS_26", "symbol": "scePrintf"}, "432": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "440": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "456": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "464": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "488": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "496": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "512": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "516": {"type": "MIPS_26", "symbol": "SignalSema"}, "616": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "624": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "632": {"type": "MIPS_26", "symbol": "scePrintf"}, "636": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "640": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "648": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "656": {"type": "MIPS_26", "symbol": "scePrintf"}, "660": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "664": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "672": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "680": {"type": "MIPS_26", "symbol": "scePrintf"}, "684": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "692": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "700": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "704": {"type": "MIPS_26", "symbol": "SignalSema"}}}}}, "sceCdSearchFile": {"e1e028210078668942189d5d8a2c4d8d4b00a4fa": {"52e0f963": {"type": "FUNCTION", "size": 28, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["-2.-2.-2-46", "2.5.0", "2.5.2", "2.5.3", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceCdLayerSearchFile", "scope": "LIBRARY", "original": ".text"}}}}, "7f12880573bf00960074849673293e87b0a092d7": {"56aa7224": {"type": "FUNCTION", "size": 764, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.4", "2.3.0", "2.3.4", "2.4.0", "2.4.2"], "sdk": ["2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_26", "symbol": "cmd_sem_init", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_26", "symbol": "PollSema"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "112": {"type": "MIPS_LO16", "sym)PS2SDB", 8192}, + std::string_view{R"PS2SDB(bol": "", "original": ".bss"}, "116": {"type": "MIPS_26", "symbol": "sceCdSync", "scope": "LIBRARY", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "220": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "248": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "252": {"type": "MIPS_26", "symbol": "scePrintf"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "324": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "328": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "332": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "412": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "416": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "436": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "444": {"type": "MIPS_26", "symbol": "scePrintf"}, "448": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "456": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "464": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "488": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "496": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "512": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "516": {"type": "MIPS_26", "symbol": "SignalSema"}, "616": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "624": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "632": {"type": "MIPS_26", "symbol": "scePrintf"}, "636": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "640": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "648": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "656": {"type": "MIPS_26", "symbol": "scePrintf"}, "660": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "664": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "672": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "680": {"type": "MIPS_26", "symbol": "scePrintf"}, "684": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "692": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "700": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "704": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "649edb92f795929727dd496bcd2f72134877c386": {"4880d2b7": {"type": "FUNCTION", "size": 748, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.2.0"], "sdk": ["2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_26", "symbol": "cmd_sem_init", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_26", "symbol": "PollSema"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_26", "symbol": "sceCdSync", "scope": "LIBRARY", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "220": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "248": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "252": {"type": "MIPS_26", "symbol": "printf"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "324": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "328": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "332": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "412": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "416": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "436": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "444": {"type": "MIPS_26", "symbol": "printf"}, "448": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "456": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "464": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "488": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "496": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "512": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "516": {"type": "MIPS_26", "symbol": "SignalSema"}, "600": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "608": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "616": {"type": "MIPS_26", "symbol": "printf"}, "620": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "624": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "632": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "640": {"type": "MIPS_26", "symbol": "printf"}, "644": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "648": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "656": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "664": {"type": "MIPS_26", "symbol": "printf"}, "668": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "676": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "684": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "688": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "2873b6ff13ef42921bcf1664c0e73eec0dddf350": {"b8234b4a": {"type": "FUNCTION", "size": 704, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.4", "1.5.0", "1.5.1", "1.5.3"], "sdk": ["1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"32": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "cmd_sem_init", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_26", "symbol": "PollSema"}, "76": {"type": "MIPS_LO16", "symb)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ol": "", "original": ".data"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "sceCdSync", "scope": "LIBRARY", "original": ".text"}, "124": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "220": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "248": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "252": {"type": "MIPS_26", "symbol": "printf"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "324": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "396": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "400": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "408": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "428": {"type": "MIPS_26", "symbol": "printf"}, "432": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "440": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "448": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "472": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "480": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "496": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "500": {"type": "MIPS_26", "symbol": "SignalSema"}, "556": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "564": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "572": {"type": "MIPS_26", "symbol": "printf"}, "576": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "580": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "588": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "596": {"type": "MIPS_26", "symbol": "printf"}, "600": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "604": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "612": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "620": {"type": "MIPS_26", "symbol": "printf"}, "624": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "632": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "640": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "644": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "9762fc819ab08637b96c536d4afe805ae105ce58": {"19a10636": {"type": "FUNCTION", "size": 748, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.2", "1.6.5"], "sdk": ["1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"32": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "cmd_sem_init", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_26", "symbol": "PollSema"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_26", "symbol": "sceCdSync", "scope": "LIBRARY", "original": ".text"}, "136": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "236": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "264": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "268": {"type": "MIPS_26", "symbol": "printf"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "332": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "412": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "416": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "436": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "444": {"type": "MIPS_26", "symbol": "printf"}, "448": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "456": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "464": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "488": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "496": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "512": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "516": {"type": "MIPS_26", "symbol": "SignalSema"}, "600": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "608": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "616": {"type": "MIPS_26", "symbol": "printf"}, "620": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "624": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "632": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "640": {"type": "MIPS_26", "symbol": "printf"}, "644": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "648": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "656": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "664": {"type": "MIPS_26", "symbol": "printf"}, "668": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "676": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "684": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "688": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "448cb2416a9be0b47f22f6b420177701b014b70f": {"19a10636": {"type": "FUNCTION", "size": 748, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1"], "sdk": ["1.6.1"], "compiler_versions": ["2.3.1.01"], "relocations": {"32": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "cmd_sem_init", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_26", "symbol": "PollSema"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "92": {"type": "MIP)PS2SDB", 8192}, + std::string_view{R"PS2SDB(S_HI16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_26", "symbol": "sceCdSync", "scope": "LIBRARY", "original": ".text"}, "136": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "236": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "264": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "268": {"type": "MIPS_26", "symbol": "printf"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "332": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "412": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "416": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "436": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "444": {"type": "MIPS_26", "symbol": "printf"}, "448": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "456": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "464": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "488": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "496": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "512": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "516": {"type": "MIPS_26", "symbol": "SignalSema"}, "600": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "608": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "616": {"type": "MIPS_26", "symbol": "printf"}, "620": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "624": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "632": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "640": {"type": "MIPS_26", "symbol": "printf"}, "644": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "648": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "656": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "664": {"type": "MIPS_26", "symbol": "printf"}, "668": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "676": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "684": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "688": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "99675c9c200d75444cba67ed4cd3f27dd57c4031": {"816db621": {"type": "FUNCTION", "size": 764, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.1", "2.2.2"], "sdk": ["2.2.1", "2.2.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_26", "symbol": "cmd_sem_init", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_26", "symbol": "PollSema"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_26", "symbol": "sceCdSync", "scope": "LIBRARY", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "220": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "248": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "252": {"type": "MIPS_26", "symbol": "printf"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "324": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "328": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "332": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "412": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "416": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "436": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "444": {"type": "MIPS_26", "symbol": "printf"}, "448": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "456": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "464": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "488": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "496": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "512": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "516": {"type": "MIPS_26", "symbol": "SignalSema"}, "616": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "624": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "632": {"type": "MIPS_26", "symbol": "printf"}, "636": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "640": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "648": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "656": {"type": "MIPS_26", "symbol": "printf"}, "660": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "664": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "672": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "680": {"type": "MIPS_26", "symbol": "printf"}, "684": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "692": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "700": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "704": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "c951d905e45c798562cf962dc074f59e8867f911": {"afeb5628": {"type": "FUNCTION", "size": 688, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.2"], "sdk": ["1.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"32": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "cmd_sem_init", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_26", "symbol": ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(PollSema"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "sceCdSync", "scope": "LIBRARY", "original": ".text"}, "124": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "220": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "244": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "248": {"type": "MIPS_26", "symbol": "printf"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "324": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "396": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "400": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "408": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "428": {"type": "MIPS_26", "symbol": "printf"}, "432": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "436": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "460": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "468": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "484": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "488": {"type": "MIPS_26", "symbol": "SignalSema"}, "540": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "548": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "556": {"type": "MIPS_26", "symbol": "printf"}, "560": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "564": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "572": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "580": {"type": "MIPS_26", "symbol": "printf"}, "584": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "588": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "596": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "604": {"type": "MIPS_26", "symbol": "printf"}, "608": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "616": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "624": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "628": {"type": "MIPS_26", "symbol": "SignalSema"}}}}}, "_sceCd_ncmd_prechk": {"f874e8b52861d9b50a26e10fd9f797a21d6b2fec": {"98b38cbb": {"type": "FUNCTION", "size": 368, "library": "libcdvd", "scope": "GLOBAL", "is_interface": false, "versions": ["-2.-2.-2-46", "2.2.4", "2.3.0", "2.3.4", "2.4.0", "2.4.2", "2.5.0", "2.5.2", "2.5.3", "2.6.0", "2.7.0", "2.7.1", "2.8.0"], "sdk": ["2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_26", "symbol": "cmd_sem_init", "scope": "LIBRARY", "original": ".text"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_26", "symbol": "PollSema"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_26", "symbol": "scePrintf"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_26", "symbol": "sceCdSync", "scope": "LIBRARY", "original": ".text"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_26", "symbol": "SignalSema"}, "160": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "244": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "260": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "276": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "280": {"type": "MIPS_26", "symbol": "scePrintf"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "328": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "94931e196a116c59ff66099183d9ce700bc130cc": {"018321dc": {"type": "FUNCTION", "size": 344, "library": "libcdvd", "scope": "GLOBAL", "is_interface": false, "versions": ["3.0.0", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_26", "symbol": "cmd_sem_init", "scope": "LIBRARY", "original": ".text"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_26", "symbol": "PollSema"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_26", "symbol": "scePrintf"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_26", "symbol": "sceCdSync", "scope": "LIBRARY", "original": ".text"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_26", "symbol": "SignalSema"}, "140": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "220": {"type": "MIPS_26)PS2SDB", 8192}, + std::string_view{R"PS2SDB(", "symbol": "sceSifBindRpc"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "252": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "256": {"type": "MIPS_26", "symbol": "scePrintf"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceCdNcmdDiskReady": {"f9f8a93016e6103f9c68bd24ac8977cc89774961": {"dd032c17": {"type": "FUNCTION", "size": 152, "library": "libcdvd", "scope": "GLOBAL", "is_interface": false, "versions": ["2.2.4", "2.3.0", "2.3.4", "2.4.0", "2.4.2", "2.5.0", "2.5.2", "2.5.3", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "_sceCd_ncmd_prechk", "scope": "LIBRARY", "original": ".text"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_26", "symbol": "SignalSema"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "6e123246adf1bb76e402ca999778d086846c5d6b": {"808e0bbc": {"type": "FUNCTION", "size": 152, "library": "libcdvd", "scope": "GLOBAL", "is_interface": false, "versions": ["1.6.1", "1.6.2", "1.6.5", "2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.2.0", "2.2.1", "2.2.2"], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "ncmd_prechk", "scope": "LIBRARY", "original": ".text"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_26", "symbol": "SignalSema"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "f11800819445cb26686490db17998b9e9a07fdbb": {"9cee2f3f": {"type": "FUNCTION", "size": 148, "library": "libcdvd", "scope": "GLOBAL", "is_interface": false, "versions": ["1.4.4", "1.5.0", "1.5.1", "1.5.3"], "sdk": ["1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "ncmd_prechk", "scope": "LIBRARY", "original": ".text"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_26", "symbol": "SignalSema"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "dc49b929af797bcb9b20cd3b17e11144af074103": {"133e6bcc": {"type": "FUNCTION", "size": 128, "library": "libcdvd", "scope": "GLOBAL", "is_interface": false, "versions": ["1.4.2"], "sdk": ["1.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "ncmd_prechk", "scope": "LIBRARY", "original": ".text"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_26", "symbol": "SignalSema"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "461e7c1e8574673c94fca5d6100f7b173da407a4": {"67529409": {"type": "FUNCTION", "size": 156, "library": "libcdvd", "scope": "GLOBAL", "is_interface": false, "versions": ["-2.-2.-2-46"], "sdk": ["2.5.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "_sceCd_ncmd_prechk", "scope": "LIBRARY", "original": ".text"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_26", "symbol": "SignalSema"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "SignalSema"}}}}}, "sceCdSync": {"7d6b923d9842202ec30fb4cec11096e9acdb8493": {"db87488e": {"type": "FUNCTION", "size": 160, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["-2.-2.-2-46", "2.2.4", "2.3.0", "2.3.4", "2.4.0", "2.4.2", "2.5.0", "2.5.2", "2.5.3", "2.6.0", "2.7.0", "2.7.1"], "sdk": ["2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_26", "symbol": "scePrintf"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "sceCdDelayThread", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_26", "symbol": "sceSifCheckStatRpc"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_26", "symbol": "sceSifCheckStatRpc"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}, "2bbbacf1": {"type": "FUNCTION", "size": 160, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.3", "2.2.0", "2.2.1", "2.2.2"], "sdk": ["2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], )PS2SDB", 8192}, + std::string_view{R"PS2SDB("relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_26", "symbol": "printf"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "sceCdDelayThread", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_26", "symbol": "sceSifCheckStatRpc"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_26", "symbol": "sceSifCheckStatRpc"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "da8313648996afc061484a272d9f67fe1b4f77fb": {"c6805663": {"type": "FUNCTION", "size": 160, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_26", "symbol": "scePrintf"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "DelayThread"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_26", "symbol": "sceSifCheckStatRpc"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_26", "symbol": "sceSifCheckStatRpc"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "3305b985e641d2d0e7312d6c52652f264255e5b2": {"62b64792": {"type": "FUNCTION", "size": 168, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.2", "1.6.5", "2.0.0", "2.0.2", "2.0.5", "2.1.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_26", "symbol": "printf"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_26", "symbol": "sceSifCheckStatRpc"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_26", "symbol": "sceSifCheckStatRpc"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "56097ada6e521dbf2de8429ac1b5d01871a5988b": {"2bbbacf1": {"type": "FUNCTION", "size": 160, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.1"], "sdk": ["2.1.1"], "compiler_versions": ["2.3.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_26", "symbol": "printf"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "sceCdDelayThread", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_26", "symbol": "sceSifCheckStatRpc"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_26", "symbol": "sceSifCheckStatRpc"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceCdSyncS": {"e0c718e53787444b0cbbbc9c9a4b5a22c636481e": {"8ad4062a": {"type": "FUNCTION", "size": 108, "library": "libcdvd", "scope": "GLOBAL", "is_interface": false, "versions": ["-2.-2.-2-46", "2.2.4", "2.3.0", "2.3.4", "2.4.0", "2.4.2", "2.5.0", "2.5.2", "2.5.3", "2.6.0", "2.7.0", "2.7.1"], "sdk": ["2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_26", "symbol": "scePrintf"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_26", "symbol": "sceCdDelayThread", "scope": "LIBRARY", "original": ".text"}, "56": {"type": "MIPS_26", "symbol": "sceSifCheckStatRpc"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_26", "symbol": "sceSifCheckStatRpc"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}, "a3c2e5ef": {"type": "FUNCTION", "size": 108, "library": "libcdvd", "scope": "GLOBAL", "is_interface": false, "versions": ["2.2.0", "2.2.1", "2.2.2"], "sdk": ["2.2.0", "2.2.1", "2.2.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_26", "symbol": "printf"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_26", "symbol": "sceCdDelayThread", "scope": "LIBRARY", "original": ".text"}, "56": {"type": "MIPS_26", "symbol": "sceSifCheckStatRpc"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "sceSifCheckStatRpc"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "422253202ae44f042227df271f9b95995b680284": {"9bc72257": {"type": "FUNCTION", "size": 108, "library": "libcdvd", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"16":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_26", "symbol": "scePrintf"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_26", "symbol": "DelayThread"}, "56": {"type": "MIPS_26", "symbol": "sceSifCheckStatRpc"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_26", "symbol": "sceSifCheckStatRpc"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "306d5f45357c99bae1e72beef03cd8173570bee1": {"a98e2b9a": {"type": "FUNCTION", "size": 100, "library": "libcdvd", "scope": "GLOBAL", "is_interface": false, "versions": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.2", "1.6.5", "2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_26", "symbol": "printf"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_26", "symbol": "sceSifCheckStatRpc"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_26", "symbol": "sceSifCheckStatRpc"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "044dcd1a1798b671f96cd1e5408112db74586756": {"a3c2e5ef": {"type": "FUNCTION", "size": 108, "library": "libcdvd", "scope": "GLOBAL", "is_interface": false, "versions": ["2.1.3"], "sdk": ["2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_26", "symbol": "printf"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_26", "symbol": "sceCdDelayThread", "scope": "LIBRARY", "original": ".text"}, "56": {"type": "MIPS_26", "symbol": "sceSifCheckStatRpc"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "sceSifCheckStatRpc"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "_sceCd_scmd_prechk": {"33a2b0ea2c87c4345649dad6d84d62bef37b53bd": {"2f2e05b3": {"type": "FUNCTION", "size": 368, "library": "libcdvd", "scope": "GLOBAL", "is_interface": false, "versions": ["-2.-2.-2-46", "2.2.4", "2.3.0", "2.3.4", "2.4.0", "2.4.2", "2.5.0", "2.5.2", "2.5.3", "2.6.0", "2.7.0", "2.7.1", "2.8.0"], "sdk": ["2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_26", "symbol": "cmd_sem_init", "scope": "LIBRARY", "original": ".text"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_26", "symbol": "PollSema"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_26", "symbol": "scePrintf"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_26", "symbol": "sceCdSyncS", "scope": "LIBRARY", "original": ".text"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_26", "symbol": "SignalSema"}, "160": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "244": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "260": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "276": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "280": {"type": "MIPS_26", "symbol": "scePrintf"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "328": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "bb79a925d35442f3c5326e9b6c3146209950ade1": {"8b67df8a": {"type": "FUNCTION", "size": 344, "library": "libcdvd", "scope": "GLOBAL", "is_interface": false, "versions": ["3.0.0", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_26", "symbol": "cmd_sem_init", "scope": "LIBRARY", "original": ".text"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_26", "symbol": "PollSema"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_26", "symbol": "scePrintf"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_26", "symbol": "sceCdSyncS", "scope": "LIBRARY", "original": ".text"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_26", "symbol": "SignalSema"}, "140": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "220": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "252": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "256": {"type": "MIPS_26", "symbol": "scePrint)PS2SDB", 8192}, + std::string_view{R"PS2SDB(f"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceCdInit": {"fc24d2b34965fc917283a2a6bb66fe41c0c40871": {"2449735b": {"type": "FUNCTION", "size": 736, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["-2.-2.-2-46", "2.2.4", "2.3.0", "2.3.4", "2.4.0", "2.4.2", "2.5.0", "2.5.2", "2.5.3", "2.6.0", "2.7.0", "2.7.1", "2.8.0"], "sdk": ["2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "sceCdSyncS", "scope": "LIBRARY", "original": ".text"}, "68": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_26", "symbol": "GetThreadId"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "212": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "244": {"type": "MIPS_26", "symbol": "scePrintf"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "312": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "316": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "324": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "360": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "372": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "376": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "500": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "508": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "564": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "572": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "576": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "600": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "604": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "612": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "616": {"type": "MIPS_26", "symbol": "scePrintf"}, "620": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "624": {"type": "MIPS_26", "symbol": "cdvd_exit", "scope": "LIBRARY", "original": ".text"}, "636": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "640": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "644": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "648": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "652": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "656": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "668": {"type": "MIPS_26", "symbol": "cmd_sem_init", "scope": "LIBRARY", "original": ".text"}, "676": {"type": "MIPS_26", "symbol": "PowerOffCB", "scope": "LIBRARY", "original": ".text"}}}}, "8104507abf96c8a6a67f225ba2774aea816b7206": {"7bd61bc9": {"type": "FUNCTION", "size": 736, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0", "2.2.1", "2.2.2"], "sdk": ["2.2.0", "2.2.1", "2.2.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "sceCdSyncS", "scope": "LIBRARY", "original": ".text"}, "68": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_26", "symbol": "GetThreadId"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "212": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "244": {"type": "MIPS_26", "symbol": "printf"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "312": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "316": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "324": {"type": "MIPS_LO1)PS2SDB", 8192}, + std::string_view{R"PS2SDB(6", "symbol": "", "original": ".bss"}, "360": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "372": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "376": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "500": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "508": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "564": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "572": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "576": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "600": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "604": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "612": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "616": {"type": "MIPS_26", "symbol": "printf"}, "620": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "624": {"type": "MIPS_26", "symbol": "cdvd_exit", "scope": "LIBRARY", "original": ".text"}, "636": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "640": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "644": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "648": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "652": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "656": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "668": {"type": "MIPS_26", "symbol": "cmd_sem_init", "scope": "LIBRARY", "original": ".text"}, "676": {"type": "MIPS_26", "symbol": "PowerOffCB", "scope": "LIBRARY", "original": ".text"}}}}, "9d9b8789652b21823a44e6028887b6f5cde15df5": {"d3ee1989": {"type": "FUNCTION", "size": 504, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.5.0", "1.5.1", "1.5.3", "1.6.2"], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "sceCdSyncS", "scope": "LIBRARY", "original": ".text"}, "48": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "196": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "212": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "228": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "232": {"type": "MIPS_26", "symbol": "printf"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "300": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "316": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "356": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "392": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "396": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "404": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "408": {"type": "MIPS_26", "symbol": "printf"}, "412": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "416": {"type": "MIPS_26", "symbol": "cdvd_exit", "scope": "LIBRARY", "original": ".text"}, "428": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "432": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "436": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "440": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "444": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "448": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "460": {"type": "MIPS_26", "symbol": "cmd_sem_init", "scope": "LIBRARY", "original": ".text"}}}}, "02583f19f2438781df1f8fb13bfaf875aea5c6a3": {"d650677a": {"type": "FUNCTION", "size": 744, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3"], "sdk": ["2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "sceCdSyncS", "scope": "LIBRARY", "original": ".text"}, "68": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_26", "symbol": "GetThreadId"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "220": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "252": {"type": "MIPS_26", "symbol": "printf"}, "256": {"type": "MIPS_LO16", "symbol": "", "origi)PS2SDB", 8192}, + std::string_view{R"PS2SDB(nal": ".rodata"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "324": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "332": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "368": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "380": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "384": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "508": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "516": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "572": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "580": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "584": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "608": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "612": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "620": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "624": {"type": "MIPS_26", "symbol": "printf"}, "628": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "632": {"type": "MIPS_26", "symbol": "cdvd_exit", "scope": "LIBRARY", "original": ".text"}, "644": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "648": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "652": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "656": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "660": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "664": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "676": {"type": "MIPS_26", "symbol": "cmd_sem_init", "scope": "LIBRARY", "original": ".text"}, "684": {"type": "MIPS_26", "symbol": "PowerOffCB", "scope": "LIBRARY", "original": ".text"}}}}, "cbabefc81de1cc8112bd2324b9d36c4c238fc015": {"395096c6": {"type": "FUNCTION", "size": 672, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.5"], "sdk": ["1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "sceCdSyncS", "scope": "LIBRARY", "original": ".text"}, "68": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_26", "symbol": "GetThreadId"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "228": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "260": {"type": "MIPS_26", "symbol": "printf"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "324": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "328": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "332": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "340": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "348": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "380": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "392": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "396": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "492": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "496": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "504": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "508": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "512": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "536": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "540": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "548": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "552": {"type": "MIPS_26", "symbol": "printf"}, "556": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "560": {"type": "MIPS_26", "symbol": "cdvd_exit", "scope": "LIBRARY", "original": ".text"}, "572": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "576": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "580": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "584": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "588": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "592": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "604": {"type": "MIPS_26", "symbol": "cmd_sem_init", "scope": "LIBRARY", "original": ".text"}, "612": {"type": "MIPS_26", "symbol": "PowerOffCB", "scope": "LIBRARY", "original": ".text"}}}}, "f9dc21ea163d448c40c755fe1f27f3f4e500b75e": {"a52d181c": {"type": "FUNCTION", "size": 744, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "sceCdSyncS", "scope": "LIBRARY", "original": ".text"}, "68": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".dat)PS2SDB", 8192}, + std::string_view{R"PS2SDB(a"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "204": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "236": {"type": "MIPS_26", "symbol": "scePrintf"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "300": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "308": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "352": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "364": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "368": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "492": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "500": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "556": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "564": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "568": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "592": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "596": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "604": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "608": {"type": "MIPS_26", "symbol": "scePrintf"}, "612": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "616": {"type": "MIPS_26", "symbol": "cdvd_exit", "scope": "LIBRARY", "original": ".text"}, "628": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "632": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "636": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "640": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "644": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "648": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "652": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "660": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "664": {"type": "MIPS_26", "symbol": "cmd_sem_init", "scope": "LIBRARY", "original": ".text"}, "672": {"type": "MIPS_26", "symbol": "PowerOffCB", "scope": "LIBRARY", "original": ".text"}, "680": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "688": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "22076f1714e2b8250e28c25b34f9444e77bb1b5f": {"83255665": {"type": "FUNCTION", "size": 496, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1"], "sdk": ["1.6.1"], "compiler_versions": ["2.3.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "sceCdSyncS", "scope": "LIBRARY", "original": ".text"}, "48": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "196": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "212": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "228": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "232": {"type": "MIPS_26", "symbol": "printf"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "292": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "300": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "308": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "348": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "384": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "388": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "396": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "400": {"type": "MIPS_26", "symbol": "printf"}, "404": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "408": {"type": "MIPS_26", "symbol": "cdvd_exit", "scope": "LIBRARY", "original": ".text"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "428": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "432": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "436": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "440": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "452": {"type": "MIPS_26", "symbol": "cmd_sem_init", "scope": "LIBRARY", "original": ".text"}}}}, "06f5d6a8306cfbee3f3a79d63347fedf68d8b8d9": {"d572e162": {"type": "FUNCTION", "size": 476, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.4"], "sdk": ["1.4.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "sceCdSyncS", "scope": "LIBRARY", "original": ".text"}, "48": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_LO16", "symbol": "", ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(original": ".data"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "196": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "212": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "228": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "232": {"type": "MIPS_26", "symbol": "printf"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "300": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "316": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "356": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "392": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "396": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "404": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "408": {"type": "MIPS_26", "symbol": "printf"}, "412": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "416": {"type": "MIPS_26", "symbol": "cdvd_exit", "scope": "LIBRARY", "original": ".text"}, "432": {"type": "MIPS_26", "symbol": "cmd_sem_init", "scope": "LIBRARY", "original": ".text"}}}}, "a35aa24c0372b35c71843d6f362f3c50abe6d47f": {"2e7aae8f": {"type": "FUNCTION", "size": 464, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.2"], "sdk": ["1.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "sceCdSyncS", "scope": "LIBRARY", "original": ".text"}, "48": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "204": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "220": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "240": {"type": "MIPS_26", "symbol": "printf"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "312": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "324": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "344": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "380": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "384": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "392": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "396": {"type": "MIPS_26", "symbol": "printf"}, "400": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "404": {"type": "MIPS_26", "symbol": "cdvd_exit", "scope": "LIBRARY", "original": ".text"}, "420": {"type": "MIPS_26", "symbol": "cmd_sem_init", "scope": "LIBRARY", "original": ".text"}}}}}, "sceCdDiskReady": {"0eeab37498bd5ec4a10986bd64325952a77b1ca4": {"65e77852": {"type": "FUNCTION", "size": 504, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.4", "2.3.0", "2.3.4", "2.4.0", "2.4.2", "2.5.0", "2.5.2", "2.5.3"], "sdk": ["2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "60": {"type": "MIPS_26", "symbol": "scePrintf"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_26", "symbol": "cmd_sem_init", "scope": "LIBRARY", "original": ".text"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_26", "symbol": "PollSema"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_26", "symbol": "sceCdSyncS", "scope": "LIBRARY", "original": ".text"}, "116": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "204": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "232": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "236": {"type": "MIPS_26", "symbol": "scePrintf"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "308": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "312": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "328": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "336": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "372": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "384": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "388": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "392": {"type": "MIPS_26", "symbol": "SignalSema"}, "424": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "428": {"type": "MIPS_26", "symbol": "scePrintf"}, "432": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "440": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "448": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "eb42e7cd8b03156d1dcf97d0d6b9978635563d6b": {"a9f21b97": {"type": "FUNCTION", "size": 488, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["-2.-2.-2-46", "2.6.0", "2.7.0"], "sdk": ["2.5.2", "2.6.0", "2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MI)PS2SDB", 8192}, + std::string_view{R"PS2SDB(PS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "60": {"type": "MIPS_26", "symbol": "scePrintf"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_26", "symbol": "cmd_sem_init", "scope": "LIBRARY", "original": ".text"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_26", "symbol": "PollSema"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "216": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "220": {"type": "MIPS_26", "symbol": "scePrintf"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "292": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "296": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "300": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "312": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "324": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "356": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "368": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "372": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "376": {"type": "MIPS_26", "symbol": "SignalSema"}, "408": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "412": {"type": "MIPS_26", "symbol": "scePrintf"}, "416": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "432": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "ea2c869c85ea5bea8cf2c660f8423774b946649e": {"23e5a5d3": {"type": "FUNCTION", "size": 516, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.1", "2.8.0"], "sdk": ["2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "56": {"type": "MIPS_26", "symbol": "scePrintf"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_26", "symbol": "cmd_sem_init", "scope": "LIBRARY", "original": ".text"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_26", "symbol": "PollSema"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "192": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "220": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "224": {"type": "MIPS_26", "symbol": "scePrintf"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "292": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "296": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "312": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "320": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "324": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "328": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "360": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "372": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "376": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "380": {"type": "MIPS_26", "symbol": "SignalSema"}, "408": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "412": {"type": "MIPS_26", "symbol": "SignalSema"}, "420": {"type": "MIPS_26", "symbol": "sceCdDiskReady_old", "scope": "LIBRARY", "original": ".text"}, "440": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "444": {"type": "MIPS_26", "symbol": "scePrintf"}, "448": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "456": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "464": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "feff9beaea83077d734d429586a4ce7cddd9e08e": {"64b4d240": {"type": "FUNCTION", "size": 504, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.2.0", "2.2.1", "2.2.2"], "sdk": ["2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "60": {"type": "MIPS_26", "symbol": "printf"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_26", "symbol": "cmd_sem_init", "scope": "LIBRARY", "original": ".text"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_26", "symbol": "PollSema"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_26", "symbol": "sceCdSyncS", "scope": "LIBRARY", "original": ".text"}, "116": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "204": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "232": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "236": {"type": "MIPS_26", "symbol": "printf"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "308": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "312": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "320": {"type": "MIPS_LO16", "symbol": "")PS2SDB", 8192}, + std::string_view{R"PS2SDB(, "original": ".bss"}, "328": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "336": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "372": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "384": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "388": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "392": {"type": "MIPS_26", "symbol": "SignalSema"}, "424": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "428": {"type": "MIPS_26", "symbol": "printf"}, "432": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "436": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "440": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "a863cdb27dfcc98563be72261253047f83d62665": {"3a73be2c": {"type": "FUNCTION", "size": 488, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.2"], "sdk": ["1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_26", "symbol": "printf"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_26", "symbol": "cmd_sem_init", "scope": "LIBRARY", "original": ".text"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_26", "symbol": "PollSema"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_26", "symbol": "sceCdSyncS", "scope": "LIBRARY", "original": ".text"}, "120": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "212": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "240": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "244": {"type": "MIPS_26", "symbol": "printf"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "312": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "324": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "332": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "336": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "368": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "380": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "384": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "388": {"type": "MIPS_26", "symbol": "SignalSema"}, "408": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "412": {"type": "MIPS_26", "symbol": "printf"}, "416": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "420": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "424": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "de337270a58d0db07c6b45c9651c259b47f326cf": {"44c8fdeb": {"type": "FUNCTION", "size": 500, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.5"], "sdk": ["1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_26", "symbol": "printf"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_26", "symbol": "cmd_sem_init", "scope": "LIBRARY", "original": ".text"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_26", "symbol": "PollSema"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_26", "symbol": "sceCdSyncS", "scope": "LIBRARY", "original": ".text"}, "120": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "212": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "240": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "244": {"type": "MIPS_26", "symbol": "printf"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "312": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "324": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "332": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "336": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "368": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "380": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "384": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "388": {"type": "MIPS_26", "symbol": "SignalSema"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "424": {"type": "MIPS_26", "symbol": "printf"}, "428": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "432": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "436": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "12fed3a52643991321d317ee3bb8cce0495a9e7b": {"4479384b": {"type": "FUNCTION", "size": 544, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "56": {"type": "MIPS_26", "symbol": "scePrintf"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_26", "symbol": "cmd_sem_init", "scope": "LIBRARY", "original": ".text"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_26", "symbol": "PollSema"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "192": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "220": {"t)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ype": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "224": {"type": "MIPS_26", "symbol": "scePrintf"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "292": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "296": {"type": "MIPS_26", "symbol": "DIntr"}, "304": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "312": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "316": {"type": "MIPS_26", "symbol": "EIntr"}, "324": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "332": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "336": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "340": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "348": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "356": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "388": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "400": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "404": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "408": {"type": "MIPS_26", "symbol": "SignalSema"}, "436": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "440": {"type": "MIPS_26", "symbol": "SignalSema"}, "448": {"type": "MIPS_26", "symbol": "sceCdDiskReady_old", "scope": "LIBRARY", "original": ".text"}, "468": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "472": {"type": "MIPS_26", "symbol": "scePrintf"}, "476": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "484": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "492": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "c6139ce944d71330b135fd817b2c3d4b9c3d8be7": {"3a73be2c": {"type": "FUNCTION", "size": 488, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1"], "sdk": ["1.6.1"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_26", "symbol": "printf"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_26", "symbol": "cmd_sem_init", "scope": "LIBRARY", "original": ".text"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_26", "symbol": "PollSema"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_26", "symbol": "sceCdSyncS", "scope": "LIBRARY", "original": ".text"}, "120": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "212": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "240": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "244": {"type": "MIPS_26", "symbol": "printf"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "312": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "324": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "332": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "336": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "368": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "380": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "384": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "388": {"type": "MIPS_26", "symbol": "SignalSema"}, "408": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "412": {"type": "MIPS_26", "symbol": "printf"}, "416": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "420": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "424": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "3284969fd06a9b0d0003f83ea19945a6c5e65f43": {"8c089164": {"type": "FUNCTION", "size": 472, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.2"], "sdk": ["1.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_26", "symbol": "printf"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_26", "symbol": "cmd_sem_init", "scope": "LIBRARY", "original": ".text"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_26", "symbol": "PollSema"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_26", "symbol": "sceCdSyncS", "scope": "LIBRARY", "original": ".text"}, "120": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "212": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "240": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "244": {"type": "MIPS_26", "symbol": "printf"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "312": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "324": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "352": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "364": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "368": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "372": {"type": "MIPS_26", "symbol": "SignalSema"}, "392": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "396": {"type": "MIPS_26", "symbol": "printf"}, "400": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "404": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "408": {"type": "MIPS_26", "symbol": "SignalSema"}}}}}, "sceCdMmode": {"8757ce2815dfc60d6270a8c9528660978e812255": {"b460f602": {"type": "FUNCTION", "size": 196, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.4", "2.3.0", "2.3.4", "2.4.0", "2.4.2", "2.5.0", "2.5.2", "2.5.3"], "sdk": ["2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"1)PS2SDB", 8192}, + std::string_view{R"PS2SDB(2": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_26", "symbol": "_sceCd_scmd_prechk", "scope": "LIBRARY", "original": ".text"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_26", "symbol": "SignalSema"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "a5cfb223a7302aee8db23ef7de0aa189a6b56694": {"4062aca3": {"type": "FUNCTION", "size": 208, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_26", "symbol": "_sceCd_scmd_prechk", "scope": "LIBRARY", "original": ".text"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_26", "symbol": "SignalSema"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "864a55db8569a45b106235b116a6f1e5d288dc84": {"bf645a4b": {"type": "FUNCTION", "size": 188, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.5", "2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.2.0", "2.2.1", "2.2.2"], "sdk": ["1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "scmd_prechk", "scope": "LIBRARY", "original": ".text"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "SignalSema"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "cb0f2479927c02673444f8e6da3b3758c8c48daa": {"ca68af38": {"type": "FUNCTION", "size": 200, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["-2.-2.-2-46"], "sdk": ["2.5.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_26", "symbol": "_sceCd_scmd_prechk", "scope": "LIBRARY", "original": ".text"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_26", "symbol": "SignalSema"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_26", "symbol": "SignalSema"}}}}}, "sceCdRead": {"029665df153379309b5e4b64b9d6e0b08e81965a": {"cf99ae86": {"type": "FUNCTION", "size": 480, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.4", "2.3.0", "2.3.4", "2.4.0", "2.4.2", "2.5.0", "2.5.2", "2.5.3", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0"], "sdk": ["2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_ncmdsdata"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_ee_read_mode"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_ee_read_mode"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_ncmdsdata"}, "72": {"type": "MIPS_26", "symbol": "sceCdNcmdDiskReady", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "_sceCd_ncmd_prechk", "scope": "LIBRARY"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_Read_cur_pos"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_rd_intr_data"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_rd_intr_data"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_Read_cur_pos"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_ee_read_mode"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_Read_cur_pos"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_Read_cur_pos"}, "244": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_rd_intr_data"}, "264": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "268": {"type": "MIPS_HI16", "symbol": "", "original": "SCE_CD_debug"}, "276": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "288": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": "SCE_CD_debug"}, "304": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "308": {"type": "MIPS_26", "symbol": "scePrintf"}, "312": {"type": "MIPS_LO16",)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "symbol": "", "original": ".rodata"}, "320": {"type": "MIPS_HI16", "symbol": "", "original": "sceCdCbfunc_num"}, "324": {"type": "MIPS_LO16", "symbol": "", "original": "sceCdCbfunc_num"}, "328": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_c_cb_sem"}, "332": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_cd_ncmd"}, "336": {"type": "MIPS_HI16", "symbol": "_sceCd_cd_read_intr"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_c_cb_sem"}, "344": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_cd_ncmd"}, "356": {"type": "MIPS_LO16", "symbol": "_sceCd_cd_read_intr"}, "376": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "388": {"type": "MIPS_LO16", "symbol": "", "original": "SCE_CD_debug"}, "392": {"type": "MIPS_LO16", "symbol": "", "original": "sceCdCbfunc_num"}, "396": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_ncmd_semid"}, "400": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_c_cb_sem"}, "404": {"type": "MIPS_26", "symbol": "SignalSema"}, "408": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_ncmd_semid"}, "428": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "432": {"type": "MIPS_26", "symbol": "scePrintf"}, "436": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "2f73661537d58063073d67830b4a9876e3b1cf8c": {"354dbc5a": {"type": "FUNCTION", "size": 452, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.3", "2.2.0", "2.2.1", "2.2.2"], "sdk": ["2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "sceCdNcmdDiskReady", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_26", "symbol": "ncmd_prechk", "scope": "LIBRARY", "original": ".text"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "216": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "232": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "240": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "248": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "260": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "276": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "280": {"type": "MIPS_26", "symbol": "printf"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "292": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "300": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "304": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "308": {"type": "MIPS_HI16", "symbol": "cd_read_intr", "original": ".text"}, "312": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "328": {"type": "MIPS_LO16", "symbol": "cd_read_intr", "original": ".text"}, "348": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "360": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "364": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "368": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "372": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "376": {"type": "MIPS_26", "symbol": "SignalSema"}, "380": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "400": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "404": {"type": "MIPS_26", "symbol": "printf"}, "408": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "2101552ee9847952dfa127c6ee1a174a28d47edd": {"76acba9f": {"type": "FUNCTION", "size": 464, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.5.0", "1.5.1", "1.5.3"], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "sceCdNcmdDiskReady", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_26", "symbol": "ncmd_prechk", "scope": "LIBRARY", "original": ".text"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "224": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "240": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "248": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "256": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "268": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "284": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "288": {"type": "MIPS_26", "symbol": "printf"}, "292": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "300": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "308": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "312": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "316": {"type": "MIPS_HI16", "symbol": "cd_read_intr", "original": ".text"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "324": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "336": {"type": "MIPS_LO16", "symbol": "cd_read_intr", "original": ".text"}, "356": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "368": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "372": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "376": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "380": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "384": {"type": "MIPS_26", "symbol": "SignalSema"}, "388": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "404": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "408": {"type": "MIPS_26", "symbol": "printf"}, "412": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "416": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "420": {"type": "MIPS_26", "symbol": "SignalSema"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "3ab9fb8febf717cf39410c61131a05c60c368111": {"47fd8a0e": {"type": "FUNCTION", "size": 460, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1"], "sdk": ["2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "sceCdNcmdDiskReady", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_26", "symbol)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": "ncmd_prechk", "scope": "LIBRARY", "original": ".text"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "216": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "232": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "240": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "248": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "260": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "276": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "280": {"type": "MIPS_26", "symbol": "printf"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "292": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "300": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "304": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "308": {"type": "MIPS_HI16", "symbol": "cd_read_intr", "original": ".text"}, "312": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "328": {"type": "MIPS_LO16", "symbol": "cd_read_intr", "original": ".text"}, "348": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "360": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "364": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "368": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "372": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "376": {"type": "MIPS_26", "symbol": "SignalSema"}, "380": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "396": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "400": {"type": "MIPS_26", "symbol": "printf"}, "404": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "408": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "412": {"type": "MIPS_26", "symbol": "SignalSema"}, "416": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "7120b8ec617179dd91dc0bc2d5eef3934906c9ef": {"76acba9f": {"type": "FUNCTION", "size": 464, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.2", "1.6.5"], "sdk": ["1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "sceCdNcmdDiskReady", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_26", "symbol": "ncmd_prechk", "scope": "LIBRARY", "original": ".text"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "224": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "240": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "248": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "256": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "268": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "284": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "288": {"type": "MIPS_26", "symbol": "printf"}, "292": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "300": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "308": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "312": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "316": {"type": "MIPS_HI16", "symbol": "cd_read_intr", "original": ".text"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "324": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "336": {"type": "MIPS_LO16", "symbol": "cd_read_intr", "original": ".text"}, "356": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "368": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "372": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "376": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "380": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "384": {"type": "MIPS_26", "symbol": "SignalSema"}, "388": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "404": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "408": {"type": "MIPS_26", "symbol": "printf"}, "412": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "416": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "420": {"type": "MIPS_26", "symbol": "SignalSema"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "cbf8481c50038e3c77345f14edee3b061dbd78e7": {"39bfd101": {"type": "FUNCTION", "size": 472, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1"], "sdk": ["1.6.1"], "compiler_versions": ["2.3.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "sceCdNcmdDiskReady", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_26", "symbol": "ncmd_prechk", "scope": "LIBRARY", "original": ".text"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "224": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "240": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "248": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "256": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "268": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "284": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "288": {"type": "MIPS_26", "symbol": "printf"}, "292": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "300": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "308": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "312": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "316": {"type": "MIPS_HI16", ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(symbol": "cd_read_intr", "original": ".text"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "324": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "336": {"type": "MIPS_LO16", "symbol": "cd_read_intr", "original": ".text"}, "356": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "368": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "372": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "376": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "380": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "384": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "388": {"type": "MIPS_26", "symbol": "SignalSema"}, "408": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "412": {"type": "MIPS_26", "symbol": "printf"}, "416": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "428": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "a7123ebfbc1b1504f0da833cf4a44b2fa507ef8b": {"c225b149": {"type": "FUNCTION", "size": 436, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.4"], "sdk": ["1.4.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "sceCdNcmdDiskReady", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_26", "symbol": "ncmd_prechk", "scope": "LIBRARY", "original": ".text"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "216": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "232": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "248": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "252": {"type": "MIPS_26", "symbol": "printf"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "264": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "276": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "280": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "284": {"type": "MIPS_HI16", "symbol": "cd_read_intr", "original": ".text"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "304": {"type": "MIPS_LO16", "symbol": "cd_read_intr", "original": ".text"}, "324": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "336": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "344": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "348": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "352": {"type": "MIPS_26", "symbol": "SignalSema"}, "356": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "372": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "376": {"type": "MIPS_26", "symbol": "printf"}, "380": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "384": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "388": {"type": "MIPS_26", "symbol": "SignalSema"}, "392": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "b66904fbbacee7c2827d96256dabdf78ec3cfd5e": {"fbf834bb": {"type": "FUNCTION", "size": 332, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.2"], "sdk": ["1.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "sceCdNcmdDiskReady", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_26", "symbol": "ncmd_prechk", "scope": "LIBRARY", "original": ".text"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "156": {"type": "MIPS_26", "symbol": "printf"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "184": {"type": "MIPS_HI16", "symbol": "cd_read_intr", "original": ".text"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "204": {"type": "MIPS_LO16", "symbol": "cd_read_intr", "original": ".text"}, "224": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "244": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "252": {"type": "MIPS_26", "symbol": "SignalSema"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "272": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "276": {"type": "MIPS_26", "symbol": "printf"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "284": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "288": {"type": "MIPS_26", "symbol": "SignalSema"}, "292": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "ed57156a499cb5b83ed7228ff71b291e5778ce57": {"fdf0a8f4": {"type": "FUNCTION", "size": 484, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["-2.-2.-2-46"], "sdk": ["2.5.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_ncmdsdata"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_ee_read_mode"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_ee_read_mode"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_ncmdsdata"}, "72": {"type": "MIPS_26", "symbol": "sceCdNcmdDiskReady", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "_sceCd_ncmd_prechk", "scope": "LIBRARY"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_Read_cur_pos"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_rd_intr_data"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_rd_intr_data"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_Read_cur_pos"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_ee_read_mode"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_Read_cur_pos"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_Read_cur_pos"}, "244": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "252": {"type": "MIPS_LO16",)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "symbol": "", "original": "_sceCd_rd_intr_data"}, "264": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "268": {"type": "MIPS_HI16", "symbol": "", "original": "SCE_CD_debug"}, "276": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "288": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": "SCE_CD_debug"}, "304": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "308": {"type": "MIPS_26", "symbol": "scePrintf"}, "312": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "320": {"type": "MIPS_HI16", "symbol": "", "original": "sceCdCbfunc_num"}, "324": {"type": "MIPS_LO16", "symbol": "", "original": "sceCdCbfunc_num"}, "328": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_c_cb_sem"}, "332": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_cd_ncmd"}, "336": {"type": "MIPS_HI16", "symbol": "_sceCd_cd_read_intr"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_c_cb_sem"}, "344": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_cd_ncmd"}, "356": {"type": "MIPS_LO16", "symbol": "_sceCd_cd_read_intr"}, "376": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "388": {"type": "MIPS_LO16", "symbol": "", "original": "SCE_CD_debug"}, "392": {"type": "MIPS_LO16", "symbol": "", "original": "sceCdCbfunc_num"}, "396": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_ncmd_semid"}, "400": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_c_cb_sem"}, "404": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_ncmd_semid"}, "408": {"type": "MIPS_26", "symbol": "SignalSema"}, "432": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "436": {"type": "MIPS_26", "symbol": "scePrintf"}, "440": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sceCdSeek": {"dc499a0c52c7f745c10bf62f31418810fcc7484f": {"231976cc": {"type": "FUNCTION", "size": 204, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0", "2.3.4", "2.4.2", "2.5.0", "2.5.2", "2.5.3", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0"], "sdk": ["2.3.2", "2.3.4", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "sceCdNcmdDiskReady", "scope": "LIBRARY"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_ncmdsdata"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_ncmdsdata"}, "44": {"type": "MIPS_26", "symbol": "_sceCd_ncmd_prechk", "scope": "LIBRARY"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_ncmdsdata"}, "68": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": "sceCdCbfunc_num"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_c_cb_sem"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": "sceCdCbfunc_num"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": "sceCdCbfunc_num"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_cd_ncmd"}, "100": {"type": "MIPS_HI16", "symbol": "_sceCd_cd_callback"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_cd_ncmd"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_c_cb_sem"}, "120": {"type": "MIPS_LO16", "symbol": "_sceCd_cd_callback"}, "140": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": "sceCdCbfunc_num"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_ncmd_semid"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_c_cb_sem"}, "168": {"type": "MIPS_26", "symbol": "SignalSema"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_ncmd_semid"}}}}, "1fb8a8ad64d947b629f05ff709e349ae75db6aa8": {"7e7094d0": {"type": "FUNCTION", "size": 208, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.3", "2.2.0", "2.2.1", "2.2.2"], "sdk": ["2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "sceCdNcmdDiskReady", "scope": "LIBRARY", "original": ".text"}, "40": {"type": "MIPS_26", "symbol": "ncmd_prechk", "scope": "LIBRARY", "original": ".text"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_HI16", "symbol": "cd_callback", "original": ".text"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_LO16", "symbol": "cd_callback", "original": ".text"}, "144": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_26", "symbol": "SignalSema"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "7beb8d60c8c412a099eb0026e0d8a9840a29aaa8": {"b636bb39": {"type": "FUNCTION", "size": 228, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.4", "1.5.0", "1.5.1", "1.5.3"], "sdk": ["1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "sceCdNcmdDiskReady", "scope": "LIBRARY", "original": ".text"}, "40": {"type": "MIPS_26", "symbol": "ncmd_prechk", "scope": "LIBRARY", "original": ".text"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_HI16", "symbol": "cd_callback", "original": ".text"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_LO16", "symbol": "cd_callback", "original": ".text"}, "144": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_26", "symbol": "SignalSema"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "192": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "03f2ec6b8fbcb5c9a7534921b3649b76c6cceb88": {"b636bb39": {"type": "FUNCTION", "size": 228, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.2", "1.6.5", "2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1"], "sdk": ["1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: "MIPS_26", "symbol": "sceCdNcmdDiskReady", "scope": "LIBRARY", "original": ".text"}, "40": {"type": "MIPS_26", "symbol": "ncmd_prechk", "scope": "LIBRARY", "original": ".text"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_HI16", "symbol": "cd_callback", "original": ".text"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_LO16", "symbol": "cd_callback", "original": ".text"}, "144": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_26", "symbol": "SignalSema"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "192": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "440ef2d70983462f4f7744b2fdb33eebaf9ad535": {"191a70ca": {"type": "FUNCTION", "size": 232, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1"], "sdk": ["1.6.1"], "compiler_versions": ["2.3.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "sceCdNcmdDiskReady", "scope": "LIBRARY", "original": ".text"}, "40": {"type": "MIPS_26", "symbol": "ncmd_prechk", "scope": "LIBRARY", "original": ".text"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_HI16", "symbol": "cd_callback", "original": ".text"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_LO16", "symbol": "cd_callback", "original": ".text"}, "144": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "176": {"type": "MIPS_26", "symbol": "SignalSema"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "196": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "3ff687a7063c885f1aa3504bef5af89444c65954": {"991daf54": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.2"], "sdk": ["1.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "sceCdNcmdDiskReady", "scope": "LIBRARY", "original": ".text"}, "40": {"type": "MIPS_26", "symbol": "ncmd_prechk", "scope": "LIBRARY", "original": ".text"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_HI16", "symbol": "cd_callback", "original": ".text"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "cd_callback", "original": ".text"}, "128": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_26", "symbol": "SignalSema"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "176": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "8fb87926b9a1b6b99c90cdcdb9b79a8295e85415": {"c0825370": {"type": "FUNCTION", "size": 208, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["-2.-2.-2-46"], "sdk": ["2.5.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "sceCdNcmdDiskReady", "scope": "LIBRARY"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_ncmdsdata"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_ncmdsdata"}, "44": {"type": "MIPS_26", "symbol": "_sceCd_ncmd_prechk", "scope": "LIBRARY"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_ncmdsdata"}, "68": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": "sceCdCbfunc_num"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_c_cb_sem"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": "sceCdCbfunc_num"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": "sceCdCbfunc_num"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_cd_ncmd"}, "100": {"type": "MIPS_HI16", "symbol": "_sceCd_cd_callback"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_cd_ncmd"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_c_cb_sem"}, "120": {"type": "MIPS_LO16", "symbol": "_sceCd_cd_callback"}, "140": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": "sceCdCbfunc_num"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_ncmd_semid"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_c_cb_sem"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_ncmd_semid"}, "172": {"type": "MIPS_26", "symbol": "SignalSema"}}}}}, "sceCdGetError": {"9803b52b8d87031c96f2c8ed289a13a58065bebc": {"5c9dd936": {"type": "FUNCTION", "size": 152, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.4", "2.3.0", "2.3.4", "2.4.0", "2.4.2", "2.5.0", "2.5.2", "2.5.3", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0"], "sdk": ["2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "_sceCd_scmd_prechk", "scope": "LIBRARY"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_scmdrdata"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_cd_scmd"}, "40": {"type": "MIPS_LO16",)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "symbol": "", "original": "_sceCd_scmdrdata"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_cd_scmd"}, "76": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_scmd_semid"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_scmd_semid"}, "96": {"type": "MIPS_26", "symbol": "SignalSema"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_scmd_semid"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_scmd_semid"}, "124": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "faf479b4756c7f4fb17b254ae1ab6c4ab8eed594": {"9a9d87a0": {"type": "FUNCTION", "size": 152, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1", "1.6.2", "1.6.5", "2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.2.0", "2.2.1", "2.2.2"], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "scmd_prechk", "scope": "LIBRARY", "original": ".text"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_26", "symbol": "SignalSema"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "2f0e09eb2680b9fd930555bc5671b4a2a74f8b78": {"86fda323": {"type": "FUNCTION", "size": 148, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "scmd_prechk", "scope": "LIBRARY", "original": ".text"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_26", "symbol": "SignalSema"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "189a53b35130d84bb0eb7d29476cb8f6ed484213": {"e6cc6128": {"type": "FUNCTION", "size": 156, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["-2.-2.-2-46"], "sdk": ["2.5.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "_sceCd_scmd_prechk", "scope": "LIBRARY"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_scmdrdata"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_cd_scmd"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_scmdrdata"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_cd_scmd"}, "76": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_scmd_semid"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_scmd_semid"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_scmd_semid"}, "100": {"type": "MIPS_26", "symbol": "SignalSema"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_scmd_semid"}, "128": {"type": "MIPS_26", "symbol": "SignalSema"}}}}}, "sceCdBreak": {"ac78b2f3535e78bffc3d6e2bd5606946e8601729": {"56165e78": {"type": "FUNCTION", "size": 184, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["-2.-2.-2-46", "2.2.4", "2.3.0", "2.3.4", "2.4.0", "2.4.2", "2.5.0", "2.5.2", "2.5.3", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0"], "sdk": ["2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "_sceCd_scmd_prechk", "scope": "LIBRARY"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_scmdrdata"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": "sceCdCbfunc_num"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_scmdrdata"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_cd_scmd"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": "sceCdCbfunc_num"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_cd_scmd"}, "92": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_scmd_semid"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_scmd_semid"}, "112": {"type": "MIPS_26", "symbol": "SignalSema"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": "sceCdCbfunc_num"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": "sceCdCbfunc_num"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_scmd_semid"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_scmd_semid"}, "152": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "d9d1dc424251089dedddc06fa7c7e47e029093d8": {"db59f611": {"type": "FUNCTION", "size": 180, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.5", "2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.2.0", "2.2.1", "2.2.2"], "sdk": ["1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "scmd_prechk", "scope": "LIBRARY", "original": ".text"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_26", "symbol": "SignalSema"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_26", "symbol": "SignalSema"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "7bf6ff2d5f03137bda9210a211e9e69e594873b9": {"86fda323": {"type": "FUNCTION", "size": 148, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "scmd_prechk", "scope": "LIBRARY", "original": ".text"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_L)PS2SDB", 8192}, + std::string_view{R"PS2SDB(O16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_26", "symbol": "SignalSema"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "ca59de5dc6dc91f1a7861a57b8d10b7c5d624e0e": {"9a9d87a0": {"type": "FUNCTION", "size": 152, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1", "1.6.2"], "sdk": ["1.6.1", "1.6.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "scmd_prechk", "scope": "LIBRARY", "original": ".text"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_26", "symbol": "SignalSema"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_26", "symbol": "SignalSema"}}}}}, "sceCdPowerOff": {"65a2704875362103d01bad1140a97260e6423335": {"d93a0ea0": {"type": "FUNCTION", "size": 180, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0", "2.3.4", "2.4.2", "2.5.3", "2.7.0", "2.7.1", "2.8.0"], "sdk": ["2.3.0", "2.3.2", "2.3.4", "2.4.2", "2.4.3", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "_sceCd_scmd_prechk", "scope": "LIBRARY"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_scmdrdata"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_cd_scmd"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_scmdrdata"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_cd_scmd"}, "84": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_scmd_semid"}, "104": {"type": "MIPS_26", "symbol": "SignalSema"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_scmd_semid"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_scmd_semid"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_scmd_semid"}, "148": {"type": "MIPS_26", "symbol": "SignalSema"}}}, "df13661e": {"type": "FUNCTION", "size": 180, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0", "2.2.1", "2.2.2"], "sdk": ["2.2.0", "2.2.1", "2.2.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "scmd_prechk", "scope": "LIBRARY", "original": ".text"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_26", "symbol": "SignalSema"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "c52788ed286b9543f74aa6485359a59ab2112b04": {"7606fa33": {"type": "FUNCTION", "size": 184, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["-2.-2.-2-46"], "sdk": ["2.5.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "_sceCd_scmd_prechk", "scope": "LIBRARY"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_scmdrdata"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_cd_scmd"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_scmdrdata"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_cd_scmd"}, "84": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_scmd_semid"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_scmd_semid"}, "108": {"type": "MIPS_26", "symbol": "SignalSema"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_scmd_semid"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_scmd_semid"}, "152": {"type": "MIPS_26", "symbol": "SignalSema"}}}}}, "sceCdReadClock": {"9e5950d53fca344d9cd9e7d69c5d304700f2278d": {"e44b8ba8": {"type": "FUNCTION", "size": 248, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0", "2.3.4", "2.4.0", "2.4.2", "2.5.0", "2.5.2", "2.5.3", "2.6.0", "2.7.0", "2.7.1", "2.8.0"], "sdk": ["2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "_sceCd_scmd_prechk", "scope": "LIBRARY"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": "SCE_CD_debug"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": "SCE_CD_debug"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_26", "symbol": "scePrintf"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_scmdrdata"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_cd_scmd"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_scmdrdata"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_cd_scmd"}, "116": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_scmd_semid"}, "136": {"type": "MIPS_26", "symbol": "SignalSema"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_scmd_semid"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": "SCE_CD_debug"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "188": {"type": "MIPS_26", "symbol": "scePrintf"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_scmd_semid"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_scmd_semid"}, "208": {"type": "MIPS_26", "symbol": "SignalSema"}}}, "6514171f": {"type": "FUNCTION", "size": 248, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.2", "1.6.5", "2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.2.0", "2.2.1", "2.2.2"], "sdk": ["1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "scmd_prechk", "scope": "LIBRARY", "original": ".text"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_26", "symbol": "printf"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_26", "symbol": "SignalSema"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "184": {"type")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: "MIPS_HI16", "symbol": "", "original": ".rodata"}, "188": {"type": "MIPS_26", "symbol": "printf"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "208": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "5902422fe7c7e12db0a484a70971baec26780d48": {"cc27e33d": {"type": "FUNCTION", "size": 244, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "scmd_prechk", "scope": "LIBRARY", "original": ".text"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "60": {"type": "MIPS_26", "symbol": "printf"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_26", "symbol": "SignalSema"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_26", "symbol": "printf"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "204": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "a444a34068c1a4cc234fe27c06d4c9327a2606ea": {"a7867907": {"type": "FUNCTION", "size": 188, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "_sceCd_scmd_prechk", "scope": "LIBRARY"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_scmdrdata"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_cd_scmd"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_scmdrdata"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_cd_scmd"}, "84": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_scmd_semid"}, "104": {"type": "MIPS_26", "symbol": "SignalSema"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_scmd_semid"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_scmd_semid"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_scmd_semid"}, "156": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "239d40c249a2a4cd7007cd5ad426d64f4530c913": {"ff4ccd2a": {"type": "FUNCTION", "size": 252, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1"], "sdk": ["1.6.1"], "compiler_versions": ["2.3.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "scmd_prechk", "scope": "LIBRARY", "original": ".text"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_26", "symbol": "printf"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_26", "symbol": "SignalSema"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "192": {"type": "MIPS_26", "symbol": "printf"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "200": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "212": {"type": "MIPS_26", "symbol": "SignalSema"}}}, "9ba0244c": {"type": "FUNCTION", "size": 252, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["-2.-2.-2-46"], "sdk": ["2.5.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "_sceCd_scmd_prechk", "scope": "LIBRARY"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": "SCE_CD_debug"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": "SCE_CD_debug"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_26", "symbol": "scePrintf"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_scmdrdata"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_cd_scmd"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_scmdrdata"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_cd_scmd"}, "116": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_scmd_semid"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_scmd_semid"}, "140": {"type": "MIPS_26", "symbol": "SignalSema"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": "SCE_CD_debug"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "192": {"type": "MIPS_26", "symbol": "scePrintf"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "200": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_scmd_semid"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_scmd_semid"}, "212": {"type": "MIPS_26", "symbol": "SignalSema"}}}}}, "sceCdStInit": {"e030eed7c6e95b48f44f5718e452f6b223fb8ec2": {"150b94a3": {"type": "FUNCTION", "size": 44, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["-2.-2.-2-46", "1.6.1", "1.6.2", "1.6.5", "2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.4", "2.4.0", "2.4.2", "2.5.0", "2.5.2", "2.5.3", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0"], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_26", "symbol": "sceCdStream", "scope": "LIBRARY", "original": ".text"}}}}, "b236c194e0f69300efb8d6097d6b12cc7c445d9e": {"f37671e9": {"type": "FUNCTION", "size": 36, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "sym)PS2SDB", 8192}, + std::string_view{R"PS2SDB(bol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_26", "symbol": "sceCdStream", "scope": "LIBRARY", "original": ".text"}}}}}, "sceCdStStart": {"abe94f67c07a4957308f2f2d8b78da08d82656ad": {"1b2235ba": {"type": "FUNCTION", "size": 52, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["-2.-2.-2-46", "1.6.1", "1.6.2", "1.6.5", "2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.4", "2.4.0", "2.4.2", "2.5.0", "2.5.2", "2.5.3", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0"], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_26", "symbol": "sceCdStream", "scope": "LIBRARY", "original": ".text"}}}}, "8dbdec6427b9cae772af3d8a26727122241783e5": {"b887dd82": {"type": "FUNCTION", "size": 40, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "sceCdStream", "scope": "LIBRARY", "original": ".text"}}}}}, "sceCdStSeekF": {"96f12b523e8094d89b5f6b068a765d2ce53f4ec2": {"15663e77": {"type": "FUNCTION", "size": 44, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["-2.-2.-2-46", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.4", "2.4.0", "2.4.2", "2.5.0", "2.5.2", "2.5.3", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0"], "sdk": ["2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_26", "symbol": "sceCdStream", "scope": "LIBRARY", "original": ".text"}}}}}, "sceCdStSeek": {"98a85c1e675943f7889c0d3f7701e7bf8573cd9d": {"15663e77": {"type": "FUNCTION", "size": 44, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["-2.-2.-2-46", "1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.2", "1.6.5", "2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.4", "2.4.0", "2.4.2", "2.5.0", "2.5.2", "2.5.3", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_26", "symbol": "sceCdStream", "scope": "LIBRARY", "original": ".text"}}}}}, "sceCdStStop": {"3a4eb6a1f5ba0f20b81bd8722e19d8f3b9d8491f": {"b9e15775": {"type": "FUNCTION", "size": 56, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["-2.-2.-2-46", "1.6.1", "1.6.2", "1.6.5", "2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.4", "2.4.0", "2.4.2", "2.5.0", "2.5.2", "2.5.3", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0"], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "sceCdStream", "scope": "LIBRARY", "original": ".text"}}}}, "a1b84816b638a3ecebcefaa22921391e2207149e": {"191433ce": {"type": "FUNCTION", "size": 48, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_26", "symbol": "sceCdStream", "scope": "LIBRARY", "original": ".text"}}}}}, "sceCdStRead": {"f14c73c28d4a34762056136c9b74c97d6d497771": {"7d807f6b": {"type": "FUNCTION", "size": 392, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["-2.-2.-2-46", "2.2.4", "2.3.0", "2.3.4", "2.4.0", "2.4.2", "2.5.0", "2.5.2", "2.5.3", "2.6.0", "2.7.0", "2.7.1"], "sdk": ["2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": "SCE_CD_debug"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": "SCE_CD_debug"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_26", "symbol": "scePrintf"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": "SCE_CD_debug"}, "180": {"type": "MIPS_26", "symbol": "sceCdStream", "scope": "LIBRARY", "original": ".text"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": "SCE_CD_debug"}, "216": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "236": {"type": "MIPS_26", "symbol": "scePrintf"}, "260": {"type": "MIPS_26", "symbol": "sceCdDelayThread", "scope": "LIBRARY"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": "SCE_CD_debug"}, "280": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "284": {"type": "MIPS_26", "symbol": "scePrintf"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "300": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "312": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "320": {"type": "MIPS_26", "symbol": "sceCdStream", "scope": "LIBRARY", "original": ".text"}}}, "a2b46551": {"type": "FUNCTION", "size": 392, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.1", "2.2.2"], "sdk": ["2.2.1", "2.2.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "8)PS2SDB", 8192}, + std::string_view{R"PS2SDB(0": {"type": "MIPS_26", "symbol": "printf"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "180": {"type": "MIPS_26", "symbol": "sceCdStream", "scope": "LIBRARY", "original": ".text"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "216": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "236": {"type": "MIPS_26", "symbol": "printf"}, "260": {"type": "MIPS_26", "symbol": "sceCdDelayThread", "scope": "LIBRARY", "original": ".text"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "280": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "284": {"type": "MIPS_26", "symbol": "printf"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "300": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "312": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "320": {"type": "MIPS_26", "symbol": "sceCdStream", "scope": "LIBRARY", "original": ".text"}}}}, "ab1569de3fc106b39b0ac038f61f12a8b1660ce5": {"7e31cb88": {"type": "FUNCTION", "size": 392, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": "SCE_CD_debug"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": "SCE_CD_debug"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_26", "symbol": "scePrintf"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": "SCE_CD_debug"}, "180": {"type": "MIPS_26", "symbol": "sceCdStream", "scope": "LIBRARY", "original": ".text"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": "SCE_CD_debug"}, "216": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "236": {"type": "MIPS_26", "symbol": "scePrintf"}, "260": {"type": "MIPS_26", "symbol": "DelayThread"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": "SCE_CD_debug"}, "280": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "284": {"type": "MIPS_26", "symbol": "scePrintf"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "300": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "312": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "320": {"type": "MIPS_26", "symbol": "sceCdStream", "scope": "LIBRARY", "original": ".text"}}}}, "f7fca246d04de67e06cd8223154e065cb811d61b": {"a2b46551": {"type": "FUNCTION", "size": 392, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0"], "sdk": ["2.2.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_26", "symbol": "printf"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "180": {"type": "MIPS_26", "symbol": "sceCdStream", "scope": "LIBRARY", "original": ".text"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "216": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "236": {"type": "MIPS_26", "symbol": "printf"}, "260": {"type": "MIPS_26", "symbol": "sceCdDelayThread", "scope": "LIBRARY", "original": ".text"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "280": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "284": {"type": "MIPS_26", "symbol": "printf"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "300": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "312": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "320": {"type": "MIPS_26", "symbol": "sceCdStream", "scope": "LIBRARY", "original": ".text"}}}}, "e71602b452eedbcf3b78501b4ff6ac07d97606ba": {"5ced4540": {"type": "FUNCTION", "size": 360, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.5.0", "1.5.1", "1.5.3"], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_26", "symbol": "printf"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "108": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_26", "symbol": "sceCdStream", "scope": "LIBRARY", "original": ".text"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "208": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "228": {"type": "MIPS_26", "symbol": "printf"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "248": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "252": {"type": "MIPS_26", "symbol": "printf"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "268": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "288": {"type": "MIPS_26", "symbol": "sceCdStream", "scope": "LIBRARY", "original": ".text"}}}}, "d2516111f61ac2ded30f100b2b7a537ba737a3c3": {"bc1e55cf": {"type": "FUNCTION", "size": 368, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3"], "sdk": ["2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_26", "symbol": "printf"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_LO16", "symb)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ol": "", "original": ".data"}, "180": {"type": "MIPS_26", "symbol": "sceCdStream", "scope": "LIBRARY", "original": ".text"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "216": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "236": {"type": "MIPS_26", "symbol": "printf"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "256": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "260": {"type": "MIPS_26", "symbol": "printf"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "276": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "296": {"type": "MIPS_26", "symbol": "sceCdStream", "scope": "LIBRARY", "original": ".text"}}}}, "9338a09e532f6ce98eb07eca74afa6d729f75c94": {"7472cdfc": {"type": "FUNCTION", "size": 376, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.2", "1.6.5"], "sdk": ["1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_26", "symbol": "printf"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "188": {"type": "MIPS_26", "symbol": "sceCdStream", "scope": "LIBRARY", "original": ".text"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "244": {"type": "MIPS_26", "symbol": "printf"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "264": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "268": {"type": "MIPS_26", "symbol": "printf"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "284": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "304": {"type": "MIPS_26", "symbol": "sceCdStream", "scope": "LIBRARY", "original": ".text"}}}}, "45cb4a42358caf196223a1aa591c08c399fb0e97": {"11ab74bd": {"type": "FUNCTION", "size": 376, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1"], "sdk": ["1.6.1"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_26", "symbol": "printf"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "188": {"type": "MIPS_26", "symbol": "sceCdStream", "scope": "LIBRARY", "original": ".text"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "244": {"type": "MIPS_26", "symbol": "printf"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "264": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "268": {"type": "MIPS_26", "symbol": "printf"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "284": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "304": {"type": "MIPS_26", "symbol": "sceCdStream", "scope": "LIBRARY", "original": ".text"}}}}, "f0fe5be616091b32dcc844adcc2f5f10fe872c6d": {"a3577d2c": {"type": "FUNCTION", "size": 356, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.4"], "sdk": ["1.4.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_26", "symbol": "printf"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "152": {"type": "MIPS_26", "symbol": "sceCdStream", "scope": "LIBRARY", "original": ".text"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "196": {"type": "MIPS_26", "symbol": "printf"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "228": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "232": {"type": "MIPS_26", "symbol": "printf"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "264": {"type": "MIPS_26", "symbol": "sceCdStream", "scope": "LIBRARY", "original": ".text"}, "296": {"type": "MIPS_26", "symbol": "SyncDCache"}}}}, "5923e420a725f75c8369840d2be08caa27e2d47d": {"1880f443": {"type": "FUNCTION", "size": 340, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.2"], "sdk": ["1.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_26", "symbol": "printf"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_26", "symbol": "sceCdStream", "scope": "LIBRARY", "original": ".text"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "180": {"type": "MIPS_26", "symbol": "printf"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "212": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "216": {"type": "MIPS_26", "symbol": "printf"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "248": {"type": "MIPS_26", "symbol": "sceCdStream", "scope": "LIBRARY", "original": ".text"}, "280": {"type": "MIPS_26", "symbol": "SyncDCache"}}}}}, "sceCdStPause": {"a1f578d83c935cc5c3e3579b28d10748af7c6af0": {"20d8683f": {"type": "FUNCTION", "size": 80, "library": "libcdvd", "scope": "GLOBAL", "is_interface)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": true, "versions": ["-2.-2.-2-46", "2.2.4", "2.3.0", "2.3.4", "2.4.0", "2.4.2", "2.5.0", "2.5.2", "2.5.3", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0"], "sdk": ["2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "SCE_CD_debug"}, "8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "SCE_CD_debug"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_26", "symbol": "scePrintf"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_26", "symbol": "sceCdStream", "scope": "LIBRARY", "original": ".text"}}}, "899d0da3": {"type": "FUNCTION", "size": 80, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1", "1.6.2", "1.6.5", "2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.2.0", "2.2.1", "2.2.2"], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_26", "symbol": "printf"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_26", "symbol": "sceCdStream", "scope": "LIBRARY", "original": ".text"}}}}}, "sceCdStResume": {"6c9eb9759860d4377e90948ca20ee29f4cd6915a": {"d92762cb": {"type": "FUNCTION", "size": 84, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["-2.-2.-2-46", "2.2.4", "2.3.0", "2.3.4", "2.4.0", "2.4.2", "2.5.0", "2.5.2", "2.5.3", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0"], "sdk": ["2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "SCE_CD_debug"}, "8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "SCE_CD_debug"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_26", "symbol": "scePrintf"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_26", "symbol": "sceCdStream", "scope": "LIBRARY", "original": ".text"}}}, "2cf685dc": {"type": "FUNCTION", "size": 84, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1", "1.6.2", "1.6.5", "2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.2.0", "2.2.1", "2.2.2"], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_26", "symbol": "printf"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_26", "symbol": "sceCdStream", "scope": "LIBRARY", "original": ".text"}}}}}, "sceCdStStat": {"eea59dd06431d2779f111d516121a861a30a01d4": {"35153f03": {"type": "FUNCTION", "size": 72, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["-2.-2.-2-46", "2.2.4", "2.3.0", "2.3.4", "2.4.0", "2.4.2", "2.5.0", "2.5.2", "2.5.3", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0"], "sdk": ["2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "SCE_CD_debug"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "SCE_CD_debug"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "24": {"type": "MIPS_26", "symbol": "scePrintf"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_26", "symbol": "sceCdStream", "scope": "LIBRARY", "original": ".text"}}}, "9ee6aa19": {"type": "FUNCTION", "size": 72, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.2", "1.6.5", "2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.2.0", "2.2.1", "2.2.2"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "24": {"type": "MIPS_26", "symbol": "printf"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_26", "symbol": "sceCdStream", "scope": "LIBRARY", "original": ".text"}}}}}, "sceCdStream": {"27b08274e2c3058cdcc321403400cce0b1500da0": {"01b9fa89": {"type": "FUNCTION", "size": 360, "library": "libcdvd", "scope": "GLOBAL", "is_interface": false, "versions": ["2.2.4", "2.3.0", "2.3.4", "2.4.0", "2.4.2", "2.5.0", "2.5.2", "2.5.3", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0"], "sdk": ["2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_ncmdsdata"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_ncmdsdata"}, "68": {"type": "MIPS_26", "symbol": "_sceCd_ncmd_prechk", "scope": "LIBRARY"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": "SCE_CD_debug"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": "SCE_CD_debug"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_ncmdsdata"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "108": {"type": "MIPS_26", "symbol": "scePrintf"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "116")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: {"type": "MIPS_LO16", "symbol": "", "original": "SCE_CD_debug"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_ncmdsdata"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "172": {"type": "MIPS_26", "symbol": "scePrintf"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_ncmdrdata"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_cd_ncmd"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_ncmdrdata"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_cd_ncmd"}, "236": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": "SCE_CD_debug"}, "252": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_ncmd_semid"}, "256": {"type": "MIPS_26", "symbol": "SignalSema"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_ncmd_semid"}, "276": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "280": {"type": "MIPS_26", "symbol": "scePrintf"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "288": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_ncmd_semid"}, "300": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_ncmd_semid"}, "304": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "1ab131fc168201465085a23be72e4cf50e84d305": {"f36cd837": {"type": "FUNCTION", "size": 352, "library": "libcdvd", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.2.0", "2.2.1", "2.2.2"], "sdk": ["2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "ncmd_prechk", "scope": "LIBRARY", "original": ".text"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_26", "symbol": "printf"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "168": {"type": "MIPS_26", "symbol": "printf"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "180": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "232": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "248": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "252": {"type": "MIPS_26", "symbol": "SignalSema"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "272": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "276": {"type": "MIPS_26", "symbol": "printf"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "284": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "300": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "c18b17986938bd72a99e8e04f2639c0168dcba04": {"73a4aea5": {"type": "FUNCTION", "size": 348, "library": "libcdvd", "scope": "GLOBAL", "is_interface": false, "versions": ["1.4.4", "1.5.0", "1.5.1", "1.5.3"], "sdk": ["1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "ncmd_prechk", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_26", "symbol": "printf"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "164": {"type": "MIPS_26", "symbol": "printf"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "176": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "228": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "244": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "248": {"type": "MIPS_26", "symbol": "SignalSema"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "268": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "272": {"type": "MIPS_26", "symbol": "printf"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "280": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "292": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "296": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "4cd563d58d286ed3810522a06f40a3d5a6d68a42": {"55d0c9b0": {"type": "FUNCTION", "size": 352, "library": "libcdvd", "scope": "GLOBAL", "is_interface": false, "versions": ["1.6.2", "1.6.5"], "sdk": ["1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "ncmd_prechk", "scope": "LIBRARY", "original": ".text"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_26", "symbol": "printf"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "168": {"type": "MIPS_26", "symbol": "printf"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "180": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "232": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "248": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "252": {"type": "MIPS_26", "symbol": "SignalSema"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "272": {"type": "MIPS_HI16", )PS2SDB", 8192}, + std::string_view{R"PS2SDB("symbol": "", "original": ".rodata"}, "276": {"type": "MIPS_26", "symbol": "printf"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "284": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "300": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "d33c1b0b2e73333b69c80cd62164bef05c78d09f": {"0dc2d6dc": {"type": "FUNCTION", "size": 356, "library": "libcdvd", "scope": "GLOBAL", "is_interface": false, "versions": ["1.6.1"], "sdk": ["1.6.1"], "compiler_versions": ["2.3.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "ncmd_prechk", "scope": "LIBRARY", "original": ".text"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_26", "symbol": "printf"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "168": {"type": "MIPS_26", "symbol": "printf"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "180": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "232": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "248": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "256": {"type": "MIPS_26", "symbol": "SignalSema"}, "276": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "280": {"type": "MIPS_26", "symbol": "printf"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "288": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "300": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "304": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "399281eb9ce0ef0649b4067882a4e9aa033c32fd": {"6a676d9e": {"type": "FUNCTION", "size": 336, "library": "libcdvd", "scope": "GLOBAL", "is_interface": false, "versions": ["1.4.2"], "sdk": ["1.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "ncmd_prechk", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_26", "symbol": "printf"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "164": {"type": "MIPS_26", "symbol": "printf"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "216": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "232": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "236": {"type": "MIPS_26", "symbol": "SignalSema"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "256": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "260": {"type": "MIPS_26", "symbol": "printf"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "268": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "284": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "16e9f97937e01d0f730cd9a6e2690f48ee61759c": {"113586a5": {"type": "FUNCTION", "size": 364, "library": "libcdvd", "scope": "GLOBAL", "is_interface": false, "versions": ["-2.-2.-2-46"], "sdk": ["2.5.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_ncmdsdata"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_ncmdsdata"}, "68": {"type": "MIPS_26", "symbol": "_sceCd_ncmd_prechk", "scope": "LIBRARY"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": "SCE_CD_debug"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": "SCE_CD_debug"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_ncmdsdata"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "108": {"type": "MIPS_26", "symbol": "scePrintf"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": "SCE_CD_debug"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_ncmdsdata"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "172": {"type": "MIPS_26", "symbol": "scePrintf"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_ncmdrdata"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_cd_ncmd"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_ncmdrdata"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_cd_ncmd"}, "236": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": "SCE_CD_debug"}, "252": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_ncmd_semid"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_ncmd_semid"}, "260": {"type": "MIPS_26", "symbol": "SignalSema"}, "280": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "284": {"type": "MIPS_26", "symbol": "scePrintf"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "292": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_ncmd_semid"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_ncmd_semid"}, "308": {"type": "MIPS_26", "symbol": "SignalSema"}}}}}, "sceCdStatus": {"f57a1aa834c8bfc33f3a0dd9df198df0d666ba0c": {"8c51f909": {"type": "FUNCTION", "size": 184, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0", "2.3.4", "2.4.0", "2.4.2", "2.5.0", "2.5.2", "2.5.3", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0"], "sdk": ["2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "_sceCd_scmd_prechk", "scope": "LIBRARY"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_scmdrdata"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_cd_scmd"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_scmdrdata"}, "44": {"type": "MIPS_LO16", "symbol": "", "original")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: "_sceCd_cd_scmd"}, "76": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_scmd_semid"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_scmd_semid"}, "96": {"type": "MIPS_26", "symbol": "SignalSema"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_scmd_semid"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_scmd_semid"}, "124": {"type": "MIPS_26", "symbol": "SignalSema"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "SCE_CD_debug"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "SCE_CD_debug"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "156": {"type": "MIPS_26", "symbol": "scePrintf"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}, "feac35da": {"type": "FUNCTION", "size": 184, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.2", "1.6.5", "2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.2.0", "2.2.1", "2.2.2"], "sdk": ["1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "scmd_prechk", "scope": "LIBRARY", "original": ".text"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_26", "symbol": "SignalSema"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_26", "symbol": "SignalSema"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "156": {"type": "MIPS_26", "symbol": "printf"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "8adba0047c8efb8e8b0e65f768b0cc5311bc7ff2": {"e50e578b": {"type": "FUNCTION", "size": 180, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "scmd_prechk", "scope": "LIBRARY", "original": ".text"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_26", "symbol": "SignalSema"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_26", "symbol": "SignalSema"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "152": {"type": "MIPS_26", "symbol": "printf"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "e6188b72e8fd633134b19b855a92fcaf2ad8ac6c": {"d016e000": {"type": "FUNCTION", "size": 188, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1"], "sdk": ["1.6.1"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "scmd_prechk", "scope": "LIBRARY", "original": ".text"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_26", "symbol": "SignalSema"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "SignalSema"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "160": {"type": "MIPS_26", "symbol": "printf"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}, "52ce7c15": {"type": "FUNCTION", "size": 188, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["-2.-2.-2-46"], "sdk": ["2.5.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "_sceCd_scmd_prechk", "scope": "LIBRARY"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_scmdrdata"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_cd_scmd"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_scmdrdata"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_cd_scmd"}, "76": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_scmd_semid"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_scmd_semid"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_scmd_semid"}, "100": {"type": "MIPS_26", "symbol": "SignalSema"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_scmd_semid"}, "128": {"type": "MIPS_26", "symbol": "SignalSema"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": "SCE_CD_debug"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": "SCE_CD_debug"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "160": {"type": "MIPS_26", "symbol": "scePrintf"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sceCdGetDiskType": {"fb75ab361db0f00aa15c3554aa8223d8632e8a47": {"5c9dd936": {"type": "FUNCTION", "size": 152, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0", "2.3.4", "2.4.0", "2.4.2", "2.5.2", "2.5.3", "2.6.0", "2.7.0", "2.7.1", "2.8.0"], "sdk": ["2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "_sceCd_scmd_prechk", "scope": "LIBRARY"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_scmdrdata"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_cd_scmd"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_scmdrdata"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_cd_scmd"}, "76": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_scmd_semid"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_scmd_semid"}, "96": {"type": "MIPS_26", "symbol": "SignalSema"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_scmd_semid"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_scmd_semid"}, "124": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "0768f3d996ce377536c543fb6d302fbae620cb64": {"9a9d87a0": {"type": "FUNCTION", "size": 152, "library": ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1", "1.6.2", "1.6.5", "2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.2.0", "2.2.1", "2.2.2"], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "scmd_prechk", "scope": "LIBRARY", "original": ".text"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_26", "symbol": "SignalSema"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "b4584a38e834f45c9582690c8766881e580d1035": {"86fda323": {"type": "FUNCTION", "size": 148, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "scmd_prechk", "scope": "LIBRARY", "original": ".text"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_26", "symbol": "SignalSema"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "65e1a3115322f769ebe0a53df21b0ff66167bcc3": {"0846e2f4": {"type": "FUNCTION", "size": 36, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0"], "sdk": ["3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceCdGetDiskType2", "scope": "LIBRARY", "original": ".text"}}}}, "53e47bd024a4ca687cecc6ef14a2bc6d90f63f16": {"e6cc6128": {"type": "FUNCTION", "size": 156, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["-2.-2.-2-46"], "sdk": ["2.5.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "_sceCd_scmd_prechk", "scope": "LIBRARY"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_scmdrdata"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_cd_scmd"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_scmdrdata"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_cd_scmd"}, "76": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_scmd_semid"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_scmd_semid"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_scmd_semid"}, "100": {"type": "MIPS_26", "symbol": "SignalSema"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_scmd_semid"}, "128": {"type": "MIPS_26", "symbol": "SignalSema"}}}}}, "_sceCdSC": {"49e0fa87d434c535025a282b7277d258611238f2": {"8ed529a0": {"type": "FUNCTION", "size": 176, "library": "libcdvd", "scope": "GLOBAL", "is_interface": false, "versions": ["2.7.1", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceCdDiskReady_old": {"0eeab37498bd5ec4a10986bd64325952a77b1ca4": {"65e77852": {"type": "FUNCTION", "size": 504, "library": "libcdvd", "scope": "GLOBAL", "is_interface": false, "versions": ["2.7.1", "2.8.0"], "sdk": ["2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "60": {"type": "MIPS_26", "symbol": "scePrintf"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_26", "symbol": "cmd_sem_init", "scope": "LIBRARY", "original": ".text"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_26", "symbol": "PollSema"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_26", "symbol": "sceCdSyncS", "scope": "LIBRARY", "original": ".text"}, "116": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "204": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "232": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "236": {"type": "MIPS_26", "symbol": "scePrintf"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "308": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "312": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "328": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "336": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "372": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "384": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "388": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "392": {"type": "MIPS_26", "symbol": "SignalSema"}, "424": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "428": {"type": "MIPS_26", "symbol": "scePrintf"}, "432": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "440": {"type": "MIPS_LO16", "symbol": "", "or)PS2SDB", 8192}, + std::string_view{R"PS2SDB(iginal": ".data"}, "448": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "8e3bf0cd7a31c74c3d846c31b50f117a23d66012": {"5fa1bac0": {"type": "FUNCTION", "size": 536, "library": "libcdvd", "scope": "GLOBAL", "is_interface": false, "versions": ["3.0.0", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "60": {"type": "MIPS_26", "symbol": "scePrintf"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_26", "symbol": "DIntr"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_26", "symbol": "EIntr"}, "100": {"type": "MIPS_26", "symbol": "cmd_sem_init", "scope": "LIBRARY", "original": ".text"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_26", "symbol": "PollSema"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_26", "symbol": "sceCdSyncS", "scope": "LIBRARY", "original": ".text"}, "148": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "236": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "264": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "268": {"type": "MIPS_26", "symbol": "scePrintf"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "336": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "340": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "344": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "348": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "360": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "368": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "372": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "404": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "416": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "420": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "424": {"type": "MIPS_26", "symbol": "SignalSema"}, "456": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "460": {"type": "MIPS_26", "symbol": "scePrintf"}, "464": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "472": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "480": {"type": "MIPS_26", "symbol": "SignalSema"}}}}}, "cd_callback": {"dfbe509f70b507c8cce20fab0fdb5784bc39c8de": {"cf858a2a": {"type": "FUNCTION", "size": 176, "library": "libcdvd", "scope": "LOCAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.2.0"], "sdk": ["2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_26", "symbol": "iSignalSema"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_26", "symbol": "iSignalSema"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "1c89026bd311070c793949d0a9ca0751aac96a35": {"eadd2ae5": {"type": "FUNCTION", "size": 128, "library": "libcdvd", "scope": "LOCAL", "is_interface": false, "versions": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.2"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_26", "symbol": "iSignalSema"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_26", "symbol": "iSignalSema"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "fa6a3b662bfd6891d3e6bce4799fedee0806c015": {"74267e14": {"type": "FUNCTION", "size": 180, "library": "libcdvd", "scope": "LOCAL", "is_interface": false, "versions": ["1.6.5"], "sdk": ["1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".)PS2SDB", 8192}, + std::string_view{R"PS2SDB(data"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_26", "symbol": "iSignalSema"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_26", "symbol": "iSignalSema"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "529ed9a996560c8cb001f2d2ffbed7831b76bba7": {"7c09ba0c": {"type": "FUNCTION", "size": 132, "library": "libcdvd", "scope": "LOCAL", "is_interface": false, "versions": ["1.6.1"], "sdk": ["1.6.1"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_26", "symbol": "iSignalSema"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_26", "symbol": "iSignalSema"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "a3e5dd9463f25f1d76b7e00c85a943d3e35da4dc": {"c4540a8e": {"type": "FUNCTION", "size": 160, "library": "libcdvd", "scope": "LOCAL", "is_interface": false, "versions": ["2.2.1", "2.2.2"], "sdk": ["2.2.1", "2.2.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_26", "symbol": "iSignalSema"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_26", "symbol": "iSignalSema"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "cd_read_intr": {"cce180cc59edd738f2e7095fda0c3984f832c800": {"9b9e895a": {"type": "FUNCTION", "size": 160, "library": "libcdvd", "scope": "LOCAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.2.0", "2.2.1", "2.2.2"], "sdk": ["2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_26", "symbol": "cd_callback", "scope": "LIBRARY", "original": ".text"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "58396080f16cef08281cf31c02e065e5aad30703": {"1452518b": {"type": "FUNCTION", "size": 152, "library": "libcdvd", "scope": "LOCAL", "is_interface": false, "versions": ["1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.2", "1.6.5"], "sdk": ["1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_26", "symbol": "cd_callback", "scope": "LIBRARY", "original": ".text"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "ca282eecbe859408ada99a40279b49f118c43a27": {"bc82e2d7": {"type": "FUNCTION", "size": 160, "library": "libcdvd", "scope": "LOCAL", "is_interface": false, "versions": ["1.4.2"], "sdk": ["1.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_26", "symbol": "cd_callback", "scope": "LIBRARY", "original": ".text"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceCdIntToPos": {"7c8506fc4cc53f16bdb5ef013b9727064bdda323": {"00000000": {"type": "FUNCTION", "size": 200, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.2", "1.6.5", "2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.2.0", "2.2.1", "2.2.2", "2.3.4", "2.4.0", "2.4.2", "2.8.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.3.4", "2.4.0", "2.4.2", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceCdPosToInt": {"8416a761b49efed450b68fe769013bb85bd5950f": {"00000000": {"type": "FUNCTION", "size": 96, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.2", "1.6.5", "2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.2.0", "2.2.1", "2.2.2", "2.4.2"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.4.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "ncmd_prechk": {"f874e8b52861d9b50a26e10fd9f797a21d6b2fec": {"71ecb495": {"type": "FUNCTION", "size": 368, "library": "libcdvd", "scope": "LOCAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.2.0", "2.2.1", "2.2.2"], "sdk": ["2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_26", "symbol": "cmd_sem_init", "scope": "LIBRARY", "original": ".text"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_26", "symbol": "PollSema"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".ro)PS2SDB", 8192}, + std::string_view{R"PS2SDB(data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_26", "symbol": "printf"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_26", "symbol": "sceCdSync", "scope": "LIBRARY", "original": ".text"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_26", "symbol": "SignalSema"}, "160": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "244": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "260": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "276": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "280": {"type": "MIPS_26", "symbol": "printf"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "328": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "e3ddffd97ac477a4a629b5032e707a04f7e3aa4b": {"6bae4762": {"type": "FUNCTION", "size": 324, "library": "libcdvd", "scope": "LOCAL", "is_interface": false, "versions": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_26", "symbol": "cmd_sem_init", "scope": "LIBRARY", "original": ".text"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_26", "symbol": "PollSema"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_26", "symbol": "sceCdSync", "scope": "LIBRARY", "original": ".text"}, "88": {"type": "MIPS_26", "symbol": "SignalSema"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "220": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "224": {"type": "MIPS_26", "symbol": "printf"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "292": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "5b9f3f4c9121c38eaab1a2f2f899536e63de88bd": {"b5b36d34": {"type": "FUNCTION", "size": 380, "library": "libcdvd", "scope": "LOCAL", "is_interface": false, "versions": ["1.6.2", "1.6.5"], "sdk": ["1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_26", "symbol": "cmd_sem_init", "scope": "LIBRARY", "original": ".text"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_26", "symbol": "PollSema"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_26", "symbol": "printf"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_26", "symbol": "sceCdSync", "scope": "LIBRARY", "original": ".text"}, "140": {"type": "MIPS_26", "symbol": "SignalSema"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "244": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "260": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "276": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "280": {"type": "MIPS_26", "symbol": "printf"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "336": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "348": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "a33115788b1b0473540425de92f161fe61eab78c": {"3cf9b6f6": {"type": "FUNCTION", "size": 372, "library": "libcdvd", "scope": "LOCAL", "is_interface": false, "versions": ["1.6.1"], "sdk": ["1.6.1"], "compiler_versions": ["2.3.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_26", "symbol": "cmd_sem_init", "scope": "LIBRARY", "original": ".text"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_26", "symbol": "PollSema"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_26", "symbol": "printf"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_26", "symbol": "sceCdSync", "scope": "LIBRARY", "original": ".text"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_26", "symbol": "SignalSema"}, "160": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "244": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "260": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "276": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "280": {"type": "MIPS_26", "symbol": "printf"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "328": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceCdGetReadPos": {"beaeb9017c169708c72456f351eda031a17d06a9": {"d92ba68e": {"type": "FUNCTION", "size": 48, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.2", "1.6.5", "2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.2.0", "2.2.1", "2.2.2", "2.4.0", "2.4.2", "2.5.0", "2.5.3", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.4.0", "2.4.2", "2.4.3", "2.5.0", "2.5.3", "2.7.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceCdReadChain": {"a730985ff767c1bbd0984e3e5fb1f2afe1274dc6": {"eb2ad4ad": {"type": "FUNCTION", "size": 744, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.3", "2.2.0", "2.2.1", "2.2.2"], "sdk": ["2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "sceCdNcmdDiskReady", "scope": "LIBRARY", "original": ".text"}, "68": {"type": "MIPS_26", "symbol": "ncmd_prechk", "scope": "LIBRARY", "original": ".text"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "100": {"type": "MIPS_26", "symbol": "printf"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "200": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "360": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "368": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "376": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "380": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "384": {"type": "MIPS_26", "symbol": "printf"}, "388": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "404": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "408": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "412": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "440": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "464": {"type": "MIPS_26", "symbol": "printf"}, "468": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "484": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "508": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "516": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "524": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "528": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "536": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "544": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "548": {"type": "MIPS_26", "symbol": "printf"}, "552": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "560": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "564": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "568": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "572": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "580": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "588": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "596": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "604": {"type": "MIPS_HI16", "symbol": "cd_callback", "original": ".text"}, "612": {"type": "MIPS_LO16", "symbol": "cd_callback", "original": ".text"}, "620": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "632": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "636": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "640": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "644": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "648": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "652": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "656": {"type": "MIPS_26", "symbol": "SignalSema"}, "660": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "680": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "684": {"type": "MIPS_26", "symbol": "printf"}, "688": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "a771150290d0d60253423bae78760f200d676687": {"a4f3e57e": {"type": "FUNCTION", "size": 752, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1"], "sdk": ["2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "sceCdNcmdDiskReady", "scope": "LIBRARY", "original": ".text"}, "68": {"type": "MIPS_26", "symbol": "ncmd_prechk", "scope": "LIBRARY", "original": ".text"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "100": {"type": "MIPS_26", "symbol": "printf"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "200": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "360": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "368": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "376": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "380": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "384": {"type": "MIPS_26", "symbol": "printf"}, "388": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "404": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "408": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "412": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "440": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "4)PS2SDB", 8192}, + std::string_view{R"PS2SDB(64": {"type": "MIPS_26", "symbol": "printf"}, "468": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "484": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "508": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "516": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "524": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "528": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "536": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "544": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "548": {"type": "MIPS_26", "symbol": "printf"}, "552": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "560": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "564": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "568": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "572": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "580": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "588": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "596": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "604": {"type": "MIPS_HI16", "symbol": "cd_callback", "original": ".text"}, "612": {"type": "MIPS_LO16", "symbol": "cd_callback", "original": ".text"}, "620": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "632": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "636": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "640": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "644": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "648": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "652": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "656": {"type": "MIPS_26", "symbol": "SignalSema"}, "660": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "676": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "680": {"type": "MIPS_26", "symbol": "printf"}, "684": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "688": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "692": {"type": "MIPS_26", "symbol": "SignalSema"}, "696": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "342463486e0679864c00725d1936ade8468152e1": {"a6be74ad": {"type": "FUNCTION", "size": 728, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.2", "1.6.5"], "sdk": ["1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "sceCdNcmdDiskReady", "scope": "LIBRARY", "original": ".text"}, "68": {"type": "MIPS_26", "symbol": "ncmd_prechk", "scope": "LIBRARY", "original": ".text"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "100": {"type": "MIPS_26", "symbol": "printf"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "344": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "360": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "364": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "368": {"type": "MIPS_26", "symbol": "printf"}, "372": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "388": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "392": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "396": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "448": {"type": "MIPS_26", "symbol": "printf"}, "452": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "468": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "492": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "500": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "508": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "512": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "520": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "528": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "532": {"type": "MIPS_26", "symbol": "printf"}, "536": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "544": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "548": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "552": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "556": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "560": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "564": {"type": "MIPS_HI16", "symbol": "cd_callback", "original": ".text"}, "568": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "580": {"type": "MIPS_LO16", "symbol": "cd_callback", "original": ".text"}, "600": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "612": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "616": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "620": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "624": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "628": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "632": {"type": "MIPS_26", "symbol": "SignalSema"}, "636": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "652": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "656": {"type": "MIPS_26", "symbol": "printf"}, "660": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "664": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "668": {"type": "MIPS_26", "symbol": "SignalSema"}, "672": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "8dc0e8e91af99c76989e5944676b216b240d33b6": {"dbd32f4e": {"type": "FUNCTION", "size": 736, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1"], "sdk": ["1.6.1"], "compiler_versions": ["2.3.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "sceCdNcmdDiskReady", "scope": "LIBRARY", "original": ".text"}, "68": {"type": "MIPS_26", "symbol": "ncmd_prechk", "scope": "LIBRARY", "original": ".text"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "100": {"type": "MIPS_26", "symbol": "printf"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "344": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "360": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "364": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "368": {"type": "MIPS_26", "symbol": "printf"}, "372": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "388": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "392": {"type": "MIPS_HI16", "symbol": "", "or)PS2SDB", 8192}, + std::string_view{R"PS2SDB(iginal": ".rodata"}, "396": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "448": {"type": "MIPS_26", "symbol": "printf"}, "452": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "468": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "492": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "500": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "508": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "512": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "520": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "528": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "532": {"type": "MIPS_26", "symbol": "printf"}, "536": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "544": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "548": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "552": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "556": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "560": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "564": {"type": "MIPS_HI16", "symbol": "cd_callback", "original": ".text"}, "568": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "580": {"type": "MIPS_LO16", "symbol": "cd_callback", "original": ".text"}, "600": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "612": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "616": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "620": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "624": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "628": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "632": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "636": {"type": "MIPS_26", "symbol": "SignalSema"}, "656": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "660": {"type": "MIPS_26", "symbol": "printf"}, "664": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "668": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "672": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "676": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "5107e1bce65f274e17f96af1d4ac2217093b53d8": {"0bfa8545": {"type": "FUNCTION", "size": 788, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.0", "2.8.0"], "sdk": ["2.4.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_ncmdsdata"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_ee_read_mode"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_ee_read_mode"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_ncmdsdata"}, "76": {"type": "MIPS_26", "symbol": "sceCdNcmdDiskReady", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "_sceCd_ncmd_prechk", "scope": "LIBRARY"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": "SCE_CD_debug"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": "SCE_CD_debug"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_26", "symbol": "scePrintf"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_Read_cur_pos"}, "216": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_Read_cur_pos"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_Read_cur_pos"}, "372": {"type": "MIPS_LO16", "symbol": "", "original": "SCE_CD_debug"}, "380": {"type": "MIPS_LO16", "symbol": "", "original": "SCE_CD_debug"}, "388": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_Read_cur_pos"}, "392": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "396": {"type": "MIPS_26", "symbol": "scePrintf"}, "400": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "420": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_ee_read_mode"}, "444": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "468": {"type": "MIPS_LO16", "symbol": "", "original": "SCE_CD_debug"}, "492": {"type": "MIPS_26", "symbol": "scePrintf"}, "496": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "512": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "536": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_ee_read_mode"}, "556": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "564": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_Read_cur_pos"}, "568": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "576": {"type": "MIPS_LO16", "symbol": "", "original": "SCE_CD_debug"}, "584": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "588": {"type": "MIPS_26", "symbol": "scePrintf"}, "592": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "600": {"type": "MIPS_HI16", "symbol": "", "original": "sceCdCbfunc_num"}, "604": {"type": "MIPS_LO16", "symbol": "", "original": "sceCdCbfunc_num"}, "608": {"type": "MIPS_LO16", "symbol": "", "original": "sceCdCbfunc_num"}, "612": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_cd_ncmd"}, "620": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_cd_ncmd"}, "628": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_c_cb_sem"}, "636": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_c_cb_sem"}, "644": {"type": "MIPS_HI16", "symbol": "_sceCd_cd_callback"}, "652": {"type": "MIPS_LO16", "symbol": "_sceCd_cd_callback"}, "660": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "672": {"type": "MIPS_HI16", "symbol": "", "original": "SCE_CD_debug"}, "676": {"type": "MIPS_HI16", "symbol": "", "original": "sceCdCbfunc_num"}, "680": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_c_cb_sem"}, "684": {"type": "MIPS_LO16", "symbol": "", "original": "sceCdCbfunc_num"}, "688": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_ncmd_semid"}, "692": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_c_cb_sem"}, "696": {"type": "MIPS_26", "symbol": "SignalSema"}, "700": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_ncmd_semid"}, "712": {"type": "MIPS_LO16", "symbol": "", "original": "SCE_CD_debug"}, "724": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "728": {"type": "MIPS_26", "symbol": "scePrintf"}, "732": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sceCdReadIOPm": {"8bc44c8eda0580bc7128eb0e270ca1412aa913d3": {"6d2c84e1": {"type": "FUNCTION", "size": 320, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.3", "2.2.0", "2.2.1", "2.2.2"], "sdk": ["2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "sceCdNcmdDiskReady", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_26", "symbol": "ncmd_prechk", "scope": "LIBRARY", "original": ".text"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "172": {"type": "MIP)PS2SDB", 8192}, + std::string_view{R"PS2SDB(S_HI16", "symbol": "", "original": ".bss"}, "176": {"type": "MIPS_HI16", "symbol": "cd_callback", "original": ".text"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "196": {"type": "MIPS_LO16", "symbol": "cd_callback", "original": ".text"}, "216": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "228": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "244": {"type": "MIPS_26", "symbol": "SignalSema"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "272": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "276": {"type": "MIPS_26", "symbol": "printf"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "1cc85fdf5523b3352abd37a5d5dd8a251c9ec840": {"4d8da193": {"type": "FUNCTION", "size": 328, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.5.0", "1.5.1", "1.5.3"], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "sceCdNcmdDiskReady", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_26", "symbol": "ncmd_prechk", "scope": "LIBRARY", "original": ".text"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "176": {"type": "MIPS_HI16", "symbol": "cd_callback", "original": ".text"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "196": {"type": "MIPS_LO16", "symbol": "cd_callback", "original": ".text"}, "216": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "228": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "244": {"type": "MIPS_26", "symbol": "SignalSema"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "268": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "272": {"type": "MIPS_26", "symbol": "printf"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "280": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "284": {"type": "MIPS_26", "symbol": "SignalSema"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "84b39d5f788210bc6e906dd7b26f21acdbc46816": {"12d7063b": {"type": "FUNCTION", "size": 340, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.4", "2.4.0", "2.4.2", "2.5.0", "2.5.3", "2.6.0", "2.7.1", "2.8.0", "3.0.0"], "sdk": ["2.3.4", "2.4.0", "2.4.3", "2.5.0", "2.5.5", "2.6.0", "2.7.1", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_ee_read_mode"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_ee_read_mode"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_ncmdsdata"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_ncmdsdata"}, "68": {"type": "MIPS_26", "symbol": "sceCdNcmdDiskReady", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "_sceCd_ncmd_prechk", "scope": "LIBRARY"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_rd_intr_data"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_Read_cur_pos"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_rd_intr_data"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_Read_cur_pos"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": "sceCdCbfunc_num"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_c_cb_sem"}, "172": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": "sceCdCbfunc_num"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": "sceCdCbfunc_num"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_cd_ncmd"}, "196": {"type": "MIPS_HI16", "symbol": "_sceCd_cd_callback"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_c_cb_sem"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_cd_ncmd"}, "216": {"type": "MIPS_LO16", "symbol": "_sceCd_cd_callback"}, "236": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "248": {"type": "MIPS_HI16", "symbol": "", "original": "SCE_CD_debug"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": "sceCdCbfunc_num"}, "256": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_ncmd_semid"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_c_cb_sem"}, "264": {"type": "MIPS_26", "symbol": "SignalSema"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_ncmd_semid"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": "SCE_CD_debug"}, "292": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "296": {"type": "MIPS_26", "symbol": "scePrintf"}, "300": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "899ed00088e96ef45f150a06c88b2c3cca2a7d20": {"4d8da193": {"type": "FUNCTION", "size": 328, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.2", "1.6.5", "2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1"], "sdk": ["1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "sceCdNcmdDiskReady", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_26", "symbol": "ncmd_prechk", "scope": "LIBRARY", "original": ".text"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "176": {"type": "MIPS_HI16", "symbol": "cd_callback", "original": ".text"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "196": {"type": "MIPS_LO16", "symbol": "cd_callback", "original": ".text"}, "216)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "228": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "244": {"type": "MIPS_26", "symbol": "SignalSema"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "268": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "272": {"type": "MIPS_26", "symbol": "printf"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "280": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "284": {"type": "MIPS_26", "symbol": "SignalSema"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "ccc5f3bfaa65638d6a72adb0456c474d5ba2323a": {"f7d5b6ab": {"type": "FUNCTION", "size": 336, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1"], "sdk": ["1.6.1"], "compiler_versions": ["2.3.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "sceCdNcmdDiskReady", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_26", "symbol": "ncmd_prechk", "scope": "LIBRARY", "original": ".text"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "176": {"type": "MIPS_HI16", "symbol": "cd_callback", "original": ".text"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "196": {"type": "MIPS_LO16", "symbol": "cd_callback", "original": ".text"}, "216": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "228": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "248": {"type": "MIPS_26", "symbol": "SignalSema"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "272": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "276": {"type": "MIPS_26", "symbol": "printf"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "284": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "292": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "2fc739fde9b70a47eccef4ab1d2f2d6e79d97397": {"694b2576": {"type": "FUNCTION", "size": 332, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.4"], "sdk": ["1.4.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "sceCdNcmdDiskReady", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_26", "symbol": "ncmd_prechk", "scope": "LIBRARY", "original": ".text"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "176": {"type": "MIPS_HI16", "symbol": "cd_read_intr", "original": ".text"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "196": {"type": "MIPS_LO16", "symbol": "cd_read_intr", "original": ".text"}, "216": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "228": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "244": {"type": "MIPS_26", "symbol": "SignalSema"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "268": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "272": {"type": "MIPS_26", "symbol": "printf"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "280": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "284": {"type": "MIPS_26", "symbol": "SignalSema"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "2f0577a1b988be5b33f802d3c8ab8049a8f432e9": {"fbf834bb": {"type": "FUNCTION", "size": 332, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.2"], "sdk": ["1.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "sceCdNcmdDiskReady", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_26", "symbol": "ncmd_prechk", "scope": "LIBRARY", "original": ".text"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "156": {"type": "MIPS_26", "symbol": "printf"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "184": {"type": "MIPS_HI16", "symbol": "cd_read_intr", "original": ".text"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "204": {"type": "MIPS_LO16", "symbol": "cd_read_intr", "original": ".text"}, "224": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "244": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "252": {"type": "MIPS_26", "symbol": "SignalSema)PS2SDB", 8192}, + std::string_view{R"PS2SDB("}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "272": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "276": {"type": "MIPS_26", "symbol": "printf"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "284": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "288": {"type": "MIPS_26", "symbol": "SignalSema"}, "292": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceCdGetToc": {"338ff4a97712cb8a9fac2e86ac70e3af9b403dcd": {"fc002022": {"type": "FUNCTION", "size": 656, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.2.0", "2.2.1", "2.2.2"], "sdk": ["2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "ncmd_prechk", "scope": "LIBRARY", "original": ".text"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "180": {"type": "MIPS_26", "symbol": "SignalSema"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "332": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "424": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "520": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "608": {"type": "MIPS_26", "symbol": "SignalSema"}, "612": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "03b10941c0ddb50404a34bf863fb8498e53d2b68": {"e966451a": {"type": "FUNCTION", "size": 620, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.4", "1.5.0", "1.5.1", "1.5.3"], "sdk": ["1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "ncmd_prechk", "scope": "LIBRARY", "original": ".text"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "176": {"type": "MIPS_26", "symbol": "SignalSema"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "232": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "320": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "404": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "492": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "572": {"type": "MIPS_26", "symbol": "SignalSema"}, "576": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "c97b912a17084a49ccde2d4f59f86c0769ef6517": {"200d701e": {"type": "FUNCTION", "size": 656, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.4", "2.4.2", "2.5.0", "2.5.3", "2.7.1", "2.8.0"], "sdk": ["2.3.4", "2.4.2", "2.4.3", "2.5.0", "2.5.4", "2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_ncmdsdata"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_ncmdsdata"}, "44": {"type": "MIPS_26", "symbol": "_sceCd_ncmd_prechk", "scope": "LIBRARY"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_ncmdrdata"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_ncmdsdata"}, "84": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_ncmdrdata"}, "100": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": "sceCdCbfunc_num"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_cd_ncmd"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": "sceCdCbfunc_num"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_cd_ncmd"}, "156": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": "sceCdCbfunc_num"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_ncmd_semid"}, "180": {"type": "MIPS_26", "symbol": "SignalSema"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_ncmd_semid"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": "sceCdCbfunc_num"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_ncmdrdata"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_ncmd_semid"}, "332": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_ncmd_semid"}, "424": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_ncmd_semid"}, "520": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_ncmd_semid"}, "608": {"type": "MIPS_26", "symbol": "SignalSema"}, "612": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_ncmd_semid"}}}}, "d9a831afadbb858c77e703c1aa2057afd362131c": {"cebcdb22": {"type": "FUNCTION", "size": 624, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.2", "1.6.5"], "sdk": ["1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "ncmd_prechk", "scope": "LIBRARY", "original": ".text"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(.bss"}, "100": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "180": {"type": "MIPS_26", "symbol": "SignalSema"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "324": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "408": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "496": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "576": {"type": "MIPS_26", "symbol": "SignalSema"}, "580": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "15806a170c18a0aa9b52701f01960117ceddea02": {"3f717c17": {"type": "FUNCTION", "size": 664, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1"], "sdk": ["1.6.1"], "compiler_versions": ["2.3.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "ncmd_prechk", "scope": "LIBRARY", "original": ".text"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "184": {"type": "MIPS_26", "symbol": "SignalSema"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "240": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "336": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "428": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "524": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "612": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "616": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "d8161e5f25386f14a3779def2b822955de054721": {"73bd5b64": {"type": "FUNCTION", "size": 584, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.2"], "sdk": ["1.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "ncmd_prechk", "scope": "LIBRARY", "original": ".text"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_26", "symbol": "SignalSema"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "200": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "288": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "372": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "460": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "540": {"type": "MIPS_26", "symbol": "SignalSema"}, "544": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceCdStandby": {"4812bc3288a415b359c2a4caae994663ea3d0841": {"577f2d9a": {"type": "FUNCTION", "size": 172, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.3", "2.2.0", "2.2.1", "2.2.2"], "sdk": ["2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceCdNcmdDiskReady", "scope": "LIBRARY", "original": ".text"}, "32": {"type": "MIPS_26", "symbol": "ncmd_prechk", "scope": "LIBRARY", "original": ".text"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_HI16", "symbol": "cd_callback", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "cd_callback", "original": ".text"}, "112": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_26", "symbol": "SignalSema"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}, "843465a4": {"type": "FUNCTION", "size": 172, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.4", "2.3.4", "2.4.2", "2.5.0", "2.5.3", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0"], "sdk": ["2.2.4", "2.3.4", "2.4.2", "2.4.3", "2.5.0", "2.5.3", "2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceCdNcmdDiskReady", "scope": "LIBRARY"}, "32": {"type": "MIPS_26", "symbol": "_sceCd_ncmd_prechk", "scope": "LIBRARY"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": "sceCdCbfunc_num"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": "sceCdCbfunc_num"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": "sceCdCbfunc_num"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_c_cb_sem"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_cd_ncmd"}, "72": {"type": "MIPS_HI16", "symbol": "_sceCd_cd_callback"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_c_cb_sem"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_cd_ncmd"}, "88": {"type": "MIPS_LO16", "symbol": "_sceCd_cd_callback"}, "112": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": "sceCdCbfunc_num"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_ncmd_semid"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_c_cb_sem"}, "140": {"type": "MIPS_26", "symbol": "SignalSema"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_ncmd_semid"}}}}, "e0c6737448d9ae809e3f6507220381ae0224d3c4": {"4dea74ee": {"type": "FUNCTION", "size": 192, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceCdNcmdDiskReady", "scope": "LIBRARY", "original": ".text"}, "32": {"type": "MIPS_26", "symbol": "ncmd_prechk", "scope": "LIBRARY", "original": ".text"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_HI16", "symbol": "cd_callback", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "cd_callback", "original": ".text"}, "112": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_26", "symbol": "SignalSema"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "591b9aaa87312aab4ed7a925e6b3e1e0c4effbcd": {"4dea74ee": {"type": "FUNCTION", "size": 192, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.2", "1.6.5", "2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1"], "sdk": ["1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceCdNcmdDiskReady", "scope": "LIBRARY", "original": ".text"}, "32": {"type": "MIPS_26", "symbol": "ncmd_prechk", "scope": "LIBRARY", "original": ".text"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_HI16", "symbol": "cd_callback", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "cd_callback", "original": ".text"}, "112": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_26", "symbol": "SignalSema"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "693cb0a121b637d59e2be2e3e46dbbf0644c50e3": {"f856e667": {"type": "FUNCTION", "size": 196, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1"], "sdk": ["1.6.1"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceCdNcmdDiskReady", "scope": "LIBRARY", "original": ".text"}, "32": {"type": "MIPS_26", "symbol": "ncmd_prechk", "scope": "LIBRARY", "original": ".text"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_HI16", "symbol": "cd_callback", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "cd_callback", "original": ".text"}, "112": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_26", "symbol": "SignalSema"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_26", "symbol": "SignalSema"}}}}}, "sceCdStop": {"44045c0699370b36ed59c7bcec8379318f1514d5": {"2b6a9460": {"type": "FUNCTION", "size": 176, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.3", "2.2.0", "2.2.1", "2.2.2"], "sdk": ["2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "sceCdNcmdDiskReady", "scope": "LIBRARY", "original": ".text"}, "36": {"type": "MIPS_26", "symbol": "ncmd_prechk", "scope": "LIBRARY", "original": ".text"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_HI16", "symbol": "cd_callback", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "cd_callback", "original": ".text"}, "112": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_26", "symbol": "SignalSema"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}, "b500d2c1": {"type": "FUNCTION", "size": 176, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.2", "2.5.3", "2.7.1", "2.8.0", "3.0.0"], "sdk": ["2.4.2", "2.4.3", "2.5.3", "2.5.4", "2.5.5", "2.7.1", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "sceCdNcmdDiskReady", "scope": "LIBRARY"}, "36": {"type": "MIPS_26", "symbol": "_sceCd_ncmd_prechk", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": "sceCdCbfunc_num"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_c_cb_sem"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": "sceCdCbfunc_num"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": "sceCdCbfunc_num"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_cd_ncmd"}, "72": {"type": "MIPS_HI16", "symbol": "_sceCd_cd_callback"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_c_cb_sem"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_cd_ncmd"}, "88": {"type": "MIPS_LO16", "symb)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ol": "_sceCd_cd_callback"}, "112": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": "sceCdCbfunc_num"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_ncmd_semid"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_c_cb_sem"}, "140": {"type": "MIPS_26", "symbol": "SignalSema"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_ncmd_semid"}}}}, "fc3fabb2cf21d97bb2e627be40a4db29d6215b27": {"ba4d9a8d": {"type": "FUNCTION", "size": 196, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "sceCdNcmdDiskReady", "scope": "LIBRARY", "original": ".text"}, "36": {"type": "MIPS_26", "symbol": "ncmd_prechk", "scope": "LIBRARY", "original": ".text"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_HI16", "symbol": "cd_callback", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "cd_callback", "original": ".text"}, "112": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_26", "symbol": "SignalSema"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "93020aaa9227fa7ec98a127030b9899caa12cee6": {"ba4d9a8d": {"type": "FUNCTION", "size": 196, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.2", "1.6.5", "2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1"], "sdk": ["1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "sceCdNcmdDiskReady", "scope": "LIBRARY", "original": ".text"}, "36": {"type": "MIPS_26", "symbol": "ncmd_prechk", "scope": "LIBRARY", "original": ".text"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_HI16", "symbol": "cd_callback", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "cd_callback", "original": ".text"}, "112": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_26", "symbol": "SignalSema"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "b235418acefa0cf512df6518507e66f923d76e29": {"0ff10804": {"type": "FUNCTION", "size": 200, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1"], "sdk": ["1.6.1"], "compiler_versions": ["2.3.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "sceCdNcmdDiskReady", "scope": "LIBRARY", "original": ".text"}, "36": {"type": "MIPS_26", "symbol": "ncmd_prechk", "scope": "LIBRARY", "original": ".text"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_HI16", "symbol": "cd_callback", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "cd_callback", "original": ".text"}, "112": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_26", "symbol": "SignalSema"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_26", "symbol": "SignalSema"}}}}}, "sceCdPause": {"6fdb969caf4fb138a4d9bd414bd5c50f3da2ca5f": {"577f2d9a": {"type": "FUNCTION", "size": 172, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.1.3", "2.2.0", "2.2.1", "2.2.2"], "sdk": ["2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceCdNcmdDiskReady", "scope": "LIBRARY", "original": ".text"}, "32": {"type": "MIPS_26", "symbol": "ncmd_prechk", "scope": "LIBRARY", "original": ".text"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_HI16", "symbol": "cd_callback", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "cd_callback", "original": ".text"}, "112": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_26", "symbol": "SignalSema"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}, "843465a4": {"type": "FUNCTION", "size": 172, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0", "2.3.4", "2.4.2", "2.5.3", "2.7.1", "2.8.0"], "sdk": ["2.3.2", "2.3.4", "2.4.2", "2.4.3", "2.5.5", "2.7.1", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceCdNcmdDiskReady", "scope": "LIBRARY"}, "32": {"type": "MIPS_26", "symbol": "_sceCd_ncmd_prechk", "scope": "LIBRARY"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": "sceCdCbfunc_num"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": "sceCdCbfunc_num"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": "sceCdCbfunc_num"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_c_cb_sem"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_cd_ncmd"}, "72": {"type": "MIPS_HI16", "symbol": "_sceCd_cd_callback"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_c_cb_sem"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_cd_ncmd"}, "88": {"type": "MIPS_LO16", "symbol": "_sceCd_cd_callback"}, "112": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": "sceCdCbfunc_num"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_ncmd_semid"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_c_cb_sem"}, "140": {"type": "MIPS_26", "symbol": "SignalSema"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_ncmd_semid"}}}}, "ce9755663b1fc9ebb7489bf7dadca3a3e13ecdcb": {"4dea74ee": {"type": "FUNCTION", "size": 192, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceCdNcmdDiskReady", "scope": "LIBRARY", "original": ".text"}, "32": {"type": "MIPS_26", "symbol": "ncmd_prechk", "scope": "LIBRARY", "original": ".text"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_HI16", "symbol": "cd_callback", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "cd_callback", "original": ".text"}, "112": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_26", "symbol": "SignalSema"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "fa13f7dc264fd512827f5937c5d95f61de2c1610": {"4dea74ee": {"type": "FUNCTION", "size": 192, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.2", "1.6.5", "2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1"], "sdk": ["1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceCdNcmdDiskReady", "scope": "LIBRARY", "original": ".text"}, "32": {"type": "MIPS_26", "symbol": "ncmd_prechk", "scope": "LIBRARY", "original": ".text"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_HI16", "symbol": "cd_callback", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "cd_callback", "original": ".text"}, "112": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_26", "symbol": "SignalSema"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "27fa8113e6d1bc1ec60d9d637176fd6ffbfb5ddb": {"f856e667": {"type": "FUNCTION", "size": 196, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1"], "sdk": ["1.6.1"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceCdNcmdDiskReady", "scope": "LIBRARY", "original": ".text"}, "32": {"type": "MIPS_26", "symbol": "ncmd_prechk", "scope": "LIBRARY", "original": ".text"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_HI16", "symbol": "cd_callback", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "cd_callback", "original": ".text"}, "112": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_26", "symbol": "SignalSema"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_26", "symbol": "SignalSema"}}}}}, "scmd_prechk": {"33a2b0ea2c87c4345649dad6d84d62bef37b53bd": {"b79cf861": {"type": "FUNCTION", "size": 368, "library": "libcdvd", "scope": "LOCAL", "is_interface": false, "versions": ["2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.2.0", "2.2.1", "2.2.2"], "sdk": ["2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_26", "symbol": "cmd_sem_init", "scope": "LIBRARY", "original": ".text"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_26", "symbol": "PollSema"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_26", "symbol": "printf"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_26", "symbol": "sceCdSyncS", "scope": "LIBRARY", "original": ".text"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_26", "symbol": "SignalSema"}, "160": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "244": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "260": {"type": "MIPS_HI16", "symbol": "", ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(original": ".data"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "276": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "280": {"type": "MIPS_26", "symbol": "printf"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "328": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "8e174ba928724674de36e02c24afa498b3432372": {"90f21a04": {"type": "FUNCTION", "size": 324, "library": "libcdvd", "scope": "LOCAL", "is_interface": false, "versions": ["1.4.4", "1.5.0", "1.5.1", "1.5.3"], "sdk": ["1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_26", "symbol": "cmd_sem_init", "scope": "LIBRARY", "original": ".text"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_26", "symbol": "PollSema"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_26", "symbol": "sceCdSyncS", "scope": "LIBRARY", "original": ".text"}, "88": {"type": "MIPS_26", "symbol": "SignalSema"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "220": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "224": {"type": "MIPS_26", "symbol": "printf"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "292": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "d3cb2d666c84e3d98859ef4da2955d413cf74eda": {"73c321c0": {"type": "FUNCTION", "size": 380, "library": "libcdvd", "scope": "LOCAL", "is_interface": false, "versions": ["1.6.2", "1.6.5"], "sdk": ["1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_26", "symbol": "cmd_sem_init", "scope": "LIBRARY", "original": ".text"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_26", "symbol": "PollSema"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_26", "symbol": "printf"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_26", "symbol": "sceCdSyncS", "scope": "LIBRARY", "original": ".text"}, "140": {"type": "MIPS_26", "symbol": "SignalSema"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "244": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "260": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "276": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "280": {"type": "MIPS_26", "symbol": "printf"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "336": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "348": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "d5c69590842bd58e65d424baa99540e24382fa75": {"fa89fa02": {"type": "FUNCTION", "size": 372, "library": "libcdvd", "scope": "LOCAL", "is_interface": false, "versions": ["1.6.1"], "sdk": ["1.6.1"], "compiler_versions": ["2.3.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_26", "symbol": "cmd_sem_init", "scope": "LIBRARY", "original": ".text"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_26", "symbol": "PollSema"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_26", "symbol": "printf"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_26", "symbol": "sceCdSyncS", "scope": "LIBRARY", "original": ".text"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_26", "symbol": "SignalSema"}, "160": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "244": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "260": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "276": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "280": {"type": "MIPS_26", "symbol": "printf"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "328": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "9b0ab4dd05a6d21932435e312cfa32f66ab88e6b": {"35763cd7": {"type": "FUNCTION", "size": 380, "library": "libcdvd", "scope": "LOCAL", "is_interface": false, "versions": ["1.4.2"], "sdk": ["1.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_26", "symbol": "cmd_sem_init", "scope": "LIBRARY", "origina)PS2SDB", 8192}, + std::string_view{R"PS2SDB(l": ".text"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_26", "symbol": "PollSema"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_26", "symbol": "printf"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_26", "symbol": "sceCdSyncS", "scope": "LIBRARY", "original": ".text"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_26", "symbol": "printf"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_26", "symbol": "SignalSema"}, "156": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "244": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "260": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "276": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "280": {"type": "MIPS_26", "symbol": "printf"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "336": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "348": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "_sceCdRI": {"aa006b171aa6af6911bd51930cf4da8a18230514": {"b271f82c": {"type": "FUNCTION", "size": 216, "library": "libcdvd", "scope": "GLOBAL", "is_interface": false, "versions": ["1.6.2", "1.6.5", "2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.2.0", "2.2.1", "2.2.2"], "sdk": ["1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "scmd_prechk", "scope": "LIBRARY", "original": ".text"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_26", "symbol": "SignalSema"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "180": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "256401d8d2e813febf1594a602074e9891781fa2": {"45d880a0": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": false, "versions": ["1.5.0", "1.5.1", "1.5.3"], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "scmd_prechk", "scope": "LIBRARY", "original": ".text"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_26", "symbol": "SignalSema"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "176": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "2acd6e1db56b7426093a3b537c97744ab7c6ef28": {"213a9a49": {"type": "FUNCTION", "size": 220, "library": "libcdvd", "scope": "GLOBAL", "is_interface": false, "versions": ["1.6.1"], "sdk": ["1.6.1"], "compiler_versions": ["2.3.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "scmd_prechk", "scope": "LIBRARY", "original": ".text"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_26", "symbol": "SignalSema"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "184": {"type": "MIPS_26", "symbol": "SignalSema"}}}}}, "_sceCdRM": {"42b2e4aa98a3e19a7df7115a1a4614706ec1e201": {"d96f7dfb": {"type": "FUNCTION", "size": 232, "library": "libcdvd", "scope": "GLOBAL", "is_interface": false, "versions": ["1.6.2", "1.6.5", "2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.2.0", "2.2.1", "2.2.2"], "sdk": ["1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "scmd_prechk", "scope": "LIBRARY", "original": ".text"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_26", "symbol": "SignalSema"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "196": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "9ac987037a545633580add2b91a6ce34462d09e9": {"7506e197": {"type": "FUNCTION", "size": 228, "library": "libcdvd", "scope": "GLOBAL", "is_interface": false, "versions": ["1.5.0", "1.5.1", "1.5.3"], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "scmd_prechk", "scope": "LIBRARY", "original": ".text"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_26", "symbol": "SignalSema"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "192": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "9ba1e8ec874ed6267fee69c4925b803910c97e9a": {"4a241f9e": {"type": "FUNCTION", "size": 236, "l)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ibrary": "libcdvd", "scope": "GLOBAL", "is_interface": false, "versions": ["1.6.1"], "sdk": ["1.6.1"], "compiler_versions": ["2.3.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "scmd_prechk", "scope": "LIBRARY", "original": ".text"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_26", "symbol": "SignalSema"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "200": {"type": "MIPS_26", "symbol": "SignalSema"}}}}}, "sceCdChangeThreadPriority": {"f265c56185a75b54ee4cb6fd98bb601ad45d7b10": {"bf645a4b": {"type": "FUNCTION", "size": 188, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.2.0", "2.2.1", "2.2.2"], "sdk": ["2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "scmd_prechk", "scope": "LIBRARY", "original": ".text"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "SignalSema"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "b3e5e7ef48a964cf2ba3c5dfb32b7cb8f42dee84": {"bf645a4b": {"type": "FUNCTION", "size": 188, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.0.2"], "sdk": ["2.0.0", "2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "scmd_prechk", "scope": "LIBRARY", "original": ".text"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "SignalSema"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_26", "symbol": "SignalSema"}}}}}, "sceCdApplyNCmd": {"8f0ce34c961182f3ccbd414a4ab18377f3ebbb68": {"71b09e99": {"type": "FUNCTION", "size": 512, "library": "libcdvd", "scope": "GLOBAL", "is_interface": false, "versions": ["2.1.1", "2.1.3", "2.2.0", "2.2.1", "2.2.2"], "sdk": ["2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_26", "symbol": "WaitSema"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_26", "symbol": "sceCdSync", "scope": "LIBRARY", "original": ".text"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_26", "symbol": "printf"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "204": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "232": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "236": {"type": "MIPS_26", "symbol": "printf"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "308": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "312": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "336": {"type": "MIPS_26", "symbol": "memcpy"}, "344": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "352": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "356": {"type": "MIPS_26", "symbol": "printf"}, "360": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "368": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "384": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "396": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "404": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "412": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "428": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "436": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "440": {"type": "MIPS_26", "symbol": "printf"}, "444": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "448": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "452": {"type": "MIPS_26", "symbol": "SignalSema"}, "456": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceCdTrayReq": {"a207a1ef73b2484c02d9cf6b52bfd27d488a97cf": {"9fa768d7": {"type": "FUNCTION", "size": 228, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1", "1.6.2", "1.6.5", "2.0.0", "2.0.2", "2.0.5", "2.1.0", "2.1.1", "2.1.3", "2.2.0", "2.2.1", "2.2.2"], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "scmd_prechk", "scope": "LIBRARY", "original": ".text"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": )PS2SDB", 8192}, + std::string_view{R"PS2SDB("", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_26", "symbol": "SignalSema"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "192": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "ead08e2f851991b1d4d4173077f884fdb7f33012": {"4fd9aee7": {"type": "FUNCTION", "size": 224, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.4", "1.5.0", "1.5.1", "1.5.3"], "sdk": ["1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "scmd_prechk", "scope": "LIBRARY", "original": ".text"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_26", "symbol": "SignalSema"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "188": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "e2a38780a3deb89174c43278dee4686a3470e0fe": {"4dc45b45": {"type": "FUNCTION", "size": 236, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["-2.-2.-2-46", "2.3.0", "2.3.4", "2.4.2", "2.5.3", "2.7.0", "2.8.0"], "sdk": ["2.3.0", "2.3.4", "2.4.3", "2.5.2", "2.5.3", "2.5.5", "2.5.7", "2.7.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_scmdsdata"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_scmdsdata"}, "40": {"type": "MIPS_26", "symbol": "_sceCd_scmd_prechk", "scope": "LIBRARY"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_scmdsdata"}, "68": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_scmdrdata"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_cd_scmd"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_scmdrdata"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_cd_scmd"}, "120": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_scmd_semid"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_scmd_semid"}, "140": {"type": "MIPS_26", "symbol": "SignalSema"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_scmd_semid"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_scmd_semid"}, "196": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "21ab89fbb8410d409246a4b4bc8d5049f981b83c": {"e9658dcd": {"type": "FUNCTION", "size": 208, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["1.4.2"], "sdk": ["1.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "scmd_prechk", "scope": "LIBRARY", "original": ".text"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_26", "symbol": "SignalSema"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_26", "symbol": "SignalSema"}}}}}, "_sceCdWI": {"bf27a6d371742471bb0312887a5de7d58ff4f87b": {"1b21f60b": {"type": "FUNCTION", "size": 228, "library": "libcdvd", "scope": "GLOBAL", "is_interface": false, "versions": ["1.5.0", "1.5.1", "1.5.3"], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "scmd_prechk", "scope": "LIBRARY", "original": ".text"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "SignalSema"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "192": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "8503c8f814c8c08e13e1e6906e3dca67a91c1ef4": {"4441a8cf": {"type": "FUNCTION", "size": 236, "library": "libcdvd", "scope": "GLOBAL", "is_interface": false, "versions": ["1.6.1"], "sdk": ["1.6.1"], "compiler_versions": ["2.3.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "scmd_prechk", "scope": "LIBRARY", "original": ".text"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_26", "symbol": "SignalSema"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "200": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "5df7fbd7ed67c13febf02d9f0fac7a189ace4296": {"ab5fc041": {"type": "FUNCTION", "size": 232, "library": "libcdvd", "scope": "GLOBAL", "is_interface": false, "versions": ["1.6.2"], "sdk": ["1.6.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "scmd_prechk", "scope": "LIBRARY", "original": ".text"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "88": {"type": "MIPS_HI16", )PS2SDB", 8192}, + std::string_view{R"PS2SDB("symbol": "", "original": ".bss"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_26", "symbol": "SignalSema"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "196": {"type": "MIPS_26", "symbol": "SignalSema"}}}}}, "_sceCdWM": {"e9258bb477185ed745705bafac9aeaf9c756a7b7": {"9f9030dc": {"type": "FUNCTION", "size": 244, "library": "libcdvd", "scope": "GLOBAL", "is_interface": false, "versions": ["1.5.0", "1.5.1", "1.5.3"], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "scmd_prechk", "scope": "LIBRARY", "original": ".text"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_26", "symbol": "SignalSema"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "208": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "cef2dc6be5d47e93cd0e9386d0265991aac4dd2f": {"8628fca6": {"type": "FUNCTION", "size": 252, "library": "libcdvd", "scope": "GLOBAL", "is_interface": false, "versions": ["1.6.1"], "sdk": ["1.6.1"], "compiler_versions": ["2.3.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "scmd_prechk", "scope": "LIBRARY", "original": ".text"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_26", "symbol": "SignalSema"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "216": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "49cd30d8171da7f4c91021d7e88842b1f938ba93": {"11d9b9c4": {"type": "FUNCTION", "size": 248, "library": "libcdvd", "scope": "GLOBAL", "is_interface": false, "versions": ["1.6.2"], "sdk": ["1.6.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "scmd_prechk", "scope": "LIBRARY", "original": ".text"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_26", "symbol": "SignalSema"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "212": {"type": "MIPS_26", "symbol": "SignalSema"}}}}}, "_sceCd_cbLoop": {"cdedc9640049f2454ed8a761cce4256114bee6f3": {"7f4e8fe8": {"type": "FUNCTION", "size": 208, "library": "libcdvd", "scope": "GLOBAL", "is_interface": false, "versions": ["3.0.0", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_26", "symbol": "WaitSema"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_26", "symbol": "ExitDeleteThread"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_26", "symbol": "scePrintf"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}}}}}, "sceCdChgSys": {"632be54fff494a9d539aebe0d1c73d920e0f2313": {"bcfbb932": {"type": "FUNCTION", "size": 36, "library": "libcdvd", "scope": "GLOBAL", "is_interface": false, "versions": ["3.0.0", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "12": {"type": "MIPS_26", "symbol": "scePrintf"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sceCdSetEEReadMode": {"010bab9e5e139836513bc60567447c6da950f835": {"d027b7fd": {"type": "FUNCTION", "size": 88, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.1", "2.8.0", "3.0.0"], "sdk": ["2.5.5", "2.7.1", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_ncmd_semid"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_ncmd_semid"}, "32": {"type": "MIPS_26", "symbol": "WaitSema"}, "40": {"type": "MIPS_HI16", "symbol": ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(", "original": "_sceCd_ee_read_mode"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_ee_read_mode"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_ee_read_mode"}, "52": {"type": "MIPS_26", "symbol": "SignalSema"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_ncmd_semid"}}}}}, "_sceCdSetTimeout": {"bcd20aa51b130049757c27be2f7d924a3336d763": {"52ee5d3d": {"type": "FUNCTION", "size": 212, "library": "libcdvd", "scope": "GLOBAL", "is_interface": false, "versions": ["2.7.1"], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_scmdsdata"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_scmdsdata"}, "40": {"type": "MIPS_26", "symbol": "_sceCd_scmd_prechk", "scope": "LIBRARY"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_scmdsdata"}, "72": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_scmdrdata"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_cd_scmd"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_scmdrdata"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_cd_scmd"}, "124": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_scmd_semid"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_scmd_semid"}, "144": {"type": "MIPS_26", "symbol": "SignalSema"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_scmd_semid"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_scmd_semid"}, "172": {"type": "MIPS_26", "symbol": "SignalSema"}}}}}, "sceCdReadDvdDualInfo": {"2585989f7813676576bfb816434e3ac8b55d7799": {"e2849fc6": {"type": "FUNCTION", "size": 208, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.1"], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "_sceCd_scmd_prechk", "scope": "LIBRARY"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_scmdrdata"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_cd_scmd"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_scmdrdata"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_cd_scmd"}, "92": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_scmd_semid"}, "112": {"type": "MIPS_26", "symbol": "SignalSema"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_scmd_semid"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_scmd_semid"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_scmd_semid"}, "172": {"type": "MIPS_26", "symbol": "SignalSema"}}}}}, "sceCdGetDiskType2": {"8a5f73e021854b2cae544c7a8e8c3db3b72997f1": {"5c9dd936": {"type": "FUNCTION", "size": 152, "library": "libcdvd", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0"], "sdk": ["3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "_sceCd_scmd_prechk", "scope": "LIBRARY"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_scmdrdata"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_cd_scmd"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_scmdrdata"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_cd_scmd"}, "76": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_scmd_semid"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": "_sceCd_scmd_semid"}, "96": {"type": "MIPS_26", "symbol": "SignalSema"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_scmd_semid"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": "_sceCd_scmd_semid"}, "124": {"type": "MIPS_26", "symbol": "SignalSema"}}}}}}, "libmc": {"sceMcInit": {"5fd0434aadfcc91a806cddeb4fde2ac068ead276": {"544c5a56": {"type": "FUNCTION", "size": 436, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.5.3", "2.5.4", "2.6.0", "2.7.0"], "sdk": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_26", "symbol": "CreateSema"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_26", "symbol": "sceMcSync", "scope": "LIBRARY", "original": ".text"}, "92": {"type": "MIPS_26", "symbol": "WaitSema"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "176": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "196": {"type": "MIPS_26", "symbol": "scePrintf"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "284": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "292": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "296": {"type": "MIPS_26", "symbol": "SignalSema"}, "332": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "336": {"type": "MIPS_26", "symbol": "scePrintf"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "368": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "372": {"type": "MIPS_26", "symbol": "scePrintf"}, "376": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "392": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}, "b23c6a6d": {"type": "FUNCTION", "size": 436, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.1", "2.2.4", "2.3.0", "2.3.2", "2.4.0", "2.4.3"], "sdk": ["2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_26", "symbol": "CreateSema"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_26", "symbol": "sceMcSync", "scope": "LIBRARY", "original": ".text"}, "92": {"type": "MIPS_26", "symbol": "WaitSema"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "176": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "196": {"type": "MIPS_26", "symbol": "printf"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "284": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "292": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "296": {"type": "MIPS_26", "symbol": "SignalSema"}, ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(332": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "336": {"type": "MIPS_26", "symbol": "printf"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "368": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "372": {"type": "MIPS_26", "symbol": "printf"}, "376": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "392": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "7825deebd6a332516c585e447dfeb29907876278": {"d504e70e": {"type": "FUNCTION", "size": 460, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.1", "2.8.0", "2.8.1"], "sdk": ["2.7.1", "2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_26", "symbol": "CreateSema"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_26", "symbol": "CreateSema"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_26", "symbol": "sceMcSync", "scope": "LIBRARY", "original": ".text"}, "120": {"type": "MIPS_26", "symbol": "WaitSema"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "200": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "216": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "220": {"type": "MIPS_26", "symbol": "scePrintf"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "308": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "320": {"type": "MIPS_26", "symbol": "SignalSema"}, "356": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "360": {"type": "MIPS_26", "symbol": "scePrintf"}, "364": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "392": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "396": {"type": "MIPS_26", "symbol": "scePrintf"}, "400": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "416": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "1d369a2c9f5de25495b21a2f06df4f7a47f5cc0a": {"5e4880b2": {"type": "FUNCTION", "size": 420, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0"], "sdk": ["2.2.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_26", "symbol": "CreateSema"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_26", "symbol": "WaitSema"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "180": {"type": "MIPS_26", "symbol": "printf"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "268": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "280": {"type": "MIPS_26", "symbol": "SignalSema"}, "316": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "320": {"type": "MIPS_26", "symbol": "printf"}, "324": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "352": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "356": {"type": "MIPS_26", "symbol": "printf"}, "360": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "376": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "dd758509f6163d134853401c7aa85d354c37027b": {"a41a1a13": {"type": "FUNCTION", "size": 344, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.3", "1.6.5"], "sdk": ["1.5.1", "1.5.3", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "124": {"type": "MIPS_26", "symbol": "printf"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "212": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "248": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "252": {"type": "MIPS_26", "symbol": "printf"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "284": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "288": {"type": "MIPS_26", "symbol": "printf"}, "292": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "4ce081380318b7938d8433082dfe135b18e04e3d": {"a41a1a13": {"type": "FUNCTION", "size": 344, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.2", "2.1.0", "2.1.3", "2.1.4"], "sdk": ["2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "124": {"type": "MIPS_26", "symbol": "printf"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "212": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "248": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "252": {"type": "MIPS_26", "symbol": "printf"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "284": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "288": {"type": "MIPS_26", "symbol": "printf"}, "292": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "38c993157e91bca32ce90c4a71b485d44cf0df51": {"677b51a2": {"type)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": "FUNCTION", "size": 552, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0", "3.0.1", "3.0.2"], "sdk": ["3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "76": {"type": "MIPS_26", "symbol": "CreateSema"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "120": {"type": "MIPS_26", "symbol": "CreateSema"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_26", "symbol": "DeleteSema"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_26", "symbol": "sceMcSync", "scope": "LIBRARY", "original": ".text"}, "180": {"type": "MIPS_26", "symbol": "WaitSema"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "188": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "200": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "256": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "272": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "288": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "292": {"type": "MIPS_26", "symbol": "scePrintf"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "340": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "348": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "352": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "360": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "388": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "396": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "400": {"type": "MIPS_26", "symbol": "SignalSema"}, "436": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "440": {"type": "MIPS_26", "symbol": "scePrintf"}, "444": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "472": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "476": {"type": "MIPS_26", "symbol": "scePrintf"}, "480": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "496": {"type": "MIPS_26", "symbol": "scePrintf"}, "500": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "512": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "3c786859dfbba27647a1eca853bff04ec0b71ad2": {"a41a1a13": {"type": "FUNCTION", "size": 344, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1"], "sdk": ["1.6.1"], "compiler_versions": ["2.3.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "124": {"type": "MIPS_26", "symbol": "printf"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "212": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "248": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "252": {"type": "MIPS_26", "symbol": "printf"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "284": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "288": {"type": "MIPS_26", "symbol": "printf"}, "292": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "ae88b57b4809e22f6c2b01cb29763e9d0a4bdf10": {"439df1fa": {"type": "FUNCTION", "size": 664, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["3.1.0"], "sdk": ["3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_26", "symbol": "CreateSema"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_26", "symbol": "CreateSema"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_26", "symbol": "DeleteSema"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_26", "symbol": "sceMcSync", "scope": "LIBRARY", "original": ".text"}, "176": {"type": "MIPS_26", "symbol": "WaitSema"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "184": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "200": {"type": "MIPS_26", "symbol": "DelayThread"}, "216": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "232": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "248": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "252": {"type": "MIPS_26", "symbol": "scePrintf"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "304": {"type": "MIPS_26", "symbol": "mceRegistSifFunc", "scope": "LIBRARY", "original": ".text"}, "312": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "324": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "328": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "332": {"type": "MIPS_26", "symbol": "DeleteSema"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "344": {"type": "MIPS_26", "symbol": "DeleteSema"}, "348": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "364": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "372": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "376": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "380": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "412": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "428": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "432": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "440": {"type": "MIPS_26", "symbol": "DeleteSema"}, "448": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "452": {"type": "MIPS_26", "symbol": "DeleteSema"}, "456": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "460": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "480": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "484": {"type": "MIPS_HI16", "sy)PS2SDB", 8192}, + std::string_view{R"PS2SDB(mbol": "", "original": ".data"}, "488": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "492": {"type": "MIPS_26", "symbol": "scePrintf"}, "500": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "504": {"type": "MIPS_26", "symbol": "DeleteSema"}, "512": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "516": {"type": "MIPS_26", "symbol": "DeleteSema"}, "520": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "524": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "548": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "552": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "556": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "560": {"type": "MIPS_26", "symbol": "scePrintf"}, "568": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "572": {"type": "MIPS_26", "symbol": "DeleteSema"}, "580": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "584": {"type": "MIPS_26", "symbol": "DeleteSema"}, "588": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "592": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "604": {"type": "MIPS_26", "symbol": "scePrintf"}, "608": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "620": {"type": "MIPS_26", "symbol": "SignalSema"}, "624": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "628": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "7e89f7a55e0b5802ee1d72212a4a0ecbf26951f2": {"a41a1a13": {"type": "FUNCTION", "size": 344, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.0"], "compiler_versions": ["2.3.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "124": {"type": "MIPS_26", "symbol": "printf"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "212": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "248": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "252": {"type": "MIPS_26", "symbol": "printf"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "284": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "288": {"type": "MIPS_26", "symbol": "printf"}, "292": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "486b7d750959508aebd20d34b488bd0c7504b0c0": {"4934d7a5": {"type": "FUNCTION", "size": 244, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_26", "symbol": "printf"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "200": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceMcEnd": {"e0da8bc03f6431b01e974adc4736f411a1b088bf": {"6b36bbb3": {"type": "FUNCTION", "size": 64, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.3", "2.5.0", "2.5.3", "2.5.4", "2.6.0", "2.7.0"], "sdk": ["2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_26", "symbol": "DeleteSema"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "8bce662d3c468705074fd71da9c77aef48cba1ac": {"5a5e2295": {"type": "FUNCTION", "size": 76, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.1", "2.8.0", "2.8.1"], "sdk": ["2.7.1", "2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_26", "symbol": "DeleteSema"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_26", "symbol": "DeleteSema"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "df7d47f8c44094a396b9d127e1e7ad5482b6b8c2": {"1ac4070f": {"type": "FUNCTION", "size": 88, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0", "3.0.1", "3.0.2"], "sdk": ["3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_26", "symbol": "sceMcSync", "scope": "LIBRARY", "original": ".text"}, "40": {"type": "MIPS_26", "symbol": "DeleteSema"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_26", "symbol": "DeleteSema"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "8b26e81f9249ebd56958aae276ac3089f963de31": {"d107e71c": {"type": "FUNCTION", "size": 172, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["3.1.0"], "sdk": ["3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_26", "symbol": "sceMcSync", "scope": "LIBRARY", "original": ".text"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_26", "symbol": "TerminateThread"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_26", "symbol": "DeleteThread"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_26", "symbol": "sceSifRemoveRpc"}, "108": {"type": "MIPS_26", "symbol": "sceSifRemoveRpcQueue"}, "116": {"type": "MIPS_26", "symbol": "DeleteSema"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_26", "symbol": "DeleteSema"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "_lmcGetClientPtr": {"fc463ac8fa1b02c9c33053f)PS2SDB", 8192}, + std::string_view{R"PS2SDB(69f65300fd4cae0db": {"25dc20af": {"type": "FUNCTION", "size": 48, "library": "libmc", "scope": "GLOBAL", "is_interface": false, "versions": ["2.2.0", "2.2.1", "2.2.4", "2.3.0", "2.3.2", "2.4.0", "2.4.3", "2.5.0", "2.5.3", "2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "cd5d1b66ee1a3f1b38d634c83e6f36acc2aad66b": {"8e0da9a5": {"type": "FUNCTION", "size": 32, "library": "libmc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "4": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "15c6dbdd0f883e2df1004698140593fbc11f4c3e": {"88ee5e6f": {"type": "FUNCTION", "size": 36, "library": "libmc", "scope": "GLOBAL", "is_interface": false, "versions": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.1.0", "2.1.3", "2.1.4"], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceMcChangeThreadPriority": {"38c04ea6180a92f31108741c083646f0b270ca6c": {"b4ce203d": {"type": "FUNCTION", "size": 184, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.5.4", "2.6.0", "2.7.0", "2.7.1"], "sdk": ["2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_26", "symbol": "PollSema"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "SignalSema"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "420ea225cf5186bda5fbc45696dd296d8a25044f": {"2710ecdd": {"type": "FUNCTION", "size": 180, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0", "2.2.1", "2.2.4", "2.3.0", "2.3.2", "2.4.0", "2.4.3", "2.5.0"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_26", "symbol": "PollSema"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_26", "symbol": "SignalSema"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "SignalSema"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "8d5d78c661f71cd4fd157ccf7360466e00dcf9f1": {"f59bafbd": {"type": "FUNCTION", "size": 188, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "2.8.1"], "sdk": ["2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_26", "symbol": "PollSema"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_HI16", "symbol": "mceSifRpcEndFunc", "original": ".text"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_LO16", "symbol": "mceSifRpcEndFunc", "original": ".text"}, "120": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_26", "symbol": "SignalSema"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "2a4ca99cafe102e7eaee174db5b0144458c324d2": {"9fd6b048": {"type": "FUNCTION", "size": 140, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.2", "2.1.0", "2.1.3", "2.1.4"], "sdk": ["2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "4a3e650756e5b59ee57af62e1b5315973c7e8972": {"640b903e": {"type": "FUNCTION", "size": 188, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_26", "symbol": "PollSema"}, "56": {"type": "MIPS)PS2SDB", 8192}, + std::string_view{R"PS2SDB(_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_HI16", "symbol": "mceSifRpcEndFunc", "original": ".text"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_LO16", "symbol": "mceSifRpcEndFunc", "original": ".text"}, "120": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "136": {"type": "MIPS_26", "symbol": "SignalSema"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceMcGetSlotMax": {"9359329ec2413332403f9afe40b2ed0ec4f793e4": {"caa9a039": {"type": "FUNCTION", "size": 196, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.8.1"], "sdk": ["2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "PollSema"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "140": {"type": "MIPS_26", "symbol": "SignalSema"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_26", "symbol": "SignalSema"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "2cd5b014000f9602aa6d17b3394baf92eff65848": {"4f182e79": {"type": "FUNCTION", "size": 192, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.1", "2.2.4", "2.3.0", "2.3.2", "2.4.0", "2.4.3", "2.5.0"], "sdk": ["2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_26", "symbol": "PollSema"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_26", "symbol": "SignalSema"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "140": {"type": "MIPS_26", "symbol": "SignalSema"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_26", "symbol": "SignalSema"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "5a79f5c23ebf45df0a7d13d57d1072aff47cca4a": {"0cb44954": {"type": "FUNCTION", "size": 200, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0"], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "PollSema"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "mceSifRpcEndFunc", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "mceSifRpcEndFunc", "original": ".text"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "144": {"type": "MIPS_26", "symbol": "SignalSema"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_26", "symbol": "SignalSema"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "12d3fcfa01daff91ea3e97b38a37531fd370d62b": {"72f3b397": {"type": "FUNCTION", "size": 152, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0"], "sdk": ["2.2.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_26", "symbol": "PollSema"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_26", "symbol": "SignalSema"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "a0413ec3bf8c59dfee6c4929b6351ebe7ed09d87": {"e99b6e7c": {"type": "FUNCTION", "size": 136, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.2", "2.1.0", "2.1.3", "2.1.4"], "sdk": ["2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "a7a59f5cd283fc394994448a56ea8ed2f9af7a66": {"c2a258fc": {"type": "FUNCTION", "size": 192, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "PollSema"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "136": {"type": "MIPS_26", "symbol": "SignalSema"}, "140": {"type": "M)PS2SDB", 8192}, + std::string_view{R"PS2SDB(IPS_LO16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_26", "symbol": "SignalSema"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceMcOpen": {"04b725e1a3a49955efcc5ecfbdb906ab8128742d": {"f1669776": {"type": "FUNCTION", "size": 292, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.5.4", "2.6.0", "2.7.0", "2.7.1"], "sdk": ["2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_26", "symbol": "PollSema"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_26", "symbol": "SignalSema"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_26", "symbol": "strncpy"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "208": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "240": {"type": "MIPS_26", "symbol": "SignalSema"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "f8a46211b35b3c3048e8693bc6ea4eff368d4093": {"04f8a654": {"type": "FUNCTION", "size": 308, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.4", "2.3.0", "2.3.2", "2.4.0", "2.4.3", "2.5.0"], "sdk": ["2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "PollSema"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_26", "symbol": "SignalSema"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_26", "symbol": "SignalSema"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "strncpy"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "224": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "240": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "256": {"type": "MIPS_26", "symbol": "SignalSema"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "fbe6afc29c9a6238dce60aa6e593541e19c22028": {"07c131b3": {"type": "FUNCTION", "size": 296, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "2.8.1"], "sdk": ["2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_26", "symbol": "PollSema"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_26", "symbol": "SignalSema"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_26", "symbol": "strncpy"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "172": {"type": "MIPS_HI16", "symbol": "mceSifRpcEndFunc", "original": ".text"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "192": {"type": "MIPS_LO16", "symbol": "mceSifRpcEndFunc", "original": ".text"}, "212": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "228": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "244": {"type": "MIPS_26", "symbol": "SignalSema"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "6b4ac16cd0eb4c504e86f134ebb4cd8e15dad129": {"9714b2f1": {"type": "FUNCTION", "size": 272, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0", "2.2.1"], "sdk": ["2.2.0", "2.2.1", "2.2.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "PollSema"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_26", "symbol": "SignalSema"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_26", "symbol": "strncpy"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "220": {"type": "MIPS_26", "symbol": "SignalSema"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "f75b7703a79a4cb196fb7d4a5812583f5c9aaefe": {"f1db4695": {"type": "FUNCTION", "size": 216, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_26", "symbol": "strncpy"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "176": {"type": "MIPS_GPREL16", "symbol": ".sdata"}}}}, "dad1f7aeead1a39ae2df6a846949cfd8bbe5de63": {"6639ac1a": {"type": "FUNCTION", "size": 228, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.1.0", "2.1.3", "2.1.4"], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_26", "symbol": "strncpy"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "184": {"type": "MIPS_LO16", "symbol": "", "origi)PS2SDB", 8192}, + std::string_view{R"PS2SDB(nal": ".data"}}}}, "716e912a0fb68c22ac199d639b9874e402cdf22f": {"adee6cde": {"type": "FUNCTION", "size": 296, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_26", "symbol": "PollSema"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_26", "symbol": "SignalSema"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_26", "symbol": "strncpy"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_HI16", "symbol": "mceSifRpcEndFunc", "original": ".text"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "192": {"type": "MIPS_LO16", "symbol": "mceSifRpcEndFunc", "original": ".text"}, "212": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "228": {"type": "MIPS_26", "symbol": "SignalSema"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "244": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "a3a50230cc32a71facb6fa9591d894c04c2c38f8": {"f1db4695": {"type": "FUNCTION", "size": 216, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.0"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_26", "symbol": "strncpy"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "176": {"type": "MIPS_GPREL16", "symbol": ".sdata"}}}}, "554b37d5cd584804c549a361a1dfa154f6aeebec": {"0d0bceb8": {"type": "FUNCTION", "size": 216, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"40": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_26", "symbol": "strncpy"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "180": {"type": "MIPS_GPREL16", "symbol": ".sdata"}}}}}, "sceMcMkdir": {"1d1b5a1dc65a8d9e6c9c1bd9aa8a9a097f8ac4a1": {"3ea0e679": {"type": "FUNCTION", "size": 52, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.1.0", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.4", "2.3.0", "2.3.2", "2.4.0", "2.4.3", "2.5.0", "2.5.3", "2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceMcOpen", "scope": "LIBRARY", "original": ".text"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "a3b77beb3d12219f4a36c75fc365320f9dfc9ee4": {"d6c6b369": {"type": "FUNCTION", "size": 48, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceMcOpen", "scope": "LIBRARY", "original": ".text"}, "32": {"type": "MIPS_GPREL16", "symbol": ".sdata"}}}}, "8d16e3c34e8ea732861066d6ec563eda146e53f8": {"84aaf5c0": {"type": "FUNCTION", "size": 68, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "sceMcOpen", "scope": "LIBRARY", "original": ".text"}, "48": {"type": "MIPS_GPREL16", "symbol": ".sdata"}}}}}, "sceMcClose": {"7a90a6040e5aff863e1c7428ae76cea76c6ccae7": {"14248e1c": {"type": "FUNCTION", "size": 184, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.5.4", "2.6.0", "2.7.0", "2.7.1"], "sdk": ["2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_26", "symbol": "PollSema"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "SignalSema"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "b5221f770aa2ed7fb0a032bd66f2bdebfe092677": {"073bf2b3": {"type": "FUNCTION", "size": 180, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0", "2.2.1", "2.2.4", "2.3.0", "2.3.2", "2.4.0", "2.4.3", "2.5.0"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_26", "symbol": "PollSema"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_26", "symbol": "SignalSema"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "SignalSema"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "1d571025507a5c0b62b615582020d51e98abd007": {"dcf27fdf": {"type": "FUNCTION", "size": 188, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: ["2.8.0", "2.8.1"], "sdk": ["2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_26", "symbol": "PollSema"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_HI16", "symbol": "mceSifRpcEndFunc", "original": ".text"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_LO16", "symbol": "mceSifRpcEndFunc", "original": ".text"}, "120": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_26", "symbol": "SignalSema"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "b543572a625212513c558738e919554d59dc6038": {"7d43f7c6": {"type": "FUNCTION", "size": 128, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "108": {"type": "MIPS_GPREL16", "symbol": ".sdata"}}}}, "8a92fa5a443b6373be89ab838678af07c80d42b5": {"8d43f345": {"type": "FUNCTION", "size": 140, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.1.0", "2.1.3", "2.1.4"], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "3b60806f04cace878e2e38c6f162a19faeb90090": {"63859776": {"type": "FUNCTION", "size": 188, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_26", "symbol": "PollSema"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_HI16", "symbol": "mceSifRpcEndFunc", "original": ".text"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_LO16", "symbol": "mceSifRpcEndFunc", "original": ".text"}, "120": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "136": {"type": "MIPS_26", "symbol": "SignalSema"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "2fe3006867fc5d01fc406d14c833622847651f3b": {"7d43f7c6": {"type": "FUNCTION", "size": 128, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "108": {"type": "MIPS_GPREL16", "symbol": ".sdata"}}}}}, "sceMcSeek": {"d065e56b1e86976fb81a81329df0ee200bfa2236": {"43d0ad8e": {"type": "FUNCTION", "size": 216, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.5.4", "2.6.0", "2.7.0", "2.7.1"], "sdk": ["2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_26", "symbol": "PollSema"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_26", "symbol": "SignalSema"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "faf8dda9ce23d00c6f72860c5c1d6349d04cac88": {"c5351501": {"type": "FUNCTION", "size": 212, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0", "2.2.1", "2.2.4", "2.3.0", "2.3.2", "2.4.0", "2.4.3", "2.5.0"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "PollSema"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "SignalSema"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "", "orig)PS2SDB", 8192}, + std::string_view{R"PS2SDB(inal": ".bss"}, "140": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_26", "symbol": "SignalSema"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "08393b4c155651a7e9c10d55b34d6ebc93bc9721": {"e4c7bb53": {"type": "FUNCTION", "size": 224, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "2.8.1"], "sdk": ["2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_26", "symbol": "PollSema"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_HI16", "symbol": "mceSifRpcEndFunc", "original": ".text"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_LO16", "symbol": "mceSifRpcEndFunc", "original": ".text"}, "148": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "180": {"type": "MIPS_26", "symbol": "SignalSema"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "21e4ead26e1586781cc6cc631c86606bc2459faf": {"d1ecc946": {"type": "FUNCTION", "size": 132, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "112": {"type": "MIPS_GPREL16", "symbol": ".sdata"}}}}, "722dc4f02ecadcdd4b6d0454d51b430ea077607c": {"7b7cad09": {"type": "FUNCTION", "size": 144, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.1.0", "2.1.3", "2.1.4"], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "4be9094a4928fff1f9c64f0a563bc9b0bfe91b67": {"8b91ea4d": {"type": "FUNCTION", "size": 224, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_26", "symbol": "PollSema"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_HI16", "symbol": "mceSifRpcEndFunc", "original": ".text"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_LO16", "symbol": "mceSifRpcEndFunc", "original": ".text"}, "148": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "164": {"type": "MIPS_26", "symbol": "SignalSema"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "c98078b4c96b2acc645446b9db82903f89fa2795": {"d1ecc946": {"type": "FUNCTION", "size": 132, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "112": {"type": "MIPS_GPREL16", "symbol": ".sdata"}}}}}, "mceIntrReadFixAlign": {"7180ddaa5f932c72361ee1137153aa6fac7cebf6": {"00000000": {"type": "FUNCTION", "size": 144, "library": "libmc", "scope": "LOCAL", "is_interface": false, "versions": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.1.0", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.4", "2.3.0", "2.3.2", "2.4.0", "2.4.3", "2.5.0", "2.5.3", "2.5.4", "2.6.0", "2.7.0", "2.7.1"], "sdk": ["1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "6f4784ebfcdb5213f4263b42a55427bf6b519ab4": {"ebf52b15": {"type": "FUNCTION", "size": 152, "library": "libmc", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "2.8.1"], "sdk": ["2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_26", "symbol": "iSignalSema"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "42d5f55dbf4b78c47c65ca28ec4e79cc5f156ba2": {"18f5a538": {"type": "FUNCTION", "size": 176, "library": "libmc", "scope": "LOCAL", "is_interface": false, "versions": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_26", "symbol": "iSignalSema"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "bc985fef8f7e8ccf8d028fb222a1d47ff3a7a149": {"00000000": {"type": "FUNCTION", "size": 144, "library": "libmc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.4.2"], "compiler_versions)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": ["2.3.1.01"], "relocations": {}}}}, "sceMcRead": {"79083f3bd4cdcfcf575a2ba5dc561a1c923c2036": {"d9753d00": {"type": "FUNCTION", "size": 276, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1"], "sdk": ["2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_26", "symbol": "PollSema"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "144": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_HI16", "symbol": "mceIntrReadFixAlign", "original": ".text"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "176": {"type": "MIPS_LO16", "symbol": "mceIntrReadFixAlign", "original": ".text"}, "192": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "208": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "224": {"type": "MIPS_26", "symbol": "SignalSema"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "774a2af13b8612ad23758608fe003461ad766770": {"b8c13cba": {"type": "FUNCTION", "size": 284, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0", "2.2.1", "2.2.4", "2.3.0", "2.3.2", "2.4.0", "2.4.3", "2.5.0"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_26", "symbol": "PollSema"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_26", "symbol": "SignalSema"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "152": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_HI16", "symbol": "mceIntrReadFixAlign", "original": ".text"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "184": {"type": "MIPS_LO16", "symbol": "mceIntrReadFixAlign", "original": ".text"}, "200": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "216": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "232": {"type": "MIPS_26", "symbol": "SignalSema"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "ca2ddd7ada91ab6325f64b7f6e0e06df4294179a": {"cf4797e1": {"type": "FUNCTION", "size": 204, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "100": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_HI16", "symbol": "mceIntrReadFixAlign", "original": ".text"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_LO16", "symbol": "mceIntrReadFixAlign", "original": ".text"}, "148": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "172": {"type": "MIPS_GPREL16", "symbol": ".sdata"}}}}, "9a53e78b8016403c7fb71accd0b89d26a27d1948": {"8227a411": {"type": "FUNCTION", "size": 216, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.1.0", "2.1.3", "2.1.4"], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "108": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_HI16", "symbol": "mceIntrReadFixAlign", "original": ".text"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_LO16", "symbol": "mceIntrReadFixAlign", "original": ".text"}, "156": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "ecda2bb4efccc730ebe4039319120cfa74af9aa1": {"cdb24c12": {"type": "FUNCTION", "size": 276, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_26", "symbol": "PollSema"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "144": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_HI16", "symbol": "mceIntrReadFixAlign", "original": ".text"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "176": {"type": "MIPS_LO16", "symbol": "mceIntrReadFixAlign", "original": ".text"}, "192": {"type": "MIPS_26", "symbol": "sceSifCal)PS2SDB", 8192}, + std::string_view{R"PS2SDB(lRpc"}, "208": {"type": "MIPS_26", "symbol": "SignalSema"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "508e234575f2674708d121b433755ab8259b8498": {"cf4797e1": {"type": "FUNCTION", "size": 204, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.4", "1.5.0"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "100": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_HI16", "symbol": "mceIntrReadFixAlign", "original": ".text"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_LO16", "symbol": "mceIntrReadFixAlign", "original": ".text"}, "148": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "172": {"type": "MIPS_GPREL16", "symbol": ".sdata"}}}}, "bde2e9a3a9508a0ba4f93b4f789671122788d2bf": {"cf4797e1": {"type": "FUNCTION", "size": 204, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "100": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_HI16", "symbol": "mceIntrReadFixAlign", "original": ".text"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_LO16", "symbol": "mceIntrReadFixAlign", "original": ".text"}, "148": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "172": {"type": "MIPS_GPREL16", "symbol": ".sdata"}}}}}, "sceMcWrite": {"170a69a3a08cef322fad42ac89dce972676795e1": {"e06662c3": {"type": "FUNCTION", "size": 372, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.5.4", "2.6.0", "2.7.0", "2.7.1"], "sdk": ["2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_26", "symbol": "PollSema"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "248": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "252": {"type": "MIPS_26", "symbol": "FlushCache"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "292": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "308": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "324": {"type": "MIPS_26", "symbol": "SignalSema"}, "328": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "83c11494f581d4826cae31f6df703e3faf800004": {"a5c4016e": {"type": "FUNCTION", "size": 380, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0", "2.2.1", "2.2.4", "2.3.0", "2.3.2", "2.4.0", "2.4.3", "2.5.0"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_26", "symbol": "PollSema"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_26", "symbol": "SignalSema"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "200": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "256": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "260": {"type": "MIPS_26", "symbol": "FlushCache"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "300": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "316": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "328": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "332": {"type": "MIPS_26", "symbol": "SignalSema"}, "336": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "d6280112c06628e9d1331efbdb731b636e0b7b53": {"6e0047e7": {"type": "FUNCTION", "size": 376, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "2.8.1"], "sdk": ["2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_26", "symbol": "PollSema"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "248": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "252": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "256": {"type": "MIPS_26", "symbol": "FlushCache"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "296": {"type)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": "MIPS_26", "symbol": "sceSifCallRpc"}, "312": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "324": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "328": {"type": "MIPS_26", "symbol": "SignalSema"}, "332": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "ea97049caa468c5f33953c35fab4562ed6cb7e3f": {"edd20920": {"type": "FUNCTION", "size": 296, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "200": {"type": "MIPS_26", "symbol": "FlushCache"}, "208": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "244": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "268": {"type": "MIPS_GPREL16", "symbol": ".sdata"}}}}, "c954059beeeb1a689d31c184d31d8598b9c3d6f9": {"9d03529f": {"type": "FUNCTION", "size": 320, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.2", "2.1.0", "2.1.3", "2.1.4"], "sdk": ["2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "216": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "220": {"type": "MIPS_26", "symbol": "FlushCache"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "260": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "07a1a73cd83befb3da74eb3318eb325fc7efdcce": {"a9b9cc1d": {"type": "FUNCTION", "size": 308, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1", "1.6.3", "1.6.5"], "sdk": ["1.6.1", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "208": {"type": "MIPS_26", "symbol": "FlushCache"}, "216": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "252": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "31080e204683dbd20ad0e6ccc8280f74beaf6754": {"f24fad30": {"type": "FUNCTION", "size": 376, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_26", "symbol": "PollSema"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "248": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "252": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "256": {"type": "MIPS_26", "symbol": "FlushCache"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "296": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "312": {"type": "MIPS_26", "symbol": "SignalSema"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "328": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "332": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "87f8aaf25e6bf143009f02d167ba63920106e8cf": {"edd20920": {"type": "FUNCTION", "size": 296, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.4", "1.5.0"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "200": {"type": "MIPS_26", "symbol": "FlushCache"}, "208": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "244": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "268": {"type": "MIPS_GPREL16", "symbol": ".sdata"}}}}, "c5a2995ade6f5c2036c636788bf0f9c475f09814": {"2b2db044": {"type": "FUNCTION", "size": 304, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "208": {"type": "MIPS_26", "symbol": "FlushCache"}, "216": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "220": {"type": "MIPS_LO16", "symbol": "", "origin)PS2SDB", 8192}, + std::string_view{R"PS2SDB(al": ".bss"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "252": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "276": {"type": "MIPS_GPREL16", "symbol": ".sdata"}}}}}, "mcHearAlarm": {"ad849324198c2b60157a3e8d2eb2ba064fa172c0": {"2460e697": {"type": "FUNCTION", "size": 36, "library": "libmc", "scope": "LOCAL", "is_interface": false, "versions": ["2.2.4", "2.3.0", "2.3.2", "2.4.0", "2.4.3", "2.5.0", "2.5.3", "2.5.4", "2.6.0", "2.7.0"], "sdk": ["2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "iWakeupThread"}}}}, "f0ba8beba54aa6bc4e337e6b93db005fe4e6b800": {"2dc1fb12": {"type": "FUNCTION", "size": 8, "library": "libmc", "scope": "LOCAL", "is_interface": false, "versions": ["2.2.0", "2.2.1"], "sdk": ["2.2.0", "2.2.1", "2.2.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_26", "symbol": "iWakeupThread"}}}, "f8064047": {"type": "FUNCTION", "size": 8, "library": "libmc", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.1"], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_26", "symbol": "iSignalSema"}}}}}, "mcDelayThread": {"03df068574cb6f6c5e73247dbeb97a137f7e6226": {"8f6da736": {"type": "FUNCTION", "size": 68, "library": "libmc", "scope": "LOCAL", "is_interface": false, "versions": ["2.2.0", "2.2.1", "2.2.4", "2.3.0", "2.3.2", "2.4.0", "2.4.3", "2.5.0", "2.5.3", "2.5.4", "2.6.0", "2.7.0"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "mcHearAlarm", "original": ".text"}, "24": {"type": "MIPS_26", "symbol": "GetThreadId"}, "28": {"type": "MIPS_LO16", "symbol": "mcHearAlarm", "original": ".text"}, "40": {"type": "MIPS_26", "symbol": "SetAlarm"}, "60": {"type": "MIPS_26", "symbol": "SleepThread"}}}}, "080bc1461a09614020b7f18c3c1892a5cf0abce6": {"d0f9b3bd": {"type": "FUNCTION", "size": 56, "library": "libmc", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.1"], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "mcHearAlarm", "original": ".text"}, "12": {"type": "MIPS_LO16", "symbol": "mcHearAlarm", "original": ".text"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_26", "symbol": "SetAlarm"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_26", "symbol": "WaitSema"}}}}}, "sceMcSync": {"f8ac4c914abe3fa3c182ec1daeff351bc7427e73": {"6168179e": {"type": "FUNCTION", "size": 224, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0", "2.2.1", "2.2.4", "2.3.0", "2.3.2", "2.4.0", "2.4.3", "2.5.0", "2.5.3", "2.5.4", "2.6.0", "2.7.0", "2.7.1"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_26", "symbol": "sceSifCheckStatRpc"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_26", "symbol": "mcDelayThread", "original": ".text"}, "112": {"type": "MIPS_26", "symbol": "sceSifCheckStatRpc"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "176": {"type": "MIPS_26", "symbol": "SignalSema"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "f29acc801b4cf7d0ca9767bbb791d7ae9ad7c135": {"94a07936": {"type": "FUNCTION", "size": 196, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_26", "symbol": "PollSema"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_26", "symbol": "WaitSema"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "SignalSema"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "e99e4e201c1c2a707342d3032b0b7a8226020862": {"c6440f0b": {"type": "FUNCTION", "size": 228, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_26", "symbol": "sceSifCheckStatRpc"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_26", "symbol": "sceSifCheckStatRpc"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "180": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "6fbaf33db1005337c21060947c5aaf134a723443": {"6bf1ea73": {"type": "FUNCTION", "size": 232, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.2", "2.1.0", "2.1.3", "2.1.4"], "sdk": ["2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_26", "symbol": "sceSifCheckStatRpc"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_26", "symbol": "sceSifCheckStatRpc"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "55904a4171aa9c408cc2d8020a952669b6df81e9": {"c3a14385": {"type": "FUNCTION", "size": 240, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.3", "1.6.5"], "sdk": ["1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": )PS2SDB", 8192}, + std::string_view{R"PS2SDB({"type": "MIPS_26", "symbol": "sceSifCheckStatRpc"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_26", "symbol": "sceSifCheckStatRpc"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "26d4c65d000312b8d4f7160afc58586b1c9046ce": {"c3a14385": {"type": "FUNCTION", "size": 240, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1"], "sdk": ["1.6.1"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_26", "symbol": "sceSifCheckStatRpc"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_26", "symbol": "sceSifCheckStatRpc"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "aa5e78b2a80a4f33b62451a36cf0a1e644536c71": {"c6440f0b": {"type": "FUNCTION", "size": 240, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_26", "symbol": "sceSifCheckStatRpc"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_26", "symbol": "sceSifCheckStatRpc"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "180": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "mceGetInfoApdx": {"ab3dd4f1585281fff24f8a08c4425781d1002e49": {"472c1a1b": {"type": "FUNCTION", "size": 84, "library": "libmc", "scope": "LOCAL", "is_interface": false, "versions": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.1.0", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.4", "2.3.0", "2.3.2", "2.4.0", "2.4.3", "2.5.0", "2.5.3", "2.5.4", "2.6.0", "2.7.0", "2.7.1"], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "a23e960dfe692fcc292d1e28f9a26fbbfa31a516": {"665e9b1a": {"type": "FUNCTION", "size": 88, "library": "libmc", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_26", "symbol": "iSignalSema"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "d52ad8f039782a7b58c95acbd91cf3a949386467": {"2a8b25f8": {"type": "FUNCTION", "size": 72, "library": "libmc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_GPREL16", "symbol": ".sbss"}, "24": {"type": "MIPS_GPREL16", "symbol": ".sbss"}, "32": {"type": "MIPS_GPREL16", "symbol": ".sbss"}, "44": {"type": "MIPS_GPREL16", "symbol": ".sbss"}}}}, "39cc793e892340b410640756d45573722e74d15f": {"103d9541": {"type": "FUNCTION", "size": 52, "library": "libmc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_GPREL16", "symbol": ".sbss"}, "24": {"type": "MIPS_GPREL16", "symbol": ".sbss"}}}}}, "sceMcGetInfo": {"9af69cf1cc835a9a5ae0a702db8d00ecb4192a9b": {"53ce0e3a": {"type": "FUNCTION", "size": 380, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1"], "sdk": ["2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_26", "symbol": "PollSema"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "216": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "220": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "244": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "252": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "256": {"type": "MIPS_HI16", "symbol": "mceGetInfoApdx", "original": ".text"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "276": {"type": "MIPS_LO16", "symbol": "mceGetInfoApdx", "original": ".text"}, "292": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "308": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "324": {"type": "MIPS_26", "symbol": "SignalSema"}, "328": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "991e4a7949440de1be1150528165d2b703ec8191": {"67da5bbe": {"type": "FUNCTION", "size": 388, "library": "libmc", "scope": "GLO)PS2SDB", 8192}, + std::string_view{R"PS2SDB(BAL", "is_interface": true, "versions": ["2.2.0", "2.2.1", "2.2.4", "2.3.0", "2.3.2", "2.4.0", "2.4.3", "2.5.0"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_26", "symbol": "PollSema"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_26", "symbol": "SignalSema"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "228": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "232": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "252": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "260": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "264": {"type": "MIPS_HI16", "symbol": "mceGetInfoApdx", "original": ".text"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "284": {"type": "MIPS_LO16", "symbol": "mceGetInfoApdx", "original": ".text"}, "300": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "316": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "328": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "332": {"type": "MIPS_26", "symbol": "SignalSema"}, "336": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "e9b4bd6891fdb18225a40aaf1f0fb9b03ddb823a": {"79a551ca": {"type": "FUNCTION", "size": 292, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "172": {"type": "MIPS_GPREL16", "symbol": ".sbss"}, "176": {"type": "MIPS_GPREL16", "symbol": ".sbss"}, "184": {"type": "MIPS_GPREL16", "symbol": ".sbss"}, "188": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "200": {"type": "MIPS_HI16", "symbol": "mceGetInfoApdx", "original": ".text"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "220": {"type": "MIPS_LO16", "symbol": "mceGetInfoApdx", "original": ".text"}, "236": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "260": {"type": "MIPS_GPREL16", "symbol": ".sdata"}}}}, "cf66d01a91365b6025a029de3de3d5a17b3c2807": {"5a31ddb2": {"type": "FUNCTION", "size": 308, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.2", "2.1.0", "2.1.3", "2.1.4"], "sdk": ["2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "200": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "208": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "212": {"type": "MIPS_HI16", "symbol": "mceGetInfoApdx", "original": ".text"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "232": {"type": "MIPS_LO16", "symbol": "mceGetInfoApdx", "original": ".text"}, "248": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "6a242bff001f9ff19fdf7cc8b1b95b9cfc971dbd": {"2a19eb2a": {"type": "FUNCTION", "size": 324, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1", "1.6.3", "1.6.5"], "sdk": ["1.6.1", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "200": {"type": "MIPS_LO16", "symbol": "", "or)PS2SDB", 8192}, + std::string_view{R"PS2SDB(iginal": ".bss"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "216": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "228": {"type": "MIPS_HI16", "symbol": "mceGetInfoApdx", "original": ".text"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "248": {"type": "MIPS_LO16", "symbol": "mceGetInfoApdx", "original": ".text"}, "264": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "3cc95964663b6f8c9177904d077b0d341e437ff6": {"c4b29c88": {"type": "FUNCTION", "size": 380, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_26", "symbol": "PollSema"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "216": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "220": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "244": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "252": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "256": {"type": "MIPS_HI16", "symbol": "mceGetInfoApdx", "original": ".text"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "276": {"type": "MIPS_LO16", "symbol": "mceGetInfoApdx", "original": ".text"}, "292": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "308": {"type": "MIPS_26", "symbol": "SignalSema"}, "312": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "324": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "328": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "b1129d86061b499c51b4f62b5557666a33fb3af8": {"79a551ca": {"type": "FUNCTION", "size": 292, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.0"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "172": {"type": "MIPS_GPREL16", "symbol": ".sbss"}, "176": {"type": "MIPS_GPREL16", "symbol": ".sbss"}, "184": {"type": "MIPS_GPREL16", "symbol": ".sbss"}, "188": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "200": {"type": "MIPS_HI16", "symbol": "mceGetInfoApdx", "original": ".text"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "220": {"type": "MIPS_LO16", "symbol": "mceGetInfoApdx", "original": ".text"}, "236": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "260": {"type": "MIPS_GPREL16", "symbol": ".sdata"}}}}, "4e7e440ca849473203a908ec068ff4c1e295293f": {"366540e6": {"type": "FUNCTION", "size": 272, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"28": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_GPREL16", "symbol": ".sbss"}, "160": {"type": "MIPS_GPREL16", "symbol": ".sbss"}, "168": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "180": {"type": "MIPS_HI16", "symbol": "mceGetInfoApdx", "original": ".text"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "200": {"type": "MIPS_LO16", "symbol": "mceGetInfoApdx", "original": ".text"}, "216": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "240": {"type": "MIPS_GPREL16", "symbol": ".sdata"}}}}, "a5aa9e3843d247055bfb44b61d991f5881e1c2e7": {"366540e6": {"type": "FUNCTION", "size": 272, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"28": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_GPREL16", "symbol": ".sbss"}, "160": {"type": "MIPS_GPREL16", "symbol": ".sbss"}, "168": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "180": {"type": "MIPS_HI16", "symbol": "mceGetInfoApdx", "original": ".text"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "200": {"type": ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(MIPS_LO16", "symbol": "mceGetInfoApdx", "original": ".text"}, "216": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "240": {"type": "MIPS_GPREL16", "symbol": ".sdata"}}}}}, "sceMcUdCheckNewCard": {"ed31f46ea0ff81a5c2f8e68214b3eab6deabc9e4": {"babc78b7": {"type": "FUNCTION", "size": 108, "library": "libmc", "scope": "GLOBAL", "is_interface": false, "versions": ["2.5.0", "2.5.3", "2.5.4", "2.6.0", "2.7.0", "2.7.1"], "sdk": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_26", "symbol": "scePrintf"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}, "fdd2a86b": {"type": "FUNCTION", "size": 108, "library": "libmc", "scope": "GLOBAL", "is_interface": false, "versions": ["2.4.3"], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_26", "symbol": "printf"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "0f740a52d3793dfd96e890c04b7f28bbf2b0947a": {"c8a7d925": {"type": "FUNCTION", "size": 112, "library": "libmc", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.0", "2.8.1"], "sdk": ["2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_HI16", "symbol": "mceSifRpcEndFunc", "original": ".text"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "mceSifRpcEndFunc", "original": ".text"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "76": {"type": "MIPS_26", "symbol": "scePrintf"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "192e86d0794125168ebcd3c4a48857212d8aec68": {"c8a7d925": {"type": "FUNCTION", "size": 112, "library": "libmc", "scope": "GLOBAL", "is_interface": false, "versions": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_HI16", "symbol": "mceSifRpcEndFunc", "original": ".text"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "mceSifRpcEndFunc", "original": ".text"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "76": {"type": "MIPS_26", "symbol": "scePrintf"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceMcGetDir": {"fc18ae1f4a8a1fe374b5069552db7cf43df4f294": {"a85361c5": {"type": "FUNCTION", "size": 328, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.5.4", "2.6.0", "2.7.0", "2.7.1"], "sdk": ["2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_26", "symbol": "PollSema"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_26", "symbol": "SignalSema"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "176": {"type": "MIPS_26", "symbol": "strncpy"}, "196": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "240": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "256": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "272": {"type": "MIPS_26", "symbol": "SignalSema"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "2df4316ddf17979f01c45d26045f2b98d8f691e0": {"7b462140": {"type": "FUNCTION", "size": 344, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.4", "2.3.0", "2.3.2", "2.4.0", "2.4.3", "2.5.0"], "sdk": ["2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_26", "symbol": "PollSema"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "SignalSema"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_26", "symbol": "SignalSema"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "192": {"type": "MIPS_26", "symbol": "strncpy"}, "212": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "220": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "256": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "272": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "288": {"type": "MIPS_26", "symbol": "SignalSema"}, "292": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "e17bb15e4ccd5bf552bd11ee2cdf6ca7c0c6d952": {"352d2b5f": {"type": "FUNCTION", "size": 332, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "2.8.1"], "sdk": ["2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI)PS2SDB", 8192}, + std::string_view{R"PS2SDB(16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_26", "symbol": "PollSema"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_26", "symbol": "SignalSema"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "176": {"type": "MIPS_26", "symbol": "strncpy"}, "196": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "208": {"type": "MIPS_HI16", "symbol": "mceSifRpcEndFunc", "original": ".text"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "224": {"type": "MIPS_LO16", "symbol": "mceSifRpcEndFunc", "original": ".text"}, "244": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "260": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "276": {"type": "MIPS_26", "symbol": "SignalSema"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "6fbf733d41edb08006354ce4762db1eee694289e": {"bde279ee": {"type": "FUNCTION", "size": 304, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0", "2.2.1"], "sdk": ["2.2.0", "2.2.1", "2.2.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_26", "symbol": "PollSema"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "SignalSema"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_26", "symbol": "strncpy"}, "172": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "216": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "232": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "248": {"type": "MIPS_26", "symbol": "SignalSema"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "f35cdba27f7229d8866eea48673c0b69274d089e": {"fb9a41a6": {"type": "FUNCTION", "size": 220, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"24": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_26", "symbol": "strncpy"}, "116": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "184": {"type": "MIPS_GPREL16", "symbol": ".sdata"}}}}, "267b919e3bf4cb080ffee918436808311d45297e": {"66b3d4c4": {"type": "FUNCTION", "size": 232, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.1.0", "2.1.3", "2.1.4"], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "strncpy"}, "124": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "bbc0fdd889dcda31d72c405f023a623583340b50": {"b2832ae7": {"type": "FUNCTION", "size": 332, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_26", "symbol": "PollSema"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_26", "symbol": "SignalSema"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "176": {"type": "MIPS_26", "symbol": "strncpy"}, "196": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "208": {"type": "MIPS_HI16", "symbol": "mceSifRpcEndFunc", "original": ".text"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "224": {"type": "MIPS_LO16", "symbol": "mceSifRpcEndFunc", "original": ".text"}, "244": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "260": {"type": "MIPS_26", "symbol": "SignalSema"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "276": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "cdbe9af4a55397df89d4be6e15d99078e73f3059": {"fb9a41a6": {"type": "FUNCTION", "size": 220, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.0"], "compiler_versions": ["2.3.1.01"], "relocations": {"24": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_26", "symbol": "strncpy"}, "116": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "184": {"type": "MIPS_GPREL16", "symbol": ".sdata"}}}}, "f7d31144d5b551e853c0d2c7d6c1ae3312266d06": {"13662a9b": {"type": "FUNCTION", "size": 228, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"40": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "52": {"type": "MIPS_HI16", "symbol": "", "original)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "strncpy"}, "124": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "192": {"type": "MIPS_GPREL16", "symbol": ".sdata"}}}}}, "mceStorePwd": {"d7c50303dee8b7eff6ddb7880f90650c7b36c60b": {"bd5be7ef": {"type": "FUNCTION", "size": 132, "library": "libmc", "scope": "LOCAL", "is_interface": false, "versions": ["2.0.2", "2.1.0", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.4", "2.3.0", "2.3.2", "2.4.0", "2.4.3", "2.5.0", "2.5.3", "2.5.4", "2.6.0", "2.7.0", "2.7.1"], "sdk": ["2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_26", "symbol": "strlen"}, "64": {"type": "MIPS_26", "symbol": "strlen"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_26", "symbol": "memcpy"}}}}, "9c458f4c8a0deb1bf3796df2697b211f27530b6c": {"57c2b064": {"type": "FUNCTION", "size": 140, "library": "libmc", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_26", "symbol": "strlen"}, "64": {"type": "MIPS_26", "symbol": "strlen"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_26", "symbol": "memcpy"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_26", "symbol": "iSignalSema"}}}}, "8e5e9a83af991fcd7cf6905f17bf13204b2f4666": {"80085631": {"type": "FUNCTION", "size": 136, "library": "libmc", "scope": "LOCAL", "is_interface": false, "versions": ["1.6.1", "1.6.3", "1.6.5"], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_26", "symbol": "strlen"}, "68": {"type": "MIPS_26", "symbol": "strlen"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_26", "symbol": "memcpy"}}}}, "fe17846b2c668722c41e42d9aec84af6ed8cda3f": {"80085631": {"type": "FUNCTION", "size": 136, "library": "libmc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.4.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_26", "symbol": "strlen"}, "68": {"type": "MIPS_26", "symbol": "strlen"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_26", "symbol": "memcpy"}}}}, "673f405dd232808019ae7c5f17ff057ab75a2434": {"0bfe8910": {"type": "FUNCTION", "size": 280, "library": "libmc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceMcChdir": {"80aa173db2a04e65c0aacbdc265f8e8128a25355": {"f80f0256": {"type": "FUNCTION", "size": 320, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1"], "sdk": ["2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_26", "symbol": "PollSema"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_26", "symbol": "SignalSema"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_26", "symbol": "strncpy"}, "184": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "196": {"type": "MIPS_HI16", "symbol": "mceStorePwd", "original": ".text"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "216": {"type": "MIPS_LO16", "symbol": "mceStorePwd", "original": ".text"}, "232": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "248": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "264": {"type": "MIPS_26", "symbol": "SignalSema"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "cc27fcd13567d8f1756fbbfcd6123431be2d81d4": {"973e65a3": {"type": "FUNCTION", "size": 336, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.4", "2.3.0", "2.3.2", "2.4.0", "2.4.3", "2.5.0"], "sdk": ["2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_26", "symbol": "PollSema"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_26", "symbol": "SignalSema"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_26", "symbol": "SignalSema"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "184": {"type": "MIPS_26", "symbol": "strncpy"}, "200": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "208": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "212": {"type": "MIPS_HI16", "symbol": "mceStorePwd", "original": ".text"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "232": {"type": "MIPS_LO16", "symbol": "mceStorePwd", "original": ".text"}, "248": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "264": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "280": {"type": "MIPS_26", "symbol": "SignalSema"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "556c2e3c2a0f8018589784c5aa9917b9cf819e21": {"b48a1e5e": {"type": "FUNCTION", "size": 30)PS2SDB", 8192}, + std::string_view{R"PS2SDB(0, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0", "2.2.1"], "sdk": ["2.2.0", "2.2.1", "2.2.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_26", "symbol": "PollSema"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_26", "symbol": "SignalSema"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_26", "symbol": "strncpy"}, "164": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "176": {"type": "MIPS_HI16", "symbol": "mceStorePwd", "original": ".text"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "196": {"type": "MIPS_LO16", "symbol": "mceStorePwd", "original": ".text"}, "212": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "228": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "244": {"type": "MIPS_26", "symbol": "SignalSema"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "ff63d9a9fca2a27a4f95c71bfca69a5d724c3f4c": {"0d601f8d": {"type": "FUNCTION", "size": 220, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"16": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_26", "symbol": "strncpy"}, "112": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_HI16", "symbol": "mceStorePwd", "original": ".text"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_LO16", "symbol": "mceStorePwd", "original": ".text"}, "160": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "184": {"type": "MIPS_GPREL16", "symbol": ".sdata"}}}}, "4ef6380d3a5e401f554640def56018a4956bb751": {"2b9fa96b": {"type": "FUNCTION", "size": 232, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.1.0", "2.1.3", "2.1.4"], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_26", "symbol": "strncpy"}, "120": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_HI16", "symbol": "mceStorePwd", "original": ".text"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "mceStorePwd", "original": ".text"}, "168": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "a4485c137f0a84e2d94f1d3ce82e97a10e299ae9": {"d4d432b3": {"type": "FUNCTION", "size": 320, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_26", "symbol": "PollSema"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_26", "symbol": "SignalSema"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_26", "symbol": "strncpy"}, "184": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "196": {"type": "MIPS_HI16", "symbol": "mceStorePwd", "original": ".text"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "216": {"type": "MIPS_LO16", "symbol": "mceStorePwd", "original": ".text"}, "232": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "248": {"type": "MIPS_26", "symbol": "SignalSema"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "264": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "035390a13fc8dcd7b169063c36ac71dfceeb6d80": {"0d601f8d": {"type": "FUNCTION", "size": 220, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.0"], "compiler_versions": ["2.3.1.01"], "relocations": {"16": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_26", "symbol": "strncpy"}, "112": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_HI16", "symbol": "mceStorePwd", "original": ".text"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_LO16", "symbol": "mceStorePwd", "original": ".text"}, "160": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "184": {"type": "MIPS_GPREL16", "symbol": ".sdata"}}}}, "c3295f24c6c5569062fe1f66b61ef761396472cb": {"47422afc": {"type": "FUNCTION", "size": 228, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"36": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_HI)PS2SDB", 8192}, + std::string_view{R"PS2SDB(16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_26", "symbol": "strncpy"}, "120": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_HI16", "symbol": "mceStorePwd", "original": ".text"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "mceStorePwd", "original": ".text"}, "168": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "192": {"type": "MIPS_GPREL16", "symbol": ".sdata"}}}}}, "sceMcFormat": {"2a5ac689b54152f496f2c96640290d781c22227e": {"c42a9898": {"type": "FUNCTION", "size": 204, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.5.4", "2.6.0", "2.7.0", "2.7.1"], "sdk": ["2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_26", "symbol": "PollSema"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_26", "symbol": "SignalSema"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "4fa51b950b37d18666741c433596d1dfef121ae7": {"7b2eebea": {"type": "FUNCTION", "size": 200, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0", "2.2.1", "2.2.4", "2.3.0", "2.3.2", "2.4.0", "2.4.3", "2.5.0"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_26", "symbol": "PollSema"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_26", "symbol": "SignalSema"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_26", "symbol": "SignalSema"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "a75057c56a9dff56e1311717abfcb6ce4f959f65": {"ffdf4232": {"type": "FUNCTION", "size": 204, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "2.8.1"], "sdk": ["2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_26", "symbol": "PollSema"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_HI16", "symbol": "mceSifRpcEndFunc", "original": ".text"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "mceSifRpcEndFunc", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_26", "symbol": "SignalSema"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "6bec1340f276bd0b52c2cd08bb4f7235f2bfea49": {"5e36920e": {"type": "FUNCTION", "size": 132, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "112": {"type": "MIPS_GPREL16", "symbol": ".sdata"}}}}, "462ee12ab7ba67587c990eecff3dc7e1a8a4a186": {"8edee8bf": {"type": "FUNCTION", "size": 144, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.1.0", "2.1.3", "2.1.4"], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "361a1741fe7ee809f18946b3869b87b5482e21a4": {"bda94bac": {"type": "FUNCTION", "size": 204, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_26", "symbol": "PollSema"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_HI16", "symbol": "mceSifRpcEndFunc", "original": ".text"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "mceSifRpcEndFunc", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "148": {"type": "MIPS_26", "symbol": "SignalSema"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "10344828e05c68ef9618ca38a5bcabfbc59cc31d": )PS2SDB", 8192}, + std::string_view{R"PS2SDB({"5e36920e": {"type": "FUNCTION", "size": 132, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.0"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "112": {"type": "MIPS_GPREL16", "symbol": ".sdata"}}}}, "116c58ead240ce05718b11d54ff0ca13d1522828": {"51cb9700": {"type": "FUNCTION", "size": 144, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"20": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "124": {"type": "MIPS_GPREL16", "symbol": ".sdata"}}}}}, "sceMcDelete": {"7771c7f4a8c36c1671caa63cf786a36b18986156": {"76994667": {"type": "FUNCTION", "size": 280, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.5.4", "2.6.0", "2.7.0", "2.7.1"], "sdk": ["2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_26", "symbol": "PollSema"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "SignalSema"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_26", "symbol": "strncpy"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "200": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "216": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "232": {"type": "MIPS_26", "symbol": "SignalSema"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "44c1fa21004d9039981593044ce732faeb01f915": {"0681fda4": {"type": "FUNCTION", "size": 296, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.4", "2.3.0", "2.3.2", "2.4.0", "2.4.3", "2.5.0"], "sdk": ["2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_26", "symbol": "PollSema"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_26", "symbol": "SignalSema"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_26", "symbol": "SignalSema"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_26", "symbol": "strncpy"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "216": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "232": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "248": {"type": "MIPS_26", "symbol": "SignalSema"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "13e8f7f3c80d981c63998e8d4cf6f30be500480a": {"c500ab83": {"type": "FUNCTION", "size": 284, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "2.8.1"], "sdk": ["2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_26", "symbol": "PollSema"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "SignalSema"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_26", "symbol": "strncpy"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_HI16", "symbol": "mceSifRpcEndFunc", "original": ".text"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "184": {"type": "MIPS_LO16", "symbol": "mceSifRpcEndFunc", "original": ".text"}, "204": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "220": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "236": {"type": "MIPS_26", "symbol": "SignalSema"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "ce064f1b2a92850bbd488928be0ac1aade8e3368": {"624ec8f9": {"type": "FUNCTION", "size": 260, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0", "2.2.1"], "sdk": ["2.2.0", "2.2.1", "2.2.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_26", "symbol": "PollSema"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_26", "symbol": "SignalSema"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_26", "symbol": "strncpy"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "180": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "212": {"type": "MIPS_26", "symbol": "SignalSema"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "bc1c90b4bcab7fb6363554918b1d43258533b38f": {"5c525dcd": {"type": "FUNCTION", "size": 204, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "strncpy"}, "100")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "168": {"type": "MIPS_GPREL16", "symbol": ".sdata"}}}}, "41150317aec2b31b196334a74e78c5012386f9df": {"54edfbcd": {"type": "FUNCTION", "size": 216, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.1.0", "2.1.3", "2.1.4"], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_26", "symbol": "strncpy"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "657c31b9f33f75419e21bb82db490f424cb9fea1": {"a3604e90": {"type": "FUNCTION", "size": 284, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_26", "symbol": "PollSema"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "SignalSema"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_26", "symbol": "strncpy"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_HI16", "symbol": "mceSifRpcEndFunc", "original": ".text"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "184": {"type": "MIPS_LO16", "symbol": "mceSifRpcEndFunc", "original": ".text"}, "204": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "220": {"type": "MIPS_26", "symbol": "SignalSema"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "de343ef4e0aea6fa7ace41c5e00cdd483d517354": {"5c525dcd": {"type": "FUNCTION", "size": 204, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.0"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "strncpy"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "168": {"type": "MIPS_GPREL16", "symbol": ".sdata"}}}}, "d4d3a9c0bcb79d8a5b1a826d6faf9d6362de8b06": {"a9a441fa": {"type": "FUNCTION", "size": 204, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"32": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "strncpy"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "172": {"type": "MIPS_GPREL16", "symbol": ".sdata"}}}}}, "sceMcFlush": {"a02e4bce918904c5449bcf4568986f8f00357702": {"14248e1c": {"type": "FUNCTION", "size": 184, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.5.4", "2.6.0", "2.7.0", "2.7.1"], "sdk": ["2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_26", "symbol": "PollSema"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "SignalSema"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "8061c201e71b03bcba2d04b191660e7052279ce8": {"073bf2b3": {"type": "FUNCTION", "size": 180, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0", "2.2.1", "2.2.4", "2.3.0", "2.3.2", "2.4.0", "2.4.3", "2.5.0"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_26", "symbol": "PollSema"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_26", "symbol": "SignalSema"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "SignalSema"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "14ea011f7b12047e7321960a3582fc72a83a5dfe": {"dcf27fdf": {"type": "FUNCTION", "size": 188, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "2.8.1"], "sdk": ["2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_26", "symbol": "PollSema"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_HI16", "symbol": "", )PS2SDB", 8192}, + std::string_view{R"PS2SDB("original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_HI16", "symbol": "mceSifRpcEndFunc", "original": ".text"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_LO16", "symbol": "mceSifRpcEndFunc", "original": ".text"}, "120": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_26", "symbol": "SignalSema"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "c51e78baf94a61420b59727ca0781b7095f07f9e": {"7d43f7c6": {"type": "FUNCTION", "size": 128, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "108": {"type": "MIPS_GPREL16", "symbol": ".sdata"}}}}, "f824fa2bd92660d7af87940e8443eadaf92e0aab": {"8d43f345": {"type": "FUNCTION", "size": 140, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.1.0", "2.1.3", "2.1.4"], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "e0e1dbd21fe375478727985306be08bfec141d70": {"63859776": {"type": "FUNCTION", "size": 188, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_26", "symbol": "PollSema"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_HI16", "symbol": "mceSifRpcEndFunc", "original": ".text"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_LO16", "symbol": "mceSifRpcEndFunc", "original": ".text"}, "120": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "136": {"type": "MIPS_26", "symbol": "SignalSema"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "28c087381b5d81ceeefaf1d50b8afe31c8b86bcb": {"7d43f7c6": {"type": "FUNCTION", "size": 128, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "108": {"type": "MIPS_GPREL16", "symbol": ".sdata"}}}}}, "sceMcSetFileInfo": {"a6d44885d4ec103dcef650e49053a8fc8fbf1818": {"1552e2c3": {"type": "FUNCTION", "size": 456, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.5.4", "2.6.0", "2.7.0", "2.7.1"], "sdk": ["2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_26", "symbol": "PollSema"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_26", "symbol": "SignalSema"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "312": {"type": "MIPS_26", "symbol": "strncpy"}, "324": {"type": "MIPS_26", "symbol": "FlushCache"}, "332": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "344": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "368": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "384": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "396": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "400": {"type": "MIPS_26", "symbol": "SignalSema"}, "404": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "b3a18692a7662fb6aa9518b2808b0e9504a76475": {"4ce80ae8": {"type": "FUNCTION", "size": 472, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.4", "2.3.0", "2.3.2", "2.4.0", "2.4.3", "2.5.0"], "sdk": ["2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_26", "symbol": "PollSema"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_26", "symbol": "SignalSema"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_26", "symbol": "SignalSema"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "180": {"type)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": "MIPS_LO16", "symbol": "", "original": ".bss"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "328": {"type": "MIPS_26", "symbol": "strncpy"}, "340": {"type": "MIPS_26", "symbol": "FlushCache"}, "348": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "360": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "384": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "400": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "412": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "416": {"type": "MIPS_26", "symbol": "SignalSema"}, "420": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "7b6e0d0ce12cf8b125fada9247f561f27f606207": {"08786dbf": {"type": "FUNCTION", "size": 460, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "2.8.1"], "sdk": ["2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_26", "symbol": "PollSema"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_26", "symbol": "SignalSema"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "312": {"type": "MIPS_26", "symbol": "strncpy"}, "324": {"type": "MIPS_26", "symbol": "FlushCache"}, "332": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "336": {"type": "MIPS_HI16", "symbol": "mceSifRpcEndFunc", "original": ".text"}, "348": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "352": {"type": "MIPS_LO16", "symbol": "mceSifRpcEndFunc", "original": ".text"}, "372": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "388": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "400": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "404": {"type": "MIPS_26", "symbol": "SignalSema"}, "408": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "7479a08ecd316889b611846ff56f297d6dfd01e7": {"2b5414fa": {"type": "FUNCTION", "size": 436, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0", "2.2.1"], "sdk": ["2.2.0", "2.2.1", "2.2.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_26", "symbol": "PollSema"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_26", "symbol": "SignalSema"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "292": {"type": "MIPS_26", "symbol": "strncpy"}, "304": {"type": "MIPS_26", "symbol": "FlushCache"}, "312": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "324": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "348": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "364": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "376": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "380": {"type": "MIPS_26", "symbol": "SignalSema"}, "384": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "e3a5c18a3c2e51024cec17a7c54e5ebafadc6a7b": {"58794678": {"type": "FUNCTION", "size": 328, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "220": {"type": "MIPS_26", "symbol": "strncpy"}, "232": {"type": "MIPS_26", "symbol": "FlushCache"}, "240": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "276": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "300": {"type": "MIPS_GPREL16", "symbol": ".sdata"}}}}, "4a3cffe4eb8849b1572193a5db8523734fc5c12e": {"935a1759": {"type": "FUNCTION", "size": 340, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.1.0", "2.1.3", "2.1.4"], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "228": {"type": "MIPS_26", "symbol": "strncpy"}, "240": {"type": "MIPS_26", "symbol": "FlushCache"}, "248": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "284": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "a5600cb5ec53f75c00ab62d34bb86539e9341fc9": {"b5a21afd": {"type": "FUNCTION", "size": 460, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_26", "symbol": "PollSema"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_26", "symbol": "SignalSema"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "312": {"type": "MIPS_26", "symbol": "strncpy"}, "324": {"type": "MIPS_26", "symbol": "FlushCache"}, "332)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "336": {"type": "MIPS_HI16", "symbol": "mceSifRpcEndFunc", "original": ".text"}, "348": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "352": {"type": "MIPS_LO16", "symbol": "mceSifRpcEndFunc", "original": ".text"}, "372": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "388": {"type": "MIPS_26", "symbol": "SignalSema"}, "392": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "404": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "408": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "77dabf62d162c3603cb41313321b08108444d2bb": {"58794678": {"type": "FUNCTION", "size": 328, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.0"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "220": {"type": "MIPS_26", "symbol": "strncpy"}, "232": {"type": "MIPS_26", "symbol": "FlushCache"}, "240": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "276": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "300": {"type": "MIPS_GPREL16", "symbol": ".sdata"}}}}, "1382aa558dc054c40c2973aebb5f6151f035feca": {"c2afca5d": {"type": "FUNCTION", "size": 336, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"24": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "228": {"type": "MIPS_26", "symbol": "strncpy"}, "240": {"type": "MIPS_26", "symbol": "FlushCache"}, "248": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "284": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "308": {"type": "MIPS_GPREL16", "symbol": ".sdata"}}}}}, "sceMcRename": {"3a1cb59142c0f5cbb76f7fccc41d9c9b8f79a5c8": {"1383f503": {"type": "FUNCTION", "size": 344, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.5.4", "2.6.0", "2.7.0", "2.7.1"], "sdk": ["2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_26", "symbol": "PollSema"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_26", "symbol": "SignalSema"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_26", "symbol": "strncpy"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "196": {"type": "MIPS_26", "symbol": "strncpy"}, "216": {"type": "MIPS_26", "symbol": "FlushCache"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "260": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "276": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "292": {"type": "MIPS_26", "symbol": "SignalSema"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "8af6735285dbd57ba4560fdd09dd5422c3368117": {"f192bf80": {"type": "FUNCTION", "size": 360, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.4", "2.3.0", "2.3.2", "2.4.0", "2.4.3", "2.5.0"], "sdk": ["2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "PollSema"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_26", "symbol": "SignalSema"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_26", "symbol": "SignalSema"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "184": {"type": "MIPS_26", "symbol": "strncpy"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "212": {"type": "MIPS_26", "symbol": "strncpy"}, "232": {"type": "MIPS_26", "symbol": "FlushCache"}, "240": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "276": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "292": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "308": {"type": "MIPS_26", "symbol": "SignalSema"}, "312": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "6a671596319d4f811a21450b768dff1ca0713e80": {"84662d18": {"type": "FUNCTION", "size": 348, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "2.8.1"], "sdk": ["2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_26", "symbol": "PollSema"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_26", "symbol": "SignalSema"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_26", "symbol": "strncpy"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "196": {"type": "MIPS_26", "symbol": "strncpy"}, "216": {"type": "MIPS_26", "symbol": "FlushCache"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "228": {"type": "MIPS_HI16", "symbol": "mceSifRpcEndFunc", "original": ".text"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "244": {"type": "MIPS_LO16", "symbol": "mceSifRpcEndFu)PS2SDB", 8192}, + std::string_view{R"PS2SDB(nc", "original": ".text"}, "264": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "280": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "292": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "296": {"type": "MIPS_26", "symbol": "SignalSema"}, "300": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "dc07bf97fa745b769d2f374e8c40e5c6dd508f9f": {"67e3acb1": {"type": "FUNCTION", "size": 316, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0", "2.2.1"], "sdk": ["2.2.0", "2.2.1", "2.2.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "PollSema"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_26", "symbol": "SignalSema"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_26", "symbol": "strncpy"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_26", "symbol": "strncpy"}, "188": {"type": "MIPS_26", "symbol": "FlushCache"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "232": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "248": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "264": {"type": "MIPS_26", "symbol": "SignalSema"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "18df3e6fb15fcd7b12f45f0f2ad249aee0398532": {"e682467d": {"type": "FUNCTION", "size": 240, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_26", "symbol": "strncpy"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_26", "symbol": "strncpy"}, "136": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "180": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "204": {"type": "MIPS_GPREL16", "symbol": ".sdata"}}}}, "c36352e4d91e52e08484c32442a5f0815fda06b3": {"c7818677": {"type": "FUNCTION", "size": 252, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.1.0", "2.1.3", "2.1.4"], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_26", "symbol": "strncpy"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_26", "symbol": "strncpy"}, "144": {"type": "MIPS_26", "symbol": "FlushCache"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "1ce04cde44b0e115b1a31dc1b3b71965e5cc31a6": {"41c36674": {"type": "FUNCTION", "size": 344, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.1", "3.0.2", "3.1.0"], "sdk": ["3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_26", "symbol": "PollSema"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_26", "symbol": "SignalSema"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_26", "symbol": "strncpy"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "196": {"type": "MIPS_26", "symbol": "strncpy"}, "212": {"type": "MIPS_26", "symbol": "FlushCache"}, "220": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "224": {"type": "MIPS_HI16", "symbol": "mceSifRpcEndFunc", "original": ".text"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "240": {"type": "MIPS_LO16", "symbol": "mceSifRpcEndFunc", "original": ".text"}, "260": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "276": {"type": "MIPS_26", "symbol": "SignalSema"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "292": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "324e953e82775d4f123eb486baf451c451562871": {"d02e1abd": {"type": "FUNCTION", "size": 348, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0"], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_26", "symbol": "PollSema"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_26", "symbol": "SignalSema"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_26", "symbol": "strncpy"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "196": {"type": "MIPS_26", "symbol": "strncpy"}, "216": {"type": "MIPS_26", "symbol": "FlushCache"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "228": {"type": "MIPS_HI16", "symbol": "mceSifRpcEndFunc", "original": ".text"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "244": {"type": "MIPS_LO16", "symbol": "mceSifRpcEndFunc", "original": ".text"}, "264": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "280": {"type": "MIPS_26", "symbol": "SignalSema"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "296": {"type": )PS2SDB", 8192}, + std::string_view{R"PS2SDB("MIPS_HI16", "symbol": "", "original": ".data"}, "300": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "899c5a0fbe837028c9a7adb73fa790ca6e14d5e6": {"e682467d": {"type": "FUNCTION", "size": 240, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.0"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_26", "symbol": "strncpy"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_26", "symbol": "strncpy"}, "136": {"type": "MIPS_26", "symbol": "FlushCache"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "180": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "204": {"type": "MIPS_GPREL16", "symbol": ".sdata"}}}}}, "sceMcUnformat": {"3394e76a81723f6121acfd842755e91556fc7c53": {"c42a9898": {"type": "FUNCTION", "size": 204, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.5.4", "2.6.0", "2.7.0", "2.7.1"], "sdk": ["2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_26", "symbol": "PollSema"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_26", "symbol": "SignalSema"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "d917d24e21c0d85c8b8d1287665ab8c0ee698d18": {"7b2eebea": {"type": "FUNCTION", "size": 200, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0", "2.2.1", "2.2.4", "2.3.0", "2.3.2", "2.4.0", "2.4.3", "2.5.0"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_26", "symbol": "PollSema"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_26", "symbol": "SignalSema"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_26", "symbol": "SignalSema"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "334bed80862a78a71f400d050a4a3f4cd6ef7576": {"ffdf4232": {"type": "FUNCTION", "size": 204, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "2.8.1"], "sdk": ["2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_26", "symbol": "PollSema"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_HI16", "symbol": "mceSifRpcEndFunc", "original": ".text"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "mceSifRpcEndFunc", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_26", "symbol": "SignalSema"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "cd02842e2b5a00476debfc130783ec3824d44b91": {"5e36920e": {"type": "FUNCTION", "size": 132, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "112": {"type": "MIPS_GPREL16", "symbol": ".sdata"}}}}, "adc31432962e163e9cfde243ea11715a7bbfd34a": {"8edee8bf": {"type": "FUNCTION", "size": 144, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.1.0", "2.1.3", "2.1.4"], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "29b0223b888df35cc778adc18aeb706a3a7445fe": {"bda94bac": {"type": "FUNCTION", "size": 204, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_26", "symbol": "PollSema"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_HI16", "symbol": "mceSifRpcEndFunc", "orig)PS2SDB", 8192}, + std::string_view{R"PS2SDB(inal": ".text"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "mceSifRpcEndFunc", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "148": {"type": "MIPS_26", "symbol": "SignalSema"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "bca529dc78baf2c290bdf10395e08cf92dcd3e5d": {"5e36920e": {"type": "FUNCTION", "size": 132, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.0"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "112": {"type": "MIPS_GPREL16", "symbol": ".sdata"}}}}, "6e7e78c10bffdc172c942791a73282b1b6e49884": {"51cb9700": {"type": "FUNCTION", "size": 144, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"20": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "124": {"type": "MIPS_GPREL16", "symbol": ".sdata"}}}}}, "sceMcGetEntSpace": {"77e115c5bbfd7cada8f3a9b92b513217084d591d": {"a05b1606": {"type": "FUNCTION", "size": 264, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.5.4", "2.6.0", "2.7.0", "2.7.1"], "sdk": ["2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_26", "symbol": "PollSema"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_26", "symbol": "SignalSema"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_26", "symbol": "strncpy"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "220": {"type": "MIPS_26", "symbol": "SignalSema"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "1e2934c380055ed06a3476a6e54f71da88540554": {"ad8f56a4": {"type": "FUNCTION", "size": 280, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.4", "2.3.0", "2.3.2", "2.4.0", "2.4.3", "2.5.0"], "sdk": ["2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_26", "symbol": "PollSema"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "SignalSema"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_26", "symbol": "SignalSema"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_26", "symbol": "strncpy"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "204": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "220": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "236": {"type": "MIPS_26", "symbol": "SignalSema"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "30d16bebb0d4441d7ddaabf186413589f1460c2e": {"9b8e3290": {"type": "FUNCTION", "size": 268, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "2.8.1"], "sdk": ["2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_26", "symbol": "PollSema"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_26", "symbol": "SignalSema"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_26", "symbol": "strncpy"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_HI16", "symbol": "mceSifRpcEndFunc", "original": ".text"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "172": {"type": "MIPS_LO16", "symbol": "mceSifRpcEndFunc", "original": ".text"}, "192": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "208": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "224": {"type": "MIPS_26", "symbol": "SignalSema"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "917cbb5ce55e18c96b998d7ce765cefbc42a6f16": {"fa2b6c7f": {"type": "FUNCTION", "size": 244, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0", "2.2.1"], "sdk": ["2.2.0", "2.2.1", "2.2.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_26", "symbol": "PollSema"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "SignalSema"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_26", "symbol": "strncpy"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "19)PS2SDB", 8192}, + std::string_view{R"PS2SDB(6": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "200": {"type": "MIPS_26", "symbol": "SignalSema"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "7629694c1d72c1d3b41b4e00e6fef6eed5bc858b": {"6e00348e": {"type": "FUNCTION", "size": 172, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"8": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_26", "symbol": "strncpy"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "144": {"type": "MIPS_GPREL16", "symbol": ".sdata"}}}}, "0603e0e45ea2675519c41cf37ca9c98e7c70736f": {"3d099eaf": {"type": "FUNCTION", "size": 184, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.1.0", "2.1.3", "2.1.4"], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "strncpy"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "61ded3a6dc9de4b6d768791cd9767b39eb7bc43a": {"f2894e48": {"type": "FUNCTION", "size": 268, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_26", "symbol": "PollSema"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_26", "symbol": "SignalSema"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_26", "symbol": "strncpy"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_HI16", "symbol": "mceSifRpcEndFunc", "original": ".text"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "172": {"type": "MIPS_LO16", "symbol": "mceSifRpcEndFunc", "original": ".text"}, "192": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "208": {"type": "MIPS_26", "symbol": "SignalSema"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "bb23eccdc8f3602fcadc18227d1bc8ed4356798d": {"6e00348e": {"type": "FUNCTION", "size": 172, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.0"], "compiler_versions": ["2.3.1.01"], "relocations": {"8": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_26", "symbol": "strncpy"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "144": {"type": "MIPS_GPREL16", "symbol": ".sdata"}}}}}, "mceSifRpcEndFunc": {"3887f1de7e61e4ad19b4f8bb2aa8b864094372d9": {"c3092567": {"type": "FUNCTION", "size": 12, "library": "libmc", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "4": {"type": "MIPS_26", "symbol": "iSignalSema"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "regMain": {"6de94fe49951c66c1ede8939b83ba9bcef9c9acb": {"57597114": {"type": "FUNCTION", "size": 104, "library": "libmc", "scope": "LOCAL", "is_interface": false, "versions": ["3.1.0"], "sdk": ["3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_26", "symbol": "GetThreadId"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_26", "symbol": "sceSifSetRpcQueue"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_HI16", "symbol": "mceSifEntry", "original": ".text"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "mceSifEntry", "original": ".text"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_26", "symbol": "sceSifRegisterRpc"}, "96": {"type": "MIPS_26", "symbol": "sceSifRpcLoop"}}}}}, "mceRegistSifFunc": {"68734688289b02daf7d6b8d711abb8c968db9d2e": {"4505bd4c": {"type": "FUNCTION", "size": 128, "library": "libmc", "scope": "LOCAL", "is_interface": false, "versions": ["3.1.0"], "sdk": ["3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "regMain", "original": ".text"}, "4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_HI16", "symbol": "", "original": "_gp"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "20": {"type": "MIPS_LO16", "symbol": "regMain", "original": ".text"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": "_gp"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_26", "symbol": "CreateThread"}, "100": {"type": "MIPS_26", "symbol": "StartThread"}}}}}, "mceEncEcc": {"3266b72bfc6f42a45cc9f79ebf849d4978b0b1b5": {"d3e72eac": {"type": "FUNCTION", "size": 124, "library": "libmc", "scope": "LOCAL", "is_interface": false, "versions": ["3.1.0"], "sdk": ["3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "mceDecEcc": {"2c7f5d4dd510d5732d1e2d5a9cfbac8d4102dbed": {"7a19ccf7": {"type": "FUNCTION", "size": 280, "library": "libmc", "scope": "LOCAL", "is_interface": false, "versions": ["3.1.0"], "sdk": ["3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "mceEncEcc", "scope": "LIBRARY", "original": ".text"}}}}}, "mceDecEccAll": {"5d5c7fe1)PS2SDB", 8192}, + std::string_view{R"PS2SDB(36d585599bf00fd5204729e915f8a4d6": {"0df96395": {"type": "FUNCTION", "size": 132, "library": "libmc", "scope": "LOCAL", "is_interface": false, "versions": ["3.1.0"], "sdk": ["3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "mceDecEcc", "scope": "LIBRARY", "original": ".text"}}}}}, "mceExtractSliceData": {"aee0b62aa5b26faadf51bc5d4001cbcda9becf45": {"2381fd43": {"type": "FUNCTION", "size": 300, "library": "libmc", "scope": "LOCAL", "is_interface": false, "versions": ["3.1.0"], "sdk": ["3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "memcpy"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_26", "symbol": "mceDecEccAll", "scope": "LIBRARY", "original": ".text"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "180": {"type": "MIPS_26", "symbol": "memcpy"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "204": {"type": "MIPS_26", "symbol": "memcpy"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "mceSifEntry": {"afcd0260b620d0c3959fb154ab28dd833c6a43b1": {"bff2e094": {"type": "FUNCTION", "size": 192, "library": "libmc", "scope": "LOCAL", "is_interface": false, "versions": ["3.1.0"], "sdk": ["3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "mceExtractSliceData", "scope": "LIBRARY", "original": ".text"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "memcpy"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_26", "symbol": "memcpy"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceMcReadFast": {"ac85c954d5dc0ad5c5513f19c3ecac8f3cd29258": {"9871894e": {"type": "FUNCTION", "size": 272, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["3.1.0"], "sdk": ["3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_26", "symbol": "PollSema"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_HI16", "symbol": "mceSifRpcEndFunc", "original": ".text"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "172": {"type": "MIPS_LO16", "symbol": "mceSifRpcEndFunc", "original": ".text"}, "192": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "208": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "224": {"type": "MIPS_26", "symbol": "SignalSema"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceMcWriteFast": {"015d103d64b1b1c14190b4164f030b30d0e95419": {"5c659a4d": {"type": "FUNCTION", "size": 256, "library": "libmc", "scope": "GLOBAL", "is_interface": true, "versions": ["3.1.0"], "sdk": ["3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_26", "symbol": "PollSema"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_HI16", "symbol": "mceSifRpcEndFunc", "original": ".text"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_LO16", "symbol": "mceSifRpcEndFunc", "original": ".text"}, "176": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "208": {"type": "MIPS_26", "symbol": "SignalSema"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}}, "libm": {"__ieee754_logf": {"6e6d11ccee66a0f0462df3ffb41e2d60514e0a61": {"5f00ae0e": {"type": "FUNCTION", "size": 736, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.1-1", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "563079013689d83b1565e871cb83b16bc82add85": {"ed19ac92": {"type": "FUNCTION", "size": 776, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "a3f54bfa15ce2284e8fa49a7fdf6c5311d0ac6cd": {"871909b2": {"type": "FUNCTION", "size": 804, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.0.7", "2.1.0", "2.1.4", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"44": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "fdc660ad4df815cb22120bcf0ef4a675d35f26cd": {"8fde2aa5": {"type": "FUNCTION", "size": 700, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".rodat)PS2SDB", 8192}, + std::string_view{R"PS2SDB(a"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "280": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "288": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "332": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "384": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "388": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "392": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "408": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "416": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "420": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "428": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "436": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "444": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "452": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "460": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "468": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "496": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "508": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "540": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "544": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "588": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "592": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "596": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "604": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "652": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "656": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "660": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "668": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "__ieee754_log10f": {"628eb60a0f543ed9a2e5e860b018f9df05392092": {"ae123893": {"type": "FUNCTION", "size": 228, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_26", "symbol": "__ieee754_logf", "scope": "LIBRARY"}}}}, "36085f2379cac98546b8bf5b6bc4afb708f59414": {"7d240578": {"type": "FUNCTION", "size": 236, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "152": {"type": "MIPS_26", "symbol": "__ieee754_logf", "scope": "LIBRARY"}}}}, "9cdd6c0580f19ffb907957c54f8e7ecf9f3a5941": {"14977168": {"type": "FUNCTION", "size": 304, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.1.0", "2.1.4", "2.4.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "224": {"type": "MIPS_26", "symbol": "__ieee754_logf", "scope": "LIBRARY"}}}}, "7911fbceae7e93150de764197922b0b3f7ac90ea": {"799b970b": {"type": "FUNCTION", "size": 216, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "164": {"type": "MIPS_26", "symbol": "__ieee754_logf", "scope": "LIBRARY"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "__ieee754_rem_pio2f": {"8a9c745b38cb24d38d5d4882a57a3a38cbcdbbda": {"e6a293aa": {"type": "FUNCTION", "size": 944, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"344": {"type": "MIPS_26", "symbol": "fabsf", "scope": "LIBRARY"}, "452": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "460": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "860": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "868": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "876": {"type": "MIPS_26", "symbol": "__kernel_rem_pio2f", "scope": "LIBRARY"}}}}, "0d747bcb01faf9c765e7d2a9d995a84eca16f665": {"26c2a113": {"type": "FUNCTION", "size": 968, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"344": {"type": "MIPS_26", "symbol": "fabsf", "scope": "LIBRARY"}, "468": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "476": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "884": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "892": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "900": {"type": "MIPS_26", "symbol": "__kernel_rem_pio2f", "scope": "LIBRARY"}}}}, "af41b4f3155e9e8e59da8c9a5179b8e902be171e": {"5c6559a0": {"type": "FUNCTION", "size": 992, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"348": {"type": "MIPS_26", "symbol": "fabsf", "scope": "LIBRARY"}, "448": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "456": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "900": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "908": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "916": {"type": "MIPS_26", "symbol": "__kernel_rem_pio2f", "scope": "LIBRARY"}}}}, "71e3740332f9dc880645b50370d7806575554766": {"09938316": {"type": "FUNCTION", "size": 1016, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"364": {"type": "MIPS_26", "symbol": "fabsf", "scope": "LIBRARY"}, "400": {"type": "MIPS_26", "symbol": "fptosi"}, "464": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "472": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "812": {"type": "MIPS_26", "symbol": "fptosi"}, "904": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "912": {"type":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "MIPS_LO16", "symbol": "", "original": ".rodata"}, "924": {"type": "MIPS_26", "symbol": "__kernel_rem_pio2f", "scope": "LIBRARY"}}}}, "2278e6395ca1edc2a157a751f4ab02fe9e2f294f": {"1edc08d8": {"type": "FUNCTION", "size": 916, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.0", "2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"364": {"type": "MIPS_26", "symbol": "fabsf", "scope": "LIBRARY"}, "464": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "472": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "864": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "872": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "880": {"type": "MIPS_26", "symbol": "__kernel_rem_pio2f", "scope": "LIBRARY"}}}}, "f89e94ab3b9094376ef03d4c1be39b84cfc6daae": {"3eef25db": {"type": "FUNCTION", "size": 928, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"120": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "200": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "272": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "312": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "316": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "324": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "364": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "368": {"type": "MIPS_26", "symbol": "fabsf", "scope": "LIBRARY"}, "380": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "384": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "388": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "392": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "396": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "404": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "412": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "420": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "472": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "480": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "596": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "604": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "608": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "616": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "680": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "688": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "692": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "700": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "748": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "876": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "884": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "892": {"type": "MIPS_26", "symbol": "__kernel_rem_pio2f", "scope": "LIBRARY"}}}}, "24e3df20a1739681f013fbb6e2e34e8d36d60566": {"fb62f285": {"type": "FUNCTION", "size": 920, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"120": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "200": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "272": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "312": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "316": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "324": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "364": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "368": {"type": "MIPS_26", "symbol": "fabsf", "scope": "LIBRARY"}, "380": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "384": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "388": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "392": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "404": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "412": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "416": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "420": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "472": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "480": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "588": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "596": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "600": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "608": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "672": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "680": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "684": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "692": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "740": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "868": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "876": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "884": {"type": "MIPS_26", "symbol": "__kernel_rem_pio2f", "scope": "LIBRARY"}}}}}, "__kernel_rem_pio2f": {"31a132c619ab2888e2ecc6451fe6e955c1d54618": {"a0a9e632": {"type": "FUNCTION", "size": 2148, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "424": {"type": "MIPS_26", "symbol": "scalbnf"}, "448": {"type": "MIPS_26", "symbol": "floorf", "scope": "LIBRARY"}, "788": {"type": "MIPS_26", "symbol": "scalbnf"}, "1216": {"type": "MIPS_26", "symbol": "scalbnf"}, "1344": {"type": "MIPS_26", "symbol": "scalbnf"}, "1432": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1444": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "9ecf6ac3515405258b1cb79a5c084edeebef454f": {)PS2SDB", 8192}, + std::string_view{R"PS2SDB("06a861f1": {"type": "FUNCTION", "size": 2212, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"48": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "432": {"type": "MIPS_26", "symbol": "scalbnf"}, "456": {"type": "MIPS_26", "symbol": "floorf", "scope": "LIBRARY"}, "820": {"type": "MIPS_26", "symbol": "scalbnf"}, "1264": {"type": "MIPS_26", "symbol": "scalbnf"}, "1408": {"type": "MIPS_26", "symbol": "scalbnf"}, "1496": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1508": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "ada6129c04b7755f2caf80bb779471e39b056727": {"2854a012": {"type": "FUNCTION", "size": 2380, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "528": {"type": "MIPS_26", "symbol": "scalbnf"}, "552": {"type": "MIPS_26", "symbol": "floorf", "scope": "LIBRARY"}, "924": {"type": "MIPS_26", "symbol": "scalbnf"}, "1356": {"type": "MIPS_26", "symbol": "scalbnf"}, "1500": {"type": "MIPS_26", "symbol": "scalbnf"}, "1632": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1648": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "3366f7c50e0a8ba6614ebb352ad642d2101f76ca": {"939ebc6a": {"type": "FUNCTION", "size": 2220, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "428": {"type": "MIPS_26", "symbol": "fptosi"}, "448": {"type": "MIPS_26", "symbol": "fptosi"}, "484": {"type": "MIPS_26", "symbol": "scalbnf"}, "508": {"type": "MIPS_26", "symbol": "floorf", "scope": "LIBRARY"}, "532": {"type": "MIPS_26", "symbol": "fptosi"}, "860": {"type": "MIPS_26", "symbol": "scalbnf"}, "1272": {"type": "MIPS_26", "symbol": "scalbnf"}, "1324": {"type": "MIPS_26", "symbol": "fptosi"}, "1352": {"type": "MIPS_26", "symbol": "fptosi"}, "1392": {"type": "MIPS_26", "symbol": "fptosi"}, "1412": {"type": "MIPS_26", "symbol": "scalbnf"}, "1500": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1508": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "96e458577ee3987e4d7b8d7a556361292d26122d": {"3f9aa6e8": {"type": "FUNCTION", "size": 2088, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.0", "2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "424": {"type": "MIPS_26", "symbol": "scalbnf"}, "448": {"type": "MIPS_26", "symbol": "floorf", "scope": "LIBRARY"}, "672": {"type": "MIPS_26", "symbol": "scalbnf"}, "1092": {"type": "MIPS_26", "symbol": "scalbnf"}, "1172": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1176": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1876": {"type": "MIPS_26", "symbol": "scalbnf"}}}}, "ed31d1f3e17644c67d6bbe947eb7f3d1ba7cab64": {"24fa8ad2": {"type": "FUNCTION", "size": 2080, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "332": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "356": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "360": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "440": {"type": "MIPS_26", "symbol": "scalbnf"}, "448": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "456": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "464": {"type": "MIPS_26", "symbol": "floorf", "scope": "LIBRARY"}, "472": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "476": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "680": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "684": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "700": {"type": "MIPS_26", "symbol": "scalbnf"}, "1108": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1116": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1120": {"type": "MIPS_26", "symbol": "scalbnf"}, "1140": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1148": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1204": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1208": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1860": {"type": "MIPS_26", "symbol": "scalbnf"}, "1868": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1872": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1892": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1900": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2032": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2052": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "bcb61af2c4ab941773a2cdf2b1d87cdf36682fd8": {"53e0190a": {"type": "FUNCTION", "size": 2080, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "328": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "336": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "352": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "356": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "436": {"type": "MIPS_26", "symbol": "scalbnf"}, "444": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "452": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "460": {"type": "MIPS_26", "symbol": "floorf", "scope": "LIBRARY"}, "468": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "472": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "676": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "680": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "696": {"type": "MIPS_26", "symbol": "scalbnf"}, "1104": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1112": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1116": {"type": "MIPS_26", "symbol": "scalbnf"}, "1136": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1144": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1200": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1204": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1860": {"type": "MIPS_26", "symbol": "scalbnf"}, "1868": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1872": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1892": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1900": {"type": "MIPS_LO1)PS2SDB", 8192}, + std::string_view{R"PS2SDB(6", "symbol": "", "original": ".rodata"}, "2032": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2052": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "__kernel_tanf": {"db29371eebc1c8272f21694af9446fbad460ec96": {"949c206c": {"type": "FUNCTION", "size": 644, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"76": {"type": "MIPS_26", "symbol": "fabsf", "scope": "LIBRARY"}, "240": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "f489197263df109953fab316ad0589da949fdcc8": {"a4b73eca": {"type": "FUNCTION", "size": 676, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.7.1", "3.0.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"80": {"type": "MIPS_26", "symbol": "fabsf", "scope": "LIBRARY"}, "252": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "74f691c14e6fd08ca353c760d7d96ebbf5ada787": {"ee4e9c22": {"type": "FUNCTION", "size": 660, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.2", "2.4.3", "2.5.5", "2.5.7", "2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"80": {"type": "MIPS_26", "symbol": "fabsf", "scope": "LIBRARY"}, "244": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "6d53622e45c7365fe618d3e5585df5475f57abac": {"1a53e78f": {"type": "FUNCTION", "size": 704, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"76": {"type": "MIPS_26", "symbol": "fptosi"}, "108": {"type": "MIPS_26", "symbol": "fabsf", "scope": "LIBRARY"}, "268": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "da0a7254248cfd89cafae3e6ddc2ecce4b53f440": {"a8b2fd6f": {"type": "FUNCTION", "size": 760, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"76": {"type": "MIPS_26", "symbol": "fabsf", "scope": "LIBRARY"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "256": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "292": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "316": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "328": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "336": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "348": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "356": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "372": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "380": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "392": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "400": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "416": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "436": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "444": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "460": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "468": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "480": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "488": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "496": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "504": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "528": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "536": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "664": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "672": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "700": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "704": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "8bd299aef0b1a444bb86340ddd534507fc7f0270": {"3be6e3d8": {"type": "FUNCTION", "size": 760, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"76": {"type": "MIPS_26", "symbol": "fabsf", "scope": "LIBRARY"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "256": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "292": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "316": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "328": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "336": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "348": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "356": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "372": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "380": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "392": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "400": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "416": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "436": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "444": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "460": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "468": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "480": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "488": {"type": "MIPS_LO16", "symbol": "", "original": ".)PS2SDB", 8192}, + std::string_view{R"PS2SDB(rodata"}, "496": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "504": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "524": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "532": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "664": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "672": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "716": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "720": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "isinf": {"4bf661264efb0faaa887c8ca1fd7398a78fd43b3": {"00000000": {"type": "FUNCTION", "size": 72, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "f7f34b7484424ca83c922e254a0ea899091ba995": {"00000000": {"type": "FUNCTION", "size": 72, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.7.0", "2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "0b5ee578fb685f779c6fb2fb31c8e8b8bcd0f374": {"00000000": {"type": "FUNCTION", "size": 72, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.0", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "d7bd34ce4d1cf8dab170f5177c29b77b51e4b08c": {"00000000": {"type": "FUNCTION", "size": 72, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.4", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "6a9ad1daee429dcb253cb6e67736fdf941581ffb": {"00000000": {"type": "FUNCTION", "size": 72, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "isnan": {"5edf2a4c379fba1859b89d08e5c1f97a0bd39f7f": {"00000000": {"type": "FUNCTION", "size": 60, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "d80aa9725302177205136c75fabcf509c29d3f58": {"00000000": {"type": "FUNCTION", "size": 56, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.7.0", "2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "3166d5146dd5c78ca58674e70bdd0ff3b85b4af8": {"00000000": {"type": "FUNCTION", "size": 56, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.0", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "03aba122ac3681cad8a0122731bb49ed55b9a540": {"00000000": {"type": "FUNCTION", "size": 56, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.4", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "71d6c4fb65a7e6ee10bb23493f322efa17697a87": {"00000000": {"type": "FUNCTION", "size": 56, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "copysignf": {"fc23602bf6c7e6eaa3a5695f409d949511a12f06": {"00000000": {"type": "FUNCTION", "size": 60, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "22a220af87d70072c505412fbadcdf53d6781a5a": {"00000000": {"type": "FUNCTION", "size": 48, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.7.0", "2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "7b7b1bb31d2c281731a440bbf7020896eca05d03": {"00000000": {"type": "FUNCTION", "size": 44, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.0", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "86d950503183c4de4794db1f07bb8c901d94edaf": {"00000000": {"type": "FUNCTION", "size": 40, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.4", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "3ae6c95218fc6fb46ab747d04ae5cf74155e2001": {"00000000": {"type": "FUNCTION", "size": 40, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "fabsf": {"a1418a4c0b2704383c4982465a60b6fdc462d656": {"00000000": {"type": "FUNCTION", "size": 40, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "ff32a5fc0ed80cd24d91f3eb0d8f058c73799de5": {"00000000": {"type": "FUNCTION", "size": 28, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "f975d05e76ff2bc324ac572d908e46083d55d75a": {"00000000": {"type": "FUNCTION", "size": 24, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "2adfaa394adb7274642c9da73b855d6ef02dbd3a": {"00000000": {"type": "FUNCTION", "size": 24, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "floorf": {"81a1047a25ec884bbc7838ec74d4cb27db57a35f": {"00000000": {"type": "FUNCTION", "size": 216, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "18911f581398829939dcfb7239aaaddc74920151": {"00000000": {"type": "FUNCTION", "size": 240, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "77ab02417656d3c7eef52eefe9a9b9e5960ce7ee": {"00000000": {"type": "FUNCTION", "size": 228, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2)PS2SDB", 8192}, + std::string_view{R"PS2SDB(", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "780861e7f4af1755de32a0ba4fd3c682ef51a1fe": {"00000000": {"type": "FUNCTION", "size": 212, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.0", "2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "9d5db2950f484e5dfa3af5354289cc5f041c326a": {"d0e27a47": {"type": "FUNCTION", "size": 212, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "5a731911946f37ab5e700147a3694cec68011b24": {"d0e27a47": {"type": "FUNCTION", "size": 212, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "scalbnf": {"2926b05b163b7046fd2d9d01650244d6802cf677": {"4d7482b9": {"type": "FUNCTION", "size": 200, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"172": {"type": "MIPS_26", "symbol": "copysignf"}}}}, "5d2e13a18aa4352f6b656f99fb1be4bc89b1cfca": {"4d7482b9": {"type": "FUNCTION", "size": 200, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"172": {"type": "MIPS_26", "symbol": "copysignf"}}}}, "6438c997e4293cbbc11716437c584b977e36544b": {"9dd2fe22": {"type": "FUNCTION", "size": 352, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.7.0", "2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"276": {"type": "MIPS_26", "symbol": "copysignf"}}}}, "4998b910fb9d7a35227fe19f1f2d7a015f65cbea": {"81d32368": {"type": "FUNCTION", "size": 180, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.0", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"156": {"type": "MIPS_26", "symbol": "copysignf"}}}}, "8ef6aa844fc32ee72556a823c8ff3df6666144a8": {"2bad56f6": {"type": "FUNCTION", "size": 172, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.4", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_26", "symbol": "copysignf"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "b2d4d3ec401f84fcaf71fe7497c61b1b63433da1": {"2bad56f6": {"type": "FUNCTION", "size": 172, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_26", "symbol": "copysignf"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "tanf": {"f50a538ebee42317f9e17cdc5549468d63601acb": {"b082b00f": {"type": "FUNCTION", "size": 120, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "__kernel_tanf", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "__ieee754_rem_pio2f", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "__kernel_tanf", "scope": "LIBRARY"}}}}, "53bff9e64c6427b05b3445134c5e25bd6a5b745b": {"f72dea95": {"type": "FUNCTION", "size": 136, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.2", "2.4.3", "2.5.5", "2.5.7", "2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"84": {"type": "MIPS_26", "symbol": "__ieee754_rem_pio2f", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "__kernel_tanf", "scope": "LIBRARY"}}}}, "4d46c225182e37cd8d9119f0c02797dbab242504": {"96a538e9": {"type": "FUNCTION", "size": 108, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "__kernel_tanf", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "__ieee754_rem_pio2f", "scope": "LIBRARY"}}}}, "7d900bfd3bb1638adde614c8d79014e742c36a1b": {"96a538e9": {"type": "FUNCTION", "size": 108, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "__kernel_tanf", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "__ieee754_rem_pio2f", "scope": "LIBRARY"}}}}}, "log10f": {"c0a5a6b6b96e3534f1ce618782a40e20574c6678": {"dcec266a": {"type": "FUNCTION", "size": 20, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.3", "2.5.0", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "__ieee754_log10f", "scope": "LIBRARY"}}}}, "a4333ac1626f836bdbef0bfe621e8e33749f8210": {"2dabaf77": {"type": "FUNCTION", "size": 332, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.1.0", "2.1.4", "2.4.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__ieee754_log10f", "scope": "LIBRARY"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": "__fdlib_version"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "52": {"type": "MIPS_26", "symbol": "isnanf"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "100": {"type": "MIPS_26", "symbol": "fptodp"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": "__infinity"}, "144": {"type": "MIPS_26", "symbol": "dpsub"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "__infinity"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "188": {"type": "MIPS_26", "symbol": "__errno"}, "208": {"type": "MIPS_LO)PS2SDB", 8192}, + std::string_view{R"PS2SDB(16", "symbol": "", "original": "__fdlib_version"}, "224": {"type": "MIPS_26", "symbol": "matherr", "scope": "LIBRARY"}, "240": {"type": "MIPS_26", "symbol": "__errno"}, "268": {"type": "MIPS_26", "symbol": "__errno"}, "284": {"type": "MIPS_26", "symbol": "dptofp"}}}}}, "__ieee754_log": {"692c1f7b0d717bc5df669f8b84a7424e15460be6": {"6a4fd1d7": {"type": "FUNCTION", "size": 1544, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"108": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "140": {"type": "MIPS_26", "symbol": "dpsub"}, "156": {"type": "MIPS_26", "symbol": "dpdiv"}, "184": {"type": "MIPS_26", "symbol": "dpmul"}, "228": {"type": "MIPS_26", "symbol": "dpadd"}, "336": {"type": "MIPS_26", "symbol": "dpsub"}, "380": {"type": "MIPS_26", "symbol": "dpcmp"}, "408": {"type": "MIPS_26", "symbol": "litodp"}, "416": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "420": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "432": {"type": "MIPS_26", "symbol": "dpmul"}, "444": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "448": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "456": {"type": "MIPS_26", "symbol": "dpmul"}, "472": {"type": "MIPS_26", "symbol": "dpadd"}, "496": {"type": "MIPS_26", "symbol": "dpmul"}, "508": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "512": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "520": {"type": "MIPS_26", "symbol": "dpmul"}, "540": {"type": "MIPS_26", "symbol": "dpsub"}, "556": {"type": "MIPS_26", "symbol": "dpmul"}, "584": {"type": "MIPS_26", "symbol": "dpsub"}, "600": {"type": "MIPS_26", "symbol": "litodp"}, "608": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "612": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "624": {"type": "MIPS_26", "symbol": "dpmul"}, "636": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "640": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "648": {"type": "MIPS_26", "symbol": "dpmul"}, "664": {"type": "MIPS_26", "symbol": "dpsub"}, "680": {"type": "MIPS_26", "symbol": "dpsub"}, "716": {"type": "MIPS_26", "symbol": "dpadd"}, "732": {"type": "MIPS_26", "symbol": "dpdiv"}, "744": {"type": "MIPS_26", "symbol": "litodp"}, "764": {"type": "MIPS_26", "symbol": "dpmul"}, "792": {"type": "MIPS_26", "symbol": "dpmul"}, "804": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "808": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "816": {"type": "MIPS_26", "symbol": "dpmul"}, "824": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "828": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "836": {"type": "MIPS_26", "symbol": "dpadd"}, "852": {"type": "MIPS_26", "symbol": "dpmul"}, "860": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "864": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "872": {"type": "MIPS_26", "symbol": "dpadd"}, "888": {"type": "MIPS_26", "symbol": "dpmul"}, "900": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "904": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "912": {"type": "MIPS_26", "symbol": "dpmul"}, "920": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "924": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "932": {"type": "MIPS_26", "symbol": "dpadd"}, "948": {"type": "MIPS_26", "symbol": "dpmul"}, "956": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "960": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "968": {"type": "MIPS_26", "symbol": "dpadd"}, "984": {"type": "MIPS_26", "symbol": "dpmul"}, "992": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "996": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1004": {"type": "MIPS_26", "symbol": "dpadd"}, "1020": {"type": "MIPS_26", "symbol": "dpmul"}, "1036": {"type": "MIPS_26", "symbol": "dpadd"}, "1068": {"type": "MIPS_26", "symbol": "dpmul"}, "1084": {"type": "MIPS_26", "symbol": "dpmul"}, "1112": {"type": "MIPS_26", "symbol": "dpadd"}, "1128": {"type": "MIPS_26", "symbol": "dpmul"}, "1144": {"type": "MIPS_26", "symbol": "dpsub"}, "1160": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1164": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1172": {"type": "MIPS_26", "symbol": "dpmul"}, "1192": {"type": "MIPS_26", "symbol": "dpadd"}, "1208": {"type": "MIPS_26", "symbol": "dpmul"}, "1220": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1224": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1232": {"type": "MIPS_26", "symbol": "dpmul"}, "1248": {"type": "MIPS_26", "symbol": "dpadd"}, "1264": {"type": "MIPS_26", "symbol": "dpsub"}, "1280": {"type": "MIPS_26", "symbol": "dpsub"}, "1320": {"type": "MIPS_26", "symbol": "dpsub"}, "1336": {"type": "MIPS_26", "symbol": "dpmul"}, "1352": {"type": "MIPS_26", "symbol": "dpsub"}, "1368": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1372": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1380": {"type": "MIPS_26", "symbol": "dpmul"}, "1400": {"type": "MIPS_26", "symbol": "dpsub"}, "1416": {"type": "MIPS_26", "symbol": "dpmul"}, "1428": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1432": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1440": {"type": "MIPS_26", "symbol": "dpmul"}, "1456": {"type": "MIPS_26", "symbol": "dpsub"}, "1472": {"type": "MIPS_26", "symbol": "dpsub"}, "1488": {"type": "MIPS_26", "symbol": "dpsub"}}}}, "8aad8b61a9cdc313d8f22d46b15aa213f659a94a": {"783f3180": {"type": "FUNCTION", "size": 1260, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.1", "1.5.3", "1.6.5", "2.0.2", "2.0.7", "2.3.0", "2.3.2", "2.4.2", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"104": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_26", "symbol": "dpsub"}, "140": {"type": "MIPS_26", "symbol": "dpdiv"}, "164": {"type": "MIPS_26", "symbol": "dpmul"}, "208": {"type": "MIPS_26", "symbol": "dpadd"}, "316": {"type": "MIPS_26", "symbol": "dpsub"}, "352": {"type": "MIPS_26", "symbol": "dpcmp"}, "376": {"type": "MIPS_26", "symbol": "litodp"}, "388": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "392": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "396": {"type": "MIPS_26", "symbol": "dpmul"}, "404": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "408": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "416": {"type": "MIPS_26", "symbol": "dpmul"}, "428": {"type": "MIPS_26", "symbol": "dpadd"}, "448": {"type": "MIPS_26", "symbol": "dpmul"}, "456": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "460": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "468": {"type": "MIPS_26", "symbol": "dpmul"}, "484": {"type": "MIPS_26", "symbol": "dpsub"}, "496": {"type": "MIPS_26", "symbol": "dpmul"}, "524": {"type": "MIPS_26", "symbol": "litodp"}, "536": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "540": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "544": {"type": "MIPS_26", "symbol": "dpmul"}, "552": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "556": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "564": {"type": "MIPS_26", "symbol": "dpmul"}, "576": {"type": "MIPS_26", "symbol": "dpsub"}, "588": {"type": "MIPS_26", "symbol": "dpsub"}, "612": {"type": "MIPS_26", "symbol": "dpadd"}, "624": {"type": "MIPS_26", "symbol": "dpdiv"}, "636": {"type": "MIPS_26", "symbo)PS2SDB", 8192}, + std::string_view{R"PS2SDB(l": "litodp"}, "652": {"type": "MIPS_26", "symbol": "dpmul"}, "680": {"type": "MIPS_26", "symbol": "dpmul"}, "700": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "704": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "712": {"type": "MIPS_26", "symbol": "dpmul"}, "724": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "728": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "732": {"type": "MIPS_26", "symbol": "dpadd"}, "744": {"type": "MIPS_26", "symbol": "dpmul"}, "752": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "756": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "760": {"type": "MIPS_26", "symbol": "dpadd"}, "772": {"type": "MIPS_26", "symbol": "dpmul"}, "780": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "784": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "792": {"type": "MIPS_26", "symbol": "dpmul"}, "800": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "804": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "808": {"type": "MIPS_26", "symbol": "dpadd"}, "820": {"type": "MIPS_26", "symbol": "dpmul"}, "828": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "832": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "836": {"type": "MIPS_26", "symbol": "dpadd"}, "848": {"type": "MIPS_26", "symbol": "dpmul"}, "856": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "860": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "864": {"type": "MIPS_26", "symbol": "dpadd"}, "876": {"type": "MIPS_26", "symbol": "dpmul"}, "888": {"type": "MIPS_26", "symbol": "dpadd"}, "912": {"type": "MIPS_26", "symbol": "dpmul"}, "924": {"type": "MIPS_26", "symbol": "dpmul"}, "944": {"type": "MIPS_26", "symbol": "dpadd"}, "956": {"type": "MIPS_26", "symbol": "dpmul"}, "968": {"type": "MIPS_26", "symbol": "dpsub"}, "984": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "988": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "992": {"type": "MIPS_26", "symbol": "dpmul"}, "1008": {"type": "MIPS_26", "symbol": "dpadd"}, "1020": {"type": "MIPS_26", "symbol": "dpmul"}, "1028": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1032": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1040": {"type": "MIPS_26", "symbol": "dpmul"}, "1052": {"type": "MIPS_26", "symbol": "dpadd"}, "1080": {"type": "MIPS_26", "symbol": "dpsub"}, "1092": {"type": "MIPS_26", "symbol": "dpmul"}, "1108": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1112": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1116": {"type": "MIPS_26", "symbol": "dpmul"}, "1132": {"type": "MIPS_26", "symbol": "dpsub"}, "1144": {"type": "MIPS_26", "symbol": "dpmul"}, "1152": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1156": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1164": {"type": "MIPS_26", "symbol": "dpmul"}, "1176": {"type": "MIPS_26", "symbol": "dpsub"}, "1188": {"type": "MIPS_26", "symbol": "dpsub"}, "1204": {"type": "MIPS_26", "symbol": "dpsub"}}}}, "b6df31183692d56a10466f3e07ddeca22f080626": {"b59f33b9": {"type": "FUNCTION", "size": 1448, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.0", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"100": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "168": {"type": "MIPS_26", "symbol": "dpsub"}, "184": {"type": "MIPS_26", "symbol": "dpdiv"}, "208": {"type": "MIPS_26", "symbol": "dpmul"}, "252": {"type": "MIPS_26", "symbol": "dpadd"}, "356": {"type": "MIPS_26", "symbol": "dpsub"}, "400": {"type": "MIPS_26", "symbol": "dpcmp"}, "428": {"type": "MIPS_26", "symbol": "litodp"}, "436": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "440": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "452": {"type": "MIPS_26", "symbol": "dpmul"}, "460": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "464": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "476": {"type": "MIPS_26", "symbol": "dpmul"}, "508": {"type": "MIPS_26", "symbol": "dpmul"}, "516": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "520": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "532": {"type": "MIPS_26", "symbol": "dpmul"}, "552": {"type": "MIPS_26", "symbol": "dpsub"}, "568": {"type": "MIPS_26", "symbol": "dpmul"}, "588": {"type": "MIPS_26", "symbol": "litodp"}, "596": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "600": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "612": {"type": "MIPS_26", "symbol": "dpmul"}, "620": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "624": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "636": {"type": "MIPS_26", "symbol": "dpmul"}, "652": {"type": "MIPS_26", "symbol": "dpsub"}, "668": {"type": "MIPS_26", "symbol": "dpsub"}, "684": {"type": "MIPS_26", "symbol": "dpsub"}, "724": {"type": "MIPS_26", "symbol": "dpadd"}, "740": {"type": "MIPS_26", "symbol": "dpdiv"}, "752": {"type": "MIPS_26", "symbol": "litodp"}, "772": {"type": "MIPS_26", "symbol": "dpmul"}, "800": {"type": "MIPS_26", "symbol": "dpmul"}, "808": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "812": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "824": {"type": "MIPS_26", "symbol": "dpmul"}, "832": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "836": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "844": {"type": "MIPS_26", "symbol": "dpadd"}, "860": {"type": "MIPS_26", "symbol": "dpmul"}, "868": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "872": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "880": {"type": "MIPS_26", "symbol": "dpadd"}, "896": {"type": "MIPS_26", "symbol": "dpmul"}, "904": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "908": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "920": {"type": "MIPS_26", "symbol": "dpmul"}, "928": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "932": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "940": {"type": "MIPS_26", "symbol": "dpadd"}, "956": {"type": "MIPS_26", "symbol": "dpmul"}, "964": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "968": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "976": {"type": "MIPS_26", "symbol": "dpadd"}, "992": {"type": "MIPS_26", "symbol": "dpmul"}, "1000": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1004": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1012": {"type": "MIPS_26", "symbol": "dpadd"}, "1028": {"type": "MIPS_26", "symbol": "dpmul"}, "1044": {"type": "MIPS_26", "symbol": "dpadd"}, "1076": {"type": "MIPS_26", "symbol": "dpmul"}, "1092": {"type": "MIPS_26", "symbol": "dpmul"}, "1120": {"type": "MIPS_26", "symbol": "dpadd"}, "1136": {"type": "MIPS_26", "symbol": "dpmul"}, "1152": {"type": "MIPS_26", "symbol": "dpsub"}, "1168": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1172": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1180": {"type": "MIPS_26", "symbol": "dpmul"}, "1200": {"type": "MIPS_26", "symbol": "dpadd"}, "1216": {"type": "MIPS_26", "symbol": "dpmul"}, "1224": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1228": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1240": {"type": "MIPS_26", "symbol": "dpmul"}, "1256": {"type": "MIPS_26", "symbol": "dpadd"}, "1272": {"type": "MIPS_26", "symbol": "dpsub"}, "1288": {"type": "MIPS_26", "symbol": "dpsub"}, "1324": {"type": "MIPS_26", "symbol": "dpsub"}, "1340": {"type": "MIPS_26", "symbol": "dpmul"}, "1356": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1360": {"type": )PS2SDB", 8192}, + std::string_view{R"PS2SDB("MIPS_LO16", "symbol": "", "original": ".rodata"}, "1368": {"type": "MIPS_26", "symbol": "dpmul"}, "1388": {"type": "MIPS_26", "symbol": "dpsub"}, "1404": {"type": "MIPS_26", "symbol": "dpmul"}, "1412": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1416": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1428": {"type": "MIPS_26", "symbol": "dpmul"}}}}}, "__ieee754_rem_pio2": {"9a562696c5feefceebed906ff5d31a0f1f12f347": {"5a979c3d": {"type": "FUNCTION", "size": 1464, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"140": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_26", "symbol": "dpsub"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "200": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "212": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "220": {"type": "MIPS_26", "symbol": "dpsub"}, "240": {"type": "MIPS_26", "symbol": "dpsub"}, "260": {"type": "MIPS_26", "symbol": "dpsub"}, "276": {"type": "MIPS_26", "symbol": "dpsub"}, "296": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "300": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "304": {"type": "MIPS_26", "symbol": "dpadd"}, "332": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "336": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "360": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "364": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "372": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "376": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "380": {"type": "MIPS_26", "symbol": "dpadd"}, "400": {"type": "MIPS_26", "symbol": "dpadd"}, "420": {"type": "MIPS_26", "symbol": "dpsub"}, "436": {"type": "MIPS_26", "symbol": "dpadd"}, "472": {"type": "MIPS_26", "symbol": "fabs", "scope": "LIBRARY"}, "480": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "484": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "496": {"type": "MIPS_26", "symbol": "dpmul"}, "516": {"type": "MIPS_26", "symbol": "dpadd"}, "528": {"type": "MIPS_26", "symbol": "dptoli"}, "540": {"type": "MIPS_26", "symbol": "litodp"}, "548": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "552": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "564": {"type": "MIPS_26", "symbol": "dpmul"}, "580": {"type": "MIPS_26", "symbol": "dpsub"}, "592": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "596": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "604": {"type": "MIPS_26", "symbol": "dpmul"}, "628": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "636": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "672": {"type": "MIPS_26", "symbol": "dpsub"}, "712": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "716": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "728": {"type": "MIPS_26", "symbol": "dpmul"}, "748": {"type": "MIPS_26", "symbol": "dpsub"}, "760": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "764": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "772": {"type": "MIPS_26", "symbol": "dpmul"}, "792": {"type": "MIPS_26", "symbol": "dpsub"}, "808": {"type": "MIPS_26", "symbol": "dpsub"}, "824": {"type": "MIPS_26", "symbol": "dpsub"}, "844": {"type": "MIPS_26", "symbol": "dpsub"}, "884": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "888": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "900": {"type": "MIPS_26", "symbol": "dpmul"}, "920": {"type": "MIPS_26", "symbol": "dpsub"}, "932": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "936": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "944": {"type": "MIPS_26", "symbol": "dpmul"}, "964": {"type": "MIPS_26", "symbol": "dpsub"}, "980": {"type": "MIPS_26", "symbol": "dpsub"}, "996": {"type": "MIPS_26", "symbol": "dpsub"}, "1016": {"type": "MIPS_26", "symbol": "dpsub"}, "1040": {"type": "MIPS_26", "symbol": "dpsub"}, "1056": {"type": "MIPS_26", "symbol": "dpsub"}, "1092": {"type": "MIPS_26", "symbol": "dpsub"}, "1136": {"type": "MIPS_26", "symbol": "dpsub"}, "1220": {"type": "MIPS_26", "symbol": "dptoli"}, "1228": {"type": "MIPS_26", "symbol": "litodp"}, "1248": {"type": "MIPS_26", "symbol": "dpsub"}, "1268": {"type": "MIPS_26", "symbol": "dpmul"}, "1316": {"type": "MIPS_26", "symbol": "dpcmp"}, "1328": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1340": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1352": {"type": "MIPS_26", "symbol": "__kernel_rem_pio2", "scope": "LIBRARY"}, "1380": {"type": "MIPS_26", "symbol": "dpsub"}, "1400": {"type": "MIPS_26", "symbol": "dpsub"}}}}, "98bc86229df74d5fd35c6b18e509b1372b4637ce": {"381483a6": {"type": "FUNCTION", "size": 1308, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.2", "2.4.3", "2.5.5", "2.5.7", "2.7.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"132": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "140": {"type": "MIPS_26", "symbol": "dpsub"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "200": {"type": "MIPS_26", "symbol": "dpsub"}, "220": {"type": "MIPS_26", "symbol": "dpsub"}, "236": {"type": "MIPS_26", "symbol": "dpsub"}, "248": {"type": "MIPS_26", "symbol": "dpsub"}, "268": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "276": {"type": "MIPS_26", "symbol": "dpadd"}, "300": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "320": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "324": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "328": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "332": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "336": {"type": "MIPS_26", "symbol": "dpadd"}, "356": {"type": "MIPS_26", "symbol": "dpadd"}, "372": {"type": "MIPS_26", "symbol": "dpsub"}, "384": {"type": "MIPS_26", "symbol": "dpadd"}, "420": {"type": "MIPS_26", "symbol": "fabs", "scope": "LIBRARY"}, "432": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "436": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "440": {"type": "MIPS_26", "symbol": "dpmul"}, "456": {"type": "MIPS_26", "symbol": "dpadd"}, "464": {"type": "MIPS_26", "symbol": "dptoli"}, "476": {"type": "MIPS_26", "symbol": "litodp"}, "488": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "492": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "496": {"type": "MIPS_26", "symbol": "dpmul"}, "508": {"type": "MIPS_26", "symbol": "dpsub"}, "516": {"typ)PS2SDB", 8192}, + std::string_view{R"PS2SDB(e": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "520": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "528": {"type": "MIPS_26", "symbol": "dpmul"}, "548": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "556": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "584": {"type": "MIPS_26", "symbol": "dpsub"}, "628": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "632": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "640": {"type": "MIPS_26", "symbol": "dpmul"}, "656": {"type": "MIPS_26", "symbol": "dpsub"}, "664": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "668": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "676": {"type": "MIPS_26", "symbol": "dpmul"}, "692": {"type": "MIPS_26", "symbol": "dpsub"}, "704": {"type": "MIPS_26", "symbol": "dpsub"}, "716": {"type": "MIPS_26", "symbol": "dpsub"}, "732": {"type": "MIPS_26", "symbol": "dpsub"}, "772": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "776": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "784": {"type": "MIPS_26", "symbol": "dpmul"}, "800": {"type": "MIPS_26", "symbol": "dpsub"}, "808": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "812": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "820": {"type": "MIPS_26", "symbol": "dpmul"}, "836": {"type": "MIPS_26", "symbol": "dpsub"}, "848": {"type": "MIPS_26", "symbol": "dpsub"}, "860": {"type": "MIPS_26", "symbol": "dpsub"}, "880": {"type": "MIPS_26", "symbol": "dpsub"}, "900": {"type": "MIPS_26", "symbol": "dpsub"}, "912": {"type": "MIPS_26", "symbol": "dpsub"}, "940": {"type": "MIPS_26", "symbol": "dpsub"}, "980": {"type": "MIPS_26", "symbol": "dpsub"}, "1060": {"type": "MIPS_26", "symbol": "dptoli"}, "1068": {"type": "MIPS_26", "symbol": "litodp"}, "1088": {"type": "MIPS_26", "symbol": "dpsub"}, "1104": {"type": "MIPS_26", "symbol": "dpmul"}, "1156": {"type": "MIPS_26", "symbol": "dpcmp"}, "1168": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1180": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1192": {"type": "MIPS_26", "symbol": "__kernel_rem_pio2", "scope": "LIBRARY"}, "1216": {"type": "MIPS_26", "symbol": "dpsub"}, "1236": {"type": "MIPS_26", "symbol": "dpsub"}}}}, "fd4a130d6155677939ace5aeb072edc9c8d40d39": {"a4854aa7": {"type": "FUNCTION", "size": 1416, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"180": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "188": {"type": "MIPS_26", "symbol": "dpsub"}, "216": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "232": {"type": "MIPS_26", "symbol": "dpsub"}, "252": {"type": "MIPS_26", "symbol": "dpsub"}, "268": {"type": "MIPS_26", "symbol": "dpsub"}, "284": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "296": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "300": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "304": {"type": "MIPS_26", "symbol": "dpsub"}, "328": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "332": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "336": {"type": "MIPS_26", "symbol": "dpadd"}, "364": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "368": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "380": {"type": "MIPS_26", "symbol": "dpadd"}, "400": {"type": "MIPS_26", "symbol": "dpsub"}, "416": {"type": "MIPS_26", "symbol": "dpadd"}, "432": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "436": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "444": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "448": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "452": {"type": "MIPS_26", "symbol": "dpadd"}, "496": {"type": "MIPS_26", "symbol": "fabs", "scope": "LIBRARY"}, "504": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "508": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "520": {"type": "MIPS_26", "symbol": "dpmul"}, "540": {"type": "MIPS_26", "symbol": "dpadd"}, "552": {"type": "MIPS_26", "symbol": "dptoli"}, "564": {"type": "MIPS_26", "symbol": "litodp"}, "572": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "576": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "588": {"type": "MIPS_26", "symbol": "dpmul"}, "604": {"type": "MIPS_26", "symbol": "dpsub"}, "612": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "616": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "628": {"type": "MIPS_26", "symbol": "dpmul"}, "648": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "656": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "684": {"type": "MIPS_26", "symbol": "dpsub"}, "720": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "724": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "736": {"type": "MIPS_26", "symbol": "dpmul"}, "756": {"type": "MIPS_26", "symbol": "dpsub"}, "764": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "768": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "784": {"type": "MIPS_26", "symbol": "dpmul"}, "804": {"type": "MIPS_26", "symbol": "dpsub"}, "820": {"type": "MIPS_26", "symbol": "dpsub"}, "836": {"type": "MIPS_26", "symbol": "dpsub"}, "856": {"type": "MIPS_26", "symbol": "dpsub"}, "892": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "896": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "904": {"type": "MIPS_26", "symbol": "dpmul"}, "924": {"type": "MIPS_26", "symbol": "dpsub"}, "932": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "936": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "948": {"type": "MIPS_26", "symbol": "dpmul"}, "968": {"type": "MIPS_26", "symbol": "dpsub"}, "984": {"type": "MIPS_26", "symbol": "dpsub"}, "1000": {"type": "MIPS_26", "symbol": "dpsub"}, "1020": {"type": "MIPS_26", "symbol": "dpsub"}, "1044": {"type": "MIPS_26", "symbol": "dpsub"}, "1060": {"type": "MIPS_26", "symbol": "dpsub"}, "1096": {"type": "MIPS_26", "symbol": "dpsub"}, "1116": {"type": "MIPS_26", "symbol": "dpsub"}, "1160": {"type": "MIPS_26", "symbol": "dpsub"}, "1228": {"type": "MIPS_26", "symbol": "dptoli"}, "1236": {"type": "MIPS_26", "symbol": "litodp"}, "1256": {"type": "MIPS_26", "symbol": "dpsub"}, "1276": {"type": "MIPS_26", "symbol": "dpmul"}, "1320": {"type": "MIPS_26", "symbol": "dpcmp"}, "1332": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1344": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1356": {"type": "MIPS_26", "symbol": "__kernel_rem_pio2", "scope": "LIBRARY"}, "1380": {"type": "MIPS_26", "symbol": "dpsub"}}}}, "1074f8c15277b8d8a075448712f3d8b25c59272a": {"148d78be": {"type": "FUNCTION", "size": 1308, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"132": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "140": {"type": "MIPS_26", "symbol": "dpsub"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "200": {"type": "MIPS_2)PS2SDB", 8192}, + std::string_view{R"PS2SDB(6", "symbol": "dpsub"}, "220": {"type": "MIPS_26", "symbol": "dpsub"}, "236": {"type": "MIPS_26", "symbol": "dpsub"}, "248": {"type": "MIPS_26", "symbol": "dpsub"}, "268": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "276": {"type": "MIPS_26", "symbol": "dpadd"}, "300": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "320": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "324": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "328": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "332": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "336": {"type": "MIPS_26", "symbol": "dpadd"}, "356": {"type": "MIPS_26", "symbol": "dpadd"}, "372": {"type": "MIPS_26", "symbol": "dpsub"}, "384": {"type": "MIPS_26", "symbol": "dpadd"}, "420": {"type": "MIPS_26", "symbol": "fabs", "scope": "LIBRARY"}, "432": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "436": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "440": {"type": "MIPS_26", "symbol": "dpmul"}, "456": {"type": "MIPS_26", "symbol": "dpadd"}, "464": {"type": "MIPS_26", "symbol": "dptoli"}, "476": {"type": "MIPS_26", "symbol": "litodp"}, "488": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "492": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "496": {"type": "MIPS_26", "symbol": "dpmul"}, "508": {"type": "MIPS_26", "symbol": "dpsub"}, "516": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "520": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "528": {"type": "MIPS_26", "symbol": "dpmul"}, "548": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "556": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "584": {"type": "MIPS_26", "symbol": "dpsub"}, "628": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "632": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "640": {"type": "MIPS_26", "symbol": "dpmul"}, "656": {"type": "MIPS_26", "symbol": "dpsub"}, "664": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "668": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "676": {"type": "MIPS_26", "symbol": "dpmul"}, "692": {"type": "MIPS_26", "symbol": "dpsub"}, "704": {"type": "MIPS_26", "symbol": "dpsub"}, "716": {"type": "MIPS_26", "symbol": "dpsub"}, "732": {"type": "MIPS_26", "symbol": "dpsub"}, "772": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "776": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "784": {"type": "MIPS_26", "symbol": "dpmul"}, "800": {"type": "MIPS_26", "symbol": "dpsub"}, "808": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "812": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "820": {"type": "MIPS_26", "symbol": "dpmul"}, "836": {"type": "MIPS_26", "symbol": "dpsub"}, "848": {"type": "MIPS_26", "symbol": "dpsub"}, "860": {"type": "MIPS_26", "symbol": "dpsub"}, "880": {"type": "MIPS_26", "symbol": "dpsub"}, "900": {"type": "MIPS_26", "symbol": "dpsub"}, "912": {"type": "MIPS_26", "symbol": "dpsub"}, "940": {"type": "MIPS_26", "symbol": "dpsub"}, "980": {"type": "MIPS_26", "symbol": "dpsub"}, "1068": {"type": "MIPS_26", "symbol": "dptoli"}, "1076": {"type": "MIPS_26", "symbol": "litodp"}, "1096": {"type": "MIPS_26", "symbol": "dpsub"}, "1108": {"type": "MIPS_26", "symbol": "dpmul"}, "1156": {"type": "MIPS_26", "symbol": "dpcmp"}, "1168": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1180": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1192": {"type": "MIPS_26", "symbol": "__kernel_rem_pio2", "scope": "LIBRARY"}, "1216": {"type": "MIPS_26", "symbol": "dpsub"}, "1236": {"type": "MIPS_26", "symbol": "dpsub"}}}}}, "__ieee754_acosf": {"5bc6f4e030993b89b79503b0c8d95bd3c8cff5b1": {"301959ff": {"type": "FUNCTION", "size": 1084, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.7.1", "3.0.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"660": {"type": "MIPS_26", "symbol": "__ieee754_sqrtf", "scope": "LIBRARY"}, "760": {"type": "MIPS_26", "symbol": "__ieee754_sqrtf", "scope": "LIBRARY"}}}}, "0b06fa112ce25faf00d865bd723953a9b569fae9": {"0f460d50": {"type": "FUNCTION", "size": 1060, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.3", "2.5.2", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"652": {"type": "MIPS_26", "symbol": "__ieee754_sqrtf", "scope": "LIBRARY"}, "752": {"type": "MIPS_26", "symbol": "__ieee754_sqrtf", "scope": "LIBRARY"}}}}, "1a005c71f12283e0c734e5e0dc27b6b2b17c8d8c": {"d0f77433": {"type": "FUNCTION", "size": 1072, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.3", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.5", "2.5.7", "2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"664": {"type": "MIPS_26", "symbol": "__ieee754_sqrtf", "scope": "LIBRARY"}, "760": {"type": "MIPS_26", "symbol": "__ieee754_sqrtf", "scope": "LIBRARY"}}}}, "4c69187f8fc707050e43de4274b6039320a85822": {"e7fc79fe": {"type": "FUNCTION", "size": 1040, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"664": {"type": "MIPS_26", "symbol": "__ieee754_sqrtf", "scope": "LIBRARY"}, "756": {"type": "MIPS_26", "symbol": "__ieee754_sqrtf", "scope": "LIBRARY"}}}}, "9885f9bf89a444d1394de90f766d6651475e3460": {"941363e8": {"type": "FUNCTION", "size": 1040, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "212": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "228": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "252": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "268": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "292": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "308": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "332": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "336": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "352": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "360": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "372": {"type": "MIPS_HI16", "symbol": "", "ori)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ginal": ".rodata"}, "376": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "408": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "412": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "436": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "440": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "448": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "456": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "464": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "472": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "480": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "488": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "500": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "508": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "516": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "524": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "532": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "540": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "556": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "560": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "572": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "580": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "596": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "600": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "616": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "624": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "636": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "644": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "664": {"type": "MIPS_26", "symbol": "__ieee754_sqrtf", "scope": "LIBRARY"}, "676": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "680": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "700": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "704": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "728": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "736": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "744": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "756": {"type": "MIPS_26", "symbol": "__ieee754_sqrtf", "scope": "LIBRARY"}, "768": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "776": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "796": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "800": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "808": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "816": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "828": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "832": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "864": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "868": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "896": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "900": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "916": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "920": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "932": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "940": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "952": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "960": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "972": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "980": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "ac20466c2b2c689800ca56610d1f6b28da5c607c": {"941363e8": {"type": "FUNCTION", "size": 1040, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "212": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "228": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "252": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "268": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "292": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "308": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "332": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "336": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "352": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "360": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "372": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "376": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "408": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "412": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "436": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "440": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "448": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "456": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "464": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "472": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "480": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "488": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "500": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "508": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "516": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "524": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "532": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "540": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "556": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "560": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "572": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "580": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "596": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "600": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "616": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "624": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "636": {"type": "MIPS_HI16", "symbol": "<)PS2SDB", 8192}, + std::string_view{R"PS2SDB(data>", "original": ".rodata"}, "644": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "664": {"type": "MIPS_26", "symbol": "__ieee754_sqrtf", "scope": "LIBRARY"}, "676": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "680": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "700": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "704": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "728": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "736": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "744": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "756": {"type": "MIPS_26", "symbol": "__ieee754_sqrtf", "scope": "LIBRARY"}, "768": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "776": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "796": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "800": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "808": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "816": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "828": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "832": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "864": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "868": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "896": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "900": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "916": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "920": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "932": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "940": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "952": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "960": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "972": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "980": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "__ieee754_asinf": {"7eefc57873125053fa56a8a741c0c835274116ba": {"3a46e6f5": {"type": "FUNCTION", "size": 952, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.7.1", "3.0.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"464": {"type": "MIPS_26", "symbol": "fabsf", "scope": "LIBRARY"}, "692": {"type": "MIPS_26", "symbol": "__ieee754_sqrtf", "scope": "LIBRARY"}}}}, "96544809784073d729574246bec1dc0ab2bace54": {"6cfb9af0": {"type": "FUNCTION", "size": 928, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.5.0", "2.5.2", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"448": {"type": "MIPS_26", "symbol": "fabsf", "scope": "LIBRARY"}, "676": {"type": "MIPS_26", "symbol": "__ieee754_sqrtf", "scope": "LIBRARY"}}}}, "8cc9362d84ef5d488ec86450ac542af2f1dd1fdd": {"24bf9879": {"type": "FUNCTION", "size": 924, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.2", "2.5.5", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"440": {"type": "MIPS_26", "symbol": "fabsf", "scope": "LIBRARY"}, "668": {"type": "MIPS_26", "symbol": "__ieee754_sqrtf", "scope": "LIBRARY"}}}}, "9a5f0ef925c869e8e0c7ecb702ee2cb4fdfa0815": {"a0be97bc": {"type": "FUNCTION", "size": 920, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "200": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "228": {"type": "MIPS_26", "symbol": "fabsf", "scope": "LIBRARY"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "248": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "268": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "284": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "292": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "300": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "316": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "324": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "332": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "356": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "360": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "372": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "380": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "396": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "400": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "416": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "436": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "444": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "464": {"type": "MIPS_26", "symbol": "__ieee754_sqrtf", "scope": "LIBRARY"}, "504": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "512": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "532": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "540": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "596": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "604": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "624": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "632": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "692": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "700": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "708": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "716": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "724": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "732": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "740": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "748": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "756": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "772": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "776": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "788": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "796": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "812": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "816": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"})PS2SDB", 8192}, + std::string_view{R"PS2SDB(, "828": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "836": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "852": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "856": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "872": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "880": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "__ieee754_atan2f": {"d9ada6296295e7b958eb91501dcdde488fc266d2": {"2a6ed58a": {"type": "FUNCTION", "size": 484, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.3", "2.7.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "atanf", "scope": "LIBRARY"}, "284": {"type": "MIPS_26", "symbol": "fabsf", "scope": "LIBRARY"}, "292": {"type": "MIPS_26", "symbol": "atanf", "scope": "LIBRARY"}}}}, "1dd056887852dceead95174f9f059d7f7b30f7a8": {"2a6ed58a": {"type": "FUNCTION", "size": 480, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "atanf", "scope": "LIBRARY"}, "284": {"type": "MIPS_26", "symbol": "fabsf", "scope": "LIBRARY"}, "292": {"type": "MIPS_26", "symbol": "atanf", "scope": "LIBRARY"}}}}, "31d44a32c65281547128d60b3f6630adf031436f": {"d18056b4": {"type": "FUNCTION", "size": 744, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.5", "2.5.7", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"92": {"type": "MIPS_26", "symbol": "atanf", "scope": "LIBRARY"}, "436": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "444": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "560": {"type": "MIPS_26", "symbol": "fabsf", "scope": "LIBRARY"}, "568": {"type": "MIPS_26", "symbol": "atanf", "scope": "LIBRARY"}}}}, "69976aab3a927ec5b106e893f1dd2ccd9098914f": {"98ddded9": {"type": "FUNCTION", "size": 456, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "atanf", "scope": "LIBRARY"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "292": {"type": "MIPS_26", "symbol": "fabsf", "scope": "LIBRARY"}, "300": {"type": "MIPS_26", "symbol": "atanf", "scope": "LIBRARY"}, "340": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "344": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "356": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "360": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "380": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "384": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "396": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "400": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "__ieee754_powf": {"b726303730c27c0dd5d9f78b2eef4e3ac0bdf4b6": {"78bfcca0": {"type": "FUNCTION", "size": 2076, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"296": {"type": "MIPS_26", "symbol": "__ieee754_sqrtf", "scope": "LIBRARY"}, "304": {"type": "MIPS_26", "symbol": "fabsf", "scope": "LIBRARY"}, "516": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "524": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "548": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "556": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "820": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "828": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1216": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1224": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1232": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1240": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2008": {"type": "MIPS_26", "symbol": "scalbnf"}}}}, "668f52760d828e5c4129a882e0d2975047a14253": {"edd45914": {"type": "FUNCTION", "size": 2016, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.3", "2.5.0", "2.5.2", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"296": {"type": "MIPS_26", "symbol": "__ieee754_sqrtf", "scope": "LIBRARY"}, "304": {"type": "MIPS_26", "symbol": "fabsf", "scope": "LIBRARY"}, "516": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "524": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "548": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "556": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "812": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "820": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1196": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1204": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1212": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1220": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1952": {"type": "MIPS_26", "symbol": "scalbnf"}}}}, "d1e26c45a1533be47439307243c0773d6d9ca7cf": {"8bcf5139": {"type": "FUNCTION", "size": 2188, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.3", "2.1.4", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.3", "2.5.5", "2.5.7", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"372": {"type": "MIPS_26", "symbol": "__ieee754_sqrtf", "scope": "LIBRARY"}, "388": {"type": "MIPS_26", "symbol": "fabsf", "scope": "LIBRARY"}, "596": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "604": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "628": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "924": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "932": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1292": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1308": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1340": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1348": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2116": {"type": "MIPS_26", "symbol": "scalbnf"}}}}, "f68a6893bcc69d687b9c3c0746ddd1c5ff0be3cd": {"95b4a7b5": {"type": "FUNCTION", "size": 2180, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"372": {"type": "MIPS_26", "symbol": "__ieee754_sqrtf", "scope": "LIBRARY"}, "388": {"type": "MIPS_26", "symbol": "fabsf", "scope": "LIBRARY"}, "600": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "608": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "632": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "924": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "932": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1292": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1308": {"typ)PS2SDB", 8192}, + std::string_view{R"PS2SDB(e": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1340": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1348": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2112": {"type": "MIPS_26", "symbol": "scalbnf"}}}}, "47f27da300bc62b7c5c01ffe8ea8a3a8a4609570": {"1f2d6a36": {"type": "FUNCTION", "size": 2044, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "276": {"type": "MIPS_26", "symbol": "__ieee754_sqrtf", "scope": "LIBRARY"}, "284": {"type": "MIPS_26", "symbol": "fabsf", "scope": "LIBRARY"}, "328": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "332": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "496": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "512": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "528": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "536": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "544": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "552": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "556": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "560": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "568": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "576": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "584": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "588": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "592": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "596": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "612": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "620": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "628": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "640": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "700": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "708": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "728": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "732": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "820": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "832": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "840": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "864": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "868": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1028": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1032": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1036": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1044": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1060": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1064": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1076": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1080": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1088": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1096": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1128": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1136": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1156": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1160": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1180": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1184": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1204": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1208": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1228": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1232": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1308": {"type": "MIPS_26", "symbol": "scalbnf"}, "1344": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1348": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1384": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1392": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1472": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1484": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1520": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1528": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1560": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1568": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1572": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1580": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1592": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1600": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1608": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1620": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1672": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1676": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1700": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1704": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1732": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1736": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1748": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1756": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1768": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1776": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1844": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1852": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1880": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1888": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1904": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1912": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "__ieee754_sqrtf": {"d822741ffbab228f5426debdbd6d0ef595147ab2": {"00000000": {"type": "FUNCTION", "size": 212, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.3", "2.7.0", "2.7.1", "2.8.0", "3.0.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "e5d5b92a40dfa5da335fab35aab18b06bb865e93": {"00000000": {"type": "FUNCTION", "size": 204, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "7cefbde97b9ebada38a6e39b0e8eb053193dde86": {"00000000": {"type": "FUNCTION", "size": 312, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "f3d5b02)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ce268e674303523edd338e3686f93e50e": {"00000000": {"type": "FUNCTION", "size": 224, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.0", "2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "f3404a3459a86cf0c139c496bcd4a449fd261ef6": {"00000000": {"type": "FUNCTION", "size": 300, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}, "c0f3b19fe61ec86f3b21fe55f1bcb2d093905f77": {"71780ffb": {"type": "FUNCTION", "size": 220, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"164": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "99a729bd2d31b47457a5e3889ff9cb4654eb11e0": {"71780ffb": {"type": "FUNCTION", "size": 220, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"164": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "__kernel_cos": {"f55ea80ab0159dd6570694452126a1257b4eed3a": {"b5d72c5d": {"type": "FUNCTION", "size": 724, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"80": {"type": "MIPS_26", "symbol": "dptoli"}, "120": {"type": "MIPS_26", "symbol": "dpmul"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_26", "symbol": "dpmul"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "164": {"type": "MIPS_26", "symbol": "dpadd"}, "180": {"type": "MIPS_26", "symbol": "dpmul"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "200": {"type": "MIPS_26", "symbol": "dpadd"}, "216": {"type": "MIPS_26", "symbol": "dpmul"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "236": {"type": "MIPS_26", "symbol": "dpadd"}, "252": {"type": "MIPS_26", "symbol": "dpmul"}, "260": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "272": {"type": "MIPS_26", "symbol": "dpadd"}, "288": {"type": "MIPS_26", "symbol": "dpmul"}, "296": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "300": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "308": {"type": "MIPS_26", "symbol": "dpadd"}, "324": {"type": "MIPS_26", "symbol": "dpmul"}, "368": {"type": "MIPS_26", "symbol": "dpmul"}, "388": {"type": "MIPS_26", "symbol": "dpmul"}, "408": {"type": "MIPS_26", "symbol": "dpmul"}, "424": {"type": "MIPS_26", "symbol": "dpsub"}, "440": {"type": "MIPS_26", "symbol": "dpsub"}, "460": {"type": "MIPS_26", "symbol": "dpsub"}, "548": {"type": "MIPS_26", "symbol": "dpmul"}, "564": {"type": "MIPS_26", "symbol": "dpsub"}, "588": {"type": "MIPS_26", "symbol": "dpsub"}, "608": {"type": "MIPS_26", "symbol": "dpmul"}, "628": {"type": "MIPS_26", "symbol": "dpmul"}, "644": {"type": "MIPS_26", "symbol": "dpsub"}, "660": {"type": "MIPS_26", "symbol": "dpsub"}, "676": {"type": "MIPS_26", "symbol": "dpsub"}}}}, "154f7798eb5f612c95fa0ed12dcad5b58b986906": {"a91e9638": {"type": "FUNCTION", "size": 588, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.2", "2.4.3", "2.5.5", "2.5.7", "2.7.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"80": {"type": "MIPS_26", "symbol": "dptoli"}, "116": {"type": "MIPS_26", "symbol": "dpmul"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_26", "symbol": "dpmul"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "152": {"type": "MIPS_26", "symbol": "dpadd"}, "164": {"type": "MIPS_26", "symbol": "dpmul"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "180": {"type": "MIPS_26", "symbol": "dpadd"}, "192": {"type": "MIPS_26", "symbol": "dpmul"}, "200": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "208": {"type": "MIPS_26", "symbol": "dpadd"}, "220": {"type": "MIPS_26", "symbol": "dpmul"}, "228": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "236": {"type": "MIPS_26", "symbol": "dpadd"}, "248": {"type": "MIPS_26", "symbol": "dpmul"}, "256": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "264": {"type": "MIPS_26", "symbol": "dpadd"}, "276": {"type": "MIPS_26", "symbol": "dpmul"}, "316": {"type": "MIPS_26", "symbol": "dpmul"}, "332": {"type": "MIPS_26", "symbol": "dpmul"}, "348": {"type": "MIPS_26", "symbol": "dpmul"}, "360": {"type": "MIPS_26", "symbol": "dpsub"}, "372": {"type": "MIPS_26", "symbol": "dpsub"}, "440": {"type": "MIPS_26", "symbol": "dpmul"}, "452": {"type": "MIPS_26", "symbol": "dpsub"}, "472": {"type": "MIPS_26", "symbol": "dpsub"}, "488": {"type": "MIPS_26", "symbol": "dpmul"}, "504": {"type": "MIPS_26", "symbol": "dpmul"}, "516": {"type": "MIPS_26", "symbol": "dpsub"}, "528": {"type": "MIPS_26", "symbol": "dpsub"}, "540": {"type": "MIPS_26", "symbol": "dpsub"}}}}, "d1aaf2e9fc81d05e6d805ff4edca36a4313a7abc": {"240d9c5d": {"type": "FUNCTION", "size": 712, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"80": {"type": "MIPS_26", "symbol": "dptoli"}, "112": {"type": "MIPS_26", "symbol": "dpmul"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_26", "symbol": "dpmul"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "156": {"type": "MIPS_26", "symbol": "dpadd"}, "172": {"type": "MIPS_26", "symbol": "dpmul"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "192": {"type": "MIPS_26", "symbol": "dpadd"}, "208": {"type": "MIPS_26", "symbol": "dpmul"}, "216": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "228": {"type": "MIPS_26", "symbol": "dpadd"}, "244": {"type": "MIPS_26", "symbol": "dpmul"}, "252": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "264": {"type": "MIPS_26", "symbol": "dpadd"}, "280": {"type": "MIPS_26", "symbol": "dpmul"}, "288": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "292": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "300": {"type": "MIPS_26", "symbol": "dpadd"}, "316": {"type": "MIPS_26", "symbol": "dpmul"}, "360": {"type": "MIPS_26", "symbol": "dpmul"}, "38)PS2SDB", 8192}, + std::string_view{R"PS2SDB(0": {"type": "MIPS_26", "symbol": "dpmul"}, "400": {"type": "MIPS_26", "symbol": "dpmul"}, "416": {"type": "MIPS_26", "symbol": "dpsub"}, "432": {"type": "MIPS_26", "symbol": "dpsub"}, "452": {"type": "MIPS_26", "symbol": "dpsub"}, "580": {"type": "MIPS_26", "symbol": "dpmul"}, "596": {"type": "MIPS_26", "symbol": "dpsub"}, "620": {"type": "MIPS_26", "symbol": "dpsub"}, "640": {"type": "MIPS_26", "symbol": "dpmul"}, "660": {"type": "MIPS_26", "symbol": "dpmul"}, "676": {"type": "MIPS_26", "symbol": "dpsub"}, "692": {"type": "MIPS_26", "symbol": "dpsub"}}}}}, "__kernel_rem_pio2": {"c17d36e43a4a2cab91843cf88755437ebc16fc76": {"efa9b46d": {"type": "FUNCTION", "size": 2892, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "200": {"type": "MIPS_26", "symbol": "litodp"}, "328": {"type": "MIPS_26", "symbol": "dpmul"}, "344": {"type": "MIPS_26", "symbol": "dpadd"}, "436": {"type": "MIPS_26", "symbol": "dpmul"}, "448": {"type": "MIPS_26", "symbol": "dptoli"}, "456": {"type": "MIPS_26", "symbol": "litodp"}, "480": {"type": "MIPS_26", "symbol": "dpmul"}, "496": {"type": "MIPS_26", "symbol": "dpsub"}, "508": {"type": "MIPS_26", "symbol": "dptoli"}, "532": {"type": "MIPS_26", "symbol": "dpadd"}, "556": {"type": "MIPS_26", "symbol": "scalbn"}, "580": {"type": "MIPS_26", "symbol": "dpmul"}, "592": {"type": "MIPS_26", "symbol": "floor", "scope": "LIBRARY"}, "612": {"type": "MIPS_26", "symbol": "dpmul"}, "628": {"type": "MIPS_26", "symbol": "dpsub"}, "644": {"type": "MIPS_26", "symbol": "dptoli"}, "656": {"type": "MIPS_26", "symbol": "litodp"}, "672": {"type": "MIPS_26", "symbol": "dpsub"}, "804": {"type": "MIPS_26", "symbol": "dpcmp"}, "1032": {"type": "MIPS_26", "symbol": "dpsub"}, "1056": {"type": "MIPS_26", "symbol": "scalbn"}, "1072": {"type": "MIPS_26", "symbol": "dpsub"}, "1092": {"type": "MIPS_26", "symbol": "dpcmp"}, "1324": {"type": "MIPS_26", "symbol": "litodp"}, "1384": {"type": "MIPS_26", "symbol": "dpmul"}, "1400": {"type": "MIPS_26", "symbol": "dpadd"}, "1464": {"type": "MIPS_26", "symbol": "dpcmp"}, "1572": {"type": "MIPS_26", "symbol": "scalbn"}, "1592": {"type": "MIPS_26", "symbol": "dpcmp"}, "1624": {"type": "MIPS_26", "symbol": "dpmul"}, "1636": {"type": "MIPS_26", "symbol": "dptoli"}, "1644": {"type": "MIPS_26", "symbol": "litodp"}, "1668": {"type": "MIPS_26", "symbol": "dpmul"}, "1684": {"type": "MIPS_26", "symbol": "dpsub"}, "1696": {"type": "MIPS_26", "symbol": "dptoli"}, "1740": {"type": "MIPS_26", "symbol": "dptoli"}, "1764": {"type": "MIPS_26", "symbol": "scalbn"}, "1812": {"type": "MIPS_26", "symbol": "litodp"}, "1828": {"type": "MIPS_26", "symbol": "dpmul"}, "1852": {"type": "MIPS_26", "symbol": "dpmul"}, "1924": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1932": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1964": {"type": "MIPS_26", "symbol": "dpmul"}, "1980": {"type": "MIPS_26", "symbol": "dpadd"}, "2164": {"type": "MIPS_26", "symbol": "dpadd"}, "2208": {"type": "MIPS_26", "symbol": "dpsub"}, "2268": {"type": "MIPS_26", "symbol": "dpadd"}, "2312": {"type": "MIPS_26", "symbol": "dpsub"}, "2336": {"type": "MIPS_26", "symbol": "dpsub"}, "2380": {"type": "MIPS_26", "symbol": "dpadd"}, "2420": {"type": "MIPS_26", "symbol": "dpsub"}, "2488": {"type": "MIPS_26", "symbol": "dpadd"}, "2508": {"type": "MIPS_26", "symbol": "dpsub"}, "2524": {"type": "MIPS_26", "symbol": "dpadd"}, "2592": {"type": "MIPS_26", "symbol": "dpadd"}, "2612": {"type": "MIPS_26", "symbol": "dpsub"}, "2628": {"type": "MIPS_26", "symbol": "dpadd"}, "2700": {"type": "MIPS_26", "symbol": "dpadd"}, "2772": {"type": "MIPS_26", "symbol": "dpsub"}, "2796": {"type": "MIPS_26", "symbol": "dpsub"}, "2820": {"type": "MIPS_26", "symbol": "dpsub"}}}}, "c04fce1b245bb93c4dd7f68adf4f22dc6b9f0f51": {"44f08535": {"type": "FUNCTION", "size": 2920, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.2", "2.4.3", "2.5.5", "2.5.7", "2.7.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "232": {"type": "MIPS_26", "symbol": "litodp"}, "392": {"type": "MIPS_26", "symbol": "dpmul"}, "404": {"type": "MIPS_26", "symbol": "dpadd"}, "532": {"type": "MIPS_26", "symbol": "dpmul"}, "544": {"type": "MIPS_26", "symbol": "dptoli"}, "552": {"type": "MIPS_26", "symbol": "litodp"}, "572": {"type": "MIPS_26", "symbol": "dpmul"}, "584": {"type": "MIPS_26", "symbol": "dpsub"}, "592": {"type": "MIPS_26", "symbol": "dptoli"}, "612": {"type": "MIPS_26", "symbol": "dpadd"}, "636": {"type": "MIPS_26", "symbol": "scalbn"}, "656": {"type": "MIPS_26", "symbol": "dpmul"}, "664": {"type": "MIPS_26", "symbol": "floor", "scope": "LIBRARY"}, "680": {"type": "MIPS_26", "symbol": "dpmul"}, "692": {"type": "MIPS_26", "symbol": "dpsub"}, "704": {"type": "MIPS_26", "symbol": "dptoli"}, "716": {"type": "MIPS_26", "symbol": "litodp"}, "728": {"type": "MIPS_26", "symbol": "dpsub"}, "868": {"type": "MIPS_26", "symbol": "dpcmp"}, "1088": {"type": "MIPS_26", "symbol": "dpsub"}, "1108": {"type": "MIPS_26", "symbol": "scalbn"}, "1120": {"type": "MIPS_26", "symbol": "dpsub"}, "1136": {"type": "MIPS_26", "symbol": "dpcmp"}, "1372": {"type": "MIPS_26", "symbol": "litodp"}, "1432": {"type": "MIPS_26", "symbol": "dpmul"}, "1444": {"type": "MIPS_26", "symbol": "dpadd"}, "1524": {"type": "MIPS_26", "symbol": "dpcmp"}, "1636": {"type": "MIPS_26", "symbol": "scalbn"}, "1652": {"type": "MIPS_26", "symbol": "dpcmp"}, "1692": {"type": "MIPS_26", "symbol": "dpmul"}, "1700": {"type": "MIPS_26", "symbol": "dptoli"}, "1708": {"type": "MIPS_26", "symbol": "litodp"}, "1736": {"type": "MIPS_26", "symbol": "dpmul"}, "1748": {"type": "MIPS_26", "symbol": "dpsub"}, "1756": {"type": "MIPS_26", "symbol": "dptoli"}, "1804": {"type": "MIPS_26", "symbol": "dptoli"}, "1836": {"type": "MIPS_26", "symbol": "scalbn"}, "1880": {"type": "MIPS_26", "symbol": "litodp"}, "1892": {"type": "MIPS_26", "symbol": "dpmul"}, "1912": {"type": "MIPS_26", "symbol": "dpmul"}, "1984": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2000": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2028": {"type": "MIPS_26", "symbol": "dpmul"}, "2040": {"type": "MIPS_26", "symbol": "dpadd"}, "2200": {"type": "MIPS_26", "symbol": "dpadd"}, "2240": {"type": "MIPS_26", "symbol": "dpsub"}, "2296": {"type": "MIPS_26", "symbol": "dpadd"}, "2348": {"type": "MIPS_26", "symbol": "dpsub"}, "2368": {"type": "MIPS_26", "symbol": "dpsub"}, "2412": {"type": "MIPS_26", "symbol": "dpadd"}, "2460": {"type": "MIPS_26", "symbol": "dpsub"}, "2532": {"type": "MIPS_26", "symbol": "dpadd"}, "2548": {"type": "MIPS_26", "symbol": "dpsub"}, "2560": {"type": "MIPS_26", "symbol": "dpadd"}, "2636": {"type": "MIPS_26", "symbol": "dpadd"}, "2652": {"type": "MIPS_26", "symbol": "dpsub"}, "2664": {"type": "MIPS_26", "symbol": "dpadd"}, "2736": {"type": "MIPS_26", "symbol": "dpadd"}, "2812": {"type": "MIPS_26", "symbol": "dpsub"}, "2832": {"type": "MIPS_26", "symbol": "dpsub"}, "2852": {"type": "MIPS_26", "symbol": "dpsub"}}}}, "c63699cbfd2d18e43f4453015582330d01143735": {"e9270a28": {"type": "FUNCTION", "size": 2852, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "192": {"type": "MIPS_26", "symbol": "litodp"}, "320": {"type": "MIPS_26", "symbol": "dpmul"}, "336": {"type": "MIPS_26", "symbol)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": "dpadd"}, "436": {"type": "MIPS_26", "symbol": "dpmul"}, "448": {"type": "MIPS_26", "symbol": "dptoli"}, "456": {"type": "MIPS_26", "symbol": "litodp"}, "480": {"type": "MIPS_26", "symbol": "dpmul"}, "496": {"type": "MIPS_26", "symbol": "dpsub"}, "508": {"type": "MIPS_26", "symbol": "dptoli"}, "532": {"type": "MIPS_26", "symbol": "dpadd"}, "560": {"type": "MIPS_26", "symbol": "scalbn"}, "584": {"type": "MIPS_26", "symbol": "dpmul"}, "596": {"type": "MIPS_26", "symbol": "floor", "scope": "LIBRARY"}, "616": {"type": "MIPS_26", "symbol": "dpmul"}, "632": {"type": "MIPS_26", "symbol": "dpsub"}, "648": {"type": "MIPS_26", "symbol": "dptoli"}, "660": {"type": "MIPS_26", "symbol": "litodp"}, "676": {"type": "MIPS_26", "symbol": "dpsub"}, "912": {"type": "MIPS_26", "symbol": "dpsub"}, "936": {"type": "MIPS_26", "symbol": "scalbn"}, "952": {"type": "MIPS_26", "symbol": "dpsub"}, "972": {"type": "MIPS_26", "symbol": "dpcmp"}, "1224": {"type": "MIPS_26", "symbol": "litodp"}, "1284": {"type": "MIPS_26", "symbol": "dpmul"}, "1300": {"type": "MIPS_26", "symbol": "dpadd"}, "1372": {"type": "MIPS_26", "symbol": "dpcmp"}, "1468": {"type": "MIPS_26", "symbol": "scalbn"}, "1512": {"type": "MIPS_26", "symbol": "litodp"}, "1528": {"type": "MIPS_26", "symbol": "dpmul"}, "1552": {"type": "MIPS_26", "symbol": "dpmul"}, "1616": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1624": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1644": {"type": "MIPS_26", "symbol": "dpmul"}, "1660": {"type": "MIPS_26", "symbol": "dpadd"}, "1840": {"type": "MIPS_26", "symbol": "dpadd"}, "1884": {"type": "MIPS_26", "symbol": "dpsub"}, "1944": {"type": "MIPS_26", "symbol": "dpadd"}, "1988": {"type": "MIPS_26", "symbol": "dpsub"}, "2012": {"type": "MIPS_26", "symbol": "dpsub"}, "2052": {"type": "MIPS_26", "symbol": "dpadd"}, "2100": {"type": "MIPS_26", "symbol": "dpsub"}, "2168": {"type": "MIPS_26", "symbol": "dpadd"}, "2188": {"type": "MIPS_26", "symbol": "dpsub"}, "2204": {"type": "MIPS_26", "symbol": "dpadd"}, "2264": {"type": "MIPS_26", "symbol": "dpadd"}, "2284": {"type": "MIPS_26", "symbol": "dpsub"}, "2300": {"type": "MIPS_26", "symbol": "dpadd"}, "2368": {"type": "MIPS_26", "symbol": "dpadd"}, "2444": {"type": "MIPS_26", "symbol": "dpsub"}, "2468": {"type": "MIPS_26", "symbol": "dpsub"}, "2492": {"type": "MIPS_26", "symbol": "dpsub"}, "2540": {"type": "MIPS_26", "symbol": "scalbn"}, "2560": {"type": "MIPS_26", "symbol": "dpcmp"}, "2592": {"type": "MIPS_26", "symbol": "dpmul"}, "2604": {"type": "MIPS_26", "symbol": "dptoli"}, "2612": {"type": "MIPS_26", "symbol": "litodp"}, "2632": {"type": "MIPS_26", "symbol": "dpmul"}, "2648": {"type": "MIPS_26", "symbol": "dpsub"}, "2660": {"type": "MIPS_26", "symbol": "dptoli"}, "2680": {"type": "MIPS_26", "symbol": "dptoli"}, "2808": {"type": "MIPS_26", "symbol": "dpcmp"}}}}, "98ee19e9d8dccb9c141bb5efa5e5f9078cde4159": {"eefda06a": {"type": "FUNCTION", "size": 2680, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "200": {"type": "MIPS_26", "symbol": "litodp"}, "324": {"type": "MIPS_26", "symbol": "dpmul"}, "336": {"type": "MIPS_26", "symbol": "dpadd"}, "444": {"type": "MIPS_26", "symbol": "dpmul"}, "452": {"type": "MIPS_26", "symbol": "dptoli"}, "460": {"type": "MIPS_26", "symbol": "litodp"}, "480": {"type": "MIPS_26", "symbol": "dpmul"}, "492": {"type": "MIPS_26", "symbol": "dpsub"}, "500": {"type": "MIPS_26", "symbol": "dptoli"}, "520": {"type": "MIPS_26", "symbol": "dpadd"}, "544": {"type": "MIPS_26", "symbol": "scalbn"}, "564": {"type": "MIPS_26", "symbol": "dpmul"}, "572": {"type": "MIPS_26", "symbol": "floor", "scope": "LIBRARY"}, "588": {"type": "MIPS_26", "symbol": "dpmul"}, "600": {"type": "MIPS_26", "symbol": "dpsub"}, "612": {"type": "MIPS_26", "symbol": "dptoli"}, "624": {"type": "MIPS_26", "symbol": "litodp"}, "636": {"type": "MIPS_26", "symbol": "dpsub"}, "764": {"type": "MIPS_26", "symbol": "dpcmp"}, "980": {"type": "MIPS_26", "symbol": "dpsub"}, "1000": {"type": "MIPS_26", "symbol": "scalbn"}, "1012": {"type": "MIPS_26", "symbol": "dpsub"}, "1028": {"type": "MIPS_26", "symbol": "dpcmp"}, "1272": {"type": "MIPS_26", "symbol": "litodp"}, "1328": {"type": "MIPS_26", "symbol": "dpmul"}, "1340": {"type": "MIPS_26", "symbol": "dpadd"}, "1388": {"type": "MIPS_26", "symbol": "dpcmp"}, "1476": {"type": "MIPS_26", "symbol": "scalbn"}, "1500": {"type": "MIPS_26", "symbol": "dpcmp"}, "1532": {"type": "MIPS_26", "symbol": "dpmul"}, "1544": {"type": "MIPS_26", "symbol": "dptoli"}, "1552": {"type": "MIPS_26", "symbol": "litodp"}, "1580": {"type": "MIPS_26", "symbol": "dpmul"}, "1592": {"type": "MIPS_26", "symbol": "dpsub"}, "1600": {"type": "MIPS_26", "symbol": "dptoli"}, "1644": {"type": "MIPS_26", "symbol": "dptoli"}, "1668": {"type": "MIPS_26", "symbol": "scalbn"}, "1712": {"type": "MIPS_26", "symbol": "litodp"}, "1724": {"type": "MIPS_26", "symbol": "dpmul"}, "1744": {"type": "MIPS_26", "symbol": "dpmul"}, "1824": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1828": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1852": {"type": "MIPS_26", "symbol": "dpmul"}, "1864": {"type": "MIPS_26", "symbol": "dpadd"}, "2012": {"type": "MIPS_26", "symbol": "dpadd"}, "2048": {"type": "MIPS_26", "symbol": "dpsub"}, "2108": {"type": "MIPS_26", "symbol": "dpadd"}, "2144": {"type": "MIPS_26", "symbol": "dpsub"}, "2164": {"type": "MIPS_26", "symbol": "dpsub"}, "2204": {"type": "MIPS_26", "symbol": "dpadd"}, "2240": {"type": "MIPS_26", "symbol": "dpsub"}, "2300": {"type": "MIPS_26", "symbol": "dpadd"}, "2316": {"type": "MIPS_26", "symbol": "dpsub"}, "2328": {"type": "MIPS_26", "symbol": "dpadd"}, "2404": {"type": "MIPS_26", "symbol": "dpadd"}, "2420": {"type": "MIPS_26", "symbol": "dpsub"}, "2432": {"type": "MIPS_26", "symbol": "dpadd"}, "2512": {"type": "MIPS_26", "symbol": "dpadd"}, "2572": {"type": "MIPS_26", "symbol": "dpsub"}, "2592": {"type": "MIPS_26", "symbol": "dpsub"}, "2612": {"type": "MIPS_26", "symbol": "dpsub"}}}}}, "__kernel_sin": {"7639e74264ead5e21af2a554c1407223e5b89024": {"9a7ba38a": {"type": "FUNCTION", "size": 568, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"80": {"type": "MIPS_26", "symbol": "dptoli"}, "120": {"type": "MIPS_26", "symbol": "dpmul"}, "140": {"type": "MIPS_26", "symbol": "dpmul"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "164": {"type": "MIPS_26", "symbol": "dpmul"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_26", "symbol": "dpadd"}, "200": {"type": "MIPS_26", "symbol": "dpmul"}, "208": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "220": {"type": "MIPS_26", "symbol": "dpadd"}, "236": {"type": "MIPS_26", "symbol": "dpmul"}, "244": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "256": {"type": "MIPS_26", "symbol": "dpadd"}, "272": {"type": "MIPS_26", "symbol": "dpmul"}, "280": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "292": {"type": "MIPS_26", "symbol": "dpadd"}, "332": {"type": "MIPS_26", "symbol": "dpmul"}, "340": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "344": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "352": {"type": "MIPS_26", "symbol": "dpadd"}, "368": {"type": "MIPS_26", "symbol":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "dpmul"}, "384": {"type": "MIPS_26", "symbol": "dpadd"}, "400": {"type": "MIPS_26", "symbol": "dpmul"}, "420": {"type": "MIPS_26", "symbol": "dpmul"}, "436": {"type": "MIPS_26", "symbol": "dpsub"}, "452": {"type": "MIPS_26", "symbol": "dpmul"}, "468": {"type": "MIPS_26", "symbol": "dpsub"}, "480": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "484": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "492": {"type": "MIPS_26", "symbol": "dpmul"}, "508": {"type": "MIPS_26", "symbol": "dpsub"}, "524": {"type": "MIPS_26", "symbol": "dpsub"}}}}, "d34324cb0d04e01848dad8528532f0d3f2c8c05b": {"1154efcc": {"type": "FUNCTION", "size": 468, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.2", "2.4.3", "2.5.5", "2.5.7", "2.7.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"80": {"type": "MIPS_26", "symbol": "dptoli"}, "108": {"type": "MIPS_26", "symbol": "dpmul"}, "124": {"type": "MIPS_26", "symbol": "dpmul"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_26", "symbol": "dpmul"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "160": {"type": "MIPS_26", "symbol": "dpadd"}, "172": {"type": "MIPS_26", "symbol": "dpmul"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "188": {"type": "MIPS_26", "symbol": "dpadd"}, "200": {"type": "MIPS_26", "symbol": "dpmul"}, "208": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "216": {"type": "MIPS_26", "symbol": "dpadd"}, "228": {"type": "MIPS_26", "symbol": "dpmul"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "244": {"type": "MIPS_26", "symbol": "dpadd"}, "264": {"type": "MIPS_26", "symbol": "dpmul"}, "272": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "280": {"type": "MIPS_26", "symbol": "dpadd"}, "292": {"type": "MIPS_26", "symbol": "dpmul"}, "304": {"type": "MIPS_26", "symbol": "dpadd"}, "328": {"type": "MIPS_26", "symbol": "dpmul"}, "344": {"type": "MIPS_26", "symbol": "dpmul"}, "356": {"type": "MIPS_26", "symbol": "dpsub"}, "368": {"type": "MIPS_26", "symbol": "dpmul"}, "380": {"type": "MIPS_26", "symbol": "dpsub"}, "388": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "392": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "400": {"type": "MIPS_26", "symbol": "dpmul"}, "412": {"type": "MIPS_26", "symbol": "dpsub"}, "424": {"type": "MIPS_26", "symbol": "dpsub"}}}}, "a84d536624b6af6e861104ebdc25a8937894a9ff": {"1ceaf3a2": {"type": "FUNCTION", "size": 560, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"76": {"type": "MIPS_26", "symbol": "dptoli"}, "104": {"type": "MIPS_26", "symbol": "dpmul"}, "124": {"type": "MIPS_26", "symbol": "dpmul"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_26", "symbol": "dpmul"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "168": {"type": "MIPS_26", "symbol": "dpadd"}, "184": {"type": "MIPS_26", "symbol": "dpmul"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "204": {"type": "MIPS_26", "symbol": "dpadd"}, "220": {"type": "MIPS_26", "symbol": "dpmul"}, "228": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "240": {"type": "MIPS_26", "symbol": "dpadd"}, "256": {"type": "MIPS_26", "symbol": "dpmul"}, "264": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "276": {"type": "MIPS_26", "symbol": "dpadd"}, "304": {"type": "MIPS_26", "symbol": "dpmul"}, "312": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "324": {"type": "MIPS_26", "symbol": "dpadd"}, "340": {"type": "MIPS_26", "symbol": "dpmul"}, "356": {"type": "MIPS_26", "symbol": "dpadd"}, "420": {"type": "MIPS_26", "symbol": "dpmul"}, "440": {"type": "MIPS_26", "symbol": "dpmul"}, "456": {"type": "MIPS_26", "symbol": "dpsub"}, "472": {"type": "MIPS_26", "symbol": "dpmul"}, "488": {"type": "MIPS_26", "symbol": "dpsub"}, "496": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "500": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "512": {"type": "MIPS_26", "symbol": "dpmul"}, "528": {"type": "MIPS_26", "symbol": "dpsub"}, "544": {"type": "MIPS_26", "symbol": "dpsub"}}}}}, "__kernel_cosf": {"ae6edf263918de5c955b762877466eeea0fd1f01": {"00000000": {"type": "FUNCTION", "size": 368, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "bfd543ee3a3d6d285066448f519c9fe18095124d": {"00000000": {"type": "FUNCTION", "size": 336, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "2edf70deb887bdcdce8fd03b9243ddf1c4387b02": {"00000000": {"type": "FUNCTION", "size": 344, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "d10c1f727b0cbd54b4f6a2f2e00afb912b9ca7d4": {"d95e3046": {"type": "FUNCTION", "size": 388, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"64": {"type": "MIPS_26", "symbol": "fptosi"}}}}, "83dfcdbcb5f6ecdfc2768e237118b55796302423": {"00000000": {"type": "FUNCTION", "size": 328, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.0", "2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "d5d8108539d610feed24d21db876577bdfca2d1f": {"c078638c": {"type": "FUNCTION", "size": 332, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "12)PS2SDB", 8192}, + std::string_view{R"PS2SDB(8": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "212": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "264": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "292": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "fb9f578a14214f73425a7c782453f4879daba55c": {"c078638c": {"type": "FUNCTION", "size": 332, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "212": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "264": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "292": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "__kernel_sinf": {"d74639e17c7cfe39d3184d23e72bbf0bcd35204d": {"00000000": {"type": "FUNCTION", "size": 292, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "3f46ad1ee4308479b2d2cb628826270a23187e1e": {"00000000": {"type": "FUNCTION", "size": 260, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "3241a63a98117c6d0315035cef1a4b74d58446bb": {"00000000": {"type": "FUNCTION", "size": 260, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "b3771bbb2cca7c2e8edee8a538966a3bf676d53e": {"da580b39": {"type": "FUNCTION", "size": 308, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "fptosi"}}}}, "788291a79b0106080e5040e3a591df51b0a7f9e6": {"00000000": {"type": "FUNCTION", "size": 248, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.0", "2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "1013be36e6b8840d8e792d5689c2236911d67beb": {"191f9e80": {"type": "FUNCTION", "size": 244, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "b896b096a0c27c05ae0a11158272917d0998fa97": {"191f9e80": {"type": "FUNCTION", "size": 244, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "copysign": {"908edc6aa3cfd0e58485e44842992651e4b9af2a": {"00000000": {"type": "FUNCTION", "size": 68, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "05063ca07881848348f06bf69cb7403b5ff248c2": {"00000000": {"type": "FUNCTION", "size": 68, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.2", "2.4.3", "2.5.5", "2.7)PS2SDB", 8192}, + std::string_view{R"PS2SDB(.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "cos": {"bc147c583a28cd31695b5355c80fc6e6c949e9f2": {"1c977d8b": {"type": "FUNCTION", "size": 292, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "__kernel_cos", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "dpsub"}, "112": {"type": "MIPS_26", "symbol": "__ieee754_rem_pio2", "scope": "LIBRARY"}, "184": {"type": "MIPS_26", "symbol": "__kernel_cos", "scope": "LIBRARY"}, "208": {"type": "MIPS_26", "symbol": "__kernel_sin", "scope": "LIBRARY"}, "232": {"type": "MIPS_26", "symbol": "__kernel_cos", "scope": "LIBRARY"}, "248": {"type": "MIPS_26", "symbol": "dpsub"}, "272": {"type": "MIPS_26", "symbol": "__kernel_sin", "scope": "LIBRARY"}}}}, "6562427fff5e5d66f614405c6b98e708ce1fd1f2": {"8d77fdbc": {"type": "FUNCTION", "size": 264, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.1", "1.5.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.4", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.2", "2.4.3", "2.5.5", "2.5.7", "2.7.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "__kernel_cos", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "dpsub"}, "100": {"type": "MIPS_26", "symbol": "__ieee754_rem_pio2", "scope": "LIBRARY"}, "164": {"type": "MIPS_26", "symbol": "__kernel_cos", "scope": "LIBRARY"}, "188": {"type": "MIPS_26", "symbol": "__kernel_sin", "scope": "LIBRARY"}, "200": {"type": "MIPS_26", "symbol": "dpsub"}, "216": {"type": "MIPS_26", "symbol": "__kernel_cos", "scope": "LIBRARY"}, "228": {"type": "MIPS_26", "symbol": "dpsub"}, "244": {"type": "MIPS_26", "symbol": "__kernel_sin", "scope": "LIBRARY"}}}}, "07c981570004391bdfe28fbcef0d53568b817f54": {"0e9a38cf": {"type": "FUNCTION", "size": 248, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "__kernel_cos", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "__ieee754_rem_pio2", "scope": "LIBRARY"}, "140": {"type": "MIPS_26", "symbol": "__kernel_sin", "scope": "LIBRARY"}, "192": {"type": "MIPS_26", "symbol": "__kernel_cos", "scope": "LIBRARY"}, "208": {"type": "MIPS_26", "symbol": "dpsub"}, "232": {"type": "MIPS_26", "symbol": "__kernel_sin", "scope": "LIBRARY"}}}}}, "fabs": {"f2c0cab3c4e3c74a9f8a05188005e179668ecff1": {"00000000": {"type": "FUNCTION", "size": 52, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "94a6d0462460fb4b867899c61bead68fa74913d7": {"00000000": {"type": "FUNCTION", "size": 52, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "d34d687b6f2dc0b73240d60b413f432f185cf4df": {"00000000": {"type": "FUNCTION", "size": 48, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "8916b73c519a1857924fc9f648b5491b253aa09b": {"00000000": {"type": "FUNCTION", "size": 36, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "5ae9429e8dc625e1a66c96c7dd733f092af72d63": {"00000000": {"type": "FUNCTION", "size": 40, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "floor": {"bb5428b3db7b4426015c47d9ac3f14b617edee9e": {"99518dae": {"type": "FUNCTION", "size": 532, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"76": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_26", "symbol": "dpadd"}, "100": {"type": "MIPS_26", "symbol": "dpcmp"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "204": {"type": "MIPS_26", "symbol": "dpadd"}, "220": {"type": "MIPS_26", "symbol": "dpcmp"}, "300": {"type": "MIPS_26", "symbol": "dpadd"}, "344": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "348": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "352": {"type": "MIPS_26", "symbol": "dpadd"}, "368": {"type": "MIPS_26", "symbol": "dpcmp"}}}}, "a4e950e01dd5db06c8f430bc213b14f323b724b8": {"d7cabf60": {"type": "FUNCTION", "size": 472, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.2", "2.4.3", "2.5.5", "2.5.7", "2.7.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"80": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_26", "symbol": "dpadd"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_26", "symbol": "dpcmp"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "196": {"type": "MIPS_26", "symbol": "dpadd"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "208": {"type": "MIPS_26", "symbol": "dpcmp"}, "280": {"type": "MIPS_26", "symbol": "dpadd"}, "316": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "324": {"type": "MIPS_26", "symbol": "dpadd"}, "328": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "336": {"type": "MIPS_26", "symbol": "dpcmp"}}}}, "b9ecc55364d9d6b5e10eac20348336fe0e3e3b78": {"80abbd8f": {"type": "FUNCTION", "size": 532, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.0", "2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"76": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_26", "symbol": "dpadd"}, "100": {"type": "MIPS_26", "symbol": "dpcmp"}, "272": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "280": {"type": "MIPS_26", "symbol": "dpadd"}, "296": {"type": "MIPS_26", "symbol": "dpcmp"}, "372": {"type": "MIPS_26", "symbol": "dpadd"}, "424": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "428": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "432": {"type": "MIPS_26", "symbol": "dpadd"}, "448": {"type": "MIPS_26", "symbol": "dpcmp"}}}}}, "scalbn": {"7bbcff44644fdcd8ea2b0903277effc647ff99b1": {"1935ff3c": {"type": "FUNCTION", "size": 484, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"92": {"type": "MIPS_26", "symbol": "dpmul"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"},)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "144": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_26", "symbol": "dpmul"}, "188": {"type": "MIPS_26", "symbol": "dpadd"}, "216": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "324": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "328": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "336": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "356": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "364": {"type": "MIPS_26", "symbol": "copysign"}, "380": {"type": "MIPS_26", "symbol": "dpmul"}, "456": {"type": "MIPS_26", "symbol": "dpmul"}}}}, "f4adffd4b2b2da776593bce76a0db0b4e3be1d5c": {"95eda610": {"type": "FUNCTION", "size": 436, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.2", "2.4.3", "2.5.5", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"88": {"type": "MIPS_26", "symbol": "dpmul"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "156": {"type": "MIPS_26", "symbol": "dpadd"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "192": {"type": "MIPS_26", "symbol": "copysign"}, "292": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "300": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "304": {"type": "MIPS_26", "symbol": "copysign"}, "324": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "332": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "336": {"type": "MIPS_26", "symbol": "copysign"}, "408": {"type": "MIPS_26", "symbol": "dpmul"}}}}}, "atanf": {"0c2de1f71cd8c5152e365246c50b15a251edffdc": {"97d5dec7": {"type": "FUNCTION", "size": 668, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.3", "2.7.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "192": {"type": "MIPS_26", "symbol": "fabsf", "scope": "LIBRARY"}, "432": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "436": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "600": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "608": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "612": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "620": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "fda121362387ca7279a748df71ef883ccdb2b032": {"b34a8887": {"type": "FUNCTION", "size": 652, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_26", "symbol": "fabsf", "scope": "LIBRARY"}, "416": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "420": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "584": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "592": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "596": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "604": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "cdec2e2cfc7da72bc85a8923ba121ef1bda7a12d": {"db59cb2b": {"type": "FUNCTION", "size": 680, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"84": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "216": {"type": "MIPS_26", "symbol": "fabsf", "scope": "LIBRARY"}, "440": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "444": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "448": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "600": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "608": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "616": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "628": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "8cfd90d2800960d7959b5d1816f1ecd70dee8db8": {"6c38875f": {"type": "FUNCTION", "size": 720, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "220": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "256": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "272": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "296": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "300": {"type": "MIPS_LO16", "symbol": ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(", "original": ".rodata"}, "312": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "336": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "352": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "360": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "376": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "380": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "428": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "436": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "452": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "456": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "496": {"type": "MIPS_26", "symbol": "fabsf", "scope": "LIBRARY"}, "540": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "544": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "552": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "564": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "572": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "608": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "644": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "648": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "656": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "664": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "672": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "692": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "56300f59bd98aaa1ff073a0aa891ba294feb9674": {"6c38875f": {"type": "FUNCTION", "size": 720, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "220": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "256": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "272": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "296": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "300": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "312": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "336": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "352": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "360": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "376": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "380": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "428": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "436": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "452": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "456": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "496": {"type": "MIPS_26", "symbol": "fabsf", "scope": "LIBRARY"}, "540": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "544": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "552": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "564": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "572": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "608": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "644": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "648": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "656": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "664": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "672": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "692": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "cosf": {"4fc6accec82e13012257c7593d38331777a9b547": {"7ed35552": {"type": "FUNCTION", "size": 212, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "__kernel_cosf", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "__ieee754_rem_pio2f", "scope": "LIBRARY"}, "136": {"type": "MIPS_26", "symbol": "__kernel_cosf", "scope": "LIBRARY"}, "160": {"type": "MIPS_26", "symbol": "__kernel_sinf", "scope": "LIBRARY"}, "176": {"type": "MIPS_26", "symbol": "__kernel_cosf", "scope": "LIBRARY"}, "192": {"type": "MIPS_26", "symbol": "__kernel_sinf", "scope": "LIBRARY"}}}}, "4abe8df831f4db7d496ac5c2c54595fe9ce7b26a": {"0b2a547b": {"type": "FUNCTION", "size": 232, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "__kernel_cosf", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "__ieee754_rem_pio2f", "scope": "LIBRARY"}, "156": {"type": "MIPS_26", "symbol": "__kernel_cosf", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "__kernel_sinf", "scope": "LIBRARY"}, "196": {"type": "MIPS_26", "symbol": "__kernel_cosf", "scope": "LIBRARY"}, "212": {"type": "MIPS_26", "symbol": "__kernel_sinf", "scope": "LIBRARY"}}}}, "29db7260cc62e30d7d6a940185e2989a47f1aa6e": {"72a44841": {"type": "FUNCTION", "size": 180, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.0", "2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "__ieee754_rem_pio2f", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "__kernel_sinf", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "__kernel_cosf", "scope": "LIBRARY"}, "140": {"type": "MIPS_26", "symbol": "__kernel_cosf", "scope": "LIBRARY"}, "164": {"type": "MIPS_26", "symbol": "__kernel_sinf", "scope": "LIBRARY"}}}}, "7dae767d5d7e589912e347f324d58a68f4a2826f": {"8c074fbf": {"type": "FUNCTION", "size": 176, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4")PS2SDB", 8192}, + std::string_view{R"PS2SDB(, "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "__ieee754_rem_pio2f", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "__kernel_sinf", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "__kernel_cosf", "scope": "LIBRARY"}, "136": {"type": "MIPS_26", "symbol": "__kernel_cosf", "scope": "LIBRARY"}, "160": {"type": "MIPS_26", "symbol": "__kernel_sinf", "scope": "LIBRARY"}}}}, "9eb0e1cac8ddeab0d414a5cffdce871a491e24c1": {"8c074fbf": {"type": "FUNCTION", "size": 176, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "__ieee754_rem_pio2f", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "__kernel_sinf", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "__kernel_cosf", "scope": "LIBRARY"}, "136": {"type": "MIPS_26", "symbol": "__kernel_cosf", "scope": "LIBRARY"}, "160": {"type": "MIPS_26", "symbol": "__kernel_sinf", "scope": "LIBRARY"}}}}}, "sinf": {"bcc305695fb590f54a6d2edac287a986f6738edd": {"9560e61b": {"type": "FUNCTION", "size": 232, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "__kernel_sinf", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "__ieee754_rem_pio2f", "scope": "LIBRARY"}, "140": {"type": "MIPS_26", "symbol": "__kernel_sinf", "scope": "LIBRARY"}, "164": {"type": "MIPS_26", "symbol": "__kernel_cosf", "scope": "LIBRARY"}, "188": {"type": "MIPS_26", "symbol": "__kernel_sinf", "scope": "LIBRARY"}, "208": {"type": "MIPS_26", "symbol": "__kernel_cosf", "scope": "LIBRARY"}}}}, "9d9761eb28a47d4ed097427bc31aeb8884f58f37": {"98c15c0f": {"type": "FUNCTION", "size": 240, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "__kernel_sinf", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "__ieee754_rem_pio2f", "scope": "LIBRARY"}, "160": {"type": "MIPS_26", "symbol": "__kernel_sinf", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "__kernel_cosf", "scope": "LIBRARY"}, "200": {"type": "MIPS_26", "symbol": "__kernel_sinf", "scope": "LIBRARY"}, "216": {"type": "MIPS_26", "symbol": "__kernel_cosf", "scope": "LIBRARY"}}}}, "c69d88db30d24c62ace8ea543cdcc051bbd365be": {"991821b0": {"type": "FUNCTION", "size": 184, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "__kernel_sinf", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "__ieee754_rem_pio2f", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "__kernel_cosf", "scope": "LIBRARY"}, "148": {"type": "MIPS_26", "symbol": "__kernel_sinf", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "__kernel_cosf", "scope": "LIBRARY"}}}}, "2768444ba9fb7a8df251c08b6ef115eb366e8308": {"991821b0": {"type": "FUNCTION", "size": 184, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "__kernel_sinf", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "__ieee754_rem_pio2f", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "__kernel_cosf", "scope": "LIBRARY"}, "148": {"type": "MIPS_26", "symbol": "__kernel_sinf", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "__kernel_cosf", "scope": "LIBRARY"}}}}, "8a0fe65d1948e1c80cb3e4f93ed6245b85e10543": {"991821b0": {"type": "FUNCTION", "size": 184, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "__kernel_sinf", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "__ieee754_rem_pio2f", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "__kernel_cosf", "scope": "LIBRARY"}, "148": {"type": "MIPS_26", "symbol": "__kernel_sinf", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "__kernel_cosf", "scope": "LIBRARY"}}}}}, "log": {"c0a5a6b6b96e3534f1ce618782a40e20574c6678": {"ccc22b48": {"type": "FUNCTION", "size": 20, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "__ieee754_log", "scope": "LIBRARY"}}}}, "d0079a0a2ae6de469147dd9ed4f6e66fc85ffc16": {"27e46247": {"type": "FUNCTION", "size": 328, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.0.7", "2.3.0", "2.3.2", "2.4.2", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": "__fdlib_version"}, "32": {"type": "MIPS_26", "symbol": "__ieee754_log", "scope": "LIBRARY"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "60": {"type": "MIPS_26", "symbol": "isnan"}, "84": {"type": "MIPS_26", "symbol": "dpcmp"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "__infinity"}, "152": {"type": "MIPS_26", "symbol": "dpsub"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": "__infinity"}, "168": {"type": "MIPS_26", "symbol": "dpcmp"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "200": {"type": "MIPS_26", "symbol": "__errno"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "232": {"type": "MIPS_26", "symbol": "matherr", "scope": "LIBRARY"}, "248": {"type": "MIPS_26", "symbol": "__errno"}, "276": {"type": "MIPS_26", "symbol": "__errno"}}}}, "7a697f7f98710b872aea96319fb63ebd7d8e10f5": {"b473bd6a": {"type": "FUNCTION", "size": 332, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__ieee754_log", "scope": "LIBRARY"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": "__fdlib_version"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "60": {"type": "MIPS_26", "symbol": "isnan"}, "84": {"type": "MIPS_26", "symbol": "dpcmp"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": "__infinity"}, "156": {"type": "MIPS_26", "symbol": "dpsub"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": "__infinity"}, "172": {"type": "MIPS_26", "symbol": "dpcmp"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "204": {"type": "MIPS_26", "symbol": "__errno"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "236": {"type": "MIPS_26", "symbol": "matherr", "scope": "LIBRARY"}, "252": {"type": "MIPS_26", "symbol": "__errno"}, "280)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": {"type": "MIPS_26", "symbol": "__errno"}}}}}, "acosf": {"c0a5a6b6b96e3534f1ce618782a40e20574c6678": {"c9532699": {"type": "FUNCTION", "size": 20, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "__ieee754_acosf", "scope": "LIBRARY"}}}}, "c49d1283ce55f2893969caaf0224ed8368ca3952": {"e20b8213": {"type": "FUNCTION", "size": 252, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.3", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.5", "2.5.7", "2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "__ieee754_acosf", "scope": "LIBRARY"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": "__fdlib_version"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "48": {"type": "MIPS_26", "symbol": "isnanf"}, "64": {"type": "MIPS_26", "symbol": "fabsf", "scope": "LIBRARY"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_26", "symbol": "fptodp"}, "148": {"type": "MIPS_26", "symbol": "matherr", "scope": "LIBRARY"}, "164": {"type": "MIPS_26", "symbol": "__errno"}, "192": {"type": "MIPS_26", "symbol": "__errno"}, "208": {"type": "MIPS_26", "symbol": "dptofp"}}}}}, "asinf": {"c0a5a6b6b96e3534f1ce618782a40e20574c6678": {"62ab61a8": {"type": "FUNCTION", "size": 20, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "__ieee754_asinf", "scope": "LIBRARY"}}}}, "c49d1283ce55f2893969caaf0224ed8368ca3952": {"8a9c41f4": {"type": "FUNCTION", "size": 252, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.2", "2.5.5", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "__ieee754_asinf", "scope": "LIBRARY"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": "__fdlib_version"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "48": {"type": "MIPS_26", "symbol": "isnanf"}, "64": {"type": "MIPS_26", "symbol": "fabsf", "scope": "LIBRARY"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_26", "symbol": "fptodp"}, "148": {"type": "MIPS_26", "symbol": "matherr", "scope": "LIBRARY"}, "164": {"type": "MIPS_26", "symbol": "__errno"}, "192": {"type": "MIPS_26", "symbol": "__errno"}, "208": {"type": "MIPS_26", "symbol": "dptofp"}}}}}, "atan2f": {"c0a5a6b6b96e3534f1ce618782a40e20574c6678": {"07ffc7f4": {"type": "FUNCTION", "size": 20, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "__ieee754_atan2f", "scope": "LIBRARY"}}}}, "eefc2f55366ccc31b1443b7cfb5ee553624a5741": {"c1fb398c": {"type": "FUNCTION", "size": 296, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.5", "2.5.7", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__ieee754_atan2f", "scope": "LIBRARY"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": "__fdlib_version"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "56": {"type": "MIPS_26", "symbol": "isnanf"}, "72": {"type": "MIPS_26", "symbol": "isnanf"}, "124": {"type": "MIPS_26", "symbol": "fptodp"}, "136": {"type": "MIPS_26", "symbol": "fptodp"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "188": {"type": "MIPS_26", "symbol": "matherr", "scope": "LIBRARY"}, "204": {"type": "MIPS_26", "symbol": "__errno"}, "232": {"type": "MIPS_26", "symbol": "__errno"}, "248": {"type": "MIPS_26", "symbol": "dptofp"}}}}}, "logf": {"c0a5a6b6b96e3534f1ce618782a40e20574c6678": {"0e182069": {"type": "FUNCTION", "size": 20, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.3", "2.5.2", "2.5.4", "2.5.5", "2.7.1", "2.8.1", "3.0.1-1", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "__ieee754_logf", "scope": "LIBRARY"}}}}, "91eca87f2d7ba1d4549a6b7e2197670aa21e7ec0": {"47ed02da": {"type": "FUNCTION", "size": 328, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.7", "2.1.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__ieee754_logf", "scope": "LIBRARY"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": "__fdlib_version"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "52": {"type": "MIPS_26", "symbol": "isnanf"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "108": {"type": "MIPS_26", "symbol": "fptodp"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "__infinity"}, "152": {"type": "MIPS_26", "symbol": "dpsub"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": "__infinity"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "196": {"type": "MIPS_26", "symbol": "__errno"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "232": {"type": "MIPS_26", "symbol": "matherr", "scope": "LIBRARY"}, "248": {"type": "MIPS_26", "symbol": "__errno"}, "276": {"type": "MIPS_26", "symbol": "__errno"}, "292": {"type": "MIPS_26", "symbol": "dptofp"}}}}}, "powf": {"c0a5a6b6b96e3534f1ce618782a40e20574c6678": {"5e15da1f": {"type": "FUNCTION", "size": 20, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "__ieee754_powf", "scope": "LIBRARY"}}}}, "0a668621629c60a4ac0a5064c49cac16dc8d108d": {"bd968b0b": {"type": "FUNCTION", "size": 1288, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.3", "2.1.4", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.3", "2.5.5", "2.5.7", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": "__fdlib_version"}, "48": {"type": "MIPS_26", "symbol": "__ieee754_powf", "scope": "LIBRARY"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "72": {"typ)PS2SDB", 8192}, + std::string_view{R"PS2SDB(e": "MIPS_26", "symbol": "isnanf"}, "88": {"type": "MIPS_26", "symbol": "isnanf"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_26", "symbol": "fptodp"}, "156": {"type": "MIPS_26", "symbol": "fptodp"}, "168": {"type": "MIPS_26", "symbol": "fptodp"}, "208": {"type": "MIPS_26", "symbol": "matherr", "scope": "LIBRARY"}, "224": {"type": "MIPS_26", "symbol": "__errno"}, "268": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "292": {"type": "MIPS_26", "symbol": "fptodp"}, "304": {"type": "MIPS_26", "symbol": "fptodp"}, "328": {"type": "MIPS_26", "symbol": "matherr", "scope": "LIBRARY"}, "344": {"type": "MIPS_26", "symbol": "__errno"}, "360": {"type": "MIPS_26", "symbol": "finitef"}, "388": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "396": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "412": {"type": "MIPS_26", "symbol": "fptodp"}, "424": {"type": "MIPS_26", "symbol": "fptodp"}, "452": {"type": "MIPS_HI16", "symbol": "", "original": "__infinity"}, "460": {"type": "MIPS_26", "symbol": "dpsub"}, "464": {"type": "MIPS_LO16", "symbol": "", "original": "__infinity"}, "472": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "488": {"type": "MIPS_26", "symbol": "matherr", "scope": "LIBRARY"}, "504": {"type": "MIPS_26", "symbol": "__errno"}, "520": {"type": "MIPS_26", "symbol": "finitef"}, "536": {"type": "MIPS_26", "symbol": "finitef"}, "552": {"type": "MIPS_26", "symbol": "finitef"}, "568": {"type": "MIPS_26", "symbol": "isnanf"}, "580": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "588": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "604": {"type": "MIPS_26", "symbol": "fptodp"}, "616": {"type": "MIPS_26", "symbol": "fptodp"}, "644": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "648": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "656": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "672": {"type": "MIPS_26", "symbol": "matherr", "scope": "LIBRARY"}, "688": {"type": "MIPS_26", "symbol": "__errno"}, "708": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "724": {"type": "MIPS_26", "symbol": "fptodp"}, "736": {"type": "MIPS_26", "symbol": "fptodp"}, "752": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "756": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "764": {"type": "MIPS_26", "symbol": "fptodp"}, "780": {"type": "MIPS_26", "symbol": "dpmul"}, "788": {"type": "MIPS_26", "symbol": "dptofp"}, "800": {"type": "MIPS_26", "symbol": "fptodp"}, "812": {"type": "MIPS_26", "symbol": "dpcmp"}, "824": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "828": {"type": "MIPS_26", "symbol": "fptodp"}, "836": {"type": "MIPS_26", "symbol": "rint", "scope": "LIBRARY"}, "848": {"type": "MIPS_26", "symbol": "fptodp"}, "860": {"type": "MIPS_26", "symbol": "dpcmp"}, "872": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "876": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "880": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "892": {"type": "MIPS_HI16", "symbol": "", "original": "__infinity"}, "900": {"type": "MIPS_LO16", "symbol": "", "original": "__infinity"}, "908": {"type": "MIPS_26", "symbol": "fptodp"}, "924": {"type": "MIPS_26", "symbol": "dpmul"}, "932": {"type": "MIPS_26", "symbol": "dptofp"}, "944": {"type": "MIPS_26", "symbol": "fptodp"}, "956": {"type": "MIPS_26", "symbol": "dpcmp"}, "968": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "972": {"type": "MIPS_26", "symbol": "fptodp"}, "980": {"type": "MIPS_26", "symbol": "rint", "scope": "LIBRARY"}, "992": {"type": "MIPS_26", "symbol": "fptodp"}, "1004": {"type": "MIPS_26", "symbol": "dpcmp"}, "1020": {"type": "MIPS_26", "symbol": "dpsub"}, "1032": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "1064": {"type": "MIPS_26", "symbol": "finitef"}, "1080": {"type": "MIPS_26", "symbol": "finitef"}, "1092": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1100": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1116": {"type": "MIPS_26", "symbol": "fptodp"}, "1128": {"type": "MIPS_26", "symbol": "fptodp"}, "1144": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "1164": {"type": "MIPS_26", "symbol": "matherr", "scope": "LIBRARY"}, "1180": {"type": "MIPS_26", "symbol": "__errno"}, "1208": {"type": "MIPS_26", "symbol": "__errno"}, "1224": {"type": "MIPS_26", "symbol": "dptofp"}}}}, "1d4a940323e84023ef63804a89dfb09a2a75135e": {"8f670d27": {"type": "FUNCTION", "size": 1292, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "__ieee754_powf", "scope": "LIBRARY"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": "__fdlib_version"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "76": {"type": "MIPS_26", "symbol": "isnanf"}, "92": {"type": "MIPS_26", "symbol": "isnanf"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_26", "symbol": "fptodp"}, "160": {"type": "MIPS_26", "symbol": "fptodp"}, "172": {"type": "MIPS_26", "symbol": "fptodp"}, "212": {"type": "MIPS_26", "symbol": "matherr", "scope": "LIBRARY"}, "228": {"type": "MIPS_26", "symbol": "__errno"}, "272": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "296": {"type": "MIPS_26", "symbol": "fptodp"}, "308": {"type": "MIPS_26", "symbol": "fptodp"}, "332": {"type": "MIPS_26", "symbol": "matherr", "scope": "LIBRARY"}, "348": {"type": "MIPS_26", "symbol": "__errno"}, "364": {"type": "MIPS_26", "symbol": "finitef"}, "392": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "400": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "416": {"type": "MIPS_26", "symbol": "fptodp"}, "428": {"type": "MIPS_26", "symbol": "fptodp"}, "456": {"type": "MIPS_HI16", "symbol": "", "original": "__infinity"}, "464": {"type": "MIPS_26", "symbol": "dpsub"}, "468": {"type": "MIPS_LO16", "symbol": "", "original": "__infinity"}, "476": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "492": {"type": "MIPS_26", "symbol": "matherr", "scope": "LIBRARY"}, "508": {"type": "MIPS_26", "symbol": "__errno"}, "524": {"type": "MIPS_26", "symbol": "finitef"}, "540": {"type": "MIPS_26", "symbol": "finitef"}, "556": {"type": "MIPS_26", "symbol": "finitef"}, "572": {"type": "MIPS_26", "symbol": "isnanf"}, "584": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "592": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "608": {"type": "MIPS_26", "symbol": "fptodp"}, "620": {"type": "MIPS_26", "symbol": "fptodp"}, "648": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "652": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "660": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "676": {"type": "MIPS_26", "symbol": "matherr", "scope": "LIBRARY"}, "692": {"type": "MIPS_26", "symbol": "__errno"}, "712": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "728": {"type": "MIPS_26", "symbol": "fptodp"}, "740": {"type": "MIPS_26", "symbol": "fptodp"}, "756": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "760": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "768": {"type": "MIPS_26", "symbol": "fptodp"}, "784": {"type": "MIPS_26", "symbol": "dpmul"}, "792": {"type": "MIPS_26", "symbol": "dptofp"}, "804": {"type": "MIPS_26", "symbol": "fptodp"}, "816": {")PS2SDB", 8192}, + std::string_view{R"PS2SDB(type": "MIPS_26", "symbol": "dpcmp"}, "828": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "832": {"type": "MIPS_26", "symbol": "fptodp"}, "840": {"type": "MIPS_26", "symbol": "rint", "scope": "LIBRARY"}, "852": {"type": "MIPS_26", "symbol": "fptodp"}, "864": {"type": "MIPS_26", "symbol": "dpcmp"}, "876": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "880": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "884": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "896": {"type": "MIPS_HI16", "symbol": "", "original": "__infinity"}, "904": {"type": "MIPS_LO16", "symbol": "", "original": "__infinity"}, "912": {"type": "MIPS_26", "symbol": "fptodp"}, "928": {"type": "MIPS_26", "symbol": "dpmul"}, "936": {"type": "MIPS_26", "symbol": "dptofp"}, "948": {"type": "MIPS_26", "symbol": "fptodp"}, "960": {"type": "MIPS_26", "symbol": "dpcmp"}, "972": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "976": {"type": "MIPS_26", "symbol": "fptodp"}, "984": {"type": "MIPS_26", "symbol": "rint", "scope": "LIBRARY"}, "996": {"type": "MIPS_26", "symbol": "fptodp"}, "1008": {"type": "MIPS_26", "symbol": "dpcmp"}, "1024": {"type": "MIPS_26", "symbol": "dpsub"}, "1036": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "1068": {"type": "MIPS_26", "symbol": "finitef"}, "1084": {"type": "MIPS_26", "symbol": "finitef"}, "1096": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1104": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1120": {"type": "MIPS_26", "symbol": "fptodp"}, "1132": {"type": "MIPS_26", "symbol": "fptodp"}, "1148": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "1168": {"type": "MIPS_26", "symbol": "matherr", "scope": "LIBRARY"}, "1184": {"type": "MIPS_26", "symbol": "__errno"}, "1212": {"type": "MIPS_26", "symbol": "__errno"}, "1228": {"type": "MIPS_26", "symbol": "dptofp"}}}}}, "sqrtf": {"c0a5a6b6b96e3534f1ce618782a40e20574c6678": {"72dcdb8b": {"type": "FUNCTION", "size": 20, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "__ieee754_sqrtf", "scope": "LIBRARY"}}}}, "39c0ebab5c25c3a4595fe79d8eb3d77c30af678e": {"830b0a1c": {"type": "FUNCTION", "size": 276, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.3", "2.5.4", "2.5.5", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__ieee754_sqrtf", "scope": "LIBRARY"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": "__fdlib_version"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "52": {"type": "MIPS_26", "symbol": "isnanf"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "108": {"type": "MIPS_26", "symbol": "fptodp"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "168": {"type": "MIPS_26", "symbol": "matherr", "scope": "LIBRARY"}, "184": {"type": "MIPS_26", "symbol": "__errno"}, "212": {"type": "MIPS_26", "symbol": "__errno"}, "228": {"type": "MIPS_26", "symbol": "dptofp"}}}}, "27b8bdb0e030d756ae252f588e528407420bb84f": {"a52f6609": {"type": "FUNCTION", "size": 280, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "__ieee754_sqrtf", "scope": "LIBRARY"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": "__fdlib_version"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "56": {"type": "MIPS_26", "symbol": "isnanf"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "112": {"type": "MIPS_26", "symbol": "fptodp"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "172": {"type": "MIPS_26", "symbol": "matherr", "scope": "LIBRARY"}, "188": {"type": "MIPS_26", "symbol": "__errno"}, "216": {"type": "MIPS_26", "symbol": "__errno"}, "232": {"type": "MIPS_26", "symbol": "dptofp"}}}}}, "__ieee754_sqrt": {"0b81b60aec4224002d9a062c3fc6f2599de7d5ee": {"9485303f": {"type": "FUNCTION", "size": 796, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"72": {"type": "MIPS_26", "symbol": "dpmul"}, "88": {"type": "MIPS_26", "symbol": "dpadd"}, "152": {"type": "MIPS_26", "symbol": "dpsub"}, "168": {"type": "MIPS_26", "symbol": "dpdiv"}, "588": {"type": "MIPS_26", "symbol": "dpcmp"}, "632": {"type": "MIPS_26", "symbol": "dpcmp"}}}}, "92cadbad79355bd98291dd827d7074198ee691b6": {"48f33299": {"type": "FUNCTION", "size": 772, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.4", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.5", "2.5.7", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "dpmul"}, "80": {"type": "MIPS_26", "symbol": "dpadd"}, "136": {"type": "MIPS_26", "symbol": "dpsub"}, "148": {"type": "MIPS_26", "symbol": "dpdiv"}, "588": {"type": "MIPS_26", "symbol": "dpcmp"}, "632": {"type": "MIPS_26", "symbol": "dpcmp"}}}}, "f16c2560c085a6c928de4a7af28d22e1fc927055": {"c2840aad": {"type": "FUNCTION", "size": 832, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "dpmul"}, "84": {"type": "MIPS_26", "symbol": "dpadd"}, "184": {"type": "MIPS_26", "symbol": "dpsub"}, "204": {"type": "MIPS_26", "symbol": "dpsub"}, "220": {"type": "MIPS_26", "symbol": "dpdiv"}, "656": {"type": "MIPS_26", "symbol": "dpcmp"}, "784": {"type": "MIPS_26", "symbol": "dpcmp"}}}}, "85c5cfcbe461216a373c11d50237fe24118e756a": {"4b73f5dc": {"type": "FUNCTION", "size": 764, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "dpmul"}, "80": {"type": "MIPS_26", "symbol": "dpadd"}, "136": {"type": "MIPS_26", "symbol": "dpsub"}, "148": {"type": "MIPS_26", "symbol": "dpdiv"}, "580": {"type": "MIPS_26", "symbol": "dpcmp"}, "624": {"type": "MIPS_26", "symbol": "dpcmp"}}}}, "22f72b6c93748de026b75434f0836335336cfb8e": {"63572b98": {"type": "FUNCTION", "size": 784, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_26", "symbol": "dpmul"}, "76": {"type": "MIPS_26", "symbol": "dpadd"}, "168": {"type": "MIPS_26", "symbol": "dpsub"}, "184": {"type": "MIPS_26", "symbol": "dpsub"}, "196": {"type": "MIPS_26", "symbol": "dpdiv"}, "620": {"type": "MIPS_26", "symbol": "dpcmp"}, "736": {"type": "MIPS_26", "symbol": "dpcmp"}}}}}, "__ieee754_fmodf": {"0284111b7596cc8d0eff20d68b1c0f)PS2SDB", 8192}, + std::string_view{R"PS2SDB(112c77d610": {"ecc5674f": {"type": "FUNCTION", "size": 464, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"312": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "a1f4e0f57d7608ab8322add9be79b291c25b166b": {"88e06b66": {"type": "FUNCTION", "size": 592, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.3", "1.6.5", "2.0.7", "2.1.0", "2.1.4", "2.3.0", "2.4.2", "2.4.3", "2.5.5", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"144": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "20afb7d1b5a09dc82271bedf0f0b098335a970f0": {"ecc5674f": {"type": "FUNCTION", "size": 464, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"312": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "781e32bcca5e10514414f9f95b9f5a2821b34cbb": {"2dbc5461": {"type": "FUNCTION", "size": 384, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "c8c6d758dc115b3a47c41abab40f2117106fd782": {"ecd6c43c": {"type": "FUNCTION", "size": 388, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"336": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "344": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "30752a7ea3df16a842a58115fb67b94aa764cf07": {"88e06b66": {"type": "FUNCTION", "size": 584, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"144": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sqrt": {"c0a5a6b6b96e3534f1ce618782a40e20574c6678": {"d4d67e86": {"type": "FUNCTION", "size": 20, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "__ieee754_sqrt", "scope": "LIBRARY"}}}}, "c201450c23b37d662b8887bcce179cfff202ae18": {"e869c073": {"type": "FUNCTION", "size": 268, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.1", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.4", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.5", "2.5.7", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": "__fdlib_version"}, "32": {"type": "MIPS_26", "symbol": "__ieee754_sqrt", "scope": "LIBRARY"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "60": {"type": "MIPS_26", "symbol": "isnan"}, "84": {"type": "MIPS_26", "symbol": "dpcmp"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "172": {"type": "MIPS_26", "symbol": "matherr", "scope": "LIBRARY"}, "188": {"type": "MIPS_26", "symbol": "__errno"}, "216": {"type": "MIPS_26", "symbol": "__errno"}}}}, "d5cb1104891500284ff3cc8c25b9bf201e8bfb6f": {"8990124d": {"type": "FUNCTION", "size": 276, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__ieee754_sqrt", "scope": "LIBRARY"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": "__fdlib_version"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "60": {"type": "MIPS_26", "symbol": "isnan"}, "84": {"type": "MIPS_26", "symbol": "dpcmp"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "172": {"type": "MIPS_26", "symbol": "matherr", "scope": "LIBRARY"}, "188": {"type": "MIPS_26", "symbol": "__errno"}, "216": {"type": "MIPS_26", "symbol": "__errno"}}}}}, "fmodf": {"c0a5a6b6b96e3534f1ce618782a40e20574c6678": {"9e2f092c": {"type": "FUNCTION", "size": 20, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "__ieee754_fmodf", "scope": "LIBRARY"}}}}, "279f9c2c1fd442edcb319052900214a7f0fb3965": {"185674df": {"type": "FUNCTION", "size": 316, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.3", "1.6.5", "2.0.7", "2.1.0", "2.1.4", "2.3.0", "2.4.2", "2.4.3", "2.5.5", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "__ieee754_fmodf", "scope": "LIBRARY"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": "__fdlib_version"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "60": {"type": "MIPS_26", "symbol": "isnanf"}, "76": {"type": "MIPS_26", "symbol": "isnanf"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "132": {"type": "MIPS_26", "symbol": "fptodp"}, "144": {"type": "MIPS_26", "symbol": "fptodp"}, "160": {"type": "MIPS_26", "symbol": "fptodp"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "204": {"type": "MIPS_26", "symbol": "matherr", "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "__errno"}, "248": {"type": "MIPS_26", "symbol": "__errno"}, "264": {"type": "MIPS_26", "symbol": "dptofp"}}}}, "346197e1de111a2c336912096de81ce6dfead07f": {"c1447271": {"type": "FUNCTION", "size": 320, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "__ieee754_fmodf", "scope": "LIBRARY"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": "__fdlib_version"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "64": {"type": "MIPS_26", "symbol": "isnanf"}, "80": {"type": "MIPS_26", "symbol": "isnanf"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_26", "symbol": "fptodp"}, "148": {"type": "MIPS_26", "symbol": "fptodp"}, "164": {"type": "MIPS_26", "symbol": "fptodp"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_LO)PS2SDB", 8192}, + std::string_view{R"PS2SDB(16", "symbol": "", "original": ".rodata"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "208": {"type": "MIPS_26", "symbol": "matherr", "scope": "LIBRARY"}, "224": {"type": "MIPS_26", "symbol": "__errno"}, "252": {"type": "MIPS_26", "symbol": "__errno"}, "268": {"type": "MIPS_26", "symbol": "dptofp"}}}}}, "__ieee754_acos": {"5ba904149221cd882dfd132071925a8ad8c69971": {"64c2a252": {"type": "FUNCTION", "size": 1828, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.3", "2.5.0", "2.5.4", "2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"116": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "140": {"type": "MIPS_26", "symbol": "dpsub"}, "156": {"type": "MIPS_26", "symbol": "dpdiv"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "220": {"type": "MIPS_26", "symbol": "dpmul"}, "228": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "244": {"type": "MIPS_26", "symbol": "dpmul"}, "252": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "264": {"type": "MIPS_26", "symbol": "dpadd"}, "280": {"type": "MIPS_26", "symbol": "dpmul"}, "288": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "292": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "300": {"type": "MIPS_26", "symbol": "dpadd"}, "316": {"type": "MIPS_26", "symbol": "dpmul"}, "324": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "328": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "336": {"type": "MIPS_26", "symbol": "dpadd"}, "352": {"type": "MIPS_26", "symbol": "dpmul"}, "360": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "364": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "372": {"type": "MIPS_26", "symbol": "dpadd"}, "388": {"type": "MIPS_26", "symbol": "dpmul"}, "396": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "400": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "408": {"type": "MIPS_26", "symbol": "dpadd"}, "424": {"type": "MIPS_26", "symbol": "dpmul"}, "436": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "440": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "448": {"type": "MIPS_26", "symbol": "dpmul"}, "456": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "460": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "468": {"type": "MIPS_26", "symbol": "dpadd"}, "484": {"type": "MIPS_26", "symbol": "dpmul"}, "492": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "496": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "504": {"type": "MIPS_26", "symbol": "dpadd"}, "520": {"type": "MIPS_26", "symbol": "dpmul"}, "528": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "532": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "540": {"type": "MIPS_26", "symbol": "dpadd"}, "556": {"type": "MIPS_26", "symbol": "dpmul"}, "576": {"type": "MIPS_26", "symbol": "dpadd"}, "592": {"type": "MIPS_26", "symbol": "dpdiv"}, "608": {"type": "MIPS_26", "symbol": "dpmul"}, "616": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "620": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "628": {"type": "MIPS_26", "symbol": "dpsub"}, "644": {"type": "MIPS_26", "symbol": "dpsub"}, "652": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "656": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "692": {"type": "MIPS_26", "symbol": "dpadd"}, "712": {"type": "MIPS_26", "symbol": "dpmul"}, "720": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "724": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "736": {"type": "MIPS_26", "symbol": "dpmul"}, "744": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "748": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "756": {"type": "MIPS_26", "symbol": "dpadd"}, "772": {"type": "MIPS_26", "symbol": "dpmul"}, "780": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "784": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "792": {"type": "MIPS_26", "symbol": "dpadd"}, "808": {"type": "MIPS_26", "symbol": "dpmul"}, "816": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "820": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "828": {"type": "MIPS_26", "symbol": "dpadd"}, "844": {"type": "MIPS_26", "symbol": "dpmul"}, "852": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "856": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "864": {"type": "MIPS_26", "symbol": "dpadd"}, "880": {"type": "MIPS_26", "symbol": "dpmul"}, "888": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "892": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "900": {"type": "MIPS_26", "symbol": "dpadd"}, "916": {"type": "MIPS_26", "symbol": "dpmul"}, "928": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "932": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "940": {"type": "MIPS_26", "symbol": "dpmul"}, "948": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "952": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "960": {"type": "MIPS_26", "symbol": "dpadd"}, "976": {"type": "MIPS_26", "symbol": "dpmul"}, "984": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "988": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "996": {"type": "MIPS_26", "symbol": "dpadd"}, "1012": {"type": "MIPS_26", "symbol": "dpmul"}, "1020": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1024": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1032": {"type": "MIPS_26", "symbol": "dpadd"}, "1048": {"type": "MIPS_26", "symbol": "dpmul"}, "1064": {"type": "MIPS_26", "symbol": "dpadd"}, "1080": {"type": "MIPS_26", "symbol": "__ieee754_sqrt", "scope": "LIBRARY"}, "1100": {"type": "MIPS_26", "symbol": "dpdiv"}, "1116": {"type": "MIPS_26", "symbol": "dpmul"}, "1124": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1128": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1136": {"type": "MIPS_26", "symbol": "dpsub"}, "1152": {"type": "MIPS_26", "symbol": "dpadd"}, "1168": {"type": "MIPS_26", "symbol": "dpadd"}, "1176": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1180": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1188": {"type": "MIPS_26", "symbol": "dpsub"}, "1224": {"type": "MIPS_26", "symbol": "dpsub"}, "1244": {"type": "MIPS_26", "symbol": "dpmul"}, "1260": {"type": "MIPS_26", "symbol": "__ieee754_sqrt", "scope": "LIBRARY"}, "1300": {"type": "MIPS_26", "symbol": "dpmul"}, "1316": {"type": "MIPS_26", "symbol": "dpsub"}, "1336": {"type": "MIPS_26", "symbol": "dpadd"}, "1352": {"type": "MIPS_26", "symbol": "dpdiv"}, "1364": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1368": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1376": {"type": "MIPS_26", "symbol": "dpmul"}, "1384": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1388": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1396": {"type": "MIPS_26", "symbol": "dpadd"}, "1412": {"type": "MIPS_26", "symbol": "dpmul"}, "1420": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1424": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1432": {"type": "MIPS_26", "symbol": "dpadd"}, "1448": {"type": "MIPS_26", "symbol": "dpmul"}, "1456": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1460": {"t)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ype": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1468": {"type": "MIPS_26", "symbol": "dpadd"}, "1484": {"type": "MIPS_26", "symbol": "dpmul"}, "1492": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1496": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1504": {"type": "MIPS_26", "symbol": "dpadd"}, "1520": {"type": "MIPS_26", "symbol": "dpmul"}, "1528": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1532": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1540": {"type": "MIPS_26", "symbol": "dpadd"}, "1556": {"type": "MIPS_26", "symbol": "dpmul"}, "1568": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1572": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1580": {"type": "MIPS_26", "symbol": "dpmul"}, "1588": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1592": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1600": {"type": "MIPS_26", "symbol": "dpadd"}, "1616": {"type": "MIPS_26", "symbol": "dpmul"}, "1624": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1628": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1636": {"type": "MIPS_26", "symbol": "dpadd"}, "1652": {"type": "MIPS_26", "symbol": "dpmul"}, "1660": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1664": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1672": {"type": "MIPS_26", "symbol": "dpadd"}, "1688": {"type": "MIPS_26", "symbol": "dpmul"}, "1704": {"type": "MIPS_26", "symbol": "dpadd"}, "1720": {"type": "MIPS_26", "symbol": "dpdiv"}, "1736": {"type": "MIPS_26", "symbol": "dpmul"}, "1752": {"type": "MIPS_26", "symbol": "dpadd"}, "1768": {"type": "MIPS_26", "symbol": "dpadd"}, "1784": {"type": "MIPS_26", "symbol": "dpadd"}}}}, "dd7f45f872cfab9b95e951ad769a9f7a3366f1f6": {"de854aea": {"type": "FUNCTION", "size": 1484, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.2.2", "2.3.0", "2.3.2", "2.4.0", "2.4.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"112": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_26", "symbol": "dpsub"}, "140": {"type": "MIPS_26", "symbol": "dpdiv"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "204": {"type": "MIPS_26", "symbol": "dpmul"}, "216": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "224": {"type": "MIPS_26", "symbol": "dpmul"}, "232": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "240": {"type": "MIPS_26", "symbol": "dpadd"}, "252": {"type": "MIPS_26", "symbol": "dpmul"}, "260": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "268": {"type": "MIPS_26", "symbol": "dpadd"}, "280": {"type": "MIPS_26", "symbol": "dpmul"}, "288": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "292": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "296": {"type": "MIPS_26", "symbol": "dpadd"}, "308": {"type": "MIPS_26", "symbol": "dpmul"}, "316": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "324": {"type": "MIPS_26", "symbol": "dpadd"}, "336": {"type": "MIPS_26", "symbol": "dpmul"}, "344": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "348": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "352": {"type": "MIPS_26", "symbol": "dpadd"}, "364": {"type": "MIPS_26", "symbol": "dpmul"}, "372": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "376": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "384": {"type": "MIPS_26", "symbol": "dpmul"}, "392": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "396": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "400": {"type": "MIPS_26", "symbol": "dpadd"}, "412": {"type": "MIPS_26", "symbol": "dpmul"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "428": {"type": "MIPS_26", "symbol": "dpadd"}, "440": {"type": "MIPS_26", "symbol": "dpmul"}, "448": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "452": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "456": {"type": "MIPS_26", "symbol": "dpadd"}, "468": {"type": "MIPS_26", "symbol": "dpmul"}, "484": {"type": "MIPS_26", "symbol": "dpadd"}, "496": {"type": "MIPS_26", "symbol": "dpdiv"}, "508": {"type": "MIPS_26", "symbol": "dpmul"}, "516": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "520": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "524": {"type": "MIPS_26", "symbol": "dpsub"}, "536": {"type": "MIPS_26", "symbol": "dpsub"}, "544": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "548": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "552": {"type": "MIPS_26", "symbol": "dpsub"}, "588": {"type": "MIPS_26", "symbol": "dpadd"}, "604": {"type": "MIPS_26", "symbol": "dpmul"}, "616": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "620": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "624": {"type": "MIPS_26", "symbol": "dpmul"}, "632": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "636": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "640": {"type": "MIPS_26", "symbol": "dpadd"}, "652": {"type": "MIPS_26", "symbol": "dpmul"}, "660": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "664": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "668": {"type": "MIPS_26", "symbol": "dpadd"}, "680": {"type": "MIPS_26", "symbol": "dpmul"}, "688": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "692": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "696": {"type": "MIPS_26", "symbol": "dpadd"}, "708": {"type": "MIPS_26", "symbol": "dpmul"}, "716": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "720": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "724": {"type": "MIPS_26", "symbol": "dpadd"}, "736": {"type": "MIPS_26", "symbol": "dpmul"}, "744": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "748": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "752": {"type": "MIPS_26", "symbol": "dpadd"}, "764": {"type": "MIPS_26", "symbol": "dpmul"}, "772": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "776": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "784": {"type": "MIPS_26", "symbol": "dpmul"}, "792": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "796": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "800": {"type": "MIPS_26", "symbol": "dpadd"}, "812": {"type": "MIPS_26", "symbol": "dpmul"}, "820": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "824": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "828": {"type": "MIPS_26", "symbol": "dpadd"}, "840": {"type": "MIPS_26", "symbol": "dpmul"}, "848": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "852": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "856": {"type": "MIPS_26", "symbol": "dpadd"}, "868": {"type": "MIPS_26", "symbol": "dpmul"}, "880": {"type": "MIPS_26", "symbol": "dpadd"}, "892": {"type": "MIPS_26", "symbol": "__ieee754_sqrt", "scope": "LIBRARY"}, "908": {"type": "MIPS_26", "symbol": "dpdiv"}, "920": {"type": "MIPS_26", "symbol": "dpmul"}, "928": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "932": {"type": "MIPS_LO16",)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "symbol": "", "original": ".rodata"}, "936": {"type": "MIPS_26", "symbol": "dpsub"}, "948": {"type": "MIPS_26", "symbol": "dpadd"}, "960": {"type": "MIPS_26", "symbol": "dpadd"}, "968": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "972": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "976": {"type": "MIPS_26", "symbol": "dpsub"}, "1000": {"type": "MIPS_26", "symbol": "dpsub"}, "1016": {"type": "MIPS_26", "symbol": "dpmul"}, "1028": {"type": "MIPS_26", "symbol": "__ieee754_sqrt", "scope": "LIBRARY"}, "1064": {"type": "MIPS_26", "symbol": "dpmul"}, "1076": {"type": "MIPS_26", "symbol": "dpsub"}, "1092": {"type": "MIPS_26", "symbol": "dpadd"}, "1104": {"type": "MIPS_26", "symbol": "dpdiv"}, "1112": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1116": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1124": {"type": "MIPS_26", "symbol": "dpmul"}, "1132": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1136": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1140": {"type": "MIPS_26", "symbol": "dpadd"}, "1152": {"type": "MIPS_26", "symbol": "dpmul"}, "1160": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1164": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1168": {"type": "MIPS_26", "symbol": "dpadd"}, "1180": {"type": "MIPS_26", "symbol": "dpmul"}, "1188": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1192": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1196": {"type": "MIPS_26", "symbol": "dpadd"}, "1208": {"type": "MIPS_26", "symbol": "dpmul"}, "1216": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1220": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1224": {"type": "MIPS_26", "symbol": "dpadd"}, "1236": {"type": "MIPS_26", "symbol": "dpmul"}, "1244": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1248": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1252": {"type": "MIPS_26", "symbol": "dpadd"}, "1264": {"type": "MIPS_26", "symbol": "dpmul"}, "1272": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1276": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1284": {"type": "MIPS_26", "symbol": "dpmul"}, "1292": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1296": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1300": {"type": "MIPS_26", "symbol": "dpadd"}, "1312": {"type": "MIPS_26", "symbol": "dpmul"}, "1320": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1324": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1328": {"type": "MIPS_26", "symbol": "dpadd"}, "1340": {"type": "MIPS_26", "symbol": "dpmul"}, "1348": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1352": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1356": {"type": "MIPS_26", "symbol": "dpadd"}, "1368": {"type": "MIPS_26", "symbol": "dpmul"}, "1380": {"type": "MIPS_26", "symbol": "dpadd"}, "1392": {"type": "MIPS_26", "symbol": "dpdiv"}, "1404": {"type": "MIPS_26", "symbol": "dpmul"}, "1416": {"type": "MIPS_26", "symbol": "dpadd"}, "1428": {"type": "MIPS_26", "symbol": "dpadd"}, "1440": {"type": "MIPS_26", "symbol": "dpadd"}}}}, "387f46deded592cf72799b2b546c663907a69069": {"2d30d69f": {"type": "FUNCTION", "size": 1820, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"108": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "156": {"type": "MIPS_26", "symbol": "dpsub"}, "176": {"type": "MIPS_26", "symbol": "dpsub"}, "192": {"type": "MIPS_26", "symbol": "dpdiv"}, "232": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "256": {"type": "MIPS_26", "symbol": "dpmul"}, "264": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "280": {"type": "MIPS_26", "symbol": "dpmul"}, "288": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "292": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "300": {"type": "MIPS_26", "symbol": "dpadd"}, "316": {"type": "MIPS_26", "symbol": "dpmul"}, "324": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "328": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "336": {"type": "MIPS_26", "symbol": "dpadd"}, "352": {"type": "MIPS_26", "symbol": "dpmul"}, "360": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "364": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "372": {"type": "MIPS_26", "symbol": "dpadd"}, "388": {"type": "MIPS_26", "symbol": "dpmul"}, "396": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "400": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "408": {"type": "MIPS_26", "symbol": "dpadd"}, "424": {"type": "MIPS_26", "symbol": "dpmul"}, "432": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "436": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "444": {"type": "MIPS_26", "symbol": "dpadd"}, "460": {"type": "MIPS_26", "symbol": "dpmul"}, "468": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "472": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "484": {"type": "MIPS_26", "symbol": "dpmul"}, "492": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "496": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "504": {"type": "MIPS_26", "symbol": "dpadd"}, "520": {"type": "MIPS_26", "symbol": "dpmul"}, "528": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "532": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "540": {"type": "MIPS_26", "symbol": "dpadd"}, "556": {"type": "MIPS_26", "symbol": "dpmul"}, "564": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "568": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "576": {"type": "MIPS_26", "symbol": "dpadd"}, "592": {"type": "MIPS_26", "symbol": "dpmul"}, "612": {"type": "MIPS_26", "symbol": "dpadd"}, "628": {"type": "MIPS_26", "symbol": "dpdiv"}, "644": {"type": "MIPS_26", "symbol": "dpmul"}, "652": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "656": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "664": {"type": "MIPS_26", "symbol": "dpsub"}, "680": {"type": "MIPS_26", "symbol": "dpsub"}, "688": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "692": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "700": {"type": "MIPS_26", "symbol": "dpsub"}, "736": {"type": "MIPS_26", "symbol": "dpadd"}, "756": {"type": "MIPS_26", "symbol": "dpmul"}, "764": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "768": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "780": {"type": "MIPS_26", "symbol": "dpmul"}, "788": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "792": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "800": {"type": "MIPS_26", "symbol": "dpadd"}, "816": {"type": "MIPS_26", "symbol": "dpmul"}, "824": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "828": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "836": {"type": "MIPS_26", "symbol": "dpadd"}, "852": {"type": "MIPS_26", "symbol": "dpmul"}, "860": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "864": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "872": {"type": "MIPS_26", "symbol": "dpadd"}, "888": {"type": "MIPS_26", "symbol": "dpmul"}, "896": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "900": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "908": {"type": "MIPS_26", "symbol": "dpadd"}, "924": {"type":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "MIPS_26", "symbol": "dpmul"}, "932": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "936": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "944": {"type": "MIPS_26", "symbol": "dpadd"}, "960": {"type": "MIPS_26", "symbol": "dpmul"}, "968": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "972": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "984": {"type": "MIPS_26", "symbol": "dpmul"}, "992": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "996": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1004": {"type": "MIPS_26", "symbol": "dpadd"}, "1020": {"type": "MIPS_26", "symbol": "dpmul"}, "1028": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1032": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1040": {"type": "MIPS_26", "symbol": "dpadd"}, "1056": {"type": "MIPS_26", "symbol": "dpmul"}, "1064": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1068": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1076": {"type": "MIPS_26", "symbol": "dpadd"}, "1092": {"type": "MIPS_26", "symbol": "dpmul"}, "1108": {"type": "MIPS_26", "symbol": "dpadd"}, "1124": {"type": "MIPS_26", "symbol": "__ieee754_sqrt", "scope": "LIBRARY"}, "1144": {"type": "MIPS_26", "symbol": "dpdiv"}, "1160": {"type": "MIPS_26", "symbol": "dpmul"}, "1168": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1172": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1180": {"type": "MIPS_26", "symbol": "dpsub"}, "1196": {"type": "MIPS_26", "symbol": "dpadd"}, "1212": {"type": "MIPS_26", "symbol": "dpadd"}, "1220": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1224": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1252": {"type": "MIPS_26", "symbol": "dpsub"}, "1272": {"type": "MIPS_26", "symbol": "dpmul"}, "1288": {"type": "MIPS_26", "symbol": "__ieee754_sqrt", "scope": "LIBRARY"}, "1320": {"type": "MIPS_26", "symbol": "dpmul"}, "1336": {"type": "MIPS_26", "symbol": "dpsub"}, "1356": {"type": "MIPS_26", "symbol": "dpadd"}, "1372": {"type": "MIPS_26", "symbol": "dpdiv"}, "1380": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1384": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1396": {"type": "MIPS_26", "symbol": "dpmul"}, "1404": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1408": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1416": {"type": "MIPS_26", "symbol": "dpadd"}, "1432": {"type": "MIPS_26", "symbol": "dpmul"}, "1440": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1444": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1452": {"type": "MIPS_26", "symbol": "dpadd"}, "1468": {"type": "MIPS_26", "symbol": "dpmul"}, "1476": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1480": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1488": {"type": "MIPS_26", "symbol": "dpadd"}, "1504": {"type": "MIPS_26", "symbol": "dpmul"}, "1512": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1516": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1524": {"type": "MIPS_26", "symbol": "dpadd"}, "1540": {"type": "MIPS_26", "symbol": "dpmul"}, "1548": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1552": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1560": {"type": "MIPS_26", "symbol": "dpadd"}, "1576": {"type": "MIPS_26", "symbol": "dpmul"}, "1584": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1588": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1600": {"type": "MIPS_26", "symbol": "dpmul"}, "1608": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1612": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1620": {"type": "MIPS_26", "symbol": "dpadd"}, "1636": {"type": "MIPS_26", "symbol": "dpmul"}, "1644": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1648": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1656": {"type": "MIPS_26", "symbol": "dpadd"}, "1672": {"type": "MIPS_26", "symbol": "dpmul"}, "1680": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1684": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1692": {"type": "MIPS_26", "symbol": "dpadd"}, "1708": {"type": "MIPS_26", "symbol": "dpmul"}, "1724": {"type": "MIPS_26", "symbol": "dpadd"}, "1740": {"type": "MIPS_26", "symbol": "dpdiv"}, "1756": {"type": "MIPS_26", "symbol": "dpmul"}, "1772": {"type": "MIPS_26", "symbol": "dpadd"}, "1788": {"type": "MIPS_26", "symbol": "dpadd"}, "1804": {"type": "MIPS_26", "symbol": "dpadd"}}}}}, "__ieee754_expf": {"00949af8bc7757ed5eba79c7679c340b29d98cdc": {"293e9489": {"type": "FUNCTION", "size": 596, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.4", "2.7.0", "2.7.1", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "cce1b369521df50f9183d1b6c8cbb55269757c98": {"ea1a1145": {"type": "FUNCTION", "size": 620, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "baedeab2da3cce5ded51c95ffbafe9f2c4908a5e": {"1a4becd5": {"type": "FUNCTION", "size": 692, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"116": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "200": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "216": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "292": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "300": {"type": "MIPS_HI16", "symbol": "", "original": ".ro)PS2SDB", 8192}, + std::string_view{R"PS2SDB(data"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sin": {"b91230cd9143bdfd9544cce9549192a80523a246": {"4c964edf": {"type": "FUNCTION", "size": 308, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "__kernel_sin", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "dpsub"}, "112": {"type": "MIPS_26", "symbol": "__ieee754_rem_pio2", "scope": "LIBRARY"}, "184": {"type": "MIPS_26", "symbol": "__kernel_sin", "scope": "LIBRARY"}, "208": {"type": "MIPS_26", "symbol": "__kernel_cos", "scope": "LIBRARY"}, "232": {"type": "MIPS_26", "symbol": "__kernel_sin", "scope": "LIBRARY"}, "248": {"type": "MIPS_26", "symbol": "dpsub"}, "272": {"type": "MIPS_26", "symbol": "__kernel_cos", "scope": "LIBRARY"}, "288": {"type": "MIPS_26", "symbol": "dpsub"}}}}, "155a7e97450b986ced91970ae0586ee36548a08f": {"f559f63e": {"type": "FUNCTION", "size": 244, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.5", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.2", "2.4.3", "2.5.5", "2.5.7", "2.7.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "__kernel_sin", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "__ieee754_rem_pio2", "scope": "LIBRARY"}, "152": {"type": "MIPS_26", "symbol": "__kernel_sin", "scope": "LIBRARY"}, "172": {"type": "MIPS_26", "symbol": "__kernel_cos", "scope": "LIBRARY"}, "192": {"type": "MIPS_26", "symbol": "__kernel_sin", "scope": "LIBRARY"}, "208": {"type": "MIPS_26", "symbol": "__kernel_cos", "scope": "LIBRARY"}, "224": {"type": "MIPS_26", "symbol": "dpsub"}}}}, "355c3f4995c5b71e2b45fa5339f01d6a96316237": {"6a8e27a7": {"type": "FUNCTION", "size": 248, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "__kernel_sin", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "__ieee754_rem_pio2", "scope": "LIBRARY"}, "144": {"type": "MIPS_26", "symbol": "__kernel_cos", "scope": "LIBRARY"}, "160": {"type": "MIPS_26", "symbol": "dpsub"}, "208": {"type": "MIPS_26", "symbol": "__kernel_sin", "scope": "LIBRARY"}, "232": {"type": "MIPS_26", "symbol": "__kernel_cos", "scope": "LIBRARY"}}}}}, "acos": {"c0a5a6b6b96e3534f1ce618782a40e20574c6678": {"506c6f33": {"type": "FUNCTION", "size": 20, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3", "2.5.0", "2.5.4", "2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "__ieee754_acos", "scope": "LIBRARY"}}}}, "96cdfc6d01d8e440d70094333916144f98265d70": {"1aad33aa": {"type": "FUNCTION", "size": 240, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5", "2.2.2", "2.3.0", "2.3.2", "2.4.0", "2.4.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "__ieee754_acos", "scope": "LIBRARY"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": "__fdlib_version"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "52": {"type": "MIPS_26", "symbol": "isnan"}, "68": {"type": "MIPS_26", "symbol": "fabs", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "dpcmp"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_26", "symbol": "matherr", "scope": "LIBRARY"}, "160": {"type": "MIPS_26", "symbol": "__errno"}, "188": {"type": "MIPS_26", "symbol": "__errno"}}}}}, "expf": {"c0a5a6b6b96e3534f1ce618782a40e20574c6678": {"6ffa5e80": {"type": "FUNCTION", "size": 20, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.5.0", "2.5.4", "2.7.0", "2.7.1", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "__ieee754_expf", "scope": "LIBRARY"}}}}, "2a80377c3395a39a43bdc0adcc7fc2f765dc796c": {"9f464b23": {"type": "FUNCTION", "size": 372, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__ieee754_expf", "scope": "LIBRARY"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": "__fdlib_version"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "52": {"type": "MIPS_26", "symbol": "finitef"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_26", "symbol": "fptodp"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": "__infinity"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": "__infinity"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "232": {"type": "MIPS_26", "symbol": "fptodp"}, "264": {"type": "MIPS_26", "symbol": "matherr", "scope": "LIBRARY"}, "280": {"type": "MIPS_26", "symbol": "__errno"}, "308": {"type": "MIPS_26", "symbol": "__errno"}, "324": {"type": "MIPS_26", "symbol": "dptofp"}}}}}, "__ieee754_atan2": {"3513f42951c39b54188dbe9d278b1ebbd98a2478": {"88a32d1f": {"type": "FUNCTION", "size": 828, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"128": {"type": "MIPS_26", "symbol": "dpadd"}, "168": {"type": "MIPS_26", "symbol": "atan", "scope": "LIBRARY"}, "200": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "248": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "296": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "300": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "324": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "328": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "352": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "356": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "380": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "384": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "404": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "440": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "444": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "456": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "460": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "480": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "504": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "508": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "520": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "524": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "536": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "540": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "584": {"type": "MIPS_26", "symbol": "dpdiv"}, "596": {"type": "MIPS_26", "symbol": "fabs", )PS2SDB", 8192}, + std::string_view{R"PS2SDB("scope": "LIBRARY"}, "608": {"type": "MIPS_26", "symbol": "atan", "scope": "LIBRARY"}, "728": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "732": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "736": {"type": "MIPS_26", "symbol": "dpsub"}, "744": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "748": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "756": {"type": "MIPS_26", "symbol": "dpsub"}, "776": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "780": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "784": {"type": "MIPS_26", "symbol": "dpsub"}, "792": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "796": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "804": {"type": "MIPS_26", "symbol": "dpsub"}}}}, "4b0280158d64774576423168c122e5bfdedbb66a": {"42738f60": {"type": "FUNCTION", "size": 820, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.1.3", "2.1.4", "2.2.1", "2.2.2", "2.3.0", "2.3.2", "2.3.4", "2.4.2", "2.4.3", "2.5.5", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"124": {"type": "MIPS_26", "symbol": "dpadd"}, "156": {"type": "MIPS_26", "symbol": "atan", "scope": "LIBRARY"}, "248": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "264": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "352": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "356": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "368": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "372": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "384": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "388": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "400": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "404": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "480": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "488": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "492": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "496": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "508": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "512": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "532": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "536": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "548": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "552": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "580": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "584": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "612": {"type": "MIPS_26", "symbol": "dpdiv"}, "620": {"type": "MIPS_26", "symbol": "fabs", "scope": "LIBRARY"}, "628": {"type": "MIPS_26", "symbol": "atan", "scope": "LIBRARY"}, "736": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "740": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "744": {"type": "MIPS_26", "symbol": "dpsub"}, "752": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "756": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "768": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "772": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "776": {"type": "MIPS_26", "symbol": "dpsub"}, "784": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "788": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "796": {"type": "MIPS_26", "symbol": "dpsub"}}}}, "c46ba3d5dd7f4779800e8e1f05180c339cbd972d": {"6c7c1e04": {"type": "FUNCTION", "size": 756, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"124": {"type": "MIPS_26", "symbol": "dpadd"}, "180": {"type": "MIPS_26", "symbol": "atan", "scope": "LIBRARY"}, "212": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "284": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "300": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "316": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "332": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "336": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "356": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "360": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "372": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "376": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "388": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "392": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "440": {"type": "MIPS_26", "symbol": "dpdiv"}, "452": {"type": "MIPS_26", "symbol": "fabs", "scope": "LIBRARY"}, "464": {"type": "MIPS_26", "symbol": "atan", "scope": "LIBRARY"}, "512": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "516": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "520": {"type": "MIPS_26", "symbol": "dpsub"}, "528": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "532": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "540": {"type": "MIPS_26", "symbol": "dpsub"}, "568": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "572": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "576": {"type": "MIPS_26", "symbol": "dpsub"}, "584": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "588": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "684": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "688": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "700": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "704": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "716": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "720": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "732": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "736": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "__ieee754_fmod": {"861b9a28483f9847fe084f3af516aa36ca266835": {"28112af1": {"type": "FUNCTION", "size": 1052, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.3", "2.5.2", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"136": {"type": "MIPS_26", "symbol": "dpmul"}, "152": {"type": "MIPS_26", "symbol": "dpdiv"}, "960": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "968": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "6ce3f32226dfcf3933fea23af49cb6257e8e0152": {"e698bc26": {"type": "FUNCTION", "size": 1008, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.1.4", "2.2.4", "2.4.2", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"128": {"type": "MIPS_26", "symbol": "dpmul"}, "140": {"type": "MIPS_26", "symbol": "dpdiv"}, "940": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "944": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "239b62b5c92187ed0f746d36a040600acc7ce16b": {"8b4e80bf": {"type": "FUNCTION", )PS2SDB", 8192}, + std::string_view{R"PS2SDB("size": 1016, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"128": {"type": "MIPS_26", "symbol": "dpmul"}, "144": {"type": "MIPS_26", "symbol": "dpdiv"}, "788": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "792": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "__ieee754_pow": {"fa84feb3d3204219769e3129387ef88e58604d11": {"b85e3be9": {"type": "FUNCTION", "size": 3916, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.3", "2.5.0", "2.5.2", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"180": {"type": "MIPS_26", "symbol": "dpadd"}, "388": {"type": "MIPS_26", "symbol": "dpsub"}, "480": {"type": "MIPS_26", "symbol": "dpsub"}, "524": {"type": "MIPS_26", "symbol": "dpdiv"}, "576": {"type": "MIPS_26", "symbol": "dpmul"}, "648": {"type": "MIPS_26", "symbol": "__ieee754_sqrt", "scope": "LIBRARY"}, "660": {"type": "MIPS_26", "symbol": "fabs", "scope": "LIBRARY"}, "732": {"type": "MIPS_26", "symbol": "dpdiv"}, "780": {"type": "MIPS_26", "symbol": "dpsub"}, "796": {"type": "MIPS_26", "symbol": "dpdiv"}, "836": {"type": "MIPS_26", "symbol": "dpsub"}, "892": {"type": "MIPS_26", "symbol": "dpsub"}, "908": {"type": "MIPS_26", "symbol": "dpdiv"}, "988": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1020": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1044": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1048": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1076": {"type": "MIPS_26", "symbol": "dpsub"}, "1096": {"type": "MIPS_26", "symbol": "dpmul"}, "1120": {"type": "MIPS_26", "symbol": "dpmul"}, "1128": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1132": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1140": {"type": "MIPS_26", "symbol": "dpsub"}, "1156": {"type": "MIPS_26", "symbol": "dpmul"}, "1176": {"type": "MIPS_26", "symbol": "dpsub"}, "1192": {"type": "MIPS_26", "symbol": "dpmul"}, "1204": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1208": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1216": {"type": "MIPS_26", "symbol": "dpmul"}, "1228": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1232": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1240": {"type": "MIPS_26", "symbol": "dpmul"}, "1252": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1256": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1264": {"type": "MIPS_26", "symbol": "dpmul"}, "1280": {"type": "MIPS_26", "symbol": "dpsub"}, "1300": {"type": "MIPS_26", "symbol": "dpadd"}, "1328": {"type": "MIPS_26", "symbol": "dpsub"}, "1384": {"type": "MIPS_26", "symbol": "dpmul"}, "1520": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1528": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1540": {"type": "MIPS_26", "symbol": "dpsub"}, "1560": {"type": "MIPS_26", "symbol": "dpadd"}, "1580": {"type": "MIPS_26", "symbol": "dpdiv"}, "1600": {"type": "MIPS_26", "symbol": "dpmul"}, "1676": {"type": "MIPS_26", "symbol": "dpsub"}, "1692": {"type": "MIPS_26", "symbol": "dpsub"}, "1712": {"type": "MIPS_26", "symbol": "dpmul"}, "1728": {"type": "MIPS_26", "symbol": "dpsub"}, "1748": {"type": "MIPS_26", "symbol": "dpmul"}, "1764": {"type": "MIPS_26", "symbol": "dpsub"}, "1780": {"type": "MIPS_26", "symbol": "dpmul"}, "1800": {"type": "MIPS_26", "symbol": "dpmul"}, "1820": {"type": "MIPS_26", "symbol": "dpmul"}, "1832": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1836": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1844": {"type": "MIPS_26", "symbol": "dpmul"}, "1852": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1856": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1864": {"type": "MIPS_26", "symbol": "dpadd"}, "1880": {"type": "MIPS_26", "symbol": "dpmul"}, "1888": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1892": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1900": {"type": "MIPS_26", "symbol": "dpadd"}, "1916": {"type": "MIPS_26", "symbol": "dpmul"}, "1924": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1928": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1936": {"type": "MIPS_26", "symbol": "dpadd"}, "1952": {"type": "MIPS_26", "symbol": "dpmul"}, "1960": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1964": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1972": {"type": "MIPS_26", "symbol": "dpadd"}, "1988": {"type": "MIPS_26", "symbol": "dpmul"}, "1996": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2000": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2008": {"type": "MIPS_26", "symbol": "dpadd"}, "2024": {"type": "MIPS_26", "symbol": "dpmul"}, "2044": {"type": "MIPS_26", "symbol": "dpadd"}, "2060": {"type": "MIPS_26", "symbol": "dpmul"}, "2076": {"type": "MIPS_26", "symbol": "dpadd"}, "2096": {"type": "MIPS_26", "symbol": "dpmul"}, "2116": {"type": "MIPS_26", "symbol": "dpadd"}, "2132": {"type": "MIPS_26", "symbol": "dpadd"}, "2152": {"type": "MIPS_26", "symbol": "dpsub"}, "2168": {"type": "MIPS_26", "symbol": "dpsub"}, "2184": {"type": "MIPS_26", "symbol": "dpsub"}, "2204": {"type": "MIPS_26", "symbol": "dpmul"}, "2224": {"type": "MIPS_26", "symbol": "dpmul"}, "2244": {"type": "MIPS_26", "symbol": "dpmul"}, "2260": {"type": "MIPS_26", "symbol": "dpadd"}, "2280": {"type": "MIPS_26", "symbol": "dpadd"}, "2300": {"type": "MIPS_26", "symbol": "dpsub"}, "2316": {"type": "MIPS_26", "symbol": "dpsub"}, "2328": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2332": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2340": {"type": "MIPS_26", "symbol": "dpmul"}, "2352": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2356": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2364": {"type": "MIPS_26", "symbol": "dpmul"}, "2376": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2380": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2388": {"type": "MIPS_26", "symbol": "dpmul"}, "2404": {"type": "MIPS_26", "symbol": "dpadd"}, "2420": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2428": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2432": {"type": "MIPS_26", "symbol": "dpadd"}, "2444": {"type": "MIPS_26", "symbol": "litodp"}, "2464": {"type": "MIPS_26", "symbol": "dpadd"}, "2476": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2484": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2496": {"type": "MIPS_26", "symbol": "dpadd"}, "2512": {"type": "MIPS_26", "symbol": "dpadd"}, "2532": {"type": "MIPS_26", "symbol": "dpsub"}, "2548": {"type": "MIPS_26", "symbol": "dpsub"}, "2564": {"type": "MIPS_26", "symbol": "dpsub"}, "2580": {"type": "MIPS_26", "symbol": "dpsub"}, "2668": {"type": "MIPS_26", "symbol": "dpsub"}, "2684": {"type": "MIPS_26", "symbol": "dpmul"}, "2704": {"type": "MIPS_26", "symbol": "dpmul"}, "2720": {"type": "MIPS_26", "symbol": "dpadd"}, "2740": {"type": "MIPS_26", "symbol": "dpmul"}, "2760": {"type": "MIPS_26", "symbol": "dpadd"}, "2824": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2832": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2848": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2852": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2860": {"type": "MIPS_26", "symbol": "dpadd"}, "2880": {"type": "MIPS_26", "symbol": "dpsub"}, "2896": {"type": "MIPS_26", "symbol": "dpcmp"}, "2912": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2920": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2984": {"type": ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(MIPS_HI16", "symbol": "", "original": ".rodata"}, "2996": {"type": "MIPS_26", "symbol": "dpsub"}, "3012": {"type": "MIPS_26", "symbol": "dpcmp"}, "3028": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3036": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3044": {"type": "MIPS_26", "symbol": "dpmul"}, "3060": {"type": "MIPS_26", "symbol": "dpmul"}, "3208": {"type": "MIPS_26", "symbol": "dpsub"}, "3228": {"type": "MIPS_26", "symbol": "dpadd"}, "3252": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3256": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3260": {"type": "MIPS_26", "symbol": "dpmul"}, "3280": {"type": "MIPS_26", "symbol": "dpsub"}, "3296": {"type": "MIPS_26", "symbol": "dpsub"}, "3304": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3308": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3316": {"type": "MIPS_26", "symbol": "dpmul"}, "3328": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3332": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3340": {"type": "MIPS_26", "symbol": "dpmul"}, "3356": {"type": "MIPS_26", "symbol": "dpadd"}, "3376": {"type": "MIPS_26", "symbol": "dpadd"}, "3396": {"type": "MIPS_26", "symbol": "dpsub"}, "3412": {"type": "MIPS_26", "symbol": "dpsub"}, "3432": {"type": "MIPS_26", "symbol": "dpmul"}, "3440": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3444": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3456": {"type": "MIPS_26", "symbol": "dpmul"}, "3464": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3468": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3476": {"type": "MIPS_26", "symbol": "dpadd"}, "3492": {"type": "MIPS_26", "symbol": "dpmul"}, "3500": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3504": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3512": {"type": "MIPS_26", "symbol": "dpadd"}, "3528": {"type": "MIPS_26", "symbol": "dpmul"}, "3536": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3540": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3548": {"type": "MIPS_26", "symbol": "dpadd"}, "3564": {"type": "MIPS_26", "symbol": "dpmul"}, "3572": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3576": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3584": {"type": "MIPS_26", "symbol": "dpadd"}, "3600": {"type": "MIPS_26", "symbol": "dpmul"}, "3616": {"type": "MIPS_26", "symbol": "dpsub"}, "3636": {"type": "MIPS_26", "symbol": "dpmul"}, "3660": {"type": "MIPS_26", "symbol": "dpsub"}, "3676": {"type": "MIPS_26", "symbol": "dpdiv"}, "3696": {"type": "MIPS_26", "symbol": "dpmul"}, "3712": {"type": "MIPS_26", "symbol": "dpadd"}, "3728": {"type": "MIPS_26", "symbol": "dpsub"}, "3744": {"type": "MIPS_26", "symbol": "dpsub"}, "3764": {"type": "MIPS_26", "symbol": "dpsub"}, "3808": {"type": "MIPS_26", "symbol": "scalbn"}, "3860": {"type": "MIPS_26", "symbol": "dpmul"}}}}, "f3ce100d5f6d326ca63d6f3d909753b3aceaaad6": {"952d55a9": {"type": "FUNCTION", "size": 3368, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.0.7", "2.1.4", "2.3.0", "2.3.2", "2.4.2", "2.4.3", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"184": {"type": "MIPS_26", "symbol": "dpadd"}, "372": {"type": "MIPS_26", "symbol": "dpsub"}, "432": {"type": "MIPS_26", "symbol": "dpsub"}, "472": {"type": "MIPS_26", "symbol": "dpdiv"}, "524": {"type": "MIPS_26", "symbol": "__ieee754_sqrt", "scope": "LIBRARY"}, "540": {"type": "MIPS_26", "symbol": "fabs", "scope": "LIBRARY"}, "600": {"type": "MIPS_26", "symbol": "dpdiv"}, "648": {"type": "MIPS_26", "symbol": "dpsub"}, "660": {"type": "MIPS_26", "symbol": "dpdiv"}, "692": {"type": "MIPS_26", "symbol": "dpsub"}, "740": {"type": "MIPS_26", "symbol": "dpsub"}, "752": {"type": "MIPS_26", "symbol": "dpdiv"}, "820": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "828": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "836": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "868": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "896": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "916": {"type": "MIPS_26", "symbol": "dpsub"}, "932": {"type": "MIPS_26", "symbol": "dpmul"}, "952": {"type": "MIPS_26", "symbol": "dpmul"}, "960": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "964": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "968": {"type": "MIPS_26", "symbol": "dpsub"}, "980": {"type": "MIPS_26", "symbol": "dpmul"}, "996": {"type": "MIPS_26", "symbol": "dpsub"}, "1008": {"type": "MIPS_26", "symbol": "dpmul"}, "1016": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1020": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1028": {"type": "MIPS_26", "symbol": "dpmul"}, "1036": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1040": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1048": {"type": "MIPS_26", "symbol": "dpmul"}, "1056": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1060": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1068": {"type": "MIPS_26", "symbol": "dpmul"}, "1080": {"type": "MIPS_26", "symbol": "dpsub"}, "1096": {"type": "MIPS_26", "symbol": "dpadd"}, "1120": {"type": "MIPS_26", "symbol": "dpsub"}, "1172": {"type": "MIPS_26", "symbol": "dpmul"}, "1316": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1320": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1340": {"type": "MIPS_26", "symbol": "dpsub"}, "1356": {"type": "MIPS_26", "symbol": "dpadd"}, "1372": {"type": "MIPS_26", "symbol": "dpdiv"}, "1388": {"type": "MIPS_26", "symbol": "dpmul"}, "1460": {"type": "MIPS_26", "symbol": "dpsub"}, "1472": {"type": "MIPS_26", "symbol": "dpsub"}, "1488": {"type": "MIPS_26", "symbol": "dpmul"}, "1500": {"type": "MIPS_26", "symbol": "dpsub"}, "1516": {"type": "MIPS_26", "symbol": "dpmul"}, "1528": {"type": "MIPS_26", "symbol": "dpsub"}, "1540": {"type": "MIPS_26", "symbol": "dpmul"}, "1556": {"type": "MIPS_26", "symbol": "dpmul"}, "1572": {"type": "MIPS_26", "symbol": "dpmul"}, "1580": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1584": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1592": {"type": "MIPS_26", "symbol": "dpmul"}, "1600": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1604": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1608": {"type": "MIPS_26", "symbol": "dpadd"}, "1620": {"type": "MIPS_26", "symbol": "dpmul"}, "1628": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1632": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1636": {"type": "MIPS_26", "symbol": "dpadd"}, "1648": {"type": "MIPS_26", "symbol": "dpmul"}, "1656": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1660": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1664": {"type": "MIPS_26", "symbol": "dpadd"}, "1676": {"type": "MIPS_26", "symbol": "dpmul"}, "1684": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1688": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1692": {"type": "MIPS_26", "symbol": "dpadd"}, "1704": {"type": "MIPS_26", "symbol": "dpmul"}, "1712": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1716": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1720": {"type": "MIPS_26", "symbol": "dpadd"}, "1732": {"type": "MIPS_26", "symbol": "dpmul"}, "1748": {"type": "MIPS_26", "symbol": "dpadd"}, "1760": {"type": "MIPS_26", "symbol": "dpmul"}, "1772": {"type": "MIPS_26", "symbol": "dpadd"}, "1788": {"type": "MIPS_26", "symbol": "dpmul"}, "1804": {"type": "MIPS_26", "symbol": "dpadd"}, "1816": {"type": "MIPS_26", "symbol": "dpadd"}, "1832": {"type": "MIPS_26", "symbol": "dp)PS2SDB", 8192}, + std::string_view{R"PS2SDB(sub"}, "1844": {"type": "MIPS_26", "symbol": "dpsub"}, "1856": {"type": "MIPS_26", "symbol": "dpsub"}, "1872": {"type": "MIPS_26", "symbol": "dpmul"}, "1888": {"type": "MIPS_26", "symbol": "dpmul"}, "1904": {"type": "MIPS_26", "symbol": "dpmul"}, "1916": {"type": "MIPS_26", "symbol": "dpadd"}, "1932": {"type": "MIPS_26", "symbol": "dpadd"}, "1948": {"type": "MIPS_26", "symbol": "dpsub"}, "1960": {"type": "MIPS_26", "symbol": "dpsub"}, "1968": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1972": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1980": {"type": "MIPS_26", "symbol": "dpmul"}, "1988": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1992": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2000": {"type": "MIPS_26", "symbol": "dpmul"}, "2008": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2012": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2020": {"type": "MIPS_26", "symbol": "dpmul"}, "2032": {"type": "MIPS_26", "symbol": "dpadd"}, "2040": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2048": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2056": {"type": "MIPS_26", "symbol": "dpadd"}, "2068": {"type": "MIPS_26", "symbol": "litodp"}, "2084": {"type": "MIPS_26", "symbol": "dpadd"}, "2092": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2100": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2112": {"type": "MIPS_26", "symbol": "dpadd"}, "2124": {"type": "MIPS_26", "symbol": "dpadd"}, "2140": {"type": "MIPS_26", "symbol": "dpsub"}, "2152": {"type": "MIPS_26", "symbol": "dpsub"}, "2164": {"type": "MIPS_26", "symbol": "dpsub"}, "2176": {"type": "MIPS_26", "symbol": "dpsub"}, "2256": {"type": "MIPS_26", "symbol": "dpsub"}, "2268": {"type": "MIPS_26", "symbol": "dpmul"}, "2284": {"type": "MIPS_26", "symbol": "dpmul"}, "2296": {"type": "MIPS_26", "symbol": "dpadd"}, "2312": {"type": "MIPS_26", "symbol": "dpmul"}, "2328": {"type": "MIPS_26", "symbol": "dpadd"}, "2384": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2392": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2396": {"type": "MIPS_26", "symbol": "dpmul"}, "2416": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2420": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2424": {"type": "MIPS_26", "symbol": "dpadd"}, "2440": {"type": "MIPS_26", "symbol": "dpsub"}, "2452": {"type": "MIPS_26", "symbol": "dpcmp"}, "2464": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2472": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2476": {"type": "MIPS_26", "symbol": "dpmul"}, "2544": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2552": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2556": {"type": "MIPS_26", "symbol": "dpmul"}, "2580": {"type": "MIPS_26", "symbol": "dpsub"}, "2592": {"type": "MIPS_26", "symbol": "dpcmp"}, "2608": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2616": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2620": {"type": "MIPS_26", "symbol": "dpmul"}, "2780": {"type": "MIPS_26", "symbol": "dpsub"}, "2796": {"type": "MIPS_26", "symbol": "dpadd"}, "2816": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2820": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2824": {"type": "MIPS_26", "symbol": "dpmul"}, "2840": {"type": "MIPS_26", "symbol": "dpsub"}, "2852": {"type": "MIPS_26", "symbol": "dpsub"}, "2860": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2864": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2868": {"type": "MIPS_26", "symbol": "dpmul"}, "2876": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2880": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2888": {"type": "MIPS_26", "symbol": "dpmul"}, "2900": {"type": "MIPS_26", "symbol": "dpadd"}, "2916": {"type": "MIPS_26", "symbol": "dpadd"}, "2932": {"type": "MIPS_26", "symbol": "dpsub"}, "2944": {"type": "MIPS_26", "symbol": "dpsub"}, "2960": {"type": "MIPS_26", "symbol": "dpmul"}, "2972": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2976": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2980": {"type": "MIPS_26", "symbol": "dpmul"}, "2988": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2992": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2996": {"type": "MIPS_26", "symbol": "dpadd"}, "3008": {"type": "MIPS_26", "symbol": "dpmul"}, "3016": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3020": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3024": {"type": "MIPS_26", "symbol": "dpadd"}, "3036": {"type": "MIPS_26", "symbol": "dpmul"}, "3044": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3048": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3052": {"type": "MIPS_26", "symbol": "dpadd"}, "3064": {"type": "MIPS_26", "symbol": "dpmul"}, "3072": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3076": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3080": {"type": "MIPS_26", "symbol": "dpadd"}, "3092": {"type": "MIPS_26", "symbol": "dpmul"}, "3104": {"type": "MIPS_26", "symbol": "dpsub"}, "3120": {"type": "MIPS_26", "symbol": "dpmul"}, "3140": {"type": "MIPS_26", "symbol": "dpsub"}, "3152": {"type": "MIPS_26", "symbol": "dpdiv"}, "3168": {"type": "MIPS_26", "symbol": "dpmul"}, "3180": {"type": "MIPS_26", "symbol": "dpadd"}, "3192": {"type": "MIPS_26", "symbol": "dpsub"}, "3204": {"type": "MIPS_26", "symbol": "dpsub"}, "3220": {"type": "MIPS_26", "symbol": "dpsub"}, "3264": {"type": "MIPS_26", "symbol": "scalbn"}, "3312": {"type": "MIPS_26", "symbol": "dpmul"}}}}, "28513a959c9a473e22d4fae26a94aab2255ab39e": {"6c32ea55": {"type": "FUNCTION", "size": 3924, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.3", "2.5.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"180": {"type": "MIPS_26", "symbol": "dpadd"}, "388": {"type": "MIPS_26", "symbol": "dpsub"}, "488": {"type": "MIPS_26", "symbol": "dpsub"}, "532": {"type": "MIPS_26", "symbol": "dpdiv"}, "584": {"type": "MIPS_26", "symbol": "dpmul"}, "656": {"type": "MIPS_26", "symbol": "__ieee754_sqrt", "scope": "LIBRARY"}, "668": {"type": "MIPS_26", "symbol": "fabs", "scope": "LIBRARY"}, "740": {"type": "MIPS_26", "symbol": "dpdiv"}, "788": {"type": "MIPS_26", "symbol": "dpsub"}, "804": {"type": "MIPS_26", "symbol": "dpdiv"}, "844": {"type": "MIPS_26", "symbol": "dpsub"}, "900": {"type": "MIPS_26", "symbol": "dpsub"}, "916": {"type": "MIPS_26", "symbol": "dpdiv"}, "996": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1028": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1052": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1056": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1084": {"type": "MIPS_26", "symbol": "dpsub"}, "1104": {"type": "MIPS_26", "symbol": "dpmul"}, "1128": {"type": "MIPS_26", "symbol": "dpmul"}, "1136": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1140": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1148": {"type": "MIPS_26", "symbol": "dpsub"}, "1164": {"type": "MIPS_26", "symbol": "dpmul"}, "1184": {"type": "MIPS_26", "symbol": "dpsub"}, "1200": {"type": "MIPS_26", "symbol": "dpmul"}, "1212": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1216": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1224": {"type": "MIPS_26", "symbol": "dpmul"}, "1236": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1240": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1248": {"type": "MIPS_26", "symbol": "dpmul"}, "1260": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1264": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1272": {"type": "MIPS_26", "symbol": "dpmul"}, "1288": {"type": "MIPS_26", "symbol": "dpsub"}, "1308": {"type": "MIPS_26", "symbol": "dpadd"}, "1336": {"type": "MIPS_26", "symbol": "dpsub"}, "1392": {"type": "MIPS_26", "symbol": "dpmul"}, "1528": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1536": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1548": {"type": "MIPS_26", "symbol": "dpsub"}, "1568": {"type": "MIPS_26", "symbol": "dpadd"}, "1588": {"type": "MIPS_26", "symbol": "dpdiv"}, "1608": {"type": "MIPS_26", "symbol": "dpmul"}, "1684": {"type": "MIPS_26", "symbol": "dpsub"}, "1700": {"type": "MIPS_26", "symbol": "dpsub"}, "1720": {"type": "MIPS_26", "symbol": "dpmul"}, "1736": {"type": "MIPS_26", "symbol": "dpsub"}, "1756": {"type": "MIPS_26", "symbol": "dpmul"}, "1772": {"type": "MIPS_26", "symbol": "dpsub"}, "1788": {"type": "MIPS_26", "symbol": "dpmul"}, "1808": {"type": "MIPS_26", "symbol": "dpmul"}, "1828": {"type": "MIPS_26", "symbol": "dpmul"}, "1840": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1844": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1852": {"type": "MIPS_26", "symbol": "dpmul"}, "1860": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1864": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1872": {"type": "MIPS_26", "symbol": "dpadd"}, "1888": {"type": "MIPS_26", "symbol": "dpmul"}, "1896": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1900": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1908": {"type": "MIPS_26", "symbol": "dpadd"}, "1924": {"type": "MIPS_26", "symbol": "dpmul"}, "1932": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1936": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1944": {"type": "MIPS_26", "symbol": "dpadd"}, "1960": {"type": "MIPS_26", "symbol": "dpmul"}, "1968": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1972": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1980": {"type": "MIPS_26", "symbol": "dpadd"}, "1996": {"type": "MIPS_26", "symbol": "dpmul"}, "2004": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2008": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2016": {"type": "MIPS_26", "symbol": "dpadd"}, "2032": {"type": "MIPS_26", "symbol": "dpmul"}, "2052": {"type": "MIPS_26", "symbol": "dpadd"}, "2068": {"type": "MIPS_26", "symbol": "dpmul"}, "2084": {"type": "MIPS_26", "symbol": "dpadd"}, "2104": {"type": "MIPS_26", "symbol": "dpmul"}, "2124": {"type": "MIPS_26", "symbol": "dpadd"}, "2140": {"type": "MIPS_26", "symbol": "dpadd"}, "2160": {"type": "MIPS_26", "symbol": "dpsub"}, "2176": {"type": "MIPS_26", "symbol": "dpsub"}, "2192": {"type": "MIPS_26", "symbol": "dpsub"}, "2212": {"type": "MIPS_26", "symbol": "dpmul"}, "2232": {"type": "MIPS_26", "symbol": "dpmul"}, "2252": {"type": "MIPS_26", "symbol": "dpmul"}, "2268": {"type": "MIPS_26", "symbol": "dpadd"}, "2288": {"type": "MIPS_26", "symbol": "dpadd"}, "2308": {"type": "MIPS_26", "symbol": "dpsub"}, "2324": {"type": "MIPS_26", "symbol": "dpsub"}, "2336": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2340": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2348": {"type": "MIPS_26", "symbol": "dpmul"}, "2360": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2364": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2372": {"type": "MIPS_26", "symbol": "dpmul"}, "2384": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2388": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2396": {"type": "MIPS_26", "symbol": "dpmul"}, "2412": {"type": "MIPS_26", "symbol": "dpadd"}, "2428": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2436": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2440": {"type": "MIPS_26", "symbol": "dpadd"}, "2452": {"type": "MIPS_26", "symbol": "litodp"}, "2472": {"type": "MIPS_26", "symbol": "dpadd"}, "2484": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2492": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2504": {"type": "MIPS_26", "symbol": "dpadd"}, "2520": {"type": "MIPS_26", "symbol": "dpadd"}, "2540": {"type": "MIPS_26", "symbol": "dpsub"}, "2556": {"type": "MIPS_26", "symbol": "dpsub"}, "2572": {"type": "MIPS_26", "symbol": "dpsub"}, "2588": {"type": "MIPS_26", "symbol": "dpsub"}, "2676": {"type": "MIPS_26", "symbol": "dpsub"}, "2692": {"type": "MIPS_26", "symbol": "dpmul"}, "2712": {"type": "MIPS_26", "symbol": "dpmul"}, "2728": {"type": "MIPS_26", "symbol": "dpadd"}, "2748": {"type": "MIPS_26", "symbol": "dpmul"}, "2768": {"type": "MIPS_26", "symbol": "dpadd"}, "2832": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2840": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2856": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2860": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2868": {"type": "MIPS_26", "symbol": "dpadd"}, "2888": {"type": "MIPS_26", "symbol": "dpsub"}, "2904": {"type": "MIPS_26", "symbol": "dpcmp"}, "2920": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2928": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2992": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3004": {"type": "MIPS_26", "symbol": "dpsub"}, "3020": {"type": "MIPS_26", "symbol": "dpcmp"}, "3036": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3044": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3052": {"type": "MIPS_26", "symbol": "dpmul"}, "3068": {"type": "MIPS_26", "symbol": "dpmul"}, "3216": {"type": "MIPS_26", "symbol": "dpsub"}, "3236": {"type": "MIPS_26", "symbol": "dpadd"}, "3260": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3264": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3268": {"type": "MIPS_26", "symbol": "dpmul"}, "3288": {"type": "MIPS_26", "symbol": "dpsub"}, "3304": {"type": "MIPS_26", "symbol": "dpsub"}, "3312": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3316": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3324": {"type": "MIPS_26", "symbol": "dpmul"}, "3336": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3340": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3348": {"type": "MIPS_26", "symbol": "dpmul"}, "3364": {"type": "MIPS_26", "symbol": "dpadd"}, "3384": {"type": "MIPS_26", "symbol": "dpadd"}, "3404": {"type": "MIPS_26", "symbol": "dpsub"}, "3420": {"type": "MIPS_26", "symbol": "dpsub"}, "3440": {"type": "MIPS_26", "symbol": "dpmul"}, "3448": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3452": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3464": {"type": "MIPS_26", "symbol": "dpmul"}, "3472": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3476": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3484": {"type": "MIPS_26", "symbol": "dpadd"}, "3500": {"type": "MIPS_26", "symbol": "dpmul"}, "3508": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3512": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3520": {"type": "MIPS_26", "symbol": "dpadd"}, "3536": {"type": "MIPS_26", "symbol": "dpmul"}, "3544": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3548": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3556": {"type": "MIPS_26", "symbol": "dpadd"}, "3572": {"type": "MIPS_26", "symbol": "dpmul"}, "3580": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3584": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3592": {"type": "MIPS_26", "symbol": "dpadd"}, "3608": {"type": "MIPS_26", "symbol": "dpmul"}, "3624": {"type": "MIPS_26", "symbol": "dpsub"}, "3644": {"type": "MIPS_26", "symbol": "dpmul"}, "3668": {"type": "MIPS_)PS2SDB", 8192}, + std::string_view{R"PS2SDB(26", "symbol": "dpsub"}, "3684": {"type": "MIPS_26", "symbol": "dpdiv"}, "3704": {"type": "MIPS_26", "symbol": "dpmul"}, "3720": {"type": "MIPS_26", "symbol": "dpadd"}, "3736": {"type": "MIPS_26", "symbol": "dpsub"}, "3752": {"type": "MIPS_26", "symbol": "dpsub"}, "3772": {"type": "MIPS_26", "symbol": "dpsub"}, "3816": {"type": "MIPS_26", "symbol": "scalbn"}, "3868": {"type": "MIPS_26", "symbol": "dpmul"}}}}, "c4a7623ab2eb801f750ad1abfa08a1181ef47da2": {"6be3aa4c": {"type": "FUNCTION", "size": 3384, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"184": {"type": "MIPS_26", "symbol": "dpadd"}, "372": {"type": "MIPS_26", "symbol": "dpsub"}, "432": {"type": "MIPS_26", "symbol": "dpsub"}, "472": {"type": "MIPS_26", "symbol": "dpdiv"}, "524": {"type": "MIPS_26", "symbol": "__ieee754_sqrt", "scope": "LIBRARY"}, "540": {"type": "MIPS_26", "symbol": "fabs", "scope": "LIBRARY"}, "600": {"type": "MIPS_26", "symbol": "dpdiv"}, "648": {"type": "MIPS_26", "symbol": "dpsub"}, "660": {"type": "MIPS_26", "symbol": "dpdiv"}, "692": {"type": "MIPS_26", "symbol": "dpsub"}, "744": {"type": "MIPS_26", "symbol": "dpsub"}, "756": {"type": "MIPS_26", "symbol": "dpdiv"}, "820": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "828": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "836": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "868": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "896": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "916": {"type": "MIPS_26", "symbol": "dpsub"}, "932": {"type": "MIPS_26", "symbol": "dpmul"}, "952": {"type": "MIPS_26", "symbol": "dpmul"}, "960": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "964": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "968": {"type": "MIPS_26", "symbol": "dpsub"}, "980": {"type": "MIPS_26", "symbol": "dpmul"}, "996": {"type": "MIPS_26", "symbol": "dpsub"}, "1008": {"type": "MIPS_26", "symbol": "dpmul"}, "1016": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1020": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1028": {"type": "MIPS_26", "symbol": "dpmul"}, "1036": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1040": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1048": {"type": "MIPS_26", "symbol": "dpmul"}, "1056": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1060": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1068": {"type": "MIPS_26", "symbol": "dpmul"}, "1080": {"type": "MIPS_26", "symbol": "dpsub"}, "1096": {"type": "MIPS_26", "symbol": "dpadd"}, "1124": {"type": "MIPS_26", "symbol": "dpsub"}, "1180": {"type": "MIPS_26", "symbol": "dpmul"}, "1324": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1328": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1348": {"type": "MIPS_26", "symbol": "dpsub"}, "1364": {"type": "MIPS_26", "symbol": "dpadd"}, "1380": {"type": "MIPS_26", "symbol": "dpdiv"}, "1396": {"type": "MIPS_26", "symbol": "dpmul"}, "1468": {"type": "MIPS_26", "symbol": "dpsub"}, "1480": {"type": "MIPS_26", "symbol": "dpsub"}, "1496": {"type": "MIPS_26", "symbol": "dpmul"}, "1508": {"type": "MIPS_26", "symbol": "dpsub"}, "1524": {"type": "MIPS_26", "symbol": "dpmul"}, "1536": {"type": "MIPS_26", "symbol": "dpsub"}, "1548": {"type": "MIPS_26", "symbol": "dpmul"}, "1564": {"type": "MIPS_26", "symbol": "dpmul"}, "1580": {"type": "MIPS_26", "symbol": "dpmul"}, "1588": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1592": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1600": {"type": "MIPS_26", "symbol": "dpmul"}, "1608": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1612": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1616": {"type": "MIPS_26", "symbol": "dpadd"}, "1628": {"type": "MIPS_26", "symbol": "dpmul"}, "1636": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1640": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1644": {"type": "MIPS_26", "symbol": "dpadd"}, "1656": {"type": "MIPS_26", "symbol": "dpmul"}, "1664": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1668": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1672": {"type": "MIPS_26", "symbol": "dpadd"}, "1684": {"type": "MIPS_26", "symbol": "dpmul"}, "1692": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1696": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1700": {"type": "MIPS_26", "symbol": "dpadd"}, "1712": {"type": "MIPS_26", "symbol": "dpmul"}, "1720": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1724": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1728": {"type": "MIPS_26", "symbol": "dpadd"}, "1740": {"type": "MIPS_26", "symbol": "dpmul"}, "1756": {"type": "MIPS_26", "symbol": "dpadd"}, "1768": {"type": "MIPS_26", "symbol": "dpmul"}, "1780": {"type": "MIPS_26", "symbol": "dpadd"}, "1796": {"type": "MIPS_26", "symbol": "dpmul"}, "1812": {"type": "MIPS_26", "symbol": "dpadd"}, "1824": {"type": "MIPS_26", "symbol": "dpadd"}, "1840": {"type": "MIPS_26", "symbol": "dpsub"}, "1852": {"type": "MIPS_26", "symbol": "dpsub"}, "1864": {"type": "MIPS_26", "symbol": "dpsub"}, "1880": {"type": "MIPS_26", "symbol": "dpmul"}, "1896": {"type": "MIPS_26", "symbol": "dpmul"}, "1912": {"type": "MIPS_26", "symbol": "dpmul"}, "1924": {"type": "MIPS_26", "symbol": "dpadd"}, "1940": {"type": "MIPS_26", "symbol": "dpadd"}, "1956": {"type": "MIPS_26", "symbol": "dpsub"}, "1968": {"type": "MIPS_26", "symbol": "dpsub"}, "1976": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1980": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1988": {"type": "MIPS_26", "symbol": "dpmul"}, "1996": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2000": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2008": {"type": "MIPS_26", "symbol": "dpmul"}, "2016": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2020": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2028": {"type": "MIPS_26", "symbol": "dpmul"}, "2040": {"type": "MIPS_26", "symbol": "dpadd"}, "2048": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2056": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2064": {"type": "MIPS_26", "symbol": "dpadd"}, "2076": {"type": "MIPS_26", "symbol": "litodp"}, "2092": {"type": "MIPS_26", "symbol": "dpadd"}, "2100": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2108": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2120": {"type": "MIPS_26", "symbol": "dpadd"}, "2132": {"type": "MIPS_26", "symbol": "dpadd"}, "2156": {"type": "MIPS_26", "symbol": "dpsub"}, "2168": {"type": "MIPS_26", "symbol": "dpsub"}, "2180": {"type": "MIPS_26", "symbol": "dpsub"}, "2192": {"type": "MIPS_26", "symbol": "dpsub"}, "2272": {"type": "MIPS_26", "symbol": "dpsub"}, "2284": {"type": "MIPS_26", "symbol": "dpmul"}, "2300": {"type": "MIPS_26", "symbol": "dpmul"}, "2312": {"type": "MIPS_26", "symbol": "dpadd"}, "2328": {"type": "MIPS_26", "symbol": "dpmul"}, "2344": {"type": "MIPS_26", "symbol": "dpadd"}, "2400": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2408": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2412": {"type": "MIPS_26", "symbol": "dpmul"}, "2432": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2436": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2440": {"type": "MIPS_26", "symbol": "dpadd"}, "2456": {"type": "MIPS_26", "symbol": "dpsub"}, "2468": {"type": "MIPS_26", "symbol": "dpcmp"}, "2480": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2488": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2492": {"type": "MIPS_26", "symbol": "dpmul")PS2SDB", 8192}, + std::string_view{R"PS2SDB(}, "2560": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2568": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2572": {"type": "MIPS_26", "symbol": "dpmul"}, "2596": {"type": "MIPS_26", "symbol": "dpsub"}, "2608": {"type": "MIPS_26", "symbol": "dpcmp"}, "2624": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2632": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2636": {"type": "MIPS_26", "symbol": "dpmul"}, "2796": {"type": "MIPS_26", "symbol": "dpsub"}, "2812": {"type": "MIPS_26", "symbol": "dpadd"}, "2832": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2836": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2840": {"type": "MIPS_26", "symbol": "dpmul"}, "2856": {"type": "MIPS_26", "symbol": "dpsub"}, "2868": {"type": "MIPS_26", "symbol": "dpsub"}, "2876": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2880": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2884": {"type": "MIPS_26", "symbol": "dpmul"}, "2892": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2896": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2904": {"type": "MIPS_26", "symbol": "dpmul"}, "2916": {"type": "MIPS_26", "symbol": "dpadd"}, "2932": {"type": "MIPS_26", "symbol": "dpadd"}, "2948": {"type": "MIPS_26", "symbol": "dpsub"}, "2960": {"type": "MIPS_26", "symbol": "dpsub"}, "2976": {"type": "MIPS_26", "symbol": "dpmul"}, "2988": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2992": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2996": {"type": "MIPS_26", "symbol": "dpmul"}, "3004": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3008": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3012": {"type": "MIPS_26", "symbol": "dpadd"}, "3024": {"type": "MIPS_26", "symbol": "dpmul"}, "3032": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3036": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3040": {"type": "MIPS_26", "symbol": "dpadd"}, "3052": {"type": "MIPS_26", "symbol": "dpmul"}, "3060": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3064": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3068": {"type": "MIPS_26", "symbol": "dpadd"}, "3080": {"type": "MIPS_26", "symbol": "dpmul"}, "3088": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3092": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3096": {"type": "MIPS_26", "symbol": "dpadd"}, "3108": {"type": "MIPS_26", "symbol": "dpmul"}, "3120": {"type": "MIPS_26", "symbol": "dpsub"}, "3136": {"type": "MIPS_26", "symbol": "dpmul"}, "3156": {"type": "MIPS_26", "symbol": "dpsub"}, "3168": {"type": "MIPS_26", "symbol": "dpdiv"}, "3184": {"type": "MIPS_26", "symbol": "dpmul"}, "3196": {"type": "MIPS_26", "symbol": "dpadd"}, "3208": {"type": "MIPS_26", "symbol": "dpsub"}, "3220": {"type": "MIPS_26", "symbol": "dpsub"}, "3232": {"type": "MIPS_26", "symbol": "dpsub"}, "3276": {"type": "MIPS_26", "symbol": "scalbn"}, "3328": {"type": "MIPS_26", "symbol": "dpmul"}}}}}, "atan": {"f06473079eef8c9bf47bac5a3f724c25f27f3c0b": {"e192dd99": {"type": "FUNCTION", "size": 1224, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"120": {"type": "MIPS_26", "symbol": "dpadd"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "156": {"type": "MIPS_26", "symbol": "dpadd"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_26", "symbol": "dpsub"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "204": {"type": "MIPS_26", "symbol": "dpsub"}, "260": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "268": {"type": "MIPS_26", "symbol": "dpadd"}, "288": {"type": "MIPS_26", "symbol": "dpcmp"}, "320": {"type": "MIPS_26", "symbol": "fabs", "scope": "LIBRARY"}, "380": {"type": "MIPS_26", "symbol": "dpadd"}, "400": {"type": "MIPS_26", "symbol": "dpsub"}, "424": {"type": "MIPS_26", "symbol": "dpadd"}, "464": {"type": "MIPS_26", "symbol": "dpsub"}, "484": {"type": "MIPS_26", "symbol": "dpadd"}, "544": {"type": "MIPS_26", "symbol": "dpsub"}, "564": {"type": "MIPS_26", "symbol": "dpmul"}, "584": {"type": "MIPS_26", "symbol": "dpadd"}, "620": {"type": "MIPS_26", "symbol": "dpdiv"}, "640": {"type": "MIPS_26", "symbol": "dpmul"}, "644": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "660": {"type": "MIPS_26", "symbol": "dpmul"}, "664": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "680": {"type": "MIPS_26", "symbol": "dpmul"}, "696": {"type": "MIPS_26", "symbol": "dpadd"}, "712": {"type": "MIPS_26", "symbol": "dpmul"}, "728": {"type": "MIPS_26", "symbol": "dpadd"}, "744": {"type": "MIPS_26", "symbol": "dpmul"}, "760": {"type": "MIPS_26", "symbol": "dpadd"}, "776": {"type": "MIPS_26", "symbol": "dpmul"}, "792": {"type": "MIPS_26", "symbol": "dpadd"}, "808": {"type": "MIPS_26", "symbol": "dpmul"}, "824": {"type": "MIPS_26", "symbol": "dpadd"}, "840": {"type": "MIPS_26", "symbol": "dpmul"}, "860": {"type": "MIPS_26", "symbol": "dpmul"}, "876": {"type": "MIPS_26", "symbol": "dpadd"}, "892": {"type": "MIPS_26", "symbol": "dpmul"}, "908": {"type": "MIPS_26", "symbol": "dpadd"}, "924": {"type": "MIPS_26", "symbol": "dpmul"}, "940": {"type": "MIPS_26", "symbol": "dpadd"}, "956": {"type": "MIPS_26", "symbol": "dpmul"}, "972": {"type": "MIPS_26", "symbol": "dpadd"}, "988": {"type": "MIPS_26", "symbol": "dpmul"}, "1012": {"type": "MIPS_26", "symbol": "dpadd"}, "1028": {"type": "MIPS_26", "symbol": "dpmul"}, "1044": {"type": "MIPS_26", "symbol": "dpsub"}, "1072": {"type": "MIPS_26", "symbol": "dpadd"}, "1088": {"type": "MIPS_26", "symbol": "dpmul"}, "1096": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1104": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1112": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1116": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1124": {"type": "MIPS_26", "symbol": "dpsub"}, "1140": {"type": "MIPS_26", "symbol": "dpsub"}, "1156": {"type": "MIPS_26", "symbol": "dpsub"}, "1180": {"type": "MIPS_26", "symbol": "dpsub"}}}}, "9b32ec62bffa037ca8a28e5c5c62b941a7bd0367": {"0e9c8b86": {"type": "FUNCTION", "size": 1036, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.1.3", "2.1.4", "2.2.1", "2.2.2", "2.3.0", "2.3.2", "2.3.4", "2.4.2", "2.4.3", "2.5.5", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"120": {"type": "MIPS_26", "symbol": "dpadd"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "152": {"type": "MIPS_26", "symbol": "dpadd"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "172": {"type": "MIPS_26", "symbol": "dpsub"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "188": {"type": "MIPS_26", "symbol": "dpsub"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "240": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "248": {"type": "MIPS_26", "symbol": "dpadd"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "264": {"type)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": "MIPS_26", "symbol": "dpcmp"}, "288": {"type": "MIPS_26", "symbol": "fabs", "scope": "LIBRARY"}, "336": {"type": "MIPS_26", "symbol": "dpadd"}, "356": {"type": "MIPS_26", "symbol": "dpsub"}, "376": {"type": "MIPS_26", "symbol": "dpadd"}, "408": {"type": "MIPS_26", "symbol": "dpsub"}, "424": {"type": "MIPS_26", "symbol": "dpadd"}, "480": {"type": "MIPS_26", "symbol": "dpsub"}, "496": {"type": "MIPS_26", "symbol": "dpmul"}, "512": {"type": "MIPS_26", "symbol": "dpadd"}, "544": {"type": "MIPS_26", "symbol": "dpdiv"}, "560": {"type": "MIPS_26", "symbol": "dpmul"}, "568": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "576": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "584": {"type": "MIPS_26", "symbol": "dpmul"}, "600": {"type": "MIPS_26", "symbol": "dpmul"}, "612": {"type": "MIPS_26", "symbol": "dpadd"}, "624": {"type": "MIPS_26", "symbol": "dpmul"}, "636": {"type": "MIPS_26", "symbol": "dpadd"}, "648": {"type": "MIPS_26", "symbol": "dpmul"}, "660": {"type": "MIPS_26", "symbol": "dpadd"}, "672": {"type": "MIPS_26", "symbol": "dpmul"}, "684": {"type": "MIPS_26", "symbol": "dpadd"}, "696": {"type": "MIPS_26", "symbol": "dpmul"}, "704": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "708": {"type": "MIPS_26", "symbol": "dpadd"}, "720": {"type": "MIPS_26", "symbol": "dpmul"}, "736": {"type": "MIPS_26", "symbol": "dpmul"}, "748": {"type": "MIPS_26", "symbol": "dpadd"}, "760": {"type": "MIPS_26", "symbol": "dpmul"}, "772": {"type": "MIPS_26", "symbol": "dpadd"}, "784": {"type": "MIPS_26", "symbol": "dpmul"}, "796": {"type": "MIPS_26", "symbol": "dpadd"}, "808": {"type": "MIPS_26", "symbol": "dpmul"}, "820": {"type": "MIPS_26", "symbol": "dpadd"}, "832": {"type": "MIPS_26", "symbol": "dpmul"}, "844": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "852": {"type": "MIPS_26", "symbol": "dpadd"}, "864": {"type": "MIPS_26", "symbol": "dpmul"}, "876": {"type": "MIPS_26", "symbol": "dpsub"}, "896": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "908": {"type": "MIPS_26", "symbol": "dpadd"}, "920": {"type": "MIPS_26", "symbol": "dpmul"}, "928": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "936": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "944": {"type": "MIPS_26", "symbol": "dpsub"}, "956": {"type": "MIPS_26", "symbol": "dpsub"}, "968": {"type": "MIPS_26", "symbol": "dpsub"}, "988": {"type": "MIPS_26", "symbol": "dpsub"}}}}, "41d83d5cda0ac2619ea327abbd96582074ec6e6f": {"b0bedc0a": {"type": "FUNCTION", "size": 1164, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"108": {"type": "MIPS_26", "symbol": "dpadd"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "228": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "236": {"type": "MIPS_26", "symbol": "dpadd"}, "256": {"type": "MIPS_26", "symbol": "dpcmp"}, "284": {"type": "MIPS_26", "symbol": "dpmul"}, "304": {"type": "MIPS_26", "symbol": "dpmul"}, "312": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "328": {"type": "MIPS_26", "symbol": "dpmul"}, "336": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "348": {"type": "MIPS_26", "symbol": "dpadd"}, "364": {"type": "MIPS_26", "symbol": "dpmul"}, "372": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "376": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "384": {"type": "MIPS_26", "symbol": "dpadd"}, "400": {"type": "MIPS_26", "symbol": "dpmul"}, "408": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "412": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "420": {"type": "MIPS_26", "symbol": "dpadd"}, "436": {"type": "MIPS_26", "symbol": "dpmul"}, "444": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "448": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "456": {"type": "MIPS_26", "symbol": "dpadd"}, "472": {"type": "MIPS_26", "symbol": "dpmul"}, "480": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "484": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "492": {"type": "MIPS_26", "symbol": "dpadd"}, "508": {"type": "MIPS_26", "symbol": "dpmul"}, "516": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "520": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "532": {"type": "MIPS_26", "symbol": "dpmul"}, "540": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "544": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "552": {"type": "MIPS_26", "symbol": "dpadd"}, "568": {"type": "MIPS_26", "symbol": "dpmul"}, "576": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "580": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "588": {"type": "MIPS_26", "symbol": "dpadd"}, "604": {"type": "MIPS_26", "symbol": "dpmul"}, "612": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "616": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "624": {"type": "MIPS_26", "symbol": "dpadd"}, "640": {"type": "MIPS_26", "symbol": "dpmul"}, "648": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "652": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "660": {"type": "MIPS_26", "symbol": "dpadd"}, "676": {"type": "MIPS_26", "symbol": "dpmul"}, "700": {"type": "MIPS_26", "symbol": "dpadd"}, "716": {"type": "MIPS_26", "symbol": "dpmul"}, "732": {"type": "MIPS_26", "symbol": "dpsub"}, "756": {"type": "MIPS_26", "symbol": "dpadd"}, "760": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "772": {"type": "MIPS_26", "symbol": "dpmul"}, "784": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "788": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "796": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "808": {"type": "MIPS_26", "symbol": "dpsub"}, "824": {"type": "MIPS_26", "symbol": "dpsub"}, "840": {"type": "MIPS_26", "symbol": "dpsub"}, "872": {"type": "MIPS_26", "symbol": "fabs", "scope": "LIBRARY"}, "932": {"type": "MIPS_26", "symbol": "dpadd"}, "952": {"type": "MIPS_26", "symbol": "dpsub"}, "976": {"type": "MIPS_26", "symbol": "dpadd"}, "992": {"type": "MIPS_26", "symbol": "dpdiv"}, "1028": {"type": "MIPS_26", "symbol": "dpsub"}, "1052": {"type": "MIPS_26", "symbol": "dpadd"}, "1104": {"type": "MIPS_26", "symbol": "dpsub"}, "1124": {"type": "MIPS_26", "symbol": "dpmul"}}}}}, "atan2": {"c0a5a6b6b96e3534f1ce618782a40e20574c6678": {"9d699d44": {"type": "FUNCTION", "size": 20, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "__ieee754_atan2", "scope": "LIBRARY"}}}}, "582604e3af2b4fcc28e204bc53ae2f14ab5d7d10": {"6150914e": {"type": "FUNCTION", "size": 280, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.1.3", "2.1.4", "2.2.1", "2.2.2", "2.3.0", "2.3.2", "2.3.4", "2.4.2", "2.4.3", "2.5.5", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "__ieee754_atan2", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": "__fdlib_version"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "64": {"type": "MIPS_26", "symbol": "isnan"}, "80": {"type": "MIPS_26", "symbol": "isnan"}, "104": {)PS2SDB", 8192}, + std::string_view{R"PS2SDB("type": "MIPS_26", "symbol": "dpcmp"}, "124": {"type": "MIPS_26", "symbol": "dpcmp"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_26", "symbol": "matherr", "scope": "LIBRARY"}, "200": {"type": "MIPS_26", "symbol": "__errno"}, "228": {"type": "MIPS_26", "symbol": "__errno"}}}}}, "fmod": {"c0a5a6b6b96e3534f1ce618782a40e20574c6678": {"44f6ff47": {"type": "FUNCTION", "size": 20, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.3", "2.5.2", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "__ieee754_fmod", "scope": "LIBRARY"}}}}, "1eb60abb4782bc90a96c64c7b427e572fdfcdea4": {"ccb2ce03": {"type": "FUNCTION", "size": 284, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.1.4", "2.2.4", "2.4.2", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "__ieee754_fmod", "scope": "LIBRARY"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": "__fdlib_version"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "64": {"type": "MIPS_26", "symbol": "isnan"}, "80": {"type": "MIPS_26", "symbol": "isnan"}, "100": {"type": "MIPS_26", "symbol": "dpcmp"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "188": {"type": "MIPS_26", "symbol": "matherr", "scope": "LIBRARY"}, "204": {"type": "MIPS_26", "symbol": "__errno"}, "232": {"type": "MIPS_26", "symbol": "__errno"}}}}}, "pow": {"c0a5a6b6b96e3534f1ce618782a40e20574c6678": {"c4496138": {"type": "FUNCTION", "size": 20, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.3", "2.5.0", "2.5.2", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "__ieee754_pow", "scope": "LIBRARY"}}}}, "f6a4a75d767f1dc9e75a71dee107bca2b088ecb8": {"a2ac22bf": {"type": "FUNCTION", "size": 1072, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.0.7", "2.1.4", "2.3.0", "2.3.2", "2.4.2", "2.4.3", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": "__fdlib_version"}, "40": {"type": "MIPS_26", "symbol": "__ieee754_pow", "scope": "LIBRARY"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "68": {"type": "MIPS_26", "symbol": "isnan"}, "84": {"type": "MIPS_26", "symbol": "isnan"}, "100": {"type": "MIPS_26", "symbol": "dpcmp"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "176": {"type": "MIPS_26", "symbol": "matherr", "scope": "LIBRARY"}, "192": {"type": "MIPS_26", "symbol": "__errno"}, "216": {"type": "MIPS_26", "symbol": "dpcmp"}, "232": {"type": "MIPS_26", "symbol": "dpcmp"}, "244": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "284": {"type": "MIPS_26", "symbol": "matherr", "scope": "LIBRARY"}, "300": {"type": "MIPS_26", "symbol": "__errno"}, "316": {"type": "MIPS_26", "symbol": "finite"}, "332": {"type": "MIPS_26", "symbol": "dpcmp"}, "348": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "356": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "392": {"type": "MIPS_HI16", "symbol": "", "original": "__infinity"}, "400": {"type": "MIPS_26", "symbol": "dpsub"}, "404": {"type": "MIPS_LO16", "symbol": "", "original": "__infinity"}, "412": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "428": {"type": "MIPS_26", "symbol": "matherr", "scope": "LIBRARY"}, "444": {"type": "MIPS_26", "symbol": "__errno"}, "460": {"type": "MIPS_26", "symbol": "finite"}, "476": {"type": "MIPS_26", "symbol": "finite"}, "492": {"type": "MIPS_26", "symbol": "finite"}, "508": {"type": "MIPS_26", "symbol": "isnan"}, "520": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "528": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "564": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "568": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "576": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "592": {"type": "MIPS_26", "symbol": "matherr", "scope": "LIBRARY"}, "608": {"type": "MIPS_26", "symbol": "__errno"}, "628": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "656": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "660": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "676": {"type": "MIPS_26", "symbol": "dpmul"}, "692": {"type": "MIPS_26", "symbol": "dpcmp"}, "704": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "708": {"type": "MIPS_26", "symbol": "rint", "scope": "LIBRARY"}, "720": {"type": "MIPS_26", "symbol": "dpcmp"}, "732": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "736": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "740": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "752": {"type": "MIPS_HI16", "symbol": "", "original": "__infinity"}, "764": {"type": "MIPS_LO16", "symbol": "", "original": "__infinity"}, "772": {"type": "MIPS_26", "symbol": "dpmul"}, "788": {"type": "MIPS_26", "symbol": "dpcmp"}, "800": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "804": {"type": "MIPS_26", "symbol": "rint", "scope": "LIBRARY"}, "816": {"type": "MIPS_26", "symbol": "dpcmp"}, "832": {"type": "MIPS_26", "symbol": "dpsub"}, "844": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "872": {"type": "MIPS_26", "symbol": "dpcmp"}, "888": {"type": "MIPS_26", "symbol": "finite"}, "904": {"type": "MIPS_26", "symbol": "finite"}, "916": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "924": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "928": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "964": {"type": "MIPS_26", "symbol": "matherr", "scope": "LIBRARY"}, "980": {"type": "MIPS_26", "symbol": "__errno"}, "1008": {"type": "MIPS_26", "symbol": "__errno"}}}}, "147c71741fc31f31178c18b1158e8cd97ceea0ae": {"31fa4fbf": {"type": "FUNCTION", "size": 1072, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "__ieee754_pow", "scope": "LIBRARY"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": "__fdlib_version"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "68": {"type": "MIPS_26", "symbol": "isnan"}, "84": {"type": "MIPS_26", "symbol": "isnan"}, "100": {"type": "MIPS_26", "symbol": "dpcmp"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "176": {"type": "MIPS_26", "symbol": "matherr", "scope": "LIBRARY"}, "192": {"type": "MIPS_26", "symbol": "__errno"}, "216": {"type": "MIPS_26", "symbol": "dpcmp"}, "232": {"type": "MIPS_26", "symbol": "dpcmp"}, "244": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "284": {"type": "MIPS_26", "symbol": "matherr", "scope": "LIBRARY"}, "300": {"type": "MIPS_26", "symbol": "__errno"}, "316": {"type": "MIPS_2)PS2SDB", 8192}, + std::string_view{R"PS2SDB(6", "symbol": "finite"}, "332": {"type": "MIPS_26", "symbol": "dpcmp"}, "348": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "356": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "392": {"type": "MIPS_HI16", "symbol": "", "original": "__infinity"}, "400": {"type": "MIPS_26", "symbol": "dpsub"}, "404": {"type": "MIPS_LO16", "symbol": "", "original": "__infinity"}, "412": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "428": {"type": "MIPS_26", "symbol": "matherr", "scope": "LIBRARY"}, "444": {"type": "MIPS_26", "symbol": "__errno"}, "460": {"type": "MIPS_26", "symbol": "finite"}, "476": {"type": "MIPS_26", "symbol": "finite"}, "492": {"type": "MIPS_26", "symbol": "finite"}, "508": {"type": "MIPS_26", "symbol": "isnan"}, "520": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "528": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "564": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "568": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "576": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "592": {"type": "MIPS_26", "symbol": "matherr", "scope": "LIBRARY"}, "608": {"type": "MIPS_26", "symbol": "__errno"}, "628": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "656": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "660": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "676": {"type": "MIPS_26", "symbol": "dpmul"}, "692": {"type": "MIPS_26", "symbol": "dpcmp"}, "704": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "708": {"type": "MIPS_26", "symbol": "rint", "scope": "LIBRARY"}, "720": {"type": "MIPS_26", "symbol": "dpcmp"}, "732": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "736": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "740": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "752": {"type": "MIPS_HI16", "symbol": "", "original": "__infinity"}, "764": {"type": "MIPS_LO16", "symbol": "", "original": "__infinity"}, "772": {"type": "MIPS_26", "symbol": "dpmul"}, "788": {"type": "MIPS_26", "symbol": "dpcmp"}, "800": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "804": {"type": "MIPS_26", "symbol": "rint", "scope": "LIBRARY"}, "816": {"type": "MIPS_26", "symbol": "dpcmp"}, "832": {"type": "MIPS_26", "symbol": "dpsub"}, "844": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "872": {"type": "MIPS_26", "symbol": "dpcmp"}, "888": {"type": "MIPS_26", "symbol": "finite"}, "904": {"type": "MIPS_26", "symbol": "finite"}, "916": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "924": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "928": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "964": {"type": "MIPS_26", "symbol": "matherr", "scope": "LIBRARY"}, "980": {"type": "MIPS_26", "symbol": "__errno"}, "1008": {"type": "MIPS_26", "symbol": "__errno"}}}}}, "ceilf": {"e6272a33bfcc3b64d0b9387514e44662e56444f5": {"00000000": {"type": "FUNCTION", "size": 216, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.5.0", "2.5.2", "2.5.4", "2.7.0", "2.7.1", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "860663ed00b981d4328065b4260f31a9e130d678": {"00000000": {"type": "FUNCTION", "size": 212, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.3", "2.0.7", "2.1.3", "2.3.2", "2.3.4", "2.4.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "cbea2d107a4b4f9e32b759a8c97db4f7a0f60909": {"00000000": {"type": "FUNCTION", "size": 240, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "__kernel_tan": {"a8b11f58054b73edc54f8be2fb9ad6dbd5c3a5aa": {"92d99453": {"type": "FUNCTION", "size": 1384, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.3", "2.5.0", "2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"104": {"type": "MIPS_26", "symbol": "dptoli"}, "160": {"type": "MIPS_26", "symbol": "fabs", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "dpdiv"}, "224": {"type": "MIPS_26", "symbol": "dpdiv"}, "292": {"type": "MIPS_26", "symbol": "dpsub"}, "312": {"type": "MIPS_26", "symbol": "dpsub"}, "324": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "328": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "336": {"type": "MIPS_26", "symbol": "dpsub"}, "344": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "348": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "364": {"type": "MIPS_26", "symbol": "dpsub"}, "380": {"type": "MIPS_26", "symbol": "dpadd"}, "400": {"type": "MIPS_26", "symbol": "dpmul"}, "404": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "420": {"type": "MIPS_26", "symbol": "dpmul"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "440": {"type": "MIPS_26", "symbol": "dpmul"}, "456": {"type": "MIPS_26", "symbol": "dpadd"}, "472": {"type": "MIPS_26", "symbol": "dpmul"}, "488": {"type": "MIPS_26", "symbol": "dpadd"}, "504": {"type": "MIPS_26", "symbol": "dpmul"}, "520": {"type": "MIPS_26", "symbol": "dpadd"}, "536": {"type": "MIPS_26", "symbol": "dpmul"}, "552": {"type": "MIPS_26", "symbol": "dpadd"}, "568": {"type": "MIPS_26", "symbol": "dpmul"}, "584": {"type": "MIPS_26", "symbol": "dpadd"}, "604": {"type": "MIPS_26", "symbol": "dpmul"}, "620": {"type": "MIPS_26", "symbol": "dpadd"}, "636": {"type": "MIPS_26", "symbol": "dpmul"}, "652": {"type": "MIPS_26", "symbol": "dpadd"}, "668": {"type": "MIPS_26", "symbol": "dpmul"}, "684": {"type": "MIPS_26", "symbol": "dpadd"}, "700": {"type": "MIPS_26", "symbol": "dpmul"}, "716": {"type": "MIPS_26", "symbol": "dpadd"}, "732": {"type": "MIPS_26", "symbol": "dpmul"}, "748": {"type": "MIPS_26", "symbol": "dpadd"}, "764": {"type": "MIPS_26", "symbol": "dpmul"}, "784": {"type": "MIPS_26", "symbol": "dpmul"}, "804": {"type": "MIPS_26", "symbol": "dpadd"}, "820": {"type": "MIPS_26", "symbol": "dpmul"}, "836": {"type": "MIPS_26", "symbol": "dpadd"}, "852": {"type": "MIPS_26", "symbol": "dpmul"}, "868": {"type": "MIPS_26", "symbol": "dpadd"}, "888": {"type": "MIPS_26", "symbol": "dpmul"}, "904": {"type": "MIPS_26", "symbol": "dpadd"}, "924": {"type": "MIPS_26", "symbol": "dpadd"}, "956": {"type": "MIPS_26", "symbol": "litodp"}, "984": {"type": "MIPS_26", "symbol": "litodp"}, "1004": {"type": "MIPS_26", "symbol": "dpmul"}, "1024": {"type": "MIPS_26", "symbol": "dpadd"}, "1040": {"type": "MIPS_26", "symbol": "dpdiv"}, "1056": {"type": "MIPS_26", "symbol": "dpsub"}, "1072": {"type": "MIPS_26", "symbol": "dpsub"}, "1088": {"type": "MIPS_26", "symbol": "dpadd"}, "1104": {"type": "MIPS_26", "symbol": "dpsub"}, "1120": {"type": "MIPS_26", "symbol": "dpmul"}, "1176": {"type": "MIPS_26", "symbol": "dpsub"}, "1192": {"type": "MIPS_26", "symbol": "dpsub"}, "1216": {"type": "MIPS_26", "symbol": "dpdiv"}, "1240": {"type": "MIPS_26", "symbol": "dpmul"}, "1260": {"type": "MIPS_26", "symbol": "dpadd"}, "1280": {"type": "MIPS_26", "symbol": "dpmul"}, "1296": {"type": "MIPS_26", "symbol": "dpadd"}, "1312": {"type": "MIPS_26", "symbol": "dpmul"}, "1328": {"type": "MIPS_26", "symbol": "dpadd"}}}}, "c6acf6b4be2f8bf786157e68cfb914ea10cdf85b": {"d32b9f6b": {"type": "FUNCTION", "size": 1144, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.3.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"100": {"type": "MIPS_26", "symbol": "dptoli"}, "152": {"type": "MIPS_26", "symbol": "fabs", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "dpdiv"}, "204": {"type": "MIPS_26", "symbol": "dpdiv"}, "256": {"type": "MIPS_26", "symbol": "dpsub"}, "272": {"type": "MIPS_26", "symbol": "dpsub"}, "284": {"type")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: "MIPS_HI16", "symbol": "", "original": ".rodata"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "292": {"type": "MIPS_26", "symbol": "dpsub"}, "300": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "312": {"type": "MIPS_26", "symbol": "dpsub"}, "328": {"type": "MIPS_26", "symbol": "dpadd"}, "344": {"type": "MIPS_26", "symbol": "dpmul"}, "352": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "360": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "368": {"type": "MIPS_26", "symbol": "dpmul"}, "384": {"type": "MIPS_26", "symbol": "dpmul"}, "396": {"type": "MIPS_26", "symbol": "dpadd"}, "408": {"type": "MIPS_26", "symbol": "dpmul"}, "420": {"type": "MIPS_26", "symbol": "dpadd"}, "432": {"type": "MIPS_26", "symbol": "dpmul"}, "444": {"type": "MIPS_26", "symbol": "dpadd"}, "456": {"type": "MIPS_26", "symbol": "dpmul"}, "468": {"type": "MIPS_26", "symbol": "dpadd"}, "480": {"type": "MIPS_26", "symbol": "dpmul"}, "492": {"type": "MIPS_26", "symbol": "dpadd"}, "508": {"type": "MIPS_26", "symbol": "dpmul"}, "520": {"type": "MIPS_26", "symbol": "dpadd"}, "532": {"type": "MIPS_26", "symbol": "dpmul"}, "544": {"type": "MIPS_26", "symbol": "dpadd"}, "556": {"type": "MIPS_26", "symbol": "dpmul"}, "568": {"type": "MIPS_26", "symbol": "dpadd"}, "580": {"type": "MIPS_26", "symbol": "dpmul"}, "592": {"type": "MIPS_26", "symbol": "dpadd"}, "604": {"type": "MIPS_26", "symbol": "dpmul"}, "616": {"type": "MIPS_26", "symbol": "dpadd"}, "628": {"type": "MIPS_26", "symbol": "dpmul"}, "644": {"type": "MIPS_26", "symbol": "dpmul"}, "660": {"type": "MIPS_26", "symbol": "dpadd"}, "672": {"type": "MIPS_26", "symbol": "dpmul"}, "684": {"type": "MIPS_26", "symbol": "dpadd"}, "696": {"type": "MIPS_26", "symbol": "dpmul"}, "708": {"type": "MIPS_26", "symbol": "dpadd"}, "716": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "724": {"type": "MIPS_26", "symbol": "dpmul"}, "736": {"type": "MIPS_26", "symbol": "dpadd"}, "752": {"type": "MIPS_26", "symbol": "dpadd"}, "780": {"type": "MIPS_26", "symbol": "litodp"}, "808": {"type": "MIPS_26", "symbol": "litodp"}, "824": {"type": "MIPS_26", "symbol": "dpmul"}, "840": {"type": "MIPS_26", "symbol": "dpadd"}, "852": {"type": "MIPS_26", "symbol": "dpdiv"}, "864": {"type": "MIPS_26", "symbol": "dpsub"}, "876": {"type": "MIPS_26", "symbol": "dpsub"}, "888": {"type": "MIPS_26", "symbol": "dpadd"}, "900": {"type": "MIPS_26", "symbol": "dpsub"}, "912": {"type": "MIPS_26", "symbol": "dpmul"}, "968": {"type": "MIPS_26", "symbol": "dpsub"}, "980": {"type": "MIPS_26", "symbol": "dpsub"}, "1000": {"type": "MIPS_26", "symbol": "dpdiv"}, "1020": {"type": "MIPS_26", "symbol": "dpmul"}, "1036": {"type": "MIPS_26", "symbol": "dpadd"}, "1052": {"type": "MIPS_26", "symbol": "dpmul"}, "1064": {"type": "MIPS_26", "symbol": "dpadd"}, "1076": {"type": "MIPS_26", "symbol": "dpmul"}, "1088": {"type": "MIPS_26", "symbol": "dpadd"}}}}}, "tan": {"d6ab6cc7d5009c3f45ea723f6901c93d1bc25448": {"a90f8dba": {"type": "FUNCTION", "size": 168, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3", "2.5.0", "2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "__kernel_tan", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "dpsub"}, "120": {"type": "MIPS_26", "symbol": "__ieee754_rem_pio2", "scope": "LIBRARY"}, "148": {"type": "MIPS_26", "symbol": "__kernel_tan", "scope": "LIBRARY"}}}}, "b36f45303670824b9205ee45d16567bbe91a6b5f": {"6bd61b8f": {"type": "FUNCTION", "size": 144, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5", "2.3.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"76": {"type": "MIPS_26", "symbol": "dpsub"}, "92": {"type": "MIPS_26", "symbol": "__ieee754_rem_pio2", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "__kernel_tan", "scope": "LIBRARY"}}}}}, "matherr": {"00bef6e83b05e731f9e5275c46703dd996a18abb": {"93c4b423": {"type": "FUNCTION", "size": 36, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "dpcmp"}}}}}, "isnanf": {"cf0584cc0b90324cc00dd57d6aa99400e3f5846b": {"00000000": {"type": "FUNCTION", "size": 36, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "0a5385cf4a659d302a43046ea0269e2b17a3ef1d": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.1", "2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "rint": {"ee41c9f6689b37fdcd2ab35691e7a00dbddbb2a9": {"71930926": {"type": "FUNCTION", "size": 508, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.3", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.3", "2.1.4", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.5", "2.5.7", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"168": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "188": {"type": "MIPS_26", "symbol": "dpadd"}, "200": {"type": "MIPS_26", "symbol": "dpsub"}, "348": {"type": "MIPS_26", "symbol": "dpadd"}, "440": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "444": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "460": {"type": "MIPS_26", "symbol": "dpadd"}, "472": {"type": "MIPS_26", "symbol": "dpsub"}}}}}, "finitef": {"19bae35146fd95e3e2a5df468cf563db8ab3f012": {"00000000": {"type": "FUNCTION", "size": 36, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.3", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.3", "2.1.4", "2.2.2", "2.2.4", "2.3.2", "2.3.4", "2.4.0", "2.4.3", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "98ab17e54d84a098b4240053ee845921141318c1": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "frexpf": {"835897aebc642496122214564b25373aa5f7c744": {"00000000": {"type": "FUNCTION", "size": 168, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.1.3", "2.3.2"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}, "99d9c0cac26a2d4e5d7b332cb99816c48628cb1c": {"00000000": {"type": "FUNCTION", "size": 88, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "__ieee754_asin": {"482dd1aefb4bd56f8e574ee2dd311c90b964652d": {"bc0c66ea": {"type": "FUNCTION", "size": 1624, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.5", "2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"112": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "120": {"type": "MIPS_26", "symbol": "dpmul"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_)PS2SDB", 8192}, + std::string_view{R"PS2SDB(26", "symbol": "dpmul"}, "172": {"type": "MIPS_26", "symbol": "dpsub"}, "188": {"type": "MIPS_26", "symbol": "dpdiv"}, "244": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "252": {"type": "MIPS_26", "symbol": "dpadd"}, "272": {"type": "MIPS_26", "symbol": "dpcmp"}, "308": {"type": "MIPS_26", "symbol": "dpmul"}, "316": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "332": {"type": "MIPS_26", "symbol": "dpmul"}, "340": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "344": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "352": {"type": "MIPS_26", "symbol": "dpadd"}, "368": {"type": "MIPS_26", "symbol": "dpmul"}, "376": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "380": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "388": {"type": "MIPS_26", "symbol": "dpadd"}, "404": {"type": "MIPS_26", "symbol": "dpmul"}, "412": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "416": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "424": {"type": "MIPS_26", "symbol": "dpadd"}, "440": {"type": "MIPS_26", "symbol": "dpmul"}, "448": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "452": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "460": {"type": "MIPS_26", "symbol": "dpadd"}, "476": {"type": "MIPS_26", "symbol": "dpmul"}, "484": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "488": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "496": {"type": "MIPS_26", "symbol": "dpadd"}, "512": {"type": "MIPS_26", "symbol": "dpmul"}, "524": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "528": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "536": {"type": "MIPS_26", "symbol": "dpmul"}, "544": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "548": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "556": {"type": "MIPS_26", "symbol": "dpadd"}, "572": {"type": "MIPS_26", "symbol": "dpmul"}, "580": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "584": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "592": {"type": "MIPS_26", "symbol": "dpadd"}, "608": {"type": "MIPS_26", "symbol": "dpmul"}, "616": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "620": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "628": {"type": "MIPS_26", "symbol": "dpadd"}, "644": {"type": "MIPS_26", "symbol": "dpmul"}, "664": {"type": "MIPS_26", "symbol": "dpadd"}, "680": {"type": "MIPS_26", "symbol": "dpdiv"}, "696": {"type": "MIPS_26", "symbol": "dpmul"}, "712": {"type": "MIPS_26", "symbol": "dpadd"}, "740": {"type": "MIPS_26", "symbol": "fabs", "scope": "LIBRARY"}, "756": {"type": "MIPS_26", "symbol": "dpsub"}, "776": {"type": "MIPS_26", "symbol": "dpmul"}, "784": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "788": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "800": {"type": "MIPS_26", "symbol": "dpmul"}, "808": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "812": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "820": {"type": "MIPS_26", "symbol": "dpadd"}, "836": {"type": "MIPS_26", "symbol": "dpmul"}, "844": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "848": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "856": {"type": "MIPS_26", "symbol": "dpadd"}, "872": {"type": "MIPS_26", "symbol": "dpmul"}, "880": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "884": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "892": {"type": "MIPS_26", "symbol": "dpadd"}, "908": {"type": "MIPS_26", "symbol": "dpmul"}, "916": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "920": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "928": {"type": "MIPS_26", "symbol": "dpadd"}, "944": {"type": "MIPS_26", "symbol": "dpmul"}, "952": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "956": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "964": {"type": "MIPS_26", "symbol": "dpadd"}, "980": {"type": "MIPS_26", "symbol": "dpmul"}, "992": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "996": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1004": {"type": "MIPS_26", "symbol": "dpmul"}, "1012": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1016": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1024": {"type": "MIPS_26", "symbol": "dpadd"}, "1040": {"type": "MIPS_26", "symbol": "dpmul"}, "1048": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1052": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1060": {"type": "MIPS_26", "symbol": "dpadd"}, "1076": {"type": "MIPS_26", "symbol": "dpmul"}, "1084": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1088": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1096": {"type": "MIPS_26", "symbol": "dpadd"}, "1112": {"type": "MIPS_26", "symbol": "dpmul"}, "1128": {"type": "MIPS_26", "symbol": "dpadd"}, "1144": {"type": "MIPS_26", "symbol": "__ieee754_sqrt", "scope": "LIBRARY"}, "1184": {"type": "MIPS_26", "symbol": "dpdiv"}, "1200": {"type": "MIPS_26", "symbol": "dpmul"}, "1216": {"type": "MIPS_26", "symbol": "dpadd"}, "1232": {"type": "MIPS_26", "symbol": "dpadd"}, "1240": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1244": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1252": {"type": "MIPS_26", "symbol": "dpsub"}, "1260": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1264": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1296": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1300": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1308": {"type": "MIPS_26", "symbol": "dpmul"}, "1324": {"type": "MIPS_26", "symbol": "dpsub"}, "1344": {"type": "MIPS_26", "symbol": "dpadd"}, "1360": {"type": "MIPS_26", "symbol": "dpdiv"}, "1380": {"type": "MIPS_26", "symbol": "dpdiv"}, "1400": {"type": "MIPS_26", "symbol": "dpadd"}, "1416": {"type": "MIPS_26", "symbol": "dpmul"}, "1436": {"type": "MIPS_26", "symbol": "dpadd"}, "1444": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1448": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1456": {"type": "MIPS_26", "symbol": "dpsub"}, "1472": {"type": "MIPS_26", "symbol": "dpsub"}, "1492": {"type": "MIPS_26", "symbol": "dpadd"}, "1508": {"type": "MIPS_26", "symbol": "dpsub"}, "1524": {"type": "MIPS_26", "symbol": "dpsub"}, "1540": {"type": "MIPS_26", "symbol": "dpsub"}, "1572": {"type": "MIPS_26", "symbol": "dpsub"}}}}, "d6ae42f49079ffdb8cb0c8b75ade28cd2dc1308c": {"8e86a252": {"type": "FUNCTION", "size": 1328, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"112": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "120": {"type": "MIPS_26", "symbol": "dpmul"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "140": {"type": "MIPS_26", "symbol": "dpmul"}, "152": {"type": "MIPS_26", "symbol": "dpadd"}, "168": {"type": "MIPS_26", "symbol": "dpsub"}, "180": {"type": "MIPS_26", "symbol": "dpdiv"}, "232": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "236": {"type": "MIPS_26", "symbol": "dpadd"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "252": {"type": "MIPS_26", "symbol": "dpcmp"}, "276": {"type": "MIPS_26", "symbol": "dpmul"}, "288": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"},)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "292": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "296": {"type": "MIPS_26", "symbol": "dpmul"}, "304": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "312": {"type": "MIPS_26", "symbol": "dpadd"}, "324": {"type": "MIPS_26", "symbol": "dpmul"}, "332": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "336": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "340": {"type": "MIPS_26", "symbol": "dpadd"}, "352": {"type": "MIPS_26", "symbol": "dpmul"}, "360": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "364": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "368": {"type": "MIPS_26", "symbol": "dpadd"}, "380": {"type": "MIPS_26", "symbol": "dpmul"}, "388": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "392": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "396": {"type": "MIPS_26", "symbol": "dpadd"}, "408": {"type": "MIPS_26", "symbol": "dpmul"}, "416": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "420": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "424": {"type": "MIPS_26", "symbol": "dpadd"}, "436": {"type": "MIPS_26", "symbol": "dpmul"}, "444": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "448": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "456": {"type": "MIPS_26", "symbol": "dpmul"}, "464": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "468": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "472": {"type": "MIPS_26", "symbol": "dpadd"}, "484": {"type": "MIPS_26", "symbol": "dpmul"}, "492": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "496": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "500": {"type": "MIPS_26", "symbol": "dpadd"}, "512": {"type": "MIPS_26", "symbol": "dpmul"}, "520": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "524": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "528": {"type": "MIPS_26", "symbol": "dpadd"}, "540": {"type": "MIPS_26", "symbol": "dpmul"}, "556": {"type": "MIPS_26", "symbol": "dpadd"}, "568": {"type": "MIPS_26", "symbol": "dpdiv"}, "580": {"type": "MIPS_26", "symbol": "dpmul"}, "592": {"type": "MIPS_26", "symbol": "dpadd"}, "616": {"type": "MIPS_26", "symbol": "fabs", "scope": "LIBRARY"}, "628": {"type": "MIPS_26", "symbol": "dpsub"}, "644": {"type": "MIPS_26", "symbol": "dpmul"}, "656": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "660": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "664": {"type": "MIPS_26", "symbol": "dpmul"}, "672": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "676": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "680": {"type": "MIPS_26", "symbol": "dpadd"}, "692": {"type": "MIPS_26", "symbol": "dpmul"}, "700": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "704": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "708": {"type": "MIPS_26", "symbol": "dpadd"}, "720": {"type": "MIPS_26", "symbol": "dpmul"}, "728": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "732": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "736": {"type": "MIPS_26", "symbol": "dpadd"}, "748": {"type": "MIPS_26", "symbol": "dpmul"}, "756": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "760": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "764": {"type": "MIPS_26", "symbol": "dpadd"}, "776": {"type": "MIPS_26", "symbol": "dpmul"}, "784": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "788": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "792": {"type": "MIPS_26", "symbol": "dpadd"}, "804": {"type": "MIPS_26", "symbol": "dpmul"}, "812": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "816": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "824": {"type": "MIPS_26", "symbol": "dpmul"}, "832": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "836": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "840": {"type": "MIPS_26", "symbol": "dpadd"}, "852": {"type": "MIPS_26", "symbol": "dpmul"}, "860": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "864": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "868": {"type": "MIPS_26", "symbol": "dpadd"}, "880": {"type": "MIPS_26", "symbol": "dpmul"}, "888": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "892": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "896": {"type": "MIPS_26", "symbol": "dpadd"}, "908": {"type": "MIPS_26", "symbol": "dpmul"}, "920": {"type": "MIPS_26", "symbol": "dpadd"}, "932": {"type": "MIPS_26", "symbol": "__ieee754_sqrt", "scope": "LIBRARY"}, "968": {"type": "MIPS_26", "symbol": "dpdiv"}, "980": {"type": "MIPS_26", "symbol": "dpmul"}, "992": {"type": "MIPS_26", "symbol": "dpadd"}, "1004": {"type": "MIPS_26", "symbol": "dpadd"}, "1012": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1016": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1020": {"type": "MIPS_26", "symbol": "dpsub"}, "1028": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1032": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1060": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1064": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1068": {"type": "MIPS_26", "symbol": "dpmul"}, "1080": {"type": "MIPS_26", "symbol": "dpsub"}, "1096": {"type": "MIPS_26", "symbol": "dpadd"}, "1108": {"type": "MIPS_26", "symbol": "dpdiv"}, "1124": {"type": "MIPS_26", "symbol": "dpdiv"}, "1140": {"type": "MIPS_26", "symbol": "dpadd"}, "1152": {"type": "MIPS_26", "symbol": "dpmul"}, "1168": {"type": "MIPS_26", "symbol": "dpadd"}, "1176": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1180": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1184": {"type": "MIPS_26", "symbol": "dpsub"}, "1196": {"type": "MIPS_26", "symbol": "dpsub"}, "1212": {"type": "MIPS_26", "symbol": "dpadd"}, "1224": {"type": "MIPS_26", "symbol": "dpsub"}, "1236": {"type": "MIPS_26", "symbol": "dpsub"}, "1248": {"type": "MIPS_26", "symbol": "dpsub"}, "1276": {"type": "MIPS_26", "symbol": "dpsub"}}}}}, "__ieee754_log10": {"56ad1de40d93152fc836e4c71257a0868b1e3de4": {"2f56eb26": {"type": "FUNCTION", "size": 432, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"80": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "108": {"type": "MIPS_26", "symbol": "dpsub"}, "124": {"type": "MIPS_26", "symbol": "dpdiv"}, "152": {"type": "MIPS_26", "symbol": "dpmul"}, "196": {"type": "MIPS_26", "symbol": "dpadd"}, "256": {"type": "MIPS_26", "symbol": "litodp"}, "296": {"type": "MIPS_26", "symbol": "__ieee754_log", "scope": "LIBRARY"}, "308": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "312": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "320": {"type": "MIPS_26", "symbol": "dpmul"}, "332": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "336": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "344": {"type": "MIPS_26", "symbol": "dpmul"}, "360": {"type": "MIPS_26", "symbol": "dpadd"}, "372": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "376": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "384": {"type": "MIPS_26", "symbol": "dpmul"}, "400": {"type": "MIPS_26", "symbol": "dpadd"}}}}, "079dd49a6c5fff9efdcf19e5162ba497b06fa5fe": {"f69efff6": {"type": "FUNCTION", "size": 392, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.0"], "compiler_versions": ["2.4.1.01"], "relocatio)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ns": {"80": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_26", "symbol": "dpsub"}, "116": {"type": "MIPS_26", "symbol": "dpdiv"}, "140": {"type": "MIPS_26", "symbol": "dpmul"}, "232": {"type": "MIPS_26", "symbol": "litodp"}, "268": {"type": "MIPS_26", "symbol": "__ieee754_log", "scope": "LIBRARY"}, "276": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "288": {"type": "MIPS_26", "symbol": "dpmul"}, "296": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "300": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "308": {"type": "MIPS_26", "symbol": "dpmul"}, "320": {"type": "MIPS_26", "symbol": "dpadd"}, "328": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "332": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "340": {"type": "MIPS_26", "symbol": "dpmul"}, "360": {"type": "MIPS_26", "symbol": "dpadd"}}}}, "a8c68926ad66a1da3a207bd4226521bad01e5134": {"b6c6a636": {"type": "FUNCTION", "size": 404, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"76": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "120": {"type": "MIPS_26", "symbol": "dpsub"}, "136": {"type": "MIPS_26", "symbol": "dpdiv"}, "160": {"type": "MIPS_26", "symbol": "dpmul"}, "204": {"type": "MIPS_26", "symbol": "dpadd"}, "260": {"type": "MIPS_26", "symbol": "litodp"}, "276": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "304": {"type": "MIPS_26", "symbol": "dpmul"}, "320": {"type": "MIPS_26", "symbol": "__ieee754_log", "scope": "LIBRARY"}, "328": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "332": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "340": {"type": "MIPS_26", "symbol": "dpmul"}, "356": {"type": "MIPS_26", "symbol": "dpadd"}, "364": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "368": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "380": {"type": "MIPS_26", "symbol": "dpmul"}}}}}, "asin": {"c0a5a6b6b96e3534f1ce618782a40e20574c6678": {"7916071c": {"type": "FUNCTION", "size": 20, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5", "2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "__ieee754_asin", "scope": "LIBRARY"}}}}, "96cdfc6d01d8e440d70094333916144f98265d70": {"b33264a1": {"type": "FUNCTION", "size": 240, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "__ieee754_asin", "scope": "LIBRARY"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": "__fdlib_version"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "52": {"type": "MIPS_26", "symbol": "isnan"}, "68": {"type": "MIPS_26", "symbol": "fabs", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "dpcmp"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_26", "symbol": "matherr", "scope": "LIBRARY"}, "160": {"type": "MIPS_26", "symbol": "__errno"}, "188": {"type": "MIPS_26", "symbol": "__errno"}}}}}, "log10": {"c0a5a6b6b96e3534f1ce618782a40e20574c6678": {"3541d56e": {"type": "FUNCTION", "size": 20, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "__ieee754_log10", "scope": "LIBRARY"}}}}, "c4dfac5fe1acad3654be31cf1ed3629e3b30a95c": {"169d83e8": {"type": "FUNCTION", "size": 328, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": "__fdlib_version"}, "32": {"type": "MIPS_26", "symbol": "__ieee754_log10", "scope": "LIBRARY"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "60": {"type": "MIPS_26", "symbol": "isnan"}, "84": {"type": "MIPS_26", "symbol": "dpcmp"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "__infinity"}, "152": {"type": "MIPS_26", "symbol": "dpsub"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": "__infinity"}, "168": {"type": "MIPS_26", "symbol": "dpcmp"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "200": {"type": "MIPS_26", "symbol": "__errno"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "232": {"type": "MIPS_26", "symbol": "matherr", "scope": "LIBRARY"}, "248": {"type": "MIPS_26", "symbol": "__errno"}, "276": {"type": "MIPS_26", "symbol": "__errno"}}}}}, "ceil": {"9bd3978a218341a5973832cf79dd45cf59d1b15e": {"18a6b804": {"type": "FUNCTION", "size": 448, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5", "2.0.7", "2.1.0", "2.3.0", "2.3.2", "2.4.0", "2.4.3"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"80": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_26", "symbol": "dpadd"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_26", "symbol": "dpcmp"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_26", "symbol": "dpadd"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "196": {"type": "MIPS_26", "symbol": "dpcmp"}, "264": {"type": "MIPS_26", "symbol": "dpadd"}, "300": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "308": {"type": "MIPS_26", "symbol": "dpadd"}, "312": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "320": {"type": "MIPS_26", "symbol": "dpcmp"}}}}, "cf19de23c4cb88fbb77c9b32b1745445d9526e05": {"2ef291ef": {"type": "FUNCTION", "size": 524, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3", "2.7.1", "2.8.0", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"76": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_26", "symbol": "dpadd"}, "100": {"type": "MIPS_26", "symbol": "dpcmp"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "196": {"type": "MIPS_26", "symbol": "dpadd"}, "212": {"type": "MIPS_26", "symbol": "dpcmp"}, "292": {"type": "MIPS_26", "symbol": "dpadd"}, "336": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "344": {"type": "MIPS_26", "symbol": "dpadd"}, "360": {"type": "MIPS_26", "symbol": "dpcmp"}}}}}, "finite": {"f44a0adbe2d48529677bfd48ed6844a4e25e6920": {"00000000": {"type": "FUNCTION", "size": 32, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.3", "1.6.5", "2.0.2", "2.0.7", "2.1.4", "2.3.2", "2.4.2", "2.4.3"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "__ieee754_hypot": {"a5e07e499014a2cef9fbb3f46960b776285320e5": {"dedcb3f3": {"type": "FUNCTION", "size": 1092, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(compiler_versions": ["2.4.1.01"], "relocations": {"180": {"type": "MIPS_26", "symbol": "dpadd"}, "240": {"type": "MIPS_26", "symbol": "dpadd"}, "464": {"type": "MIPS_26", "symbol": "dpmul"}, "484": {"type": "MIPS_26", "symbol": "dpmul"}, "564": {"type": "MIPS_26", "symbol": "dpsub"}, "584": {"type": "MIPS_26", "symbol": "dpcmp"}, "612": {"type": "MIPS_26", "symbol": "dpsub"}, "632": {"type": "MIPS_26", "symbol": "dpmul"}, "652": {"type": "MIPS_26", "symbol": "dpsub"}, "668": {"type": "MIPS_26", "symbol": "dpmul"}, "688": {"type": "MIPS_26", "symbol": "dpadd"}, "704": {"type": "MIPS_26", "symbol": "dpmul"}, "720": {"type": "MIPS_26", "symbol": "dpsub"}, "736": {"type": "MIPS_26", "symbol": "dpsub"}, "748": {"type": "MIPS_26", "symbol": "__ieee754_sqrt", "scope": "LIBRARY"}, "776": {"type": "MIPS_26", "symbol": "dpadd"}, "796": {"type": "MIPS_26", "symbol": "dpsub"}, "828": {"type": "MIPS_26", "symbol": "dpsub"}, "848": {"type": "MIPS_26", "symbol": "dpmul"}, "868": {"type": "MIPS_26", "symbol": "dpsub"}, "884": {"type": "MIPS_26", "symbol": "dpmul"}, "904": {"type": "MIPS_26", "symbol": "dpmul"}, "924": {"type": "MIPS_26", "symbol": "dpmul"}, "940": {"type": "MIPS_26", "symbol": "dpadd"}, "956": {"type": "MIPS_26", "symbol": "dpsub"}, "972": {"type": "MIPS_26", "symbol": "dpsub"}, "984": {"type": "MIPS_26", "symbol": "__ieee754_sqrt", "scope": "LIBRARY"}, "1024": {"type": "MIPS_26", "symbol": "dpmul"}}}}, "93b4d1effbdd07c182d82a58552a3ed645938a25": {"e1192956": {"type": "FUNCTION", "size": 980, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"176": {"type": "MIPS_26", "symbol": "dpadd"}, "228": {"type": "MIPS_26", "symbol": "dpadd"}, "456": {"type": "MIPS_26", "symbol": "dpmul"}, "472": {"type": "MIPS_26", "symbol": "dpmul"}, "548": {"type": "MIPS_26", "symbol": "dpsub"}, "564": {"type": "MIPS_26", "symbol": "dpcmp"}, "584": {"type": "MIPS_26", "symbol": "dpsub"}, "600": {"type": "MIPS_26", "symbol": "dpmul"}, "616": {"type": "MIPS_26", "symbol": "dpsub"}, "628": {"type": "MIPS_26", "symbol": "dpmul"}, "644": {"type": "MIPS_26", "symbol": "dpadd"}, "656": {"type": "MIPS_26", "symbol": "dpmul"}, "668": {"type": "MIPS_26", "symbol": "dpsub"}, "680": {"type": "MIPS_26", "symbol": "dpsub"}, "688": {"type": "MIPS_26", "symbol": "__ieee754_sqrt", "scope": "LIBRARY"}, "708": {"type": "MIPS_26", "symbol": "dpadd"}, "724": {"type": "MIPS_26", "symbol": "dpsub"}, "752": {"type": "MIPS_26", "symbol": "dpsub"}, "768": {"type": "MIPS_26", "symbol": "dpmul"}, "784": {"type": "MIPS_26", "symbol": "dpsub"}, "796": {"type": "MIPS_26", "symbol": "dpmul"}, "812": {"type": "MIPS_26", "symbol": "dpmul"}, "828": {"type": "MIPS_26", "symbol": "dpmul"}, "840": {"type": "MIPS_26", "symbol": "dpadd"}, "852": {"type": "MIPS_26", "symbol": "dpsub"}, "864": {"type": "MIPS_26", "symbol": "dpsub"}, "872": {"type": "MIPS_26", "symbol": "__ieee754_sqrt", "scope": "LIBRARY"}, "912": {"type": "MIPS_26", "symbol": "dpmul"}}}}}, "hypot": {"c0a5a6b6b96e3534f1ce618782a40e20574c6678": {"f9533b4b": {"type": "FUNCTION", "size": 20, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "__ieee754_hypot", "scope": "LIBRARY"}}}}, "5b99e49b9aa18e8d13a9ee71f93023c66969ed5d": {"00c0b38e": {"type": "FUNCTION", "size": 292, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "__ieee754_hypot", "scope": "LIBRARY"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": "__fdlib_version"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "64": {"type": "MIPS_26", "symbol": "finite"}, "80": {"type": "MIPS_26", "symbol": "finite"}, "96": {"type": "MIPS_26", "symbol": "finite"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": "__infinity"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": "__infinity"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "188": {"type": "MIPS_26", "symbol": "matherr", "scope": "LIBRARY"}, "204": {"type": "MIPS_26", "symbol": "__errno"}, "232": {"type": "MIPS_26", "symbol": "__errno"}}}}}, "__ieee754_exp": {"1d758089bc15d6b8fa51d89a4aa41c0b3921c816": {"a44463b2": {"type": "FUNCTION", "size": 1020, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.2", "2.0.7", "2.4.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"128": {"type": "MIPS_26", "symbol": "dpadd"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "168": {"type": "MIPS_26", "symbol": "dpcmp"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "200": {"type": "MIPS_26", "symbol": "dpcmp"}, "256": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "276": {"type": "MIPS_26", "symbol": "dpsub"}, "284": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "292": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "320": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "324": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "328": {"type": "MIPS_26", "symbol": "dpmul"}, "336": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "344": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "356": {"type": "MIPS_26", "symbol": "dpadd"}, "364": {"type": "MIPS_26", "symbol": "dptoli"}, "376": {"type": "MIPS_26", "symbol": "litodp"}, "384": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "392": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "396": {"type": "MIPS_26", "symbol": "dpmul"}, "408": {"type": "MIPS_26", "symbol": "dpsub"}, "416": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "428": {"type": "MIPS_26", "symbol": "dpmul"}, "444": {"type": "MIPS_26", "symbol": "dpsub"}, "480": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "496": {"type": "MIPS_26", "symbol": "dpadd"}, "500": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "508": {"type": "MIPS_26", "symbol": "dpcmp"}, "524": {"type": "MIPS_26", "symbol": "dpadd"}, "544": {"type": "MIPS_26", "symbol": "dpmul"}, "556": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "560": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "564": {"type": "MIPS_26", "symbol": "dpmul"}, "572": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "576": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "580": {"type": "MIPS_26", "symbol": "dpadd"}, "592": {"type": "MIPS_26", "symbol": "dpmul"}, "600": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "604": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "608": {"type": "MIPS_26", "symbol": "dpadd"}, "620": {"type": "MIPS_26", "symbol": "dpmul"}, "628": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "632": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "636": {"type": "MIPS_26", "symbol": "dpadd"}, "648": {"type": "MIPS_26", "symbol": "dpmul"}, "656": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "660": {"typ)PS2SDB", 8192}, + std::string_view{R"PS2SDB(e": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "664": {"type": "MIPS_26", "symbol": "dpadd"}, "676": {"type": "MIPS_26", "symbol": "dpmul"}, "688": {"type": "MIPS_26", "symbol": "dpsub"}, "708": {"type": "MIPS_26", "symbol": "dpmul"}, "728": {"type": "MIPS_26", "symbol": "dpsub"}, "740": {"type": "MIPS_26", "symbol": "dpdiv"}, "752": {"type": "MIPS_26", "symbol": "dpsub"}, "768": {"type": "MIPS_26", "symbol": "dpsub"}, "788": {"type": "MIPS_26", "symbol": "dpmul"}, "808": {"type": "MIPS_26", "symbol": "dpsub"}, "820": {"type": "MIPS_26", "symbol": "dpdiv"}, "832": {"type": "MIPS_26", "symbol": "dpsub"}, "844": {"type": "MIPS_26", "symbol": "dpsub"}, "860": {"type": "MIPS_26", "symbol": "dpsub"}, "968": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "972": {"type": "MIPS_26", "symbol": "dpmul"}, "976": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "a22f5923e26c520355390e3bf51d31870de46d06": {"ec5aeabf": {"type": "FUNCTION", "size": 1180, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.5", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"132": {"type": "MIPS_26", "symbol": "dpadd"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_26", "symbol": "dpcmp"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "216": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "228": {"type": "MIPS_26", "symbol": "dpcmp"}, "288": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "300": {"type": "MIPS_26", "symbol": "dpsub"}, "308": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "344": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "348": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "356": {"type": "MIPS_26", "symbol": "dpmul"}, "368": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "376": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "384": {"type": "MIPS_26", "symbol": "dpadd"}, "396": {"type": "MIPS_26", "symbol": "dptoli"}, "408": {"type": "MIPS_26", "symbol": "litodp"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "432": {"type": "MIPS_26", "symbol": "dpmul"}, "448": {"type": "MIPS_26", "symbol": "dpsub"}, "464": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "468": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "472": {"type": "MIPS_26", "symbol": "dpmul"}, "492": {"type": "MIPS_26", "symbol": "dpsub"}, "528": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "536": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "548": {"type": "MIPS_26", "symbol": "dpadd"}, "564": {"type": "MIPS_26", "symbol": "dpcmp"}, "588": {"type": "MIPS_26", "symbol": "dpadd"}, "616": {"type": "MIPS_26", "symbol": "dpmul"}, "624": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "628": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "640": {"type": "MIPS_26", "symbol": "dpmul"}, "648": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "652": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "660": {"type": "MIPS_26", "symbol": "dpadd"}, "676": {"type": "MIPS_26", "symbol": "dpmul"}, "684": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "688": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "696": {"type": "MIPS_26", "symbol": "dpadd"}, "712": {"type": "MIPS_26", "symbol": "dpmul"}, "720": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "724": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "732": {"type": "MIPS_26", "symbol": "dpadd"}, "748": {"type": "MIPS_26", "symbol": "dpmul"}, "756": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "760": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "768": {"type": "MIPS_26", "symbol": "dpadd"}, "784": {"type": "MIPS_26", "symbol": "dpmul"}, "800": {"type": "MIPS_26", "symbol": "dpsub"}, "828": {"type": "MIPS_26", "symbol": "dpmul"}, "852": {"type": "MIPS_26", "symbol": "dpsub"}, "868": {"type": "MIPS_26", "symbol": "dpdiv"}, "884": {"type": "MIPS_26", "symbol": "dpsub"}, "904": {"type": "MIPS_26", "symbol": "dpsub"}, "928": {"type": "MIPS_26", "symbol": "dpmul"}, "952": {"type": "MIPS_26", "symbol": "dpsub"}, "968": {"type": "MIPS_26", "symbol": "dpdiv"}, "984": {"type": "MIPS_26", "symbol": "dpsub"}, "1000": {"type": "MIPS_26", "symbol": "dpsub"}, "1020": {"type": "MIPS_26", "symbol": "dpsub"}, "1128": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1132": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1136": {"type": "MIPS_26", "symbol": "dpmul"}}}}}, "exp": {"74b1ca500100b5c2dc4d420a004223bbdd5a9ef0": {"8ac2ca20": {"type": "FUNCTION", "size": 344, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.0.7", "2.4.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__ieee754_exp", "scope": "LIBRARY"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": "__fdlib_version"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "56": {"type": "MIPS_26", "symbol": "finite"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_26", "symbol": "dpcmp"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "__infinity"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "__infinity"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "188": {"type": "MIPS_26", "symbol": "dpcmp"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "252": {"type": "MIPS_26", "symbol": "matherr", "scope": "LIBRARY"}, "268": {"type": "MIPS_26", "symbol": "__errno"}, "296": {"type": "MIPS_26", "symbol": "__errno"}}}}, "c0a5a6b6b96e3534f1ce618782a40e20574c6678": {"45431196": {"type": "FUNCTION", "size": 20, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "__ieee754_exp", "scope": "LIBRARY"}}}}, "3da116c12c891652b9c1dbcbc9fb0928f6f97295": {"7a7662b3": {"type": "FUNCTION", "size": 352, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "__ieee754_exp", "scope": "LIBRARY"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": "__fdlib_version"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "56": {"type": "MIPS_26", "symbol": "finite"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_26", "symbol": "dpcmp"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "100": {"t)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ype": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "__infinity"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "__infinity"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": "__fdlib_version"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "188": {"type": "MIPS_26", "symbol": "dpcmp"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "252": {"type": "MIPS_26", "symbol": "matherr", "scope": "LIBRARY"}, "268": {"type": "MIPS_26", "symbol": "__errno"}, "296": {"type": "MIPS_26", "symbol": "__errno"}}}}}, "modff": {"9967737aaea0eca7e15dc6fa37b83dbdcd4bb310": {"00000000": {"type": "FUNCTION", "size": 144, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "81ca62a7404a77eda4f43d3692a392b55131d8cc": {"00000000": {"type": "FUNCTION", "size": 140, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "modf": {"0f8d5ade10597fc72912bddb3f45c73247e54a29": {"32a95c7e": {"type": "FUNCTION", "size": 396, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"200": {"type": "MIPS_26", "symbol": "dpsub"}, "376": {"type": "MIPS_26", "symbol": "dpsub"}}}}}, "infinityf": {"ad4edf62561882599c014ce8973ae3b357120376": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "isinff": {"0a5385cf4a659d302a43046ea0269e2b17a3ef1d": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "ldexpf": {"e6ec780f556269566b5c108741fecbd4389f22a3": {"52ddc36b": {"type": "FUNCTION", "size": 140, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "finitef"}, "56": {"type": "MIPS_26", "symbol": "scalbnf"}, "68": {"type": "MIPS_26", "symbol": "finitef"}, "96": {"type": "MIPS_26", "symbol": "__errno"}}}}}, "__ieee754_coshf": {"85700ae3fd26eee8ce65b1a231d0b07d685a9193": {"fe630e35": {"type": "FUNCTION", "size": 344, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "fabsf", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "expm1f", "scope": "LIBRARY"}, "160": {"type": "MIPS_26", "symbol": "fabsf", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "__ieee754_expf", "scope": "LIBRARY"}, "232": {"type": "MIPS_26", "symbol": "fabsf", "scope": "LIBRARY"}, "240": {"type": "MIPS_26", "symbol": "__ieee754_expf", "scope": "LIBRARY"}, "276": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "288": {"type": "MIPS_26", "symbol": "fabsf", "scope": "LIBRARY"}, "296": {"type": "MIPS_26", "symbol": "__ieee754_expf", "scope": "LIBRARY"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "expm1f": {"ab092cecf07a881336d5a16532e1729d68181fc2": {"af58c6c9": {"type": "FUNCTION", "size": 872, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "coshf": {"c0a5a6b6b96e3534f1ce618782a40e20574c6678": {"454f5bcf": {"type": "FUNCTION", "size": 20, "library": "libm", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "__ieee754_coshf", "scope": "LIBRARY"}}}}}, "ldexp": {"ed87da6e1f06a7fc6264ad83a3ce3978cd1d6786": {"88cd7cd5": {"type": "FUNCTION", "size": 148, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "finite"}, "44": {"type": "MIPS_26", "symbol": "dpcmp"}, "60": {"type": "MIPS_26", "symbol": "scalbn"}, "72": {"type": "MIPS_26", "symbol": "finite"}, "88": {"type": "MIPS_26", "symbol": "dpcmp"}, "104": {"type": "MIPS_26", "symbol": "__errno"}}}}}, "expm1": {"befdff9284ffc87bbc35bf482ff73d6513b56e6f": {"40287b51": {"type": "FUNCTION", "size": 1488, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"160": {"type": "MIPS_26", "symbol": "dpadd"}, "200": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "208": {"type": "MIPS_26", "symbol": "dpcmp"}, "220": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "244": {"type": "MIPS_26", "symbol": "dpadd"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "256": {"type": "MIPS_26", "symbol": "dpcmp"}, "332": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "336": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "340": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "344": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "348": {"type": "MIPS_26", "symbol": "dpsub"}, "364": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "368": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "372": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "376": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "380": {"type": "MIPS_26", "symbol": "dpadd"}, "396": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "400": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "404": {"type": "MIPS_26", "symbol": "dpmul"}, "436": {"type": "MIPS_26", "symbol": "dpadd"}, "444": {"type": "MIPS_26", "symbol": "dptoli"}, "456": {"type": "MIPS_26", "symbol": "litodp"}, "468": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "472": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "476": {"type": "MIPS_26", "symbol": "dpmul"}, "488": {"type": "MIPS_26", "symbol": "dpsub"}, "496": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "500": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "508": {"type": "MIPS_26", "symbol": "dpmul"}, "524": {"type": "MIPS_26", "symbol": "dpsub"}, "540": {"type": "MIPS_26", "symbol": "dpsub"}, "552": {"type": "MIPS_26", "symbol": "dpsub"}, "588": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "596": {"type": "MIPS_26", "symbol": "dpadd"}, "600": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "640": {"type": "MIPS_26", "symbol": "dpmul"}, "656": {"type": "MIPS_26", "symbol": "dpmul"}, "668": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "672": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "676": {"type": "MIPS_26", "symbol": "dpmul"}, "684": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "688": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "692": {"type": "MIPS_26", "symbol": "dpadd"}, "704": {"type": "MIPS_26", "symbol": "dpmul"}, "712": {"type": "MIPS_HI16", "symbol": "", )PS2SDB", 8192}, + std::string_view{R"PS2SDB("original": ".rodata"}, "716": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "720": {"type": "MIPS_26", "symbol": "dpadd"}, "732": {"type": "MIPS_26", "symbol": "dpmul"}, "740": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "744": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "748": {"type": "MIPS_26", "symbol": "dpadd"}, "760": {"type": "MIPS_26", "symbol": "dpmul"}, "768": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "772": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "776": {"type": "MIPS_26", "symbol": "dpadd"}, "788": {"type": "MIPS_26", "symbol": "dpmul"}, "800": {"type": "MIPS_26", "symbol": "dpadd"}, "816": {"type": "MIPS_26", "symbol": "dpmul"}, "832": {"type": "MIPS_26", "symbol": "dpsub"}, "848": {"type": "MIPS_26", "symbol": "dpsub"}, "864": {"type": "MIPS_26", "symbol": "dpmul"}, "880": {"type": "MIPS_26", "symbol": "dpsub"}, "892": {"type": "MIPS_26", "symbol": "dpdiv"}, "904": {"type": "MIPS_26", "symbol": "dpmul"}, "924": {"type": "MIPS_26", "symbol": "dpmul"}, "940": {"type": "MIPS_26", "symbol": "dpsub"}, "952": {"type": "MIPS_26", "symbol": "dpsub"}, "972": {"type": "MIPS_26", "symbol": "dpsub"}, "984": {"type": "MIPS_26", "symbol": "dpmul"}, "996": {"type": "MIPS_26", "symbol": "dpsub"}, "1008": {"type": "MIPS_26", "symbol": "dpsub"}, "1036": {"type": "MIPS_26", "symbol": "dpsub"}, "1048": {"type": "MIPS_26", "symbol": "dpmul"}, "1060": {"type": "MIPS_26", "symbol": "dpsub"}, "1092": {"type": "MIPS_26", "symbol": "dpcmp"}, "1108": {"type": "MIPS_26", "symbol": "dpadd"}, "1120": {"type": "MIPS_26", "symbol": "dpsub"}, "1136": {"type": "MIPS_26", "symbol": "dpmul"}, "1152": {"type": "MIPS_26", "symbol": "dpsub"}, "1164": {"type": "MIPS_26", "symbol": "dpadd"}, "1176": {"type": "MIPS_26", "symbol": "dpadd"}, "1208": {"type": "MIPS_26", "symbol": "dpsub"}, "1220": {"type": "MIPS_26", "symbol": "dpsub"}, "1268": {"type": "MIPS_26", "symbol": "dpsub"}, "1316": {"type": "MIPS_26", "symbol": "dpsub"}, "1328": {"type": "MIPS_26", "symbol": "dpsub"}, "1364": {"type": "MIPS_26", "symbol": "dpadd"}, "1376": {"type": "MIPS_26", "symbol": "dpsub"}, "1388": {"type": "MIPS_26", "symbol": "dpadd"}}}}}, "tanh": {"6ebed7925662e21498c9bbf4fd8b762e61e58b7b": {"95e49197": {"type": "FUNCTION", "size": 452, "library": "libm", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"76": {"type": "MIPS_26", "symbol": "dpdiv"}, "88": {"type": "MIPS_26", "symbol": "dpadd"}, "112": {"type": "MIPS_26", "symbol": "dpdiv"}, "124": {"type": "MIPS_26", "symbol": "dpsub"}, "184": {"type": "MIPS_26", "symbol": "dpadd"}, "196": {"type": "MIPS_26", "symbol": "dpmul"}, "236": {"type": "MIPS_26", "symbol": "fabs", "scope": "LIBRARY"}, "248": {"type": "MIPS_26", "symbol": "dpadd"}, "256": {"type": "MIPS_26", "symbol": "expm1", "scope": "LIBRARY"}, "268": {"type": "MIPS_26", "symbol": "dpadd"}, "280": {"type": "MIPS_26", "symbol": "dpdiv"}, "296": {"type": "MIPS_26", "symbol": "dpsub"}, "312": {"type": "MIPS_26", "symbol": "fabs", "scope": "LIBRARY"}, "328": {"type": "MIPS_26", "symbol": "dpmul"}, "336": {"type": "MIPS_26", "symbol": "expm1", "scope": "LIBRARY"}, "352": {"type": "MIPS_26", "symbol": "dpsub"}, "372": {"type": "MIPS_26", "symbol": "dpadd"}, "384": {"type": "MIPS_26", "symbol": "dpdiv"}, "420": {"type": "MIPS_26", "symbol": "dpsub"}}}}}}, "libgcc": {"__muldi3": {"51fec815a1d77f5e78cfc4abac9e95f5f6e8a221": {"00000000": {"type": "FUNCTION", "size": 116, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "ee07b99dd2a70e1d69ed49845e3d12f310201958": {"00000000": {"type": "FUNCTION", "size": 96, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "92185ca948fd53ec52cb6bd1882c31927fca49c2": {"00000000": {"type": "FUNCTION", "size": 116, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "c4261b885c5a897df65b66f7b91f77a5f2b7908a": {"00000000": {"type": "FUNCTION", "size": 76, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "5cac63af86a8ad90722b57c74ef0f40eec7736b1": {"00000000": {"type": "FUNCTION", "size": 76, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "__divdi3": {"29a968f99efe4eed66989c7e6bbc056fc14953e0": {"55d50c1e": {"type": "FUNCTION", "size": 1684, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"308": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "652": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "660": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1212": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1220": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "15ee939c9c12fbf3371c6cba106e7a412d3640f6": {"6bb33e3f": {"type": "FUNCTION", "size": 1772, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"304": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "312": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "672": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "680": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1272": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1280": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "311bdc3836e093dc53b34cc1c7e1b51c6ee0e206": {"a9f131fb": {"type": "FUNCTION", "size": 1740, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"288": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "656": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "664": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1240": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1248": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "b24c819373bb38521f96f9098d6c751d3242a0f1": {"95d556bf": {"type": "FUNCTION", "size": 320, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"200": {"type": "MIPS_26", "symbol": "__udivmoddi4", "original": ".text"}}}}, "044708db6818cb60ac8e1a3f63148c92af90f54c": {"571515f1": {"type": "FUNCTION", "size": 304, "li)PS2SDB", 8192}, + std::string_view{R"PS2SDB(brary": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"188": {"type": "MIPS_26", "symbol": "__udivmoddi4", "original": ".text"}}}}, "8a94cfde99b835e5e484169a62cd1d7c5c19b408": {"571515f1": {"type": "FUNCTION", "size": 296, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"188": {"type": "MIPS_26", "symbol": "__udivmoddi4", "original": ".text"}}}}}, "__moddi3": {"c59ba498617fa1499496cf3f154fd60fd2a9bfe6": {"94ae6aec": {"type": "FUNCTION", "size": 1680, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"308": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "460": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "468": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1060": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1068": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "8cc9923851726a782c991d8ae49d26b7fefcec5b": {"78f180a2": {"type": "FUNCTION", "size": 1640, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"304": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "312": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "472": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "480": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1040": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1048": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "6903e1fa8cd996ca54ed087e06553cb532ab5f55": {"dc96e0c2": {"type": "FUNCTION", "size": 1584, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"288": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "440": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "448": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "992": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1000": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "38bcf1b2b4102bb086230e23a452de7cb34f341e": {"892c2fb5": {"type": "FUNCTION", "size": 320, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"196": {"type": "MIPS_26", "symbol": "__udivmoddi4", "original": ".text"}}}}, "48ab19d8feced98d28a52921e11f6155b829ad1c": {"5cbdc2f7": {"type": "FUNCTION", "size": 304, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"184": {"type": "MIPS_26", "symbol": "__udivmoddi4", "original": ".text"}}}}, "4dc6f93e4e4acd77f3cb5e9822350fdb1f5cf16a": {"5cbdc2f7": {"type": "FUNCTION", "size": 304, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"184": {"type": "MIPS_26", "symbol": "__udivmoddi4", "original": ".text"}}}}}, "__udivdi3": {"fcf1abf9fac521a2d2787ea8bb347a0746b53452": {"017e97db": {"type": "FUNCTION", "size": 1404, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"100": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "444": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "452": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1004": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1012": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "7d44f720ae2f78f08152e6f36a1adceb31c467c0": {"32b6f6b0": {"type": "FUNCTION", "size": 1488, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"96": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "464": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "472": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1072": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1080": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "4784dfc0efe49c95a484d3055b5cdb923bf85f3a": {"41c56471": {"type": "FUNCTION", "size": 1472, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"96": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "464": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "472": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1056": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1064": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "0153729efc710d4ac1b1be4b25599c07666ca116": {"b8c1324a": {"type": "FUNCTION", "size": 24, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.0", "2.7.1", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "__udivmoddi4", "original": ".text"}}}}}, "__umoddi3": {"bc0b81aaab668044f88cf1146f5cf7653c029ea2": {"57d54f46": {"type": "FUNCTION", "size": 1384, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"108": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "260": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "860": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "868": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "f0ddf0ec254e87f37798e6a6055d979e3f42981a": {"5caf998b": {"type": "FUNCTION", "size": 1344, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.)PS2SDB", 8192}, + std::string_view{R"PS2SDB(4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"104": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "272": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "840": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "848": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "3106af27773ec8106fd5617c1f5c142860ad3545": {"204a5252": {"type": "FUNCTION", "size": 1304, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"104": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "256": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "808": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "816": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "80b36b9b8208ce465452f44b89bdb7ef371ca320": {"8133c05e": {"type": "FUNCTION", "size": 32, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "__udivmoddi4", "original": ".text"}}}}, "02a9998ff75594696462b8543ee29b6f769f2e43": {"8133c05e": {"type": "FUNCTION", "size": 32, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "__udivmoddi4", "original": ".text"}}}}}, "__floatdidf": {"a058a4d53dbfd2a2d0ee078c0453c3c56819ea1b": {"a6c7f305": {"type": "FUNCTION", "size": 168, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "litodp"}, "48": {"type": "MIPS_26", "symbol": "dpmul"}, "64": {"type": "MIPS_26", "symbol": "dpmul"}, "96": {"type": "MIPS_26", "symbol": "litodp"}, "124": {"type": "MIPS_26", "symbol": "dpadd"}, "140": {"type": "MIPS_26", "symbol": "dpadd"}}}}, "a4103b64b89531c7d7ebe3430c73bd3eac1f23ff": {"720257e5": {"type": "FUNCTION", "size": 152, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "litodp"}, "44": {"type": "MIPS_26", "symbol": "dpmul"}, "56": {"type": "MIPS_26", "symbol": "dpmul"}, "88": {"type": "MIPS_26", "symbol": "litodp"}, "112": {"type": "MIPS_26", "symbol": "dpadd"}, "124": {"type": "MIPS_26", "symbol": "dpadd"}}}}, "a094d4945a4a89a986f7eae53f7c1e6e785c55db": {"720257e5": {"type": "FUNCTION", "size": 156, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "litodp"}, "44": {"type": "MIPS_26", "symbol": "dpmul"}, "56": {"type": "MIPS_26", "symbol": "dpmul"}, "88": {"type": "MIPS_26", "symbol": "litodp"}, "112": {"type": "MIPS_26", "symbol": "dpadd"}, "124": {"type": "MIPS_26", "symbol": "dpadd"}}}}, "36f803732fc65a756c412275c905d4b97d945a8d": {"29326864": {"type": "FUNCTION", "size": 152, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "litodp"}, "48": {"type": "MIPS_26", "symbol": "dpmul"}, "68": {"type": "MIPS_26", "symbol": "dpmul"}, "84": {"type": "MIPS_26", "symbol": "litodp"}, "108": {"type": "MIPS_26", "symbol": "dpadd"}, "120": {"type": "MIPS_26", "symbol": "dpadd"}}}}}, "__fixunsdfdi": {"4c2d87b432684175777a006d0fdca66ed83c19ea": {"1240f44e": {"type": "FUNCTION", "size": 280, "library": "libgcc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "dpcmp"}, "56": {"type": "MIPS_26", "symbol": "dpmul"}, "68": {"type": "MIPS_26", "symbol": "dptoul"}, "96": {"type": "MIPS_26", "symbol": "__floatdidf", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "__floatdidf", "scope": "LIBRARY"}, "128": {"type": "MIPS_26", "symbol": "dpadd"}, "144": {"type": "MIPS_26", "symbol": "dpsub"}, "168": {"type": "MIPS_26", "symbol": "dpcmp"}, "196": {"type": "MIPS_26", "symbol": "dpsub"}, "208": {"type": "MIPS_26", "symbol": "dptoul"}, "232": {"type": "MIPS_26", "symbol": "dptoul"}}}}, "eec6308b716490615cec4b47113c65845d0ef930": {"bfbe1a3d": {"type": "FUNCTION", "size": 236, "library": "libgcc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "dpcmp"}, "48": {"type": "MIPS_26", "symbol": "dpmul"}, "56": {"type": "MIPS_26", "symbol": "dptoul"}, "76": {"type": "MIPS_26", "symbol": "__floatdidf", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "__floatdidf", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "dpadd"}, "120": {"type": "MIPS_26", "symbol": "dpsub"}, "140": {"type": "MIPS_26", "symbol": "dpcmp"}, "156": {"type": "MIPS_26", "symbol": "dpsub"}, "164": {"type": "MIPS_26", "symbol": "dptoul"}, "188": {"type": "MIPS_26", "symbol": "dptoul"}}}}, "8e6494f35548109492f885d08efb39ca4f3916ca": {"37891170": {"type": "FUNCTION", "size": 260, "library": "libgcc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "dpcmp"}, "52": {"type": "MIPS_26", "symbol": "dpmul"}, "60": {"type": "MIPS_26", "symbol": "dptoul"}, "92": {"type": "MIPS_26", "symbol": "__floatdidf", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "dpsub"}, "124": {"type": "MIPS_26", "symbol": "dpcmp"}, "144": {"type": "MIPS_26", "symbol": "dpsub"}, "152": {"type": "MIPS_26", "symbol": "dptoul"}, "208": {"type": "MIPS_26", "symbol": "dptoul"}, "232": {"type": "MIPS_26", "symbol": "__floatdidf", "scope": "LIBRARY"}, "244": {"type": "MIPS_26", "symbol": "dpadd"}}}}, "44e96cee389825b59166030995a02db488511701": {"2f391e58": {"type": "FUNCTION", "size": 256, "library": "libgcc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "dpcmp"}, "52": {"type": "MIPS_26", "symbol": "dpmul"}, "60": {"type": "MIPS_26", "symbol": "dptoul"}, "92": {"type": "MIPS_26", "symbol": "__floatdidf", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "dpsub"}, "124": {"type": "MIPS_26", "symbol": "dpcmp"}, "144": {"type": "MIPS_26", "symbol": "dpsub"}, "152": {"ty)PS2SDB", 8192}, + std::string_view{R"PS2SDB(pe": "MIPS_26", "symbol": "dptoul"}, "204": {"type": "MIPS_26", "symbol": "dptoul"}, "228": {"type": "MIPS_26", "symbol": "__floatdidf", "scope": "LIBRARY"}, "240": {"type": "MIPS_26", "symbol": "dpadd"}}}}, "ba7955827d2afbcebe18c8f994ce0f461616a496": {"2f391e58": {"type": "FUNCTION", "size": 256, "library": "libgcc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "dpcmp"}, "52": {"type": "MIPS_26", "symbol": "dpmul"}, "60": {"type": "MIPS_26", "symbol": "dptoul"}, "92": {"type": "MIPS_26", "symbol": "__floatdidf", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "dpsub"}, "124": {"type": "MIPS_26", "symbol": "dpcmp"}, "144": {"type": "MIPS_26", "symbol": "dpsub"}, "152": {"type": "MIPS_26", "symbol": "dptoul"}, "204": {"type": "MIPS_26", "symbol": "dptoul"}, "228": {"type": "MIPS_26", "symbol": "__floatdidf", "scope": "LIBRARY"}, "240": {"type": "MIPS_26", "symbol": "dpadd"}}}}}, "__fixdfdi": {"cb900124f6e88cc29bcd437069e53e9fe72efff4": {"16bec81e": {"type": "FUNCTION", "size": 120, "library": "libgcc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "dpcmp"}, "56": {"type": "MIPS_26", "symbol": "dpsub"}, "68": {"type": "MIPS_26", "symbol": "__fixunsdfdi", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "__fixunsdfdi", "scope": "LIBRARY"}}}}, "0b45a866cb8a98e149ae83e4c00dc2a8c6900faf": {"4716c0ee": {"type": "FUNCTION", "size": 92, "library": "libgcc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.0", "1.5.3", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.4", "2.2.1", "2.2.2", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.5", "2.5.7", "2.7.0", "2.8.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "dpcmp"}, "40": {"type": "MIPS_26", "symbol": "dpsub"}, "48": {"type": "MIPS_26", "symbol": "__fixunsdfdi", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "__fixunsdfdi", "scope": "LIBRARY"}}}}, "974d3116b22fe4eca422fc9b626324243003c2bc": {"ac5a3271": {"type": "FUNCTION", "size": 108, "library": "libgcc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "dpcmp"}, "60": {"type": "MIPS_26", "symbol": "__fixunsdfdi", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "dpsub"}, "76": {"type": "MIPS_26", "symbol": "__fixunsdfdi", "scope": "LIBRARY"}}}}}, "__pack_f": {"5a2e7b0b3b76031fab29ce0d1a6f8bf60f30fb00": {"00000000": {"type": "FUNCTION", "size": 180, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "deef44020f81f8c4e8ad685de3aba0cd7c2a7f5b": {"00000000": {"type": "FUNCTION", "size": 208, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.5", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "0488032ae27c0ee70d9295b2f524e2288099e302": {"00000000": {"type": "FUNCTION", "size": 268, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.2-3", "2.7.2", "2.8.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "b6376d15aa5e9a7e7cff4a8ae130a96a7ea00fe9": {"00000000": {"type": "FUNCTION", "size": 184, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "377eb851ec9d2490c51373ead0606ec02f7c42b5": {"00000000": {"type": "FUNCTION", "size": 264, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "2aa96ec3b7e7f00b3f6e8c127e2b6b932fbac61e": {"00000000": {"type": "FUNCTION", "size": 180, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "1cb8a7c70f9d682328aee8fec6aa6a6f71c6163e": {"00000000": {"type": "FUNCTION", "size": 180, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "__unpack_f": {"5077e3a809171dd9793399d5586d6c23e5939d02": {"00000000": {"type": "FUNCTION", "size": 92, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "9b3db73d5eb1b4bc1607a0ef65812f52a4eec633": {"00000000": {"type": "FUNCTION", "size": 144, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "cb6327e10322df2fe3458fbcdb2fc7c55e6b7774": {"00000000": {"type": "FUNCTION", "size": 84, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "1e457fb20e0fd5bb48c8cb93c0144fc4d71372f0": {"00000000": {"type": "FUNCTION", "size": 88, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "efca135122a1533f30ccf3b89dd1980fa44f98c1": {"00000000": {"type": "FUNCTION", "size": 84, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "fptosi": {"608f3c83fe8a64809d05d2cdf808a12c49e5058a": {"494ac0bc": {"type": "FUNCTION", "size": 124, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "__unpack_f"}}}}, "c4075b07ae07cde564e61d154fac7ced5d4cfa81": {"494ac0bc": {"type": "FUNCTION", "size": 140, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.2-3", "2.7.2", "2.8.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "__unpack_f", "original": ".text"}}}}, "7f28ecf11631285ccce99fdedfaa9f8d88886a2c": {"494ac0bc": {"type": "FUNCTION", "size": 140, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": )PS2SDB", 8192}, + std::string_view{R"PS2SDB({"type": "MIPS_26", "symbol": "__unpack_f", "original": ".text"}}}}}, "__make_fp": {"b4b3bf890632b2f6173573c203af43a1f4fab7be": {"98c83d76": {"type": "FUNCTION", "size": 44, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "__pack_f"}}}}, "9ddb04cffdc5196913f7b0eac7c08faa3364cc1b": {"98c83d76": {"type": "FUNCTION", "size": 44, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "__pack_f", "original": ".text"}}}}, "cff6222ebeb795fdd58063a745bcaf923416d151": {"8164b26d": {"type": "FUNCTION", "size": 48, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__pack_f"}}}}, "7d2618d2373eb18956982bb7be503388078b355f": {"98c83d76": {"type": "FUNCTION", "size": 44, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "__pack_f"}}}}}, "fptodp": {"62efbcd685945ff0973ac3707cf71dc3adc85c16": {"3cc91a5b": {"type": "FUNCTION", "size": 60, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "__unpack_f"}, "40": {"type": "MIPS_26", "symbol": "__make_dp"}}}}, "6761db1ebd64b8a0ae4d36fb90466746754b6b53": {"b6b57f38": {"type": "FUNCTION", "size": 64, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.2-3", "2.7.2", "2.8.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "__unpack_f", "original": ".text"}, "44": {"type": "MIPS_26", "symbol": "__make_dp"}}}}, "99f3013b98cd2385d2c489da933c5535079f6ab9": {"3cc91a5b": {"type": "FUNCTION", "size": 60, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "__unpack_f"}, "40": {"type": "MIPS_26", "symbol": "__make_dp"}}}}, "67f44c72201da89a3937e41ff447ef40a0ffe1e5": {"b6b57f38": {"type": "FUNCTION", "size": 64, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "__unpack_f", "original": ".text"}, "44": {"type": "MIPS_26", "symbol": "__make_dp"}}}}, "5f4c86c4b7930d6641f99a322de5ad878822de93": {"3cc91a5b": {"type": "FUNCTION", "size": 60, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "__unpack_f"}, "40": {"type": "MIPS_26", "symbol": "__make_dp"}}}}}, "fptoui": {"c7e15ed82718ea03eabb6f5c755d5b15689f88da": {"494ac0bc": {"type": "FUNCTION", "size": 128, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "__unpack_f"}}}}, "7dc96fe2f7a7173a50224a05a69407d8878c5883": {"494ac0bc": {"type": "FUNCTION", "size": 152, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.2-3", "2.7.2", "2.8.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "__unpack_f", "original": ".text"}}}}, "6453d7a0d8d48af2fe898cf3ed716377538e92e6": {"494ac0bc": {"type": "FUNCTION", "size": 152, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "__unpack_f", "original": ".text"}}}}}, "__pack_d": {"db7eb45b422f3855ec7a91d7800bbd97c15f0898": {"00000000": {"type": "FUNCTION", "size": 216, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "6fb58d82d6d2953467632206fdead9cf5baa27d1": {"00000000": {"type": "FUNCTION", "size": 280, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.5", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "4d5539727209b8e56e092207630f351bb206240f": {"00000000": {"type": "FUNCTION", "size": 300, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "8a0bf94d14dbd8a6057b101d81aaf681c06b4204": {"00000000": {"type": "FUNCTION", "size": 208, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "dc53c55826c0d5adaaa5584942da5e8e4c015dab": {"00000000": {"type": "FUNCTION", "size": 196, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "124e686eda18832b4ddb9e2601319af11c2f13e9": {"00000000": {"type": "FUNCTION", "size": 196, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "__unpack_d": {"09397a914312280073568256b00c2e2eea12e404": {"00000000": {"type": "FUNCTION", "size": 188, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "9799d5aff375954eea3f796d822f908f103bdc58": {"00000000": {"type": "FUNCTION", "size": 172, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", )PS2SDB", 8192}, + std::string_view{R"PS2SDB("2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.5", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "1a95e69885eb9fe281745dbe1af66b1db6f62343": {"00000000": {"type": "FUNCTION", "size": 156, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "bce608a0e352ed0cace4c57689d9ce717772a414": {"00000000": {"type": "FUNCTION", "size": 144, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "8a207badf6741d0042d1b6a9a0d6288f2182077d": {"00000000": {"type": "FUNCTION", "size": 144, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "e07d6be82592fe41714eafb569770492fd9e605e": {"00000000": {"type": "FUNCTION", "size": 144, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_fpadd_parts": {"5f7b6badf1187351420622b0b88645f32ae7f63a": {"77416175": {"type": "FUNCTION", "size": 604, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"76": {"type": "MIPS_HI16", "symbol": "", "original": "__thenan_df"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": "__thenan_df"}}}}, "a2599ac0fdde834eb5af0b4551963da8c082dbca": {"77416175": {"type": "FUNCTION", "size": 576, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "2752c248b0867bb817ec1324381a374d3f951e4d": {"77416175": {"type": "FUNCTION", "size": 564, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "be3ec41d51d63df83f868bdf7b42af4745098114": {"77416175": {"type": "FUNCTION", "size": 568, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "93779564c3d06a649a1d09d633ad1f932f0d632b": {"77416175": {"type": "FUNCTION", "size": 564, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "1393e289147a4c3854740cd661bf1e3a7eacde22": {"14536428": {"type": "FUNCTION", "size": 556, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"72": {"type": "MIPS_HI16", "symbol": "", "original": "__thenan_df"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "__thenan_df"}}}}, "11f3624988164b2a84f446dac5c71e16b3cebc92": {"14536428": {"type": "FUNCTION", "size": 548, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"72": {"type": "MIPS_HI16", "symbol": "", "original": "__thenan_df"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "__thenan_df"}}}}, "b5454d8eb791a49f64e3ec94c62718febcb842c3": {"c55863e9": {"type": "FUNCTION", "size": 548, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_HI16", "symbol": "", "original": "__thenan_df"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "__thenan_df"}}}}, "c8f7cb6f083932990649c8574ef06d91777e0a5a": {"00000000": {"type": "FUNCTION", "size": 512, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "dpadd": {"9c1aaf1563e3dacade0f117dbee082d3bc09787d": {"bd1c08bf": {"type": "FUNCTION", "size": 88, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "__unpack_d"}, "40": {"type": "MIPS_26", "symbol": "__unpack_d"}, "56": {"type": "MIPS_26", "symbol": "_fpadd_parts", "original": ".text"}, "64": {"type": "MIPS_26", "symbol": "__pack_d"}}}}, "ddc9a963db9ba99fcdffb03ee65e1f8f1ebd1f03": {"bd1c08bf": {"type": "FUNCTION", "size": 88, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "__unpack_d", "original": ".text"}, "40": {"type": "MIPS_26", "symbol": "__unpack_d", "original": ".text"}, "56": {"type": "MIPS_26", "symbol": "_fpadd_parts", "original": ".text"}, "64": {"type": "MIPS_26", "symbol": "__pack_d", "original": ".text"}}}}, "f0fdcdb80cba174c859b78a991a9f2a19a1e3467": {"eed4547e": {"type": "FUNCTION", "size": 96, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "__unpack_d"}, "48": {"type": "MIPS_26", "symbol": "__unpack_d"}, "64": {"type": "MIPS_26", "symbol": "_fpadd_parts", "original": ".text"}, "72": {"type": "MIPS_26", "symbol": "__pack_d"}}}}, "1ea5532e62f1ffde96d46bee1cb25a48718ea9f8": {"bd1c08bf": {"type": "FUNCTION", "size": 88, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "__unpack_d"}, "40": {"type": "MIPS_26", "symbol": "__unpack_d"}, "56": {"type": "MIPS_26", "symbol": "_fpadd_parts", "original": ".text"}, "64": {"type": "MIPS_26", "symbol": "__pack_d"}}}}}, "dpsub": {"4349f1e31ad9cfb5bb6a305744e8a93e9868eb78": {"57f9bf73": {"type")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: "FUNCTION", "size": 100, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "__unpack_d"}, "40": {"type": "MIPS_26", "symbol": "__unpack_d"}, "68": {"type": "MIPS_26", "symbol": "_fpadd_parts", "original": ".text"}, "76": {"type": "MIPS_26", "symbol": "__pack_d"}}}}, "715727868babf363a3795a423fa10b824425effe": {"57f9bf73": {"type": "FUNCTION", "size": 100, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "__unpack_d", "original": ".text"}, "40": {"type": "MIPS_26", "symbol": "__unpack_d", "original": ".text"}, "68": {"type": "MIPS_26", "symbol": "_fpadd_parts", "original": ".text"}, "76": {"type": "MIPS_26", "symbol": "__pack_d", "original": ".text"}}}}, "43dbb9a2d4ff4b71226166de1bd3ef454c3d45d8": {"300dd741": {"type": "FUNCTION", "size": 108, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "__unpack_d"}, "48": {"type": "MIPS_26", "symbol": "__unpack_d"}, "76": {"type": "MIPS_26", "symbol": "_fpadd_parts", "original": ".text"}, "84": {"type": "MIPS_26", "symbol": "__pack_d"}}}}, "6ecc9e084ace7545e1a9dff0493b48059e0c5dbf": {"57f9bf73": {"type": "FUNCTION", "size": 100, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "__unpack_d"}, "40": {"type": "MIPS_26", "symbol": "__unpack_d"}, "68": {"type": "MIPS_26", "symbol": "_fpadd_parts", "original": ".text"}, "76": {"type": "MIPS_26", "symbol": "__pack_d"}}}}, "a28114c5520753b1a5a1b2ef2522cae375916b1d": {"57f9bf73": {"type": "FUNCTION", "size": 100, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "__unpack_d"}, "40": {"type": "MIPS_26", "symbol": "__unpack_d"}, "68": {"type": "MIPS_26", "symbol": "_fpadd_parts", "original": ".text"}, "76": {"type": "MIPS_26", "symbol": "__pack_d"}}}}}, "dpmul": {"c70cbfb81152aefb24fd10dba8a762513f6dfb4f": {"6a23cf86": {"type": "FUNCTION", "size": 644, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "__unpack_d"}, "64": {"type": "MIPS_26", "symbol": "__unpack_d"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "__thenan_df"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": "__thenan_df"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": "__thenan_df"}, "280": {"type": "MIPS_26", "symbol": "__muldi3", "scope": "LIBRARY"}, "296": {"type": "MIPS_26", "symbol": "__muldi3", "scope": "LIBRARY"}, "312": {"type": "MIPS_26", "symbol": "__muldi3", "scope": "LIBRARY"}, "332": {"type": "MIPS_26", "symbol": "__muldi3", "scope": "LIBRARY"}, "596": {"type": "MIPS_26", "symbol": "__pack_d"}}}}, "4798daf6a9ef8e43a54eae1912818ccffbfd1712": {"941ea968": {"type": "FUNCTION", "size": 684, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.5", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "__unpack_d"}, "64": {"type": "MIPS_26", "symbol": "__unpack_d"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "__thenan_df"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": "__thenan_df"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": "__thenan_df"}, "280": {"type": "MIPS_26", "symbol": "__muldi3", "scope": "LIBRARY"}, "296": {"type": "MIPS_26", "symbol": "__muldi3", "scope": "LIBRARY"}, "312": {"type": "MIPS_26", "symbol": "__muldi3", "scope": "LIBRARY"}, "332": {"type": "MIPS_26", "symbol": "__muldi3", "scope": "LIBRARY"}, "636": {"type": "MIPS_26", "symbol": "__pack_d"}}}}, "a5bf657547ff4b3c810f4f02891834848ec1ef47": {"5a7f80fe": {"type": "FUNCTION", "size": 680, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "__unpack_d", "original": ".text"}, "68": {"type": "MIPS_26", "symbol": "__unpack_d", "original": ".text"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "272": {"type": "MIPS_26", "symbol": "__muldi3", "scope": "LIBRARY"}, "288": {"type": "MIPS_26", "symbol": "__muldi3", "scope": "LIBRARY"}, "304": {"type": "MIPS_26", "symbol": "__muldi3", "scope": "LIBRARY"}, "320": {"type": "MIPS_26", "symbol": "__muldi3", "scope": "LIBRARY"}, "628": {"type": "MIPS_26", "symbol": "__pack_d", "original": ".text"}}}}, "5e8b02ba494cbe33d60ec1dc443af0e752fa17d3": {"fb58f2af": {"type": "FUNCTION", "size": 692, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "__unpack_d", "original": ".text"}, "72": {"type": "MIPS_26", "symbol": "__unpack_d", "original": ".text"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "280": {"type": "MIPS_26", "symbol": "__muldi3", "scope": "LIBRARY"}, "296": {"type": "MIPS_26", "symbol": "__muldi3", "scope": "LIBRARY"}, "312": {"type": "MIPS_26", "symbol": "__muldi3", "scope": "LIBRARY"}, "328": {"type": "MIPS_26", "symbol": "__muldi3", "scope": "LIBRARY"}, "636": {"type": "MIPS_26", "symbol": "__pack_d", "original": ".text"}}}}, "f0fdcdb80cba174c859b78a991a9f2a19a1e3467": {"751c913c": {"type": "FUNCTION", "size": 96, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "__unpack_d"}, "48": {"type": "MIPS_26", "symbol": "__unpack_d"}, "64": {"type": "MIPS_26", "symbol": "_fpmul_parts", "original": ".text"}, "72": {"type": "MIPS_26", "symbol": "__pack_d"}}}}, "1ea5532e62f1ffde96d46bee1cb25a48718ea9f8": {"26d4cdfd": {"type": "FUNCTION", "size": 88, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "__unpack_d"}, "40": {"type": "MIPS_26", "symbol": "__unpack_d"}, "56": {"type": "MIPS_26", "symbol": "_fpmul_parts", "original": ".text"}, "64": {"type": "MIPS_26", "symbol": "__pack_d"}}}}}, "dpdiv": {"efce2ed9268781fc4fa3aadbaf62f399cad23de9": {"7db5c482": {"type": "FUNCTION", "size": 320, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.2", "2.4.)PS2SDB", 8192}, + std::string_view{R"PS2SDB(3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "__unpack_d"}, "40": {"type": "MIPS_26", "symbol": "__unpack_d"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": "__thenan_df"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "__thenan_df"}, "296": {"type": "MIPS_26", "symbol": "__pack_d"}}}}, "151ed6cb0a6cb4ad28b8061b19dff894b1ac56bf": {"8e76f8dc": {"type": "FUNCTION", "size": 372, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.5", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "__unpack_d"}, "40": {"type": "MIPS_26", "symbol": "__unpack_d"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": "__thenan_df"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "__thenan_df"}, "348": {"type": "MIPS_26", "symbol": "__pack_d"}}}}, "ea136c341f90718070b287e49f4d630e66af23b0": {"d5a70264": {"type": "FUNCTION", "size": 360, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "__unpack_d", "original": ".text"}, "40": {"type": "MIPS_26", "symbol": "__unpack_d", "original": ".text"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "336": {"type": "MIPS_26", "symbol": "__pack_d", "original": ".text"}}}}, "bcd50218b34ae7470040c7922f9e48b2270b9e5d": {"804c203e": {"type": "FUNCTION", "size": 352, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "__unpack_d", "original": ".text"}, "40": {"type": "MIPS_26", "symbol": "__unpack_d", "original": ".text"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "328": {"type": "MIPS_26", "symbol": "__pack_d", "original": ".text"}}}}, "1f307a04a91cca3becbffa5dc5ddc1d7a1c31a34": {"c2f46aa4": {"type": "FUNCTION", "size": 92, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "__unpack_d"}, "48": {"type": "MIPS_26", "symbol": "__unpack_d"}, "60": {"type": "MIPS_26", "symbol": "_fpdiv_parts", "original": ".text"}, "68": {"type": "MIPS_26", "symbol": "__pack_d"}}}}, "581b50f79a01c189a97e1ca26bdd08609d570337": {"29dd8dbf": {"type": "FUNCTION", "size": 84, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "__unpack_d"}, "40": {"type": "MIPS_26", "symbol": "__unpack_d"}, "52": {"type": "MIPS_26", "symbol": "_fpdiv_parts", "original": ".text"}, "60": {"type": "MIPS_26", "symbol": "__pack_d"}}}}}, "__fpcmp_parts_d": {"47d581cf70876975fab1e95b28b610f433dc5162": {"00000000": {"type": "FUNCTION", "size": 288, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "60b5c1831a16d4b36787e75158b4ac7064db8fc4": {"00000000": {"type": "FUNCTION", "size": 276, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "952aabd5d541d678a1458fa79b3d809f4477ff8c": {"00000000": {"type": "FUNCTION", "size": 252, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.0", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "0c765d163b7e12c2d3a080db9a064477762db400": {"00000000": {"type": "FUNCTION", "size": 252, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "dpcmp": {"03836640c339238cc019d23686898d02bb05ce47": {"6ae60fc3": {"type": "FUNCTION", "size": 76, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "__unpack_d"}, "40": {"type": "MIPS_26", "symbol": "__unpack_d"}, "52": {"type": "MIPS_26", "symbol": "__fpcmp_parts_d"}}}}, "04fbe0c48368a211a9393911f30dd06b082941a2": {"6ae60fc3": {"type": "FUNCTION", "size": 76, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "__unpack_d", "original": ".text"}, "40": {"type": "MIPS_26", "symbol": "__unpack_d", "original": ".text"}, "52": {"type": "MIPS_26", "symbol": "__fpcmp_parts_d", "original": ".text"}}}}, "b8b8dc64669c96cfa3a146da838fad770d3532f3": {"ca1a9fc4": {"type": "FUNCTION", "size": 84, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "__unpack_d"}, "48": {"type": "MIPS_26", "symbol": "__unpack_d"}, "60": {"type": "MIPS_26", "symbol": "__fpcmp_parts_d"}}}}, "76f6577923b49a07472c2dea9511ed759f65e6ad": {"6ae60fc3": {"type": "FUNCTION", "size": 76, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "__unpack_d"}, "40": {"type": "MIPS_26", "symbol": "__unpack_d"}, "52": {"type": "MIPS_26", "symbol": "__fpcmp_parts_d"}}}}}, "litodp": {"24fcb012f4d102f537bb334e7ee155b1b88fd256": {"74966621": {"type": "FUNCTION", "size": 184, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"164": {"type": "MIPS_26", "symbol": "__pack_d"}}}}, "04879367ca35a03ea3f338279533a2ec5e690e5b": {"74966621": {"type": "FUNCTION", "size": 184, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(2.4.3", "2.5.0", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"164": {"type": "MIPS_26", "symbol": "__pack_d", "original": ".text"}}}}, "2855cbc5af1a5840a56789c9c931d3dfe37a5db0": {"74966621": {"type": "FUNCTION", "size": 184, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"164": {"type": "MIPS_26", "symbol": "__pack_d", "original": ".text"}}}}, "82c85f8a2450af31a6200f7764e6f801fe972e9a": {"f7e589c3": {"type": "FUNCTION", "size": 180, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "__pack_d"}}}}, "9c243eeac82b650d9270dac5e15e51dafecb7088": {"f7e589c3": {"type": "FUNCTION", "size": 184, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "__pack_d"}}}}, "6dd5f47eed93a329ecb2b116f24890afa0632303": {"f7e589c3": {"type": "FUNCTION", "size": 176, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "__pack_d"}}}}}, "dptoli": {"746c9222283635590fec9a8773b057e738c0845d": {"a744a190": {"type": "FUNCTION", "size": 156, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "__unpack_d"}}}}, "ae957dc513cf49d79dfe7978dd8aa2a0ad77deff": {"a744a190": {"type": "FUNCTION", "size": 148, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "__unpack_d", "original": ".text"}}}}, "c205ed6bc60e1fcfae75f82d7d2d9bc346b545f9": {"7375ed17": {"type": "FUNCTION", "size": 164, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "__unpack_d"}}}}, "4c3b61fd0c965b3e7208b5bad7d868dd3fcffdf9": {"a744a190": {"type": "FUNCTION", "size": 160, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "__unpack_d"}}}}, "a7c05987d91c75d64158bb01dfc38f9a9b43f3d0": {"a744a190": {"type": "FUNCTION", "size": 156, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "__unpack_d"}}}}}, "__make_dp": {"0a7b5fc855837aff08c032f29c7ea8be4489b4fc": {"76c65c5a": {"type": "FUNCTION", "size": 44, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "__pack_d"}}}}, "9990180e7381534be4698aed44a292642767e546": {"76c65c5a": {"type": "FUNCTION", "size": 44, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "__pack_d", "original": ".text"}}}}, "2b86dda5f9feb0a455255754edaee5e5c510c301": {"6f6ad341": {"type": "FUNCTION", "size": 48, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__pack_d"}}}}, "597c1cc6db3cd232a4524686af58956b5e93e1f1": {"76c65c5a": {"type": "FUNCTION", "size": 44, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "__pack_d"}}}}}, "dptofp": {"62c9e4bf1096852b88a9e7bb13bf74a374214dd6": {"04e8d4de": {"type": "FUNCTION", "size": 84, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "__unpack_d"}, "64": {"type": "MIPS_26", "symbol": "__make_fp"}}}}, "0c3a4596a44b883c7ad480f4899e8246a15abe56": {"04e8d4de": {"type": "FUNCTION", "size": 84, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "__unpack_d", "original": ".text"}, "64": {"type": "MIPS_26", "symbol": "__make_fp"}}}}, "98c094ae81ab2f7c3e1a05d0cfaa149fda3302ff": {"b50b12f9": {"type": "FUNCTION", "size": 88, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "__unpack_d"}, "68": {"type": "MIPS_26", "symbol": "__make_fp"}}}}, "5b9bcae1a4a45ee18ae7803b5d65e32fb26949fc": {"04e8d4de": {"type": "FUNCTION", "size": 84, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "__unpack_d"}, "64": {"type": "MIPS_26", "symbol": "__make_fp"}}}}, "b8868c07fcb45f149ba4c0fe1cffb7396f88fee5": {"04e8d4de": {"type": "FUNCTION", "size": 84, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "__unpack_d"}, "64": {"type": "MIPS_26", "symbol": "__make_fp"}}}}}, "dptoul": {"586d92e6111d45daa453832d12024f515fe68f16": {"a744a190": {"type": "FUNCTION", "size": 160, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "__unpack_d"}}}}, "fba715693ef93de79600fa0ee7cea611492ea1b3": {"a744a190": {"type": "FUNCTION", "size": 160, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3")PS2SDB", 8192}, + std::string_view{R"PS2SDB(, "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "__unpack_d", "original": ".text"}}}}, "9799c769319c9d72715f6d8c81cd45efb9db6067": {"7375ed17": {"type": "FUNCTION", "size": 164, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "__unpack_d"}}}}, "61b25350197dc304c64bfa6959f3957a64a3f677": {"a744a190": {"type": "FUNCTION", "size": 164, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "__unpack_d"}}}}, "1fafe024dc875ba65c9eb1735b90c87e3927519d": {"a744a190": {"type": "FUNCTION", "size": 156, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "__unpack_d"}}}}}, "__floatdisf": {"4c167c2130bbb2188359a0f8c66a96d0209a5a1b": {"90dad5e4": {"type": "FUNCTION", "size": 232, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"84": {"type": "MIPS_26", "symbol": "litodp"}, "100": {"type": "MIPS_26", "symbol": "dpmul"}, "124": {"type": "MIPS_26", "symbol": "dpmul"}, "144": {"type": "MIPS_26", "symbol": "litodp"}, "172": {"type": "MIPS_26", "symbol": "dpadd"}, "188": {"type": "MIPS_26", "symbol": "dpadd"}, "200": {"type": "MIPS_26", "symbol": "dptofp"}}}}, "f5f0bad12917fef657877d61765f2af955590073": {"463e9257": {"type": "FUNCTION", "size": 224, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.3", "1.6.3", "1.6.5", "2.0.2", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.4", "2.5.5", "2.5.7", "2.8.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"92": {"type": "MIPS_26", "symbol": "litodp"}, "104": {"type": "MIPS_26", "symbol": "dpmul"}, "116": {"type": "MIPS_26", "symbol": "dpmul"}, "148": {"type": "MIPS_26", "symbol": "litodp"}, "172": {"type": "MIPS_26", "symbol": "dpadd"}, "184": {"type": "MIPS_26", "symbol": "dpadd"}, "192": {"type": "MIPS_26", "symbol": "dptofp"}}}}, "d080c164d6c526b5a1e1fd056a759b8a192d5c46": {"2c5f2d28": {"type": "FUNCTION", "size": 200, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"72": {"type": "MIPS_26", "symbol": "litodp"}, "84": {"type": "MIPS_26", "symbol": "dpmul"}, "100": {"type": "MIPS_26", "symbol": "dpmul"}, "124": {"type": "MIPS_26", "symbol": "litodp"}, "148": {"type": "MIPS_26", "symbol": "dpadd"}, "160": {"type": "MIPS_26", "symbol": "dpadd"}, "168": {"type": "MIPS_26", "symbol": "dptofp"}}}}, "88cc8bc3a84d55d5b5f1551b0646ad2ee42286ec": {"2c5f2d28": {"type": "FUNCTION", "size": 200, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"72": {"type": "MIPS_26", "symbol": "litodp"}, "84": {"type": "MIPS_26", "symbol": "dpmul"}, "100": {"type": "MIPS_26", "symbol": "dpmul"}, "124": {"type": "MIPS_26", "symbol": "litodp"}, "148": {"type": "MIPS_26", "symbol": "dpadd"}, "160": {"type": "MIPS_26", "symbol": "dpadd"}, "168": {"type": "MIPS_26", "symbol": "dptofp"}}}}}, "__fixunssfdi": {"264848aded2c684ce382f33d50f44f4e83267a22": {"48d5d651": {"type": "FUNCTION", "size": 296, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "fptodp"}, "40": {"type": "MIPS_26", "symbol": "dpcmp"}, "68": {"type": "MIPS_26", "symbol": "dpmul"}, "80": {"type": "MIPS_26", "symbol": "dptoul"}, "108": {"type": "MIPS_26", "symbol": "__floatdidf", "scope": "LIBRARY"}, "128": {"type": "MIPS_26", "symbol": "__floatdidf", "scope": "LIBRARY"}, "144": {"type": "MIPS_26", "symbol": "dpadd"}, "160": {"type": "MIPS_26", "symbol": "dpsub"}, "184": {"type": "MIPS_26", "symbol": "dpcmp"}, "212": {"type": "MIPS_26", "symbol": "dpsub"}, "224": {"type": "MIPS_26", "symbol": "dptoul"}, "248": {"type": "MIPS_26", "symbol": "dptoul"}}}}, "882c5384f6945456b4f7a133a97f3593c433f477": {"2145f3f1": {"type": "FUNCTION", "size": 244, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.3", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.4", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.1", "2.7.2", "2.8.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "fptodp"}, "32": {"type": "MIPS_26", "symbol": "dpcmp"}, "56": {"type": "MIPS_26", "symbol": "dpmul"}, "64": {"type": "MIPS_26", "symbol": "dptoul"}, "84": {"type": "MIPS_26", "symbol": "__floatdidf", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "__floatdidf", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "dpadd"}, "128": {"type": "MIPS_26", "symbol": "dpsub"}, "148": {"type": "MIPS_26", "symbol": "dpcmp"}, "164": {"type": "MIPS_26", "symbol": "dpsub"}, "172": {"type": "MIPS_26", "symbol": "dptoul"}, "196": {"type": "MIPS_26", "symbol": "dptoul"}}}}, "e6d13d8a4e1114b97c68dcd0b871049c9c2b10fe": {"38dbd648": {"type": "FUNCTION", "size": 264, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "fptodp"}, "32": {"type": "MIPS_26", "symbol": "dpcmp"}, "60": {"type": "MIPS_26", "symbol": "dpmul"}, "68": {"type": "MIPS_26", "symbol": "dptoul"}, "100": {"type": "MIPS_26", "symbol": "__floatdidf", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "dpsub"}, "132": {"type": "MIPS_26", "symbol": "dpcmp"}, "152": {"type": "MIPS_26", "symbol": "dpsub"}, "160": {"type": "MIPS_26", "symbol": "dptoul"}, "212": {"type": "MIPS_26", "symbol": "dptoul"}, "236": {"type": "MIPS_26", "symbol": "__floatdidf", "scope": "LIBRARY"}, "248": {"type": "MIPS_26", "symbol": "dpadd"}}}}, "878781b4f74700e51a2e8aade6b803c7bac6404f": {"38dbd648": {"type": "FUNCTION", "size": 264, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "fptodp"}, "32": {"type": "MIPS_26", "symbol": "dpcmp"}, "60": {"type": "MIPS_26", "symbol": "dpmul"}, "68": {"type": "MIPS_26", "symbol": "dptoul"}, "100": {"type": "MIPS_26", "symbol": "__floatdidf", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "dpsub"}, "132": {"type": "MIPS_26", "symbol": "dpcmp"}, "152": {"type": "MIPS_26", "symbol": "dpsub"}, "160": {"type": "MIPS_26", "symbol": "dptoul"}, "212": {"type": "MIPS_26", "symbol": "dptoul"}, "236": {"type": "MIPS_26", "symbol": "__floatdidf", "scope": "LIBRARY"}, "248": {"type": "MIPS_26", "symbol": "dpadd"}}}}}, "__fixsfdi": {"20b6fcc8e1b4ace1dc423493cb4b3afb10b5d5e9": {"45d1666d": {"type": "FUNCTION", "size": 68, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.2", "2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__fixunssfdi", "scope": "LIBRARY"}, "60": {"type": "MIPS_26", "symbol": "__fixu)PS2SDB", 8192}, + std::string_view{R"PS2SDB(nssfdi", "scope": "LIBRARY"}}}}, "78997d0a26e07634ea71a8046ab6f6968d2c2a2b": {"6ad090f6": {"type": "FUNCTION", "size": 60, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.4", "2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "__fixunssfdi", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "__fixunssfdi", "scope": "LIBRARY"}}}}, "5e9dbfff2516b31235ac12dbf8f4890470660691": {"588ab5e4": {"type": "FUNCTION", "size": 60, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.2", "2.0.7", "2.1.4", "2.2.4", "2.3.0", "2.3.4", "2.4.1", "2.5.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "__fixunssfdi", "scope": "LIBRARY"}, "40": {"type": "MIPS_26", "symbol": "__fixunssfdi", "scope": "LIBRARY"}}}}}, "__negdf2": {"77129ceb0241d7ffd70a5fd673e2e7ceff379245": {"3785ce6e": {"type": "FUNCTION", "size": 56, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "__unpack_d", "original": ".text"}, "36": {"type": "MIPS_26", "symbol": "__pack_d", "original": ".text"}}}}}, "fpadd": {"9443436e9e6fe7293b074718e32f9fc4d115137f": {"fb361012": {"type": "FUNCTION", "size": 88, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.2-3", "2.7.2", "2.8.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "__unpack_f", "original": ".text"}, "40": {"type": "MIPS_26", "symbol": "__unpack_f", "original": ".text"}, "56": {"type": "MIPS_26", "symbol": "_fpadd_parts", "original": ".text"}, "64": {"type": "MIPS_26", "symbol": "__pack_f", "original": ".text"}}}}, "f6aaa626d467c76714b8e571fc09deedbb1ed3bc": {"fb361012": {"type": "FUNCTION", "size": 88, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "__unpack_f", "original": ".text"}, "40": {"type": "MIPS_26", "symbol": "__unpack_f", "original": ".text"}, "56": {"type": "MIPS_26", "symbol": "_fpadd_parts", "original": ".text"}, "64": {"type": "MIPS_26", "symbol": "__pack_f", "original": ".text"}}}}, "7046a37723bed0bc03b068e4eb47702e23bd2c74": {"fb361012": {"type": "FUNCTION", "size": 88, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "__unpack_f"}, "40": {"type": "MIPS_26", "symbol": "__unpack_f"}, "56": {"type": "MIPS_26", "symbol": "_fpadd_parts", "original": ".text"}, "64": {"type": "MIPS_26", "symbol": "__pack_f"}}}}}, "fpsub": {"3cecb58045a1af3f7bcd6af4bc2138dd927415da": {"11d3a7de": {"type": "FUNCTION", "size": 100, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.2-3", "2.7.2", "2.8.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "__unpack_f", "original": ".text"}, "40": {"type": "MIPS_26", "symbol": "__unpack_f", "original": ".text"}, "68": {"type": "MIPS_26", "symbol": "_fpadd_parts", "original": ".text"}, "76": {"type": "MIPS_26", "symbol": "__pack_f", "original": ".text"}}}}, "252bdb8e1141cf5b6484c4656217d491046b6c08": {"11d3a7de": {"type": "FUNCTION", "size": 100, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "__unpack_f", "original": ".text"}, "40": {"type": "MIPS_26", "symbol": "__unpack_f", "original": ".text"}, "68": {"type": "MIPS_26", "symbol": "_fpadd_parts", "original": ".text"}, "76": {"type": "MIPS_26", "symbol": "__pack_f", "original": ".text"}}}}, "713eed84447faa61a5590e2da3050fb5328733aa": {"11d3a7de": {"type": "FUNCTION", "size": 100, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "__unpack_f"}, "40": {"type": "MIPS_26", "symbol": "__unpack_f"}, "68": {"type": "MIPS_26", "symbol": "_fpadd_parts", "original": ".text"}, "76": {"type": "MIPS_26", "symbol": "__pack_f"}}}}}, "fpmul": {"2f71584b3d24c2c18e3c8c6647853c14ccb20fa8": {"3a1e0760": {"type": "FUNCTION", "size": 500, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.2-3", "2.7.2", "2.8.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "__unpack_f", "original": ".text"}, "40": {"type": "MIPS_26", "symbol": "__unpack_f", "original": ".text"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "476": {"type": "MIPS_26", "symbol": "__pack_f", "original": ".text"}}}}, "6def8b9d082e44a1a1d78d328c83bef8b3dcc13b": {"4b3a6cf5": {"type": "FUNCTION", "size": 500, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "__unpack_f", "original": ".text"}, "40": {"type": "MIPS_26", "symbol": "__unpack_f", "original": ".text"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "476": {"type": "MIPS_26", "symbol": "__pack_f", "original": ".text"}}}}, "dd5d3b1585653b7c1d12ef2cba40abdfb27555f5": {"3a1e0760": {"type": "FUNCTION", "size": 500, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "__unpack_f", "original": ".text"}, "40": {"type": "MIPS_26", "symbol": "__unpack_f", "original": ".text"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "476": {"type": "MIPS_26", "symbol": "__pack_f", "original": ".text"}}}}, "c6ac785340289036cfbca81626837f0e4340965e": {"fa55ac9d": {"type": "FUNCTION", "size": 428, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "__unpack_f"}, "40": {"type": "MIPS_26", "symbol": "__unpack_f"}, "404": {"type": "MIPS_26", "symbol": "__pack_f"}}}}}, "fpdiv": {"14ae099c382513947f733a058c2454d00cdab63c": {"b7573060": {"type": "FUNCTION", "size": 352, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2)PS2SDB", 8192}, + std::string_view{R"PS2SDB(.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.2-3", "2.7.2", "2.8.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "__unpack_f", "original": ".text"}, "40": {"type": "MIPS_26", "symbol": "__unpack_f", "original": ".text"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "328": {"type": "MIPS_26", "symbol": "__pack_f", "original": ".text"}}}}, "259b22c801c377d8792ee4c6684ba77ff6297652": {"840e2e56": {"type": "FUNCTION", "size": 344, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "__unpack_f", "original": ".text"}, "40": {"type": "MIPS_26", "symbol": "__unpack_f", "original": ".text"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "320": {"type": "MIPS_26", "symbol": "__pack_f", "original": ".text"}}}}, "fca7b6b9c36a48f391649eec47b63c722774ea6b": {"b7573060": {"type": "FUNCTION", "size": 352, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "__unpack_f", "original": ".text"}, "40": {"type": "MIPS_26", "symbol": "__unpack_f", "original": ".text"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "328": {"type": "MIPS_26", "symbol": "__pack_f", "original": ".text"}}}}}, "__fpcmp_parts_f": {"a47b9ac057715b43c7848eb66c5892b828efb0bb": {"00000000": {"type": "FUNCTION", "size": 276, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "fpcmp": {"6627343ec2f3800a86b4046a2de86035c8035c21": {"6ad85aea": {"type": "FUNCTION", "size": 76, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.2-3", "2.7.2", "2.8.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "__unpack_f", "original": ".text"}, "40": {"type": "MIPS_26", "symbol": "__unpack_f", "original": ".text"}, "52": {"type": "MIPS_26", "symbol": "__fpcmp_parts_f", "original": ".text"}}}}, "9d265b46027298ebca20e3e042fd1345ff6f83e4": {"6ad85aea": {"type": "FUNCTION", "size": 76, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "__unpack_f", "original": ".text"}, "40": {"type": "MIPS_26", "symbol": "__unpack_f", "original": ".text"}, "52": {"type": "MIPS_26", "symbol": "__fpcmp_parts_f", "original": ".text"}}}}}, "sitofp": {"7be8a9e00068098e391c253ceba597a3023e40f7": {"9a98070d": {"type": "FUNCTION", "size": 184, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.2-3", "2.7.2", "2.8.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"164": {"type": "MIPS_26", "symbol": "__pack_f", "original": ".text"}}}}, "aeb45c554ce65965efe701147e390f8d758b04f8": {"9a98070d": {"type": "FUNCTION", "size": 184, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"164": {"type": "MIPS_26", "symbol": "__pack_f", "original": ".text"}}}}, "dc6c9335b347145e6df5addb0e1d4651a8207cd1": {"02175d8f": {"type": "FUNCTION", "size": 176, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"156": {"type": "MIPS_26", "symbol": "__pack_f", "original": ".text"}}}}}, "__negsf2": {"e2b62b7f9d1388bc317d993a5c29fea4689d2225": {"710d1ed3": {"type": "FUNCTION", "size": 56, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.2-3", "2.7.2", "2.8.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "__unpack_f", "original": ".text"}, "36": {"type": "MIPS_26", "symbol": "__pack_f", "original": ".text"}}}}, "8680ece28d079c9e2ba473187a35913af66346d8": {"710d1ed3": {"type": "FUNCTION", "size": 56, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "__unpack_f", "original": ".text"}, "36": {"type": "MIPS_26", "symbol": "__pack_f", "original": ".text"}}}}}, "__default_terminate": {"c0a5a6b6b96e3534f1ce618782a40e20574c6678": {"621997a4": {"type": "FUNCTION", "size": 20, "library": "libgcc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.5", "2.7.0", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "abort"}}}}, "4e8e3b7e57ef63a477970da68cf7876077246d29": {"d2c0e426": {"type": "FUNCTION", "size": 16, "library": "libgcc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.0", "1.6.5", "2.0.2", "2.2.2", "2.3.0", "2.3.4", "2.4.2", "2.5.7", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "abort"}}}}}, "__terminate": {"2e57da37cd0fe2dba72a202fe97888bf1764920c": {"b9e78b8c": {"type": "FUNCTION", "size": 24, "library": "libgcc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.5", "2.7.0", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "e7071523f021aba02e257a327b60cc88961f6270": {"d3e72eac": {"type": "FUNCTION", "size": 36, "library": "libgcc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.0", "1.6.5", "2.0.2", "2.2.2", "2.3.0", "2.3.4", "2.4.2", "2.5.7", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__throw_type_match": {"feb1474a3daf3fc4681899b20e9c56d0f058e1ea": {"d6f7ce78": {"type": "FUNCTION", "size": 44, "library": "libgcc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.5", "2.7.0", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "strcmp"}}}}, "5fa41200110647ffe57553882bcf7fa56170523c": {"d6f7ce78": {"type": "FUNCTION", "size": 44, "library": "libgcc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.0", "1.6.5", )PS2SDB", 8192}, + std::string_view{R"PS2SDB("2.0.2", "2.2.2", "2.3.0", "2.3.4", "2.4.2", "2.5.7", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "strcmp"}}}}}, "__empty": {"7678540574197b420f17571673856a74783eb9d5": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.6.5", "2.0.2", "2.2.2", "2.3.0", "2.3.4", "2.4.2", "2.5.0", "2.5.2", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "new_eh_context": {"e469348f137636684b9d4ffc3179e369e2ba75c9": {"e3df4bfd": {"type": "FUNCTION", "size": 84, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.5", "2.7.0", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "malloc"}, "40": {"type": "MIPS_26", "symbol": "__terminate", "scope": "LIBRARY", "original": ".text"}, "48": {"type": "MIPS_26", "symbol": "memset"}}}}, "c4fd1003ce7c724d0431e299040b3fc281cacd35": {"4d038e5f": {"type": "FUNCTION", "size": 84, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.2.2", "2.3.0", "2.3.4", "2.4.2", "2.5.7", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "malloc"}, "32": {"type": "MIPS_26", "symbol": "__terminate", "scope": "LIBRARY", "original": ".text"}, "48": {"type": "MIPS_26", "symbol": "memset"}}}}, "0f9042392bd0cf845ec7b7634089333095c7e2cc": {"ed8b181f": {"type": "FUNCTION", "size": 80, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.5.0"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "malloc"}, "28": {"type": "MIPS_26", "symbol": "__terminate", "scope": "LIBRARY", "original": ".text"}, "44": {"type": "MIPS_26", "symbol": "memset"}}}}}, "eh_context_free": {"290987bf26b6911d336a043c2161c85c32bc8774": {"0ebf9cec": {"type": "FUNCTION", "size": 36, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.5", "2.7.0", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "free"}}}}}, "__get_eh_context": {"eddeebe43f966569cb07e274af70748357a108dd": {"b9e78b8c": {"type": "FUNCTION", "size": 36, "library": "libgcc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.5", "2.7.0", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "4f3164b0f2df6fcf75620dffd141afcb54fa03dc": {"d3e72eac": {"type": "FUNCTION", "size": 36, "library": "libgcc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.0", "1.6.5", "2.0.2", "2.2.2", "2.3.0", "2.3.4", "2.4.2", "2.5.7", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__get_eh_info": {"7534c193b6a35628eea7827bd972ccdc70e0b6d9": {"b9e78b8c": {"type": "FUNCTION", "size": 40, "library": "libgcc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.5", "2.7.0", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "3a1dd97bd03e115710c873e2eb3555c8f6d65b68": {"d3e72eac": {"type": "FUNCTION", "size": 40, "library": "libgcc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.0", "1.6.5", "2.0.2", "2.2.2", "2.3.0", "2.3.4", "2.4.2", "2.5.7", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "init_reg_size_table": {"449bee4b197916866940d87ee01cdb55877a16eb": {"09555309": {"type": "FUNCTION", "size": 520, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.5", "2.7.0", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "440": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "eh_threads_initialize": {"04f92af72b1fbda575847f38c4cfa72a372369e9": {"01361aa7": {"type": "FUNCTION", "size": 20, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.5", "2.7.0", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "eh_context_specific", "original": ".text"}, "4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "eh_context_specific", "original": ".text"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "eh_context_initialize": {"fa2f8073892f981f9e1af16c9e4616530be390f5": {"e0840940": {"type": "FUNCTION", "size": 100, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.5", "2.7.0", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_26", "symbol": "init_reg_size_table", "scope": "LIBRARY", "original": ".text"}}}}, "44cc566b1c3af87e0a36cb485f84c62fc164c555": {"f38c3fd9": {"type": "FUNCTION", "size": 40, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.6.5", "2.0.2", "2.2.2", "2.3.0", "2.3.4", "2.4.2", "2.5.7", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "eh_context_static", "original": ".text"}, "8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "eh_context_static", "original": ".text"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "eh_context_static": {"3c56a1e814a647c27df5b1f40b0cfc3214b3879c": {"6d0a237a": {"type": "FUNCTION", "size": 100, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.5", "2.7.0", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "memset"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "4508e443bd4254478739b86dc44a11f5b4c1ea8a": {"5139a273": {"type": "FUNCTION", "size": 104, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.2.2", "2.3.0", "2.3.4", "2.4.2", "2.5.7", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", )PS2SDB", 8192}, + std::string_view{R"PS2SDB("symbol": "", "original": ".bss"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_26", "symbol": "memset"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "05f3a6b4b253b928ed23840718a830aed45a79f9": {"954dfc24": {"type": "FUNCTION", "size": 96, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.5.0"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_26", "symbol": "memset"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "eh_context_specific": {"acee898de77277e86d9f7a044f254ef10c731af1": {"ab48d371": {"type": "FUNCTION", "size": 136, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.5", "2.7.0", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "key_value"}, "20": {"type": "MIPS_26", "symbol": "GetThreadId"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "key_value"}, "48": {"type": "MIPS_26", "symbol": "new_eh_context", "scope": "LIBRARY", "original": ".text"}, "56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "84": {"type": "MIPS_26", "symbol": "free"}, "92": {"type": "MIPS_26", "symbol": "GetThreadId"}}}}}, "__eh_alloc": {"b3830aab8c8b642534029e1ba59d3b39b11ac7f3": {"0a510087": {"type": "FUNCTION", "size": 224, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.5", "2.7.0", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "abort"}, "32": {"type": "MIPS_26", "symbol": "malloc"}, "48": {"type": "MIPS_26", "symbol": "__get_eh_context", "scope": "LIBRARY", "original": ".text"}, "88": {"type": "MIPS_26", "symbol": "__terminate", "scope": "LIBRARY", "original": ".text"}, "172": {"type": "MIPS_26", "symbol": "__terminate", "scope": "LIBRARY", "original": ".text"}}}}, "3f27e852c9c7a3aa388a22cfd44f4ff70ad85b5e": {"5dad6686": {"type": "FUNCTION", "size": 40, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "malloc"}, "24": {"type": "MIPS_26", "symbol": "terminate__Fv", "scope": "LIBRARY", "original": ".text"}}}}}, "__eh_free": {"75b27a2933389707b6a2dae3df7700dc9eaa9e3d": {"d145c82a": {"type": "FUNCTION", "size": 144, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.5", "2.7.0", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "__get_eh_context", "scope": "LIBRARY", "original": ".text"}, "136": {"type": "MIPS_26", "symbol": "free"}}}}, "7ba17f652620d1a8770717ffc05543c774ba24f8": {"3ac65df0": {"type": "FUNCTION", "size": 28, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "free"}}}}}, "__get_dynamic_handler_chain": {"3f9ac01db8add4e7fa8dc9082c609917a17f2567": {"b9e78b8c": {"type": "FUNCTION", "size": 40, "library": "libgcc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.5", "2.7.0", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "1a301868b8c46130ac53888a6a01ba6f668aed76": {"d3e72eac": {"type": "FUNCTION", "size": 40, "library": "libgcc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.0", "1.6.5", "2.0.2", "2.2.2", "2.3.0", "2.3.4", "2.4.2", "2.5.7", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__sjthrow": {"d030277394f29a006888f0c712cfb8bf83a31b3e": {"de87499f": {"type": "FUNCTION", "size": 352, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.5", "2.7.0", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "272": {"type": "MIPS_26", "symbol": "__terminate", "scope": "LIBRARY", "original": ".text"}, "316": {"type": "MIPS_26", "symbol": "__terminate", "scope": "LIBRARY", "original": ".text"}}}}, "e3fdf8049020745e7f00beffbf77ca376cffe64d": {"a7e18ac6": {"type": "FUNCTION", "size": 376, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.2.2", "2.3.0", "2.3.4", "2.4.2", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "288": {"type": "MIPS_26", "symbol": "__terminate", "scope": "LIBRARY", "original": ".text"}, "328": {"type": "MIPS_26", "symbol": "__terminate", "scope": "LIBRARY", "original": ".text"}}}}, "68f4a0dc1d42d8e94a45a5d8ae4975e2d2a03fd6": {"46e0e9d1": {"type": "FUNCTION", "size": 376, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "292": {"type": "MIPS_26", "symbol": "__terminate", "scope": "LIBRARY", "original": ".text"}, "332": {"type": "MIPS_26", "symbol": "__terminate", "scope": "LIBRARY", "original": ".text"}}}}, "2ca5f0e7f66074dc27d5ab8721358d81c81c7abe": {"514ed197": {"type": "FUNCTION", "size": 328, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "240": {"type": "MIPS_26", "symbol": "__terminate", "scope": "LIBRARY", "original": ".text"}, "280": {"type": "MIPS_26", "symbol": "__terminate", "scope": "LIBRARY", "original": ".text"}}}}}, "__sjpopnthrow": {"9d7e4ea99f0d264e48a55c7cfe998b631c5d27ae": {"1fede208": {"type": "FUNCTION", "size": 296, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.5", "2.7.0", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01)PS2SDB", 8192}, + std::string_view{R"PS2SDB("], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "272": {"type": "MIPS_26", "symbol": "__terminate", "scope": "LIBRARY", "original": ".text"}, "288": {"type": "MIPS_26", "symbol": "__sjthrow", "scope": "LIBRARY", "original": ".text"}}}}, "30f957b89696e2244678ebb5bb7e0d638335abbd": {"0eace4cb": {"type": "FUNCTION", "size": 280, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.2.2", "2.3.0", "2.3.4", "2.4.2", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "272": {"type": "MIPS_26", "symbol": "__sjthrow", "scope": "LIBRARY", "original": ".text"}}}}, "0f364047e250a2066f133d7eabe5d67f44961bbc": {"4ace7b84": {"type": "FUNCTION", "size": 264, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0"], "compiler_versions": ["2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "256": {"type": "MIPS_26", "symbol": "__sjthrow", "scope": "LIBRARY", "original": ".text"}}}}, "52e3a07c2cac5a4fc5f4e36c4cd9ac08837244ed": {"bed84494": {"type": "FUNCTION", "size": 232, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "224": {"type": "MIPS_26", "symbol": "__sjthrow", "scope": "LIBRARY", "original": ".text"}}}}}, "__eh_rtime_match": {"35fd79233374f474aaf44a4cbf6acd99b6e30ef7": {"d267fc4a": {"type": "FUNCTION", "size": 72, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.5", "2.7.0", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "__get_eh_info", "scope": "LIBRARY", "original": ".text"}}}}, "6c4b7bc958bcc05b1106590b5aa6356a6ec2c4f1": {"d267fc4a": {"type": "FUNCTION", "size": 72, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.6.5", "2.0.2", "2.2.2", "2.3.0", "2.3.4", "2.4.2", "2.5.7", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "__get_eh_info", "scope": "LIBRARY", "original": ".text"}}}}}, "__get_eh_table_version": {"5f834d827b9633d2e1da3b2325960d7b697554f9": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.6.5", "2.0.2", "2.2.2", "2.3.0", "2.3.4", "2.4.2", "2.5.0", "2.5.2", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "__get_eh_table_language": {"615df7573846bd8605baaefe68bc5f9436247523": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.6.5", "2.0.2", "2.2.2", "2.3.0", "2.3.4", "2.4.2", "2.5.0", "2.5.2", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "old_find_exception_handler": {"74e26514401a6345aaf406dabc09b2fe3a28afe7": {"00000000": {"type": "FUNCTION", "size": 208, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.5", "2.7.0", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "ae2272e276026c5c40a139576ffc0c18db241694": {"00000000": {"type": "FUNCTION", "size": 216, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.6.5", "2.0.2", "2.2.2", "2.3.0", "2.3.4", "2.4.2", "2.5.7", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "find_exception_handler": {"d841b69725e73ac4d736338486b7eef6213d280d": {"00000000": {"type": "FUNCTION", "size": 316, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.5", "2.7.0", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "44f67b08aa440db0f583eb35af1559e558148c15": {"00000000": {"type": "FUNCTION", "size": 324, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.6.5", "2.0.2", "2.2.2", "2.3.0", "2.3.4", "2.4.2", "2.5.7", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "get_reg_addr": {"85605bc450eace72e6cfe0c93c305ebf3fab609f": {"a521d1b9": {"type": "FUNCTION", "size": 144, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.5", "2.7.0", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"136": {"type": "MIPS_26", "symbol": "abort"}}}}, "417cafa8b0cd61a7853ea1b24b80fbdd57b4ac9a": {"26f82412": {"type": "FUNCTION", "size": 136, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.2.2", "2.3.0", "2.3.4", "2.4.2", "2.5.7", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"116": {"type": "MIPS_26", "symbol": "abort"}}}}, "b865c70d73fc14a0f49a7abc8188ef8e793e2ba3": {"2ce2b6d5": {"type": "FUNCTION", "size": 140, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.5.0"], "compiler_versions": ["2.3.1.01"], "relocations": {"120": {"type": "MIPS_26", "symbol": "abort"}}}}}, "copy_reg": {"de9b2f8dd1f65a4b630175aabdab4bd431d38dc0": {"fe07fbfc": {"type": "FUNCTION", "size": 100, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.5", "2.7.0", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "get_reg_addr", "scope": "LIBRARY", "original": ".text"}, "48": {"type": "MIPS_26", "symbol": "get_reg_addr", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_26", "symbol": "memcpy"}}}}, "c8e9c867117e53cb50ad1939e455c0fdc3feed7b": {"64b41891": {"type": "FUNCTION", "size": 124, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.6.5", "2.0.2", "2.2.2", "2.3.0", "2.3.4", "2.4.2", "2.5.7", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "get_reg_addr", "scope": "LIBRARY", "original": ".text"}, "48": {"type": "MIPS_26", "symbol": "get_reg_addr", "scope": "LIBRARY", "original": ".text"}, "92": {"type": "MIPS_26", "symbol": "memcpy"}}}}}, "next_stack_level": {"6f578bfa585375d68cadacca9c4210c92be0d094": {"5aef7fda": {"type": "FUNCTION", "size": 176, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.5", "2.7.0", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "__frame_state_for"}, "64": {"type": "MIPS_26", "symbol": "get_reg_addr", "scope": "LIBRARY", "original": ".text"}}}}, "341a31b5a38565c429096ca01919ccb7b404fa98": {"5aef7fda": {"type": "FUNCTION", "size": 140, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1)PS2SDB", 8192}, + std::string_view{R"PS2SDB(.6.5", "2.0.2", "2.2.2", "2.3.0", "2.3.4", "2.4.2", "2.5.7", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "__frame_state_for"}, "64": {"type": "MIPS_26", "symbol": "get_reg_addr", "scope": "LIBRARY", "original": ".text"}}}}}, "__unwinding_cleanup": {"7678540574197b420f17571673856a74783eb9d5": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.6.5", "2.0.2", "2.2.2", "2.3.0", "2.3.4", "2.4.2", "2.5.0", "2.5.2", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "throw_helper": {"3d5132838a5d81cba039b45e1ba3a9080067e3a4": {"c9f3d029": {"type": "FUNCTION", "size": 908, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.5", "2.7.0", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"252": {"type": "MIPS_26", "symbol": "find_exception_handler", "scope": "LIBRARY", "original": ".text"}, "288": {"type": "MIPS_26", "symbol": "find_exception_handler", "scope": "LIBRARY", "original": ".text"}, "304": {"type": "MIPS_26", "symbol": "old_find_exception_handler", "scope": "LIBRARY", "original": ".text"}, "460": {"type": "MIPS_26", "symbol": "get_reg_addr", "scope": "LIBRARY", "original": ".text"}, "496": {"type": "MIPS_26", "symbol": "next_stack_level", "scope": "LIBRARY", "original": ".text"}, "544": {"type": "MIPS_26", "symbol": "__unwinding_cleanup", "scope": "LIBRARY", "original": ".text"}, "560": {"type": "MIPS_26", "symbol": "__terminate", "scope": "LIBRARY", "original": ".text"}, "712": {"type": "MIPS_26", "symbol": "next_stack_level", "scope": "LIBRARY", "original": ".text"}, "768": {"type": "MIPS_26", "symbol": "copy_reg", "scope": "LIBRARY", "original": ".text"}, "800": {"type": "MIPS_26", "symbol": "get_reg_addr", "scope": "LIBRARY", "original": ".text"}}}}, "2aee875bc3966a4ee910fa860d626b755b7db9ee": {"bf962718": {"type": "FUNCTION", "size": 816, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.2.2", "2.3.0", "2.3.4", "2.4.2", "2.5.7", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"164": {"type": "MIPS_26", "symbol": "find_exception_handler", "scope": "LIBRARY", "original": ".text"}, "204": {"type": "MIPS_26", "symbol": "find_exception_handler", "scope": "LIBRARY", "original": ".text"}, "224": {"type": "MIPS_26", "symbol": "old_find_exception_handler", "scope": "LIBRARY", "original": ".text"}, "384": {"type": "MIPS_26", "symbol": "get_reg_addr", "scope": "LIBRARY", "original": ".text"}, "420": {"type": "MIPS_26", "symbol": "next_stack_level", "scope": "LIBRARY", "original": ".text"}, "468": {"type": "MIPS_26", "symbol": "__unwinding_cleanup", "scope": "LIBRARY", "original": ".text"}, "484": {"type": "MIPS_26", "symbol": "__terminate", "scope": "LIBRARY", "original": ".text"}, "624": {"type": "MIPS_26", "symbol": "next_stack_level", "scope": "LIBRARY", "original": ".text"}, "680": {"type": "MIPS_26", "symbol": "copy_reg", "scope": "LIBRARY", "original": ".text"}, "708": {"type": "MIPS_26", "symbol": "get_reg_addr", "scope": "LIBRARY", "original": ".text"}}}}, "d6d5726c550303d6115ef4b9e1aad9d409f2e15f": {"d142823f": {"type": "FUNCTION", "size": 796, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.5.0"], "compiler_versions": ["2.3.1.01"], "relocations": {"164": {"type": "MIPS_26", "symbol": "find_exception_handler", "scope": "LIBRARY", "original": ".text"}, "204": {"type": "MIPS_26", "symbol": "find_exception_handler", "scope": "LIBRARY", "original": ".text"}, "224": {"type": "MIPS_26", "symbol": "old_find_exception_handler", "scope": "LIBRARY", "original": ".text"}, "376": {"type": "MIPS_26", "symbol": "get_reg_addr", "scope": "LIBRARY", "original": ".text"}, "412": {"type": "MIPS_26", "symbol": "next_stack_level", "scope": "LIBRARY", "original": ".text"}, "460": {"type": "MIPS_26", "symbol": "__unwinding_cleanup", "scope": "LIBRARY", "original": ".text"}, "476": {"type": "MIPS_26", "symbol": "__terminate", "scope": "LIBRARY", "original": ".text"}, "600": {"type": "MIPS_26", "symbol": "next_stack_level", "scope": "LIBRARY", "original": ".text"}, "656": {"type": "MIPS_26", "symbol": "copy_reg", "scope": "LIBRARY", "original": ".text"}, "688": {"type": "MIPS_26", "symbol": "get_reg_addr", "scope": "LIBRARY", "original": ".text"}}}}}, "__throw": {"f6b0b99dc413ff866b91b3d7a3604329beb2ded6": {"9c091205": {"type": "FUNCTION", "size": 336, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.5", "2.7.0", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "128": {"type": "MIPS_26", "symbol": "__terminate", "scope": "LIBRARY", "original": ".text"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "144": {"type": "MIPS_26", "symbol": "__frame_state_for"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "160": {"type": "MIPS_26", "symbol": "__terminate", "scope": "LIBRARY", "original": ".text"}, "204": {"type": "MIPS_26", "symbol": "throw_helper", "scope": "LIBRARY", "original": ".text"}, "212": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}}}}, "6e0dd11fd083df84e6001e3c1d578970f57f79c3": {"ac2f210c": {"type": "FUNCTION", "size": 476, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.2.2", "2.3.0", "2.3.4", "2.4.2", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_26", "symbol": "__terminate", "scope": "LIBRARY", "original": ".text"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "172": {"type": "MIPS_26", "symbol": "__frame_state_for"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "192": {"type": "MIPS_26", "symbol": "__terminate", "scope": "LIBRARY", "original": ".text"}, "312": {"type": "MIPS_26", "symbol": "throw_helper", "scope": "LIBRARY", "original": ".text"}, "324": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "332": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}}}}, "648fab1367d99dd95a6c30ce4377edfa58c2f943": {"2cfab96d": {"type": "FUNCTION", "size": 452, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_26", "symbol": "__terminate", "scope": "LIBRARY", "original": ".text"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "160": {"type": "MIPS_26", "symbol": "__frame_state_for"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "176": {"type": "MIPS_26", "symbol": "__terminate", "scope": "LIBRARY", "original": ".text"}, "288": {"type": "MIPS_26", "symbol": "throw_helper", "scope": "LIBRARY", "original": ".text"}, "300": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}}}}, "ce0e051464a1415dbff2cdd95d66abd26326e44d": {"92b4e8cf": {"type": "FUNCTION", "size": 380, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_26", "symbol": "__terminate", "scope": "LIBRARY", "origina)PS2SDB", 8192}, + std::string_view{R"PS2SDB(l": ".text"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "124": {"type": "MIPS_26", "symbol": "__frame_state_for"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "144": {"type": "MIPS_26", "symbol": "__terminate", "scope": "LIBRARY", "original": ".text"}, "264": {"type": "MIPS_26", "symbol": "throw_helper", "scope": "LIBRARY", "original": ".text"}, "276": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}}}}}, "__rethrow": {"2fd27e030588d5eac5560d099e72d2ae2125a390": {"a2e9bd76": {"type": "FUNCTION", "size": 352, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.5", "2.7.0", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_26", "symbol": "__terminate", "scope": "LIBRARY", "original": ".text"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "160": {"type": "MIPS_26", "symbol": "__frame_state_for"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "176": {"type": "MIPS_26", "symbol": "__terminate", "scope": "LIBRARY", "original": ".text"}, "220": {"type": "MIPS_26", "symbol": "throw_helper", "scope": "LIBRARY", "original": ".text"}, "228": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}}}}, "37ae15625bbcec8b08bde1138f6eab6fb04cf0d8": {"124cac5b": {"type": "FUNCTION", "size": 484, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.2.2", "2.3.0", "2.3.4", "2.4.2", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_26", "symbol": "__terminate", "scope": "LIBRARY", "original": ".text"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "180": {"type": "MIPS_26", "symbol": "__frame_state_for"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "200": {"type": "MIPS_26", "symbol": "__terminate", "scope": "LIBRARY", "original": ".text"}, "320": {"type": "MIPS_26", "symbol": "throw_helper", "scope": "LIBRARY", "original": ".text"}, "332": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}}}}, "6647511657f5736a6ecb404053ecbdfada70cc39": {"b874003b": {"type": "FUNCTION", "size": 472, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_26", "symbol": "__terminate", "scope": "LIBRARY", "original": ".text"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "180": {"type": "MIPS_26", "symbol": "__frame_state_for"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "196": {"type": "MIPS_26", "symbol": "__terminate", "scope": "LIBRARY", "original": ".text"}, "308": {"type": "MIPS_26", "symbol": "throw_helper", "scope": "LIBRARY", "original": ".text"}, "320": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "336": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}}}}, "867c79a1446cc2e1352e90b67225aca60451e57a": {"413ad60a": {"type": "FUNCTION", "size": 388, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_26", "symbol": "__terminate", "scope": "LIBRARY", "original": ".text"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "__frame_state_for"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "152": {"type": "MIPS_26", "symbol": "__terminate", "scope": "LIBRARY", "original": ".text"}, "272": {"type": "MIPS_26", "symbol": "throw_helper", "scope": "LIBRARY", "original": ".text"}, "284": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "292": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}}}}}, "decode_uleb128": {"9950ca099554a024f56ff89a349b7c738906eeae": {"00000000": {"type": "FUNCTION", "size": 68, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.5", "2.7.0", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "a3733c7fdee5e10b2a59776d30152f0e37d84012": {"00000000": {"type": "FUNCTION", "size": 68, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.6.5", "2.0.2", "2.2.2", "2.3.0", "2.3.4", "2.4.2", "2.5.7", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "decode_sleb128": {"a49eca4cd58fdcba4f586af1db0e8c6456200f07": {"00000000": {"type": "FUNCTION", "size": 88, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.5", "2.7.0", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "cab970784b2444f0dbc57987a053ac129a1315dd": {"00000000": {"type": "FUNCTION", "size": 80, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.6.5", "2.0.2", "2.2.2", "2.3.0", "2.3.4", "2.4.2", "2.5.7", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "fde_merge": {"00e273760fb251ce83bc75f45a5b087410880c70": {"00000000": {"type": "FUNCTION", "size": 248, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.5", "2.7.0", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "7df3e17d7cccee2e50c6f3d2e0d27776a316f6be": {"00000000": {"type": "FUNCTION", "size": 252, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.2.2", "2.3.0", "2.3.4", "2.4.2", "2.5.7", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "3c57875ceccfa629e7db2f9e16475104b9e99022": {"00000000": {"type": "FUNCTION", "size": 252, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.5.0"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}}, "end_fde_sort": {"274738c4f8cb7ca420ebd64fc2bb4f8e96e7321d": {"26d782a7": {"type": "FUNCTION", "size": 1400, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.5", "2.7.0", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "abort"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "388": {"type": "MIPS_26", "symbol": "abort"}, "872": {"type": "MIPS_26", "symbol": "fde_merge", "scope": "LIBRARY", "original": ".text"}, "880": {"type": "MIPS_26", "symbol": "free"}}}}, "9a42715e0b736ef7bed5ec8cc351c8466451febb": {"fff7a3a1": {"type": "FUNCTION", "size": 612, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.2.2", "2.3.0", "2.3.4", "2.4.2", "2.5.7", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "abort"}, "48": {"type": "MIPS_26", "symbol": "fde_split", "original": ".text"}, "76": {"type": "MIPS_26", "symbol": "abort"}, "568": {"type": "MIPS_26", "symbol": "fde_merge", "scope": "LIBRARY", "original": ".text"}, "576": {"type": "MIPS_26", "symbol": "free"}})PS2SDB", 8192}, + std::string_view{R"PS2SDB(}}, "d14f9d21a4dd8db1eb44eddf9b5161ba0a1d6012": {"51a90157": {"type": "FUNCTION", "size": 596, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.5.0"], "compiler_versions": ["2.3.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "abort"}, "48": {"type": "MIPS_26", "symbol": "fde_split", "original": ".text"}, "76": {"type": "MIPS_26", "symbol": "abort"}, "552": {"type": "MIPS_26", "symbol": "fde_merge", "scope": "LIBRARY", "original": ".text"}, "560": {"type": "MIPS_26", "symbol": "free"}}}}}, "__register_frame_info": {"1f9ad44594bdfb968bc04d50760dc2f02cccffb0": {"e82a6e71": {"type": "FUNCTION", "size": 104, "library": "libgcc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.0", "2.5.5", "2.7.0", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": "__sce_eh_sema_id"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "__sce_eh_sema_id"}, "48": {"type": "MIPS_26", "symbol": "WaitSema"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "0282ef312729fb8d5d7d2b988b818e0a920aa6c2": {"8f93bc01": {"type": "FUNCTION", "size": 40, "library": "libgcc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.0", "1.6.5", "2.0.2", "2.2.2", "2.3.0", "2.3.4", "2.4.2", "2.5.7", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "b6b1542c442d486e16f770ade7682cfdd8f6c250": {"e82a6e71": {"type": "FUNCTION", "size": 104, "library": "libgcc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": "__sce_eh_sema_id"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "__sce_eh_sema_id"}, "48": {"type": "MIPS_26", "symbol": "WaitSema"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_26", "symbol": "SignalSema"}}}}}, "__register_frame": {"2fd13e0a32af6deffef967cc314472783b1a689a": {"eb121a1d": {"type": "FUNCTION", "size": 48, "library": "libgcc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.5", "2.7.0", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "malloc"}, "40": {"type": "MIPS_26", "symbol": "__register_frame_info", "original": ".text"}}}}, "f7b5652a5d631ec530c1148a1415a9bb46b50595": {"eb121a1d": {"type": "FUNCTION", "size": 48, "library": "libgcc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.0", "1.6.5", "2.0.2", "2.2.2", "2.3.0", "2.3.4", "2.4.2", "2.5.7", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "malloc"}, "40": {"type": "MIPS_26", "symbol": "__register_frame_info", "original": ".text"}}}}}, "__register_frame_info_table": {"53ed6700521e721875cda5437ca7e567f137f7df": {"e82a6e71": {"type": "FUNCTION", "size": 104, "library": "libgcc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.0", "2.5.5", "2.7.0", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": "__sce_eh_sema_id"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "__sce_eh_sema_id"}, "48": {"type": "MIPS_26", "symbol": "WaitSema"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "b07c71a7b301e32a739b9ba46d13cb910a48f943": {"8f93bc01": {"type": "FUNCTION", "size": 40, "library": "libgcc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.0", "1.6.5", "2.0.2", "2.2.2", "2.3.0", "2.3.4", "2.4.2", "2.5.7", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "978f4ff19f13cb10e4e8c379e31fc42b9b99d4a4": {"e82a6e71": {"type": "FUNCTION", "size": 104, "library": "libgcc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": "__sce_eh_sema_id"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "__sce_eh_sema_id"}, "48": {"type": "MIPS_26", "symbol": "WaitSema"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_26", "symbol": "SignalSema"}}}}}, "__register_frame_table": {"2fd13e0a32af6deffef967cc314472783b1a689a": {"b6ae5de9": {"type": "FUNCTION", "size": 48, "library": "libgcc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.5", "2.7.0", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "malloc"}, "40": {"type": "MIPS_26", "symbol": "__register_frame_info_table", "original": ".text"}}}}, "f7b5652a5d631ec530c1148a1415a9bb46b50595": {"b6ae5de9": {"type": "FUNCTION", "size": 48, "library": "libgcc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.0", "1.6.5", "2.0.2", "2.2.2", "2.3.0", "2.3.4", "2.4.2", "2.5.7", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "malloc"}, "40": {"type": "MIPS_26", "symbol": "__register_frame_info_table", "original": ".text"}}}}}, "__deregister_frame_info": {"f3d490b62c388939ee6112812aa293f9de10d278": {"b0b275fc": {"type": "FUNCTION", "size": 188, "library": "libgcc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.5", "2.7.0", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": "__sce_eh_sema_id"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": "__sce_eh_sema_id"}, "32": {"type": "MIPS_26", "symbol": "WaitSema"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_26", "symbol": "free"}, "108": {"type": "MIPS_26", "symbol": "SignalSema"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": "__sce_eh_sema_id"}, "156": {"type": "MIPS_26", "symbol": "SignalSema"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": "__sce_eh_sema_id"}, "180": {"type": "MIPS_26", "symbol": "abort"}}}}, "9896f925021cc55b697400968e0052c55e7ec011": {"f0743f72": {"type": "FUNCTION", "size": 120, "library": "libgcc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.2.2", "2.3.0", "2.3.4", "2.4.2", "2.5.7", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_26", "symbol": "free"}, "92": {"type": "MIPS_26", "symbol": "abort"}}}}, "24cf65da54119d9efff22b3f7edf08ef437762be": {"6fe2e698": {"type": "FUNCTION", "size": 128, "library": "libgcc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.0"], "compiler_versions": ["2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: "MIPS_26", "symbol": "free"}, "100": {"type": "MIPS_26", "symbol": "abort"}}}}}, "__deregister_frame": {"33ceccb4e187f7110b582a315b6c625c57eb9638": {"1581c2de": {"type": "FUNCTION", "size": 32, "library": "libgcc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.0", "1.6.5", "2.0.2", "2.2.2", "2.3.0", "2.3.4", "2.4.2", "2.5.0", "2.5.2", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "__deregister_frame_info", "original": ".text"}, "24": {"type": "MIPS_26", "symbol": "free"}}}}}, "count_fdes": {"3e592d973a5611960c1f5f0b2d29610a3e11a201": {"00000000": {"type": "FUNCTION", "size": 64, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.5", "2.7.0", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "2b593c9a1466b5d8a93d2a83b15ddca894aa1e66": {"00000000": {"type": "FUNCTION", "size": 72, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.2.2", "2.3.0", "2.3.4", "2.4.2", "2.5.7", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "e6cd6869798447cadc1a1db2fb3a367ffc52bac2": {"00000000": {"type": "FUNCTION", "size": 64, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.5.0"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}}, "add_fdes": {"2ae784cb96a021ee6b14af4d3024628172c90951": {"00000000": {"type": "FUNCTION", "size": 140, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.5", "2.7.0", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "3a80ac1c7054b2685bfcdfa849e9840d6cd48d81": {"00000000": {"type": "FUNCTION", "size": 136, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.6.5", "2.0.2", "2.2.2", "2.3.0", "2.3.4", "2.4.2", "2.5.7", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "search_fdes": {"354cd6e5d63f0f5a204300e159bb60ce06e692e6": {"00000000": {"type": "FUNCTION", "size": 88, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.5", "2.7.0", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "frame_init": {"76452a16c2734164a72693369a76beb0c6b082e6": {"67f97500": {"type": "FUNCTION", "size": 360, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.5", "2.7.0", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"72": {"type": "MIPS_26", "symbol": "count_fdes", "scope": "LIBRARY", "original": ".text"}, "104": {"type": "MIPS_26", "symbol": "count_fdes", "scope": "LIBRARY", "original": ".text"}, "128": {"type": "MIPS_26", "symbol": "malloc"}, "160": {"type": "MIPS_26", "symbol": "malloc"}, "252": {"type": "MIPS_26", "symbol": "add_fdes", "original": ".text"}, "292": {"type": "MIPS_26", "symbol": "add_fdes", "original": ".text"}, "304": {"type": "MIPS_26", "symbol": "end_fde_sort", "scope": "LIBRARY", "original": ".text"}}}}, "2bfc99dfc83eb319aec7c1d99438bfbfb89a862b": {"0faba38e": {"type": "FUNCTION", "size": 316, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.2.2", "2.3.0", "2.3.4", "2.4.2", "2.5.7", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "count_fdes", "scope": "LIBRARY", "original": ".text"}, "88": {"type": "MIPS_26", "symbol": "count_fdes", "scope": "LIBRARY", "original": ".text"}, "108": {"type": "MIPS_26", "symbol": "malloc"}, "120": {"type": "MIPS_26", "symbol": "malloc"}, "200": {"type": "MIPS_26", "symbol": "add_fdes", "original": ".text"}, "244": {"type": "MIPS_26", "symbol": "add_fdes", "original": ".text"}, "256": {"type": "MIPS_26", "symbol": "end_fde_sort", "scope": "LIBRARY", "original": ".text"}}}}, "13f24b86bc1bfdddb7a9c84f3f47d91fc89b45d2": {"96bb005a": {"type": "FUNCTION", "size": 292, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.5.0"], "compiler_versions": ["2.3.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "count_fdes", "scope": "LIBRARY", "original": ".text"}, "80": {"type": "MIPS_26", "symbol": "count_fdes", "scope": "LIBRARY", "original": ".text"}, "100": {"type": "MIPS_26", "symbol": "malloc"}, "112": {"type": "MIPS_26", "symbol": "malloc"}, "184": {"type": "MIPS_26", "symbol": "add_fdes", "original": ".text"}, "228": {"type": "MIPS_26", "symbol": "add_fdes", "original": ".text"}, "240": {"type": "MIPS_26", "symbol": "end_fde_sort", "scope": "LIBRARY", "original": ".text"}}}}}, "find_fde": {"d86b057066ff1aa0a9dde75cfce27f2777399724": {"b205595e": {"type": "FUNCTION", "size": 424, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.5", "2.7.0", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": "__sce_eh_sema_id"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": "__sce_eh_sema_id"}, "36": {"type": "MIPS_26", "symbol": "WaitSema"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_26", "symbol": "frame_init", "scope": "LIBRARY", "original": ".text"}, "128": {"type": "MIPS_26", "symbol": "SignalSema"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": "__sce_eh_sema_id"}, "164": {"type": "MIPS_26", "symbol": "frame_init", "scope": "LIBRARY", "original": ".text"}, "196": {"type": "MIPS_26", "symbol": "SignalSema"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": "__sce_eh_sema_id"}, "320": {"type": "MIPS_26", "symbol": "search_fdes", "scope": "LIBRARY", "original": ".text"}, "360": {"type": "MIPS_26", "symbol": "search_fdes", "scope": "LIBRARY", "original": ".text"}, "372": {"type": "MIPS_26", "symbol": "SignalSema"}, "376": {"type": "MIPS_LO16", "symbol": "", "original": "__sce_eh_sema_id"}}}}, "71b2daac5dbbe50da5bc59f351f60e390a616fb6": {"0a3c3b5f": {"type": "FUNCTION", "size": 228, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.6.5", "2.0.2", "2.2.2", "2.3.0", "2.3.4", "2.4.2", "2.5.7", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_26", "symbol": "frame_init", "scope": "LIBRARY", "original": ".text"}}}}}, "extract_cie_info": {"1c3256951da0d1c3c9883f9c07a9e9321c8b0c98": {"bf469114": {"type": "FUNCTION", "size": 272, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.5", "2.7.0", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "44": {"type": "MIPS_26", "symbol": "strcmp"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_26", "symbol": "strcmp"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_26", "symbol": "strlen"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_26", "symbol": "strcmp"}, "172": {"type": "MIPS_26", "symbol": "decode_uleb128", "scope": "LIBRARY", "original": ".text"}, "184": {"type": "MIPS_26", "symbol": "decode_sleb128", "scope": "LIBRARY", "original": ".text"}, "228": {"type": "MIPS_26", "symbol": "decode_uleb128", "scope": "LIBRARY", "original": ".text"}}}}, "0eaf364bb270be8e134400e2a624c8370064726d": {"c0a6ef0b": {"type": "FUNCTION", "size": 260, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.6.)PS2SDB", 8192}, + std::string_view{R"PS2SDB(5", "2.0.2", "2.2.2", "2.3.0", "2.3.4", "2.4.2", "2.5.7", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "52": {"type": "MIPS_26", "symbol": "strcmp"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_26", "symbol": "strcmp"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_26", "symbol": "strlen"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "124": {"type": "MIPS_26", "symbol": "strcmp"}, "160": {"type": "MIPS_26", "symbol": "decode_uleb128", "scope": "LIBRARY", "original": ".text"}, "172": {"type": "MIPS_26", "symbol": "decode_sleb128", "scope": "LIBRARY", "original": ".text"}, "216": {"type": "MIPS_26", "symbol": "decode_uleb128", "scope": "LIBRARY", "original": ".text"}}}}, "582604237e5741d20630b1163fec80f759001aa2": {"459e01e9": {"type": "FUNCTION", "size": 276, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.5.0"], "compiler_versions": ["2.3.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "52": {"type": "MIPS_26", "symbol": "strcmp"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "76": {"type": "MIPS_26", "symbol": "strcmp"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "120": {"type": "MIPS_26", "symbol": "strlen"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "140": {"type": "MIPS_26", "symbol": "strcmp"}, "176": {"type": "MIPS_26", "symbol": "decode_uleb128", "scope": "LIBRARY", "original": ".text"}, "188": {"type": "MIPS_26", "symbol": "decode_sleb128", "scope": "LIBRARY", "original": ".text"}, "232": {"type": "MIPS_26", "symbol": "decode_uleb128", "scope": "LIBRARY", "original": ".text"}}}}}, "decode_stack_op": {"b478e4ee86432f7448a7a83c954f3f702697aae8": {"2802fd3e": {"type": "FUNCTION", "size": 288, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.5", "2.7.0", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"128": {"type": "MIPS_26", "symbol": "decode_sleb128", "scope": "LIBRARY", "original": ".text"}, "168": {"type": "MIPS_26", "symbol": "decode_sleb128", "scope": "LIBRARY", "original": ".text"}, "192": {"type": "MIPS_26", "symbol": "decode_sleb128", "scope": "LIBRARY", "original": ".text"}, "232": {"type": "MIPS_26", "symbol": "decode_uleb128", "scope": "LIBRARY", "original": ".text"}, "256": {"type": "MIPS_26", "symbol": "abort"}}}}}, "execute_cfa_insn": {"10d030af63a8db642853111aa6ee07b3e53168af": {"40b7f2f7": {"type": "FUNCTION", "size": 1100, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.5", "2.7.0", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"92": {"type": "MIPS_26", "symbol": "decode_uleb128", "scope": "LIBRARY", "original": ".text"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "324": {"type": "MIPS_26", "symbol": "decode_uleb128", "scope": "LIBRARY", "original": ".text"}, "336": {"type": "MIPS_26", "symbol": "decode_uleb128", "scope": "LIBRARY", "original": ".text"}, "412": {"type": "MIPS_26", "symbol": "decode_uleb128", "scope": "LIBRARY", "original": ".text"}, "444": {"type": "MIPS_26", "symbol": "decode_uleb128", "scope": "LIBRARY", "original": ".text"}, "456": {"type": "MIPS_26", "symbol": "decode_uleb128", "scope": "LIBRARY", "original": ".text"}, "508": {"type": "MIPS_26", "symbol": "decode_uleb128", "scope": "LIBRARY", "original": ".text"}, "520": {"type": "MIPS_26", "symbol": "decode_uleb128", "scope": "LIBRARY", "original": ".text"}, "556": {"type": "MIPS_26", "symbol": "decode_uleb128", "scope": "LIBRARY", "original": ".text"}, "588": {"type": "MIPS_26", "symbol": "decode_uleb128", "scope": "LIBRARY", "original": ".text"}, "636": {"type": "MIPS_26", "symbol": "decode_uleb128", "scope": "LIBRARY", "original": ".text"}, "672": {"type": "MIPS_26", "symbol": "decode_stack_op", "scope": "LIBRARY", "original": ".text"}, "704": {"type": "MIPS_26", "symbol": "malloc"}, "852": {"type": "MIPS_26", "symbol": "free"}, "956": {"type": "MIPS_26", "symbol": "decode_uleb128", "scope": "LIBRARY", "original": ".text"}, "988": {"type": "MIPS_26", "symbol": "decode_uleb128", "scope": "LIBRARY", "original": ".text"}, "1000": {"type": "MIPS_26", "symbol": "decode_uleb128", "scope": "LIBRARY", "original": ".text"}, "1064": {"type": "MIPS_26", "symbol": "abort"}}}}, "60ef5ecd3b650c748f871c66815e7fb3a9c06768": {"1647200a": {"type": "FUNCTION", "size": 920, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.2.2", "2.3.0", "2.3.4", "2.4.2", "2.5.7", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"128": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "264": {"type": "MIPS_26", "symbol": "decode_uleb128", "scope": "LIBRARY", "original": ".text"}, "276": {"type": "MIPS_26", "symbol": "decode_uleb128", "scope": "LIBRARY", "original": ".text"}, "344": {"type": "MIPS_26", "symbol": "decode_uleb128", "scope": "LIBRARY", "original": ".text"}, "376": {"type": "MIPS_26", "symbol": "decode_uleb128", "scope": "LIBRARY", "original": ".text"}, "388": {"type": "MIPS_26", "symbol": "decode_uleb128", "scope": "LIBRARY", "original": ".text"}, "448": {"type": "MIPS_26", "symbol": "decode_uleb128", "scope": "LIBRARY", "original": ".text"}, "460": {"type": "MIPS_26", "symbol": "decode_uleb128", "scope": "LIBRARY", "original": ".text"}, "496": {"type": "MIPS_26", "symbol": "decode_uleb128", "scope": "LIBRARY", "original": ".text"}, "524": {"type": "MIPS_26", "symbol": "decode_uleb128", "scope": "LIBRARY", "original": ".text"}, "548": {"type": "MIPS_26", "symbol": "malloc"}, "740": {"type": "MIPS_26", "symbol": "free"}, "860": {"type": "MIPS_26", "symbol": "decode_uleb128", "scope": "LIBRARY", "original": ".text"}, "884": {"type": "MIPS_26", "symbol": "abort"}}}}, "e815196396f753bd9de40c5a9333feaaa4c04108": {"4342fd1e": {"type": "FUNCTION", "size": 1068, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.5.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"144": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "284": {"type": "MIPS_26", "symbol": "decode_uleb128", "scope": "LIBRARY", "original": ".text"}, "300": {"type": "MIPS_26", "symbol": "decode_uleb128", "scope": "LIBRARY", "original": ".text"}, "380": {"type": "MIPS_26", "symbol": "decode_uleb128", "scope": "LIBRARY", "original": ".text"}, "412": {"type": "MIPS_26", "symbol": "decode_uleb128", "scope": "LIBRARY", "original": ".text"}, "424": {"type": "MIPS_26", "symbol": "decode_uleb128", "scope": "LIBRARY", "original": ".text"}, "476": {"type": "MIPS_26", "symbol": "decode_uleb128", "scope": "LIBRARY", "original": ".text"}, "488": {"type": "MIPS_26", "symbol": "decode_uleb128", "scope": "LIBRARY", "original": ".text"}, "524": {"type": "MIPS_26", "symbol": "decode_uleb128", "scope": "LIBRARY", "original": ".text"}, "556": {"type": "MIPS_26", "symbol": "decode_uleb128", "scope": "LIBRARY", "original": ".text"}, "604": {"type": "MIPS_26", "symbol": "decode_uleb128", "scope": "LIBRARY", "original": ".text"}, "640": {"type": "MIPS_26", "symbol": "decode_stack_op", "scope": "LIBRARY", "original": ".text"}, "672": {"type": "MIPS_26", "symbol": "malloc"}, "820": {"type": "MIPS_26", "symbol": "free"}, "924": {"type": "MIPS_26", "symbol": "decode_uleb128", "scope": "LIBRARY", "original": ".text"}, "956": {"type": "MIPS_26", "symbol": "decode_uleb128", "s)PS2SDB", 8192}, + std::string_view{R"PS2SDB(cope": "LIBRARY", "original": ".text"}, "968": {"type": "MIPS_26", "symbol": "decode_uleb128", "scope": "LIBRARY", "original": ".text"}, "1032": {"type": "MIPS_26", "symbol": "abort"}}}}, "6d334398744f5529fded147c62edc974c0d71159": {"329af13f": {"type": "FUNCTION", "size": 900, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.5.0"], "compiler_versions": ["2.3.1.01"], "relocations": {"128": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "264": {"type": "MIPS_26", "symbol": "decode_uleb128", "scope": "LIBRARY", "original": ".text"}, "276": {"type": "MIPS_26", "symbol": "decode_uleb128", "scope": "LIBRARY", "original": ".text"}, "344": {"type": "MIPS_26", "symbol": "decode_uleb128", "scope": "LIBRARY", "original": ".text"}, "376": {"type": "MIPS_26", "symbol": "decode_uleb128", "scope": "LIBRARY", "original": ".text"}, "388": {"type": "MIPS_26", "symbol": "decode_uleb128", "scope": "LIBRARY", "original": ".text"}, "448": {"type": "MIPS_26", "symbol": "decode_uleb128", "scope": "LIBRARY", "original": ".text"}, "460": {"type": "MIPS_26", "symbol": "decode_uleb128", "scope": "LIBRARY", "original": ".text"}, "496": {"type": "MIPS_26", "symbol": "decode_uleb128", "scope": "LIBRARY", "original": ".text"}, "524": {"type": "MIPS_26", "symbol": "decode_uleb128", "scope": "LIBRARY", "original": ".text"}, "548": {"type": "MIPS_26", "symbol": "malloc"}, "724": {"type": "MIPS_26", "symbol": "free"}, "840": {"type": "MIPS_26", "symbol": "decode_uleb128", "scope": "LIBRARY", "original": ".text"}, "864": {"type": "MIPS_26", "symbol": "abort"}}}}}, "__frame_state_for": {"cf85c25dbc55945006705b6c6fc6f732208f46e4": {"23f370cb": {"type": "FUNCTION", "size": 440, "library": "libgcc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.5", "2.7.0", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "find_fde", "scope": "LIBRARY", "original": ".text"}, "56": {"type": "MIPS_26", "symbol": "extract_cie_info", "original": ".text"}, "84": {"type": "MIPS_26", "symbol": "memset"}, "152": {"type": "MIPS_26", "symbol": "execute_cfa_insn", "scope": "LIBRARY", "original": ".text"}, "200": {"type": "MIPS_26", "symbol": "decode_uleb128", "scope": "LIBRARY", "original": ".text"}, "272": {"type": "MIPS_26", "symbol": "execute_cfa_insn", "scope": "LIBRARY", "original": ".text"}}}}, "8e8c2231fd032bed924be3849f160cfde009dcf4": {"db7f4ee6": {"type": "FUNCTION", "size": 472, "library": "libgcc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.2.2", "2.3.0", "2.3.4", "2.4.2", "2.5.7", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "find_fde", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_26", "symbol": "extract_cie_info", "original": ".text"}, "100": {"type": "MIPS_26", "symbol": "memset"}, "176": {"type": "MIPS_26", "symbol": "execute_cfa_insn", "scope": "LIBRARY", "original": ".text"}, "240": {"type": "MIPS_26", "symbol": "decode_uleb128", "scope": "LIBRARY", "original": ".text"}, "312": {"type": "MIPS_26", "symbol": "execute_cfa_insn", "scope": "LIBRARY", "original": ".text"}}}}, "3c761d2d9273f7be6b0c5c311330da825f7d2ee9": {"61be6dc9": {"type": "FUNCTION", "size": 456, "library": "libgcc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.0"], "compiler_versions": ["2.3.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "find_fde", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_26", "symbol": "extract_cie_info", "original": ".text"}, "100": {"type": "MIPS_26", "symbol": "memset"}, "176": {"type": "MIPS_26", "symbol": "execute_cfa_insn", "scope": "LIBRARY", "original": ".text"}, "224": {"type": "MIPS_26", "symbol": "decode_uleb128", "scope": "LIBRARY", "original": ".text"}, "296": {"type": "MIPS_26", "symbol": "execute_cfa_insn", "scope": "LIBRARY", "original": ".text"}}}}}, "exit": {"450cbaa354adfd139be4573990aa2307c25c1164": {"3e7c81bf": {"type": "FUNCTION", "size": 48, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.0.7", "2.4.0", "2.4.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "__do_global_dtors"}, "20": {"type": "MIPS_26", "symbol": "_cleanup"}, "40": {"type": "MIPS_26", "symbol": "_exit"}}}}}, "fde_split": {"309022697b20554323d6a1ef1875726e896ec6c5": {"00000000": {"type": "FUNCTION", "size": 372, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.2.2", "2.3.0", "2.3.4", "2.4.2", "2.5.7", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "cb0a8ebc3e0229232d184d0f6b7205058d55e088": {"00000000": {"type": "FUNCTION", "size": 364, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.5.0"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}}, "__pure_virtual": {"a639a8a356321edbeccee089cae462e9fca431ea": {"209393b2": {"type": "FUNCTION", "size": 8, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"0": {"type": "MIPS_26", "symbol": "__terminate", "scope": "LIBRARY"}}}}}, "terminate__Fv": {"fd57dd2a158bdaa16db7d46b15ff6a25feead2ff": {"d3e72eac": {"type": "FUNCTION", "size": 24, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "__terminate_func"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "__terminate_func"}}}}}, "__default_unexpected__Fv": {"4e8e3b7e57ef63a477970da68cf7876077246d29": {"23f4e74f": {"type": "FUNCTION", "size": 16, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "terminate__Fv", "scope": "LIBRARY", "original": ".text"}}}}}, "set_terminate__FPFv_v": {"0f72143bbde701febfcbee128cbe1f2870065c43": {"86811c7c": {"type": "FUNCTION", "size": 16, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "__terminate_func"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": "__terminate_func"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "__terminate_func"}}}}}, "set_unexpected__FPFv_v": {"0f72143bbde701febfcbee128cbe1f2870065c43": {"86811c7c": {"type": "FUNCTION", "size": 16, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "unexpected__Fv": {"fd57dd2a158bdaa16db7d46b15ff6a25feead2ff": {"d3e72eac": {"type": "FUNCTION", "size": 24, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__cp_exception_info": {"3d985d0618a23dac303317c317eefce8468c5d6d": {"3b0ff1a8": {"type": "FUNCTION", "size": 36, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "__get_eh_info", "scope": "LIBRARY"}}}}}, "__cp_eh_info": {"e20b32e00e6812e4f2db4527816ad3a152407ff9": {"3b0ff)PS2SDB", 8192}, + std::string_view{R"PS2SDB(1a8": {"type": "FUNCTION", "size": 32, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "__get_eh_info", "scope": "LIBRARY"}}}}}, "__start_cp_handler": {"48b6c0640c84daaee13564ca001b2cd4cf0c14d7": {"3b0ff1a8": {"type": "FUNCTION", "size": 56, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "__get_eh_info", "scope": "LIBRARY"}}}}}, "__cplus_type_matcher": {"118e89ad2217598a0193e7cbc27b8873ab01381c": {"42c9db3a": {"type": "FUNCTION", "size": 108, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"76": {"type": "MIPS_26", "symbol": "__throw_type_match_rtti", "scope": "LIBRARY"}}}}}, "__cp_push_exception": {"489c329ed3aeffa05e47902aac0f7573686b7db5": {"961419ad": {"type": "FUNCTION", "size": 144, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "__eh_alloc", "scope": "LIBRARY", "original": ".text"}, "52": {"type": "MIPS_HI16", "symbol": "__cplus_type_matcher", "original": ".text"}, "64": {"type": "MIPS_LO16", "symbol": "__cplus_type_matcher", "original": ".text"}, "96": {"type": "MIPS_26", "symbol": "__get_eh_info", "scope": "LIBRARY"}}}}}, "__cp_pop_exception": {"ab482c30dbb333561755f09bcb18a0281338be46": {"4f3c06b1": {"type": "FUNCTION", "size": 196, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "__get_eh_info", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "terminate__Fv", "scope": "LIBRARY", "original": ".text"}, "148": {"type": "MIPS_26", "symbol": "__is_pointer__FPv", "scope": "LIBRARY"}, "164": {"type": "MIPS_26", "symbol": "__eh_free", "scope": "LIBRARY", "original": ".text"}, "172": {"type": "MIPS_26", "symbol": "__eh_free", "scope": "LIBRARY", "original": ".text"}}}}}, "__uncatch_exception": {"b8192d815b2a1d1fbc5b7a153a5c02eee41c1dda": {"89fafbc5": {"type": "FUNCTION", "size": 48, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "__get_eh_info", "scope": "LIBRARY"}, "28": {"type": "MIPS_26", "symbol": "terminate__Fv", "scope": "LIBRARY", "original": ".text"}}}}}, "__check_eh_spec": {"c80fd86430625dc9be357f4618406e90e6c0968c": {"0b412361": {"type": "FUNCTION", "size": 436, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "__get_eh_info", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "__throw_type_match_rtti", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "__uncatch_exception", "scope": "LIBRARY", "original": ".text"}, "96": {"type": "MIPS_26", "symbol": "__throw"}, "112": {"type": "MIPS_26", "symbol": "unexpected__Fv", "scope": "LIBRARY", "original": ".text"}, "120": {"type": "MIPS_26", "symbol": "__throw"}, "128": {"type": "MIPS_26", "symbol": "__start_cp_handler", "scope": "LIBRARY", "original": ".text"}, "176": {"type": "MIPS_26", "symbol": "__throw_type_match_rtti", "scope": "LIBRARY"}, "192": {"type": "MIPS_26", "symbol": "__uncatch_exception", "scope": "LIBRARY", "original": ".text"}, "200": {"type": "MIPS_26", "symbol": "__throw"}, "216": {"type": "MIPS_26", "symbol": "__tf13bad_exception", "scope": "LIBRARY"}, "252": {"type": "MIPS_26", "symbol": "__throw_type_match_rtti", "scope": "LIBRARY"}, "264": {"type": "MIPS_HI16", "symbol": "", "original": "_vt$13bad_exception"}, "268": {"type": "MIPS_HI16", "symbol": "", "original": "_vt$9exception"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": "_vt$13bad_exception"}, "280": {"type": "MIPS_26", "symbol": "__eh_alloc", "scope": "LIBRARY", "original": ".text"}, "300": {"type": "MIPS_26", "symbol": "__throw"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": "_vt$9exception"}, "332": {"type": "MIPS_HI16", "symbol": "_$_13bad_exception", "original": ".text"}, "344": {"type": "MIPS_26", "symbol": "__cp_push_exception", "scope": "LIBRARY", "original": ".text"}, "348": {"type": "MIPS_LO16", "symbol": "_$_13bad_exception", "original": ".text"}, "352": {"type": "MIPS_26", "symbol": "__throw"}, "376": {"type": "MIPS_26", "symbol": "terminate__Fv", "scope": "LIBRARY", "original": ".text"}, "384": {"type": "MIPS_26", "symbol": "__throw"}, "392": {"type": "MIPS_LO16", "symbol": "", "original": "_vt$9exception"}, "404": {"type": "MIPS_26", "symbol": "__cp_pop_exception", "scope": "LIBRARY", "original": ".text"}, "428": {"type": "MIPS_26", "symbol": "terminate__Fv", "scope": "LIBRARY", "original": ".text"}}}}}, "__throw_bad_cast": {"ad0b5551b83b7c8cc823c8f0340791ff42e2c6f8": {"3552fcbd": {"type": "FUNCTION", "size": 128, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_vt$8bad_cast"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": "_vt$8bad_cast"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": "_vt$9exception"}, "36": {"type": "MIPS_26", "symbol": "__eh_alloc", "scope": "LIBRARY", "original": ".text"}, "56": {"type": "MIPS_26", "symbol": "__throw"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": "_vt$9exception"}, "88": {"type": "MIPS_HI16", "symbol": "_$_8bad_cast"}, "96": {"type": "MIPS_LO16", "symbol": "_$_8bad_cast"}, "100": {"type": "MIPS_26", "symbol": "__cp_push_exception", "scope": "LIBRARY", "original": ".text"}, "108": {"type": "MIPS_26", "symbol": "__throw"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": "_vt$9exception"}}}}}, "__throw_bad_typeid": {"ad0b5551b83b7c8cc823c8f0340791ff42e2c6f8": {"60f73b5c": {"type": "FUNCTION", "size": 128, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_vt$10bad_typeid"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": "_vt$10bad_typeid"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": "_vt$9exception"}, "36": {"type": "MIPS_26", "symbol": "__eh_alloc", "scope": "LIBRARY", "original": ".text"}, "56": {"type": "MIPS_26", "symbol": "__throw"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": "_vt$9exception"}, "88": {"type": "MIPS_HI16", "symbol": "_$_10bad_typeid"}, "96": {"type": "MIPS_LO16", "symbol": "_$_10bad_typeid"}, "100": {"type": "MIPS_26", "symbol": "__cp_push_exception", "scope": "LIBRARY", "original": ".text"}, "108": {"type": "MIPS_26", "symbol": "__throw"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": "_vt$9exception"}}}}}, "uncaught_exception__Fv": {"b02f5643dea9308e51cbc82063204f42f72e44f8": {"3b0ff1a8": {"type": "FUNCTION", "size": 52, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "__get_eh_info", "scope": "LIBRARY"}}}}}, "what__C9exception": {"7ef851968c70dc73501f516f56fe333a8605223f": {"00000000": {"type": "FUNCTION", "size": 40, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "_$_13)PS2SDB", 8192}, + std::string_view{R"PS2SDB(bad_exception": {"a96cc119edc2c298d8f4796c995baa0693b1aa9c": {"660ef3d0": {"type": "FUNCTION", "size": 48, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_vt$9exception"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "_vt$9exception"}, "28": {"type": "MIPS_26", "symbol": "__builtin_delete", "scope": "LIBRARY"}}}}}, "__13bad_exception": {"56b1830bad8eac8addc076fb7a2554c1c9b2d5ab": {"d3e72eac": {"type": "FUNCTION", "size": 20, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_vt$13bad_exception"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "_vt$13bad_exception"}}}}}, "__tf13bad_exception": {"e1018fcce86fc0a20cf3a2a96734912a5e33ecb9": {"b774d21a": {"type": "FUNCTION", "size": 80, "library": "libgcc", "scope": "WEAK", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "__ti13bad_exception"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "__ti13bad_exception"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "__ti13bad_exception"}, "28": {"type": "MIPS_26", "symbol": "__tf9exception", "scope": "LIBRARY"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": "__ti9exception"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": "__ti9exception"}, "52": {"type": "MIPS_26", "symbol": "__rtti_si", "scope": "LIBRARY"}}}}}, "_$_9exception": {"a96cc119edc2c298d8f4796c995baa0693b1aa9c": {"660ef3d0": {"type": "FUNCTION", "size": 48, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_vt$9exception"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "_vt$9exception"}, "28": {"type": "MIPS_26", "symbol": "__builtin_delete", "scope": "LIBRARY"}}}}}, "__9exception": {"56b1830bad8eac8addc076fb7a2554c1c9b2d5ab": {"d3e72eac": {"type": "FUNCTION", "size": 20, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_vt$9exception"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "_vt$9exception"}}}}}, "__tf9exception": {"67fc2a7b946c82ce5bedb96d9b805ed1983f43fe": {"3ea64acd": {"type": "FUNCTION", "size": 64, "library": "libgcc", "scope": "WEAK", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "__ti9exception"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "__ti9exception"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "__ti9exception"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_26", "symbol": "__rtti_user", "scope": "LIBRARY"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "set_new_handler__FPFv_v": {"0f72143bbde701febfcbee128cbe1f2870065c43": {"86811c7c": {"type": "FUNCTION", "size": 16, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__vn__FUiPv": {"61338ddd48d690814975989133ebddfb007f8711": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}}, "__nw__FUiPv": {"61338ddd48d690814975989133ebddfb007f8711": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}}, "what__C9bad_alloc": {"2a51c093207f3b6546ea5ac91d4ae4a6999eaed5": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "__tf9bad_alloc": {"e1018fcce86fc0a20cf3a2a96734912a5e33ecb9": {"b774d21a": {"type": "FUNCTION", "size": 80, "library": "libgcc", "scope": "WEAK", "is_interface": false, "versions": [], "sdk": ["2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "__ti9bad_alloc"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "__ti9bad_alloc"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "__ti9bad_alloc"}, "28": {"type": "MIPS_26", "symbol": "__tf9exception", "scope": "LIBRARY"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": "__ti9exception"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": "__ti9exception"}, "52": {"type": "MIPS_26", "symbol": "__rtti_si", "scope": "LIBRARY"}}}}}, "_$_9bad_alloc": {"a96cc119edc2c298d8f4796c995baa0693b1aa9c": {"660ef3d0": {"type": "FUNCTION", "size": 48, "library": "libgcc", "scope": "WEAK", "is_interface": false, "versions": [], "sdk": ["2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_vt$9exception"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "_vt$9exception"}, "28": {"type": "MIPS_26", "symbol": "__builtin_delete", "scope": "LIBRARY"}}}}}, "__builtin_delete": {"f3494b7e51363b77e588ebe4485bb71b95754f5b": {"78c57d76": {"type": "FUNCTION", "size": 120, "library": "libgcc", "scope": "WEAK", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "free"}, "32": {"type": "MIPS_26", "symbol": "__throw"}, "40": {"type": "MIPS_26", "symbol": "__start_cp_handler", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "__check_eh_spec", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "__throw"}, "72": {"type": "MIPS_26", "symbol": "__cp_pop_exception", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "terminate__Fv", "scope": "LIBRARY"}}}}}, "__builtin_new": {"209e0760efed1ee191897f0181cbc1cd1dc6b41e": {"9cbc8830": {"type": "FUNCTION", "size": 296, "library": "libgcc", "scope": "WEAK", "is_interface": false, "versions": [], "sdk": ["2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "malloc"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": "__new_handler"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": "__new_handler"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": "_vt$9exception"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": "_vt$9bad_alloc"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": "_vt$9bad_alloc"}, "72": {"type": "MIPS_26", "symbol": "__eh_alloc", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "__throw"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": "_vt$9exception"}, "124": {"type": "MIPS_HI16", "symbol": )PS2SDB", 8192}, + std::string_view{R"PS2SDB("_$_9bad_alloc"}, "136": {"type": "MIPS_26", "symbol": "__cp_push_exception", "scope": "LIBRARY"}, "140": {"type": "MIPS_LO16", "symbol": "_$_9bad_alloc"}, "144": {"type": "MIPS_26", "symbol": "__throw"}, "160": {"type": "MIPS_26", "symbol": "malloc"}, "184": {"type": "MIPS_26", "symbol": "__throw"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": "_vt$9exception"}, "204": {"type": "MIPS_26", "symbol": "__start_cp_handler", "scope": "LIBRARY"}, "212": {"type": "MIPS_26", "symbol": "__tf9bad_alloc", "scope": "LIBRARY"}, "228": {"type": "MIPS_26", "symbol": "__check_eh_spec", "scope": "LIBRARY"}, "236": {"type": "MIPS_26", "symbol": "__throw"}, "244": {"type": "MIPS_26", "symbol": "__cp_pop_exception", "scope": "LIBRARY"}, "268": {"type": "MIPS_26", "symbol": "terminate__Fv", "scope": "LIBRARY"}}}}}, "__builtin_vec_delete": {"f3494b7e51363b77e588ebe4485bb71b95754f5b": {"78c57d76": {"type": "FUNCTION", "size": 120, "library": "libgcc", "scope": "WEAK", "is_interface": false, "versions": [], "sdk": ["2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "free"}, "32": {"type": "MIPS_26", "symbol": "__throw"}, "40": {"type": "MIPS_26", "symbol": "__start_cp_handler", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "__check_eh_spec", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "__throw"}, "72": {"type": "MIPS_26", "symbol": "__cp_pop_exception", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "terminate__Fv", "scope": "LIBRARY"}}}}}, "__builtin_vec_new": {"98b5a6f9be921dc2c97752362fc844dfd39acaed": {"123ea490": {"type": "FUNCTION", "size": 116, "library": "libgcc", "scope": "WEAK", "is_interface": false, "versions": [], "sdk": ["2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "__builtin_new", "scope": "LIBRARY"}, "24": {"type": "MIPS_26", "symbol": "__throw"}, "32": {"type": "MIPS_26", "symbol": "__start_cp_handler", "scope": "LIBRARY"}, "40": {"type": "MIPS_26", "symbol": "__tf9bad_alloc", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "__check_eh_spec", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "__throw"}, "72": {"type": "MIPS_26", "symbol": "__cp_pop_exception", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "terminate__Fv", "scope": "LIBRARY"}}}}}, "_$_9type_info": {"8f3cb1f916cfd6121bf417b04751f4d6c35d7ba6": {"d050df05": {"type": "FUNCTION", "size": 48, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_vt$9type_info"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "_vt$9type_info"}, "28": {"type": "MIPS_26", "symbol": "__builtin_delete", "scope": "LIBRARY"}}}}}, "__eq__C9type_infoRC9type_info": {"1621c513208e2f89e51cd2adef24376b81576227": {"d9e918fb": {"type": "FUNCTION", "size": 64, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "strcmp"}}}}}, "__rtti_class": {"1935a1c567f63dd741246966b1bef2ccb8cb40bb": {"b9e78b8c": {"type": "FUNCTION", "size": 36, "library": "libgcc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_vt$17__class_type_info"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "_vt$17__class_type_info"}}}}}, "__rtti_si": {"94c82b46f37a2e39e31c7921efe673153575ed0f": {"b9e78b8c": {"type": "FUNCTION", "size": 32, "library": "libgcc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_vt$14__si_type_info"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "_vt$14__si_type_info"}}}}}, "__rtti_user": {"af222147e7445d8320aaa872031a5dc18fb59773": {"b9e78b8c": {"type": "FUNCTION", "size": 28, "library": "libgcc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_vt$16__user_type_info"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "_vt$16__user_type_info"}}}}}, "dcast__C16__user_type_infoRC9type_infoiPvPC9type_infoT3": {"d644cdb58b82d712ea2abd6574114f948ed07981": {"ee9d5c58": {"type": "FUNCTION", "size": 44, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "__eq__C9type_infoRC9type_info", "scope": "LIBRARY", "original": ".text"}}}}}, "dcast__C14__si_type_infoRC9type_infoiPvPC9type_infoT3": {"11f94edee97a3d133151760f7157ffda2ee98e13": {"f4d63180": {"type": "FUNCTION", "size": 148, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "__eq__C9type_infoRC9type_info", "scope": "LIBRARY", "original": ".text"}}}}}, "dcast__C17__class_type_infoRC9type_infoiPvPC9type_infoT3": {"7b5c9fb4a81ac72b5b36f1e26c735c4d98a4d97c": {"48dab992": {"type": "FUNCTION", "size": 472, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"64": {"type": "MIPS_26", "symbol": "__eq__C9type_infoRC9type_info", "scope": "LIBRARY", "original": ".text"}}}}}, "__17__class_type_infoPCcPCQ217__class_type_info9base_infoUi": {"9ea615facdefb8e5def3cac52b4ef9850aad49a7": {"d3e72eac": {"type": "FUNCTION", "size": 32, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_vt$17__class_type_info"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "_vt$17__class_type_info"}}}}}, "__tf17__class_type_info": {"e1018fcce86fc0a20cf3a2a96734912a5e33ecb9": {"8d9611b2": {"type": "FUNCTION", "size": 80, "library": "libgcc", "scope": "WEAK", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "__ti17__class_type_info"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "__ti17__class_type_info"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "__ti17__class_type_info"}, "28": {"type": "MIPS_26", "symbol": "__tf16__user_type_info", "scope": "LIBRARY"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": "__ti16__user_type_info"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": "__ti16__user_type_info"}, "52": {"type": "MIPS_26", "symbol": "__rtti_si", "scope": "LIBRARY", "original": ".text"}}}}}, "_$_17__class_type_info": {"7ba17f652620d1a8770717ffc05543c774ba24f8": {"e937d3ab": {"type": "FUNCTION", "size": 28, "library": "libgcc", "scope": "WEAK", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "_$_9type_info", "scope": "LIBRARY", "original": ".text"}}}}}, "__14__si_type_infoPCcRC16__user_type_info": {"1bf175d6599019196793aa415e5be9a96c3363dd": {"d3e72eac": {"type": "FUNCTION", "size": 28, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "re)PS2SDB", 8192}, + std::string_view{R"PS2SDB(locations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_vt$14__si_type_info"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "_vt$14__si_type_info"}}}}}, "__tf14__si_type_info": {"e1018fcce86fc0a20cf3a2a96734912a5e33ecb9": {"8d9611b2": {"type": "FUNCTION", "size": 80, "library": "libgcc", "scope": "WEAK", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "__ti14__si_type_info"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "__ti14__si_type_info"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "__ti14__si_type_info"}, "28": {"type": "MIPS_26", "symbol": "__tf16__user_type_info", "scope": "LIBRARY"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": "__ti16__user_type_info"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": "__ti16__user_type_info"}, "52": {"type": "MIPS_26", "symbol": "__rtti_si", "scope": "LIBRARY", "original": ".text"}}}}}, "_$_14__si_type_info": {"7ba17f652620d1a8770717ffc05543c774ba24f8": {"e937d3ab": {"type": "FUNCTION", "size": 28, "library": "libgcc", "scope": "WEAK", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "_$_9type_info", "scope": "LIBRARY", "original": ".text"}}}}}, "__16__user_type_infoPCc": {"e37cb136753d8d46404bd24dc63362827ca5387b": {"d3e72eac": {"type": "FUNCTION", "size": 24, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_vt$16__user_type_info"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "_vt$16__user_type_info"}}}}}, "__tf16__user_type_info": {"e1018fcce86fc0a20cf3a2a96734912a5e33ecb9": {"183d3b7d": {"type": "FUNCTION", "size": 80, "library": "libgcc", "scope": "WEAK", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "__ti16__user_type_info"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "__ti16__user_type_info"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "__ti16__user_type_info"}, "28": {"type": "MIPS_26", "symbol": "__tf9type_info", "scope": "LIBRARY"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": "__ti9type_info"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": "__ti9type_info"}, "52": {"type": "MIPS_26", "symbol": "__rtti_si", "scope": "LIBRARY", "original": ".text"}}}}}, "_$_16__user_type_info": {"7ba17f652620d1a8770717ffc05543c774ba24f8": {"e937d3ab": {"type": "FUNCTION", "size": 28, "library": "libgcc", "scope": "WEAK", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "_$_9type_info", "scope": "LIBRARY", "original": ".text"}}}}}, "_$_10bad_typeid": {"a96cc119edc2c298d8f4796c995baa0693b1aa9c": {"660ef3d0": {"type": "FUNCTION", "size": 48, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_vt$9exception"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "_vt$9exception"}, "28": {"type": "MIPS_26", "symbol": "__builtin_delete", "scope": "LIBRARY"}}}}}, "__10bad_typeid": {"56b1830bad8eac8addc076fb7a2554c1c9b2d5ab": {"d3e72eac": {"type": "FUNCTION", "size": 20, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_vt$10bad_typeid"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "_vt$10bad_typeid"}}}}}, "__tf10bad_typeid": {"e1018fcce86fc0a20cf3a2a96734912a5e33ecb9": {"b774d21a": {"type": "FUNCTION", "size": 80, "library": "libgcc", "scope": "WEAK", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "__ti10bad_typeid"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "__ti10bad_typeid"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "__ti10bad_typeid"}, "28": {"type": "MIPS_26", "symbol": "__tf9exception", "scope": "LIBRARY"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": "__ti9exception"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": "__ti9exception"}, "52": {"type": "MIPS_26", "symbol": "__rtti_si", "scope": "LIBRARY", "original": ".text"}}}}}, "_$_8bad_cast": {"a96cc119edc2c298d8f4796c995baa0693b1aa9c": {"660ef3d0": {"type": "FUNCTION", "size": 48, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_vt$9exception"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "_vt$9exception"}, "28": {"type": "MIPS_26", "symbol": "__builtin_delete", "scope": "LIBRARY"}}}}}, "__8bad_cast": {"56b1830bad8eac8addc076fb7a2554c1c9b2d5ab": {"d3e72eac": {"type": "FUNCTION", "size": 20, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_vt$8bad_cast"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "_vt$8bad_cast"}}}}}, "__tf8bad_cast": {"e1018fcce86fc0a20cf3a2a96734912a5e33ecb9": {"b774d21a": {"type": "FUNCTION", "size": 80, "library": "libgcc", "scope": "WEAK", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "__ti8bad_cast"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "__ti8bad_cast"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "__ti8bad_cast"}, "28": {"type": "MIPS_26", "symbol": "__tf9exception", "scope": "LIBRARY"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": "__ti9exception"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": "__ti9exception"}, "52": {"type": "MIPS_26", "symbol": "__rtti_si", "scope": "LIBRARY", "original": ".text"}}}}}, "__ne__C9type_infoRC9type_info": {"17416986ce21ad57127a34649e313bc544fcb9e5": {"66070ffa": {"type": "FUNCTION", "size": 32, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "__eq__C9type_infoRC9type_info", "scope": "LIBRARY", "original": ".text"}}}}}, "name__C9type_info": {"bc3f406df1b64926c4af204c6d9c18c1a685f849": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "__9type_infoPCc": {"e37cb136753d8d46404bd24dc6336)PS2SDB", 8192}, + std::string_view{R"PS2SDB(2827ca5387b": {"d3e72eac": {"type": "FUNCTION", "size": 24, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_vt$9type_info"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "_vt$9type_info"}}}}}, "__tf9type_info": {"67fc2a7b946c82ce5bedb96d9b805ed1983f43fe": {"3ea64acd": {"type": "FUNCTION", "size": 64, "library": "libgcc", "scope": "WEAK", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "__ti9type_info"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "__ti9type_info"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "__ti9type_info"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_26", "symbol": "__rtti_user", "scope": "LIBRARY", "original": ".text"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "before__C9type_infoRC9type_info": {"7c28b4c9e326ff74944516dfa09975b6e5dd5f82": {"d6f7ce78": {"type": "FUNCTION", "size": 36, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "strcmp"}}}}}, "__throw_type_match_rtti": {"82de5a725b951b093947fd98f75cbbb6c38cbe71": {"d4cfc58e": {"type": "FUNCTION", "size": 1224, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "__eq__C9type_infoRC9type_info", "scope": "LIBRARY"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": "__tf16__user_type_info"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": "__tf9type_info"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": "__tf16__user_type_info"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": "__tf9type_info"}, "120": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": "__tf19__pointer_type_info"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": "__tf9type_info"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": "__tf19__pointer_type_info"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": "__tf9type_info"}, "188": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "220": {"type": "MIPS_HI16", "symbol": "", "original": "__tf19__pointer_type_info"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": "__tf9type_info"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": "__tf19__pointer_type_info"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": "__tf9type_info"}, "252": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "288": {"type": "MIPS_HI16", "symbol": "", "original": "__tf16__attr_type_info"}, "292": {"type": "MIPS_HI16", "symbol": "", "original": "__tf9type_info"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": "__tf16__attr_type_info"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": "__tf9type_info"}, "320": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "356": {"type": "MIPS_HI16", "symbol": "", "original": "__tf16__attr_type_info"}, "360": {"type": "MIPS_HI16", "symbol": "", "original": "__tf9type_info"}, "364": {"type": "MIPS_LO16", "symbol": "", "original": "__tf16__attr_type_info"}, "372": {"type": "MIPS_LO16", "symbol": "", "original": "__tf9type_info"}, "388": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "456": {"type": "MIPS_26", "symbol": "__eq__C9type_infoRC9type_info", "scope": "LIBRARY"}, "472": {"type": "MIPS_26", "symbol": "__tfv", "scope": "LIBRARY", "original": ".text"}, "484": {"type": "MIPS_26", "symbol": "__eq__C9type_infoRC9type_info", "scope": "LIBRARY"}, "504": {"type": "MIPS_HI16", "symbol": "", "original": "__tf9type_info"}, "512": {"type": "MIPS_HI16", "symbol": "__tf16__func_type_info"}, "516": {"type": "MIPS_LO16", "symbol": "__tf16__func_type_info"}, "524": {"type": "MIPS_LO16", "symbol": "", "original": "__tf9type_info"}, "540": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "572": {"type": "MIPS_HI16", "symbol": "", "original": "__tf16__user_type_info"}, "576": {"type": "MIPS_HI16", "symbol": "", "original": "__tf9type_info"}, "580": {"type": "MIPS_LO16", "symbol": "", "original": "__tf16__user_type_info"}, "588": {"type": "MIPS_LO16", "symbol": "", "original": "__tf9type_info"}, "604": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "688": {"type": "MIPS_HI16", "symbol": "", "original": "__tf19__pointer_type_info"}, "692": {"type": "MIPS_HI16", "symbol": "", "original": "__tf9type_info"}, "704": {"type": "MIPS_LO16", "symbol": "", "original": "__tf19__pointer_type_info"}, "712": {"type": "MIPS_LO16", "symbol": "", "original": "__tf9type_info"}, "720": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "756": {"type": "MIPS_HI16", "symbol": "", "original": "__tf19__pointer_type_info"}, "760": {"type": "MIPS_HI16", "symbol": "", "original": "__tf9type_info"}, "772": {"type": "MIPS_LO16", "symbol": "", "original": "__tf19__pointer_type_info"}, "780": {"type": "MIPS_LO16", "symbol": "", "original": "__tf9type_info"}, "788": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "804": {"type": "MIPS_HI16", "symbol": "", "original": "__tf16__attr_type_info"}, "816": {"type": "MIPS_HI16", "symbol": "", "original": "__tf9type_info"}, "824": {"type": "MIPS_HI16", "symbol": "", "original": "__tf19__pointer_type_info"}, "852": {"type": "MIPS_LO16", "symbol": "", "original": "__tf19__pointer_type_info"}, "864": {"type": "MIPS_LO16", "symbol": "", "original": "__tf9type_info"}, "872": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "904": {"type": "MIPS_LO16", "symbol": "", "original": "__tf19__pointer_type_info"}, "916": {"type": "MIPS_LO16", "symbol": "", "original": "__tf9type_info"}, "924": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "980": {"type": "MIPS_LO16", "symbol": "", "original": "__tf16__attr_type_info"}, "988": {"type": "MIPS_LO16", "symbol": "", "original": "__tf9type_info"}, "1004": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "1040": {"type": "MIPS_LO16", "symbol": "", "original": "__tf16__attr_type_info"}, "1048": {"type": "MIPS_LO16", "symbol": "", "original": "__tf9type_info"}, "1064": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "1152": {"type": "MIPS_26", "symbol": "__eq__C9type_infoRC9type_info", "scope": "LIBRARY"}}}, "93c5a95c": {"type": "FUNCTION", "size": 1224, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "__eq__C9type_infoRC9type_info", "scope": "LIBRARY"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": "__tf16__user_type_info"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": "__tf9type_info"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": "__tf16__user_type_info"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": "__tf9type_info"}, "120": {"type": "MIPS_26", "symbol": "__dynamic_cast", "original": ".text"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": "__tf19__pointer_type_info"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": "__tf9type_info"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": "__tf19__pointer_type_info"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": "__tf9type_info"}, "188": {"type": "MIPS_26", "symbol": "__dynamic_cast", "original": ".t)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ext"}, "220": {"type": "MIPS_HI16", "symbol": "", "original": "__tf19__pointer_type_info"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": "__tf9type_info"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": "__tf19__pointer_type_info"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": "__tf9type_info"}, "252": {"type": "MIPS_26", "symbol": "__dynamic_cast", "original": ".text"}, "288": {"type": "MIPS_HI16", "symbol": "", "original": "__tf16__attr_type_info"}, "292": {"type": "MIPS_HI16", "symbol": "", "original": "__tf9type_info"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": "__tf16__attr_type_info"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": "__tf9type_info"}, "320": {"type": "MIPS_26", "symbol": "__dynamic_cast", "original": ".text"}, "356": {"type": "MIPS_HI16", "symbol": "", "original": "__tf16__attr_type_info"}, "360": {"type": "MIPS_HI16", "symbol": "", "original": "__tf9type_info"}, "364": {"type": "MIPS_LO16", "symbol": "", "original": "__tf16__attr_type_info"}, "372": {"type": "MIPS_LO16", "symbol": "", "original": "__tf9type_info"}, "388": {"type": "MIPS_26", "symbol": "__dynamic_cast", "original": ".text"}, "456": {"type": "MIPS_26", "symbol": "__eq__C9type_infoRC9type_info", "scope": "LIBRARY"}, "472": {"type": "MIPS_26", "symbol": "__tfv", "scope": "LIBRARY", "original": ".text"}, "484": {"type": "MIPS_26", "symbol": "__eq__C9type_infoRC9type_info", "scope": "LIBRARY"}, "504": {"type": "MIPS_HI16", "symbol": "", "original": "__tf9type_info"}, "512": {"type": "MIPS_HI16", "symbol": "__tf16__func_type_info"}, "516": {"type": "MIPS_LO16", "symbol": "__tf16__func_type_info"}, "524": {"type": "MIPS_LO16", "symbol": "", "original": "__tf9type_info"}, "540": {"type": "MIPS_26", "symbol": "__dynamic_cast", "original": ".text"}, "572": {"type": "MIPS_HI16", "symbol": "", "original": "__tf16__user_type_info"}, "576": {"type": "MIPS_HI16", "symbol": "", "original": "__tf9type_info"}, "580": {"type": "MIPS_LO16", "symbol": "", "original": "__tf16__user_type_info"}, "588": {"type": "MIPS_LO16", "symbol": "", "original": "__tf9type_info"}, "604": {"type": "MIPS_26", "symbol": "__dynamic_cast", "original": ".text"}, "688": {"type": "MIPS_HI16", "symbol": "", "original": "__tf19__pointer_type_info"}, "692": {"type": "MIPS_HI16", "symbol": "", "original": "__tf9type_info"}, "704": {"type": "MIPS_LO16", "symbol": "", "original": "__tf19__pointer_type_info"}, "712": {"type": "MIPS_LO16", "symbol": "", "original": "__tf9type_info"}, "720": {"type": "MIPS_26", "symbol": "__dynamic_cast", "original": ".text"}, "756": {"type": "MIPS_HI16", "symbol": "", "original": "__tf19__pointer_type_info"}, "760": {"type": "MIPS_HI16", "symbol": "", "original": "__tf9type_info"}, "772": {"type": "MIPS_LO16", "symbol": "", "original": "__tf19__pointer_type_info"}, "780": {"type": "MIPS_LO16", "symbol": "", "original": "__tf9type_info"}, "788": {"type": "MIPS_26", "symbol": "__dynamic_cast", "original": ".text"}, "804": {"type": "MIPS_HI16", "symbol": "", "original": "__tf16__attr_type_info"}, "816": {"type": "MIPS_HI16", "symbol": "", "original": "__tf9type_info"}, "824": {"type": "MIPS_HI16", "symbol": "", "original": "__tf19__pointer_type_info"}, "852": {"type": "MIPS_LO16", "symbol": "", "original": "__tf19__pointer_type_info"}, "864": {"type": "MIPS_LO16", "symbol": "", "original": "__tf9type_info"}, "872": {"type": "MIPS_26", "symbol": "__dynamic_cast", "original": ".text"}, "904": {"type": "MIPS_LO16", "symbol": "", "original": "__tf19__pointer_type_info"}, "916": {"type": "MIPS_LO16", "symbol": "", "original": "__tf9type_info"}, "924": {"type": "MIPS_26", "symbol": "__dynamic_cast", "original": ".text"}, "980": {"type": "MIPS_LO16", "symbol": "", "original": "__tf16__attr_type_info"}, "988": {"type": "MIPS_LO16", "symbol": "", "original": "__tf9type_info"}, "1004": {"type": "MIPS_26", "symbol": "__dynamic_cast", "original": ".text"}, "1040": {"type": "MIPS_LO16", "symbol": "", "original": "__tf16__attr_type_info"}, "1048": {"type": "MIPS_LO16", "symbol": "", "original": "__tf9type_info"}, "1064": {"type": "MIPS_26", "symbol": "__dynamic_cast", "original": ".text"}, "1152": {"type": "MIPS_26", "symbol": "__eq__C9type_infoRC9type_info", "scope": "LIBRARY"}}}}}, "__is_pointer__FPv": {"324a5e979a2c3306ce007adfd66de9470041f051": {"962c3cc0": {"type": "FUNCTION", "size": 80, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "__tf19__pointer_type_info"}, "28": {"type": "MIPS_HI16", "symbol": "__tf9type_info"}, "32": {"type": "MIPS_LO16", "symbol": "__tf19__pointer_type_info"}, "40": {"type": "MIPS_LO16", "symbol": "__tf9type_info"}, "56": {"type": "MIPS_26", "symbol": "", "original": ".text"}}}, "20f41969": {"type": "FUNCTION", "size": 80, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "__tf19__pointer_type_info"}, "28": {"type": "MIPS_HI16", "symbol": "__tf9type_info"}, "32": {"type": "MIPS_LO16", "symbol": "__tf19__pointer_type_info"}, "40": {"type": "MIPS_LO16", "symbol": "__tf9type_info"}, "56": {"type": "MIPS_26", "symbol": "__dynamic_cast", "original": ".text"}}}}}, "__rtti_ptr": {"94c82b46f37a2e39e31c7921efe673153575ed0f": {"b9e78b8c": {"type": "FUNCTION", "size": 32, "library": "libgcc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_vt$19__pointer_type_info"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "_vt$19__pointer_type_info"}}}}}, "__rtti_attr": {"d0253d4e5c8560af910660eeec3ba28272ec199e": {"b9e78b8c": {"type": "FUNCTION", "size": 36, "library": "libgcc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_vt$16__attr_type_info"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "_vt$16__attr_type_info"}}}}}, "__rtti_func": {"af222147e7445d8320aaa872031a5dc18fb59773": {"b9e78b8c": {"type": "FUNCTION", "size": 28, "library": "libgcc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_vt$16__func_type_info"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "_vt$16__func_type_info"}}}}}, "__rtti_ptmf": {"af222147e7445d8320aaa872031a5dc18fb59773": {"b9e78b8c": {"type": "FUNCTION", "size": 28, "library": "libgcc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_vt$16__ptmf_type_info"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "_vt$16__ptmf_type_info"}}}}}, "__rtti_ptmd": {"af222147e7445d8320aaa872031a5dc18fb59773": {"b9e78b8c": {"type": "FUNCTION", "size": 28, "library": "libgcc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_vt$16__ptmd_type_info"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "_vt$16__ptmd_type_info"}}}}}, "__rtti_array": {"af222147e7445d8320aaa872031a5dc18fb59773": {"b9e78b8c": {"type": "FUNCTION", "size": 28, "library": "libgcc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( {"type": "MIPS_HI16", "symbol": "", "original": "_vt$17__array_type_info"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "_vt$17__array_type_info"}}}}}, "__tfv": {"90248c8691a5618ecf93af893ae4bfe19decdb83": {"05cccc97": {"type": "FUNCTION", "size": 52, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": "_vt$19__builtin_type_info"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "_vt$19__builtin_type_info"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__tfx": {"90248c8691a5618ecf93af893ae4bfe19decdb83": {"05cccc97": {"type": "FUNCTION", "size": 52, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": "_vt$19__builtin_type_info"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "_vt$19__builtin_type_info"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__tfl": {"90248c8691a5618ecf93af893ae4bfe19decdb83": {"05cccc97": {"type": "FUNCTION", "size": 52, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": "_vt$19__builtin_type_info"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "_vt$19__builtin_type_info"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__tfi": {"90248c8691a5618ecf93af893ae4bfe19decdb83": {"05cccc97": {"type": "FUNCTION", "size": 52, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": "_vt$19__builtin_type_info"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "_vt$19__builtin_type_info"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__tfs": {"90248c8691a5618ecf93af893ae4bfe19decdb83": {"05cccc97": {"type": "FUNCTION", "size": 52, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": "_vt$19__builtin_type_info"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "_vt$19__builtin_type_info"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__tfb": {"90248c8691a5618ecf93af893ae4bfe19decdb83": {"05cccc97": {"type": "FUNCTION", "size": 52, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": "_vt$19__builtin_type_info"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "_vt$19__builtin_type_info"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__tfc": {"90248c8691a5618ecf93af893ae4bfe19decdb83": {"05cccc97": {"type": "FUNCTION", "size": 52, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": "_vt$19__builtin_type_info"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "_vt$19__builtin_type_info"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__tfw": {"90248c8691a5618ecf93af893ae4bfe19decdb83": {"05cccc97": {"type": "FUNCTION", "size": 52, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": "_vt$19__builtin_type_info"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "_vt$19__builtin_type_info"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__tfr": {"90248c8691a5618ecf93af893ae4bfe19decdb83": {"05cccc97": {"type": "FUNCTION", "size": 52, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "4": {"type": "MIPS_LO16", "symbol": ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": "_vt$19__builtin_type_info"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "_vt$19__builtin_type_info"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__tfd": {"90248c8691a5618ecf93af893ae4bfe19decdb83": {"05cccc97": {"type": "FUNCTION", "size": 52, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": "_vt$19__builtin_type_info"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "_vt$19__builtin_type_info"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__tff": {"90248c8691a5618ecf93af893ae4bfe19decdb83": {"05cccc97": {"type": "FUNCTION", "size": 52, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": "_vt$19__builtin_type_info"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "_vt$19__builtin_type_info"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__tfUi": {"90248c8691a5618ecf93af893ae4bfe19decdb83": {"05cccc97": {"type": "FUNCTION", "size": 52, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": "_vt$19__builtin_type_info"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "_vt$19__builtin_type_info"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__tfUl": {"90248c8691a5618ecf93af893ae4bfe19decdb83": {"05cccc97": {"type": "FUNCTION", "size": 52, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": "_vt$19__builtin_type_info"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "_vt$19__builtin_type_info"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__tfUx": {"90248c8691a5618ecf93af893ae4bfe19decdb83": {"05cccc97": {"type": "FUNCTION", "size": 52, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": "_vt$19__builtin_type_info"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "_vt$19__builtin_type_info"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__tfUs": {"90248c8691a5618ecf93af893ae4bfe19decdb83": {"05cccc97": {"type": "FUNCTION", "size": 52, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": "_vt$19__builtin_type_info"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "_vt$19__builtin_type_info"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__tfUc": {"90248c8691a5618ecf93af893ae4bfe19decdb83": {"05cccc97": {"type": "FUNCTION", "size": 52, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": "_vt$19__builtin_type_info"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "_vt$19__builtin_type_info"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__tfSc": {"90248c8691a5618ecf93af893ae4bfe19decdb83": {"05cccc97": {"type": "FUNCTION", "size": 52, "library": "libgcc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": "_vt$19__builtin_type_info"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "_vt$19__builtin_type_info"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "", "original":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( ".data"}}}}}, "__tf17__array_type_info": {"e1018fcce86fc0a20cf3a2a96734912a5e33ecb9": {"183d3b7d": {"type": "FUNCTION", "size": 80, "library": "libgcc", "scope": "WEAK", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "__ti17__array_type_info"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "__ti17__array_type_info"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "__ti17__array_type_info"}, "28": {"type": "MIPS_26", "symbol": "__tf9type_info", "scope": "LIBRARY"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": "__ti9type_info"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": "__ti9type_info"}, "52": {"type": "MIPS_26", "symbol": "__rtti_si", "scope": "LIBRARY"}}}}}, "_$_17__array_type_info": {"7ba17f652620d1a8770717ffc05543c774ba24f8": {"e937d3ab": {"type": "FUNCTION", "size": 28, "library": "libgcc", "scope": "WEAK", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "_$_9type_info", "scope": "LIBRARY"}}}}}, "__tf16__ptmd_type_info": {"e1018fcce86fc0a20cf3a2a96734912a5e33ecb9": {"183d3b7d": {"type": "FUNCTION", "size": 80, "library": "libgcc", "scope": "WEAK", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "__ti16__ptmd_type_info"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "__ti16__ptmd_type_info"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "__ti16__ptmd_type_info"}, "28": {"type": "MIPS_26", "symbol": "__tf9type_info", "scope": "LIBRARY"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": "__ti9type_info"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": "__ti9type_info"}, "52": {"type": "MIPS_26", "symbol": "__rtti_si", "scope": "LIBRARY"}}}}}, "_$_16__ptmd_type_info": {"7ba17f652620d1a8770717ffc05543c774ba24f8": {"e937d3ab": {"type": "FUNCTION", "size": 28, "library": "libgcc", "scope": "WEAK", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "_$_9type_info", "scope": "LIBRARY"}}}}}, "__tf16__ptmf_type_info": {"e1018fcce86fc0a20cf3a2a96734912a5e33ecb9": {"183d3b7d": {"type": "FUNCTION", "size": 80, "library": "libgcc", "scope": "WEAK", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "__ti16__ptmf_type_info"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "__ti16__ptmf_type_info"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "__ti16__ptmf_type_info"}, "28": {"type": "MIPS_26", "symbol": "__tf9type_info", "scope": "LIBRARY"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": "__ti9type_info"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": "__ti9type_info"}, "52": {"type": "MIPS_26", "symbol": "__rtti_si", "scope": "LIBRARY"}}}}}, "_$_16__ptmf_type_info": {"7ba17f652620d1a8770717ffc05543c774ba24f8": {"e937d3ab": {"type": "FUNCTION", "size": 28, "library": "libgcc", "scope": "WEAK", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "_$_9type_info", "scope": "LIBRARY"}}}}}, "__tf16__func_type_info": {"e1018fcce86fc0a20cf3a2a96734912a5e33ecb9": {"183d3b7d": {"type": "FUNCTION", "size": 80, "library": "libgcc", "scope": "WEAK", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "__ti16__func_type_info"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "__ti16__func_type_info"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "__ti16__func_type_info"}, "28": {"type": "MIPS_26", "symbol": "__tf9type_info", "scope": "LIBRARY"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": "__ti9type_info"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": "__ti9type_info"}, "52": {"type": "MIPS_26", "symbol": "__rtti_si", "scope": "LIBRARY"}}}}}, "_$_16__func_type_info": {"7ba17f652620d1a8770717ffc05543c774ba24f8": {"e937d3ab": {"type": "FUNCTION", "size": 28, "library": "libgcc", "scope": "WEAK", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "_$_9type_info", "scope": "LIBRARY"}}}}}, "__tf19__builtin_type_info": {"e1018fcce86fc0a20cf3a2a96734912a5e33ecb9": {"183d3b7d": {"type": "FUNCTION", "size": 80, "library": "libgcc", "scope": "WEAK", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "__ti19__builtin_type_info"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "__ti19__builtin_type_info"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "__ti19__builtin_type_info"}, "28": {"type": "MIPS_26", "symbol": "__tf9type_info", "scope": "LIBRARY"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": "__ti9type_info"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": "__ti9type_info"}, "52": {"type": "MIPS_26", "symbol": "__rtti_si", "scope": "LIBRARY"}}}}}, "_$_19__builtin_type_info": {"7ba17f652620d1a8770717ffc05543c774ba24f8": {"e937d3ab": {"type": "FUNCTION", "size": 28, "library": "libgcc", "scope": "WEAK", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "_$_9type_info", "scope": "LIBRARY"}}}}}, "__tf16__attr_type_info": {"e1018fcce86fc0a20cf3a2a96734912a5e33ecb9": {"183d3b7d": {"type": "FUNCTION", "size": 80, "library": "libgcc", "scope": "WEAK", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "__ti16__attr_type_info"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "__ti16__attr_type_info"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "__ti16__attr_type_info"}, "28": {"type": "MIPS_26", "symbol": "__tf9type_info", "scope": "LIBRARY"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": "__ti9type_info"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": "__ti9type_info"}, "52": {"type": "MIPS_26", "symbol": "__rtti_si", "scope": "LIBRARY"}}}}}, "_$_16__attr_type_info": {"7ba17f652620d1a8770717ffc05543c774ba24f8": {"e937d3ab": {"type": "FUNCTION", "size": 28, "library": "libgcc", "scope": "WEAK", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": {"8": {"type": "MIPS_26", "symbol": "_$_9type_info", "scope": "LIBRARY"}}}}}, "__tf19__pointer_type_info": {"e1018fcce86fc0a20cf3a2a96734912a5e33ecb9": {"183d3b7d": {"type": "FUNCTION", "size": 80, "library": "libgcc", "scope": "WEAK", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "__ti19__pointer_type_info"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "__ti19__pointer_type_info"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "__ti19__pointer_type_info"}, "28": {"type": "MIPS_26", "symbol": "__tf9type_info", "scope": "LIBRARY"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": "__ti9type_info"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": "__ti9type_info"}, "52": {"type": "MIPS_26", "symbol": "__rtti_si", "scope": "LIBRARY"}}}}}, "_$_19__pointer_type_info": {"7ba17f652620d1a8770717ffc05543c774ba24f8": {"e937d3ab": {"type": "FUNCTION", "size": 28, "library": "libgcc", "scope": "WEAK", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "_$_9type_info", "scope": "LIBRARY"}}}}}, "__dynamic_cast": {"66d7faada1cfeafb16cef6dd158623e93ba80323": {"00000000": {"type": "FUNCTION", "size": 172, "library": "libgcc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "__udivmoddi4": {"472736e7f77868ed377f003234dae09028676c4a": {"ac28ce7e": {"type": "FUNCTION", "size": 1644, "library": "libgcc", "scope": "LOCAL", "is_interface": true, "versions": [], "sdk": ["2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"80": {"type": "MIPS_HI16", "symbol": "", "original": "__clz_tab"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": "__clz_tab"}, "540": {"type": "MIPS_HI16", "symbol": "", "original": "__clz_tab"}, "548": {"type": "MIPS_LO16", "symbol": "", "original": "__clz_tab"}, "1092": {"type": "MIPS_HI16", "symbol": "", "original": "__clz_tab"}, "1100": {"type": "MIPS_LO16", "symbol": "", "original": "__clz_tab"}}}}, "6e7992774d1e5ad576fce48f2ff77af2cb2e74d9": {"5623becf": {"type": "FUNCTION", "size": 1704, "library": "libgcc", "scope": "LOCAL", "is_interface": true, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"84": {"type": "MIPS_HI16", "symbol": "", "original": "__clz_tab"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": "__clz_tab"}, "540": {"type": "MIPS_HI16", "symbol": "", "original": "__clz_tab"}, "548": {"type": "MIPS_LO16", "symbol": "", "original": "__clz_tab"}, "1096": {"type": "MIPS_HI16", "symbol": "", "original": "__clz_tab"}, "1104": {"type": "MIPS_LO16", "symbol": "", "original": "__clz_tab"}}}}, "5cad7ef1f5bb27fcda2ee72adde05d871ae2546b": {"f7bd847b": {"type": "FUNCTION", "size": 1708, "library": "libgcc", "scope": "LOCAL", "is_interface": true, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"88": {"type": "MIPS_HI16", "symbol": "", "original": "__clz_tab"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": "__clz_tab"}, "544": {"type": "MIPS_HI16", "symbol": "", "original": "__clz_tab"}, "552": {"type": "MIPS_LO16", "symbol": "", "original": "__clz_tab"}, "1100": {"type": "MIPS_HI16", "symbol": "", "original": "__clz_tab"}, "1108": {"type": "MIPS_LO16", "symbol": "", "original": "__clz_tab"}}}}}, "_fpmul_parts": {"c772fd58085068d75df6ed7982db9313aca02d28": {"4200a146": {"type": "FUNCTION", "size": 596, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_HI16", "symbol": "", "original": "__thenan_df"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": "__thenan_df"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": "__thenan_df"}}}}, "010ee5a42b15da89c5ede0e321ded04f8b45bad3": {"4200a146": {"type": "FUNCTION", "size": 516, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_HI16", "symbol": "", "original": "__thenan_df"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": "__thenan_df"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": "__thenan_df"}}}}, "365de64f0e6136be3db10095a78169da9066b575": {"23f4df2a": {"type": "FUNCTION", "size": 500, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "__thenan_df"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": "__thenan_df"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": "__thenan_df"}}}}}, "_fpdiv_parts": {"96d03c362b6d4008d37da65b09720ffc6f682ece": {"b321bca9": {"type": "FUNCTION", "size": 252, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"80": {"type": "MIPS_HI16", "symbol": "", "original": "__thenan_df"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": "__thenan_df"}}}}, "7b63a0cfaee8ddfaf2c079e3ec20bc48e6403d6d": {"b321bca9": {"type": "FUNCTION", "size": 252, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"80": {"type": "MIPS_HI16", "symbol": "", "original": "__thenan_df"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": "__thenan_df"}}}}, "2311bfd75d504bfb1262d8d0fcf3f9a6e4982676": {"1d41c455": {"type": "FUNCTION", "size": 248, "library": "libgcc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"72": {"type": "MIPS_HI16", "symbol": "", "original": "__thenan_df"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": "__thenan_df"}}}}}}, "libc": {"abs": {"ac4a494a6ad240bd9f0d86a005f635ad71b1242e": {"00000000": {"type": "FUNCTION", "size": 20, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.1", "2.2.2", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "3412514f6aea4ca68b6b5c845e3e6bf4e6eea8e0": {"00000000": {"type": "FUNCTION", "size": 20, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "atof": {"3052abb4a8fa934d9793e35a329abfa3ed000d66": {"481766bb": {"type": "FUNCTION", "size": 24, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "strtod", "scope": "LIBRARY"}}}}, "2f097ddf7926df8f91a0f5ba1da34acb2262515c": {"4203fdb9": {"type": "FUNCTION", "size": 28, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.0", "1.5.3", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.4", "2.2.1", "2.2.2", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.5", ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(2.5.7", "2.7.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "strtod", "scope": "LIBRARY"}}}}}, "atoi": {"2fc036e21c52aa6e2447f8ef3e5b9ed08dbdd6ec": {"4fde4ef4": {"type": "FUNCTION", "size": 40, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.0", "1.5.3", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.3", "2.1.4", "2.2.1", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "strtol", "scope": "LIBRARY"}}}}, "81096eb8284b1c4712133c8c040b07803d074933": {"4fde4ef4": {"type": "FUNCTION", "size": 40, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "strtol", "scope": "LIBRARY"}}}}}, "atol": {"dc57befd9dedbcf36f22279c2d7100b2848ec22b": {"45cad5f6": {"type": "FUNCTION", "size": 28, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "strtol", "scope": "LIBRARY"}}}}, "7817568b67e864b19b6bc9808c8af400cdf7b817": {"4fde4ef4": {"type": "FUNCTION", "size": 32, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.0.2", "2.0.7", "2.4.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "strtol", "scope": "LIBRARY"}}}}}, "_calloc_r": {"5d48d25a6ef7b8bf2f49f7f8f9e030f676a7f2dc": {"e6e6423f": {"type": "FUNCTION", "size": 180, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "_malloc_r", "scope": "LIBRARY"}, "152": {"type": "MIPS_26", "symbol": "memset", "scope": "LIBRARY"}}}}, "9139bbb5c5b22eda115d4f44f64cdaea38354bd6": {"68357f1a": {"type": "FUNCTION", "size": 188, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "_malloc_r", "scope": "LIBRARY"}, "160": {"type": "MIPS_26", "symbol": "memset", "scope": "LIBRARY"}}}}, "e46c3f0ea82e07c6a2aa0480fcba408698361f5a": {"f7c539ba": {"type": "FUNCTION", "size": 180, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "_malloc_r", "scope": "LIBRARY"}, "164": {"type": "MIPS_26", "symbol": "memset", "scope": "LIBRARY"}}}}, "0a130b42bcbd943ff89eb7bc98093dbe5b38fb8e": {"f7c539ba": {"type": "FUNCTION", "size": 180, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "_malloc_r", "scope": "LIBRARY"}, "164": {"type": "MIPS_26", "symbol": "memset", "scope": "LIBRARY"}}}}, "532c8e95f6e0e8679cd6e5d54db67e7de94eedeb": {"f7c539ba": {"type": "FUNCTION", "size": 180, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "_malloc_r", "scope": "LIBRARY"}, "164": {"type": "MIPS_26", "symbol": "memset", "scope": "LIBRARY"}}}}}, "_close_r": {"8a66388cde9ed22a05bf7848804db0132a163279": {"f2100e3e": {"type": "FUNCTION", "size": 88, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "errno"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": "errno"}, "32": {"type": "MIPS_26", "symbol": "close"}}}}, "da31e34d5cb96209344c18ced26fd61a3bf68e36": {"c5b6e2b6": {"type": "FUNCTION", "size": 88, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": "errno"}, "28": {"type": "MIPS_26", "symbol": "close"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "errno"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": "errno"}}}}, "a46f560bfacc568927917599f830d50354e40ef6": {"1abf2776": {"type": "FUNCTION", "size": 80, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": "errno"}, "28": {"type": "MIPS_26", "symbol": "close"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "errno"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": "errno"}}}}, "c83d5127e1a99f2ba00f20b30d67d3c571e5853d": {"f14c9a20": {"type": "FUNCTION", "size": 80, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": "errno"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "errno"}, "28": {"type": "MIPS_26", "symbol": "close"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": "errno"}}}}, "c9a72fa87c3a2538421fb97e45b89319d7fec6a4": {"f14c9a20": {"type": "FUNCTION", "size": 80, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": "errno"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "errno"}, "28": {"type": "MIPS_26", "symbol": "close"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": "errno"}}}}}, "quorem": {"9f5a47ecc7a3456ded96c4d0347234e39b03f9c0": {"6d2ec667": {"type": "FUNCTION", "size": 556, "library": "libc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"308": {"type": "MIPS_26", "symbol": "__mcmp", "scope": "LIBRARY"}}}}, "fff03769a4e9f419a3243d3facf4ca354df08124": {"673a5d65": {"type": "FUNCTION", "size": 532, "library": "libc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0)PS2SDB", 8192}, + std::string_view{R"PS2SDB(", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"300": {"type": "MIPS_26", "symbol": "__mcmp", "scope": "LIBRARY"}}}}, "940cc7f5354c49c320ffec18dfc4a15cf9c55bf0": {"6d2ec667": {"type": "FUNCTION", "size": 544, "library": "libc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"308": {"type": "MIPS_26", "symbol": "__mcmp", "scope": "LIBRARY"}}}}, "4f4d497d74432b643336250710a967f27326a5b0": {"6b22b099": {"type": "FUNCTION", "size": 576, "library": "libc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"316": {"type": "MIPS_26", "symbol": "__mcmp", "scope": "LIBRARY"}}}}, "e406ad3ccb0f6fbd154836ed8304fffbbeefa2d8": {"6b22b099": {"type": "FUNCTION", "size": 576, "library": "libc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"316": {"type": "MIPS_26", "symbol": "__mcmp", "scope": "LIBRARY"}}}}, "b2866a0e66a78bec2cdd96fd5a188f03db345264": {"6e28fd18": {"type": "FUNCTION", "size": 560, "library": "libc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"304": {"type": "MIPS_26", "symbol": "__mcmp", "scope": "LIBRARY"}}}}}, "_dtoa_r": {"e09b10694df3322c8702ba41d5ebdb949a477305": {"14a62e21": {"type": "FUNCTION", "size": 4708, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"104": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "228": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "240": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "296": {"type": "MIPS_26", "symbol": "dpcmp"}, "320": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "336": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "368": {"type": "MIPS_26", "symbol": "_d2b", "scope": "LIBRARY"}, "548": {"type": "MIPS_26", "symbol": "litodp"}, "576": {"type": "MIPS_26", "symbol": "dpadd"}, "644": {"type": "MIPS_26", "symbol": "dpsub"}, "652": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "656": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "664": {"type": "MIPS_26", "symbol": "dpmul"}, "672": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "676": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "684": {"type": "MIPS_26", "symbol": "dpadd"}, "696": {"type": "MIPS_26", "symbol": "litodp"}, "704": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "708": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "716": {"type": "MIPS_26", "symbol": "dpmul"}, "732": {"type": "MIPS_26", "symbol": "dpadd"}, "748": {"type": "MIPS_26", "symbol": "dptoli"}, "764": {"type": "MIPS_26", "symbol": "dpcmp"}, "780": {"type": "MIPS_26", "symbol": "litodp"}, "796": {"type": "MIPS_26", "symbol": "dpcmp"}, "836": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_tens"}, "844": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tens"}, "848": {"type": "MIPS_26", "symbol": "dpcmp"}, "1040": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1048": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1212": {"type": "MIPS_26", "symbol": "_Balloc", "scope": "LIBRARY"}, "1292": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_tens"}, "1300": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tens"}, "1308": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_bigtens"}, "1316": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_bigtens"}, "1324": {"type": "MIPS_26", "symbol": "dpdiv"}, "1340": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_bigtens"}, "1344": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_bigtens"}, "1372": {"type": "MIPS_26", "symbol": "dpmul"}, "1404": {"type": "MIPS_26", "symbol": "dpdiv"}, "1444": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_tens"}, "1452": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tens"}, "1456": {"type": "MIPS_26", "symbol": "dpmul"}, "1472": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_bigtens"}, "1476": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_bigtens"}, "1500": {"type": "MIPS_26", "symbol": "dpmul"}, "1548": {"type": "MIPS_26", "symbol": "dpcmp"}, "1604": {"type": "MIPS_26", "symbol": "dpmul"}, "1616": {"type": "MIPS_26", "symbol": "litodp"}, "1632": {"type": "MIPS_26", "symbol": "dpmul"}, "1652": {"type": "MIPS_26", "symbol": "dpadd"}, "1724": {"type": "MIPS_26", "symbol": "dpsub"}, "1744": {"type": "MIPS_26", "symbol": "dpcmp"}, "1768": {"type": "MIPS_26", "symbol": "dpsub"}, "1784": {"type": "MIPS_26", "symbol": "dpcmp"}, "1828": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_tens"}, "1836": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tens"}, "1840": {"type": "MIPS_26", "symbol": "dpdiv"}, "1856": {"type": "MIPS_26", "symbol": "dpsub"}, "1884": {"type": "MIPS_26", "symbol": "dpmul"}, "1904": {"type": "MIPS_26", "symbol": "dpmul"}, "1920": {"type": "MIPS_26", "symbol": "dptoli"}, "1932": {"type": "MIPS_26", "symbol": "litodp"}, "1948": {"type": "MIPS_26", "symbol": "dpsub"}, "1976": {"type": "MIPS_26", "symbol": "dpcmp"}, "2004": {"type": "MIPS_26", "symbol": "dpsub"}, "2020": {"type": "MIPS_26", "symbol": "dpcmp"}, "2072": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_tens"}, "2080": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tens"}, "2084": {"type": "MIPS_26", "symbol": "dpmul"}, "2100": {"type": "MIPS_26", "symbol": "dptoli"}, "2112": {"type": "MIPS_26", "symbol": "litodp"}, "2128": {"type": "MIPS_26", "symbol": "dpsub"}, "2172": {"type": "MIPS_26", "symbol": "dpadd"}, "2188": {"type": "MIPS_26", "symbol": "dpcmp"}, "2216": {"type": "MIPS_26", "symbol": "dpsub"}, "2232": {"type": "MIPS_26", "symbol": "dpcmp"}, "2308": {"type": "MIPS_26", "symbol": "dpmul"}, "2372": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_tens"}, "2380": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tens"}, "2428": {"type": "MIPS_26", "symbol": "dpmul"}, "2444": {"type": "MIPS_26", "symbol": "dpcmp"}, "2480": {"type": "MIPS_26", "symbol": "dpdiv"}, "2492": {"type": "MIPS_26", "symbol": "dptoli"}, "2504": {"type": "MIPS_26", "symbol": "litodp"}, "2520": {"type": "MIPS_26", "symbol": "dpmul"}, "2536": {"type": "MIPS_26", "symbol": "dpsub"}, "2572": {"type": "MIPS_26", "symbol": "dpadd"}, "2592": {"type": "MIPS_26", "symbol": "dpcmp"}, "2616": {"type": "MIPS_26", "symbol": "dpcmp"}, "2728": {"type": "MIPS_26", "symbol": "dpmul"}, "2748": {"type": "MIPS_26", "symbol": "dpcmp"}, "2940": {"type": "MIPS_26", "symbol": "_i2b", "scope": "LIBRARY"}, "3056": {"type": "MIPS_26", "symbol": "_pow5mult", "scope": "LIBRARY"}, "3076": {"type": "MIPS_26", "symbol": "_multiply", "scope": "LIBRARY"}, "3092": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "3128": {"type": "MIPS_26", "symbol": "_pow5mult", "scope": "LIBRARY"}, "3148": {"type": "MIPS_26", "symbol": "_pow5mult", "scope": "LIBRARY"}, "3164": {"type": "MIPS_26", "symbol": "_i2b", "scope": "LIBRARY"}, "3192": {"type": "MIPS_26", "symbol": "_pow5mult", "scope": "LIBRARY"}, "3300": {"type": "MIPS_26", "symbol": "_hi0bits", "scope": "LIBRARY"}, "3452": {"type": "MIPS_26", "symbol": "_lshift", "scope": "LIBRARY"}, "3484": {"type": "MIPS_26", "symbol": "_lshift", "scope": "LIBRARY"}, "3508": {"t)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ype": "MIPS_26", "symbol": "__mcmp", "scope": "LIBRARY"}, "3536": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY"}, "3572": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY"}, "3640": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY"}, "3656": {"type": "MIPS_26", "symbol": "__mcmp", "scope": "LIBRARY"}, "3736": {"type": "MIPS_26", "symbol": "_lshift", "scope": "LIBRARY"}, "3764": {"type": "MIPS_26", "symbol": "_Balloc", "scope": "LIBRARY"}, "3796": {"type": "MIPS_26", "symbol": "memcpy", "scope": "LIBRARY"}, "3812": {"type": "MIPS_26", "symbol": "_lshift", "scope": "LIBRARY"}, "3860": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY"}, "3900": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY"}, "3928": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY"}, "3952": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY"}, "3972": {"type": "MIPS_26", "symbol": "quorem", "scope": "LIBRARY", "original": ".text"}, "3988": {"type": "MIPS_26", "symbol": "__mcmp", "scope": "LIBRARY"}, "4008": {"type": "MIPS_26", "symbol": "__mdiff", "scope": "LIBRARY"}, "4036": {"type": "MIPS_26", "symbol": "__mcmp", "scope": "LIBRARY"}, "4052": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "4152": {"type": "MIPS_26", "symbol": "_lshift", "scope": "LIBRARY"}, "4168": {"type": "MIPS_26", "symbol": "__mcmp", "scope": "LIBRARY"}, "4316": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY"}, "4336": {"type": "MIPS_26", "symbol": "quorem", "scope": "LIBRARY", "original": ".text"}, "4376": {"type": "MIPS_26", "symbol": "_lshift", "scope": "LIBRARY"}, "4392": {"type": "MIPS_26", "symbol": "__mcmp", "scope": "LIBRARY"}, "4560": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "4596": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "4608": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "4620": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}}}}, "f25a5cb8fc837b8f7e5a7d20a47871a5f38bae5e": {"12bf8ad6": {"type": "FUNCTION", "size": 4556, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"104": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "232": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "244": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "288": {"type": "MIPS_26", "symbol": "dpcmp"}, "312": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "328": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "360": {"type": "MIPS_26", "symbol": "_d2b", "scope": "LIBRARY"}, "536": {"type": "MIPS_26", "symbol": "litodp"}, "560": {"type": "MIPS_26", "symbol": "dpadd"}, "624": {"type": "MIPS_26", "symbol": "dpsub"}, "632": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "636": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "640": {"type": "MIPS_26", "symbol": "dpmul"}, "648": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "652": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "656": {"type": "MIPS_26", "symbol": "dpadd"}, "668": {"type": "MIPS_26", "symbol": "litodp"}, "676": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "680": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "684": {"type": "MIPS_26", "symbol": "dpmul"}, "696": {"type": "MIPS_26", "symbol": "dpadd"}, "708": {"type": "MIPS_26", "symbol": "dptoli"}, "724": {"type": "MIPS_26", "symbol": "dpcmp"}, "740": {"type": "MIPS_26", "symbol": "litodp"}, "752": {"type": "MIPS_26", "symbol": "dpcmp"}, "784": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_tens"}, "792": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tens"}, "808": {"type": "MIPS_26", "symbol": "dpcmp"}, "980": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "988": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1188": {"type": "MIPS_26", "symbol": "_Balloc", "scope": "LIBRARY"}, "1240": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_tens"}, "1248": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tens"}, "1276": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_bigtens"}, "1284": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_bigtens"}, "1292": {"type": "MIPS_26", "symbol": "dpdiv"}, "1308": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_bigtens"}, "1312": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_bigtens"}, "1336": {"type": "MIPS_26", "symbol": "dpmul"}, "1364": {"type": "MIPS_26", "symbol": "dpdiv"}, "1388": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_tens"}, "1396": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tens"}, "1416": {"type": "MIPS_26", "symbol": "dpmul"}, "1432": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_bigtens"}, "1436": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_bigtens"}, "1456": {"type": "MIPS_26", "symbol": "dpmul"}, "1500": {"type": "MIPS_26", "symbol": "dpcmp"}, "1556": {"type": "MIPS_26", "symbol": "dpmul"}, "1568": {"type": "MIPS_26", "symbol": "litodp"}, "1580": {"type": "MIPS_26", "symbol": "dpmul"}, "1596": {"type": "MIPS_26", "symbol": "dpadd"}, "1668": {"type": "MIPS_26", "symbol": "dpsub"}, "1684": {"type": "MIPS_26", "symbol": "dpcmp"}, "1704": {"type": "MIPS_26", "symbol": "dpsub"}, "1716": {"type": "MIPS_26", "symbol": "dpcmp"}, "1748": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_tens"}, "1752": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tens"}, "1780": {"type": "MIPS_26", "symbol": "dpdiv"}, "1792": {"type": "MIPS_26", "symbol": "dpsub"}, "1816": {"type": "MIPS_26", "symbol": "dpmul"}, "1836": {"type": "MIPS_26", "symbol": "dpmul"}, "1848": {"type": "MIPS_26", "symbol": "dptoli"}, "1860": {"type": "MIPS_26", "symbol": "litodp"}, "1872": {"type": "MIPS_26", "symbol": "dpsub"}, "1900": {"type": "MIPS_26", "symbol": "dpcmp"}, "1924": {"type": "MIPS_26", "symbol": "dpsub"}, "1936": {"type": "MIPS_26", "symbol": "dpcmp"}, "1976": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_tens"}, "1980": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tens"}, "2004": {"type": "MIPS_26", "symbol": "dpmul"}, "2036": {"type": "MIPS_26", "symbol": "dpmul"}, "2048": {"type": "MIPS_26", "symbol": "dptoli"}, "2060": {"type": "MIPS_26", "symbol": "litodp"}, "2072": {"type": "MIPS_26", "symbol": "dpsub"}, "2112": {"type": "MIPS_26", "symbol": "dpadd"}, "2124": {"type": "MIPS_26", "symbol": "dpcmp"}, "2148": {"type": "MIPS_26", "symbol": "dpsub"}, "2160": {"type": "MIPS_26", "symbol": "dpcmp"}, "2256": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_tens"}, "2264": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tens"}, "2316": {"type": "MIPS_26", "symbol": "dpmul"}, "2328": {"type": "MIPS_26", "symbol": "dpcmp"}, "2376": {"type": "MIPS_26", "symbol": "dpmul"}, "2392": {"type": "MIPS_26", "symbol": "dpcmp"}, "2412": {"type": "MIPS_26", "symbol": "dpdiv"}, "2420": {"type": "MIPS_26", "symbol": "dptoli"}, "2432": {"type": "MIPS_26", "symbol": "litodp"}, "2444": {"type": "MIPS_26", "symbol": "dpmul"}, "2456": {"type": "MIPS_26", "symbol": "dpsub"}, "2488": {"type": "MIPS_26", "symbol": "dpadd"}, "2504": {"type": "MIPS_26", "symbol": "dpcmp"}, "2524": {"type": "MIPS_26", "symbol": "dpcmp"}, "2776": {"type": "MIPS_26", "symbol": "_i2b", "scope": "LIBRARY"}, "2904": {"type": "MIPS_26", "symbol": "_pow5mult", "scope": "LIBRARY"}, "2924": {"type": "MIPS_26", "symbol": "_multiply", "scope":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "LIBRARY"}, "2940": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "2968": {"type": "MIPS_26", "symbol": "_pow5mult", "scope": "LIBRARY"}, "2988": {"type": "MIPS_26", "symbol": "_pow5mult", "scope": "LIBRARY"}, "3004": {"type": "MIPS_26", "symbol": "_i2b", "scope": "LIBRARY"}, "3032": {"type": "MIPS_26", "symbol": "_pow5mult", "scope": "LIBRARY"}, "3156": {"type": "MIPS_26", "symbol": "_hi0bits", "scope": "LIBRARY"}, "3300": {"type": "MIPS_26", "symbol": "_lshift", "scope": "LIBRARY"}, "3328": {"type": "MIPS_26", "symbol": "_lshift", "scope": "LIBRARY"}, "3352": {"type": "MIPS_26", "symbol": "__mcmp", "scope": "LIBRARY"}, "3380": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY"}, "3416": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY"}, "3480": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY"}, "3496": {"type": "MIPS_26", "symbol": "__mcmp", "scope": "LIBRARY"}, "3568": {"type": "MIPS_26", "symbol": "_lshift", "scope": "LIBRARY"}, "3600": {"type": "MIPS_26", "symbol": "_Balloc", "scope": "LIBRARY"}, "3636": {"type": "MIPS_26", "symbol": "memcpy", "scope": "LIBRARY"}, "3652": {"type": "MIPS_26", "symbol": "_lshift", "scope": "LIBRARY"}, "3692": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY"}, "3728": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY"}, "3760": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY"}, "3784": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY"}, "3804": {"type": "MIPS_26", "symbol": "quorem", "scope": "LIBRARY", "original": ".text"}, "3820": {"type": "MIPS_26", "symbol": "__mcmp", "scope": "LIBRARY"}, "3840": {"type": "MIPS_26", "symbol": "__mdiff", "scope": "LIBRARY"}, "3868": {"type": "MIPS_26", "symbol": "__mcmp", "scope": "LIBRARY"}, "3884": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "4004": {"type": "MIPS_26", "symbol": "_lshift", "scope": "LIBRARY"}, "4020": {"type": "MIPS_26", "symbol": "__mcmp", "scope": "LIBRARY"}, "4172": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY"}, "4192": {"type": "MIPS_26", "symbol": "quorem", "scope": "LIBRARY", "original": ".text"}, "4232": {"type": "MIPS_26", "symbol": "_lshift", "scope": "LIBRARY"}, "4248": {"type": "MIPS_26", "symbol": "__mcmp", "scope": "LIBRARY"}, "4404": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "4440": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "4452": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "4472": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}}}}, "9f680a4cdc55aff929d2bbdf1da77e7d2eeae4be": {"0953b29e": {"type": "FUNCTION", "size": 4468, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"104": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "216": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "228": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "272": {"type": "MIPS_26", "symbol": "dpcmp"}, "296": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "312": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "344": {"type": "MIPS_26", "symbol": "_d2b", "scope": "LIBRARY"}, "524": {"type": "MIPS_26", "symbol": "litodp"}, "548": {"type": "MIPS_26", "symbol": "dpadd"}, "612": {"type": "MIPS_26", "symbol": "dpsub"}, "620": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "624": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "628": {"type": "MIPS_26", "symbol": "dpmul"}, "636": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "640": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "644": {"type": "MIPS_26", "symbol": "dpadd"}, "656": {"type": "MIPS_26", "symbol": "litodp"}, "664": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "668": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "672": {"type": "MIPS_26", "symbol": "dpmul"}, "684": {"type": "MIPS_26", "symbol": "dpadd"}, "696": {"type": "MIPS_26", "symbol": "dptoli"}, "712": {"type": "MIPS_26", "symbol": "dpcmp"}, "728": {"type": "MIPS_26", "symbol": "litodp"}, "740": {"type": "MIPS_26", "symbol": "dpcmp"}, "772": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_tens"}, "780": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tens"}, "796": {"type": "MIPS_26", "symbol": "dpcmp"}, "968": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "976": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1164": {"type": "MIPS_26", "symbol": "_Balloc", "scope": "LIBRARY"}, "1216": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_tens"}, "1224": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tens"}, "1252": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_bigtens"}, "1260": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_bigtens"}, "1268": {"type": "MIPS_26", "symbol": "dpdiv"}, "1284": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_bigtens"}, "1288": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_bigtens"}, "1312": {"type": "MIPS_26", "symbol": "dpmul"}, "1340": {"type": "MIPS_26", "symbol": "dpdiv"}, "1364": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_tens"}, "1372": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tens"}, "1392": {"type": "MIPS_26", "symbol": "dpmul"}, "1408": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_bigtens"}, "1412": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_bigtens"}, "1432": {"type": "MIPS_26", "symbol": "dpmul"}, "1476": {"type": "MIPS_26", "symbol": "dpcmp"}, "1532": {"type": "MIPS_26", "symbol": "dpmul"}, "1544": {"type": "MIPS_26", "symbol": "litodp"}, "1556": {"type": "MIPS_26", "symbol": "dpmul"}, "1572": {"type": "MIPS_26", "symbol": "dpadd"}, "1644": {"type": "MIPS_26", "symbol": "dpsub"}, "1660": {"type": "MIPS_26", "symbol": "dpcmp"}, "1680": {"type": "MIPS_26", "symbol": "dpsub"}, "1692": {"type": "MIPS_26", "symbol": "dpcmp"}, "1724": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_tens"}, "1728": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tens"}, "1756": {"type": "MIPS_26", "symbol": "dpdiv"}, "1768": {"type": "MIPS_26", "symbol": "dpsub"}, "1792": {"type": "MIPS_26", "symbol": "dpmul"}, "1812": {"type": "MIPS_26", "symbol": "dpmul"}, "1824": {"type": "MIPS_26", "symbol": "dptoli"}, "1836": {"type": "MIPS_26", "symbol": "litodp"}, "1848": {"type": "MIPS_26", "symbol": "dpsub"}, "1876": {"type": "MIPS_26", "symbol": "dpcmp"}, "1900": {"type": "MIPS_26", "symbol": "dpsub"}, "1912": {"type": "MIPS_26", "symbol": "dpcmp"}, "1952": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_tens"}, "1956": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tens"}, "1980": {"type": "MIPS_26", "symbol": "dpmul"}, "2012": {"type": "MIPS_26", "symbol": "dpmul"}, "2024": {"type": "MIPS_26", "symbol": "dptoli"}, "2036": {"type": "MIPS_26", "symbol": "litodp"}, "2048": {"type": "MIPS_26", "symbol": "dpsub"}, "2088": {"type": "MIPS_26", "symbol": "dpadd"}, "2100": {"type": "MIPS_26", "symbol": "dpcmp"}, "2124": {"type": "MIPS_26", "symbol": "dpsub"}, "2136": {"type": "MIPS_26", "symbol": "dpcmp"}, "2232": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_tens"}, "2240": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tens"}, "2292": {"type": "MIPS_26", "symbol": "dpmul"}, "2304": {"type": "MIPS_26", "symbol": "dpcmp"}, "2344": {"type": "MIPS_26", "symbol": "dpmul"}, "2360": {"type": "MIPS_26", "symbol": "dpcmp"}, "2380": {"type": "MIPS_26", "symbol": "dpdiv"}, "2388": {"type": "MIPS_26", "symbol": "dptoli"}, "2400": {"type": "MIPS_26", "symbol": "litodp"}, "2412": {"type": "MIPS_26", "symbol": "dpmul"}, "2424": {"type": "MIPS_26", "symbol": "dps)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ub"}, "2456": {"type": "MIPS_26", "symbol": "dpadd"}, "2472": {"type": "MIPS_26", "symbol": "dpcmp"}, "2492": {"type": "MIPS_26", "symbol": "dpcmp"}, "2724": {"type": "MIPS_26", "symbol": "_i2b", "scope": "LIBRARY"}, "2844": {"type": "MIPS_26", "symbol": "_pow5mult", "scope": "LIBRARY"}, "2864": {"type": "MIPS_26", "symbol": "_multiply", "scope": "LIBRARY"}, "2880": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "2908": {"type": "MIPS_26", "symbol": "_pow5mult", "scope": "LIBRARY"}, "2928": {"type": "MIPS_26", "symbol": "_pow5mult", "scope": "LIBRARY"}, "2944": {"type": "MIPS_26", "symbol": "_i2b", "scope": "LIBRARY"}, "2972": {"type": "MIPS_26", "symbol": "_pow5mult", "scope": "LIBRARY"}, "3096": {"type": "MIPS_26", "symbol": "_hi0bits", "scope": "LIBRARY"}, "3240": {"type": "MIPS_26", "symbol": "_lshift", "scope": "LIBRARY"}, "3268": {"type": "MIPS_26", "symbol": "_lshift", "scope": "LIBRARY"}, "3292": {"type": "MIPS_26", "symbol": "__mcmp", "scope": "LIBRARY"}, "3320": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY"}, "3356": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY"}, "3424": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY"}, "3440": {"type": "MIPS_26", "symbol": "__mcmp", "scope": "LIBRARY"}, "3500": {"type": "MIPS_26", "symbol": "_lshift", "scope": "LIBRARY"}, "3532": {"type": "MIPS_26", "symbol": "_Balloc", "scope": "LIBRARY"}, "3564": {"type": "MIPS_26", "symbol": "memcpy", "scope": "LIBRARY"}, "3580": {"type": "MIPS_26", "symbol": "_lshift", "scope": "LIBRARY"}, "3628": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY"}, "3668": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY"}, "3696": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY"}, "3720": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY"}, "3740": {"type": "MIPS_26", "symbol": "quorem", "scope": "LIBRARY", "original": ".text"}, "3756": {"type": "MIPS_26", "symbol": "__mcmp", "scope": "LIBRARY"}, "3776": {"type": "MIPS_26", "symbol": "__mdiff", "scope": "LIBRARY"}, "3804": {"type": "MIPS_26", "symbol": "__mcmp", "scope": "LIBRARY"}, "3820": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "3916": {"type": "MIPS_26", "symbol": "_lshift", "scope": "LIBRARY"}, "3932": {"type": "MIPS_26", "symbol": "__mcmp", "scope": "LIBRARY"}, "4076": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY"}, "4096": {"type": "MIPS_26", "symbol": "quorem", "scope": "LIBRARY", "original": ".text"}, "4136": {"type": "MIPS_26", "symbol": "_lshift", "scope": "LIBRARY"}, "4152": {"type": "MIPS_26", "symbol": "__mcmp", "scope": "LIBRARY"}, "4320": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "4356": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "4368": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "4380": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}}}}, "71889858d3d587d8bebeeffe6663fc9ffdc25563": {"65463fc2": {"type": "FUNCTION", "size": 4724, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"108": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "232": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "324": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "332": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "344": {"type": "MIPS_26", "symbol": "dpcmp"}, "376": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "384": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "408": {"type": "MIPS_26", "symbol": "_d2b", "scope": "LIBRARY"}, "516": {"type": "MIPS_26", "symbol": "dpsub"}, "524": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "528": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "536": {"type": "MIPS_26", "symbol": "dpmul"}, "544": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "548": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "556": {"type": "MIPS_26", "symbol": "dpadd"}, "568": {"type": "MIPS_26", "symbol": "litodp"}, "576": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "580": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "588": {"type": "MIPS_26", "symbol": "dpmul"}, "604": {"type": "MIPS_26", "symbol": "dpadd"}, "620": {"type": "MIPS_26", "symbol": "dptoli"}, "636": {"type": "MIPS_26", "symbol": "dpcmp"}, "652": {"type": "MIPS_26", "symbol": "litodp"}, "668": {"type": "MIPS_26", "symbol": "dpcmp"}, "712": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_tens"}, "720": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tens"}, "736": {"type": "MIPS_26", "symbol": "dpcmp"}, "892": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "896": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "984": {"type": "MIPS_26", "symbol": "_Balloc", "scope": "LIBRARY"}, "1056": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_tens"}, "1068": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tens"}, "1088": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_bigtens"}, "1096": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_bigtens"}, "1104": {"type": "MIPS_26", "symbol": "dpdiv"}, "1120": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_bigtens"}, "1128": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_bigtens"}, "1152": {"type": "MIPS_26", "symbol": "dpmul"}, "1184": {"type": "MIPS_26", "symbol": "dpdiv"}, "1220": {"type": "MIPS_26", "symbol": "dpcmp"}, "1276": {"type": "MIPS_26", "symbol": "dpmul"}, "1288": {"type": "MIPS_26", "symbol": "litodp"}, "1304": {"type": "MIPS_26", "symbol": "dpmul"}, "1324": {"type": "MIPS_26", "symbol": "dpadd"}, "1396": {"type": "MIPS_26", "symbol": "dpsub"}, "1416": {"type": "MIPS_26", "symbol": "dpcmp"}, "1440": {"type": "MIPS_26", "symbol": "dpsub"}, "1456": {"type": "MIPS_26", "symbol": "dpcmp"}, "1516": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_tens"}, "1524": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tens"}, "1584": {"type": "MIPS_26", "symbol": "dpmul"}, "1600": {"type": "MIPS_26", "symbol": "dpcmp"}, "1648": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "1688": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "1700": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "1712": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "1784": {"type": "MIPS_26", "symbol": "dpdiv"}, "1796": {"type": "MIPS_26", "symbol": "dptoli"}, "1808": {"type": "MIPS_26", "symbol": "litodp"}, "1824": {"type": "MIPS_26", "symbol": "dpmul"}, "1840": {"type": "MIPS_26", "symbol": "dpsub"}, "1876": {"type": "MIPS_26", "symbol": "dpadd"}, "1896": {"type": "MIPS_26", "symbol": "dpcmp"}, "1920": {"type": "MIPS_26", "symbol": "dpcmp"}, "2052": {"type": "MIPS_26", "symbol": "dpmul"}, "2072": {"type": "MIPS_26", "symbol": "dpcmp"}, "2176": {"type": "MIPS_26", "symbol": "_i2b", "scope": "LIBRARY"}, "2284": {"type": "MIPS_26", "symbol": "_pow5mult", "scope": "LIBRARY"}, "2304": {"type": "MIPS_26", "symbol": "_multiply", "scope": "LIBRARY"}, "2320": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "2352": {"type": "MIPS_26", "symbol": "_pow5mult", "scope": "LIBRARY"}, "2368": {"type": "MIPS_26", "symbol": "_i2b", "scope": "LIBRARY"}, "2396": {"type": "MIPS_26", "symbol": "_pow5mult", "scope": "LIBRARY"}, "2504": {"type": "MIPS_26", "symbol": "_hi0bits", "scope": "LIBRARY"}, "2596": {"type": "MIPS_26", "symbol": "_lshift", "scope": "LIBRARY"}, "2624": {"type": "MIPS_26", "symbol": "_lshift", "scope": "LIBRARY"}, "2648": {"type": "MIPS_26", "symbol": "__mcmp", "scope": "LIBRARY"}, "2676": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY"}, "2720": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY"}, "2788": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY"}, "2804": {"type")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: "MIPS_26", "symbol": "__mcmp", "scope": "LIBRARY"}, "2852": {"type": "MIPS_26", "symbol": "_lshift", "scope": "LIBRARY"}, "2880": {"type": "MIPS_26", "symbol": "_Balloc", "scope": "LIBRARY"}, "2916": {"type": "MIPS_26", "symbol": "memcpy", "scope": "LIBRARY"}, "2932": {"type": "MIPS_26", "symbol": "_lshift", "scope": "LIBRARY"}, "2968": {"type": "MIPS_26", "symbol": "quorem", "scope": "LIBRARY", "original": ".text"}, "2984": {"type": "MIPS_26", "symbol": "__mcmp", "scope": "LIBRARY"}, "3004": {"type": "MIPS_26", "symbol": "__mdiff", "scope": "LIBRARY"}, "3032": {"type": "MIPS_26", "symbol": "__mcmp", "scope": "LIBRARY"}, "3048": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "3252": {"type": "MIPS_26", "symbol": "_lshift", "scope": "LIBRARY"}, "3268": {"type": "MIPS_26", "symbol": "__mcmp", "scope": "LIBRARY"}, "3380": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY"}, "3420": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY"}, "3452": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY"}, "3476": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY"}, "3500": {"type": "MIPS_26", "symbol": "_lshift", "scope": "LIBRARY"}, "3516": {"type": "MIPS_26", "symbol": "__mcmp", "scope": "LIBRARY"}, "3600": {"type": "MIPS_26", "symbol": "quorem", "scope": "LIBRARY", "original": ".text"}, "3644": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY"}, "3808": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_tens"}, "3812": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tens"}, "3836": {"type": "MIPS_26", "symbol": "dpdiv"}, "3852": {"type": "MIPS_26", "symbol": "dpsub"}, "3868": {"type": "MIPS_26", "symbol": "dptoli"}, "3880": {"type": "MIPS_26", "symbol": "litodp"}, "3896": {"type": "MIPS_26", "symbol": "dpsub"}, "3924": {"type": "MIPS_26", "symbol": "dpcmp"}, "3952": {"type": "MIPS_26", "symbol": "dpsub"}, "3968": {"type": "MIPS_26", "symbol": "dpcmp"}, "4012": {"type": "MIPS_26", "symbol": "dpmul"}, "4036": {"type": "MIPS_26", "symbol": "dpmul"}, "4056": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_tens"}, "4060": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tens"}, "4080": {"type": "MIPS_26", "symbol": "dpmul"}, "4096": {"type": "MIPS_26", "symbol": "dptoli"}, "4108": {"type": "MIPS_26", "symbol": "litodp"}, "4124": {"type": "MIPS_26", "symbol": "dpsub"}, "4172": {"type": "MIPS_26", "symbol": "dpadd"}, "4188": {"type": "MIPS_26", "symbol": "dpcmp"}, "4212": {"type": "MIPS_26", "symbol": "dpsub"}, "4228": {"type": "MIPS_26", "symbol": "dpcmp"}, "4300": {"type": "MIPS_26", "symbol": "dpmul"}, "4336": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_tens"}, "4340": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tens"}, "4360": {"type": "MIPS_26", "symbol": "dpmul"}, "4376": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_bigtens"}, "4384": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_bigtens"}, "4408": {"type": "MIPS_26", "symbol": "dpmul"}, "4620": {"type": "MIPS_26", "symbol": "litodp"}, "4648": {"type": "MIPS_26", "symbol": "dpadd"}}}}, "aa7e4a89875ce8f9b067fa1529a8bd9672705df5": {"9dbeffd3": {"type": "FUNCTION", "size": 4548, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"108": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "232": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "332": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "336": {"type": "MIPS_26", "symbol": "dpcmp"}, "368": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "376": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "400": {"type": "MIPS_26", "symbol": "_d2b", "scope": "LIBRARY"}, "504": {"type": "MIPS_26", "symbol": "dpsub"}, "516": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "520": {"type": "MIPS_26", "symbol": "dpmul"}, "524": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "532": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "536": {"type": "MIPS_26", "symbol": "dpadd"}, "540": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "548": {"type": "MIPS_26", "symbol": "litodp"}, "560": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "564": {"type": "MIPS_26", "symbol": "dpmul"}, "568": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "576": {"type": "MIPS_26", "symbol": "dpadd"}, "588": {"type": "MIPS_26", "symbol": "dptoli"}, "604": {"type": "MIPS_26", "symbol": "dpcmp"}, "620": {"type": "MIPS_26", "symbol": "litodp"}, "632": {"type": "MIPS_26", "symbol": "dpcmp"}, "676": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_tens"}, "684": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tens"}, "700": {"type": "MIPS_26", "symbol": "dpcmp"}, "852": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "860": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "944": {"type": "MIPS_26", "symbol": "_Balloc", "scope": "LIBRARY"}, "1008": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_tens"}, "1012": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tens"}, "1044": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_bigtens"}, "1052": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_bigtens"}, "1060": {"type": "MIPS_26", "symbol": "dpdiv"}, "1076": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_bigtens"}, "1084": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_bigtens"}, "1104": {"type": "MIPS_26", "symbol": "dpmul"}, "1132": {"type": "MIPS_26", "symbol": "dpdiv"}, "1160": {"type": "MIPS_26", "symbol": "dpcmp"}, "1208": {"type": "MIPS_26", "symbol": "dpmul"}, "1232": {"type": "MIPS_26", "symbol": "litodp"}, "1244": {"type": "MIPS_26", "symbol": "dpmul"}, "1260": {"type": "MIPS_26", "symbol": "dpadd"}, "1320": {"type": "MIPS_26", "symbol": "dpsub"}, "1340": {"type": "MIPS_26", "symbol": "dpcmp"}, "1356": {"type": "MIPS_26", "symbol": "dpsub"}, "1368": {"type": "MIPS_26", "symbol": "dpcmp"}, "1428": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_tens"}, "1436": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tens"}, "1488": {"type": "MIPS_26", "symbol": "dpmul"}, "1500": {"type": "MIPS_26", "symbol": "dpcmp"}, "1548": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "1588": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "1600": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "1612": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "1684": {"type": "MIPS_26", "symbol": "dpdiv"}, "1692": {"type": "MIPS_26", "symbol": "dptoli"}, "1704": {"type": "MIPS_26", "symbol": "litodp"}, "1716": {"type": "MIPS_26", "symbol": "dpmul"}, "1728": {"type": "MIPS_26", "symbol": "dpsub"}, "1760": {"type": "MIPS_26", "symbol": "dpadd"}, "1776": {"type": "MIPS_26", "symbol": "dpcmp"}, "1792": {"type": "MIPS_26", "symbol": "dpcmp"}, "1940": {"type": "MIPS_26", "symbol": "dpmul"}, "1956": {"type": "MIPS_26", "symbol": "dpcmp"}, "2060": {"type": "MIPS_26", "symbol": "_i2b", "scope": "LIBRARY"}, "2168": {"type": "MIPS_26", "symbol": "_pow5mult", "scope": "LIBRARY"}, "2188": {"type": "MIPS_26", "symbol": "_multiply", "scope": "LIBRARY"}, "2208": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "2236": {"type": "MIPS_26", "symbol": "_pow5mult", "scope": "LIBRARY"}, "2252": {"type": "MIPS_26", "symbol": "_i2b", "scope": "LIBRARY"}, "2280": {"type": "MIPS_26", "symbol": "_pow5mult", "scope": "LIBRARY"}, "2388": {"type": "MIPS_26", "symbol": "_hi0bits", "scope": "LIBRARY"}, "2480": {"type": "MIPS_26", "symbol": "_lshift", "scope": "LIBRARY"}, "2508": {"type": "MIPS_26", "symbol": "_lshift", "scope": "LIBRARY"}, "2532": {"type": "MIPS_26", "symbol": )PS2SDB", 8192}, + std::string_view{R"PS2SDB("__mcmp", "scope": "LIBRARY"}, "2560": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY"}, "2604": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY"}, "2672": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY"}, "2688": {"type": "MIPS_26", "symbol": "__mcmp", "scope": "LIBRARY"}, "2732": {"type": "MIPS_26", "symbol": "_lshift", "scope": "LIBRARY"}, "2760": {"type": "MIPS_26", "symbol": "_Balloc", "scope": "LIBRARY"}, "2796": {"type": "MIPS_26", "symbol": "memcpy", "scope": "LIBRARY"}, "2812": {"type": "MIPS_26", "symbol": "_lshift", "scope": "LIBRARY"}, "2848": {"type": "MIPS_26", "symbol": "quorem", "scope": "LIBRARY", "original": ".text"}, "2864": {"type": "MIPS_26", "symbol": "__mcmp", "scope": "LIBRARY"}, "2884": {"type": "MIPS_26", "symbol": "__mdiff", "scope": "LIBRARY"}, "2912": {"type": "MIPS_26", "symbol": "__mcmp", "scope": "LIBRARY"}, "2928": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "3148": {"type": "MIPS_26", "symbol": "_lshift", "scope": "LIBRARY"}, "3164": {"type": "MIPS_26", "symbol": "__mcmp", "scope": "LIBRARY"}, "3276": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY"}, "3316": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY"}, "3348": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY"}, "3372": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY"}, "3396": {"type": "MIPS_26", "symbol": "_lshift", "scope": "LIBRARY"}, "3412": {"type": "MIPS_26", "symbol": "__mcmp", "scope": "LIBRARY"}, "3496": {"type": "MIPS_26", "symbol": "quorem", "scope": "LIBRARY", "original": ".text"}, "3544": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY"}, "3708": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_tens"}, "3716": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tens"}, "3740": {"type": "MIPS_26", "symbol": "dpdiv"}, "3752": {"type": "MIPS_26", "symbol": "dpsub"}, "3768": {"type": "MIPS_26", "symbol": "dptoli"}, "3780": {"type": "MIPS_26", "symbol": "litodp"}, "3792": {"type": "MIPS_26", "symbol": "dpsub"}, "3820": {"type": "MIPS_26", "symbol": "dpcmp"}, "3840": {"type": "MIPS_26", "symbol": "dpsub"}, "3852": {"type": "MIPS_26", "symbol": "dpcmp"}, "3888": {"type": "MIPS_26", "symbol": "dpmul"}, "3908": {"type": "MIPS_26", "symbol": "dpmul"}, "3928": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tens"}, "3948": {"type": "MIPS_26", "symbol": "dpmul"}, "3960": {"type": "MIPS_26", "symbol": "dptoli"}, "3972": {"type": "MIPS_26", "symbol": "litodp"}, "3984": {"type": "MIPS_26", "symbol": "dpsub"}, "4028": {"type": "MIPS_26", "symbol": "dpadd"}, "4040": {"type": "MIPS_26", "symbol": "dpcmp"}, "4056": {"type": "MIPS_26", "symbol": "dpsub"}, "4068": {"type": "MIPS_26", "symbol": "dpcmp"}, "4140": {"type": "MIPS_26", "symbol": "dpmul"}, "4172": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_tens"}, "4176": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tens"}, "4196": {"type": "MIPS_26", "symbol": "dpmul"}, "4216": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_bigtens"}, "4220": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_bigtens"}, "4240": {"type": "MIPS_26", "symbol": "dpmul"}, "4452": {"type": "MIPS_26", "symbol": "litodp"}, "4476": {"type": "MIPS_26", "symbol": "dpadd"}}}}, "20072b7c5f45754aa58e3951c4c23af81949f889": {"ac9ebaa0": {"type": "FUNCTION", "size": 4552, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"108": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "232": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "324": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "332": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "336": {"type": "MIPS_26", "symbol": "dpcmp"}, "352": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "364": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "400": {"type": "MIPS_26", "symbol": "_d2b", "scope": "LIBRARY"}, "504": {"type": "MIPS_26", "symbol": "dpsub"}, "512": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "520": {"type": "MIPS_26", "symbol": "dpmul"}, "524": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "528": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "536": {"type": "MIPS_26", "symbol": "dpadd"}, "540": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "548": {"type": "MIPS_26", "symbol": "litodp"}, "556": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "564": {"type": "MIPS_26", "symbol": "dpmul"}, "568": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "576": {"type": "MIPS_26", "symbol": "dpadd"}, "588": {"type": "MIPS_26", "symbol": "dptoli"}, "604": {"type": "MIPS_26", "symbol": "dpcmp"}, "620": {"type": "MIPS_26", "symbol": "litodp"}, "632": {"type": "MIPS_26", "symbol": "dpcmp"}, "676": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_tens"}, "684": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tens"}, "700": {"type": "MIPS_26", "symbol": "dpcmp"}, "856": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "864": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "948": {"type": "MIPS_26", "symbol": "_Balloc", "scope": "LIBRARY"}, "1016": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_tens"}, "1024": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tens"}, "1048": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_bigtens"}, "1056": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_bigtens"}, "1064": {"type": "MIPS_26", "symbol": "dpdiv"}, "1080": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_bigtens"}, "1088": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_bigtens"}, "1108": {"type": "MIPS_26", "symbol": "dpmul"}, "1136": {"type": "MIPS_26", "symbol": "dpdiv"}, "1164": {"type": "MIPS_26", "symbol": "dpcmp"}, "1204": {"type": "MIPS_26", "symbol": "dpmul"}, "1232": {"type": "MIPS_26", "symbol": "litodp"}, "1244": {"type": "MIPS_26", "symbol": "dpmul"}, "1260": {"type": "MIPS_26", "symbol": "dpadd"}, "1316": {"type": "MIPS_26", "symbol": "dpsub"}, "1336": {"type": "MIPS_26", "symbol": "dpcmp"}, "1352": {"type": "MIPS_26", "symbol": "dpsub"}, "1364": {"type": "MIPS_26", "symbol": "dpcmp"}, "1424": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_tens"}, "1432": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tens"}, "1488": {"type": "MIPS_26", "symbol": "dpmul"}, "1500": {"type": "MIPS_26", "symbol": "dpcmp"}, "1548": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "1588": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "1600": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "1612": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "1680": {"type": "MIPS_26", "symbol": "dpdiv"}, "1688": {"type": "MIPS_26", "symbol": "dptoli"}, "1700": {"type": "MIPS_26", "symbol": "litodp"}, "1712": {"type": "MIPS_26", "symbol": "dpmul"}, "1724": {"type": "MIPS_26", "symbol": "dpsub"}, "1756": {"type": "MIPS_26", "symbol": "dpadd"}, "1772": {"type": "MIPS_26", "symbol": "dpcmp"}, "1788": {"type": "MIPS_26", "symbol": "dpcmp"}, "1940": {"type": "MIPS_26", "symbol": "dpmul"}, "1956": {"type": "MIPS_26", "symbol": "dpcmp"}, "2056": {"type": "MIPS_26", "symbol": "_i2b", "scope": "LIBRARY"}, "2164": {"type": "MIPS_26", "symbol": "_pow5mult", "scope": "LIBRARY"}, "2184": {"type": "MIPS_26", "symbol": "_multiply", "scope": "LIBRARY"}, "2204": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "2232": {"type": "MIPS_26", "symbol": "_pow5mult", "scope": "LIBRARY"}, "2248": {"type": "MIPS_26", "symbol": "_i2b", "scope": "LIBRARY"}, "2276": {"type": "MIPS_26", "symbol": "_pow5mult", "scope": "LIBRARY"}, "2384": {"type": "MIPS_26", "symbol": "_hi0bits", "scope": "LIBRARY"}, "2476": {"type":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "MIPS_26", "symbol": "_lshift", "scope": "LIBRARY"}, "2504": {"type": "MIPS_26", "symbol": "_lshift", "scope": "LIBRARY"}, "2528": {"type": "MIPS_26", "symbol": "__mcmp", "scope": "LIBRARY"}, "2556": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY"}, "2600": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY"}, "2668": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY"}, "2684": {"type": "MIPS_26", "symbol": "__mcmp", "scope": "LIBRARY"}, "2732": {"type": "MIPS_26", "symbol": "_lshift", "scope": "LIBRARY"}, "2760": {"type": "MIPS_26", "symbol": "_Balloc", "scope": "LIBRARY"}, "2792": {"type": "MIPS_26", "symbol": "memcpy", "scope": "LIBRARY"}, "2808": {"type": "MIPS_26", "symbol": "_lshift", "scope": "LIBRARY"}, "2844": {"type": "MIPS_26", "symbol": "quorem", "scope": "LIBRARY", "original": ".text"}, "2860": {"type": "MIPS_26", "symbol": "__mcmp", "scope": "LIBRARY"}, "2880": {"type": "MIPS_26", "symbol": "__mdiff", "scope": "LIBRARY"}, "2904": {"type": "MIPS_26", "symbol": "__mcmp", "scope": "LIBRARY"}, "2920": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "3140": {"type": "MIPS_26", "symbol": "_lshift", "scope": "LIBRARY"}, "3156": {"type": "MIPS_26", "symbol": "__mcmp", "scope": "LIBRARY"}, "3268": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY"}, "3304": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY"}, "3340": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY"}, "3364": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY"}, "3388": {"type": "MIPS_26", "symbol": "_lshift", "scope": "LIBRARY"}, "3404": {"type": "MIPS_26", "symbol": "__mcmp", "scope": "LIBRARY"}, "3500": {"type": "MIPS_26", "symbol": "quorem", "scope": "LIBRARY", "original": ".text"}, "3548": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY"}, "3736": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_tens"}, "3740": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tens"}, "3748": {"type": "MIPS_26", "symbol": "dpdiv"}, "3760": {"type": "MIPS_26", "symbol": "dpsub"}, "3776": {"type": "MIPS_26", "symbol": "dptoli"}, "3788": {"type": "MIPS_26", "symbol": "litodp"}, "3800": {"type": "MIPS_26", "symbol": "dpsub"}, "3824": {"type": "MIPS_26", "symbol": "dpcmp"}, "3848": {"type": "MIPS_26", "symbol": "dpsub"}, "3860": {"type": "MIPS_26", "symbol": "dpcmp"}, "3896": {"type": "MIPS_26", "symbol": "dpmul"}, "3916": {"type": "MIPS_26", "symbol": "dpmul"}, "3944": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_tens"}, "3948": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tens"}, "3956": {"type": "MIPS_26", "symbol": "dpmul"}, "3968": {"type": "MIPS_26", "symbol": "dptoli"}, "3980": {"type": "MIPS_26", "symbol": "litodp"}, "3992": {"type": "MIPS_26", "symbol": "dpsub"}, "4036": {"type": "MIPS_26", "symbol": "dpadd"}, "4048": {"type": "MIPS_26", "symbol": "dpcmp"}, "4064": {"type": "MIPS_26", "symbol": "dpsub"}, "4076": {"type": "MIPS_26", "symbol": "dpcmp"}, "4148": {"type": "MIPS_26", "symbol": "dpmul"}, "4180": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_tens"}, "4184": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tens"}, "4204": {"type": "MIPS_26", "symbol": "dpmul"}, "4224": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_bigtens"}, "4228": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_bigtens"}, "4248": {"type": "MIPS_26", "symbol": "dpmul"}, "4460": {"type": "MIPS_26", "symbol": "litodp"}, "4484": {"type": "MIPS_26", "symbol": "dpadd"}}}}, "c46664722349924d60468afc0b6d72106788afa3": {"300ba01e": {"type": "FUNCTION", "size": 4556, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"104": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "232": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "244": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "288": {"type": "MIPS_26", "symbol": "dpcmp"}, "312": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "328": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "360": {"type": "MIPS_26", "symbol": "_d2b", "scope": "LIBRARY"}, "536": {"type": "MIPS_26", "symbol": "litodp"}, "560": {"type": "MIPS_26", "symbol": "dpadd"}, "624": {"type": "MIPS_26", "symbol": "dpsub"}, "632": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "636": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "640": {"type": "MIPS_26", "symbol": "dpmul"}, "648": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "652": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "656": {"type": "MIPS_26", "symbol": "dpadd"}, "668": {"type": "MIPS_26", "symbol": "litodp"}, "676": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "680": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "684": {"type": "MIPS_26", "symbol": "dpmul"}, "696": {"type": "MIPS_26", "symbol": "dpadd"}, "708": {"type": "MIPS_26", "symbol": "dptoli"}, "724": {"type": "MIPS_26", "symbol": "dpcmp"}, "740": {"type": "MIPS_26", "symbol": "litodp"}, "752": {"type": "MIPS_26", "symbol": "dpcmp"}, "784": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_tens"}, "792": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tens"}, "808": {"type": "MIPS_26", "symbol": "dpcmp"}, "980": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "988": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1188": {"type": "MIPS_26", "symbol": "_Balloc", "scope": "LIBRARY"}, "1240": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_tens"}, "1248": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tens"}, "1276": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_bigtens"}, "1284": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_bigtens"}, "1292": {"type": "MIPS_26", "symbol": "dpdiv"}, "1308": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_bigtens"}, "1312": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_bigtens"}, "1336": {"type": "MIPS_26", "symbol": "dpmul"}, "1364": {"type": "MIPS_26", "symbol": "dpdiv"}, "1388": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_tens"}, "1396": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tens"}, "1416": {"type": "MIPS_26", "symbol": "dpmul"}, "1432": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_bigtens"}, "1436": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_bigtens"}, "1456": {"type": "MIPS_26", "symbol": "dpmul"}, "1500": {"type": "MIPS_26", "symbol": "dpcmp"}, "1556": {"type": "MIPS_26", "symbol": "dpmul"}, "1568": {"type": "MIPS_26", "symbol": "litodp"}, "1580": {"type": "MIPS_26", "symbol": "dpmul"}, "1596": {"type": "MIPS_26", "symbol": "dpadd"}, "1668": {"type": "MIPS_26", "symbol": "dpsub"}, "1684": {"type": "MIPS_26", "symbol": "dpcmp"}, "1704": {"type": "MIPS_26", "symbol": "dpsub"}, "1716": {"type": "MIPS_26", "symbol": "dpcmp"}, "1748": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_tens"}, "1752": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tens"}, "1780": {"type": "MIPS_26", "symbol": "dpdiv"}, "1792": {"type": "MIPS_26", "symbol": "dpsub"}, "1816": {"type": "MIPS_26", "symbol": "dpmul"}, "1836": {"type": "MIPS_26", "symbol": "dpmul"}, "1848": {"type": "MIPS_26", "symbol": "dptoli"}, "1860": {"type": "MIPS_26", "symbol": "litodp"}, "1872": {"type": "MIPS_26", "symbol": "dpsub"}, "1900": {"type": "MIPS_26", "symbol": "dpcmp"}, "1924": {"type": "MIPS_26", "symbol": "dpsub"}, "1936": {"type": "MIPS_26", "symbol": "dpcmp"}, "1976": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_tens"}, "1980": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tens"}, "2004": {"type": "MIPS_26", )PS2SDB", 8192}, + std::string_view{R"PS2SDB("symbol": "dpmul"}, "2036": {"type": "MIPS_26", "symbol": "dpmul"}, "2048": {"type": "MIPS_26", "symbol": "dptoli"}, "2060": {"type": "MIPS_26", "symbol": "litodp"}, "2072": {"type": "MIPS_26", "symbol": "dpsub"}, "2112": {"type": "MIPS_26", "symbol": "dpadd"}, "2124": {"type": "MIPS_26", "symbol": "dpcmp"}, "2148": {"type": "MIPS_26", "symbol": "dpsub"}, "2160": {"type": "MIPS_26", "symbol": "dpcmp"}, "2256": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_tens"}, "2264": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tens"}, "2316": {"type": "MIPS_26", "symbol": "dpmul"}, "2328": {"type": "MIPS_26", "symbol": "dpcmp"}, "2376": {"type": "MIPS_26", "symbol": "dpmul"}, "2392": {"type": "MIPS_26", "symbol": "dpcmp"}, "2412": {"type": "MIPS_26", "symbol": "dpdiv"}, "2420": {"type": "MIPS_26", "symbol": "dptoli"}, "2432": {"type": "MIPS_26", "symbol": "litodp"}, "2444": {"type": "MIPS_26", "symbol": "dpmul"}, "2456": {"type": "MIPS_26", "symbol": "dpsub"}, "2488": {"type": "MIPS_26", "symbol": "dpadd"}, "2504": {"type": "MIPS_26", "symbol": "dpcmp"}, "2524": {"type": "MIPS_26", "symbol": "dpcmp"}, "2776": {"type": "MIPS_26", "symbol": "_i2b", "scope": "LIBRARY"}, "2904": {"type": "MIPS_26", "symbol": "_pow5mult", "scope": "LIBRARY"}, "2924": {"type": "MIPS_26", "symbol": "_multiply", "scope": "LIBRARY"}, "2940": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "2968": {"type": "MIPS_26", "symbol": "_pow5mult", "scope": "LIBRARY"}, "2988": {"type": "MIPS_26", "symbol": "_pow5mult", "scope": "LIBRARY"}, "3004": {"type": "MIPS_26", "symbol": "_i2b", "scope": "LIBRARY"}, "3032": {"type": "MIPS_26", "symbol": "_pow5mult", "scope": "LIBRARY"}, "3156": {"type": "MIPS_26", "symbol": "_hi0bits", "scope": "LIBRARY"}, "3300": {"type": "MIPS_26", "symbol": "_lshift", "scope": "LIBRARY"}, "3328": {"type": "MIPS_26", "symbol": "_lshift", "scope": "LIBRARY"}, "3352": {"type": "MIPS_26", "symbol": "__mcmp", "scope": "LIBRARY"}, "3380": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY"}, "3416": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY"}, "3484": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY"}, "3500": {"type": "MIPS_26", "symbol": "__mcmp", "scope": "LIBRARY"}, "3572": {"type": "MIPS_26", "symbol": "_lshift", "scope": "LIBRARY"}, "3604": {"type": "MIPS_26", "symbol": "_Balloc", "scope": "LIBRARY"}, "3640": {"type": "MIPS_26", "symbol": "memcpy", "scope": "LIBRARY"}, "3656": {"type": "MIPS_26", "symbol": "_lshift", "scope": "LIBRARY"}, "3692": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY"}, "3728": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY"}, "3760": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY"}, "3784": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY"}, "3804": {"type": "MIPS_26", "symbol": "quorem", "scope": "LIBRARY", "original": ".text"}, "3820": {"type": "MIPS_26", "symbol": "__mcmp", "scope": "LIBRARY"}, "3840": {"type": "MIPS_26", "symbol": "__mdiff", "scope": "LIBRARY"}, "3868": {"type": "MIPS_26", "symbol": "__mcmp", "scope": "LIBRARY"}, "3884": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "4004": {"type": "MIPS_26", "symbol": "_lshift", "scope": "LIBRARY"}, "4020": {"type": "MIPS_26", "symbol": "__mcmp", "scope": "LIBRARY"}, "4172": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY"}, "4192": {"type": "MIPS_26", "symbol": "quorem", "scope": "LIBRARY", "original": ".text"}, "4232": {"type": "MIPS_26", "symbol": "_lshift", "scope": "LIBRARY"}, "4248": {"type": "MIPS_26", "symbol": "__mcmp", "scope": "LIBRARY"}, "4404": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "4440": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "4452": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "4472": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}}}}}, "__errno": {"ceaacd8dbc6550567edb1845aa0d5c1d3047b02c": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}}}}, "2934fd7c492a9cbee2410d9388982dfbff88b3e2": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}}}}}, "fflush": {"b300c2adf6be07b1b710167bb39fd596f676bcd8": {"0248f7a3": {"type": "FUNCTION", "size": 276, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "32": {"type": "MIPS_HI16", "symbol": "fflush", "original": ".text"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "40": {"type": "MIPS_LO16", "symbol": "fflush", "original": ".text"}, "60": {"type": "MIPS_26", "symbol": "_fwalk", "scope": "LIBRARY"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "112": {"type": "MIPS_26", "symbol": "__sinit", "scope": "LIBRARY"}}}}, "c19d50b6f8c9d11e8e9de5a8c80372b3df890164": {"c8d7069c": {"type": "FUNCTION", "size": 260, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "32": {"type": "MIPS_HI16", "symbol": "fflush", "original": ".text"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "40": {"type": "MIPS_26", "symbol": "_fwalk", "scope": "LIBRARY"}, "44": {"type": "MIPS_LO16", "symbol": "fflush", "original": ".text"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "96": {"type": "MIPS_26", "symbol": "__sinit", "scope": "LIBRARY"}}}}, "1601edf8dfb46ca5e27f88dace40a67ed49242b3": {"086e6c0a": {"type": "FUNCTION", "size": 268, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "32": {"type": "MIPS_HI16", "symbol": "fflush", "original": ".text"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "40": {"type": "MIPS_26", "symbol": "_fwalk", "scope": "LIBRARY"}, "44": {"type": "MIPS_LO16", "symbol": "fflush", "original": ".text"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "100": {"type": "MIPS_26", "symbol": "__sinit", "scope": "LIBRARY"}}}}, "12604f6d3d610c30833472859653a6c1427e6f1b": {"f33eebc0": {"type": "FUNCTION", "size": 268, "library": "libc", "scope": )PS2SDB", 8192}, + std::string_view{R"PS2SDB("GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "40": {"type": "MIPS_HI16", "symbol": "fflush"}, "48": {"type": "MIPS_LO16", "symbol": "fflush"}, "60": {"type": "MIPS_26", "symbol": "_fwalk", "scope": "LIBRARY"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "108": {"type": "MIPS_26", "symbol": "__sinit", "scope": "LIBRARY"}}}}, "6564456b8e9e6568c056192f446e4297d0582e7f": {"f33eebc0": {"type": "FUNCTION", "size": 268, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "40": {"type": "MIPS_HI16", "symbol": "fflush"}, "48": {"type": "MIPS_LO16", "symbol": "fflush"}, "60": {"type": "MIPS_26", "symbol": "_fwalk", "scope": "LIBRARY"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "108": {"type": "MIPS_26", "symbol": "__sinit", "scope": "LIBRARY"}}}}, "ad40b4e3228ec6cc1d89fdcfd23967db7ba0fabd": {"dd83f4e1": {"type": "FUNCTION", "size": 268, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "40": {"type": "MIPS_HI16", "symbol": "fflush"}, "48": {"type": "MIPS_LO16", "symbol": "fflush"}, "60": {"type": "MIPS_26", "symbol": "_fwalk", "scope": "LIBRARY"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "112": {"type": "MIPS_26", "symbol": "__sinit", "scope": "LIBRARY"}}}}}, "std": {"b02f67136f0068ef9fbda25db6c3f5ff52d56f65": {"776fd700": {"type": "FUNCTION", "size": 92, "library": "libc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "__sread"}, "4": {"type": "MIPS_HI16", "symbol": "__swrite"}, "8": {"type": "MIPS_HI16", "symbol": "__sseek"}, "12": {"type": "MIPS_HI16", "symbol": "__sclose"}, "16": {"type": "MIPS_LO16", "symbol": "__sread"}, "20": {"type": "MIPS_LO16", "symbol": "__swrite"}, "24": {"type": "MIPS_LO16", "symbol": "__sseek"}, "28": {"type": "MIPS_LO16", "symbol": "__sclose"}}}}, "b04d3052dcc2cec3a8a85eee334bef0d80065155": {"776fd700": {"type": "FUNCTION", "size": 88, "library": "libc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "__sread"}, "4": {"type": "MIPS_HI16", "symbol": "__swrite"}, "8": {"type": "MIPS_HI16", "symbol": "__sseek"}, "12": {"type": "MIPS_HI16", "symbol": "__sclose"}, "16": {"type": "MIPS_LO16", "symbol": "__sread"}, "20": {"type": "MIPS_LO16", "symbol": "__swrite"}, "24": {"type": "MIPS_LO16", "symbol": "__sseek"}, "28": {"type": "MIPS_LO16", "symbol": "__sclose"}}}}, "75b77ab397f9dff098ffb5bc8f89e997a5d2c38d": {"e403263a": {"type": "FUNCTION", "size": 92, "library": "libc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "__sread"}, "4": {"type": "MIPS_HI16", "symbol": "__swrite"}, "8": {"type": "MIPS_LO16", "symbol": "__sread"}, "12": {"type": "MIPS_LO16", "symbol": "__swrite"}, "20": {"type": "MIPS_HI16", "symbol": "__sseek"}, "28": {"type": "MIPS_LO16", "symbol": "__sseek"}, "32": {"type": "MIPS_HI16", "symbol": "__sclose"}, "40": {"type": "MIPS_LO16", "symbol": "__sclose"}}}}, "5c831045f15d146e261f4e6e9a7ec1cd6256b0b7": {"64ea4afc": {"type": "FUNCTION", "size": 92, "library": "libc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "__sread"}, "8": {"type": "MIPS_HI16", "symbol": "__swrite"}, "16": {"type": "MIPS_LO16", "symbol": "__sread"}, "24": {"type": "MIPS_LO16", "symbol": "__swrite"}, "36": {"type": "MIPS_HI16", "symbol": "__sseek"}, "44": {"type": "MIPS_HI16", "symbol": "__sclose"}, "52": {"type": "MIPS_LO16", "symbol": "__sseek"}, "60": {"type": "MIPS_LO16", "symbol": "__sclose"}}}}, "b2182a65d1ff830493b175d42b468868d6d703a6": {"64ea4afc": {"type": "FUNCTION", "size": 92, "library": "libc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "__sread"}, "8": {"type": "MIPS_HI16", "symbol": "__swrite"}, "16": {"type": "MIPS_LO16", "symbol": "__sread"}, "24": {"type": "MIPS_LO16", "symbol": "__swrite"}, "36": {"type": "MIPS_HI16", "symbol": "__sseek"}, "44": {"type": "MIPS_HI16", "symbol": "__sclose"}, "52": {"type": "MIPS_LO16", "symbol": "__sseek"}, "60": {"type": "MIPS_LO16", "symbol": "__sclose"}}}}}, "__sfmoreglue": {"bdf5e84b3b77cd8c40d73ecffde62ad254853e96": {"0fa18104": {"type": "FUNCTION", "size": 120, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "_malloc_r", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "memset", "scope": "LIBRARY"}}}}, "a50e7ddaa93337e768a39a0e4504f3af782b0d08": {"a676a7c9": {"type": "FUNCTION", "size": 112, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "_malloc_r", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "memset", "scope": "LIBRARY"}}}}, "6358b42867266616ca446ae4c017f046eb85acab": {"a676a7c9": {"type": "FUNCTION", "size": 112, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "_malloc_r", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "memset", "scope": "LIBRARY"}}}}, "f2642b5c71258cbd7461b5d12df259f69d76b975": {"a676a7c9": {"type": "FUNCTION", "size": 112, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "_malloc_r", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "memset", "scope": "LIBRARY"}}}}, "a4e1b1b7f8f6a28f392298ad407bfa7aa3f7578d": {"a676a7c9": {"type": "FUNCTION", "size": 112, "library": "libc", "scope": "GLOBAL", "is_interface": false, "vers)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "_malloc_r", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "memset", "scope": "LIBRARY"}}}}}, "__sfp": {"b6051c1109e4a65876b8dd1497d9d035314dd47f": {"1cdd0ede": {"type": "FUNCTION", "size": 248, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "__sinit", "scope": "LIBRARY", "original": ".text"}, "120": {"type": "MIPS_26", "symbol": "__sfmoreglue", "scope": "LIBRARY", "original": ".text"}}}}, "35f597495d3315dfd8e7ee40ca07b928e446e4ed": {"02492684": {"type": "FUNCTION", "size": 224, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "__sinit", "scope": "LIBRARY", "original": ".text"}, "108": {"type": "MIPS_26", "symbol": "__sfmoreglue", "scope": "LIBRARY", "original": ".text"}}}}, "0ae9b91ae5d3c52b88c6a22861c1083e982584bc": {"02492684": {"type": "FUNCTION", "size": 224, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "__sinit", "scope": "LIBRARY", "original": ".text"}, "108": {"type": "MIPS_26", "symbol": "__sfmoreglue", "scope": "LIBRARY", "original": ".text"}}}}, "15a8ca74a4d0af66a74ae48fca005706609909be": {"bbe22b33": {"type": "FUNCTION", "size": 220, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__sinit", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "__sfmoreglue", "scope": "LIBRARY"}}}}, "da43949ef836ee2da0b0d46f4c4793f99f4b3ad5": {"bbe22b33": {"type": "FUNCTION", "size": 220, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__sinit", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "__sfmoreglue", "scope": "LIBRARY"}}}}, "979ce2204b9d0575a865a2b2132834c6599fbf64": {"d4feb611": {"type": "FUNCTION", "size": 216, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__sinit", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "__sfmoreglue", "scope": "LIBRARY"}}}}}, "_cleanup_r": {"bd8b8850cafd37a2ca7f4a2605a856e1971d2cdb": {"c6b219fc": {"type": "FUNCTION", "size": 28, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "fflush"}, "12": {"type": "MIPS_LO16", "symbol": "fflush"}, "20": {"type": "MIPS_26", "symbol": "_fwalk", "scope": "LIBRARY"}}}}, "c6533793ba6790ef969bee79cef58f7427fb5f6e": {"437a0258": {"type": "FUNCTION", "size": 12, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "fflush"}, "4": {"type": "MIPS_26", "symbol": "_fwalk", "scope": "LIBRARY"}, "8": {"type": "MIPS_LO16", "symbol": "fflush"}}}}}, "_cleanup": {"0470523b4a3338aceee4b6c2b0c6622894e5e22f": {"e14ba825": {"type": "FUNCTION", "size": 28, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "20": {"type": "MIPS_26", "symbol": "_cleanup_r", "scope": "LIBRARY", "original": ".text"}}}}, "3887f1de7e61e4ad19b4f8bb2aa8b864094372d9": {"64930a47": {"type": "FUNCTION", "size": 12, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "4": {"type": "MIPS_26", "symbol": "_cleanup_r", "scope": "LIBRARY", "original": ".text"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}}}}, "5a3cc264bf7ff3fb49935d2e24db9c614ea7240a": {"e14ba825": {"type": "FUNCTION", "size": 28, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "20": {"type": "MIPS_26", "symbol": "_cleanup_r", "scope": "LIBRARY"}}}}}, "__sinit": {"0f327b6f1ddf71c1c56a1c5e9c7b0c5d1ee7b1aa": {"6a189320": {"type": "FUNCTION", "size": 140, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "_cleanup_r", "original": ".text"}, "16": {"type": "MIPS_LO16", "symbol": "_cleanup_r", "original": ".text"}, "56": {"type": "MIPS_26", "symbol": "std", "scope": "LIBRARY", "original": ".text"}, "76": {"type": "MIPS_26", "symbol": "std", "scope": "LIBRARY", "original": ".text"}, "96": {"type": "MIPS_26", "symbol": "std", "scope": "LIBRARY", "original": ".text"}}}}, "f9a6c46083a8247e305778e258db12122a47658d": {"523389a0": {"type": "FUNCTION", "size": 140, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "_cleanup_r", "original": ".text"}, "12": {"type": "MIPS_LO16", "symbol": "_cleanup_r", "original": ".text"}, "56": {"type": "MIPS_26", "symbol": "std", "scope": "LIBRARY", "original": ".text"}, "76": {"type": "MIPS_26", "symbol": "std", "scope": "LIBRARY", "original": ".text"}, "96": {"type": "MIPS_26", "symbol": "std",)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "scope": "LIBRARY", "original": ".text"}}}}, "070f144f6b0916c89d6ad83d000108ed846a64c5": {"83dd09f2": {"type": "FUNCTION", "size": 128, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "_cleanup_r"}, "12": {"type": "MIPS_LO16", "symbol": "_cleanup_r"}, "68": {"type": "MIPS_26", "symbol": "std", "scope": "LIBRARY", "original": ".text"}, "88": {"type": "MIPS_26", "symbol": "std", "scope": "LIBRARY", "original": ".text"}, "120": {"type": "MIPS_26", "symbol": "std", "scope": "LIBRARY", "original": ".text"}}}}, "c11bc144a47e786d16704f9807aab6f93b810caa": {"3aa2c5da": {"type": "FUNCTION", "size": 128, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "_cleanup_r"}, "8": {"type": "MIPS_LO16", "symbol": "_cleanup_r"}, "68": {"type": "MIPS_26", "symbol": "std", "scope": "LIBRARY", "original": ".text"}, "88": {"type": "MIPS_26", "symbol": "std", "scope": "LIBRARY", "original": ".text"}, "120": {"type": "MIPS_26", "symbol": "std", "scope": "LIBRARY", "original": ".text"}}}}, "6aa48b1360c0ec99417e86cd52df22c60e3da11a": {"3aa2c5da": {"type": "FUNCTION", "size": 128, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "_cleanup_r"}, "8": {"type": "MIPS_LO16", "symbol": "_cleanup_r"}, "68": {"type": "MIPS_26", "symbol": "std", "scope": "LIBRARY", "original": ".text"}, "88": {"type": "MIPS_26", "symbol": "std", "scope": "LIBRARY", "original": ".text"}, "120": {"type": "MIPS_26", "symbol": "std", "scope": "LIBRARY", "original": ".text"}}}}}, "fread": {"b584c749715e6c669052e09550d2a051e82fbe90": {"e94914aa": {"type": "FUNCTION", "size": 284, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"144": {"type": "MIPS_26", "symbol": "memcpy", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "__srefill", "scope": "LIBRARY"}, "208": {"type": "MIPS_26", "symbol": "memcpy", "scope": "LIBRARY"}}}}, "0109727b58a529c07453f0f21c3a33cacd591323": {"0bb2a1bf": {"type": "FUNCTION", "size": 276, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"136": {"type": "MIPS_26", "symbol": "memcpy", "scope": "LIBRARY"}, "160": {"type": "MIPS_26", "symbol": "__srefill", "scope": "LIBRARY"}, "200": {"type": "MIPS_26", "symbol": "memcpy", "scope": "LIBRARY"}}}}, "62489a6583b10263235b0ca908e2cf66090d17a1": {"e94914aa": {"type": "FUNCTION", "size": 284, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.1.0", "2.1.4", "2.2.2", "2.3.0", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.5", "2.5.7", "2.7.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"144": {"type": "MIPS_26", "symbol": "memcpy", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "__srefill", "scope": "LIBRARY"}, "208": {"type": "MIPS_26", "symbol": "memcpy", "scope": "LIBRARY"}}}}, "27e739dc64159e966f93797152b30bedde5359ee": {"73d49a68": {"type": "FUNCTION", "size": 280, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"116": {"type": "MIPS_26", "symbol": "memcpy", "scope": "LIBRARY"}, "136": {"type": "MIPS_26", "symbol": "__srefill", "scope": "LIBRARY"}, "176": {"type": "MIPS_26", "symbol": "memcpy", "scope": "LIBRARY"}}}}}, "_free_r": {"cd56404bbb08f7b1d37787480fb3b9407a2a5907": {"e00b1a4d": {"type": "FUNCTION", "size": 756, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__malloc_lock", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_av_"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_trim_threshold"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_trim_threshold"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_top_pad"}, "168": {"type": "MIPS_26", "symbol": "_malloc_trim_r", "scope": "LIBRARY", "original": ".text"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_top_pad"}, "192": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}, "296": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_av_"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "400": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "568": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_av_"}, "576": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "728": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}}}}, "fc552177cd8607fe97b6642260d7c5abc7980028": {"45e6bd08": {"type": "FUNCTION", "size": 756, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.3", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__malloc_lock", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_av_"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_trim_threshold"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_trim_threshold"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_top_pad"}, "168": {"type": "MIPS_26", "symbol": "_malloc_trim_r", "scope": "LIBRARY", "original": ".text"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_top_pad"}, "192": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}, "296": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_av_"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "400": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "568": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_av_"}, "576": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "728": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}}}}, "21f9c7bce4c1e7007e9e84067b5dce6d55c2c778": {"8a36bd60": {"type": "FUNCTION", "size": 796, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__malloc_lock", "scope": "LIBRARY"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_av_"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_trim_threshold"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_trim_threshold"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_top_pad"}, "176": {"type": "MIPS_26", "symbol": "_malloc_trim_r", "scope": "LIBRARY", "ori)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ginal": ".text"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_top_pad"}, "200": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}, "300": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_av_"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "400": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "592": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "768": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}}}}, "ab361d1cc64bc45b6bbb39d83e29eca7ad3a9d9e": {"a57855a7": {"type": "FUNCTION", "size": 804, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__malloc_lock", "scope": "LIBRARY"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_av_"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_trim_threshold"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_trim_threshold"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_top_pad"}, "180": {"type": "MIPS_26", "symbol": "_malloc_trim_r", "scope": "LIBRARY", "original": ".text"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_top_pad"}, "204": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}, "304": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_av_"}, "312": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "400": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_av_"}, "408": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "600": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "776": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}}}}, "82db17edd7e91b1e6df79a82cf59d68ca2f5c9c2": {"5f5f619b": {"type": "FUNCTION", "size": 724, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__malloc_lock", "scope": "LIBRARY"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_av_"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_trim_threshold"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_trim_threshold"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_top_pad"}, "168": {"type": "MIPS_26", "symbol": "_malloc_trim_r", "scope": "LIBRARY"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_top_pad"}, "192": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}, "276": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_av_"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "344": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_av_"}, "348": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "440": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_av_"}, "448": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}}}}, "cd0d611782034ca9f57231a61991868123fca609": {"ee654f74": {"type": "FUNCTION", "size": 732, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__malloc_lock", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_av_"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_trim_threshold"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_trim_threshold"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_top_pad"}, "168": {"type": "MIPS_26", "symbol": "_malloc_trim_r", "scope": "LIBRARY"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_top_pad"}, "192": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}, "272": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_av_"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "344": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_av_"}, "348": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "440": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_av_"}, "448": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}}}}, "31917653ddd8958111c7c3f5e43fad9a75b2ff0e": {"ee654f74": {"type": "FUNCTION", "size": 732, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__malloc_lock", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_av_"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_trim_threshold"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_trim_threshold"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_top_pad"}, "168": {"type": "MIPS_26", "symbol": "_malloc_trim_r", "scope": "LIBRARY"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_top_pad"}, "192": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}, "272": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_av_"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "344": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_av_"}, "348": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "440": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_av_"}, "448": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}}}}}, "_malloc_trim_r": {"a5880a38f0a3493fe0b5a567c8c97a9c498ce2c1": {"2a275710": {"type": "FUNCTION", "size": 364, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "__malloc_lock", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_av_"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "116": {"type": "MIPS_26", "symbol": "_sbrk_r", "scope": "LIBRARY"}, "160": {"type": "MIPS_26", "symbol": "_sbrk_r", "scope": "LIBRARY"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_current_mallinfo"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_current_mallinfo"}, "192": {"type": "MIPS_26", "symbol": "_sbrk_r", "scope": "LIBRARY"}, "240": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_sbrk_base"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_sbrk_base"}, "248": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_current_mallinfo"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_current_mallinfo"}, "264": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}, "320": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}}}}, "746a8be7f3547aca4e90ccc2b29547d360d17e4b": {"839589fe": {"type": "FUNCTION", "size": 364, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4",)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "__malloc_lock", "scope": "LIBRARY"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_av_"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "92": {"type": "MIPS_26", "symbol": "__udivdi3"}, "104": {"type": "MIPS_26", "symbol": "__muldi3"}, "128": {"type": "MIPS_26", "symbol": "_sbrk_r", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "_sbrk_r", "scope": "LIBRARY"}, "196": {"type": "MIPS_26", "symbol": "_sbrk_r", "scope": "LIBRARY"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_sbrk_base"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_sbrk_base"}, "240": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_current_mallinfo"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_current_mallinfo"}, "264": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}, "300": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_current_mallinfo"}, "312": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_current_mallinfo"}, "320": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}, "324": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_current_mallinfo"}}}}, "a89c797d80e9f430c97b243c39ab268ca48966e8": {"689054a9": {"type": "FUNCTION", "size": 368, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "__malloc_lock", "scope": "LIBRARY"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_av_"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "92": {"type": "MIPS_26", "symbol": "__udivdi3"}, "104": {"type": "MIPS_26", "symbol": "__muldi3"}, "132": {"type": "MIPS_26", "symbol": "_sbrk_r", "scope": "LIBRARY"}, "172": {"type": "MIPS_26", "symbol": "_sbrk_r", "scope": "LIBRARY"}, "200": {"type": "MIPS_26", "symbol": "_sbrk_r", "scope": "LIBRARY"}, "228": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_sbrk_base"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_sbrk_base"}, "244": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_current_mallinfo"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_current_mallinfo"}, "268": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}, "304": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_current_mallinfo"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_current_mallinfo"}, "324": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}, "328": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_current_mallinfo"}}}}, "4ff134ad308c565455f0ef2c8a8454b74207b350": {"2210b12a": {"type": "FUNCTION", "size": 364, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "__malloc_lock", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_av_"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "116": {"type": "MIPS_26", "symbol": "_sbrk_r", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "_sbrk_r", "scope": "LIBRARY"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_current_mallinfo"}, "196": {"type": "MIPS_26", "symbol": "_sbrk_r", "scope": "LIBRARY"}, "244": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_sbrk_base"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_sbrk_base"}, "252": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_current_mallinfo"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_current_mallinfo"}, "268": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_current_mallinfo"}, "348": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_current_mallinfo"}}}}, "cf953d8fc5051dd8f41384dd88ee69b78b296cce": {"97344fff": {"type": "FUNCTION", "size": 356, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "__malloc_lock", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_av_"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "116": {"type": "MIPS_26", "symbol": "_sbrk_r", "scope": "LIBRARY"}, "164": {"type": "MIPS_26", "symbol": "_sbrk_r", "scope": "LIBRARY"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_current_mallinfo"}, "208": {"type": "MIPS_26", "symbol": "_sbrk_r", "scope": "LIBRARY"}, "252": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_sbrk_base"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_sbrk_base"}, "260": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_current_mallinfo"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_current_mallinfo"}, "276": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}, "332": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_current_mallinfo"}, "340": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}, "344": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_current_mallinfo"}}}}, "513f7c60837b62c156b63ab3d8f0976ccb25330c": {"2156aced": {"type": "FUNCTION", "size": 348, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "__malloc_lock", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_av_"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "116": {"type": "MIPS_26", "symbol": "_sbrk_r", "scope": "LIBRARY"}, "160": {"type": "MIPS_26", "symbol": "_sbrk_r", "scope": "LIBRARY"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_current_mallinfo"}, "204": {"type": "MIPS_26", "symbol": "_sbrk_r", "scope": "LIBRARY"}, "244": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_sbrk_base"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_sbrk_base"}, "252": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_current_mallinfo"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_current_mallinfo"}, "268": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}, "324": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_current_mallinfo"}, "332": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}, "336": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_current_mallinfo"}}}}}, "_fstat_r": {"63ea1b1eba0739f47d4515a6a350d0f6f5d44fea": {"8064a9b5": {"type": "FUNCTION", "size": 92, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "errno"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": "errno"}, "36": {"type": "MIPS_26", "symbol": "fstat"}}}}, "5cd7b112a7a4b22caffe1430d56a400e559c1538": {"0e88)PS2SDB", 8192}, + std::string_view{R"PS2SDB(a232": {"type": "FUNCTION", "size": 92, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": "errno"}, "32": {"type": "MIPS_26", "symbol": "fstat"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": "errno"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": "errno"}}}}, "d45b1b5b62b0ecb98d98fcc012ef0f26ea839c96": {"3d195371": {"type": "FUNCTION", "size": 88, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": "errno"}, "36": {"type": "MIPS_26", "symbol": "fstat"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": "errno"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": "errno"}}}}, "f837f7522a8214b50c6872d46e8667aa5ff548cd": {"1980c239": {"type": "FUNCTION", "size": 84, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": "errno"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "errno"}, "32": {"type": "MIPS_26", "symbol": "fstat"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": "errno"}}}}, "bb009bc7c9bbf72e72fb4ecbede1fe7e31630066": {"1980c239": {"type": "FUNCTION", "size": 84, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": "errno"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "errno"}, "32": {"type": "MIPS_26", "symbol": "fstat"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": "errno"}}}}}, "__sfvwrite": {"987c17dc61f34465f0bc01f3637d4507cef1f8d7": {"f9d1006e": {"type": "FUNCTION", "size": 992, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"88": {"type": "MIPS_26", "symbol": "__swsetup", "scope": "LIBRARY"}, "336": {"type": "MIPS_26", "symbol": "memmove", "scope": "LIBRARY"}, "404": {"type": "MIPS_26", "symbol": "memmove", "scope": "LIBRARY"}, "424": {"type": "MIPS_26", "symbol": "fflush", "scope": "LIBRARY"}, "508": {"type": "MIPS_26", "symbol": "memmove", "scope": "LIBRARY"}, "636": {"type": "MIPS_26", "symbol": "memchr", "scope": "LIBRARY"}, "732": {"type": "MIPS_26", "symbol": "memmove", "scope": "LIBRARY"}, "752": {"type": "MIPS_26", "symbol": "fflush", "scope": "LIBRARY"}, "840": {"type": "MIPS_26", "symbol": "memmove", "scope": "LIBRARY"}, "884": {"type": "MIPS_26", "symbol": "fflush", "scope": "LIBRARY"}}}}, "df04863769a5c5e9daae04febdef877086b7ae7a": {"c653f8f9": {"type": "FUNCTION", "size": 984, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"84": {"type": "MIPS_26", "symbol": "__swsetup", "scope": "LIBRARY"}, "336": {"type": "MIPS_26", "symbol": "memmove", "scope": "LIBRARY"}, "404": {"type": "MIPS_26", "symbol": "memmove", "scope": "LIBRARY"}, "424": {"type": "MIPS_26", "symbol": "fflush", "scope": "LIBRARY"}, "512": {"type": "MIPS_26", "symbol": "memmove", "scope": "LIBRARY"}, "636": {"type": "MIPS_26", "symbol": "memchr", "scope": "LIBRARY"}, "732": {"type": "MIPS_26", "symbol": "memmove", "scope": "LIBRARY"}, "752": {"type": "MIPS_26", "symbol": "fflush", "scope": "LIBRARY"}, "832": {"type": "MIPS_26", "symbol": "memmove", "scope": "LIBRARY"}, "876": {"type": "MIPS_26", "symbol": "fflush", "scope": "LIBRARY"}}}}, "31e5e5e8c6a0be7c63b39d8a64a01768058023cd": {"d90b7e59": {"type": "FUNCTION", "size": 968, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"84": {"type": "MIPS_26", "symbol": "__swsetup", "scope": "LIBRARY"}, "312": {"type": "MIPS_26", "symbol": "memmove", "scope": "LIBRARY"}, "380": {"type": "MIPS_26", "symbol": "memmove", "scope": "LIBRARY"}, "400": {"type": "MIPS_26", "symbol": "fflush", "scope": "LIBRARY"}, "488": {"type": "MIPS_26", "symbol": "memmove", "scope": "LIBRARY"}, "612": {"type": "MIPS_26", "symbol": "memchr", "scope": "LIBRARY"}, "708": {"type": "MIPS_26", "symbol": "memmove", "scope": "LIBRARY"}, "728": {"type": "MIPS_26", "symbol": "fflush", "scope": "LIBRARY"}, "816": {"type": "MIPS_26", "symbol": "memmove", "scope": "LIBRARY"}, "860": {"type": "MIPS_26", "symbol": "fflush", "scope": "LIBRARY"}}}}, "e4846048a4d6829fcede96935c5195e509f942f7": {"5c008d04": {"type": "FUNCTION", "size": 948, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"88": {"type": "MIPS_26", "symbol": "__swsetup", "scope": "LIBRARY"}, "380": {"type": "MIPS_26", "symbol": "memmove", "scope": "LIBRARY"}, "476": {"type": "MIPS_26", "symbol": "memmove", "scope": "LIBRARY"}, "496": {"type": "MIPS_26", "symbol": "fflush", "scope": "LIBRARY"}, "584": {"type": "MIPS_26", "symbol": "memmove", "scope": "LIBRARY"}, "672": {"type": "MIPS_26", "symbol": "memchr", "scope": "LIBRARY"}, "752": {"type": "MIPS_26", "symbol": "memmove", "scope": "LIBRARY"}, "772": {"type": "MIPS_26", "symbol": "fflush", "scope": "LIBRARY"}, "800": {"type": "MIPS_26", "symbol": "fflush", "scope": "LIBRARY"}, "904": {"type": "MIPS_26", "symbol": "memmove", "scope": "LIBRARY"}}}}, "9037de799b85be2b3a660c1cbc9e0b0f6e350573": {"2c2b98a0": {"type": "FUNCTION", "size": 964, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"88": {"type": "MIPS_26", "symbol": "__swsetup", "scope": "LIBRARY"}, "388": {"type": "MIPS_26", "symbol": "memmove", "scope": "LIBRARY"}, "484": {"type": "MIPS_26", "symbol": "memmove", "scope": "LIBRARY"}, "504": {"type": "MIPS_26", "symbol": "fflush", "scope": "LIBRARY"}, "592": {"type": "MIPS_26", "symbol": "memmove", "scope": "LIBRARY"}, "688": {"type": "MIPS_26", "symbol": "memchr", "scope": "LIBRARY"}, "768": {"type": "MIPS_26", "symbol": "memmove", "scope": "LIBRARY"}, "788": {"type": "MIPS_26", "symbol": "fflush", "scope": "LIBRARY"}, "816": {"type": "MIPS_26", "symbol": "fflush", "scope": "LIBRARY"}, "920": {"type": "MIPS_26", "symbol": "memmove", "scope": "LIBRARY"}}}}, "44d1225d8eda39652cb5331cfce0d283bf01b5cf": {"a9b06aab": {"type": "FUNCTION", "size": 964, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"88": {"type": "MIPS_26", "symbol": "__swsetup", "scope": "LIBRARY"}, "384": {"type": "MIPS_26", "symbol": "memmove", "scope": "LIBRARY"}, "480": {"type": "MIPS_26", "symbol": "memmove", "scope": "LIBRARY"}, "500": {"type": "MIPS_26", "symbol": "fflush", "scope": "LIBRARY"}, "592": {"type": "MIPS_26", "symbol": "memmove", "scope": "LIBRARY"}, "688": {"type": "MIPS_26", "symbol": "memchr", "scope": "LIBRARY"}, "764": {"type": "MIPS_26", "symbol": "memmove", "scope": "LIBRARY"}, "784": {"type": "MIPS_26",)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "symbol": "fflush", "scope": "LIBRARY"}, "812": {"type": "MIPS_26", "symbol": "fflush", "scope": "LIBRARY"}, "920": {"type": "MIPS_26", "symbol": "memmove", "scope": "LIBRARY"}}}}}, "_fwalk": {"53efa4ec3a7475871ac223ee46c3d3d4d5bbb03b": {"00000000": {"type": "FUNCTION", "size": 148, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "d3bcd3c39ab8467804373ba3956622639a4d64b5": {"00000000": {"type": "FUNCTION", "size": 148, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "ca9f36ef9e05e22476c19179581d172b278e3b73": {"00000000": {"type": "FUNCTION", "size": 144, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "aa4b59512ee510611f99c83b5d2fe89308825f3b": {"00000000": {"type": "FUNCTION", "size": 144, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "96156523df7e2cadecf8161a7d9b9693ae84e826": {"00000000": {"type": "FUNCTION", "size": 144, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_setlocale_r": {"940e4c122e7d95c0d255dbb28c48302158c7e686": {"5544e3d7": {"type": "FUNCTION", "size": 140, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"44": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "48": {"type": "MIPS_26", "symbol": "strcmp", "scope": "LIBRARY"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_26", "symbol": "strcmp", "scope": "LIBRARY"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "94dfdbd76df0786d5d673187bcf61aa9f30c5648": {"dcdf7c1a": {"type": "FUNCTION", "size": 132, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"40": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "48": {"type": "MIPS_26", "symbol": "strcmp", "scope": "LIBRARY"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_26", "symbol": "strcmp", "scope": "LIBRARY"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "4ae380e58c98011b1e9ef240c11f377612f84f80": {"ff9d7409": {"type": "FUNCTION", "size": 124, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "48": {"type": "MIPS_26", "symbol": "strcmp", "scope": "LIBRARY"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_26", "symbol": "strcmp", "scope": "LIBRARY"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "c6729470aa42b02ea41baf8dbff65345432a929c": {"794c40d5": {"type": "FUNCTION", "size": 136, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "48": {"type": "MIPS_26", "symbol": "strcmp", "scope": "LIBRARY"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_26", "symbol": "strcmp", "scope": "LIBRARY"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}}}}, "76190ccd7ef4cda51582d4768857444a6055bbdf": {"794c40d5": {"type": "FUNCTION", "size": 136, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "48": {"type": "MIPS_26", "symbol": "strcmp", "scope": "LIBRARY"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_26", "symbol": "strcmp", "scope": "LIBRARY"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}}}}, "1e146c7d9b2f63293a0d5837db4c9108f3ce992e": {"794c40d5": {"type": "FUNCTION", "size": 136, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "48": {"type": "MIPS_26", "symbol": "strcmp", "scope": "LIBRARY"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_26", "symbol": "strcmp", "scope": "LIBRARY"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}}}}}, "_localeconv_r": {"2a51c093207f3b6546ea5ac91d4ae4a6999eaed5": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "setlocale": {"5405aed249097711e49d978547402ef104165c63": {"0a16cf55": {"type": "FUNCTION", "size": 36, "library": "libc", "scope": "GLOBAL", "is_in)PS2SDB", 8192}, + std::string_view{R"PS2SDB(terface": true, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "28": {"type": "MIPS_26", "symbol": "_setlocale_r", "scope": "LIBRARY", "original": ".text"}}}}, "fbc95b4fdc11eb9a2ddfb232421a397dc38fddb6": {"f03d9473": {"type": "FUNCTION", "size": 44, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "24": {"type": "MIPS_26", "symbol": "_setlocale_r", "scope": "LIBRARY", "original": ".text"}}}}, "7ab04b3b484389858dcd5a01175da736ca968bcb": {"acffc056": {"type": "FUNCTION", "size": 40, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "32": {"type": "MIPS_26", "symbol": "_setlocale_r", "scope": "LIBRARY"}}}}, "6b963bebadef9673cdf9a0b21c6186f7afca30d3": {"6c9166c0": {"type": "FUNCTION", "size": 40, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "32": {"type": "MIPS_26", "symbol": "_setlocale_r", "scope": "LIBRARY"}}}}, "789475c6110bad228aa48a9783c9832c0bbe25a9": {"6c9166c0": {"type": "FUNCTION", "size": 40, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "32": {"type": "MIPS_26", "symbol": "_setlocale_r", "scope": "LIBRARY"}}}}}, "localeconv": {"0470523b4a3338aceee4b6c2b0c6622894e5e22f": {"687c8478": {"type": "FUNCTION", "size": 28, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "20": {"type": "MIPS_26", "symbol": "_localeconv_r", "scope": "LIBRARY", "original": ".text"}}}}, "962b2bfbb1cb7206515a99984a92d47334361f8e": {"7db5f773": {"type": "FUNCTION", "size": 36, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "16": {"type": "MIPS_26", "symbol": "_localeconv_r", "scope": "LIBRARY", "original": ".text"}}}}, "5a3cc264bf7ff3fb49935d2e24db9c614ea7240a": {"687c8478": {"type": "FUNCTION", "size": 28, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "20": {"type": "MIPS_26", "symbol": "_localeconv_r", "scope": "LIBRARY"}}}}}, "_lseek_r": {"11cedd8bb17b528ce07dd012c30fbb74d6215523": {"344e2265": {"type": "FUNCTION", "size": 96, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "errno"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": "errno"}, "40": {"type": "MIPS_26", "symbol": "lseek"}}}}, "592a961e4d6502532bc9fdade83713b82c169e7f": {"9cfae139": {"type": "FUNCTION", "size": 96, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": "errno"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "errno"}, "36": {"type": "MIPS_26", "symbol": "lseek"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": "errno"}}}}, "106e4aee372a103cf2cbeab940d74cc6bf81a324": {"dd351da7": {"type": "FUNCTION", "size": 92, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": "errno"}, "40": {"type": "MIPS_26", "symbol": "lseek"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "errno"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": "errno"}}}}, "100e4ffb29e00842c24792d97270cc98467bde21": {"1c43a639": {"type": "FUNCTION", "size": 88, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": "errno"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "errno"}, "36": {"type": "MIPS_26", "symbol": "lseek"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": "errno"}}}}, "85998eecd0a3ddf155d41541f9089a06da6a29ae": {"1c43a639": {"type": "FUNCTION", "size": 88, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": "errno"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "errno"}, "36": {"type": "MIPS_26", "symbol": "lseek"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": "errno"}}}}}, "__smakebuf": {"e953bef17a9a000c5ab8875eeba4dbc9f547a2ab": {"f1cccf84": {"type": "FUNCTION", "size": 340, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"80": {"type": "MIPS_26", "symbol": "_fstat_r", "scope": "LIBRARY"}, "144": {"type": "MIPS_HI16", "symbol")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: "__sseek"}, "152": {"type": "MIPS_LO16", "symbol": "__sseek"}, "192": {"type": "MIPS_26", "symbol": "_malloc_r", "scope": "LIBRARY"}, "248": {"type": "MIPS_HI16", "symbol": "_cleanup_r"}, "256": {"type": "MIPS_LO16", "symbol": "_cleanup_r"}, "288": {"type": "MIPS_26", "symbol": "isatty"}}}}, "d9bb27f86834e4cc1d4985f62de4231b401d9346": {"ced91842": {"type": "FUNCTION", "size": 336, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"76": {"type": "MIPS_26", "symbol": "_fstat_r", "scope": "LIBRARY"}, "144": {"type": "MIPS_HI16", "symbol": "__sseek"}, "152": {"type": "MIPS_LO16", "symbol": "__sseek"}, "192": {"type": "MIPS_26", "symbol": "_malloc_r", "scope": "LIBRARY"}, "244": {"type": "MIPS_HI16", "symbol": "_cleanup_r"}, "252": {"type": "MIPS_LO16", "symbol": "_cleanup_r"}, "284": {"type": "MIPS_26", "symbol": "isatty"}}}}, "2a0e390776ec84b461cf31d5822d47bc4fd6e11e": {"078c8e38": {"type": "FUNCTION", "size": 328, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"76": {"type": "MIPS_26", "symbol": "_fstat_r", "scope": "LIBRARY"}, "136": {"type": "MIPS_HI16", "symbol": "__sseek"}, "144": {"type": "MIPS_LO16", "symbol": "__sseek"}, "184": {"type": "MIPS_26", "symbol": "_malloc_r", "scope": "LIBRARY"}, "236": {"type": "MIPS_HI16", "symbol": "_cleanup_r"}, "244": {"type": "MIPS_LO16", "symbol": "_cleanup_r"}, "276": {"type": "MIPS_26", "symbol": "isatty"}}}}, "4c9ee983bf8990329d870e5df8ef91ab158e8b76": {"5a4efd7f": {"type": "FUNCTION", "size": 332, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"96": {"type": "MIPS_26", "symbol": "_fstat_r", "scope": "LIBRARY"}, "136": {"type": "MIPS_26", "symbol": "_malloc_r", "scope": "LIBRARY"}, "192": {"type": "MIPS_HI16", "symbol": "_cleanup_r"}, "200": {"type": "MIPS_LO16", "symbol": "_cleanup_r"}, "232": {"type": "MIPS_26", "symbol": "isatty"}, "288": {"type": "MIPS_HI16", "symbol": "__sseek"}, "292": {"type": "MIPS_LO16", "symbol": "__sseek"}}}}, "0010df7f8b40a2ccab84ab74a66b496c31ba5a17": {"c0f44484": {"type": "FUNCTION", "size": 340, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"96": {"type": "MIPS_26", "symbol": "_fstat_r", "scope": "LIBRARY"}, "136": {"type": "MIPS_26", "symbol": "_malloc_r", "scope": "LIBRARY"}, "192": {"type": "MIPS_HI16", "symbol": "_cleanup_r"}, "200": {"type": "MIPS_LO16", "symbol": "_cleanup_r"}, "232": {"type": "MIPS_26", "symbol": "isatty"}, "288": {"type": "MIPS_HI16", "symbol": "__sseek"}, "296": {"type": "MIPS_LO16", "symbol": "__sseek"}}}}, "1825bd8034da2cb0802b8f370bd14ad0e8f5041e": {"a2dac9e6": {"type": "FUNCTION", "size": 332, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"96": {"type": "MIPS_26", "symbol": "_fstat_r", "scope": "LIBRARY"}, "136": {"type": "MIPS_26", "symbol": "_malloc_r", "scope": "LIBRARY"}, "184": {"type": "MIPS_HI16", "symbol": "_cleanup_r"}, "192": {"type": "MIPS_LO16", "symbol": "_cleanup_r"}, "224": {"type": "MIPS_26", "symbol": "isatty"}, "280": {"type": "MIPS_HI16", "symbol": "__sseek"}, "288": {"type": "MIPS_LO16", "symbol": "__sseek"}}}}}, "malloc_extend_top": {"ecbad5864596879471bec712157b12647fa18d47": {"4a2c03b3": {"type": "FUNCTION", "size": 600, "library": "libc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_26", "symbol": "_sbrk_r", "scope": "LIBRARY"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "340": {"type": "MIPS_26", "symbol": "_sbrk_r", "scope": "LIBRARY"}, "364": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "376": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "384": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "492": {"type": "MIPS_26", "symbol": "_free_r", "scope": "LIBRARY"}, "500": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "504": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "508": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "528": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "532": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "e4145e7f562aa8b46dc75a9c0938dbbd5b2b396f": {"4d438a0c": {"type": "FUNCTION", "size": 596, "library": "libc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_26", "symbol": "_sbrk_r", "scope": "LIBRARY"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "344": {"type": "MIPS_26", "symbol": "_sbrk_r", "scope": "LIBRARY"}, "372": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "380": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "388": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "396": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "492": {"type": "MIPS_26", "symbol": "_free_r", "scope": "LIBRARY"}, "500": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "504": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "508": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "524": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "528": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "532": {"type": "MIPS_LO16", "symbol": ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(", "original": ".data"}, "544": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "e0722dd9101e4961ed04ab3906edf23af1990295": {"eb712084": {"type": "FUNCTION", "size": 612, "library": "libc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_26", "symbol": "_sbrk_r", "scope": "LIBRARY"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "200": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "264": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "344": {"type": "MIPS_26", "symbol": "_sbrk_r", "scope": "LIBRARY"}, "368": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "372": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "376": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "384": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "396": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "404": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "500": {"type": "MIPS_26", "symbol": "_free_r", "scope": "LIBRARY"}, "508": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "512": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "516": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "520": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "532": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "536": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "540": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "544": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "548": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "560": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "10b49cc83e7f3448c4127c6430dfcf324581043d": {"34e58fc8": {"type": "FUNCTION", "size": 600, "library": "libc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_av_"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_top_pad"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_top_pad"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_sbrk_base"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_sbrk_base"}, "148": {"type": "MIPS_26", "symbol": "_sbrk_r", "scope": "LIBRARY"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_current_mallinfo"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_current_mallinfo"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_current_mallinfo"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_current_mallinfo"}, "212": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_sbrk_base"}, "232": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_max_sbrked_mem"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_max_total_mem"}, "240": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_current_mallinfo"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_max_sbrked_mem"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_current_mallinfo"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_max_total_mem"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_max_sbrked_mem"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_max_total_mem"}, "324": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_sbrk_base"}, "332": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_sbrk_base"}, "340": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_current_mallinfo"}, "344": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_sbrk_base"}, "404": {"type": "MIPS_26", "symbol": "_sbrk_r", "scope": "LIBRARY"}, "424": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_current_mallinfo"}, "440": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_current_mallinfo"}, "452": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_av_"}, "456": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "468": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_current_mallinfo"}, "556": {"type": "MIPS_26", "symbol": "_free_r", "scope": "LIBRARY"}, "568": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_max_sbrked_mem"}, "584": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_current_mallinfo"}, "596": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_current_mallinfo"}}}}, "d674535c6eb434bb18c82fc9fdbdd521d505d510": {"5655183a": {"type": "FUNCTION", "size": 600, "library": "libc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_av_"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_top_pad"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_top_pad"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_sbrk_base"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_sbrk_base"}, "148": {"type": "MIPS_26", "symbol": "_sbrk_r", "scope": "LIBRARY"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_current_mallinfo"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_current_mallinfo"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_current_mallinfo"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_current_mallinfo"}, "212": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_sbrk_base"}, "232": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_max_sbrked_mem"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_max_total_mem"}, "240": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_current_mallinfo"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_max_sbrked_mem"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_current_mallinfo"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_max_total_mem"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_max_sbrked_mem"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_max_total_mem"}, "324": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_sbrk_base"}, "332": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_sbrk_base"}, "340": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_current_mallinfo"}, "344": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_sbrk_base"}, "404": {"type": "MIPS_26", "symbol": ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(_sbrk_r", "scope": "LIBRARY"}, "424": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_current_mallinfo"}, "440": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_current_mallinfo"}, "456": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_av_"}, "460": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_current_mallinfo"}, "464": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "556": {"type": "MIPS_26", "symbol": "_free_r", "scope": "LIBRARY"}, "568": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_max_sbrked_mem"}, "584": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_current_mallinfo"}, "596": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_current_mallinfo"}}}}, "088eb5278f588ba94652f49b57ca660bf2e607c6": {"c24dd22d": {"type": "FUNCTION", "size": 596, "library": "libc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_av_"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_top_pad"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_top_pad"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_sbrk_base"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_sbrk_base"}, "148": {"type": "MIPS_26", "symbol": "_sbrk_r", "scope": "LIBRARY"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_current_mallinfo"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_current_mallinfo"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_current_mallinfo"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_current_mallinfo"}, "212": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_sbrk_base"}, "232": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_max_sbrked_mem"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_max_total_mem"}, "240": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_current_mallinfo"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_max_sbrked_mem"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_current_mallinfo"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_max_total_mem"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_max_sbrked_mem"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_max_total_mem"}, "324": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_sbrk_base"}, "332": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_sbrk_base"}, "340": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_current_mallinfo"}, "344": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_sbrk_base"}, "404": {"type": "MIPS_26", "symbol": "_sbrk_r", "scope": "LIBRARY"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_current_mallinfo"}, "436": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_current_mallinfo"}, "444": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_av_"}, "456": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "460": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_current_mallinfo"}, "552": {"type": "MIPS_26", "symbol": "_free_r", "scope": "LIBRARY"}, "564": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_max_sbrked_mem"}, "580": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_current_mallinfo"}, "592": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_current_mallinfo"}}}}}, "_malloc_r": {"ffddd27f2fb714cb9c2b16934a7ca709ac1841db": {"c2e8d199": {"type": "FUNCTION", "size": 1832, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "__malloc_lock", "scope": "LIBRARY"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "272": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "388": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "464": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "488": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "768": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "924": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "936": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "960": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "972": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1036": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1040": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1204": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1276": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1344": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1408": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1448": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1456": {"type": "MIPS_26", "symbol": "malloc_extend_top", "scope": "LIBRARY", "original": ".text"}, "1520": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1556": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1560": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}, "1640": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1788": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}}}}, "f2310ca466bc842bf942237e69b7482f74fe0761": {"12fd2267": {"type": "FUNCTION", "size": 1912, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"64": {"type": "MIPS_26", "symbol": "__malloc_lock", "scope": "LIBRARY"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "280": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "400": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "404": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "484": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "512": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "816": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "988": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1024": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1036": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1100": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1320": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1408": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1472": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1516": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1520": {"type": "MIPS_26", "symbol": "malloc_extend_top", "scop)PS2SDB", 8192}, + std::string_view{R"PS2SDB(e": "LIBRARY", "original": ".text"}, "1580": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1620": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1624": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}, "1668": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}, "1716": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1764": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}, "1808": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}, "1868": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}}}}, "6705baae2dac541cf17c00686ba4038c8d3427fe": {"411f98ed": {"type": "FUNCTION", "size": 1904, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"64": {"type": "MIPS_26", "symbol": "__malloc_lock", "scope": "LIBRARY"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "284": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "292": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "408": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "416": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "496": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "524": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "824": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "996": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1028": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1040": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1100": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1312": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1400": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1464": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1508": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1512": {"type": "MIPS_26", "symbol": "malloc_extend_top", "scope": "LIBRARY", "original": ".text"}, "1572": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1612": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1616": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}, "1660": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}, "1708": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1756": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}, "1800": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}, "1860": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}}}}, "dd0d0b11999106f0a5d0269f03d3df438807febe": {"583516f9": {"type": "FUNCTION", "size": 1776, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "__malloc_lock", "scope": "LIBRARY"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_av_"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "140": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_av_"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "248": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_av_"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "328": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "440": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "476": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "488": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_av_"}, "548": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_av_"}, "552": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "720": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "768": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "832": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "880": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "920": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "924": {"type": "MIPS_26", "symbol": "malloc_extend_top", "scope": "LIBRARY", "original": ".text"}, "968": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "1008": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "1012": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}, "1184": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_av_"}, "1192": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "1280": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "1540": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_av_"}, "1548": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}}}}, "56b09f4ea6e11064bda9b75d9620e84ff60e9874": {"c880b322": {"type": "FUNCTION", "size": 1776, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "__malloc_lock", "scope": "LIBRARY"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_av_"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "140": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_av_"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "248": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_av_"}, "256": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_av_"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "328": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "448": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "476": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "488": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_av_"}, "548": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_av_"}, "552": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "716": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "768": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "832": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "880": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "920": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "924": {"type": "MIPS_26", "symbol": "malloc_extend_top", "scope": "LIBRARY", "original": ".text"}, "968": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "1008": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "1012": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}, "1164": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_av_"}, "1176": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "1276": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "1540": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_av_"}, "1548": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}}}}, "c0cfb1015669683723561eae11181177315e94e1": {"c290a6dd": {"type": "FUNCTION", "size": 1768, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2)PS2SDB", 8192}, + std::string_view{R"PS2SDB(.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "__malloc_lock", "scope": "LIBRARY"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_av_"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "140": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_av_"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "248": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_av_"}, "256": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_av_"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "328": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "448": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "476": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "488": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_av_"}, "548": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_av_"}, "552": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "716": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "768": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "832": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "876": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "916": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "920": {"type": "MIPS_26", "symbol": "malloc_extend_top", "scope": "LIBRARY", "original": ".text"}, "964": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "1000": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "1004": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}, "1164": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_av_"}, "1180": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "1268": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "1532": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_av_"}, "1540": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}}}}}, "_mbtowc_r": {"7f26543d92200ba1f2b2d7a1176c9ca8fd7dcf59": {"00000000": {"type": "FUNCTION", "size": 52, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "bec80870436ae0484f899a91addbd921967c2915": {"00000000": {"type": "FUNCTION", "size": 60, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "97357fe02fcdaab39cae9418e5732243041cf43a": {"00000000": {"type": "FUNCTION", "size": 48, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "d0ccacf3c8a988ae9cbe2fd5ba27eeb72c36977d": {"00000000": {"type": "FUNCTION", "size": 48, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "memchr": {"a7478d18a4bd9c68327bffa91658ddfbb2455383": {"00000000": {"type": "FUNCTION", "size": 224, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "f7c51be71065b5954e3dcf5d1a293266212b0797": {"00000000": {"type": "FUNCTION", "size": 52, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "memcmp": {"0ba37c83649d64eed3653c25aed313c37837f24e": {"00000000": {"type": "FUNCTION", "size": 148, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.1", "1.5.3", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "memcpy": {"d64c28659f71dd451557974ce968c5859d04ac5c": {"00000000": {"type": "FUNCTION", "size": 176, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "5649332ddaac33fcefbbf3be9164f36d806d3ef3": {"00000000": {"type": "FUNCTION", "size": 176, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "29ee4f7c4fc7f366d451deb8b9bde025e0b10543": {"00000000": {"type": "FUNCTION", "size": 376, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "memmove": {"f10321bf1a26ecc65fcc813b72839dde66c07bba": {"00000000": {"type": "FUNCTION", "size": 260, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "54b9903cc6b22e66348ebf184bfdd972ca52bd34": {"00000000": {"type": "FUNCTION", "size": 260, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "memset": {"c8a6d5069c852620e9e442efe7dcdf89d8c18069": {"00000000": {"type": "FUNCTION", "size": 192, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "c5798fb1d3634c7fc6d43ebf0d169013db79ac59": {"00000000": {"type": "FUNCTION", "size": 192, "library": "libc", "scope": "GLOBAL", "is_interface": true, "ve)PS2SDB", 8192}, + std::string_view{R"PS2SDB(rsions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "__malloc_lock": {"b7d09680e755a843dccb99aaedce3efece82989f": {"54beccdc": {"type": "FUNCTION", "size": 124, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "GetThreadId"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": "__sce_sema_id"}, "72": {"type": "MIPS_26", "symbol": "WaitSema"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "__sce_sema_id"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "7678540574197b420f17571673856a74783eb9d5": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "6bef80bdb46253c8fea7d2f47782f39354c7c726": {"6d13abb0": {"type": "FUNCTION", "size": 92, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "GetThreadId"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": "__sce_sema_id"}, "44": {"type": "MIPS_26", "symbol": "WaitSema"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": "__sce_sema_id"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "12247f11ac55394cd29cf5f0c42364dc133ddce7": {"c186e722": {"type": "FUNCTION", "size": 88, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "QueryIntrContext"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_26", "symbol": "DIntr"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "299c41c7512719f6029120991557976f528687c5": {"c186e722": {"type": "FUNCTION", "size": 88, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "QueryIntrContext"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_26", "symbol": "DIntr"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__malloc_unlock": {"afcaf56caf0c443be2f3c0da8cfa1489fe4726e4": {"4b423a5f": {"type": "FUNCTION", "size": 76, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": "__sce_sema_id"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": "__sce_sema_id"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "7678540574197b420f17571673856a74783eb9d5": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "cbaf556fb75245e6ff3837bf7d68badb10820e30": {"49351987": {"type": "FUNCTION", "size": 72, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": "__sce_sema_id"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": "__sce_sema_id"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "b785e1568b89061371414c8107d2e73d4cb7bb02": {"a33aa0a3": {"type": "FUNCTION", "size": 84, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "QueryIntrContext"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_26", "symbol": "EIntr"}}}}, "3786638f50c3171da314bbed3f204f1113eda41f": {"a33aa0a3": {"type": "FUNCTION", "size": 84, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "QueryIntrContext"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"t)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ype": "MIPS_HI16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_26", "symbol": "EIntr"}}}}}, "_Balloc": {"8c31a5c59891bf8f71e4115753a990573dd96c98": {"976fc129": {"type": "FUNCTION", "size": 164, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "_calloc_r", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "_calloc_r", "scope": "LIBRARY"}}}}, "34bbd36bcc65682d4d5225208db72448f4ab8654": {"976fc129": {"type": "FUNCTION", "size": 168, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "_calloc_r", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "_calloc_r", "scope": "LIBRARY"}}}}, "bdef949370926a6167254b6296b2f9c2d55b7fce": {"976fc129": {"type": "FUNCTION", "size": 168, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "_calloc_r", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "_calloc_r", "scope": "LIBRARY"}}}}, "05558e1d44d08c94ee7889317bea86014fc36209": {"11aa1112": {"type": "FUNCTION", "size": 172, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "_calloc_r", "scope": "LIBRARY"}, "140": {"type": "MIPS_26", "symbol": "_calloc_r", "scope": "LIBRARY"}}}}, "529361e0c4bbbb45f9928b1e4d55465c7a828ae1": {"11aa1112": {"type": "FUNCTION", "size": 172, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "_calloc_r", "scope": "LIBRARY"}, "140": {"type": "MIPS_26", "symbol": "_calloc_r", "scope": "LIBRARY"}}}}, "d9ffe7b6d54955867d3f85058c0cf834f75e850b": {"11aa1112": {"type": "FUNCTION", "size": 168, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "_calloc_r", "scope": "LIBRARY"}, "140": {"type": "MIPS_26", "symbol": "_calloc_r", "scope": "LIBRARY"}}}}}, "_Bfree": {"49398f4ad5b2868d1f945f6bf1bb550cbd3f1f80": {"00000000": {"type": "FUNCTION", "size": 44, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "2938b4c9317510bc47383cb3736b1a2fafbfa714": {"00000000": {"type": "FUNCTION", "size": 44, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_multadd": {"ebe53381f5e70a2a204ec18e334b83c60844ee79": {"96babf15": {"type": "FUNCTION", "size": 264, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"156": {"type": "MIPS_26", "symbol": "_Balloc", "scope": "LIBRARY", "original": ".text"}, "184": {"type": "MIPS_26", "symbol": "memcpy", "scope": "LIBRARY"}, "200": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY", "original": ".text"}}}}, "bb9fb9dac77703f49f75636c910c8e3718844a4f": {"9a328b9f": {"type": "FUNCTION", "size": 276, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"164": {"type": "MIPS_26", "symbol": "_Balloc", "scope": "LIBRARY", "original": ".text"}, "192": {"type": "MIPS_26", "symbol": "memcpy", "scope": "LIBRARY"}, "204": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY", "original": ".text"}}}}, "4db05d57e80d39837b76f8d26a7b7035e8faa1e4": {"93b0f294": {"type": "FUNCTION", "size": 264, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"156": {"type": "MIPS_26", "symbol": "_Balloc", "scope": "LIBRARY", "original": ".text"}, "184": {"type": "MIPS_26", "symbol": "memcpy", "scope": "LIBRARY"}, "196": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY", "original": ".text"}}}}, "a64bf7bfd02f9387b3606ad8fdcea8c8c6d5e8b4": {"96babf15": {"type": "FUNCTION", "size": 264, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"156": {"type": "MIPS_26", "symbol": "_Balloc", "scope": "LIBRARY"}, "184": {"type": "MIPS_26", "symbol": "memcpy", "scope": "LIBRARY"}, "200": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}}}}, "05a5a6d074d90a8c9cad200df7684011aa64bb1f": {"93b0f294": {"type": "FUNCTION", "size": 264, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"156": {"type": "MIPS_26", "symbol": "_Balloc", "scope": "LIBRARY"}, "184": {"type": "MIPS_26", "symbol": "memcpy", "scope": "LIBRARY"}, "196": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}}}}, "94da82e232ee1a05cc2a60ae25906649fe5c1fa0": {"45ee3db5": {"type": "FUNCTION", "size": 260, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"152": {"type": "MIPS_26", "symbol": "_Balloc", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "memcpy", "scope": "LIBRARY"}, "192": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}}}}}, "_s2b": {"149b3a375e601fe3c3299c7a341c0363d05c06c6": {"c8f5f74e": {"type": "FUNCTION", "size": 304, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"116": {"type": "MIPS_26", "symbol": "_Balloc", "scope": "LIBRARY", "original": ".text"}, "176": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY", "original": ".text"}, "252": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY", "original": ".text"}}}}, "00a9ec12d384113b17028eb7b3343e988a317425": {"8e02f3a6": {"type": "FUNCTION", "size": 328, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1")PS2SDB", 8192}, + std::string_view{R"PS2SDB(, "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"148": {"type": "MIPS_26", "symbol": "_Balloc", "scope": "LIBRARY", "original": ".text"}, "200": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY", "original": ".text"}, "268": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY", "original": ".text"}}}}, "95e0720e65e05b2ab5db8350d12054ee97a41858": {"365a35aa": {"type": "FUNCTION", "size": 308, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"128": {"type": "MIPS_26", "symbol": "_Balloc", "scope": "LIBRARY", "original": ".text"}, "184": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY", "original": ".text"}, "252": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY", "original": ".text"}}}}, "e937f72cac25b77b629fc6ad249041319dd3b763": {"05032b9c": {"type": "FUNCTION", "size": 308, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"128": {"type": "MIPS_26", "symbol": "_Balloc", "scope": "LIBRARY"}, "184": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY"}, "244": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY"}}}}, "79057540dcda9d54ab1465ad83dc1412bcdcdd39": {"05032b9c": {"type": "FUNCTION", "size": 308, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"128": {"type": "MIPS_26", "symbol": "_Balloc", "scope": "LIBRARY"}, "184": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY"}, "244": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY"}}}}, "4a90b361dbbdd881a971fe9cb6c0f0d1a9a2301a": {"17d7b81b": {"type": "FUNCTION", "size": 300, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"128": {"type": "MIPS_26", "symbol": "_Balloc", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY"}, "240": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY"}}}}}, "_hi0bits": {"e874e85b2423d9a2bcf702cf8efc415a39cee2b5": {"00000000": {"type": "FUNCTION", "size": 128, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "697888e5a4aceae0397d51d67f2d376772ed8f46": {"00000000": {"type": "FUNCTION", "size": 132, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "c884adac98ff25abee50743a2b30ca1933b2ccd2": {"00000000": {"type": "FUNCTION", "size": 128, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "5a68598d09824c8986d017a863f045ce58e5db40": {"00000000": {"type": "FUNCTION", "size": 124, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_lo0bits": {"295c88a98dbe1da5731f96ad519768839778b462": {"00000000": {"type": "FUNCTION", "size": 188, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "7e0351a4c2ef731e08a1b192e12d1c96fbeb008b": {"00000000": {"type": "FUNCTION", "size": 192, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "a57362c4fa3570cd99c91c98d4064bb4445bf58d": {"00000000": {"type": "FUNCTION", "size": 184, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "80c75342bd6a533e0695159fbf3c6f5fb821d644": {"00000000": {"type": "FUNCTION", "size": 184, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "878e4d3ff8ddbb173efd1789a677224cc07daea0": {"00000000": {"type": "FUNCTION", "size": 188, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_i2b": {"1fc1c94c0f78d41558d631ff809b17baad6e9d4a": {"d323e0e5": {"type": "FUNCTION", "size": 56, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "_Balloc", "scope": "LIBRARY", "original": ".text"}}}}, "ea5310296cf9c2d6066d5f7c519910790f3a341b": {"d323e0e5": {"type": "FUNCTION", "size": 56, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "_Balloc", "scope": "LIBRARY", "original": ".text"}}}}, "9b4e6905bdd682376c29d5389dd081ea277f0b81": {"d323e0e5": {"type": "FUNCTION", "size": 52, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "_Balloc", "scope": "LIBRARY"}}}}, "796a2b910d2f0ed4a4015562bc0d1c2feb38fd9a": {"d323e0e5": {"type": "FUNCTION", "size": 52, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "_Balloc", "scope": "LIBRARY"}}}}, "893562788658e74965ed47de1778c55dea27e0bb": {"d323e0e5": {"type": "FUNCTION", "size": 52, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "_Balloc", "scope": "LIBRARY"}}}}}, "_multiply": {"5cc2ba8d60c734018fda5102ae071387db809e7b": {"f414c8b5": {"type": "FUNCTION", "size": 524, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.)PS2SDB", 8192}, + std::string_view{R"PS2SDB(0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"92": {"type": "MIPS_26", "symbol": "_Balloc", "scope": "LIBRARY", "original": ".text"}}}}, "894139516097f96a6f57186e405a985889690d2b": {"f414c8b5": {"type": "FUNCTION", "size": 556, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"92": {"type": "MIPS_26", "symbol": "_Balloc", "scope": "LIBRARY", "original": ".text"}}}}, "d04c7d2d18799c2acd5a4a2e47860b31a02c747f": {"34ada223": {"type": "FUNCTION", "size": 520, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"88": {"type": "MIPS_26", "symbol": "_Balloc", "scope": "LIBRARY", "original": ".text"}}}}, "2475f9d22d47b3ad2f36b232dd1667b277ff90ac": {"ae171bd8": {"type": "FUNCTION", "size": 524, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"84": {"type": "MIPS_26", "symbol": "_Balloc", "scope": "LIBRARY"}}}}, "a61803fff94e0ae3d64f820dc948706111bd475f": {"ae171bd8": {"type": "FUNCTION", "size": 524, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"84": {"type": "MIPS_26", "symbol": "_Balloc", "scope": "LIBRARY"}}}}, "0d9aa4526560e6b24fa2446c7b5027f67952da36": {"ae171bd8": {"type": "FUNCTION", "size": 516, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"84": {"type": "MIPS_26", "symbol": "_Balloc", "scope": "LIBRARY"}}}}}, "_pow5mult": {"76f7a8b3d87df60b8466f19f51d35e39cfedd60a": {"a9157e49": {"type": "FUNCTION", "size": 252, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"48": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "60": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY", "original": ".text"}, "100": {"type": "MIPS_26", "symbol": "_i2b", "scope": "LIBRARY", "original": ".text"}, "144": {"type": "MIPS_26", "symbol": "_multiply", "scope": "LIBRARY", "original": ".text"}, "188": {"type": "MIPS_26", "symbol": "_multiply", "scope": "LIBRARY", "original": ".text"}, "204": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY", "original": ".text"}}}}, "3687b327bf8363b988c802747c9d9bcd6c41f555": {"b9206316": {"type": "FUNCTION", "size": 256, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"48": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY", "original": ".text"}, "108": {"type": "MIPS_26", "symbol": "_i2b", "scope": "LIBRARY", "original": ".text"}, "152": {"type": "MIPS_26", "symbol": "_multiply", "scope": "LIBRARY", "original": ".text"}, "188": {"type": "MIPS_26", "symbol": "_multiply", "scope": "LIBRARY", "original": ".text"}, "204": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY", "original": ".text"}}}}, "9daab6b96cc0b083a880694625a6bd6e6188e1ca": {"84f93a84": {"type": "FUNCTION", "size": 264, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "_i2b", "scope": "LIBRARY"}, "148": {"type": "MIPS_26", "symbol": "_multiply", "scope": "LIBRARY"}, "164": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "204": {"type": "MIPS_26", "symbol": "_multiply", "scope": "LIBRARY"}}}}, "72c1e560c21dff75c74a75bf0b65d246e659b608": {"273a874b": {"type": "FUNCTION", "size": 260, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "_i2b", "scope": "LIBRARY"}, "148": {"type": "MIPS_26", "symbol": "_multiply", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "204": {"type": "MIPS_26", "symbol": "_multiply", "scope": "LIBRARY"}}}}, "81f478071047dfbec454901e7b185109a7f336c2": {"273a874b": {"type": "FUNCTION", "size": 260, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_26", "symbol": "_multadd", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "_i2b", "scope": "LIBRARY"}, "148": {"type": "MIPS_26", "symbol": "_multiply", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "204": {"type": "MIPS_26", "symbol": "_multiply", "scope": "LIBRARY"}}}}}, "_lshift": {"934e9a4da185e385de09c00747fb058e2390320c": {"69ec2cfb": {"type": "FUNCTION", "size": 344, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"108": {"type": "MIPS_26", "symbol": "_Balloc", "scope": "LIBRARY", "original": ".text"}, "296": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY", "original": ".text"}}}}, "7710e58e3f8dcbd8a813affb42554be9cc43af5a": {"ce967a53": {"type": "FUNCTION", "size": 376, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"132": {"type": "MIPS_26", "symbol": "_Balloc", "scope": "LIBRARY", "original": ".text"}, "324": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY", "original": ".text"}}}}, "255e008fcacb262de7252ed2240df7e477383f38": {"65f4c107": {"type": "FUNCTION", "size": 360, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"108": {"type": "MIPS_26", "symbol)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": "_Balloc", "scope": "LIBRARY", "original": ".text"}, "312": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY", "original": ".text"}}}}, "16bcd0c04ae3b9169c32794590e1503beb6f6de3": {"8c6ccb06": {"type": "FUNCTION", "size": 340, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"104": {"type": "MIPS_26", "symbol": "_Balloc", "scope": "LIBRARY"}, "256": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}}}}, "23e101e7511f2ca3e70387469f3f9f6554674882": {"8c6ccb06": {"type": "FUNCTION", "size": 340, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"104": {"type": "MIPS_26", "symbol": "_Balloc", "scope": "LIBRARY"}, "256": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}}}}, "c2ba0c980cf0f914143e5f199826b759b0463325": {"8a60bdf8": {"type": "FUNCTION", "size": 348, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"104": {"type": "MIPS_26", "symbol": "_Balloc", "scope": "LIBRARY"}, "264": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}}}}}, "__mcmp": {"e89184847688df3d8e3e1ed07b18ee1415df0d3c": {"00000000": {"type": "FUNCTION", "size": 104, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "50a8c938b768040bcd583b0b9e66ecd18e577060": {"00000000": {"type": "FUNCTION", "size": 104, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "715aee2b9d0a4bf405d8a31c6766c28afc5175d2": {"00000000": {"type": "FUNCTION", "size": 100, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "b52a6810781b34c5e60260a6ed0e043781f3b8cd": {"00000000": {"type": "FUNCTION", "size": 100, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "c5dab718a0dedfaced70acfc5c3aaab50e14ac84": {"00000000": {"type": "FUNCTION", "size": 100, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "__mdiff": {"800f66bdee0ae595872fb23e3684c5a0a54a64c3": {"8aa6cd7a": {"type": "FUNCTION", "size": 400, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "__mcmp", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_26", "symbol": "_Balloc", "scope": "LIBRARY", "original": ".text"}, "116": {"type": "MIPS_26", "symbol": "_Balloc", "scope": "LIBRARY", "original": ".text"}}}}, "95381c69bf8e32b52a6f2e4f4e6a82b2bd3627a4": {"8aa6cd7a": {"type": "FUNCTION", "size": 400, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "__mcmp", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_26", "symbol": "_Balloc", "scope": "LIBRARY", "original": ".text"}, "116": {"type": "MIPS_26", "symbol": "_Balloc", "scope": "LIBRARY", "original": ".text"}}}}, "97da1896a1004fe6fb41bb4aeca78db19ac4e00a": {"8aa6cd7a": {"type": "FUNCTION", "size": 400, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "__mcmp", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_26", "symbol": "_Balloc", "scope": "LIBRARY", "original": ".text"}, "116": {"type": "MIPS_26", "symbol": "_Balloc", "scope": "LIBRARY", "original": ".text"}}}}, "3566924eb0fbb656f52a1f673acb371b974a5f51": {"e0afd15a": {"type": "FUNCTION", "size": 392, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "__mcmp", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "_Balloc", "scope": "LIBRARY"}, "140": {"type": "MIPS_26", "symbol": "_Balloc", "scope": "LIBRARY"}}}}, "64a5aadb2e1bf0cec1eadec64d6234a1791d9ba6": {"e0afd15a": {"type": "FUNCTION", "size": 392, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "__mcmp", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "_Balloc", "scope": "LIBRARY"}, "140": {"type": "MIPS_26", "symbol": "_Balloc", "scope": "LIBRARY"}}}}, "cd897a061cd0410a1ebb697322815a1b9e1c8e2a": {"baac0237": {"type": "FUNCTION", "size": 380, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "__mcmp", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "_Balloc", "scope": "LIBRARY"}, "132": {"type": "MIPS_26", "symbol": "_Balloc", "scope": "LIBRARY"}}}}}, "_ulp": {"b7b495b433ca0116e244f55a26d66c6b1884d2aa": {"00000000": {"type": "FUNCTION", "size": 208, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "aeec96123e49e331be66b08db91ea73da785017a": {"00000000": {"type": "FUNCTION", "size": 152, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "ba65da2124ba431b7b127ccd6e866f83ccc38a47": {"00000000": {"type": "FUNCTION", "size": 200, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "5ab3cf31ef7907de43bc56339d175ddf46e40a48": {"00000000": {"type": "FUNCTION", "size": 184, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "dab75504e1e5da2bc62f858e897a4e20f629204f": {"00000000": {"type": "FUNCTION", "size": 180, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": {}}}}, "_b2d": {"9e3980d779f616d466471c7f1e867dc9ee045e10": {"ae2cd590": {"type": "FUNCTION", "size": 408, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "_hi0bits", "scope": "LIBRARY", "original": ".text"}}}}, "1bfcd52050b794706012b43487bfae8f6530e3f2": {"ae2cd590": {"type": "FUNCTION", "size": 380, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "_hi0bits", "scope": "LIBRARY", "original": ".text"}}}}, "dea1f47ee38bec0c6f86f88147881595bc9237bd": {"ae2cd590": {"type": "FUNCTION", "size": 412, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "_hi0bits", "scope": "LIBRARY"}}}}, "5ddc03fd9799bcabd4e8bb0d7fe29f593ccc2211": {"ae2cd590": {"type": "FUNCTION", "size": 400, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "_hi0bits", "scope": "LIBRARY"}}}}, "3cb0bf6b537ae2d99b6b9a8ce4e96d2810056ea7": {"ae2cd590": {"type": "FUNCTION", "size": 396, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "_hi0bits", "scope": "LIBRARY"}}}}}, "_d2b": {"1fe539b0d89ef830d2258b6bb062295acfb2fdae": {"ba5db8c4": {"type": "FUNCTION", "size": 388, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "_Balloc", "scope": "LIBRARY", "original": ".text"}, "148": {"type": "MIPS_26", "symbol": "_lo0bits", "scope": "LIBRARY", "original": ".text"}, "252": {"type": "MIPS_26", "symbol": "_lo0bits", "scope": "LIBRARY", "original": ".text"}, "328": {"type": "MIPS_26", "symbol": "_hi0bits", "scope": "LIBRARY", "original": ".text"}}}}, "930d7226e9a53a659791fac54d62ff52332bfc67": {"8fd35286": {"type": "FUNCTION", "size": 380, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "_Balloc", "scope": "LIBRARY", "original": ".text"}, "148": {"type": "MIPS_26", "symbol": "_lo0bits", "scope": "LIBRARY", "original": ".text"}, "248": {"type": "MIPS_26", "symbol": "_lo0bits", "scope": "LIBRARY", "original": ".text"}, "320": {"type": "MIPS_26", "symbol": "_hi0bits", "scope": "LIBRARY", "original": ".text"}}}}, "b7b521d72e65c08d8406be4f4bb64e620b39fff7": {"95ceb0f2": {"type": "FUNCTION", "size": 392, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "_Balloc", "scope": "LIBRARY"}, "152": {"type": "MIPS_26", "symbol": "_lo0bits", "scope": "LIBRARY"}, "320": {"type": "MIPS_26", "symbol": "_hi0bits", "scope": "LIBRARY"}, "356": {"type": "MIPS_26", "symbol": "_lo0bits", "scope": "LIBRARY"}}}}, "a225b4457ac23747a3821a37d920ecb4e0baf90e": {"a8828752": {"type": "FUNCTION", "size": 376, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "_Balloc", "scope": "LIBRARY"}, "148": {"type": "MIPS_26", "symbol": "_lo0bits", "scope": "LIBRARY"}, "316": {"type": "MIPS_26", "symbol": "_hi0bits", "scope": "LIBRARY"}, "348": {"type": "MIPS_26", "symbol": "_lo0bits", "scope": "LIBRARY"}}}}, "e8219613658486081c9b1ba6eda4be19686b2bd2": {"b7f9fc3d": {"type": "FUNCTION", "size": 372, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "_Balloc", "scope": "LIBRARY"}, "148": {"type": "MIPS_26", "symbol": "_lo0bits", "scope": "LIBRARY"}, "312": {"type": "MIPS_26", "symbol": "_hi0bits", "scope": "LIBRARY"}, "344": {"type": "MIPS_26", "symbol": "_lo0bits", "scope": "LIBRARY"}}}}}, "_ratio": {"5c6515e147ffecf3e6a531d818696a9ab5a7fdac": {"f3d16a89": {"type": "FUNCTION", "size": 204, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "_b2d", "scope": "LIBRARY", "original": ".text"}, "44": {"type": "MIPS_26", "symbol": "_b2d", "scope": "LIBRARY", "original": ".text"}, "172": {"type": "MIPS_26", "symbol": "dpdiv"}}}}, "9d34e48ed2273bfebc37c567ed6c77dd2020d37e": {"f9cbf84e": {"type": "FUNCTION", "size": 192, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "_b2d", "scope": "LIBRARY", "original": ".text"}, "44": {"type": "MIPS_26", "symbol": "_b2d", "scope": "LIBRARY", "original": ".text"}, "160": {"type": "MIPS_26", "symbol": "dpdiv"}}}}, "2efbd40a79b48a24b384bfaee6a00656af1f6518": {"d1a1b352": {"type": "FUNCTION", "size": 196, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "_b2d", "scope": "LIBRARY"}, "44": {"type": "MIPS_26", "symbol": "_b2d", "scope": "LIBRARY"}, "144": {"type": "MIPS_26", "symbol": "dpdiv"}}}}, "5abf9a7f6b90592d293404ee2b3f46705e0e4ca7": {"c59496dc": {"type": "FUNCTION", "size": 184, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "_b2d", "scope": "LIBRARY"}, "44": {"type": "MIPS_26", "symbol": "_b2d", "scope": "LIBRARY"}, "136": {"type": "MIPS_26", "symbol": "dpdiv"}}}}, "51ad898d336e6161abcc38e697ce33747723ea37": {"cf8e041b": {"type": "FUNCTION", "size": 180, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "_b2d", "scope": "LIBRARY"}, "44": {"type": "MIPS_26", "symbol": "_b2d", "scope": "LIBRARY"}, "132": {"type": "MIPS_26", "symbol": "dpdiv"}}}}}, "_mprec_log10": {"229cbd295d8b1d62555af5)PS2SDB", 8192}, + std::string_view{R"PS2SDB(3b0828cabc9f9799a2": {"0030c75c": {"type": "FUNCTION", "size": 112, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_26", "symbol": "dpmul"}}}}, "cf06eb72f0dddb36b36627e668c31a0e913cec50": {"88f6356d": {"type": "FUNCTION", "size": 108, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"32": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_26", "symbol": "dpmul"}}}}, "d9e454dd8d3e52b6ff808adea17015d3616442b3": {"2c1a6361": {"type": "FUNCTION", "size": 116, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_tens"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tens"}, "84": {"type": "MIPS_26", "symbol": "dpmul"}}}}, "f15645b3377bda64ee0d580a3dcd0b3f5018758a": {"2c1a6361": {"type": "FUNCTION", "size": 108, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_tens"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tens"}, "84": {"type": "MIPS_26", "symbol": "dpmul"}}}}, "6f3d31063265de8bcb2fff8b11acd272794199de": {"2600f1a6": {"type": "FUNCTION", "size": 112, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_tens"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tens"}, "88": {"type": "MIPS_26", "symbol": "dpmul"}}}}}, "_printf_r": {"6653a6f2ae84b65d5deead2c0f01afc57722f13f": {"781983ac": {"type": "FUNCTION", "size": 92, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"72": {"type": "MIPS_26", "symbol": "_vfprintf_r", "scope": "LIBRARY"}}}}, "00fada01200533c25eac2bd82f9c6000733dedef": {"0bfcd4a2": {"type": "FUNCTION", "size": 60, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "_vfprintf_r", "scope": "LIBRARY"}}}}, "bd539170d4e8d377fc8d03296d8e874d528893da": {"1cad4ddf": {"type": "FUNCTION", "size": 76, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "_vfprintf_r", "scope": "LIBRARY"}}}}, "75013d96c50903af86e60087d413fe53e284c1a3": {"0bfcd4a2": {"type": "FUNCTION", "size": 60, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "_vfprintf_r", "scope": "LIBRARY"}}}}, "db3af09384837706a7dc19560b50c82eef4ced21": {"78f4f36d": {"type": "FUNCTION", "size": 64, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "_vfprintf_r", "scope": "LIBRARY"}}}}, "b5f1a029d2e557e68b845cf2e95ef92818053416": {"0bfcd4a2": {"type": "FUNCTION", "size": 60, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "_vfprintf_r", "scope": "LIBRARY"}}}}, "6de9c3652a2c259707e499d92c73079b79aa98cf": {"0bfcd4a2": {"type": "FUNCTION", "size": 60, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "_vfprintf_r", "scope": "LIBRARY"}}}}}, "printf": {"9a45c22dbc54e205b4d3a95431c633ffb5930601": {"d3f933b4": {"type": "FUNCTION", "size": 112, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "92": {"type": "MIPS_26", "symbol": "vfprintf", "scope": "LIBRARY"}}}}, "d8af0211ad2549ec68e86344034bf87c88aa78b6": {"142b6b0f": {"type": "FUNCTION", "size": 80, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "60": {"type": "MIPS_26", "symbol": "vfprintf", "scope": "LIBRARY"}}}}, "0849b733ddcc1fba6949a3c202922c5c0d7c1f80": {"1f1954a0": {"type": "FUNCTION", "size": 96, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "76": {"type": "MIPS_26", "symbol": "vfprintf", "scope": "LIBRARY"}}}}, "2a0cece61694105ae96143c63943db1772674cad": {"142b6b0f": {"type": "FUNCTION", "size": 80, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "60": {"type": "MIPS_26", "symbol": "vfprintf", "scope": "LIBRARY"}}}}, "dbf540fb376449a0fbe545979a09adb64854b61e": {"a8c6c27b": {"type": "FUNCTION", "size": 76, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "56": {"type": "MIPS)PS2SDB", 8192}, + std::string_view{R"PS2SDB(_26", "symbol": "vfprintf", "scope": "LIBRARY"}}}}, "6af87d6ecf8f925afc03c963dbfb46cbb8c6517a": {"0d87e414": {"type": "FUNCTION", "size": 76, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "56": {"type": "MIPS_26", "symbol": "vfprintf", "scope": "LIBRARY"}}}}, "8e15cef2b87a6b98b8a7091abea92082c23715a3": {"0d87e414": {"type": "FUNCTION", "size": 76, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "56": {"type": "MIPS_26", "symbol": "vfprintf", "scope": "LIBRARY"}}}}, "01d6f9850d975f4dd7b6310e5585cb96b7a43318": {"142b6b0f": {"type": "FUNCTION", "size": 80, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "60": {"type": "MIPS_26", "symbol": "vfprintf", "scope": "LIBRARY"}}}}}, "_read_r": {"045e7191ae6ac07db3d07fa348435e17db6a4cad": {"9497e3d8": {"type": "FUNCTION", "size": 96, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "errno"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": "errno"}, "40": {"type": "MIPS_26", "symbol": "read"}}}}, "592a961e4d6502532bc9fdade83713b82c169e7f": {"a004c33a": {"type": "FUNCTION", "size": 96, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": "errno"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "errno"}, "36": {"type": "MIPS_26", "symbol": "read"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": "errno"}}}}, "0a75123c49b9d9adacda8f372b41e33d2e8825fe": {"c2a42fe8": {"type": "FUNCTION", "size": 96, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": "errno"}, "40": {"type": "MIPS_26", "symbol": "read"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "errno"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": "errno"}}}}, "20be149b757aa6c350beb0b12e04fe99c61c45e5": {"ccfd7b2d": {"type": "FUNCTION", "size": 92, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": "errno"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "errno"}, "36": {"type": "MIPS_26", "symbol": "read"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": "errno"}}}}, "1c0010340b2b9a0061fe74ba1c4333c2d013708a": {"ccfd7b2d": {"type": "FUNCTION", "size": 92, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": "errno"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "errno"}, "36": {"type": "MIPS_26", "symbol": "read"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": "errno"}}}}}, "_realloc_r": {"075d61d7dd054fc11af70a9fc97186fbd88ea948": {"6cff753e": {"type": "FUNCTION", "size": 1440, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"104": {"type": "MIPS_26", "symbol": "_malloc_r", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "__malloc_lock", "scope": "LIBRARY"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_av_"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "320": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}, "428": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_av_"}, "432": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "652": {"type": "MIPS_26", "symbol": "memcpy", "scope": "LIBRARY"}, "672": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_av_"}, "680": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "976": {"type": "MIPS_26", "symbol": "memcpy", "scope": "LIBRARY"}, "996": {"type": "MIPS_26", "symbol": "_malloc_r", "scope": "LIBRARY"}, "1016": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}, "1248": {"type": "MIPS_26", "symbol": "memcpy", "scope": "LIBRARY"}, "1260": {"type": "MIPS_26", "symbol": "_free_r", "scope": "LIBRARY"}, "1336": {"type": "MIPS_26", "symbol": "_free_r", "scope": "LIBRARY"}, "1380": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}}}}, "f0153f299256ea1738d25c81298454926452046b": {"61d7d083": {"type": "FUNCTION", "size": 1404, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "_malloc_r", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "__malloc_lock", "scope": "LIBRARY"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_av_"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "288": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}, "392": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "616": {"type": "MIPS_26", "symbol": "memcpy", "scope": "LIBRARY"}, "636": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "936": {"type": "MIPS_26", "symbol": "memcpy", "scope": "LIBRARY"}, "956": {"type": "MIPS_26", "symbol": "_malloc_r", "scope": "LIBRARY"}, "976": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}, "1200": {"type": "MIPS_26", "symbol": "memcpy", "scope": "LIBRARY"}, "1212": {"type": "MIPS_26", "symbol": "_free_r", "scope": "LIBRARY"}, "1224": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}, "1300": {"type": "MIPS_26", "symbol": "_free_r", "scope": "LIBRARY"}, "1344": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}}}}, "bd05f0ebbaf3929f17a4d5c21473703b06d28fa9": {"93526cd2": {"type": "FUNCTION", "size": 1392, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.4", "2.2.2", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.5", "2.5.7", "2.7.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "_malloc_r", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "__malloc_lock", "scope": "LIBRARY"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_av_"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "280": {"type": "MIPS_26",)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "symbol": "__malloc_unlock", "scope": "LIBRARY"}, "388": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_av_"}, "392": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "608": {"type": "MIPS_26", "symbol": "memcpy", "scope": "LIBRARY"}, "628": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_av_"}, "636": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "932": {"type": "MIPS_26", "symbol": "memcpy", "scope": "LIBRARY"}, "952": {"type": "MIPS_26", "symbol": "_malloc_r", "scope": "LIBRARY"}, "972": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}, "1200": {"type": "MIPS_26", "symbol": "memcpy", "scope": "LIBRARY"}, "1212": {"type": "MIPS_26", "symbol": "_free_r", "scope": "LIBRARY"}, "1288": {"type": "MIPS_26", "symbol": "_free_r", "scope": "LIBRARY"}, "1332": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}}}}, "512eabb4e24f61fbad1969a051c48033e8cfefd9": {"63225b99": {"type": "FUNCTION", "size": 1428, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"104": {"type": "MIPS_26", "symbol": "_malloc_r", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "__malloc_lock", "scope": "LIBRARY"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_av_"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "288": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}, "388": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_av_"}, "392": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "620": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_av_"}, "628": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "648": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}, "668": {"type": "MIPS_26", "symbol": "memcpy", "scope": "LIBRARY"}, "944": {"type": "MIPS_26", "symbol": "_free_r", "scope": "LIBRARY"}, "952": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}, "1000": {"type": "MIPS_26", "symbol": "memcpy", "scope": "LIBRARY"}, "1020": {"type": "MIPS_26", "symbol": "_malloc_r", "scope": "LIBRARY"}, "1036": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}, "1256": {"type": "MIPS_26", "symbol": "_free_r", "scope": "LIBRARY"}, "1276": {"type": "MIPS_26", "symbol": "memcpy", "scope": "LIBRARY"}}}}}, "lflush": {"7b030106354aafd5eb5a6ccdbf95a206bbddbfb7": {"5ae3271d": {"type": "FUNCTION", "size": 52, "library": "libc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "fflush", "scope": "LIBRARY"}}}}, "7ba17f652620d1a8770717ffc05543c774ba24f8": {"55fdf19e": {"type": "FUNCTION", "size": 28, "library": "libc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.2", "2.1.0", "2.1.4", "2.2.2", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.5", "2.5.7", "2.7.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "fflush", "scope": "LIBRARY"}}}}, "a214b7dd9a26a5ff8fc0010981803e61c5fbe670": {"5ae3271d": {"type": "FUNCTION", "size": 48, "library": "libc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "fflush", "scope": "LIBRARY"}}}}}, "__srefill": {"c5f63c3cbfb512314dd2b09b301975cbce1c5aa2": {"06325cda": {"type": "FUNCTION", "size": 380, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "56": {"type": "MIPS_26", "symbol": "__sinit", "scope": "LIBRARY"}, "120": {"type": "MIPS_26", "symbol": "fflush", "scope": "LIBRARY"}, "192": {"type": "MIPS_26", "symbol": "_free_r", "scope": "LIBRARY"}, "244": {"type": "MIPS_26", "symbol": "__smakebuf", "scope": "LIBRARY"}, "264": {"type": "MIPS_HI16", "symbol": "lflush", "original": ".text"}, "272": {"type": "MIPS_26", "symbol": "_fwalk", "scope": "LIBRARY"}, "276": {"type": "MIPS_LO16", "symbol": "lflush", "original": ".text"}}}}, "8ddbc0e88176c0fdab249b55a6b9a585e4b26461": {"8d93fd4e": {"type": "FUNCTION", "size": 380, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "60": {"type": "MIPS_26", "symbol": "__sinit", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "fflush", "scope": "LIBRARY"}, "192": {"type": "MIPS_26", "symbol": "_free_r", "scope": "LIBRARY"}, "244": {"type": "MIPS_26", "symbol": "__smakebuf", "scope": "LIBRARY"}, "264": {"type": "MIPS_HI16", "symbol": "lflush", "original": ".text"}, "272": {"type": "MIPS_26", "symbol": "_fwalk", "scope": "LIBRARY"}, "276": {"type": "MIPS_LO16", "symbol": "lflush", "original": ".text"}}}}, "0163531c0a1f44196d6ea296c4840f6a5cdf1c5d": {"b61169da": {"type": "FUNCTION", "size": 376, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.1.0", "2.1.4", "2.2.2", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.5", "2.5.7", "2.7.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "56": {"type": "MIPS_26", "symbol": "__sinit", "scope": "LIBRARY"}, "120": {"type": "MIPS_26", "symbol": "fflush", "scope": "LIBRARY"}, "188": {"type": "MIPS_26", "symbol": "_free_r", "scope": "LIBRARY"}, "240": {"type": "MIPS_26", "symbol": "__smakebuf", "scope": "LIBRARY"}, "260": {"type": "MIPS_HI16", "symbol": "lflush", "original": ".text"}, "268": {"type": "MIPS_26", "symbol": "_fwalk", "scope": "LIBRARY"}, "272": {"type": "MIPS_LO16", "symbol": "lflush", "original": ".text"}}}}, "380446e2dee3ce52ccd1eab6d11d6b90ecc7a796": {"7e562bc3": {"type": "FUNCTION", "size": 364, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "48": {"type": "MIPS_26", "symbol": "__sinit", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "fflush", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "__smakebuf", "scope": "LIBRARY"}, "188": {"type": "MIPS_HI16", "symbol": "lflush", "original": ".text"}, "196": {"type": "MIPS_26", "symbol": "_fwalk", "scope": "LIBRARY"}, "200": {"type": "MIPS_LO16", "symbol": "lflush", "original": ".text"}, "324": {"type": "MIPS_26", "symbol": "_free_r", "scope": "LIBRARY"}}}}}, "_sbrk_r": {"8a66388cde9ed22a05bf7848804db0132a163279": {"cbe38ecf": {"type": "FUNCTION", "size": 88, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "errno"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": "errno"}, "32": {"type": "MIPS_26", "symbol": "sbrk"}}}}, "612777cf773)PS2SDB", 8192}, + std::string_view{R"PS2SDB(665d43a379474b99024a687c23972": {"17f70614": {"type": "FUNCTION", "size": 92, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": "errno"}, "28": {"type": "MIPS_26", "symbol": "sbrk"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "errno"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": "errno"}}}}, "a46f560bfacc568927917599f830d50354e40ef6": {"35ac18e7": {"type": "FUNCTION", "size": 80, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": "errno"}, "28": {"type": "MIPS_26", "symbol": "sbrk"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "errno"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": "errno"}}}}, "c83d5127e1a99f2ba00f20b30d67d3c571e5853d": {"7da5f70a": {"type": "FUNCTION", "size": 80, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": "errno"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "errno"}, "28": {"type": "MIPS_26", "symbol": "sbrk"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": "errno"}}}}, "c9a72fa87c3a2538421fb97e45b89319d7fec6a4": {"7da5f70a": {"type": "FUNCTION", "size": 80, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": "errno"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "errno"}, "28": {"type": "MIPS_26", "symbol": "sbrk"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": "errno"}}}}}, "_sprintf_r": {"97aa7d2c0996e2a86d10765dddf397ce57ac8448": {"9ff4be23": {"type": "FUNCTION", "size": 136, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"108": {"type": "MIPS_26", "symbol": "vfprintf", "scope": "LIBRARY"}}}}, "3d22e79d4456d5972e17cc3a51ac0d6187f08ac4": {"5290c6fb": {"type": "FUNCTION", "size": 104, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"76": {"type": "MIPS_26", "symbol": "vfprintf", "scope": "LIBRARY"}}}}, "0a7d03e006fc82b15b84af5e69db2d8f0f2200da": {"3422fa97": {"type": "FUNCTION", "size": 120, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"92": {"type": "MIPS_26", "symbol": "vfprintf", "scope": "LIBRARY"}}}}, "cc1167d8923f2c1ff30d70f3c796cd0255f2e96c": {"5290c6fb": {"type": "FUNCTION", "size": 104, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"76": {"type": "MIPS_26", "symbol": "vfprintf", "scope": "LIBRARY"}}}}, "5fe40912e7224ec5c8c0815437fc6722f9b5251f": {"077be4a1": {"type": "FUNCTION", "size": 112, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"84": {"type": "MIPS_26", "symbol": "vfprintf", "scope": "LIBRARY"}}}}, "aa6c26b7608abce4d8ecf40e16fe3718a1dbac19": {"1ed76bba": {"type": "FUNCTION", "size": 108, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"80": {"type": "MIPS_26", "symbol": "vfprintf", "scope": "LIBRARY"}}}}, "c648a4a287f995665daf9aaac2926fb2212ea71b": {"1ed76bba": {"type": "FUNCTION", "size": 108, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"80": {"type": "MIPS_26", "symbol": "vfprintf", "scope": "LIBRARY"}}}}, "be8d1a7f9a4f14ba11bf406e75a9f8cc4e64278d": {"5290c6fb": {"type": "FUNCTION", "size": 104, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"76": {"type": "MIPS_26", "symbol": "vfprintf", "scope": "LIBRARY"}}}}}, "sprintf": {"671644dd5685d41de8616e26531b8c5972972558": {"4dd5b9f6": {"type": "FUNCTION", "size": 144, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "116": {"type": "MIPS_26", "symbol": "vfprintf", "scope": "LIBRARY"}}}}, "16fe70c105028548d361e29f4547ed954cc9c5bc": {"80b1c12e": {"type": "FUNCTION", "size": 112, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "84": {"type": "MIPS_26", "symbol": "vfprintf", "scope": "LIBRARY"}}}}, "b80a5222fc352037cc25a169e416b77bfb0cf55f": {"2b67859a": {"type": "FUNCTION", "size": 128, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "100": {"type": "MIPS_26", "symbol": "vfprintf", "scope": "LIBRARY"}}}}, "f5be632473b5015820e7d58a6dbce450468c08d0": {"80b1c12e": {"type": "FUNCTION", "size": 112, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "84": {"type": "MIPS_26", "symbol": "vfprintf", "scope": "LIBRARY"}}}}, "d3c7d0d52c8a1f81a5852f8436f59bd3bc3ff16a": {"247a4aa1": {"type": "FUNCTION", "size": 112, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "84": {"type": "MIPS_26", "symbol": "vfprintf", "scope": "LIBRARY"}}}}, "b4b7cbe9427ecb864cefe86cfa3d621ada94995e": {)PS2SDB", 8192}, + std::string_view{R"PS2SDB("7153671d": {"type": "FUNCTION", "size": 112, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "84": {"type": "MIPS_26", "symbol": "vfprintf", "scope": "LIBRARY"}}}}, "0c95bd6a66406e132f53dd6feb4b2da5f6297c5b": {"7153671d": {"type": "FUNCTION", "size": 112, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "84": {"type": "MIPS_26", "symbol": "vfprintf", "scope": "LIBRARY"}}}}, "4574a0d39d9d4a6a50ad902d6dca33517f7e06f3": {"80b1c12e": {"type": "FUNCTION", "size": 112, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "84": {"type": "MIPS_26", "symbol": "vfprintf", "scope": "LIBRARY"}}}}}, "eofread": {"0a5385cf4a659d302a43046ea0269e2b17a3ef1d": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.2", "2.1.0", "2.1.4", "2.2.2", "2.3.0", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sscanf": {"73b35acc3d83da08106511307cfe8434fbef43bb": {"46f8ad49": {"type": "FUNCTION", "size": 168, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"88": {"type": "MIPS_26", "symbol": "strlen", "scope": "LIBRARY"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "100": {"type": "MIPS_HI16", "symbol": "eofread", "original": ".text"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "112": {"type": "MIPS_LO16", "symbol": "eofread", "original": ".text"}, "144": {"type": "MIPS_26", "symbol": "__svfscanf", "scope": "LIBRARY"}}}}, "df94398d9422014219da89961bf1d72826587a5f": {"5a7cd7e4": {"type": "FUNCTION", "size": 152, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"72": {"type": "MIPS_26", "symbol": "strlen", "scope": "LIBRARY"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "84": {"type": "MIPS_HI16", "symbol": "eofread", "original": ".text"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "92": {"type": "MIPS_LO16", "symbol": "eofread", "original": ".text"}, "128": {"type": "MIPS_26", "symbol": "__svfscanf", "scope": "LIBRARY"}}}}, "5b239c8b9aee600b7325b4e880677796b72af8de": {"33d2cb8e": {"type": "FUNCTION", "size": 136, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.1.0", "2.1.4", "2.2.2", "2.3.0", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.5", "2.5.7", "2.7.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "strlen", "scope": "LIBRARY"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "68": {"type": "MIPS_HI16", "symbol": "eofread", "original": ".text"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "76": {"type": "MIPS_LO16", "symbol": "eofread", "original": ".text"}, "112": {"type": "MIPS_26", "symbol": "__svfscanf", "scope": "LIBRARY"}}}}, "dfe224fb01ad02145b4b6c815b72d957813bf42f": {"4ca8e1f8": {"type": "FUNCTION", "size": 136, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "strlen", "scope": "LIBRARY"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "68": {"type": "MIPS_HI16", "symbol": "eofread", "original": ".text"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "80": {"type": "MIPS_LO16", "symbol": "eofread", "original": ".text"}, "112": {"type": "MIPS_26", "symbol": "__svfscanf", "scope": "LIBRARY"}}}}, "c29e0f618daa42d7b3c354bfaa578969024d2350": {"557ec5b9": {"type": "FUNCTION", "size": 136, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "strlen", "scope": "LIBRARY"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "76": {"type": "MIPS_HI16", "symbol": "eofread", "original": ".text"}, "84": {"type": "MIPS_LO16", "symbol": "eofread", "original": ".text"}, "112": {"type": "MIPS_26", "symbol": "__svfscanf_r", "scope": "LIBRARY"}}}}}, "__sread": {"c904e46e43e68e7e4bddf8c093cc2b706368fe1e": {"f1ec6717": {"type": "FUNCTION", "size": 100, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "_read_r", "scope": "LIBRARY"}}}}, "16be9fdcaded7809a9ec8f96b82a36194a2bc2c6": {"6c2f33c3": {"type": "FUNCTION", "size": 100, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "_read_r", "scope": "LIBRARY"}}}}, "fb39d231cedbd985715eae2be0a6e992f9e06690": {"6c2f33c3": {"type": "FUNCTION", "size": 100, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "_read_r", "scope": "LIBRARY"}}}}, "1bd5d107c1909f63a55019902ef485e2c9b518bc": {"6c2f33c3": {"type": "FUNCTION", "size": 100, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "_read_r", "scope": "LIBRARY"}}}}, "72badfd5190b23c506bef580af0f61c1b07416bc": {"6c2f33c3": {"type": "FUNCTION", "size": 96, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "_read_r", "scope": "LIBRARY"}}}}}, "__swrite": {"b581a2918c0006e5cca12ef58fe50e3994f073b9": {"79b3e4db": {"type": "FUNCTION", "size": 128, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "_lseek_r", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "_write_r", "scope": "LIBRARY"}}}}, "83aa2777617)PS2SDB", 8192}, + std::string_view{R"PS2SDB(020fc15086ac691616513ebdfa10c": {"79b3e4db": {"type": "FUNCTION", "size": 128, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "_lseek_r", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "_write_r", "scope": "LIBRARY"}}}}, "df67b07d26c1d7ac2e163d00e684c0f5049b136f": {"79b3e4db": {"type": "FUNCTION", "size": 128, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "_lseek_r", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "_write_r", "scope": "LIBRARY"}}}}, "7bcfd7766e123f60593cdb20cea59fd4ddbc0fbf": {"79b3e4db": {"type": "FUNCTION", "size": 128, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "_lseek_r", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "_write_r", "scope": "LIBRARY"}}}}, "b3898cc81299387cae247dc883c0f28320999016": {"79b3e4db": {"type": "FUNCTION", "size": 128, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "_lseek_r", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "_write_r", "scope": "LIBRARY"}}}}}, "__sseek": {"f97d8f6d0231d2a3fff8d6c8a5257224d35ecf4a": {"4331462e": {"type": "FUNCTION", "size": 100, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "_lseek_r", "scope": "LIBRARY"}}}}, "483d0652b33b90fbc96a1a5866be0f44568ee685": {"c21293b7": {"type": "FUNCTION", "size": 104, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "_lseek_r", "scope": "LIBRARY"}}}}, "cf53947862735b3b844c429ddde6bf24254e473a": {"c21293b7": {"type": "FUNCTION", "size": 104, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "_lseek_r", "scope": "LIBRARY"}}}}, "117efc3fb8046a1486e96c4dd92aebcc0edf1770": {"c21293b7": {"type": "FUNCTION", "size": 108, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "_lseek_r", "scope": "LIBRARY"}}}}, "9633e4c6ede6ff444741a54e48c1f104a18ccd62": {"c21293b7": {"type": "FUNCTION", "size": 100, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "_lseek_r", "scope": "LIBRARY"}}}}}, "__sclose": {"c8da0af83106bd7e658ad384491b58d1b4adf758": {"41fca557": {"type": "FUNCTION", "size": 28, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "_close_r", "scope": "LIBRARY"}}}}, "8b6fe9aff1f135c351d80686ad2420e354deaa0c": {"1417870d": {"type": "FUNCTION", "size": 32, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "_close_r", "scope": "LIBRARY"}}}}}, "strcat": {"a9f8fc5d20cb1d4acdb94d203ff4dfc5baa0602d": {"3eac6ec9": {"type": "FUNCTION", "size": 300, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"272": {"type": "MIPS_26", "symbol": "strcpy", "scope": "LIBRARY"}}}}, "b665e69a335bbaed8129f564c9afe33262c5f78c": {"2a8558cd": {"type": "FUNCTION", "size": 316, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"288": {"type": "MIPS_26", "symbol": "strcpy", "scope": "LIBRARY"}}}}}, "strcmp": {"2e820dc5ff48fa4533e147cd93c4b2c646cb6a55": {"00000000": {"type": "FUNCTION", "size": 324, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "strcpy": {"a67ee1d46b72d84bde3a83b54517a45c76939e12": {"00000000": {"type": "FUNCTION", "size": 276, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "f09c54cbcbc52798a46969da523e6e2cddd3debb": {"00000000": {"type": "FUNCTION", "size": 276, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "strlen": {"9e51fc34ec6c9d17f1ddbc65198e7e829ed4936f": {"00000000": {"type": "FUNCTION", "size": 312, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0)PS2SDB", 8192}, + std::string_view{R"PS2SDB(", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "b13f17db7d444ddd0ea519e7acf38c69af7b9cca": {"00000000": {"type": "FUNCTION", "size": 48, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "strncpy": {"c4026243f56a0c2fe72e325c2a2d609a6e425a49": {"00000000": {"type": "FUNCTION", "size": 444, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "b514164419f027c10a15a9c96bfb489b81db2fd6": {"00000000": {"type": "FUNCTION", "size": 444, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "_strtod_r": {"c36c35a63177b4b75e134f64fc48ebe0968ef356": {"41e97e10": {"type": "FUNCTION", "size": 3860, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"92": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1064": {"type": "MIPS_26", "symbol": "litodp"}, "1096": {"type": "MIPS_26", "symbol": "dpadd"}, "1132": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_tens"}, "1140": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tens"}, "1144": {"type": "MIPS_26", "symbol": "dpmul"}, "1164": {"type": "MIPS_26", "symbol": "__floatdidf"}, "1188": {"type": "MIPS_26", "symbol": "__floatdidf"}, "1204": {"type": "MIPS_26", "symbol": "dpadd"}, "1220": {"type": "MIPS_26", "symbol": "dpadd"}, "1264": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_tens"}, "1272": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tens"}, "1276": {"type": "MIPS_26", "symbol": "dpmul"}, "1316": {"type": "MIPS_HI16", "symbol": "", "original": "__infinity"}, "1324": {"type": "MIPS_LO16", "symbol": "", "original": "__infinity"}, "1368": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_bigtens"}, "1372": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_bigtens"}, "1396": {"type": "MIPS_26", "symbol": "dpmul"}, "1428": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_bigtens"}, "1432": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_bigtens"}, "1436": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_bigtens"}, "1480": {"type": "MIPS_26", "symbol": "dpmul"}, "1612": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_tens"}, "1620": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tens"}, "1624": {"type": "MIPS_26", "symbol": "dpdiv"}, "1676": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_tinytens"}, "1680": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tinytens"}, "1708": {"type": "MIPS_26", "symbol": "dpmul"}, "1740": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tinytens"}, "1744": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_tinytens"}, "1748": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tinytens"}, "1780": {"type": "MIPS_26", "symbol": "dpmul"}, "1800": {"type": "MIPS_26", "symbol": "dpcmp"}, "1824": {"type": "MIPS_26", "symbol": "dpadd"}, "1840": {"type": "MIPS_26", "symbol": "dpmul"}, "1856": {"type": "MIPS_26", "symbol": "dpcmp"}, "1908": {"type": "MIPS_26", "symbol": "_ulp", "scope": "LIBRARY"}, "1924": {"type": "MIPS_26", "symbol": "dpadd"}, "1960": {"type": "MIPS_26", "symbol": "_s2b", "scope": "LIBRARY"}, "1988": {"type": "MIPS_26", "symbol": "_lshift", "scope": "LIBRARY"}, "2004": {"type": "MIPS_26", "symbol": "__mcmp", "scope": "LIBRARY"}, "2240": {"type": "MIPS_26", "symbol": "_ulp", "scope": "LIBRARY"}, "2256": {"type": "MIPS_26", "symbol": "dpsub"}, "2276": {"type": "MIPS_26", "symbol": "dpcmp"}, "2304": {"type": "MIPS_26", "symbol": "_ratio", "scope": "LIBRARY"}, "2328": {"type": "MIPS_26", "symbol": "dpcmp"}, "2444": {"type": "MIPS_26", "symbol": "dpcmp"}, "2492": {"type": "MIPS_26", "symbol": "dpmul"}, "2512": {"type": "MIPS_26", "symbol": "dpsub"}, "2544": {"type": "MIPS_26", "symbol": "dpmul"}, "2576": {"type": "MIPS_26", "symbol": "dpsub"}, "2596": {"type": "MIPS_26", "symbol": "dpadd"}, "2668": {"type": "MIPS_26", "symbol": "_ulp", "scope": "LIBRARY"}, "2684": {"type": "MIPS_26", "symbol": "dpmul"}, "2700": {"type": "MIPS_26", "symbol": "dpadd"}, "2856": {"type": "MIPS_26", "symbol": "dpcmp"}, "2884": {"type": "MIPS_26", "symbol": "dpadd"}, "2896": {"type": "MIPS_26", "symbol": "dptoli"}, "2904": {"type": "MIPS_26", "symbol": "litodp"}, "2932": {"type": "MIPS_26", "symbol": "dpsub"}, "2948": {"type": "MIPS_26", "symbol": "_ulp", "scope": "LIBRARY"}, "2964": {"type": "MIPS_26", "symbol": "dpmul"}, "2980": {"type": "MIPS_26", "symbol": "dpadd"}, "3028": {"type": "MIPS_26", "symbol": "__fixdfdi"}, "3036": {"type": "MIPS_26", "symbol": "__floatdidf"}, "3052": {"type": "MIPS_26", "symbol": "dpsub"}, "3092": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3096": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3104": {"type": "MIPS_26", "symbol": "dpcmp"}, "3120": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3124": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3132": {"type": "MIPS_26", "symbol": "dpcmp"}, "3160": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3164": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3172": {"type": "MIPS_26", "symbol": "dpcmp"}, "3192": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "3204": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "3216": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "3228": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "3244": {"type": "MIPS_26", "symbol": "_Balloc", "scope": "LIBRARY"}, "3276": {"type": "MIPS_26", "symbol": "memcpy", "scope": "LIBRARY"}, "3296": {"type": "MIPS_26", "symbol": "_d2b", "scope": "LIBRARY"}, "3312": {"type": "MIPS_26", "symbol": "_i2b", "scope": "LIBRARY"}, "3480": {"type": "MIPS_26", "symbol": "_pow5mult", "scope": "LIBRARY"}, "3500": {"type": "MIPS_26", "symbol": "_multiply", "scope": "LIBRARY"}, "3516": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "3540": {"type": "MIPS_26", "symbol": "_lshift", "scope": "LIBRARY"}, "3564": {"type": "MIPS_26", "symbol": "_pow5mult", "scope": "LIBRARY"}, "3588": {"type": "MIPS_26", "symbol": "_lshift", "scope": "LIBRARY"}, "3616": {"type": "MIPS_26", "symbol": "_lshift", "scope": "LIBRARY"}, "3636": {"type": "MIPS_26", "symbol": "__mdiff", "scope": "LIBRARY"}, "3660": {"type": "MIPS_26", "symbol": "__mcmp", "scope": "LIBRARY"}, "3712": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "3724": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "3736": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "3748": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "3760": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "3804": {"type": "MIPS_26", "symbol": "dpsub"}}}}, "b98431dae3f60809e2033b4476982d3402553bcf": {"90a2ce8f": {"type": "FUNCTION", "size": 3800, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( [], "sdk": ["1.5.0", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"84": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1024": {"type": "MIPS_26", "symbol": "litodp"}, "1056": {"type": "MIPS_26", "symbol": "dpadd"}, "1080": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_tens"}, "1088": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tens"}, "1104": {"type": "MIPS_26", "symbol": "dpmul"}, "1120": {"type": "MIPS_26", "symbol": "__floatdidf"}, "1144": {"type": "MIPS_26", "symbol": "__floatdidf"}, "1156": {"type": "MIPS_26", "symbol": "dpadd"}, "1168": {"type": "MIPS_26", "symbol": "dpadd"}, "1220": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_tens"}, "1224": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tens"}, "1280": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_tens"}, "1288": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tens"}, "1308": {"type": "MIPS_26", "symbol": "dpmul"}, "1340": {"type": "MIPS_26", "symbol": "dpmul"}, "1380": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_tens"}, "1384": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tens"}, "1400": {"type": "MIPS_26", "symbol": "dpdiv"}, "1436": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_tens"}, "1444": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tens"}, "1456": {"type": "MIPS_26", "symbol": "dpmul"}, "1496": {"type": "MIPS_HI16", "symbol": "", "original": "__infinity"}, "1512": {"type": "MIPS_LO16", "symbol": "", "original": "__infinity"}, "1540": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_bigtens"}, "1544": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_bigtens"}, "1568": {"type": "MIPS_26", "symbol": "dpmul"}, "1600": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_bigtens"}, "1644": {"type": "MIPS_26", "symbol": "dpmul"}, "1784": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_tens"}, "1792": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tens"}, "1804": {"type": "MIPS_26", "symbol": "dpdiv"}, "1852": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_tinytens"}, "1856": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tinytens"}, "1880": {"type": "MIPS_26", "symbol": "dpmul"}, "1912": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tinytens"}, "1940": {"type": "MIPS_26", "symbol": "dpmul"}, "1956": {"type": "MIPS_26", "symbol": "dpcmp"}, "1976": {"type": "MIPS_26", "symbol": "dpadd"}, "1988": {"type": "MIPS_26", "symbol": "dpmul"}, "2004": {"type": "MIPS_26", "symbol": "dpcmp"}, "2048": {"type": "MIPS_26", "symbol": "_ulp", "scope": "LIBRARY"}, "2060": {"type": "MIPS_26", "symbol": "dpadd"}, "2092": {"type": "MIPS_26", "symbol": "_s2b", "scope": "LIBRARY"}, "2140": {"type": "MIPS_26", "symbol": "_lshift", "scope": "LIBRARY"}, "2156": {"type": "MIPS_26", "symbol": "__mcmp", "scope": "LIBRARY"}, "2352": {"type": "MIPS_26", "symbol": "_ulp", "scope": "LIBRARY"}, "2364": {"type": "MIPS_26", "symbol": "dpsub"}, "2380": {"type": "MIPS_26", "symbol": "dpcmp"}, "2404": {"type": "MIPS_26", "symbol": "_ratio", "scope": "LIBRARY"}, "2424": {"type": "MIPS_26", "symbol": "dpcmp"}, "2524": {"type": "MIPS_26", "symbol": "dpcmp"}, "2564": {"type": "MIPS_26", "symbol": "dpmul"}, "2588": {"type": "MIPS_26", "symbol": "dpmul"}, "2612": {"type": "MIPS_26", "symbol": "dpsub"}, "2688": {"type": "MIPS_26", "symbol": "_ulp", "scope": "LIBRARY"}, "2700": {"type": "MIPS_26", "symbol": "dpmul"}, "2712": {"type": "MIPS_26", "symbol": "dpadd"}, "2864": {"type": "MIPS_26", "symbol": "dpcmp"}, "2888": {"type": "MIPS_26", "symbol": "dpadd"}, "2896": {"type": "MIPS_26", "symbol": "dptoli"}, "2904": {"type": "MIPS_26", "symbol": "litodp"}, "2924": {"type": "MIPS_26", "symbol": "dpsub"}, "2936": {"type": "MIPS_26", "symbol": "_ulp", "scope": "LIBRARY"}, "2948": {"type": "MIPS_26", "symbol": "dpmul"}, "2960": {"type": "MIPS_26", "symbol": "dpadd"}, "3004": {"type": "MIPS_26", "symbol": "__fixdfdi"}, "3012": {"type": "MIPS_26", "symbol": "__floatdidf"}, "3024": {"type": "MIPS_26", "symbol": "dpsub"}, "3060": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3064": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3068": {"type": "MIPS_26", "symbol": "dpcmp"}, "3084": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3088": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3092": {"type": "MIPS_26", "symbol": "dpcmp"}, "3116": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3120": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3124": {"type": "MIPS_26", "symbol": "dpcmp"}, "3144": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "3156": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "3168": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "3180": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "3196": {"type": "MIPS_26", "symbol": "_Balloc", "scope": "LIBRARY"}, "3228": {"type": "MIPS_26", "symbol": "memcpy", "scope": "LIBRARY"}, "3248": {"type": "MIPS_26", "symbol": "_d2b", "scope": "LIBRARY"}, "3264": {"type": "MIPS_26", "symbol": "_i2b", "scope": "LIBRARY"}, "3436": {"type": "MIPS_26", "symbol": "_pow5mult", "scope": "LIBRARY"}, "3456": {"type": "MIPS_26", "symbol": "_multiply", "scope": "LIBRARY"}, "3472": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "3492": {"type": "MIPS_26", "symbol": "_lshift", "scope": "LIBRARY"}, "3516": {"type": "MIPS_26", "symbol": "_pow5mult", "scope": "LIBRARY"}, "3540": {"type": "MIPS_26", "symbol": "_lshift", "scope": "LIBRARY"}, "3564": {"type": "MIPS_26", "symbol": "_lshift", "scope": "LIBRARY"}, "3584": {"type": "MIPS_26", "symbol": "__mdiff", "scope": "LIBRARY"}, "3608": {"type": "MIPS_26", "symbol": "__mcmp", "scope": "LIBRARY"}, "3660": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "3672": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "3684": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "3696": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "3708": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "3744": {"type": "MIPS_26", "symbol": "dpsub"}}}}, "785e59535ec1b45c88d5b18a636080f128850990": {"516b7a32": {"type": "FUNCTION", "size": 3840, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.4", "2.2.1", "2.2.2", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.5", "2.5.7", "2.7.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"88": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1064": {"type": "MIPS_26", "symbol": "litodp"}, "1096": {"type": "MIPS_26", "symbol": "dpadd"}, "1120": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_tens"}, "1128": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tens"}, "1144": {"type": "MIPS_26", "symbol": "dpmul"}, "1160": {"type": "MIPS_26", "symbol": "__floatdidf"}, "1184": {"type": "MIPS_26", "symbol": "__floatdidf"}, "1196": {"type": "MIPS_26", "symbol": "dpadd"}, "1208": {"type": "MIPS_26", "symbol": "dpadd"}, "1256": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_tens"}, "1264": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tens"}, "1308": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_tens"}, "1316": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tens"}, "1336": {"type": "MIPS_26", "symbol": "dpmul"}, "1368": {"type": "MIPS_26", "symbol": "dpmul"}, "1400": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_tens"}, "1408": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tens"}, "1420": {"type": "MIPS_26", "symbol": "dpdiv"}, "1456": {"type": "MIPS_HI16", "symbol": ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(", "original": "__mprec_tens"}, "1464": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tens"}, "1476": {"type": "MIPS_26", "symbol": "dpmul"}, "1516": {"type": "MIPS_HI16", "symbol": "", "original": "__infinity"}, "1532": {"type": "MIPS_LO16", "symbol": "", "original": "__infinity"}, "1560": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_bigtens"}, "1576": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_bigtens"}, "1592": {"type": "MIPS_26", "symbol": "dpmul"}, "1624": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_bigtens"}, "1628": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_bigtens"}, "1632": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_bigtens"}, "1676": {"type": "MIPS_26", "symbol": "dpmul"}, "1816": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_tens"}, "1824": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tens"}, "1836": {"type": "MIPS_26", "symbol": "dpdiv"}, "1884": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_tinytens"}, "1896": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tinytens"}, "1912": {"type": "MIPS_26", "symbol": "dpmul"}, "1944": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tinytens"}, "1948": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_tinytens"}, "1952": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tinytens"}, "1980": {"type": "MIPS_26", "symbol": "dpmul"}, "1996": {"type": "MIPS_26", "symbol": "dpcmp"}, "2016": {"type": "MIPS_26", "symbol": "dpadd"}, "2028": {"type": "MIPS_26", "symbol": "dpmul"}, "2044": {"type": "MIPS_26", "symbol": "dpcmp"}, "2088": {"type": "MIPS_26", "symbol": "_ulp", "scope": "LIBRARY"}, "2100": {"type": "MIPS_26", "symbol": "dpadd"}, "2132": {"type": "MIPS_26", "symbol": "_s2b", "scope": "LIBRARY"}, "2172": {"type": "MIPS_26", "symbol": "_lshift", "scope": "LIBRARY"}, "2188": {"type": "MIPS_26", "symbol": "__mcmp", "scope": "LIBRARY"}, "2384": {"type": "MIPS_26", "symbol": "_ulp", "scope": "LIBRARY"}, "2396": {"type": "MIPS_26", "symbol": "dpsub"}, "2412": {"type": "MIPS_26", "symbol": "dpcmp"}, "2436": {"type": "MIPS_26", "symbol": "_ratio", "scope": "LIBRARY"}, "2456": {"type": "MIPS_26", "symbol": "dpcmp"}, "2556": {"type": "MIPS_26", "symbol": "dpcmp"}, "2596": {"type": "MIPS_26", "symbol": "dpmul"}, "2620": {"type": "MIPS_26", "symbol": "dpmul"}, "2644": {"type": "MIPS_26", "symbol": "dpsub"}, "2720": {"type": "MIPS_26", "symbol": "_ulp", "scope": "LIBRARY"}, "2732": {"type": "MIPS_26", "symbol": "dpmul"}, "2744": {"type": "MIPS_26", "symbol": "dpadd"}, "2896": {"type": "MIPS_26", "symbol": "dpcmp"}, "2920": {"type": "MIPS_26", "symbol": "dpadd"}, "2928": {"type": "MIPS_26", "symbol": "dptoli"}, "2936": {"type": "MIPS_26", "symbol": "litodp"}, "2956": {"type": "MIPS_26", "symbol": "dpsub"}, "2968": {"type": "MIPS_26", "symbol": "_ulp", "scope": "LIBRARY"}, "2980": {"type": "MIPS_26", "symbol": "dpmul"}, "2992": {"type": "MIPS_26", "symbol": "dpadd"}, "3036": {"type": "MIPS_26", "symbol": "__fixdfdi"}, "3044": {"type": "MIPS_26", "symbol": "__floatdidf"}, "3056": {"type": "MIPS_26", "symbol": "dpsub"}, "3092": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3096": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3100": {"type": "MIPS_26", "symbol": "dpcmp"}, "3116": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3120": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3124": {"type": "MIPS_26", "symbol": "dpcmp"}, "3148": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3152": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3156": {"type": "MIPS_26", "symbol": "dpcmp"}, "3176": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "3188": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "3200": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "3212": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "3228": {"type": "MIPS_26", "symbol": "_Balloc", "scope": "LIBRARY"}, "3260": {"type": "MIPS_26", "symbol": "memcpy", "scope": "LIBRARY"}, "3280": {"type": "MIPS_26", "symbol": "_d2b", "scope": "LIBRARY"}, "3296": {"type": "MIPS_26", "symbol": "_i2b", "scope": "LIBRARY"}, "3476": {"type": "MIPS_26", "symbol": "_pow5mult", "scope": "LIBRARY"}, "3496": {"type": "MIPS_26", "symbol": "_multiply", "scope": "LIBRARY"}, "3512": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "3532": {"type": "MIPS_26", "symbol": "_lshift", "scope": "LIBRARY"}, "3556": {"type": "MIPS_26", "symbol": "_pow5mult", "scope": "LIBRARY"}, "3580": {"type": "MIPS_26", "symbol": "_lshift", "scope": "LIBRARY"}, "3604": {"type": "MIPS_26", "symbol": "_lshift", "scope": "LIBRARY"}, "3624": {"type": "MIPS_26", "symbol": "__mdiff", "scope": "LIBRARY"}, "3648": {"type": "MIPS_26", "symbol": "__mcmp", "scope": "LIBRARY"}, "3700": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "3712": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "3724": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "3736": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "3748": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "3784": {"type": "MIPS_26", "symbol": "dpsub"}}}}, "cca2020fe8e5c5ab56e8695725ebcee5086ac553": {"13174e0a": {"type": "FUNCTION", "size": 3912, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"92": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "180": {"type": "MIPS_26", "symbol": "dpsub"}, "1056": {"type": "MIPS_26", "symbol": "litodp"}, "1104": {"type": "MIPS_26", "symbol": "dpadd"}, "1132": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_tens"}, "1140": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tens"}, "1156": {"type": "MIPS_26", "symbol": "dpmul"}, "1176": {"type": "MIPS_26", "symbol": "__floatdidf"}, "1192": {"type": "MIPS_26", "symbol": "dpadd"}, "1228": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_tens"}, "1236": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tens"}, "1252": {"type": "MIPS_26", "symbol": "dpmul"}, "1296": {"type": "MIPS_HI16", "symbol": "", "original": "__infinity"}, "1308": {"type": "MIPS_LO16", "symbol": "", "original": "__infinity"}, "1316": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "1328": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "1340": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "1352": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "1364": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "1396": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_bigtens"}, "1408": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_bigtens"}, "1432": {"type": "MIPS_26", "symbol": "dpmul"}, "1464": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_bigtens"}, "1476": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_bigtens"}, "1520": {"type": "MIPS_26", "symbol": "dpmul"}, "1616": {"type": "MIPS_26", "symbol": "_s2b", "scope": "LIBRARY"}, "1644": {"type": "MIPS_26", "symbol": "_Balloc", "scope": "LIBRARY"}, "1676": {"type": "MIPS_26", "symbol": "memcpy", "scope": "LIBRARY"}, "1696": {"type": "MIPS_26", "symbol": "_d2b", "scope": "LIBRARY"}, "1712": {"type": "MIPS_26", "symbol": "_i2b", "scope": "LIBRARY"}, "1860": {"type": "MIPS_26", "symbol": "_pow5mult", "scope": "LIBRARY"}, "1880": {"type": "MIPS_26", "symbol": "_multiply", "scope": "LIBRARY"}, "1896": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "1920": {"type": "MIPS_26", "symbol": "_lshift", "scope": "LIBRARY"}, "1944": {"type": "MIPS_26", "symbol": "_pow5mult", "scope": "LIBRARY"}, "1968": {"type": "MIPS_26", "symbol": "_lshift", "scope": "LIBRARY"}, "1992": {"type": "MIPS_26", "symbol": "_lshift",)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "scope": "LIBRARY"}, "2012": {"type": "MIPS_26", "symbol": "__mdiff", "scope": "LIBRARY"}, "2036": {"type": "MIPS_26", "symbol": "__mcmp", "scope": "LIBRARY"}, "2084": {"type": "MIPS_26", "symbol": "_lshift", "scope": "LIBRARY"}, "2100": {"type": "MIPS_26", "symbol": "__mcmp", "scope": "LIBRARY"}, "2304": {"type": "MIPS_26", "symbol": "_ulp", "scope": "LIBRARY"}, "2320": {"type": "MIPS_26", "symbol": "dpsub"}, "2340": {"type": "MIPS_26", "symbol": "dpcmp"}, "2388": {"type": "MIPS_26", "symbol": "_ulp", "scope": "LIBRARY"}, "2404": {"type": "MIPS_26", "symbol": "dpadd"}, "2456": {"type": "MIPS_26", "symbol": "_ratio", "scope": "LIBRARY"}, "2480": {"type": "MIPS_26", "symbol": "dpcmp"}, "2576": {"type": "MIPS_26", "symbol": "_ulp", "scope": "LIBRARY"}, "2592": {"type": "MIPS_26", "symbol": "dpmul"}, "2608": {"type": "MIPS_26", "symbol": "dpadd"}, "2720": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "2732": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "2744": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "2756": {"type": "MIPS_26", "symbol": "_Bfree", "scope": "LIBRARY"}, "2836": {"type": "MIPS_26", "symbol": "__fixdfdi"}, "2844": {"type": "MIPS_26", "symbol": "__floatdidf"}, "2860": {"type": "MIPS_26", "symbol": "dpsub"}, "2900": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2904": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2912": {"type": "MIPS_26", "symbol": "dpcmp"}, "2928": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2932": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2940": {"type": "MIPS_26", "symbol": "dpcmp"}, "2968": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2972": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3024": {"type": "MIPS_26", "symbol": "dpcmp"}, "3052": {"type": "MIPS_26", "symbol": "dpadd"}, "3064": {"type": "MIPS_26", "symbol": "dptoli"}, "3072": {"type": "MIPS_26", "symbol": "litodp"}, "3100": {"type": "MIPS_26", "symbol": "dpsub"}, "3116": {"type": "MIPS_26", "symbol": "_ulp", "scope": "LIBRARY"}, "3132": {"type": "MIPS_26", "symbol": "dpmul"}, "3148": {"type": "MIPS_26", "symbol": "dpadd"}, "3232": {"type": "MIPS_26", "symbol": "dpcmp"}, "3264": {"type": "MIPS_26", "symbol": "dpsub"}, "3296": {"type": "MIPS_26", "symbol": "dpmul"}, "3332": {"type": "MIPS_26", "symbol": "dpmul"}, "3364": {"type": "MIPS_26", "symbol": "dpsub"}, "3388": {"type": "MIPS_26", "symbol": "dpadd"}, "3468": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_tens"}, "3476": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tens"}, "3492": {"type": "MIPS_26", "symbol": "dpdiv"}, "3540": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_tinytens"}, "3552": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tinytens"}, "3576": {"type": "MIPS_26", "symbol": "dpmul"}, "3608": {"type": "MIPS_HI16", "symbol": "", "original": "__mprec_tinytens"}, "3616": {"type": "MIPS_LO16", "symbol": "", "original": "__mprec_tinytens"}, "3644": {"type": "MIPS_26", "symbol": "dpmul"}, "3664": {"type": "MIPS_26", "symbol": "dpcmp"}, "3688": {"type": "MIPS_26", "symbol": "dpadd"}, "3704": {"type": "MIPS_26", "symbol": "dpmul"}, "3720": {"type": "MIPS_26", "symbol": "dpcmp"}, "3748": {"type": "MIPS_26", "symbol": "__floatdidf"}, "3764": {"type": "MIPS_26", "symbol": "dpadd"}}}}}, "strtod": {"5405aed249097711e49d978547402ef104165c63": {"75e7ff2e": {"type": "FUNCTION", "size": 36, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "28": {"type": "MIPS_26", "symbol": "_strtod_r", "scope": "LIBRARY", "original": ".text"}}}}, "fbc95b4fdc11eb9a2ddfb232421a397dc38fddb6": {"9edaf108": {"type": "FUNCTION", "size": 44, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.0", "1.5.3", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.4", "2.2.1", "2.2.2", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.5", "2.5.7", "2.7.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "24": {"type": "MIPS_26", "symbol": "_strtod_r", "scope": "LIBRARY", "original": ".text"}}}}, "7ab04b3b484389858dcd5a01175da736ca968bcb": {"5f764ad4": {"type": "FUNCTION", "size": 40, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "32": {"type": "MIPS_26", "symbol": "_strtod_r", "scope": "LIBRARY"}}}}}, "strtodf": {"ef53b369de4db057f0d0036522145e84bea4f1f9": {"48766776": {"type": "FUNCTION", "size": 40, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "strtod", "scope": "LIBRARY", "original": ".text"}, "20": {"type": "MIPS_26", "symbol": "dptofp"}}}}, "7957a2269426b9dbfcbd66302afe468ba97be039": {"4b705c09": {"type": "FUNCTION", "size": 36, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.3", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.4", "2.2.1", "2.2.2", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.5", "2.5.7", "2.7.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "strtod", "scope": "LIBRARY", "original": ".text"}, "16": {"type": "MIPS_26", "symbol": "dptofp"}}}}, "b91489cae3efacccb7e0bb70574f7b546b88a4d1": {"e839c090": {"type": "FUNCTION", "size": 56, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "24": {"type": "MIPS_26", "symbol": "_strtod_r", "scope": "LIBRARY"}, "36": {"type": "MIPS_26", "symbol": "dptofp"}}}}}, "_strtol_r": {"5f023d30b5fec9ea164bc88ea873d898b82469e1": {"8ca6a2d3": {"type": "FUNCTION", "size": 568, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"76": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "260": {"type": "MIPS_26", "symbol": "__umoddi3"}, "280": {"type": "MIPS_26", "symbol": "__udivdi3"}, "360": {"type": "MIPS_26", "symbol": "__muldi3"}, "384": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "392": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}}}}, "4566e8154d45931029ba9814a96a58981fcbf82c": {"0f13eb5a": {"type": "FUNCTION", "size": 564, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "256": {"type": "MIPS_26", "symbol": "__umoddi3"}, "280": {"type": "MIPS_26", "symbol": "__udiv)PS2SDB", 8192}, + std::string_view{R"PS2SDB(di3"}, "360": {"type": "MIPS_26", "symbol": "__muldi3"}, "380": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}}}}, "56c774c1d79600e8e3765720f8eff1cce3b93070": {"c87c4276": {"type": "FUNCTION", "size": 568, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.3", "2.1.4", "2.2.1", "2.2.2", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "256": {"type": "MIPS_26", "symbol": "__umoddi3"}, "284": {"type": "MIPS_26", "symbol": "__udivdi3"}, "292": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "300": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "368": {"type": "MIPS_26", "symbol": "__muldi3"}}}}, "7d92c27418c228c85be7fffb7d41eda465006652": {"411a8442": {"type": "FUNCTION", "size": 576, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "252": {"type": "MIPS_26", "symbol": "__umoddi3"}, "272": {"type": "MIPS_26", "symbol": "__udivdi3"}, "288": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "292": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "388": {"type": "MIPS_26", "symbol": "__muldi3"}}}}, "38e496005be778215d4af05a486c2875866b7230": {"a02644ea": {"type": "FUNCTION", "size": 580, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "252": {"type": "MIPS_26", "symbol": "__umoddi3"}, "272": {"type": "MIPS_26", "symbol": "__udivdi3"}, "288": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "292": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "388": {"type": "MIPS_26", "symbol": "__muldi3"}}}}, "15ecaa9f1b5b757e2a124498919f4d74d598f8ee": {"62ecd1f8": {"type": "FUNCTION", "size": 576, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "252": {"type": "MIPS_26", "symbol": "__umoddi3"}, "272": {"type": "MIPS_26", "symbol": "__udivdi3"}, "284": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "292": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "384": {"type": "MIPS_26", "symbol": "__muldi3"}}}}}, "strtol": {"9538e996378e872e54a7a0ec1a8c72e0c179f26d": {"78dac3c0": {"type": "FUNCTION", "size": 44, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "36": {"type": "MIPS_26", "symbol": "_strtol_r", "scope": "LIBRARY", "original": ".text"}}}}, "b2cf04e1fcabaefca079a20284b8e13eaa22f1db": {"f2a6a6a3": {"type": "FUNCTION", "size": 52, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.0", "1.5.3", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.3", "2.1.4", "2.2.1", "2.2.2", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "32": {"type": "MIPS_26", "symbol": "_strtol_r", "scope": "LIBRARY", "original": ".text"}}}}, "1664ec9466983d64cfbcf199c4ce7deed2a5e7b5": {"9eecd7eb": {"type": "FUNCTION", "size": 48, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "40": {"type": "MIPS_26", "symbol": "_strtol_r", "scope": "LIBRARY"}}}}, "5338ddf072034f6167a469b10313fbbf3345ad63": {"87378060": {"type": "FUNCTION", "size": 48, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "40": {"type": "MIPS_26", "symbol": "_strtol_r", "scope": "LIBRARY"}}}}, "45c72897c25a5fd62b48e7e4409e1b9c62f9c535": {"24f43daf": {"type": "FUNCTION", "size": 48, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "40": {"type": "MIPS_26", "symbol": "_strtol_r", "scope": "LIBRARY"}}}}}, "_strtoul_r": {"d8d0b412b8056ce3c600d64eb450758eb2f7d282": {"5084a357": {"type": "FUNCTION", "size": 556, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"76": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "256": {"type": "MIPS_26", "symbol": "__udivdi3"}, "276": {"type": "MIPS_26", "symbol": "__umoddi3"}, "360": {"type": "MIPS_26", "symbol": "__muldi3"}, "384": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "392": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}}}}, "bdacd1da0b88855a2be28396a2606377893ee0b2": {"7b82cfb9": {"type": "FUNCTION", "size": 528, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "248": {"type": "MIPS_26", "symbol": "__udivdi3"}, "264": {"type": "MIPS_26", "symbol": "__umoddi3"}, "344": {"type": "MIPS_26", "symbol": "__muldi3"}, "364": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}}}}, "e3fe3ac99969210f0d0210af8453e03cbe002fa1": {"1c163b31": {"type": "FUNCTION", "size": 540, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.1.0", "2.1.4", "2.2.2", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.5", "2.5.7", "2.7.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "248": {"type": "MIPS_26", "symbol": "__udivdi3"}, "268": {"type": "MIPS_26", "symbol": "__umoddi3"}, "288": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "360": {"type": "MIPS_26", "symbol": "_)PS2SDB", 8192}, + std::string_view{R"PS2SDB(_muldi3"}}}}, "b99c9b488cad66104e6bb8e59ccd805a61f252df": {"0e56875e": {"type": "FUNCTION", "size": 536, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "228": {"type": "MIPS_26", "symbol": "__udivdi3"}, "244": {"type": "MIPS_26", "symbol": "__umoddi3"}, "264": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "364": {"type": "MIPS_26", "symbol": "__muldi3"}}}}, "57e5271f8555fd2a0f90bc765074e380306c6b8e": {"03bb402b": {"type": "FUNCTION", "size": 536, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "228": {"type": "MIPS_26", "symbol": "__udivdi3"}, "244": {"type": "MIPS_26", "symbol": "__umoddi3"}, "260": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "364": {"type": "MIPS_26", "symbol": "__muldi3"}}}}}, "strtoul": {"9538e996378e872e54a7a0ec1a8c72e0c179f26d": {"dc03fedd": {"type": "FUNCTION", "size": 44, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "36": {"type": "MIPS_26", "symbol": "_strtoul_r", "scope": "LIBRARY", "original": ".text"}}}}, "b2cf04e1fcabaefca079a20284b8e13eaa22f1db": {"0832b25a": {"type": "FUNCTION", "size": 52, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.2", "2.1.0", "2.1.4", "2.2.2", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.5", "2.5.7", "2.7.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "32": {"type": "MIPS_26", "symbol": "_strtoul_r", "scope": "LIBRARY", "original": ".text"}}}}, "1664ec9466983d64cfbcf199c4ce7deed2a5e7b5": {"70593189": {"type": "FUNCTION", "size": 48, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "40": {"type": "MIPS_26", "symbol": "_strtoul_r", "scope": "LIBRARY"}}}}, "5338ddf072034f6167a469b10313fbbf3345ad63": {"0a2ab076": {"type": "FUNCTION", "size": 48, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "40": {"type": "MIPS_26", "symbol": "_strtoul_r", "scope": "LIBRARY"}}}}}, "__submore": {"fe7593f126581c914b1095b65a1a78ce7ef75638": {"7471ff7d": {"type": "FUNCTION", "size": 232, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "_malloc_r", "scope": "LIBRARY"}, "144": {"type": "MIPS_26", "symbol": "_realloc_r", "scope": "LIBRARY"}, "176": {"type": "MIPS_26", "symbol": "memcpy", "scope": "LIBRARY"}}}}, "9fc5e9ba5896ce0694d6df252addd4934ae74b2a": {"74aa7df7": {"type": "FUNCTION", "size": 240, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "_malloc_r", "scope": "LIBRARY"}, "148": {"type": "MIPS_26", "symbol": "_realloc_r", "scope": "LIBRARY"}, "184": {"type": "MIPS_26", "symbol": "memcpy", "scope": "LIBRARY"}}}}, "a52d813da58fbda1da86d06c8aa2723cf4be656a": {"74aa7df7": {"type": "FUNCTION", "size": 240, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.1.0", "2.1.4", "2.2.2", "2.3.0", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.5", "2.5.7", "2.7.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "_malloc_r", "scope": "LIBRARY"}, "148": {"type": "MIPS_26", "symbol": "_realloc_r", "scope": "LIBRARY"}, "184": {"type": "MIPS_26", "symbol": "memcpy", "scope": "LIBRARY"}}}}, "de4764e4abb4719c7346582340750c64c0ca8c69": {"b1464f42": {"type": "FUNCTION", "size": 228, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "_malloc_r", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "_realloc_r", "scope": "LIBRARY"}, "200": {"type": "MIPS_26", "symbol": "memcpy", "scope": "LIBRARY"}}}}}, "ungetc": {"b1c641853c67242fd27fe6ac43f499ada9aae8c9": {"26f39113": {"type": "FUNCTION", "size": 392, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "72": {"type": "MIPS_26", "symbol": "__sinit", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "fflush", "scope": "LIBRARY"}, "204": {"type": "MIPS_26", "symbol": "__submore", "scope": "LIBRARY", "original": ".text"}}}}, "95d830cd00283e6b453a7ed49390cb5cadeaf0f4": {"70f696de": {"type": "FUNCTION", "size": 400, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"44": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "76": {"type": "MIPS_26", "symbol": "__sinit", "scope": "LIBRARY"}, "132": {"type": "MIPS_26", "symbol": "fflush", "scope": "LIBRARY"}, "212": {"type": "MIPS_26", "symbol": "__submore", "scope": "LIBRARY", "original": ".text"}}}}, "7ce7746d792bc54fc62f0d153591b70955218dfd": {"4b4adb27": {"type": "FUNCTION", "size": 392, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.1.0", "2.1.4", "2.2.2", "2.3.0", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.5", "2.5.7", "2.7.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"44": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "72": {"type": "MIPS_26", "symbol": "__sinit", "scope": "LIBRARY"}, "128": {"type": "MIPS_26", "symbol": "fflush", "scope": "LIBRARY"}, "208": {"type": "MIPS_26", "symbol": "__submore", "scope": "LIBRARY", "original": ".text"}}}}, "d713e072ddcb14abb9b3cd0f2c148f32a6e58f07": {"26f39113": {"type": "FUNCTION", "size": 392, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "52": {"type": "MIPS_LO16", "symbol": "", "origi)PS2SDB", 8192}, + std::string_view{R"PS2SDB(nal": "_impure_ptr"}, "72": {"type": "MIPS_26", "symbol": "__sinit", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "fflush", "scope": "LIBRARY"}, "204": {"type": "MIPS_26", "symbol": "__submore", "scope": "LIBRARY"}}}}}, "__sprint": {"8a66fb9b6acab222601a8b482d2439526d4274b7": {"c2ee4b48": {"type": "FUNCTION", "size": 72, "library": "libc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "__sfvwrite", "scope": "LIBRARY"}}}}, "cdf56bcf8994f7acda41e69eabca0120edaf6db6": {"65cc9880": {"type": "FUNCTION", "size": 68, "library": "libc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "__sfvwrite", "scope": "LIBRARY"}}}}, "0ca4a02ba7a59e23b38b62297fddb88845a7fea5": {"57daea99": {"type": "FUNCTION", "size": 68, "library": "libc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "__sfvwrite", "scope": "LIBRARY"}}}}, "7cad7243c1c9e7e74b248ade0f16d5b5f164206d": {"57daea99": {"type": "FUNCTION", "size": 68, "library": "libc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "__sfvwrite", "scope": "LIBRARY"}}}}, "5bdfad305344d6ae33cde3818eec42d1fc52027f": {"57daea99": {"type": "FUNCTION", "size": 68, "library": "libc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "__sfvwrite", "scope": "LIBRARY"}}}}}, "__sbprintf": {"aabb4e9cb0a244daa2403e46efbf7ce92feac6f3": {"3ce510dc": {"type": "FUNCTION", "size": 180, "library": "libc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"92": {"type": "MIPS_26", "symbol": "vfprintf", "scope": "LIBRARY", "original": ".text"}, "112": {"type": "MIPS_26", "symbol": "fflush", "scope": "LIBRARY"}}}, "e606b690": {"type": "FUNCTION", "size": 180, "library": "libc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.4.2", "2.4.3", "2.5.0", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"92": {"type": "MIPS_26", "symbol": "vfiprintf", "scope": "LIBRARY", "original": ".text"}, "112": {"type": "MIPS_26", "symbol": "fflush", "scope": "LIBRARY"}}}}, "cb5b6a1688a88c704dfc46c31625551147ba7c25": {"3ce510dc": {"type": "FUNCTION", "size": 180, "library": "libc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"92": {"type": "MIPS_26", "symbol": "vfprintf", "scope": "LIBRARY", "original": ".text"}, "112": {"type": "MIPS_26", "symbol": "fflush", "scope": "LIBRARY"}}}, "e606b690": {"type": "FUNCTION", "size": 180, "library": "libc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.5.1", "1.5.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.4", "2.3.0", "2.3.2", "2.3.4", "2.4.2", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"92": {"type": "MIPS_26", "symbol": "vfiprintf", "scope": "LIBRARY", "original": ".text"}, "112": {"type": "MIPS_26", "symbol": "fflush", "scope": "LIBRARY"}}}}, "7fa2c821f505503f8ae5d0a9ccdea426275f8864": {"3ce510dc": {"type": "FUNCTION", "size": 180, "library": "libc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"92": {"type": "MIPS_26", "symbol": "vfprintf", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "fflush", "scope": "LIBRARY"}}}}, "8bf27d4dabdcc2a161cba4d268f2374f948996ba": {"3ce510dc": {"type": "FUNCTION", "size": 180, "library": "libc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"92": {"type": "MIPS_26", "symbol": "vfprintf", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "fflush", "scope": "LIBRARY"}}}}, "8f18166fcbc1c6f38d1ab7443b86008ee1c2000b": {"3ce510dc": {"type": "FUNCTION", "size": 176, "library": "libc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"92": {"type": "MIPS_26", "symbol": "vfprintf", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "fflush", "scope": "LIBRARY"}}}}}, "vfprintf": {"1c9c7ce7320f821bded210486cab472e4c87afce": {"ff096f49": {"type": "FUNCTION", "size": 116, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"40": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "68": {"type": "MIPS_26", "symbol": "__sinit", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "_vfprintf_r", "scope": "LIBRARY", "original": ".text"}}}}, "fd14fa8bb9e8cc57e37223328d03375d7ac6a8b2": {"b5f3e301": {"type": "FUNCTION", "size": 120, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"40": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "68": {"type": "MIPS_26", "symbol": "__sinit", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "_vfprintf_r", "scope": "LIBRARY", "original": ".text"}}}}, "76938fe16c2fcd234cd9b689d795899cf175a15d": {"410658ea": {"type": "FUNCTION", "size": 48, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "_vfprintf_r", "scope": "LIBRARY", "original": ".text"}}}}, "79dc19cff724e7f9fa294a9ff06446c2e03c8ad9": {"7d82c4a6": {"type": "FUNCTION", "size": 112, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "64": {"type": "MIPS_26", "symbol": "__sinit", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "_vfprintf_r", "scope": "LIBRARY"}}}}, "3f8981)PS2SDB", 8192}, + std::string_view{R"PS2SDB(f4c54e059c77dde9a098f73a7d9d5ad796": {"7d82c4a6": {"type": "FUNCTION", "size": 112, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "64": {"type": "MIPS_26", "symbol": "__sinit", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "_vfprintf_r", "scope": "LIBRARY"}}}}, "0e2179a243f8019c4f11c1b5a6a9fbff1d248eaa": {"ff096f49": {"type": "FUNCTION", "size": 116, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "68": {"type": "MIPS_26", "symbol": "__sinit", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "_vfprintf_r", "scope": "LIBRARY"}}}}}, "_vfprintf_r": {"b7a706ab40a65e4c297158eb4ef80044a5deb508": {"a683222c": {"type": "FUNCTION", "size": 5744, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "localeconv", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "__swsetup", "scope": "LIBRARY"}, "164": {"type": "MIPS_26", "symbol": "__sbprintf", "original": ".text"}, "216": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "220": {"type": "MIPS_HI16", "symbol": "", "original": "__mb_cur_max"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": "__mb_cur_max"}, "240": {"type": "MIPS_26", "symbol": "_mbtowc_r", "scope": "LIBRARY"}, "336": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "436": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "444": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "980": {"type": "MIPS_26", "symbol": "isinf"}, "1004": {"type": "MIPS_26", "symbol": "dpcmp"}, "1016": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1028": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1040": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1052": {"type": "MIPS_26", "symbol": "isnan"}, "1064": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1076": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1112": {"type": "MIPS_26", "symbol": "cvt", "scope": "LIBRARY", "original": ".text"}, "1220": {"type": "MIPS_26", "symbol": "exponent", "scope": "LIBRARY", "original": ".text"}, "1560": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1568": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1616": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1620": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1636": {"type": "MIPS_26", "symbol": "memchr", "scope": "LIBRARY"}, "1680": {"type": "MIPS_26", "symbol": "strlen", "scope": "LIBRARY"}, "1768": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1776": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1784": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1788": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1944": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1948": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1952": {"type": "MIPS_26", "symbol": "strlen", "scope": "LIBRARY"}, "2032": {"type": "MIPS_26", "symbol": "__umoddi3"}, "2060": {"type": "MIPS_26", "symbol": "__udivdi3"}, "2292": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2300": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2364": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2420": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2468": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2556": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2660": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2728": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2736": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2796": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2852": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2900": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2948": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2956": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3020": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "3076": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3124": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "3208": {"type": "MIPS_26", "symbol": "dpcmp"}, "3228": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3236": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3284": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "3392": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "3440": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3448": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3504": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "3556": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3612": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3620": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3668": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "3768": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "3816": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3824": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3880": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "3932": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3980": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "4060": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "4152": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "4204": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "4212": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "4272": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "4324": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "4372": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "4408": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "4416": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "4516": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "4548": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "4556": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "4608": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "4704": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "4836": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "4868": {"type": "MIPS_26", "symbol": "dpcmp"}, "4948": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "4996": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "5004": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "5064": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "5116": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "5164": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "5240": {"type": "MIPS_26", )PS2SDB", 8192}, + std::string_view{R"PS2SDB("symbol": "__sprint", "original": ".text"}, "5320": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "5380": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "5388": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "5448": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "5500": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "5544": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "5604": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "5652": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}}}}, "1e4541ade43162a9455371cce2a8d4633556d542": {"3a4c32e6": {"type": "FUNCTION", "size": 5728, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.3", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "localeconv", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "__swsetup", "scope": "LIBRARY"}, "164": {"type": "MIPS_26", "symbol": "__sbprintf", "original": ".text"}, "216": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "220": {"type": "MIPS_HI16", "symbol": "", "original": "__mb_cur_max"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": "__mb_cur_max"}, "240": {"type": "MIPS_26", "symbol": "_mbtowc_r", "scope": "LIBRARY"}, "336": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "436": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "444": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "980": {"type": "MIPS_26", "symbol": "isinf"}, "1004": {"type": "MIPS_26", "symbol": "dpcmp"}, "1016": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1028": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1040": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1052": {"type": "MIPS_26", "symbol": "isnan"}, "1064": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1076": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1112": {"type": "MIPS_26", "symbol": "cvt", "scope": "LIBRARY", "original": ".text"}, "1220": {"type": "MIPS_26", "symbol": "exponent", "scope": "LIBRARY", "original": ".text"}, "1560": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1568": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1616": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1620": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1636": {"type": "MIPS_26", "symbol": "memchr", "scope": "LIBRARY"}, "1680": {"type": "MIPS_26", "symbol": "strlen", "scope": "LIBRARY"}, "1768": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1776": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1784": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1788": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1944": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1948": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1952": {"type": "MIPS_26", "symbol": "strlen", "scope": "LIBRARY"}, "2032": {"type": "MIPS_26", "symbol": "__umoddi3"}, "2060": {"type": "MIPS_26", "symbol": "__udivdi3"}, "2292": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2300": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2364": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2420": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2468": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2556": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2660": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2728": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2736": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2796": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2852": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2900": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2948": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2956": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3020": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "3076": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3124": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "3208": {"type": "MIPS_26", "symbol": "dpcmp"}, "3228": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3236": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3284": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "3392": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "3440": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3448": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3504": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "3556": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3612": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3620": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3668": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "3756": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "3804": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3812": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3872": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "3924": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3972": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "4052": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "4144": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "4196": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "4204": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "4264": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "4316": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "4364": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "4400": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "4408": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "4504": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "4536": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "4544": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "4596": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "4692": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "4820": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "4852": {"type": "MIPS_26", "symbol": "dpcmp"}, "4928": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "4980": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "4988": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "5048": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "5100": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "5148": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "5224": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "5304": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "5364": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "5372": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "5432": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "5484": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "5528": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "5588": {"type": "MIPS_26", "symbol": "__sp)PS2SDB", 8192}, + std::string_view{R"PS2SDB(rint", "original": ".text"}, "5636": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}}}}, "acfa09c33c351eba0418abf9189906d7fb2a08df": {"6c8c492f": {"type": "FUNCTION", "size": 5400, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "localeconv", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "__swsetup", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "__sbprintf", "original": ".text"}, "232": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": "__mb_cur_max"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": "__mb_cur_max"}, "256": {"type": "MIPS_26", "symbol": "_mbtowc_r", "scope": "LIBRARY"}, "364": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "484": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "492": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1096": {"type": "MIPS_26", "symbol": "isinf"}, "1112": {"type": "MIPS_26", "symbol": "dpcmp"}, "1124": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1136": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1148": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1152": {"type": "MIPS_26", "symbol": "isnan"}, "1164": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1176": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1212": {"type": "MIPS_26", "symbol": "cvt", "scope": "LIBRARY", "original": ".text"}, "1312": {"type": "MIPS_26", "symbol": "exponent", "scope": "LIBRARY", "original": ".text"}, "1608": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1616": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1656": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1660": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1676": {"type": "MIPS_26", "symbol": "memchr", "scope": "LIBRARY"}, "1712": {"type": "MIPS_26", "symbol": "strlen", "scope": "LIBRARY"}, "1784": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1792": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1796": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1800": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1936": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1944": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1952": {"type": "MIPS_26", "symbol": "strlen", "scope": "LIBRARY"}, "2068": {"type": "MIPS_26", "symbol": "__umoddi3"}, "2096": {"type": "MIPS_26", "symbol": "__udivdi3"}, "2356": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2372": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2428": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2464": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2516": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2692": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2756": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2772": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2824": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2856": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2908": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2956": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2972": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3024": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "3056": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3108": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "3188": {"type": "MIPS_26", "symbol": "dpcmp"}, "3204": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3212": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3264": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "3364": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "3400": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3412": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3464": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "3492": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3504": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3560": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3568": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3620": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "3688": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "3724": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3732": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3784": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "3812": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3824": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3876": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "4016": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "4056": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "4068": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "4120": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "4148": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "4160": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "4212": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "4236": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "4244": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "4340": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "4360": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "4368": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "4424": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "4612": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "4632": {"type": "MIPS_26", "symbol": "dpcmp"}, "4728": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "4740": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "4792": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "4820": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "4832": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "4932": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "5004": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "5052": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "5060": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "5116": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "5148": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "5160": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "5208": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "5268": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "5308": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}}}}, "f8dbb12c7f472ba6241b877b2760a55855ae4f65": {"11c10818": {"type": "FUNCTION", "size": 5536, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_vers)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ions": ["2.3.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "localeconv", "scope": "LIBRARY"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "116": {"type": "MIPS_26", "symbol": "__sinit", "scope": "LIBRARY"}, "152": {"type": "MIPS_26", "symbol": "__swsetup", "scope": "LIBRARY"}, "204": {"type": "MIPS_26", "symbol": "__sbprintf", "original": ".text"}, "264": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "268": {"type": "MIPS_HI16", "symbol": "", "original": "__mb_cur_max"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": "__mb_cur_max"}, "288": {"type": "MIPS_26", "symbol": "_mbtowc_r", "scope": "LIBRARY"}, "396": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "488": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "496": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1128": {"type": "MIPS_26", "symbol": "isinf"}, "1144": {"type": "MIPS_26", "symbol": "dpcmp"}, "1172": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1184": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1188": {"type": "MIPS_26", "symbol": "isnan"}, "1204": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1212": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1268": {"type": "MIPS_26", "symbol": "cvt", "scope": "LIBRARY", "original": ".text"}, "1372": {"type": "MIPS_26", "symbol": "exponent", "scope": "LIBRARY", "original": ".text"}, "1720": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1728": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1772": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1776": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1792": {"type": "MIPS_26", "symbol": "memchr", "scope": "LIBRARY"}, "1828": {"type": "MIPS_26", "symbol": "strlen", "scope": "LIBRARY"}, "1932": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1940": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1944": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1948": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2116": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2124": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2136": {"type": "MIPS_26", "symbol": "strlen", "scope": "LIBRARY"}, "2248": {"type": "MIPS_26", "symbol": "__umoddi3"}, "2276": {"type": "MIPS_26", "symbol": "__udivdi3"}, "2512": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2516": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2588": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2632": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2684": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2848": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2900": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2904": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2968": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "3004": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3056": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "3092": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3096": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3160": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "3196": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3248": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "3320": {"type": "MIPS_26", "symbol": "dpcmp"}, "3336": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3344": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3396": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "3500": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "3536": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3540": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3600": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "3636": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3692": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3700": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3752": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "3820": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "3856": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3860": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3920": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "3956": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "4008": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "4148": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "4188": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "4192": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "4256": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "4292": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "4344": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "4372": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "4380": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "4476": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "4504": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "4512": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "4560": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "4752": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "4772": {"type": "MIPS_26", "symbol": "dpcmp"}, "4868": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "4872": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "4936": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "4972": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "5072": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "5144": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "5196": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "5200": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "5264": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "5300": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "5348": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "5408": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "5448": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}}}}, "0a65e0d645051c51e000194125309cf921554aea": {"8f54af83": {"type": "FUNCTION", "size": 5660, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "localeconv", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "__swsetup", "scope": "LIBRARY"}, "176": {"type": "MIPS_26", "symbol": "__sbprintf", "original": ".text"}, "264": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "268": {"type": "MIPS_HI16", "symbol": "", "original": "__mb_cur_max"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": "__mb_cur_max"}, "292": {"type": "MIPS_26", "symbol": "_mbtowc_r", "scope": "LIBRARY"}, "368": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "456": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "460": {"type": "MIPS_LO16", "symbol": "", "ori)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ginal": ".rodata"}, "932": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "936": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "940": {"type": "MIPS_26", "symbol": "strlen", "scope": "LIBRARY"}, "1024": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1032": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1084": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "1120": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1124": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1172": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "1256": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "1340": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1348": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1400": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "1436": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1440": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1488": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "1528": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1536": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1588": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "1624": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1628": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1676": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "1764": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "1816": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1824": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1876": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "1912": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1916": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1960": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2012": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2052": {"type": "MIPS_26", "symbol": "dpcmp"}, "2072": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2080": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2128": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2232": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2268": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2276": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2328": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2360": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2368": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2424": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2432": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2480": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2568": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2612": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2620": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2672": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2708": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2712": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2760": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2876": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2920": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2928": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2980": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "3016": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3020": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3068": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "3100": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3108": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3188": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "3220": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3224": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3272": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "3452": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "3476": {"type": "MIPS_26", "symbol": "dpcmp"}, "3552": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "3624": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "3668": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3676": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3728": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "3760": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3768": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3848": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "3952": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "4132": {"type": "MIPS_26", "symbol": "__umoddi3"}, "4160": {"type": "MIPS_26", "symbol": "__udivdi3"}, "4512": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "4516": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "4732": {"type": "MIPS_26", "symbol": "isinf"}, "4756": {"type": "MIPS_26", "symbol": "dpcmp"}, "4768": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "4788": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "4796": {"type": "MIPS_26", "symbol": "isnan"}, "4808": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "4820": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "4864": {"type": "MIPS_26", "symbol": "cvt", "scope": "LIBRARY", "original": ".text"}, "4964": {"type": "MIPS_26", "symbol": "exponent", "scope": "LIBRARY", "original": ".text"}, "5392": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "5396": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "5480": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "5484": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "5500": {"type": "MIPS_26", "symbol": "memchr", "scope": "LIBRARY"}, "5544": {"type": "MIPS_26", "symbol": "strlen", "scope": "LIBRARY"}, "5596": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "5624": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "5632": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "256725dc02ee0f0a75b473ef9efd45f8b68e0403": {"8b2c6353": {"type": "FUNCTION", "size": 5484, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "localeconv", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "__swsetup", "scope": "LIBRARY"}, "176": {"type": "MIPS_26", "symbol": "__sbprintf", "original": ".text"}, "264": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "268": {"type": "MIPS_HI16", "symbol": "", "original": "__mb_cur_max"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": "__mb_cur_max"}, "292": {"type": "MIPS_26", "symbol": "_mbtowc_r", "scope": "LIBRARY"}, "368": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "456": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "460": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "932": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "936": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "940": {"type": "MIPS_26", "symbol": "strlen", "scope": "LIBRARY"}, "10)PS2SDB", 8192}, + std::string_view{R"PS2SDB(16": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1024": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1076": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "1108": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1116": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1164": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "1252": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "1332": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1340": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1392": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "1424": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1432": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1480": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "1516": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1524": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1576": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "1608": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1616": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1664": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "1752": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "1804": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1812": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1864": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "1900": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1904": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1948": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2000": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2040": {"type": "MIPS_26", "symbol": "dpcmp"}, "2056": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2064": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2116": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2220": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2256": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2264": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2316": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2348": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2356": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2400": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2408": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2460": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2548": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2584": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2592": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2644": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2676": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2684": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2732": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2840": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2880": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2888": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2940": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2972": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2980": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3028": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "3060": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3068": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3136": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "3156": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3164": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3220": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "3356": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "3376": {"type": "MIPS_26", "symbol": "dpcmp"}, "3452": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "3524": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "3568": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3576": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3628": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "3660": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3668": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3768": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "3872": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "4052": {"type": "MIPS_26", "symbol": "__umoddi3"}, "4080": {"type": "MIPS_26", "symbol": "__udivdi3"}, "4384": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "4388": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "4584": {"type": "MIPS_26", "symbol": "isinf"}, "4600": {"type": "MIPS_26", "symbol": "dpcmp"}, "4612": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "4632": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "4636": {"type": "MIPS_26", "symbol": "isnan"}, "4648": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "4660": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "4704": {"type": "MIPS_26", "symbol": "cvt", "scope": "LIBRARY", "original": ".text"}, "4800": {"type": "MIPS_26", "symbol": "exponent", "scope": "LIBRARY", "original": ".text"}, "5216": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "5224": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "5304": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "5308": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "5324": {"type": "MIPS_26", "symbol": "memchr", "scope": "LIBRARY"}, "5368": {"type": "MIPS_26", "symbol": "strlen", "scope": "LIBRARY"}, "5420": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "5448": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "5456": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "f8ce23578b8b1e0da3f055207d7914015637031e": {"81f6efdc": {"type": "FUNCTION", "size": 5452, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "localeconv", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "__swsetup", "scope": "LIBRARY"}, "176": {"type": "MIPS_26", "symbol": "__sbprintf", "original": ".text"}, "264": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "268": {"type": "MIPS_HI16", "symbol": "", "original": "__mb_cur_max"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": "__mb_cur_max"}, "292": {"type": "MIPS_26", "symbol": "_mbtowc_r", "scope": "LIBRARY"}, "368": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "456": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "460": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "932": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "936": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "940": {"type": "MIPS_26", "symbol": "strlen", "scope": "LIBRARY"}, "1016": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1024": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1076": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "1108": {"type": "MIPS_HI16", "symbol")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: "", "original": ".rodata"}, "1116": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1164": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "1252": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "1332": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1340": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1392": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "1424": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1432": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1480": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "1516": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1524": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1576": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "1608": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1616": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1664": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "1752": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "1804": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1812": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1864": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "1900": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1904": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1948": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2000": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2040": {"type": "MIPS_26", "symbol": "dpcmp"}, "2056": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2064": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2116": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2216": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2252": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2260": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2312": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2344": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2352": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2396": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2404": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2456": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2548": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2584": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2592": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2644": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2676": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2684": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2732": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2840": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2880": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2888": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2940": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2972": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2980": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3028": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "3060": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3068": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3136": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "3156": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3164": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3220": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "3356": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "3376": {"type": "MIPS_26", "symbol": "dpcmp"}, "3452": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "3528": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "3572": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3580": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3632": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "3664": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3672": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3776": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "3880": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "4060": {"type": "MIPS_26", "symbol": "__umoddi3"}, "4088": {"type": "MIPS_26", "symbol": "__udivdi3"}, "4384": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "4388": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "4584": {"type": "MIPS_26", "symbol": "isinf"}, "4600": {"type": "MIPS_26", "symbol": "dpcmp"}, "4612": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "4632": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "4636": {"type": "MIPS_26", "symbol": "isnan"}, "4648": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "4660": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "4704": {"type": "MIPS_26", "symbol": "cvt", "scope": "LIBRARY", "original": ".text"}, "4800": {"type": "MIPS_26", "symbol": "exponent", "scope": "LIBRARY", "original": ".text"}, "5192": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "5196": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "5276": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "5280": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "5296": {"type": "MIPS_26", "symbol": "memchr", "scope": "LIBRARY"}, "5340": {"type": "MIPS_26", "symbol": "strlen", "scope": "LIBRARY"}, "5392": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "5416": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "5424": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "cvt": {"015532c48e4941e4e5e4ac40847711fa4ecf2ee9": {"63cc14c7": {"type": "FUNCTION", "size": 448, "library": "libc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"140": {"type": "MIPS_26", "symbol": "dpsub"}, "184": {"type": "MIPS_26", "symbol": "_dtoa_r", "scope": "LIBRARY"}, "260": {"type": "MIPS_26", "symbol": "dpcmp"}, "300": {"type": "MIPS_26", "symbol": "dpcmp"}}}}, "a883064f5998472aa2349eeee81ea99152936997": {"85ae6682": {"type": "FUNCTION", "size": 432, "library": "libc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"140": {"type": "MIPS_26", "symbol": "dpsub"}, "184": {"type": "MIPS_26", "symbol": "_dtoa_r", "scope": "LIBRARY"}, "256": {"type": "MIPS_26", "symbol": "dpcmp"}, "292": {"type": "MIPS_26", "symbol": "dpcmp"}}}}, "611057ddabd796dfaa8c0a33bbd1cea497ae0a1c": {"85ae6682": {"type": "FUNCTION", "size": 420, "library": "libc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"140": {"type": "MIPS_26", "symbol": "dpsub"}, "184": {"type": "MIPS_26", "symbol": "_dtoa_r", "scope": "LIBRARY"}, "256": {"type": "MIPS_2)PS2SDB", 8192}, + std::string_view{R"PS2SDB(6", "symbol": "dpcmp"}, "292": {"type": "MIPS_26", "symbol": "dpcmp"}}}}, "39b397f15c4ac5ca3bd51413516e71198407a87e": {"e93c6eef": {"type": "FUNCTION", "size": 432, "library": "libc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"136": {"type": "MIPS_26", "symbol": "dpsub"}, "180": {"type": "MIPS_26", "symbol": "_dtoa_r", "scope": "LIBRARY"}, "256": {"type": "MIPS_26", "symbol": "dpcmp"}, "296": {"type": "MIPS_26", "symbol": "dpcmp"}}}}, "c8f573fcb8d69903497a0acd3e325fda633f27a6": {"17bea2d0": {"type": "FUNCTION", "size": 420, "library": "libc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"132": {"type": "MIPS_26", "symbol": "dpsub"}, "176": {"type": "MIPS_26", "symbol": "_dtoa_r", "scope": "LIBRARY"}, "248": {"type": "MIPS_26", "symbol": "dpcmp"}, "284": {"type": "MIPS_26", "symbol": "dpcmp"}}}}, "1ec14370579f55d73ebd40843c5c2389cedd77db": {"17bea2d0": {"type": "FUNCTION", "size": 424, "library": "libc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"132": {"type": "MIPS_26", "symbol": "dpsub"}, "176": {"type": "MIPS_26", "symbol": "_dtoa_r", "scope": "LIBRARY"}, "248": {"type": "MIPS_26", "symbol": "dpcmp"}, "284": {"type": "MIPS_26", "symbol": "dpcmp"}}}}}, "exponent": {"c51344c24f419935462fad92fb525b1114837192": {"00000000": {"type": "FUNCTION", "size": 220, "library": "libc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "a272193888cb9633564a37a905ed27a961b32177": {"00000000": {"type": "FUNCTION", "size": 224, "library": "libc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "b64d9673495e7060b0355cf29b09fee9c9325f13": {"00000000": {"type": "FUNCTION", "size": 224, "library": "libc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}, "f766dce783f1bb52a1bb23a9da9f71e7260d7ea9": {"00000000": {"type": "FUNCTION", "size": 204, "library": "libc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "11a75c7d010865d95bf1b27fcbc5ec3ae9517f12": {"00000000": {"type": "FUNCTION", "size": 208, "library": "libc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "1facb4c988e3587f94e24b653ab0c96bbfd359e8": {"00000000": {"type": "FUNCTION", "size": 208, "library": "libc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "__svfscanf": {"03cd177522901e1d78eb4d8d49ea8ea3e2d80f15": {"2be51d9e": {"type": "FUNCTION", "size": 3212, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"100": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "172": {"type": "MIPS_26", "symbol": "__srefill", "scope": "LIBRARY"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "268": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "312": {"type": "MIPS_26", "symbol": "__srefill", "scope": "LIBRARY"}, "452": {"type": "MIPS_HI16", "symbol": "", "original": "strtol"}, "464": {"type": "MIPS_LO16", "symbol": "", "original": "strtol"}, "472": {"type": "MIPS_HI16", "symbol": "", "original": "strtol"}, "480": {"type": "MIPS_LO16", "symbol": "", "original": "strtol"}, "500": {"type": "MIPS_HI16", "symbol": "", "original": "strtoul"}, "508": {"type": "MIPS_LO16", "symbol": "", "original": "strtoul"}, "528": {"type": "MIPS_HI16", "symbol": "", "original": "strtoul"}, "536": {"type": "MIPS_LO16", "symbol": "", "original": "strtoul"}, "552": {"type": "MIPS_HI16", "symbol": "", "original": "strtoul"}, "592": {"type": "MIPS_26", "symbol": "__sccl", "scope": "LIBRARY", "original": ".text"}, "640": {"type": "MIPS_HI16", "symbol": "", "original": "strtoul"}, "648": {"type": "MIPS_LO16", "symbol": "", "original": "strtoul"}, "768": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "776": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "784": {"type": "MIPS_HI16", "symbol": "", "original": "strtol"}, "792": {"type": "MIPS_LO16", "symbol": "", "original": "strtol"}, "824": {"type": "MIPS_26", "symbol": "__srefill", "scope": "LIBRARY"}, "900": {"type": "MIPS_26", "symbol": "__srefill", "scope": "LIBRARY"}, "924": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "932": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "964": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "972": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1048": {"type": "MIPS_26", "symbol": "__srefill", "scope": "LIBRARY"}, "1136": {"type": "MIPS_26", "symbol": "fread", "scope": "LIBRARY"}, "1264": {"type": "MIPS_26", "symbol": "__srefill", "scope": "LIBRARY"}, "1396": {"type": "MIPS_26", "symbol": "__srefill", "scope": "LIBRARY"}, "1488": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "1496": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "1556": {"type": "MIPS_26", "symbol": "__srefill", "scope": "LIBRARY"}, "1608": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "1616": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "1688": {"type": "MIPS_26", "symbol": "__srefill", "scope": "LIBRARY"}, "1800": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1808": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1872": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1880": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1900": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1908": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2060": {"type": "MIPS_26", "symbol": "__srefill", "scope": "LIBRARY"}, "2120": {"type": "MIPS_26", "symbol": "ungetc", "scope": "LIBRARY"}, "2164": {"type": "MIPS_26", "symbol": "ungetc", "scope": "LIBRARY"}, "2452": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2460": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2688": {"type": "MIPS_26", "symbol": "__srefill", "scope": "LIBRARY"}, "2772": {"type": "MIPS_26", "symbol": "ungetc", "scope": "LIBRARY"}, "2848": {"type": "MIPS_26", "symbol": "ungetc", "scope": "LIBRARY"}, "2884": {"type": "MIPS_26", "symbol": "ungetc", "scope": "LIBRARY"}, "2968": {"type": "MIPS_26", "symbol": "atol", "scope": "LIBRARY"}, "3004": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3012": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3024": {"type": "MIPS_26", "symbol": "sprintf", "scope": "LIBRARY"}, "3044": {"type": "MIPS_26", "symbol": "atof", "scope": "LIBRARY"}, "31)PS2SDB", 8192}, + std::string_view{R"PS2SDB(12": {"type": "MIPS_26", "symbol": "dptofp"}}}}, "71538e61762ba9163a6b975b24e2e2a0c3f630fa": {"701caff1": {"type": "FUNCTION", "size": 2776, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"104": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "176": {"type": "MIPS_26", "symbol": "__srefill", "scope": "LIBRARY"}, "272": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "332": {"type": "MIPS_26", "symbol": "__srefill", "scope": "LIBRARY"}, "468": {"type": "MIPS_HI16", "symbol": "", "original": "strtol"}, "480": {"type": "MIPS_LO16", "symbol": "", "original": "strtol"}, "484": {"type": "MIPS_HI16", "symbol": "", "original": "strtol"}, "492": {"type": "MIPS_LO16", "symbol": "", "original": "strtol"}, "512": {"type": "MIPS_HI16", "symbol": "", "original": "strtoul"}, "520": {"type": "MIPS_LO16", "symbol": "", "original": "strtoul"}, "536": {"type": "MIPS_HI16", "symbol": "", "original": "strtoul"}, "544": {"type": "MIPS_LO16", "symbol": "", "original": "strtoul"}, "560": {"type": "MIPS_HI16", "symbol": "", "original": "strtoul"}, "600": {"type": "MIPS_26", "symbol": "__sccl", "scope": "LIBRARY", "original": ".text"}, "628": {"type": "MIPS_HI16", "symbol": "", "original": "strtoul"}, "636": {"type": "MIPS_LO16", "symbol": "", "original": "strtoul"}, "736": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "740": {"type": "MIPS_HI16", "symbol": "", "original": "strtol"}, "744": {"type": "MIPS_LO16", "symbol": "", "original": "strtol"}, "748": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "792": {"type": "MIPS_26", "symbol": "__srefill", "scope": "LIBRARY"}, "824": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "828": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "892": {"type": "MIPS_26", "symbol": "__srefill", "scope": "LIBRARY"}, "948": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "956": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1028": {"type": "MIPS_26", "symbol": "__srefill", "scope": "LIBRARY"}, "1108": {"type": "MIPS_26", "symbol": "fread", "scope": "LIBRARY"}, "1224": {"type": "MIPS_26", "symbol": "__srefill", "scope": "LIBRARY"}, "1352": {"type": "MIPS_26", "symbol": "__srefill", "scope": "LIBRARY"}, "1428": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "1436": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "1508": {"type": "MIPS_26", "symbol": "__srefill", "scope": "LIBRARY"}, "1544": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "1548": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "1640": {"type": "MIPS_26", "symbol": "__srefill", "scope": "LIBRARY"}, "1736": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1744": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1800": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1808": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1832": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1840": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1980": {"type": "MIPS_26", "symbol": "__srefill", "scope": "LIBRARY"}, "2032": {"type": "MIPS_26", "symbol": "ungetc", "scope": "LIBRARY"}, "2080": {"type": "MIPS_26", "symbol": "ungetc", "scope": "LIBRARY"}, "2304": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2312": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2448": {"type": "MIPS_26", "symbol": "__srefill", "scope": "LIBRARY"}, "2516": {"type": "MIPS_26", "symbol": "ungetc", "scope": "LIBRARY"}, "2572": {"type": "MIPS_26", "symbol": "ungetc", "scope": "LIBRARY"}, "2592": {"type": "MIPS_26", "symbol": "ungetc", "scope": "LIBRARY"}, "2616": {"type": "MIPS_26", "symbol": "atof", "scope": "LIBRARY"}, "2668": {"type": "MIPS_26", "symbol": "dptofp"}}}}, "5f385b75e05fbca7e65d1eb222d2ebe3264f7ee9": {"2a4f212d": {"type": "FUNCTION", "size": 2824, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.1.0", "2.1.4", "2.2.2", "2.3.0", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.5", "2.5.7", "2.7.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"108": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "176": {"type": "MIPS_26", "symbol": "__srefill", "scope": "LIBRARY"}, "264": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "316": {"type": "MIPS_26", "symbol": "__srefill", "scope": "LIBRARY"}, "448": {"type": "MIPS_HI16", "symbol": "", "original": "strtol"}, "456": {"type": "MIPS_LO16", "symbol": "", "original": "strtol"}, "476": {"type": "MIPS_HI16", "symbol": "", "original": "strtol"}, "484": {"type": "MIPS_LO16", "symbol": "", "original": "strtol"}, "504": {"type": "MIPS_HI16", "symbol": "", "original": "strtoul"}, "512": {"type": "MIPS_LO16", "symbol": "", "original": "strtoul"}, "532": {"type": "MIPS_HI16", "symbol": "", "original": "strtoul"}, "540": {"type": "MIPS_LO16", "symbol": "", "original": "strtoul"}, "560": {"type": "MIPS_HI16", "symbol": "", "original": "strtoul"}, "568": {"type": "MIPS_LO16", "symbol": "", "original": "strtoul"}, "612": {"type": "MIPS_26", "symbol": "__sccl", "scope": "LIBRARY", "original": ".text"}, "648": {"type": "MIPS_HI16", "symbol": "", "original": "strtoul"}, "656": {"type": "MIPS_LO16", "symbol": "", "original": "strtoul"}, "772": {"type": "MIPS_HI16", "symbol": "", "original": "strtol"}, "776": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "780": {"type": "MIPS_LO16", "symbol": "", "original": "strtol"}, "784": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "832": {"type": "MIPS_26", "symbol": "__srefill", "scope": "LIBRARY"}, "864": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "868": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "932": {"type": "MIPS_26", "symbol": "__srefill", "scope": "LIBRARY"}, "988": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "996": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1068": {"type": "MIPS_26", "symbol": "__srefill", "scope": "LIBRARY"}, "1148": {"type": "MIPS_26", "symbol": "fread", "scope": "LIBRARY"}, "1256": {"type": "MIPS_26", "symbol": "__srefill", "scope": "LIBRARY"}, "1384": {"type": "MIPS_26", "symbol": "__srefill", "scope": "LIBRARY"}, "1452": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "1460": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "1532": {"type": "MIPS_26", "symbol": "__srefill", "scope": "LIBRARY"}, "1560": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "1568": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "1664": {"type": "MIPS_26", "symbol": "__srefill", "scope": "LIBRARY"}, "1752": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1760": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1828": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1832": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1868": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1872": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2024": {"type": "MIPS_26", "symbol": "__srefill", "scope": "LIBRARY"}, "2080": {"type": "MIPS_26", "symbol": "ungetc", "scope": "LIBRARY"}, "2128": {"type": "MIPS_26", "symbol": "ungetc", "scope": "LIBRARY"}, "2352": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata")PS2SDB", 8192}, + std::string_view{R"PS2SDB(}, "2360": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2496": {"type": "MIPS_26", "symbol": "__srefill", "scope": "LIBRARY"}, "2564": {"type": "MIPS_26", "symbol": "ungetc", "scope": "LIBRARY"}, "2624": {"type": "MIPS_26", "symbol": "ungetc", "scope": "LIBRARY"}, "2644": {"type": "MIPS_26", "symbol": "ungetc", "scope": "LIBRARY"}, "2668": {"type": "MIPS_26", "symbol": "atof", "scope": "LIBRARY"}, "2720": {"type": "MIPS_26", "symbol": "dptofp"}}}}, "af4c52fb6a2448c74752681e474f1b033b6f4755": {"2be51d9e": {"type": "FUNCTION", "size": 3212, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"100": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "172": {"type": "MIPS_26", "symbol": "__srefill", "scope": "LIBRARY"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "268": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "312": {"type": "MIPS_26", "symbol": "__srefill", "scope": "LIBRARY"}, "452": {"type": "MIPS_HI16", "symbol": "", "original": "strtol"}, "464": {"type": "MIPS_LO16", "symbol": "", "original": "strtol"}, "472": {"type": "MIPS_HI16", "symbol": "", "original": "strtol"}, "480": {"type": "MIPS_LO16", "symbol": "", "original": "strtol"}, "500": {"type": "MIPS_HI16", "symbol": "", "original": "strtoul"}, "508": {"type": "MIPS_LO16", "symbol": "", "original": "strtoul"}, "528": {"type": "MIPS_HI16", "symbol": "", "original": "strtoul"}, "536": {"type": "MIPS_LO16", "symbol": "", "original": "strtoul"}, "552": {"type": "MIPS_HI16", "symbol": "", "original": "strtoul"}, "592": {"type": "MIPS_26", "symbol": "__sccl", "scope": "LIBRARY", "original": ".text"}, "640": {"type": "MIPS_HI16", "symbol": "", "original": "strtoul"}, "648": {"type": "MIPS_LO16", "symbol": "", "original": "strtoul"}, "768": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "776": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "784": {"type": "MIPS_HI16", "symbol": "", "original": "strtol"}, "792": {"type": "MIPS_LO16", "symbol": "", "original": "strtol"}, "824": {"type": "MIPS_26", "symbol": "__srefill", "scope": "LIBRARY"}, "900": {"type": "MIPS_26", "symbol": "__srefill", "scope": "LIBRARY"}, "924": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "932": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "964": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "972": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1048": {"type": "MIPS_26", "symbol": "__srefill", "scope": "LIBRARY"}, "1136": {"type": "MIPS_26", "symbol": "fread", "scope": "LIBRARY"}, "1264": {"type": "MIPS_26", "symbol": "__srefill", "scope": "LIBRARY"}, "1396": {"type": "MIPS_26", "symbol": "__srefill", "scope": "LIBRARY"}, "1488": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "1496": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "1556": {"type": "MIPS_26", "symbol": "__srefill", "scope": "LIBRARY"}, "1608": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "1616": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "1688": {"type": "MIPS_26", "symbol": "__srefill", "scope": "LIBRARY"}, "1800": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1808": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1872": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1880": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1900": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1908": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2060": {"type": "MIPS_26", "symbol": "__srefill", "scope": "LIBRARY"}, "2120": {"type": "MIPS_26", "symbol": "ungetc", "scope": "LIBRARY"}, "2164": {"type": "MIPS_26", "symbol": "ungetc", "scope": "LIBRARY"}, "2452": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2460": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2688": {"type": "MIPS_26", "symbol": "__srefill", "scope": "LIBRARY"}, "2772": {"type": "MIPS_26", "symbol": "ungetc", "scope": "LIBRARY"}, "2848": {"type": "MIPS_26", "symbol": "ungetc", "scope": "LIBRARY"}, "2884": {"type": "MIPS_26", "symbol": "ungetc", "scope": "LIBRARY"}, "2968": {"type": "MIPS_26", "symbol": "atol", "scope": "LIBRARY"}, "3004": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3012": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3024": {"type": "MIPS_26", "symbol": "sprintf", "scope": "LIBRARY"}, "3044": {"type": "MIPS_26", "symbol": "atof", "scope": "LIBRARY"}, "3112": {"type": "MIPS_26", "symbol": "dptofp"}}}}, "1664ec9466983d64cfbcf199c4ce7deed2a5e7b5": {"aa9f36c3": {"type": "FUNCTION", "size": 48, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "40": {"type": "MIPS_26", "symbol": "__svfscanf_r", "scope": "LIBRARY"}}}}}, "__sccl": {"f39cbfbd4f1f054619beafba6968c7b059f3f200": {"00000000": {"type": "FUNCTION", "size": 256, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "6b63c6d84631537e2cfa658ff56341e70fbf91d1": {"00000000": {"type": "FUNCTION", "size": 244, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}, "8c2dfbdefbed3a1909bd9c28e452384a9b0f6e38": {"00000000": {"type": "FUNCTION", "size": 260, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.1.0", "2.1.4", "2.2.2", "2.3.0", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.5", "2.5.7", "2.7.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "4aa2b624a4029c2e95eae97db4acaae04dfadfa8": {"00000000": {"type": "FUNCTION", "size": 232, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "vsprintf": {"d6f018a208db36422fe0225c01a966a1976a613c": {"2699df2a": {"type": "FUNCTION", "size": 84, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "56": {"type": "MIPS_26", "symbol": "vfprintf", "scope": "LIBRARY"}}}}, "0dec173a98ca55a298f6d9a7ff3ab78a6aed342f": {"2699df2a": {"type": "FUNCTION", "size": 84, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.3", "2.1.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.2", "2.4.3", "2.5.7", "2.7.0", "2.7.1", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "56": {"type": "MIPS_26", "symbol": "vfprintf", "scope": "LIBRARY"}}}}, "0e25b18a254de9fa6c574c54c26d390ef74332d7": {"825254a5": {"type": "FUNCTION", "size":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( 84, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "56": {"type": "MIPS_26", "symbol": "vfprintf", "scope": "LIBRARY"}}}}, "3fd6201a3e1553e8918bb249a514f57cdcba4480": {"d77b7919": {"type": "FUNCTION", "size": 84, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.4", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "56": {"type": "MIPS_26", "symbol": "vfprintf", "scope": "LIBRARY"}}}}}, "vsprintf_r": {"1bc1aa5f86e3cf4373a64786d6c25c9474e42788": {"a153faa5": {"type": "FUNCTION", "size": 84, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "vfprintf", "scope": "LIBRARY"}}}}}, "_write_r": {"045e7191ae6ac07db3d07fa348435e17db6a4cad": {"26b914e0": {"type": "FUNCTION", "size": 96, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "errno"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": "errno"}, "40": {"type": "MIPS_26", "symbol": "write"}}}}, "592a961e4d6502532bc9fdade83713b82c169e7f": {"d4e78581": {"type": "FUNCTION", "size": 96, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": "errno"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "errno"}, "36": {"type": "MIPS_26", "symbol": "write"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": "errno"}}}}, "0a75123c49b9d9adacda8f372b41e33d2e8825fe": {"d980b035": {"type": "FUNCTION", "size": 96, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": "errno"}, "40": {"type": "MIPS_26", "symbol": "write"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "errno"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": "errno"}}}}, "20be149b757aa6c350beb0b12e04fe99c61c45e5": {"5758f9fe": {"type": "FUNCTION", "size": 92, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": "errno"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "errno"}, "36": {"type": "MIPS_26", "symbol": "write"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": "errno"}}}}, "1c0010340b2b9a0061fe74ba1c4333c2d013708a": {"5758f9fe": {"type": "FUNCTION", "size": 92, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": "errno"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "errno"}, "36": {"type": "MIPS_26", "symbol": "write"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": "errno"}}}}}, "__swsetup": {"c7ae223b478a57b84a29eddb97e1213b512c494e": {"b7096cab": {"type": "FUNCTION", "size": 268, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "56": {"type": "MIPS_26", "symbol": "__sinit", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "_free_r", "scope": "LIBRARY"}, "184": {"type": "MIPS_26", "symbol": "__smakebuf", "scope": "LIBRARY"}}}}, "54de6b680b5e8993f7babc9e8fbaca1e0e27d03e": {"51715568": {"type": "FUNCTION", "size": 268, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.0", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "56": {"type": "MIPS_26", "symbol": "__sinit", "scope": "LIBRARY"}, "128": {"type": "MIPS_26", "symbol": "_free_r", "scope": "LIBRARY"}, "188": {"type": "MIPS_26", "symbol": "__smakebuf", "scope": "LIBRARY"}}}}, "91708d104d85ab53ab6530439c77b2df932d8224": {"972e4e13": {"type": "FUNCTION", "size": 272, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "60": {"type": "MIPS_26", "symbol": "__sinit", "scope": "LIBRARY"}, "132": {"type": "MIPS_26", "symbol": "_free_r", "scope": "LIBRARY"}, "192": {"type": "MIPS_26", "symbol": "__smakebuf", "scope": "LIBRARY"}}}}, "e0e8b495f005f87f52a9e4f2fbf10c898e362320": {"badef604": {"type": "FUNCTION", "size": 260, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "48": {"type": "MIPS_26", "symbol": "__sinit", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "_free_r", "scope": "LIBRARY"}, "176": {"type": "MIPS_26", "symbol": "__smakebuf", "scope": "LIBRARY"}}}}, "228c8c4f0645446a4ed6dbcdc2b2f4f1f0b5c536": {"badef604": {"type": "FUNCTION", "size": 268, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "48": {"type": "MIPS_26", "symbol": "__sinit", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "_free_r", "scope": "LIBRARY"}, "176": {"type": "MIPS_26", "symbol": "__smakebuf", "scope": "LIBRARY"}}}}, "56fd6a2cd4d6e1bb19fd743aad8af186d9e4a394": {"b7096cab": {"type": "FUNCTION", "size": 272, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "32": {"type": "MIPS_LO16", "symbol": ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(", "original": "_impure_ptr"}, "56": {"type": "MIPS_26", "symbol": "__sinit", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "_free_r", "scope": "LIBRARY"}, "184": {"type": "MIPS_26", "symbol": "__smakebuf", "scope": "LIBRARY"}}}}}, "malloc": {"c0ce24b2e7b96be6bc77a15c417ef49ffeb4fa09": {"00fcab35": {"type": "FUNCTION", "size": 84, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "28": {"type": "MIPS_26", "symbol": "__malloc_lock", "scope": "LIBRARY"}, "40": {"type": "MIPS_26", "symbol": "_malloc_r", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}}}}, "157e0d41ba111b85f0f92ff6dda2fd39cb51c8e7": {"164c772b": {"type": "FUNCTION", "size": 40, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "20": {"type": "MIPS_26", "symbol": "_malloc_r", "scope": "LIBRARY"}}}}, "7346349c936312f38f88ddb25c120f2c51f9124d": {"dfa4fd48": {"type": "FUNCTION", "size": 84, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "28": {"type": "MIPS_26", "symbol": "__malloc_lock", "scope": "LIBRARY"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "40": {"type": "MIPS_26", "symbol": "_malloc_r", "scope": "LIBRARY"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "52": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}}}}, "cf118ec2ffd1921f022112b507bf7a0f174de2d3": {"b7d59fde": {"type": "FUNCTION", "size": 32, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.4", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "24": {"type": "MIPS_26", "symbol": "_malloc_r", "scope": "LIBRARY"}}}}}, "free": {"303cd5c0a672d94a0c4b7fc5d154a1b9c5a0af0e": {"b66f9478": {"type": "FUNCTION", "size": 72, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "28": {"type": "MIPS_26", "symbol": "__malloc_lock", "scope": "LIBRARY"}, "40": {"type": "MIPS_26", "symbol": "_free_r", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}}}}, "2013f5455c8fe6b6a09e036ed372a984df680d0b": {"b573e1ca": {"type": "FUNCTION", "size": 16, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "8": {"type": "MIPS_26", "symbol": "_free_r", "scope": "LIBRARY"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}}}}, "d1626430c9a99ca7475ba966f0f4e52ef2906c28": {"9087170f": {"type": "FUNCTION", "size": 68, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "24": {"type": "MIPS_26", "symbol": "__malloc_lock", "scope": "LIBRARY"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "36": {"type": "MIPS_26", "symbol": "_free_r", "scope": "LIBRARY"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "60": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}}}}, "cf118ec2ffd1921f022112b507bf7a0f174de2d3": {"f11de977": {"type": "FUNCTION", "size": 32, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.4", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "24": {"type": "MIPS_26", "symbol": "_free_r", "scope": "LIBRARY"}}}}}, "setjmp": {"348622b557388c74c63a12e97fbc2b6c6b981b13": {"00000000": {"type": "FUNCTION", "size": 88, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3", "2.5.0", "2.5.2", "2.5.4", "2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.1-1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "fdaf5acfb45e46ed95e10a1aeaba3da83985e1a1": {"00000000": {"type": "FUNCTION", "size": 56, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "2.0.2", "2.0.7", "2.3.0", "2.4.2", "2.4.3"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "longjmp": {"0ab7fd94efd6cc2f48840b7cef02d444cfd2aba9": {"00000000": {"type": "FUNCTION", "size": 100, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3", "2.5.0", "2.5.2", "2.5.4", "2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.1-1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "f1f1fb3b43788dac7ddd17a26beecb6c24f4bb76": {"00000000": {"type": "FUNCTION", "size": 68, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "2.0.2", "2.0.7", "2.3.0", "2.4.2", "2.4.3"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "strcasecmp": {"be48d802719053a379f7a15073c0cd8b8419dbfc": {"d066813c": {"type": "FUNCTION", "size": 216, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"})PS2SDB", 8192}, + std::string_view{R"PS2SDB(, "176": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}}}}, "a02c570a2d1e39877d4c965d62d21a7118952e25": {"01592390": {"type": "FUNCTION", "size": 180, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.0.7", "2.1.3", "2.1.4", "2.2.0", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.7", "2.8.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}}}}, "21cedeef74de4a91c281ca038992eb17dfaa3ee9": {"58e627b9": {"type": "FUNCTION", "size": 164, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}}}}, "c78a47ec8ba428e9b95f1917989ab2fde2cfd7df": {"6250041f": {"type": "FUNCTION", "size": 168, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}}}}, "762a0d7e9b1805778186707c75d847d10ec6b583": {"2857df13": {"type": "FUNCTION", "size": 172, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}}}}}, "strchr": {"5805a9aa176fe7c27519cbdbfe3a24423109fafb": {"00000000": {"type": "FUNCTION", "size": 400, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.3", "2.1.4", "2.2.0", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "15267e273ebd8210e92bec01505375ae74e0d42b": {"00000000": {"type": "FUNCTION", "size": 400, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.1", "2.3.4", "2.4.3"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "d264d4334cb30d101da40c3b557568ad3e20a3c4": {"00000000": {"type": "FUNCTION", "size": 400, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}}, "strncat": {"95bdf06f52404421be74f9ccfa91061315d63ff2": {"00000000": {"type": "FUNCTION", "size": 428, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.2", "2.1.3", "2.1.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "strncmp": {"122e397f17bd808cb9351bd47c8c76df097e021b": {"00000000": {"type": "FUNCTION", "size": 440, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "strrchr": {"92d5bd6ec4f569a2a41791e2a36e7b82ebafd2a1": {"00000000": {"type": "FUNCTION", "size": 80, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.3", "2.0.2", "2.1.4", "2.2.2", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "bfdd954b7734048b9411b3f7a7daae499fb6e55a": {"825cbac2": {"type": "FUNCTION", "size": 100, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "strchr", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "strchr", "scope": "LIBRARY"}}}}, "23b713ae61c5f0fec5050107f089010fe1db7d21": {"00000000": {"type": "FUNCTION", "size": 76, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}}, "strstr": {"2eee8517aa77258180b06193a14cb2c647ac25a9": {"00000000": {"type": "FUNCTION", "size": 132, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "58aff69dc5f70927674bf646420eff60673efd04": {"00000000": {"type": "FUNCTION", "size": 108, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.2", "2.0.7", "2.1.4", "2.2.0", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.7", "2.7.0", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "bb44e57c99faf33753ca977b07f764182fb0cf73": {"00000000": {"type": "FUNCTION", "size": 80, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.1", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "toupper": {"0e26a28c1936aa39e8aff6398b464d094a73e442": {"b9e78b8c": {"type": "FUNCTION", "size": 32, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}}}}, "7c5328bcfd6686b525d78bfe0eff7bfab845fb69": {"d3e72eac": {"type": "FUNCTION", "size": 32, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.1", "1.5.3", "1.6.1", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.4", "2.2.0", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.2-3", "2.8.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}}}}, "6fde3c722982901c685b60d4a09636c66317833b": {"d3e72eac": {"type": "FUNCTION", "size": 36, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MI)PS2SDB", 8192}, + std::string_view{R"PS2SDB(PS_HI16", "symbol": "", "original": "_ctype_"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}}}}, "84adea816b9326692dfb45fae82c9155d5b329b4": {"d3e72eac": {"type": "FUNCTION", "size": 36, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.4", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}}}}}, "srand": {"d1687ebedd97b3b4de5b895f2089ec7a86027165": {"d3e72eac": {"type": "FUNCTION", "size": 24, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}}}}, "435f71dbfa5255fc37ac761336ccd6507277baea": {"d6ed632d": {"type": "FUNCTION", "size": 16, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.3", "2.1.4", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}}}}, "0e6e763c2c3c25e05190e068ea342a526d397212": {"d3e72eac": {"type": "FUNCTION", "size": 24, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}}}}}, "rand": {"0676307c435b6afc0d697b7c3e33255f28043760": {"edaa66ac": {"type": "FUNCTION", "size": 100, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "44": {"type": "MIPS_26", "symbol": "__muldi3"}}}}, "13544c4e9bfba186d43cdc24f25cc5f74c869e9b": {"d3e72eac": {"type": "FUNCTION", "size": 48, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.3", "2.1.4", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}}}}, "843797afb98afa91d0e6a7987fbace9d6cdceba0": {"9217ddce": {"type": "FUNCTION", "size": 104, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "44": {"type": "MIPS_26", "symbol": "__muldi3"}}}}, "f313b7a5d971531bbd499bf8a79b2eec3ef54dad": {"f201173a": {"type": "FUNCTION", "size": 88, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.4", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "28": {"type": "MIPS_26", "symbol": "__muldi3"}}}}, "56e42cf7477bdafe36e9ce4e6fc542cef3a2bc86": {"f201173a": {"type": "FUNCTION", "size": 88, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "28": {"type": "MIPS_26", "symbol": "__muldi3"}}}}}, "qsort": {"ecfb4828bbd87ecae0cf0b06842443a29f6c3e29": {"aaf4fd2c": {"type": "FUNCTION", "size": 2540, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.2", "2.4.3", "2.5.0", "2.5.4", "2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"2444": {"type": "MIPS_26", "symbol": "qsort", "scope": "LIBRARY", "original": ".text"}}}}, "f0cf05d51886dc3647a91cced97348e753175b8c": {"a0ee6feb": {"type": "FUNCTION", "size": 2532, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"2432": {"type": "MIPS_26", "symbol": "qsort", "scope": "LIBRARY", "original": ".text"}}}}, "9eb67451b377fee4b37bdf2a4b7a03b30fb09e3f": {"76a67604": {"type": "FUNCTION", "size": 2596, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.1.1", "2.1.4", "2.2.4", "2.3.0", "2.3.4", "2.4.2", "2.4.3", "2.5.5", "2.5.7", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"2496": {"type": "MIPS_26", "symbol": "qsort", "scope": "LIBRARY", "original": ".text"}}}}, "65a11c1e4e3b53839e64fae05d2cb32e5624d240": {"8dc15e8b": {"type": "FUNCTION", "size": 2508, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"2412": {"type": "MIPS_26", "symbol": "qsort", "scope": "LIBRARY", "original": ".text"}}}}, "8fb6b1ae3ee4c87c7c2ff8484ecbcb7a91f78d0e": {"7395edbd": {"type": "FUNCTION", "size": 2364, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"1724": {"type": "MIPS_26", "symbol": "qsort", "scope": "LIBRARY"}}}}}, "copysign": {"908edc6aa3cfd0e58485e44842992651e4b9af2a": {"00000000": {"type": "FUNCTION", "size": 68, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.3", "2.5.0", "2.5.2", "2.5.4", "2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "05063ca07881848348f06bf69cb7403b5ff248c2": {"00000000": {"type": "FUNCTION", "size": 68, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.1.4", "2.3.0", "2.4.2", "2.4.3", "2.5.7", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "82cd527db5c186f36204e7ca91c2fea962bc42dd": {"00000000": {"type": "FUNCTION", "size": 68, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "isinf": {"4bf661264efb0faaa887c8ca1fd7398a78fd43b3": {"00000000": {"type": "FUNCTION", "size": 72, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "f7f3)PS2SDB", 8192}, + std::string_view{R"PS2SDB(4b7484424ca83c922e254a0ea899091ba995": {"00000000": {"type": "FUNCTION", "size": 72, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.0.0", "2.0.2", "2.1.4", "2.2.0", "2.2.4", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.7", "2.7.2-3", "2.7.2", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "0b5ee578fb685f779c6fb2fb31c8e8b8bcd0f374": {"00000000": {"type": "FUNCTION", "size": 72, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "d7bd34ce4d1cf8dab170f5177c29b77b51e4b08c": {"00000000": {"type": "FUNCTION", "size": 72, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "isnan": {"5edf2a4c379fba1859b89d08e5c1f97a0bd39f7f": {"00000000": {"type": "FUNCTION", "size": 60, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "d80aa9725302177205136c75fabcf509c29d3f58": {"00000000": {"type": "FUNCTION", "size": 56, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.0.0", "2.0.2", "2.1.4", "2.2.0", "2.2.4", "2.3.0", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.7", "2.7.2-3", "2.7.2", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "3166d5146dd5c78ca58674e70bdd0ff3b85b4af8": {"00000000": {"type": "FUNCTION", "size": 56, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "03aba122ac3681cad8a0122731bb49ed55b9a540": {"00000000": {"type": "FUNCTION", "size": 56, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "scalbn": {"7bbcff44644fdcd8ea2b0903277effc647ff99b1": {"1935ff3c": {"type": "FUNCTION", "size": 484, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.3", "2.5.0", "2.5.2", "2.5.4", "2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"92": {"type": "MIPS_26", "symbol": "dpmul"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_26", "symbol": "dpmul"}, "188": {"type": "MIPS_26", "symbol": "dpadd"}, "216": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "324": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "328": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "336": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "356": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "364": {"type": "MIPS_26", "symbol": "copysign"}, "380": {"type": "MIPS_26", "symbol": "dpmul"}, "456": {"type": "MIPS_26", "symbol": "dpmul"}}}}, "f4adffd4b2b2da776593bce76a0db0b4e3be1d5c": {"95eda610": {"type": "FUNCTION", "size": 436, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.1.4", "2.3.0", "2.4.2", "2.4.3", "2.5.7", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"88": {"type": "MIPS_26", "symbol": "dpmul"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "156": {"type": "MIPS_26", "symbol": "dpadd"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "192": {"type": "MIPS_26", "symbol": "copysign"}, "292": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "300": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "304": {"type": "MIPS_26", "symbol": "copysign"}, "324": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "332": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "336": {"type": "MIPS_26", "symbol": "copysign"}, "408": {"type": "MIPS_26", "symbol": "dpmul"}}}}, "d4fba422139fe396b17fab32942a196eaa0863db": {"2d0881bf": {"type": "FUNCTION", "size": 424, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"92": {"type": "MIPS_26", "symbol": "dpmul"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_26", "symbol": "dpmul"}, "204": {"type": "MIPS_26", "symbol": "dpadd"}, "228": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "300": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "316": {"type": "MIPS_26", "symbol": "copysign"}, "340": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "348": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "copysignf": {"fc23602bf6c7e6eaa3a5695f409d949511a12f06": {"00000000": {"type": "FUNCTION", "size": 60, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "22a220af87d70072c505412fbadcdf53d6781a5a": {"00000000": {"type": "FUNCTION", "size": 48, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.1.4", "2.3.0", "2.4.1", "2.5.7", "2.7.2-3", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "7b7b1bb31d2c281731a440bbf7020896eca05d03": {"00000000": {"type": "FUNCTION", "size": 44, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "86d950503183c4de4794db1f07bb8c901d94edaf": {"00000000": {"type": "FUNCTION", "size": 40, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "c4ce5266b36e929a791187b9e1e1c6b03464230c": {"00000000": {"type": "FUNCTION", "size": 28, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "modff": {"81ca62a7404a77eda4f43d3692a392b55131d8cc": {"00000000": {"type": "FUNCTION", "size": 140, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.5", "2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "scalbnf": {"2926b05b163b7046fd2d9d01650244d6802cf677": {"4d7482b9": {"type": "FUNCTION", "size": 200, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"172": {"type": "MIPS_26", "symbol": "copysignf"}}}}, "6438c997e4293cbbc11716437c584b977e36544b": {"9dd2fe22": {"type": "FUNCTION", "size": 352, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.1.4", "2.3.0", "2.4.1", "2.5.7", "2.7.2-3", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"276": {"type": "MIPS_26", "symbol": "copysignf"}}}}, "5d2e13a18aa4352f6b656f99fb1be4bc89b1cfca": {"4d7482b9": {"type": "FUNCTION", "size": 200, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.2", "2.5.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"172": {"type": "MIPS_26", "symbol": "copysignf"}}}}, "4998b910fb9d7a)PS2SDB", 8192}, + std::string_view{R"PS2SDB(35227fe19f1f2d7a015f65cbea": {"81d32368": {"type": "FUNCTION", "size": 180, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"156": {"type": "MIPS_26", "symbol": "copysignf"}}}}, "8ef6aa844fc32ee72556a823c8ff3df6666144a8": {"2bad56f6": {"type": "FUNCTION", "size": 172, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_26", "symbol": "copysignf"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "10805bc45cf18164940d529487ac9f15615998af": {"eb897a0c": {"type": "FUNCTION", "size": 372, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "fpmul"}, "140": {"type": "MIPS_26", "symbol": "fpadd"}, "180": {"type": "MIPS_26", "symbol": "copysignf"}, "268": {"type": "MIPS_26", "symbol": "copysignf"}, "296": {"type": "MIPS_26", "symbol": "copysignf"}, "344": {"type": "MIPS_26", "symbol": "fpmul"}}}}}, "bcopy": {"8032632324603912d3f08c94ad71a1d6f205de26": {"a11c8a6d": {"type": "FUNCTION", "size": 32, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.2", "2.5.0", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "memmove", "scope": "LIBRARY"}}}}, "65016b91adae57405a6cd9168df54273b13ca7f6": {"151b2cb7": {"type": "FUNCTION", "size": 16, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "2.1.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "memmove", "scope": "LIBRARY"}}}}}, "bzero": {"88f81d2e507b6fcae254985aa5254722abc41040": {"00000000": {"type": "FUNCTION", "size": 52, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "dd31f0c19b9b568483a7bd02c796998418e5b3a8": {"00000000": {"type": "FUNCTION", "size": 52, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.7", "2.1.4", "2.2.2", "2.2.4", "2.4.0", "2.4.2", "2.4.3", "2.5.4", "2.7.0", "2.7.2", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "686c2a3d4f69823991cd6d94f7ad1b0ad623a389": {"00000000": {"type": "FUNCTION", "size": 52, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "d6fed887fc309d7c5579b7bbc4f977bc404cfc40": {"00000000": {"type": "FUNCTION", "size": 52, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.4"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}}, "calloc": {"975aa3aa784aa66a61bf918ea3b7b4f056446ff1": {"106d1141": {"type": "FUNCTION", "size": 100, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.2", "2.4.3", "2.5.0", "2.5.4", "2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "36": {"type": "MIPS_26", "symbol": "__malloc_lock", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "_calloc_r", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}}}}, "fbc95b4fdc11eb9a2ddfb232421a397dc38fddb6": {"bb84da67": {"type": "FUNCTION", "size": 44, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "2.0.2", "2.1.0", "2.4.1", "2.4.2", "2.4.3", "2.7.2-3", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "24": {"type": "MIPS_26", "symbol": "_calloc_r", "scope": "LIBRARY"}}}}}, "exit": {"cb3eecf5aecd0cec5335efed5f4018fc08a4567c": {"db124854": {"type": "FUNCTION", "size": 172, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "164": {"type": "MIPS_26", "symbol": "_exit"}}}}, "4c1e7b9e10707faed4d4ca2750ed9fdc4294b43c": {"4385457a": {"type": "FUNCTION", "size": 176, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.1", "1.6.5", "2.0.2", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.3", "2.5.4", "2.5.7", "2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "168": {"type": "MIPS_26", "symbol": "_exit"}}}}, "0d395d82f9f221725e8cf0c7f9abf9a31e8f263f": {"58ad342b": {"type": "FUNCTION", "size": 172, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "164": {"type": "MIPS_26", "symbol": "_exit"}}}}, "e69718b0d1115099a20360ef9da60a61ab047d6e": {"dda6cd8e": {"type": "FUNCTION", "size": 140, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "132": {"type": "MIPS_26", "symbol": "_exit"}}}}, "4b9140d38abca9e94c19940210ea36a973485774": {"2ffced38": {"type": "FUNCTION", "size": 136, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.4", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "128": {"type": "MIPS_26", "symbol": "_exit"}}}}, "a2683e8b97517d972aa13d97569e6e59dc29a2d1": {"2ffced38": {"type": "FUNCTION", "size": 136, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "104": {"type")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "128": {"type": "MIPS_26", "symbol": "_exit"}}}}}, "memalign": {"975aa3aa784aa66a61bf918ea3b7b4f056446ff1": {"8905280f": {"type": "FUNCTION", "size": 100, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "36": {"type": "MIPS_26", "symbol": "__malloc_lock", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "_memalign_r", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}}}}, "fbc95b4fdc11eb9a2ddfb232421a397dc38fddb6": {"8c94deee": {"type": "FUNCTION", "size": 44, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.6.5", "2.0.2", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "24": {"type": "MIPS_26", "symbol": "_memalign_r", "scope": "LIBRARY"}}}}, "ed16043f08fb57e3ff8d85ca686985925d98892c": {"19e738a4": {"type": "FUNCTION", "size": 96, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "32": {"type": "MIPS_26", "symbol": "__malloc_lock", "scope": "LIBRARY"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "48": {"type": "MIPS_26", "symbol": "_memalign_r", "scope": "LIBRARY"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "60": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}}}}, "6b963bebadef9673cdf9a0b21c6186f7afca30d3": {"2960c42a": {"type": "FUNCTION", "size": 40, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.4", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "32": {"type": "MIPS_26", "symbol": "_memalign_r", "scope": "LIBRARY"}}}}}, "_memalign_r": {"80e3c9ce753a12bd0896007bb2f42050f423b745": {"1c33178d": {"type": "FUNCTION", "size": 456, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"72": {"type": "MIPS_26", "symbol": "_malloc_r", "scope": "LIBRARY"}, "132": {"type": "MIPS_26", "symbol": "_malloc_r", "scope": "LIBRARY"}, "156": {"type": "MIPS_26", "symbol": "__malloc_lock", "scope": "LIBRARY"}, "172": {"type": "MIPS_26", "symbol": "__umoddi3"}, "288": {"type": "MIPS_26", "symbol": "_free_r", "scope": "LIBRARY"}, "404": {"type": "MIPS_26", "symbol": "_free_r", "scope": "LIBRARY"}, "412": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}}}}, "32eddd0eefbba755567242dc064bea974eb242f5": {"7fe6814e": {"type": "FUNCTION", "size": 464, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.6.5", "2.0.2", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "_malloc_r", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "_malloc_r", "scope": "LIBRARY"}, "152": {"type": "MIPS_26", "symbol": "__malloc_lock", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "__umoddi3"}, "288": {"type": "MIPS_26", "symbol": "_free_r", "scope": "LIBRARY"}, "408": {"type": "MIPS_26", "symbol": "_free_r", "scope": "LIBRARY"}, "416": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}}}}, "09fe41f7a45358bd3de7876bab9d72011c6d5a2d": {"5870e1f2": {"type": "FUNCTION", "size": 448, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"72": {"type": "MIPS_26", "symbol": "_malloc_r", "scope": "LIBRARY"}, "120": {"type": "MIPS_26", "symbol": "_malloc_r", "scope": "LIBRARY"}, "144": {"type": "MIPS_26", "symbol": "__malloc_lock", "scope": "LIBRARY"}, "160": {"type": "MIPS_26", "symbol": "__umoddi3"}, "276": {"type": "MIPS_26", "symbol": "_free_r", "scope": "LIBRARY"}, "376": {"type": "MIPS_26", "symbol": "_free_r", "scope": "LIBRARY"}, "384": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}}}}, "c9f1b2a6fa8db2200654b1ba6e355b68b5390d88": {"e6e1902b": {"type": "FUNCTION", "size": 456, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.4", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"80": {"type": "MIPS_26", "symbol": "_malloc_r", "scope": "LIBRARY"}, "128": {"type": "MIPS_26", "symbol": "_malloc_r", "scope": "LIBRARY"}, "152": {"type": "MIPS_26", "symbol": "__malloc_lock", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "__umoddi3"}, "284": {"type": "MIPS_26", "symbol": "_free_r", "scope": "LIBRARY"}, "380": {"type": "MIPS_26", "symbol": "_free_r", "scope": "LIBRARY"}, "388": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}}}}}, "index": {"c0a5a6b6b96e3534f1ce618782a40e20574c6678": {"e3f950a5": {"type": "FUNCTION", "size": 20, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "strchr", "scope": "LIBRARY"}}}}, "7ba17f652620d1a8770717ffc05543c774ba24f8": {"e0ff6bda": {"type": "FUNCTION", "size": 28, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.1", "1.5.3", "1.6.1", "1.6.5", "2.0.2", "2.0.7", "2.1.3", "2.1.4", "2.2.0", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.7.0", "2.7.2-3", "2.8.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "strchr", "scope": "LIBRARY"}}}}}, "strupr": {"b5156df365956abb246d6e05d075ed2ae6b3c522": {"60bcc029": {"type": "FUNCTION", "size": 76, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}}}}, "91920a7c9c038cbf57377ee84d4afbf82e2b85ed": {"b2b1fc97": {"type": "FUNCTION", "size": 84, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.2.0", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}}}}, "8373788ce0ef94f4f5dfbd051bb46951a7ab64a9": {"62f8174f": {"type": "FUNCTION", "size": 72, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5)PS2SDB", 8192}, + std::string_view{R"PS2SDB(.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}}}}}, "abort": {"dc399031cd647bda6e520ebb1b03c781714fdbbe": {"b26e03d9": {"type": "FUNCTION", "size": 24, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "raise", "scope": "LIBRARY"}, "16": {"type": "MIPS_26", "symbol": "_exit"}}}}, "3dd838b688fc894fc831fa8da2371b5c345049a3": {"b26e03d9": {"type": "FUNCTION", "size": 32, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.4", "2.2.2", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.2", "2.4.3", "2.5.4", "2.5.7", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "raise", "scope": "LIBRARY"}, "16": {"type": "MIPS_26", "symbol": "_exit"}}}}}, "bsearch": {"952006f9ab6f7b1568f42960ae26dce12785c119": {"00000000": {"type": "FUNCTION", "size": 204, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3", "2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "57fe52fb5ec5ce0773dec8490e77ee4c10f59df1": {"00000000": {"type": "FUNCTION", "size": 212, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3", "2.7.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "fprintf": {"787bfade542f8f83f118773185c2b6a0781da625": {"786557d6": {"type": "FUNCTION", "size": 84, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3", "2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_26", "symbol": "vfprintf", "scope": "LIBRARY"}}}}, "ca4d670356350ecdf5ef2004364978c9ad0c23d9": {"f4b8d8ff": {"type": "FUNCTION", "size": 52, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.1.0", "2.2.4", "2.3.0", "2.4.1", "2.4.2", "2.4.3", "2.5.7", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "vfprintf", "scope": "LIBRARY"}}}}, "bfc122f8f0bb1bce73709fbc63f5bb7fa5f24566": {"f4b8d8ff": {"type": "FUNCTION", "size": 52, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "vfprintf", "scope": "LIBRARY"}}}}}, "fseek": {"e074fefc05ed81fd8e1472c2b0e07e2f4754ea69": {"ffdd351f": {"type": "FUNCTION", "size": 1196, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.3", "2.5.0", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "92": {"type": "MIPS_26", "symbol": "__sinit", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "fflush", "scope": "LIBRARY"}, "200": {"type": "MIPS_26", "symbol": "fflush", "scope": "LIBRARY"}, "408": {"type": "MIPS_26", "symbol": "__smakebuf", "scope": "LIBRARY"}, "436": {"type": "MIPS_HI16", "symbol": "__sseek"}, "440": {"type": "MIPS_LO16", "symbol": "__sseek"}, "468": {"type": "MIPS_26", "symbol": "_fstat_r", "scope": "LIBRARY"}, "552": {"type": "MIPS_26", "symbol": "_fstat_r", "scope": "LIBRARY"}, "844": {"type": "MIPS_26", "symbol": "_free_r", "scope": "LIBRARY"}, "940": {"type": "MIPS_26", "symbol": "_free_r", "scope": "LIBRARY"}, "980": {"type": "MIPS_26", "symbol": "__srefill", "scope": "LIBRARY"}, "1040": {"type": "MIPS_26", "symbol": "fflush", "scope": "LIBRARY"}, "1112": {"type": "MIPS_26", "symbol": "_free_r", "scope": "LIBRARY"}}}}, "e6f543a0f37382e7ffea2ed7722fbfafa6dafa29": {"4178ff4b": {"type": "FUNCTION", "size": 1164, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.1.0", "2.1.4", "2.3.0", "2.3.2", "2.4.2", "2.4.3", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"60": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "92": {"type": "MIPS_26", "symbol": "__sinit", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "fflush", "scope": "LIBRARY"}, "200": {"type": "MIPS_26", "symbol": "fflush", "scope": "LIBRARY"}, "392": {"type": "MIPS_26", "symbol": "__smakebuf", "scope": "LIBRARY"}, "420": {"type": "MIPS_HI16", "symbol": "__sseek"}, "424": {"type": "MIPS_LO16", "symbol": "__sseek"}, "448": {"type": "MIPS_26", "symbol": "_fstat_r", "scope": "LIBRARY"}, "536": {"type": "MIPS_26", "symbol": "_fstat_r", "scope": "LIBRARY"}, "820": {"type": "MIPS_26", "symbol": "_free_r", "scope": "LIBRARY"}, "916": {"type": "MIPS_26", "symbol": "_free_r", "scope": "LIBRARY"}, "956": {"type": "MIPS_26", "symbol": "__srefill", "scope": "LIBRARY"}, "1012": {"type": "MIPS_26", "symbol": "fflush", "scope": "LIBRARY"}, "1080": {"type": "MIPS_26", "symbol": "_free_r", "scope": "LIBRARY"}}}}, "26f5b637ce53fd3544e61e0170df6a908fc4cbb7": {"45e7a83f": {"type": "FUNCTION", "size": 1160, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"60": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "88": {"type": "MIPS_26", "symbol": "__sinit", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "fflush", "scope": "LIBRARY"}, "192": {"type": "MIPS_26", "symbol": "fflush", "scope": "LIBRARY"}, "376": {"type": "MIPS_26", "symbol": "__smakebuf", "scope": "LIBRARY"}, "404": {"type": "MIPS_HI16", "symbol": "__sseek"}, "408": {"type": "MIPS_LO16", "symbol": "__sseek"}, "432": {"type": "MIPS_26", "symbol": "_fstat_r", "scope": "LIBRARY"}, "520": {"type": "MIPS_26", "symbol": "_fstat_r", "scope": "LIBRARY"}, "816": {"type": "MIPS_26", "symbol": "_free_r", "scope": "LIBRARY"}, "912": {"type": "MIPS_26", "symbol": "_free_r", "scope": "LIBRARY"}, "952": {"type": "MIPS_26", "symbol": "__srefill", "scope": "LIBRARY"}, "1008": {"type": "MIPS_26", "symbol": "fflush", "scope": "LIBRARY"}, "1076": {"type": "MIPS_26", "symbol": "_free_r", "scope": "LIBRARY"}}}}}, "ftell": {"3cdebd9308d47c88b0163341c027dd0470483000": {"2c6626b9": {"type": "FUNCTION", "size": 260, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.3", "2.5.0", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "56": {"type": "MIPS_26", "symbol": "__sinit", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "fflush", "scope": "LIBRARY"}}}}, "3398788bafaa7bc9986a187faacd36850d51f0d2": {"3d455d3c": {"type": "FUNCTION", "size": 252, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.3.0", "2.4.2", "2.4.3", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "56": {"type": "MIPS_26", "symbol": "__sinit", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "fflush", "scope": "LIBRARY"}}}}}, "isalnum": {"11cd6d84467ac7554a7fdabf3ce99b4ad22937b1": {"d3e72eac": {"type": "FUNCTION", "size": 20, "library": )PS2SDB", 8192}, + std::string_view{R"PS2SDB("libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}}}}}, "isalpha": {"50557d63b53a4ba8e92922d6819a7d19fa995905": {"d3e72eac": {"type": "FUNCTION", "size": 20, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}}}}}, "isdigit": {"f76d07dc132b0f5a5cc6e1aab12de489c859f2f1": {"d3e72eac": {"type": "FUNCTION", "size": 20, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}}}}, "4db9dee77b6fcaa48b6d459d77258a24b53d9082": {"d6ed632d": {"type": "FUNCTION", "size": 24, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}}}}}, "isxdigit": {"456d340e68011887f824ac6a5de2e10cf89a161b": {"d3e72eac": {"type": "FUNCTION", "size": 20, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}}}}}, "realloc": {"975aa3aa784aa66a61bf918ea3b7b4f056446ff1": {"61ce2ade": {"type": "FUNCTION", "size": 100, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.3", "2.5.0", "2.5.2", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "36": {"type": "MIPS_26", "symbol": "__malloc_lock", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "_realloc_r", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}}}}, "fbc95b4fdc11eb9a2ddfb232421a397dc38fddb6": {"e16f35c7": {"type": "FUNCTION", "size": 44, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.4", "2.3.0", "2.4.0", "2.4.2", "2.4.3", "2.5.7", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "24": {"type": "MIPS_26", "symbol": "_realloc_r", "scope": "LIBRARY"}}}}}, "__srget": {"dd85dbe00199c8dd3760b5f8534a2675de59b739": {"1dad79a5": {"type": "FUNCTION", "size": 72, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "__srefill", "scope": "LIBRARY"}}}}, "26fc2e0a65d73151500f3db7ebb168a2635e9b1c": {"1dad79a5": {"type": "FUNCTION", "size": 72, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.3.0", "2.4.2", "2.4.3", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "__srefill", "scope": "LIBRARY"}}}}}, "_init_signal_r": {"c9ba1d2cb5598ef26023090a68573698272d57c2": {"2451ac98": {"type": "FUNCTION", "size": 112, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "_malloc_r", "scope": "LIBRARY"}}}}, "3d5aa63d9f32807d67d65d6a1c088d8276bf0be9": {"2451ac98": {"type": "FUNCTION", "size": 112, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.4", "2.2.2", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.2", "2.4.3", "2.5.4", "2.5.7", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "_malloc_r", "scope": "LIBRARY"}}}}, "e39b9e7610e3006c31c6ccbc0f3e14183e469862": {"2451ac98": {"type": "FUNCTION", "size": 112, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "_malloc_r", "scope": "LIBRARY"}}}}}, "_signal_r": {"05833c5a8b0193e5706dca4314a5e8aa95059059": {"aec61554": {"type": "FUNCTION", "size": 128, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "_init_signal_r", "scope": "LIBRARY", "original": ".text"}}}}, "7c37aa67e63342af79013d52fd4e4a93d284d504": {"7df028bf": {"type": "FUNCTION", "size": 140, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.4", "2.2.2", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.2", "2.4.3", "2.5.4", "2.5.7", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"72": {"type": "MIPS_26", "symbol": "_init_signal_r", "scope": "LIBRARY", "original": ".text"}}}}}, "_raise_r": {"998c43bc1305a971dda85c8175406e3375f38bab": {"e07b11ed": {"type": "FUNCTION", "size": 216, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "_init_signal_r", "scope": "LIBRARY", "original": ".text"}, "100": {"type": "MIPS_26", "symbol": "_getpid_r", "scope": "LIBRARY"}, "132": {"type": "MIPS_26", "symbol": "_kill_r", "scope": "LIBRARY"}}}}, "17f12d3faf9016141bb5e9ef7c6516a50750884e": {"b4df64e1": {"type": "FUNCTION", "size": 240, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.4", "2.2.2", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.2", "2.4.3", "2.5.4", "2.5.7", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "_init_signal_r", "scope": "LIBRARY", "original": ".text"}, "152": {"type": "MIPS_26", "symbol": "_getpid_r", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "_kill_r", "scope": "LIBRARY"}}}}, "1783ffc34abc1248fdaa1ae4e0913efe7dcd5ccb": {"7a948bce": {"type": "FUNCTION", "size": 248, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "_init_signal_r", "scope": "LIBRARY", "original": ".text"}, "160": {"type": "MIPS_26", "symbol": "_getpid_r", "scope": "LIBRARY"}, "176": {"type": "MIPS_26", "symbol": "_kill_r", "scope": "LIBRARY"}}}}}, "__sigtramp_r": {"45155d4259588ff7e97fea8dfd1e699b7a0cbcb5": {"2fe9a535": {"type": "FUNCTION", "size": 152, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.4", "2.5.)PS2SDB", 8192}, + std::string_view{R"PS2SDB(5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "_init_signal_r", "scope": "LIBRARY", "original": ".text"}}}}, "0ca45dc6f44340a7ca2a2d87650cd61c74255edf": {"1c1933fb": {"type": "FUNCTION", "size": 184, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.4", "2.2.2", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.2", "2.4.3", "2.5.4", "2.5.7", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "_init_signal_r", "scope": "LIBRARY", "original": ".text"}}}}, "9f2eec9a302911949abcc7bb98b81055373ae85f": {"1c1933fb": {"type": "FUNCTION", "size": 196, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "_init_signal_r", "scope": "LIBRARY", "original": ".text"}}}}}, "raise": {"45a957597614ead53556beec3fc8de6381df4adf": {"ba7feb7e": {"type": "FUNCTION", "size": 32, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "24": {"type": "MIPS_26", "symbol": "_raise_r", "scope": "LIBRARY", "original": ".text"}}}}, "157e0d41ba111b85f0f92ff6dda2fd39cb51c8e7": {"45659a49": {"type": "FUNCTION", "size": 40, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.4", "2.2.2", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.2", "2.4.3", "2.5.4", "2.5.7", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "20": {"type": "MIPS_26", "symbol": "_raise_r", "scope": "LIBRARY", "original": ".text"}}}}}, "signal": {"5405aed249097711e49d978547402ef104165c63": {"e46938a0": {"type": "FUNCTION", "size": 36, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "28": {"type": "MIPS_26", "symbol": "_signal_r", "scope": "LIBRARY", "original": ".text"}}}}, "fbc95b4fdc11eb9a2ddfb232421a397dc38fddb6": {"0f543686": {"type": "FUNCTION", "size": 44, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.4", "2.2.2", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.2", "2.4.3", "2.5.4", "2.5.7", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "24": {"type": "MIPS_26", "symbol": "_signal_r", "scope": "LIBRARY", "original": ".text"}}}}}, "_init_signal": {"0470523b4a3338aceee4b6c2b0c6622894e5e22f": {"b99fe0db": {"type": "FUNCTION", "size": 28, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "20": {"type": "MIPS_26", "symbol": "_init_signal_r", "scope": "LIBRARY", "original": ".text"}}}}, "962b2bfbb1cb7206515a99984a92d47334361f8e": {"2e58f020": {"type": "FUNCTION", "size": 36, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.4", "2.2.2", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.2", "2.4.3", "2.5.4", "2.5.7", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "16": {"type": "MIPS_26", "symbol": "_init_signal_r", "scope": "LIBRARY", "original": ".text"}}}}}, "__sigtramp": {"45a957597614ead53556beec3fc8de6381df4adf": {"59ecde48": {"type": "FUNCTION", "size": 32, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "24": {"type": "MIPS_26", "symbol": "__sigtramp_r", "scope": "LIBRARY", "original": ".text"}}}}, "157e0d41ba111b85f0f92ff6dda2fd39cb51c8e7": {"fc0c0961": {"type": "FUNCTION", "size": 40, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.4", "2.2.2", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.2", "2.4.3", "2.5.4", "2.5.7", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "20": {"type": "MIPS_26", "symbol": "__sigtramp_r", "scope": "LIBRARY", "original": ".text"}}}}}, "_kill_r": {"63ea1b1eba0739f47d4515a6a350d0f6f5d44fea": {"11d51458": {"type": "FUNCTION", "size": 92, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "errno"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": "errno"}, "36": {"type": "MIPS_26", "symbol": "kill"}}}}, "5cd7b112a7a4b22caffe1430d56a400e559c1538": {"cda19c05": {"type": "FUNCTION", "size": 92, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.4", "2.2.2", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.2", "2.4.3", "2.5.4", "2.5.7", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": "errno"}, "32": {"type": "MIPS_26", "symbol": "kill"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": "errno"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": "errno"}}}}}, "_getpid_r": {"c0a5a6b6b96e3534f1ce618782a40e20574c6678": {"568d634b": {"type": "FUNCTION", "size": 20, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "getpid"}}}}, "7ba17f652620d1a8770717ffc05543c774ba24f8": {"558b5834": {"type": "FUNCTION", "size": 28, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versio)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ns": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.5.1", "1.5.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.4", "2.2.2", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.2", "2.4.3", "2.5.4", "2.5.7", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "getpid"}}}}}, "tolower": {"80237e8b6a255199eee535eb59a949bb45c74418": {"b9e78b8c": {"type": "FUNCTION", "size": 32, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.1", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}}}}, "595e6d53a3d07d854d4b7c9337a6523c008c269b": {"d3e72eac": {"type": "FUNCTION", "size": 32, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.2", "2.1.0", "2.1.4", "2.2.0", "2.3.0", "2.4.0", "2.4.1", "2.4.2", "2.5.7", "2.7.1", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}}}}, "6be5847c79e0f847c293c9fb51ce400d51f11ce1": {"d3e72eac": {"type": "FUNCTION", "size": 36, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.4", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}}}}}, "__swbuf": {"bc0ea60c29b24fd149a4a66f818a90f39e96723f": {"23993f08": {"type": "FUNCTION", "size": 272, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "60": {"type": "MIPS_26", "symbol": "__sinit", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "__swsetup", "scope": "LIBRARY"}, "144": {"type": "MIPS_26", "symbol": "fflush", "scope": "LIBRARY"}, "232": {"type": "MIPS_26", "symbol": "fflush", "scope": "LIBRARY"}}}}, "66a957ee64a3302f87dbf451a8efd08dfcd58a55": {"23993f08": {"type": "FUNCTION", "size": 276, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.3.2", "2.4.2", "2.4.3"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"32": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "60": {"type": "MIPS_26", "symbol": "__sinit", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "__swsetup", "scope": "LIBRARY"}, "144": {"type": "MIPS_26", "symbol": "fflush", "scope": "LIBRARY"}, "232": {"type": "MIPS_26", "symbol": "fflush", "scope": "LIBRARY"}}}}}, "strlwr": {"9b9fbec8f67d91bc99996bae0ee414a78ba437ff": {"b2b1fc97": {"type": "FUNCTION", "size": 84, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.0.7", "2.1.0", "2.1.4", "2.2.0", "2.3.0", "2.3.2", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}}}}, "a9470de9c999da2d549cdebbd818f3b9149ad803": {"60bcc029": {"type": "FUNCTION", "size": 76, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.5", "2.7.0", "2.7.1", "2.8.1", "3.0.1", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}}}}}, "strtok": {"a0ff8d9cae0be4d061ae464ed0f25a1a535a0bc4": {"ed87dacf": {"type": "FUNCTION", "size": 36, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.2", "2.1.4", "2.2.0", "2.3.0", "2.4.0", "2.4.2", "2.4.3", "2.5.7", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "16": {"type": "MIPS_26", "symbol": "strtok_r", "scope": "LIBRARY"}}}}, "7fb4f71704f150a3ef1e09e97bc3b4d8776ede1f": {"affaaf6c": {"type": "FUNCTION", "size": 32, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.3", "2.5.0", "2.5.4", "2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "24": {"type": "MIPS_26", "symbol": "strtok_r", "scope": "LIBRARY"}}}}}, "strtok_r": {"93ea4c5768fa95e3bf9c22f9b273fd01ba1a43d5": {"00000000": {"type": "FUNCTION", "size": 156, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.2", "2.1.4", "2.2.0", "2.3.0", "2.4.0", "2.4.2", "2.4.3", "2.5.7", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "ee8c49f80b37bde43ab6f3aaf1c3b6122ae7c8b2": {"00000000": {"type": "FUNCTION", "size": 200, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.1", "2.4.3", "2.5.0", "2.5.4", "2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "__assert": {"1e5e8508fcb2b6339867967341f4c471ab5a19aa": {"90fc7679": {"type": "FUNCTION", "size": 52, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.1", "1.5.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.4", "2.3.0", "2.3.2", "2.3.4", "2.4.2", "2.4.3", "2.5.0", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_26", "symbol": "fiprintf", "scope": "LIBRARY"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "44": {"type": "MIPS_26", "symbol": "abort", "scope": "LIBRARY"}}}}}, "fiprintf": {"787bfade542f8f83f118773185c2b6a0781da625": {"4537891f": {"type": "FUNCTION", "size": 84, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.2", "2.4.3", "2.5.0", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_26", "symbol": "vfiprintf", "scope": "LIBRARY"}}}}, "ca4d670356350ecdf5ef2004364978c9ad0c23d9": {"0709ccfc": {"type": "FUNCTION", "size": 52, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.4", "2.3.0", "2.3.2", "2.3.4", "2.4.2", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "vfiprintf", "scope": "LIBRARY"}}}}, "f4933e8baccd7b9660f01821d425e66186c782f6": {"436b53b3": {"type": "FUNCTION", "size": 68, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "vfiprintf", "scope": "LIBRARY"}}}}}, "vfiprintf": {"1c9c7ce7320f821bded210486cab472e4c87afce": {"82bc90da": {"type": "FUNCTION", "size": 116, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.2", "2.4.3", "2.5.0")PS2SDB", 8192}, + std::string_view{R"PS2SDB(, "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "68": {"type": "MIPS_26", "symbol": "__sinit", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "_vfiprintf_r", "scope": "LIBRARY", "original": ".text"}}}}, "fd14fa8bb9e8cc57e37223328d03375d7ac6a8b2": {"faf1a3f4": {"type": "FUNCTION", "size": 120, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.4", "2.3.0", "2.3.2", "2.3.4", "2.4.2", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"40": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "68": {"type": "MIPS_26", "symbol": "__sinit", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "_vfiprintf_r", "scope": "LIBRARY", "original": ".text"}}}}, "76938fe16c2fcd234cd9b689d795899cf175a15d": {"cddd6dbf": {"type": "FUNCTION", "size": 48, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "_vfiprintf_r", "scope": "LIBRARY", "original": ".text"}}}}}, "_vfiprintf_r": {"227b2a339bd2ea920aee63ab86f94f7df21c2199": {"5ff11610": {"type": "FUNCTION", "size": 3064, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.2", "2.4.3", "2.5.0", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"88": {"type": "MIPS_26", "symbol": "__swsetup", "scope": "LIBRARY"}, "148": {"type": "MIPS_26", "symbol": "__sbprintf", "original": ".text"}, "200": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": "__mb_cur_max"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": "__mb_cur_max"}, "224": {"type": "MIPS_26", "symbol": "_mbtowc_r", "scope": "LIBRARY"}, "320": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "428": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1048": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1056": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1104": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1108": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1124": {"type": "MIPS_26", "symbol": "memchr", "scope": "LIBRARY"}, "1168": {"type": "MIPS_26", "symbol": "strlen", "scope": "LIBRARY"}, "1256": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1264": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1272": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1276": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1432": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1436": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1440": {"type": "MIPS_26", "symbol": "strlen", "scope": "LIBRARY"}, "1520": {"type": "MIPS_26", "symbol": "__umoddi3"}, "1548": {"type": "MIPS_26", "symbol": "__udivdi3"}, "1756": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1764": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1832": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "1892": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1940": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2028": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2132": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2192": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2200": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2260": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2316": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2364": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2416": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2424": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2484": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2540": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2588": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2668": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2720": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2728": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2784": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2836": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2880": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2928": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2972": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}}}}, "074d1841592a59c751627a6dc3632d1e325952e9": {"cd6c0266": {"type": "FUNCTION", "size": 3020, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.4", "2.3.0", "2.3.2", "2.3.4", "2.4.2", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"88": {"type": "MIPS_26", "symbol": "__swsetup", "scope": "LIBRARY"}, "148": {"type": "MIPS_26", "symbol": "__sbprintf", "original": ".text"}, "208": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "212": {"type": "MIPS_HI16", "symbol": "", "original": "__mb_cur_max"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": "__mb_cur_max"}, "232": {"type": "MIPS_26", "symbol": "_mbtowc_r", "scope": "LIBRARY"}, "324": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "408": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "416": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "984": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "992": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1032": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1036": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1052": {"type": "MIPS_26", "symbol": "memchr", "scope": "LIBRARY"}, "1100": {"type": "MIPS_26", "symbol": "strlen", "scope": "LIBRARY"}, "1188": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1196": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1200": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1204": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1340": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1348": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1360": {"type": "MIPS_26", "symbol": "strlen", "scope": "LIBRARY"}, "1492": {"type": "MIPS_26", "symbol": "__umoddi3"}, "1520": {"type": "MIPS_26", "symbol": "__udivdi3"}, "1784": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1804": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1860": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "1896": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1948": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2124": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2188": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2204": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2256": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2288": {"type": )PS2SDB", 8192}, + std::string_view{R"PS2SDB("MIPS_LO16", "symbol": "", "original": ".rodata"}, "2340": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2392": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2412": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2464": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2496": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2548": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2628": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2672": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2684": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2740": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2772": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2784": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2832": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2888": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2928": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}}}}, "199b054fe2bc23afa0e12ebda9afaef8a33318a2": {"623d139d": {"type": "FUNCTION", "size": 2908, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"72": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "108": {"type": "MIPS_26", "symbol": "__sinit", "scope": "LIBRARY"}, "148": {"type": "MIPS_26", "symbol": "__swsetup", "scope": "LIBRARY"}, "200": {"type": "MIPS_26", "symbol": "__sbprintf", "original": ".text"}, "264": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "268": {"type": "MIPS_HI16", "symbol": "", "original": "__mb_cur_max"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": "__mb_cur_max"}, "288": {"type": "MIPS_26", "symbol": "_mbtowc_r", "scope": "LIBRARY"}, "380": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "456": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "464": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1016": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1024": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1064": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1068": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1084": {"type": "MIPS_26", "symbol": "memchr", "scope": "LIBRARY"}, "1132": {"type": "MIPS_26", "symbol": "strlen", "scope": "LIBRARY"}, "1208": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1216": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1220": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1224": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1364": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1372": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1380": {"type": "MIPS_26", "symbol": "strlen", "scope": "LIBRARY"}, "1480": {"type": "MIPS_26", "symbol": "__umoddi3"}, "1508": {"type": "MIPS_26", "symbol": "__udivdi3"}, "1736": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1740": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1812": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "1856": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1908": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2068": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2120": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2124": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2180": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2212": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2264": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2304": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2308": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2364": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2396": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2448": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2516": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2564": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2568": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2632": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2668": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2716": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2776": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}, "2816": {"type": "MIPS_26", "symbol": "__sprint", "original": ".text"}}}}}, "fclose": {"3a177ba6d52c56165321d081abfb9585cbdaeb05": {"8826c840": {"type": "FUNCTION", "size": 256, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.3", "2.5.0", "2.5.4", "2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "64": {"type": "MIPS_26", "symbol": "__sinit", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "fflush", "scope": "LIBRARY"}, "164": {"type": "MIPS_26", "symbol": "_free_r", "scope": "LIBRARY"}, "192": {"type": "MIPS_26", "symbol": "_free_r", "scope": "LIBRARY"}, "216": {"type": "MIPS_26", "symbol": "_free_r", "scope": "LIBRARY"}}}}, "bdbd501004cd73e521cc446422ad7dfde7980c86": {"e09aa860": {"type": "FUNCTION", "size": 260, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.1.0", "2.1.4", "2.3.0", "2.3.2", "2.4.2", "2.4.3", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "64": {"type": "MIPS_26", "symbol": "__sinit", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "fflush", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "_free_r", "scope": "LIBRARY"}, "196": {"type": "MIPS_26", "symbol": "_free_r", "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "_free_r", "scope": "LIBRARY"}}}}, "fb67cd610715f6f6e590932f59cfb07c2cc3543a": {"2fabb37f": {"type": "FUNCTION", "size": 264, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"40": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "68": {"type": "MIPS_26", "symbol": "__sinit", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "fflush", "scope": "LIBRARY"}, "172": {"type": "MIPS_26", "symbol": "_free_r", "scope": "LIBRARY"}, "200": {"type": "MIPS_26", "symbol": "_free_r", "scope": "LIBRARY"}, "224": {"type": "MIPS_26", "symbol": "_free_r", "scope": "LIBRARY"}}}}}, "feof": {"bd50fd2d0549b18fa84f6eb00e0e98fd9fe4526d": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.2", "2.1.4", "2.3.4", "2.4.3", "2.5.0", "2.5.4", "2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "fgets": {"f4408d6a947bb4bbe3ce402343818d378e68996a": {"a516162c": {"type": "FUNCTION", "size": 312, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.3", "2.5.0", "2.5.4", "2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1"], "compiler_vers)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ions": ["2.4.1.01"], "relocations": {"104": {"type": "MIPS_26", "symbol": "memcpy", "scope": "LIBRARY"}, "140": {"type": "MIPS_26", "symbol": "__srefill", "scope": "LIBRARY"}, "196": {"type": "MIPS_26", "symbol": "memchr", "scope": "LIBRARY"}, "252": {"type": "MIPS_26", "symbol": "memcpy", "scope": "LIBRARY"}}}}, "534de4d00e059aedfe0b382a40215e113d635eba": {"92a37745": {"type": "FUNCTION", "size": 296, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.2", "2.1.4", "2.3.0", "2.4.3", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"88": {"type": "MIPS_26", "symbol": "memcpy", "scope": "LIBRARY"}, "132": {"type": "MIPS_26", "symbol": "__srefill", "scope": "LIBRARY"}, "184": {"type": "MIPS_26", "symbol": "memchr", "scope": "LIBRARY"}, "236": {"type": "MIPS_26", "symbol": "memcpy", "scope": "LIBRARY"}}}}}, "__sflags": {"4abc342798b5f7abdc1aa17b07ed478c91a71c4d": {"00000000": {"type": "FUNCTION", "size": 184, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.3", "2.5.0", "2.5.4", "2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "638eda0484cf7251ede2589b9544635430617f18": {"00000000": {"type": "FUNCTION", "size": 168, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.2", "2.1.0", "2.1.4", "2.3.2", "2.4.2", "2.4.3"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "_fopen_r": {"98a72b7ce48079367e1a5ab733194ee67436178e": {"107000e5": {"type": "FUNCTION", "size": 220, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.3", "2.5.0", "2.5.4", "2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "__sflags", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "__sfp", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "_open_r", "scope": "LIBRARY"}, "88": {"type": "MIPS_HI16", "symbol": "__sread"}, "100": {"type": "MIPS_HI16", "symbol": "__swrite"}, "104": {"type": "MIPS_HI16", "symbol": "__sseek"}, "108": {"type": "MIPS_HI16", "symbol": "__sclose"}, "112": {"type": "MIPS_LO16", "symbol": "__sread"}, "116": {"type": "MIPS_LO16", "symbol": "__swrite"}, "120": {"type": "MIPS_LO16", "symbol": "__sseek"}, "124": {"type": "MIPS_LO16", "symbol": "__sclose"}, "184": {"type": "MIPS_26", "symbol": "fseek", "scope": "LIBRARY"}}}}, "d51bd5faf2a266765259eb6cf63c6cffd1da0992": {"4ffc0115": {"type": "FUNCTION", "size": 220, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.2", "2.1.0", "2.1.4", "2.3.2", "2.4.2", "2.4.3"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "__sflags", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "__sfp", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "_open_r", "scope": "LIBRARY"}, "96": {"type": "MIPS_HI16", "symbol": "__sread"}, "112": {"type": "MIPS_HI16", "symbol": "__swrite"}, "116": {"type": "MIPS_HI16", "symbol": "__sseek"}, "120": {"type": "MIPS_HI16", "symbol": "__sclose"}, "124": {"type": "MIPS_LO16", "symbol": "__sread"}, "128": {"type": "MIPS_LO16", "symbol": "__swrite"}, "132": {"type": "MIPS_LO16", "symbol": "__sseek"}, "136": {"type": "MIPS_LO16", "symbol": "__sclose"}, "184": {"type": "MIPS_26", "symbol": "fseek", "scope": "LIBRARY"}}}}}, "fopen": {"5405aed249097711e49d978547402ef104165c63": {"340b3947": {"type": "FUNCTION", "size": 36, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.3", "2.5.0", "2.5.4", "2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "28": {"type": "MIPS_26", "symbol": "_fopen_r", "scope": "LIBRARY", "original": ".text"}}}}, "fbc95b4fdc11eb9a2ddfb232421a397dc38fddb6": {"07332082": {"type": "FUNCTION", "size": 44, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.2", "2.1.0", "2.1.4", "2.3.2", "2.4.2", "2.4.3"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "24": {"type": "MIPS_26", "symbol": "_fopen_r", "scope": "LIBRARY", "original": ".text"}}}}}, "fputs": {"dbd273bf199bd063ee2755b4ac12781e23e8812d": {"caaa5c96": {"type": "FUNCTION", "size": 76, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.3", "2.5.0", "2.5.4", "2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "strlen", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "__sfvwrite", "scope": "LIBRARY"}}}}, "1a6de68f34d8c9f65cfb34840d7fdcdbebe3f454": {"6b5f7b2a": {"type": "FUNCTION", "size": 80, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.2", "2.1.4", "2.3.2", "2.4.3"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "strlen", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "__sfvwrite", "scope": "LIBRARY"}}}}}, "fwrite": {"efe2b3c00edf613745a0c52d0d7133a25a0af99c": {"88bc5980": {"type": "FUNCTION", "size": 132, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.3", "2.5.0", "2.5.4", "2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_26", "symbol": "__sfvwrite", "scope": "LIBRARY"}}}}, "038bb25f43f2714317f10c35e1cc1b8f4b42bb5c": {"88bc5980": {"type": "FUNCTION", "size": 132, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.2", "2.1.4", "2.3.0", "2.4.3", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"64": {"type": "MIPS_26", "symbol": "__sfvwrite", "scope": "LIBRARY"}}}}}, "_open_r": {"11cedd8bb17b528ce07dd012c30fbb74d6215523": {"a8b0211b": {"type": "FUNCTION", "size": 96, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.3", "2.5.0", "2.5.4", "2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "errno"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": "errno"}, "40": {"type": "MIPS_26", "symbol": "open"}}}}, "592a961e4d6502532bc9fdade83713b82c169e7f": {"1b7f7704": {"type": "FUNCTION", "size": 96, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.2", "2.1.0", "2.1.4", "2.3.2", "2.4.2", "2.4.3"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": "errno"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "errno"}, "36": {"type": "MIPS_26", "symbol": "open"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": "errno"}}}}}, "finite": {"d0ec99ab00029aec9f9a6a21d9c8a04b48d96a8a": {"00000000": {"type": "FUNCTION", "size": 32, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.5", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "f44a0adbe2d48529677bfd48ed6844a4e25e6920": {"00000000": {"type": "FUNCTION", "size": 32, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.1.4", "2.3.0", "2.4.2", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "vsnprintf": {"a3736b7ff44e36635d019b66b5e022d190f21539": {"683de7e0": {"type": "FUNCTION", "size": 108, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.0", "2.5.4", "2.5.5", "2.7.0", "2.7.1", "2)PS2SDB", 8192}, + std::string_view{R"PS2SDB(.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "72": {"type": "MIPS_26", "symbol": "vfprintf", "scope": "LIBRARY"}}}}}, "vsnprintf_r": {"085a0ccb6c063bfe8ac0f38e54af415598b13a5b": {"786557d6": {"type": "FUNCTION", "size": 100, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.4", "2.5.5", "2.7.0", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_26", "symbol": "vfprintf", "scope": "LIBRARY"}}}}}, "div": {"c090ee45fc6e6b13da50bc93eae5bf6913055fd1": {"00000000": {"type": "FUNCTION", "size": 128, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "e842b8d9c97361376d75f373f23737e3530bbb34": {"00000000": {"type": "FUNCTION", "size": 132, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "694c0d118444655ce985b73460206de3b83d8e2f": {"00000000": {"type": "FUNCTION", "size": 104, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "localtime": {"8d77ffbd44e13d3856fb3cf5728c68c11b7e34b8": {"285ee887": {"type": "FUNCTION", "size": 36, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.2", "2.1.4", "2.3.0", "2.3.2", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "16": {"type": "MIPS_26", "symbol": "localtime_r", "scope": "LIBRARY"}}}}, "9c4c0a1ca4d51cdadd35b6cb65e09f3b96cf810d": {"8f9c8bce": {"type": "FUNCTION", "size": 32, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5", "2.6.0", "2.7.0", "2.7.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "24": {"type": "MIPS_26", "symbol": "localtime_r", "scope": "LIBRARY"}}}}, "dbafb0f8e33e9dba798440ccdb860653bc4d3874": {"8f9c8bce": {"type": "FUNCTION", "size": 32, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "24": {"type": "MIPS_26", "symbol": "localtime_r", "scope": "LIBRARY"}}}}}, "localtime_r": {"40e41a329b16ba69eaa866a87b8939171c8c1a1c": {"86c99ab8": {"type": "FUNCTION", "size": 720, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.1.4", "2.3.0", "2.3.2", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "__divdi3"}, "60": {"type": "MIPS_26", "symbol": "__moddi3"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_26", "symbol": "__divdi3"}, "208": {"type": "MIPS_26", "symbol": "__moddi3"}, "224": {"type": "MIPS_26", "symbol": "__divdi3"}, "248": {"type": "MIPS_26", "symbol": "__moddi3"}, "272": {"type": "MIPS_26", "symbol": "__moddi3"}, "312": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "440": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "448": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "576": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "88003500a057c48b9db234aa6822ab66f7d20333": {"a2e5f667": {"type": "FUNCTION", "size": 708, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5", "2.6.0", "2.7.0", "2.7.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "__divdi3"}, "56": {"type": "MIPS_26", "symbol": "__moddi3"}, "184": {"type": "MIPS_26", "symbol": "__divdi3"}, "208": {"type": "MIPS_26", "symbol": "__moddi3"}, "224": {"type": "MIPS_26", "symbol": "__divdi3"}, "248": {"type": "MIPS_26", "symbol": "__moddi3"}, "272": {"type": "MIPS_26", "symbol": "__moddi3"}, "316": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "388": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "396": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "432": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "440": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "568": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "572": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "4443cb930b19d33aee80e34bfd73950b06e6fdd7": {"ad7ca6e2": {"type": "FUNCTION", "size": 716, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "__divdi3"}, "56": {"type": "MIPS_26", "symbol": "__moddi3"}, "184": {"type": "MIPS_26", "symbol": "__divdi3"}, "208": {"type": "MIPS_26", "symbol": "__moddi3"}, "224": {"type": "MIPS_26", "symbol": "__divdi3"}, "248": {"type": "MIPS_26", "symbol": "__moddi3"}, "272": {"type": "MIPS_26", "symbol": "__moddi3"}, "312": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "436": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "444": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "572": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "580": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "8a6306a6e651e87481fa18e248ca5aafbed24dbd": {"1ffe84a3": {"type": "FUNCTION", "size": 692, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "__divdi3"}, "56": {"type": "MIPS_26", "symbol": "__moddi3"}, "172": {"type": "MIPS_26", "symbol": "__divdi3"}, "196": {"type": "MIPS_26", "symbol": "__moddi3"}, "212": {"type": "MIPS_26", "symbol": "__divdi3"}, "236": {"type": "MIPS_26", "symbol": "__moddi3"}, "260": {"type": "MIPS_26", "symbol": "__moddi3"}, "300": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "444": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "448": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "576": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "584": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "validate_structure": {"155a14119e6690a587b3af77c69e5f6a29cd57eb": {"e0989b18": {"type": "FUNCTION", "size": 976, "library": "libc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.3.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "div", "scope": "LIBRARY"}, "140": {"type": "MIPS_26", "symbol": "div", "scope": "LIBRARY"}, "244": {"type": "MIPS_26", "symbol": "div", "scope": "LIBRARY"}, "352": {"type": "MIPS_26", "symbol": "div", "scope": "LIBRARY"}, "540": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "548": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "732": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "6755693a003ec66de2399073bf461ab4c130611e": {"73f2d014": {"type": "FUNCTION", "size": 976, "library": "libc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.5.5", "2.6.0", "2.7.0", "2.7.1", "3.0.0"], "compiler_versions")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "div", "scope": "LIBRARY"}, "140": {"type": "MIPS_26", "symbol": "div", "scope": "LIBRARY"}, "244": {"type": "MIPS_26", "symbol": "div", "scope": "LIBRARY"}, "352": {"type": "MIPS_26", "symbol": "div", "scope": "LIBRARY"}, "536": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "540": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "700": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "708": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "774736cbcd0d6a06bf83c87c41c2b57b29a6aa4a": {"73f2d014": {"type": "FUNCTION", "size": 976, "library": "libc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "div", "scope": "LIBRARY"}, "140": {"type": "MIPS_26", "symbol": "div", "scope": "LIBRARY"}, "244": {"type": "MIPS_26", "symbol": "div", "scope": "LIBRARY"}, "352": {"type": "MIPS_26", "symbol": "div", "scope": "LIBRARY"}, "536": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "540": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "700": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "708": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "bf650dd976225d494e8cb6b62fc9e344f4675b04": {"6a010c34": {"type": "FUNCTION", "size": 820, "library": "libc", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "div", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "div", "scope": "LIBRARY"}, "184": {"type": "MIPS_26", "symbol": "div", "scope": "LIBRARY"}, "256": {"type": "MIPS_26", "symbol": "div", "scope": "LIBRARY"}, "400": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "408": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "596": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "mktime": {"4996853c0d7a682e1142b1b881f4b57b722f9bd7": {"1b1c90ba": {"type": "FUNCTION", "size": 648, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "validate_structure", "scope": "LIBRARY", "original": ".text"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "560": {"type": "MIPS_26", "symbol": "__moddi3"}}}}, "41ba430b1cb91edf40e96fee61274d64808ebaa9": {"59ed6ecc": {"type": "FUNCTION", "size": 660, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.5", "2.6.0", "2.7.0", "2.7.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "validate_structure", "scope": "LIBRARY", "original": ".text"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "572": {"type": "MIPS_26", "symbol": "__moddi3"}}}}, "f790455d8594f406e8f84afe79dbd3f5a725e17a": {"6bcc9cef": {"type": "FUNCTION", "size": 640, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "validate_structure", "scope": "LIBRARY", "original": ".text"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "352": {"type": "MIPS_26", "symbol": "__moddi3"}}}}}, "__env_lock": {"7678540574197b420f17571673856a74783eb9d5": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.3", "2.1.4", "2.3.0", "2.3.4", "2.4.2", "2.5.5", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "__env_unlock": {"7678540574197b420f17571673856a74783eb9d5": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.3", "2.1.4", "2.3.0", "2.3.4", "2.4.2", "2.5.5", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "_findenv": {"fbc95b4fdc11eb9a2ddfb232421a397dc38fddb6": {"f2b6a5fe": {"type": "FUNCTION", "size": 44, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.3", "2.1.4", "2.3.0", "2.3.4", "2.4.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "24": {"type": "MIPS_26", "symbol": "_findenv_r", "scope": "LIBRARY"}}}}, "5405aed249097711e49d978547402ef104165c63": {"20501d0d": {"type": "FUNCTION", "size": 36, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.5", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "28": {"type": "MIPS_26", "symbol": "_findenv_r", "scope": "LIBRARY"}}}}}, "getenv": {"baed354355b85ae7688c244c3680ffc9106cb828": {"45b3bb7a": {"type": "FUNCTION", "size": 40, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "2.1.4", "2.3.0", "2.3.4", "2.4.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "20": {"type": "MIPS_26", "symbol": "_findenv_r", "scope": "LIBRARY"}}}}, "085ae66ef7a764cee3bc49d1e94c8870c6a97849": {"9532f8a5": {"type": "FUNCTION", "size": 40, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "20": {"type": "MIPS_26", "symbol": "_findenv_r", "scope": "LIBRARY"}}}}}, "_findenv_r": {"69dd19481fd767caa46ba11f06fbf4e7f26b789a": {"ab8c94f4": {"type": "FUNCTION", "size": 296, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "__env_lock", "scope": "LIBRARY"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": "environ"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": "environ"}, "92": {"type": "MIPS_26", "symbol": "__env_unlock", "scope": "LIBRARY"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": "environ"}, "188": {"type": "MIPS_26", "symbol": "strncmp", "scope": "LIBRARY"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": "environ"}, "240": {"type": "MIPS_26", "symbol": "__env_unlock", "scope": "LIBRARY"}}}}, "87f95f8ca01691fcd4551560011ebc3fc03a1f20": {"bb7aedfd": {"type": "FUNCTION", "size": 288, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.1.4", "2.3.0", "2.3.4", "2.4.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"40": {"type": "MIPS_HI16", "symbol": "", "original": "environ"}, "52": {"type": "MIPS_26", "symbol": "__env_lock", "scope": "LIBRARY"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": "environ"}, "92": {"type": "MIPS_26", "symbol": "__env_unlock", "scope": "LIBRARY"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": "environ"}, "180": {"type": "MIPS_26", "symbol": "strncmp", "scope": "LIBRARY"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": "environ"}, "232": {"type": "MIPS_26", "symbol": "__env_unlock", "scope": "LIBRARY"}}}}, "9ad77b27176c583797d6f24048d6eda63af4882f": {"6956b077": {"type": "FUNCTION", "size": 328, "library": "libc", "scope": "GLOBAL", "is)PS2SDB", 8192}, + std::string_view{R"PS2SDB(_interface": false, "versions": [], "sdk": ["2.5.5", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_26", "symbol": "__env_lock", "scope": "LIBRARY"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_26", "symbol": "__env_unlock", "scope": "LIBRARY"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "220": {"type": "MIPS_26", "symbol": "strncmp", "scope": "LIBRARY"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "272": {"type": "MIPS_26", "symbol": "__env_unlock", "scope": "LIBRARY"}}}}}, "_getenv_r": {"7318aecc363b49dab2d30a2bec07635cdd7ed3fc": {"25ff368e": {"type": "FUNCTION", "size": 28, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.3", "2.1.4", "2.3.0", "2.3.4", "2.4.2", "2.5.5", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "_findenv_r", "scope": "LIBRARY", "original": ".text"}}}}}, "__malloc_update_mallinfo": {"4b081fb4b40bcb14c6a2866719e61f15734ea6d5": {"0f64e0a2": {"type": "FUNCTION", "size": 152, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_av_"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_current_mallinfo"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_av_"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_current_mallinfo"}}}}}, "_mallinfo_r": {"1c3c1074a3ca3f0b99641261b961516416e92637": {"b0fbe9a9": {"type": "FUNCTION", "size": 240, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "__malloc_lock", "scope": "LIBRARY"}, "32": {"type": "MIPS_26", "symbol": "__malloc_update_mallinfo", "scope": "LIBRARY", "original": ".text"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_current_mallinfo"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_current_mallinfo"}, "128": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}}}}}, "_mallopt_r": {"97faa256168c9895ae7c46db22b4902773d67125": {"3fcbefb7": {"type": "FUNCTION", "size": 204, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__malloc_lock", "scope": "LIBRARY"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_trim_threshold"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_trim_threshold"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_top_pad"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_top_pad"}, "132": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}, "152": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}}}}}, "_malloc_stats_r": {"4d43a2817793656e245fffc5f60410ec65be38b9": {"e0c5c0c0": {"type": "FUNCTION", "size": 244, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "__malloc_lock", "scope": "LIBRARY"}, "32": {"type": "MIPS_26", "symbol": "__malloc_update_mallinfo", "scope": "LIBRARY"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_max_total_mem"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": "__malloc_current_mallinfo"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_max_total_mem"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": "__malloc_current_mallinfo"}, "140": {"type": "MIPS_26", "symbol": "__malloc_unlock", "scope": "LIBRARY"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "168": {"type": "MIPS_26", "symbol": "fiprintf", "scope": "LIBRARY"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "188": {"type": "MIPS_26", "symbol": "fiprintf", "scope": "LIBRARY"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "208": {"type": "MIPS_26", "symbol": "fiprintf", "scope": "LIBRARY"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "mallinfo": {"a7838e89b0663e3464046cf22cdf3cc1beb9a28f": {"8c26c0bd": {"type": "FUNCTION", "size": 48, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "20": {"type": "MIPS_26", "symbol": "_mallinfo_r", "scope": "LIBRARY"}}}}}, "malloc_stats": {"0470523b4a3338aceee4b6c2b0c6622894e5e22f": {"fd66fa19": {"type": "FUNCTION", "size": 28, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "20": {"type": "MIPS_26", "symbol": "_malloc_stats_r", "scope": "LIBRARY"}}}}}, "mallopt": {"5405aed249097711e49d978547402ef104165c63": {"f3dee742": {"type": "FUNCTION", "size": 36, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "28": {"type": "MIPS_26", "symbol": "_mallopt_r", "scope": "LIBRARY"}}}}}, "_mstats_r": {"de0cde106a21be8d6f9b3c3b1d721c8f71f5e498": {"cfd79ab3": {"type": "FUNCTION", "size": 56, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "28": {"type": "MIPS_26", "symbol": "fiprintf", "scope": "LIBRARY"}, "48": {"type": "MIPS_26", "symbol": "_malloc_stats_r", "scope": "LIBRARY"}}}}}, "mstats": {"45a957597614ead53556beec3fc8de6381df4adf": {"d264721b": {"type": "FUNCTION", "size": 32, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "24": {"type": "MIPS_26", "symbol": "_mstats_r", "scope": "LIBRARY", "original": ".text"}}}}}, "modf": {"0f8d5ade10597fc72912bddb3f45c73247e54a29": {"32a95c7e": {"type": "FUNCTION", "size": 396, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"200": {"type": "MIPS_26", "symbol": "dpsub"}, "376": {"type": "MIPS_26", "symbol": "dpsub"}}}}}, "strncasecmp": {"e02ce3cd59c6d3784d75d8b59b0aa42d1214af2e": {"ff234448": {"type": "FUNCTION", "size": 216, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.2", "2.5.4", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"84": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "92": {"type": "MIPS_LO16", "symbol")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: "", "original": "_ctype_"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}}}}, "a71da02ea36b7c3dee158d8edb38d89bea14f00a": {"10952c0a": {"type": "FUNCTION", "size": 220, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.1.4", "2.3.0", "2.3.4", "2.4.1", "2.4.2", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"40": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}}}}, "3095f25019653b4e6ee62171c9fe55870ed3ae27": {"49793ffe": {"type": "FUNCTION", "size": 216, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}}}}, "44495d3f711bc86963690ea0faa8713d45df8dc0": {"e3900c25": {"type": "FUNCTION", "size": 224, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}}}}}, "strspn": {"336ff079a4608cdf8a3589444b4c3763e42ee896": {"00000000": {"type": "FUNCTION", "size": 124, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "bec0974e1aa39dd9bdf44ae05e09c6ec5f39d386": {"00000000": {"type": "FUNCTION", "size": 84, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5", "2.3.0", "2.3.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "fputc": {"46deab7c66f45946b478e2cb4b9de7657eda2ce0": {"a8ba4808": {"type": "FUNCTION", "size": 132, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5", "2.3.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"76": {"type": "MIPS_26", "symbol": "__swbuf", "scope": "LIBRARY"}}}}, "4e51ad39c3cda96ba36c871cf73b1a45954e22fe": {"1cbdeed2": {"type": "FUNCTION", "size": 152, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"92": {"type": "MIPS_26", "symbol": "__swbuf", "scope": "LIBRARY"}}}}}, "strcspn": {"9c834db59a49a5ff789450395d0c98030a566e0f": {"00000000": {"type": "FUNCTION", "size": 92, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "5d5eeb550df44715dfec305e801c81add97083fa": {"00000000": {"type": "FUNCTION", "size": 124, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.1", "2.5.5", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "fscanf": {"ca4d670356350ecdf5ef2004364978c9ad0c23d9": {"efe726b1": {"type": "FUNCTION", "size": 52, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.1.0", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "__svfscanf", "scope": "LIBRARY"}}}}}, "atoff": {"3052abb4a8fa934d9793e35a329abfa3ed000d66": {"2a285682": {"type": "FUNCTION", "size": 24, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "strtodf", "scope": "LIBRARY"}}}}}, "isnanf": {"cf0584cc0b90324cc00dd57d6aa99400e3f5846b": {"00000000": {"type": "FUNCTION", "size": 36, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.1.4", "2.3.0", "2.4.1", "2.4.2", "2.5.7", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "vprintf": {"9201a037e26d9429e596c4423fcb8e3094bb8021": {"d7b976ff": {"type": "FUNCTION", "size": 40, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3", "2.5.5", "2.6.0", "2.7.0", "2.8.1", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "32": {"type": "MIPS_26", "symbol": "vfprintf", "scope": "LIBRARY"}}}}, "eaf02bd80552c261839a539513c414dbf04db552": {"4f362c7d": {"type": "FUNCTION", "size": 44, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "2.0.2", "2.2.2", "2.3.0", "2.4.2", "2.4.3", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "24": {"type": "MIPS_26", "symbol": "vfprintf", "scope": "LIBRARY"}}}}}, "fgetc": {"2a91e968e89bee18d1c2c3e9ce0990a05aff0e38": {"e9e7442f": {"type": "FUNCTION", "size": 68, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5", "2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "__srget", "scope": "LIBRARY"}}}}}, "labs": {"c236c7ac00b3fd09e995d30f1523bcb47e22bae0": {"00000000": {"type": "FUNCTION", "size": 20, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5", "2.3.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "81ffacbbf25cc65034b23e48c67d57e91f219d11": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_system_r": {"efd54510da19a38dae2ba6644246a0709cce57e0": {"ef81ee4a": {"type": "FUNCTION", "size": 52, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "__errno", "scope": "LIBRARY"}}}}}, "system": {"157e0d41ba111b85f0f92ff6dda2fd39cb51c8e7": {"ec7f27f8": {"type": "FUNCTION", "size": 40, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "20": {"type": "MIPS_26", "symbol": "_system_r", "scope": "LIBRARY", "original": ".text"}}}}}, "asctime": {"e324d1a9e70437f5f6a14e4845490a3dd6be12c5": {"8d98c327": {"type": "FUNCTION", "size": 36, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.2", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "16": {"type": "MIPS)PS2SDB", 8192}, + std::string_view{R"PS2SDB(_26", "symbol": "asctime_r", "scope": "LIBRARY"}}}}}, "asctime_r": {"8c61cfb55c116ff2cef81a43f2f025d3d3c34804": {"fb2313fd": {"type": "FUNCTION", "size": 128, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.2", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "100": {"type": "MIPS_26", "symbol": "sprintf", "scope": "LIBRARY"}}}}}, "ctime": {"7957a2269426b9dbfcbd66302afe468ba97be039": {"3731cdd6": {"type": "FUNCTION", "size": 36, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.2", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "localtime", "scope": "LIBRARY"}, "16": {"type": "MIPS_26", "symbol": "asctime", "scope": "LIBRARY"}}}}}, "strpbrk": {"c4d8b2596b3af166ba602c8dad135cc07a461000": {"00000000": {"type": "FUNCTION", "size": 132, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.4", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "9a531d5a520ab934defdf347567e94a898f2bdef": {"00000000": {"type": "FUNCTION", "size": 104, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "atexit": {"e1caf380dda89743ac5bb67813fd5ab66137ff34": {"060fae37": {"type": "FUNCTION", "size": 152, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "60": {"type": "MIPS_26", "symbol": "malloc", "scope": "LIBRARY"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}}}}, "c2781b44e134e44777a01185134223b927c4d3f8": {"dad5cb62": {"type": "FUNCTION", "size": 160, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "68": {"type": "MIPS_26", "symbol": "malloc", "scope": "LIBRARY"}}}}}, "gmtime": {"da45dc560a15bda8cdfadf0e2aa9b7edca94b10e": {"fb10781f": {"type": "FUNCTION", "size": 36, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.0", "2.5.7"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "localtime", "scope": "LIBRARY"}}}}}, "finitef": {"19bae35146fd95e3e2a5df468cf563db8ab3f012": {"00000000": {"type": "FUNCTION", "size": 36, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.1.4", "2.3.0", "2.4.1", "2.5.7", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "strcoll": {"c0a5a6b6b96e3534f1ce618782a40e20574c6678": {"7080c5cc": {"type": "FUNCTION", "size": 20, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "strcmp", "scope": "LIBRARY"}}}}}, "isupper": {"cf243779ded9540320c257ec0c4e3b37b82a3a1d": {"d6ed632d": {"type": "FUNCTION", "size": 24, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}}}}}, "_vsprintf_r": {"40fa2134f05241e21f1c4f04bd921fc89b85b6d1": {"fabd0241": {"type": "FUNCTION", "size": 76, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "_vfprintf_r", "scope": "LIBRARY"}}}}, "da90dcaa834bfcb06abad33b775564d640b9d11f": {"fabd0241": {"type": "FUNCTION", "size": 76, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "_vfprintf_r", "scope": "LIBRARY"}}}}}, "_puts_r": {"4dbb02abe2f7379f27fca48d04b454c2b50bb25f": {"faef192e": {"type": "FUNCTION", "size": 132, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "strlen", "scope": "LIBRARY"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_26", "symbol": "__sfvwrite", "scope": "LIBRARY"}}}}, "1c7ad492cc7555ec5aa57146d94019d5cb14797c": {"faef192e": {"type": "FUNCTION", "size": 132, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.2.0", "2.4.2", "2.7.0", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "strlen", "scope": "LIBRARY"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_26", "symbol": "__sfvwrite", "scope": "LIBRARY"}}}}}, "puts": {"45a957597614ead53556beec3fc8de6381df4adf": {"ba1a96a7": {"type": "FUNCTION", "size": 32, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "24": {"type": "MIPS_26", "symbol": "_puts_r", "scope": "LIBRARY", "original": ".text"}}}}, "157e0d41ba111b85f0f92ff6dda2fd39cb51c8e7": {"af01d17e": {"type": "FUNCTION", "size": 40, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.2.0", "2.4.2", "2.7.0", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "20": {"type": "MIPS_26", "symbol": "_puts_r", "scope": "LIBRARY", "original": ".text"}}}}}, "siprintf": {"671644dd5685d41de8616e26531b8c5972972558": {"7e6c1939": {"type": "FUNCTION", "size": 144, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "116": {"type": "MIPS_26", "symbol": "vfiprintf", "scope": "LIBRARY"}}}}}, "bcmp": {"c0a5a6b6b96e3534f1ce618782a40e20574c6678": {"1ca65fdc": {"type": "FUNCTION", "size": 20, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "memcmp", "scope": "LIBRARY"}}}}}, "_snprintf_r": {"f2a27672e96c9076fc7b33aeb1b436b78567250e": {"d3b31362": {"type": "FUNCTION", "size": 148, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"112": {"type": "MIPS_26", "symbol": "vfprintf", "scope": "LIBRARY"}}}}}, "snprintf": {"34e8a95d2c474f6f7a0f1413161849eb3da83cbe": {"da472c4f": {"type": "FUNCTION", "size": 160, "library": "libc", "scope": )PS2SDB", 8192}, + std::string_view{R"PS2SDB("GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.4", "2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "124": {"type": "MIPS_26", "symbol": "vfprintf", "scope": "LIBRARY"}}}}}, "strdup": {"45a957597614ead53556beec3fc8de6381df4adf": {"dab1dadd": {"type": "FUNCTION", "size": 32, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.6.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "24": {"type": "MIPS_26", "symbol": "_strdup_r", "scope": "LIBRARY"}}}}}, "_strdup_r": {"c30f81a94734be6e224affa90311d6cfd44f7425": {"9e6861c6": {"type": "FUNCTION", "size": 108, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.6.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "strlen", "scope": "LIBRARY"}, "44": {"type": "MIPS_26", "symbol": "_malloc_r", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "memcpy", "scope": "LIBRARY"}}}}}, "_sscanf_r": {"0f3fa352014f32da080e833cd36424a1dab51144": {"353e2ff5": {"type": "FUNCTION", "size": 148, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "strlen", "scope": "LIBRARY"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "84": {"type": "MIPS_HI16", "symbol": "eofread", "original": ".text"}, "92": {"type": "MIPS_LO16", "symbol": "eofread", "original": ".text"}, "120": {"type": "MIPS_26", "symbol": "__svfscanf_r", "scope": "LIBRARY"}}}}}, "vfscanf": {"79dc19cff724e7f9fa294a9ff06446c2e03c8ad9": {"fd68a292": {"type": "FUNCTION", "size": 112, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "64": {"type": "MIPS_26", "symbol": "__sinit", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "__svfscanf_r", "scope": "LIBRARY"}}}}}, "_vfscanf_r": {"c0a5a6b6b96e3534f1ce618782a40e20574c6678": {"ac9d77ad": {"type": "FUNCTION", "size": 20, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "__svfscanf_r", "scope": "LIBRARY"}}}}}, "__svfscanf_r": {"3a46075822b7c9bc152173bcf679543516b2fb38": {"dab45c57": {"type": "FUNCTION", "size": 3228, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"104": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "144": {"type": "MIPS_26", "symbol": "__srefill", "scope": "LIBRARY"}, "252": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "300": {"type": "MIPS_26", "symbol": "__srefill", "scope": "LIBRARY"}, "480": {"type": "MIPS_HI16", "symbol": "", "original": "_strtol_r"}, "488": {"type": "MIPS_LO16", "symbol": "", "original": "_strtol_r"}, "512": {"type": "MIPS_26", "symbol": "__srefill", "scope": "LIBRARY"}, "544": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "548": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "648": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "656": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "728": {"type": "MIPS_26", "symbol": "__srefill", "scope": "LIBRARY"}, "816": {"type": "MIPS_26", "symbol": "fread", "scope": "LIBRARY"}, "928": {"type": "MIPS_26", "symbol": "__srefill", "scope": "LIBRARY"}, "1092": {"type": "MIPS_26", "symbol": "__srefill", "scope": "LIBRARY"}, "1196": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "1200": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "1272": {"type": "MIPS_26", "symbol": "__srefill", "scope": "LIBRARY"}, "1332": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "1340": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "1436": {"type": "MIPS_26", "symbol": "__srefill", "scope": "LIBRARY"}, "1564": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1568": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1700": {"type": "MIPS_26", "symbol": "ungetc", "scope": "LIBRARY"}, "1752": {"type": "MIPS_26", "symbol": "ungetc", "scope": "LIBRARY"}, "1976": {"type": "MIPS_26", "symbol": "__srefill", "scope": "LIBRARY"}, "2020": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2028": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2052": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2060": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2212": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2216": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2348": {"type": "MIPS_26", "symbol": "ungetc", "scope": "LIBRARY"}, "2420": {"type": "MIPS_26", "symbol": "ungetc", "scope": "LIBRARY"}, "2440": {"type": "MIPS_26", "symbol": "ungetc", "scope": "LIBRARY"}, "2516": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2520": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2536": {"type": "MIPS_26", "symbol": "sprintf", "scope": "LIBRARY"}, "2552": {"type": "MIPS_26", "symbol": "_strtod_r", "scope": "LIBRARY"}, "2632": {"type": "MIPS_26", "symbol": "dptofp"}, "2672": {"type": "MIPS_26", "symbol": "_strtol_r", "scope": "LIBRARY"}, "2692": {"type": "MIPS_26", "symbol": "__srefill", "scope": "LIBRARY"}, "2864": {"type": "MIPS_26", "symbol": "__srefill", "scope": "LIBRARY"}, "2900": {"type": "MIPS_HI16", "symbol": "", "original": "_strtoul_r"}, "2908": {"type": "MIPS_LO16", "symbol": "", "original": "_strtoul_r"}, "2924": {"type": "MIPS_26", "symbol": "__sccl", "scope": "LIBRARY"}, "2976": {"type": "MIPS_HI16", "symbol": "", "original": "_strtol_r"}, "2984": {"type": "MIPS_LO16", "symbol": "", "original": "_strtol_r"}, "3128": {"type": "MIPS_HI16", "symbol": "", "original": "_strtoul_r"}, "3136": {"type": "MIPS_LO16", "symbol": "", "original": "_strtoul_r"}, "3156": {"type": "MIPS_HI16", "symbol": "", "original": "_strtoul_r"}, "3168": {"type": "MIPS_LO16", "symbol": "", "original": "_strtoul_r"}, "3172": {"type": "MIPS_HI16", "symbol": "", "original": "_strtol_r"}, "3176": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "3180": {"type": "MIPS_LO16", "symbol": "", "original": "_strtol_r"}, "3184": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}}}}}, "ldiv": {"3f084a3edeb2983157babede13254c031bb9bf4e": {"b64cb25b": {"type": "FUNCTION", "size": 172, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "__divdi3"}, "60": {"type": "MIPS_26", "symbol": "__moddi3"}}}}}, "_perror_r": {"181d611c50e31e83b2b94b1dadd0cf6a84165cdc": {"7e0a7634": {"type": "FUNCTION", "size": 112, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "fputs", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "56": {"type": "MIPS_26", "symbol": "fputs", "scope": "LIBRARY"}, "60":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_26", "symbol": "strerror", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "fputs", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "fputc", "scope": "LIBRARY"}}}}}, "perror": {"45a957597614ead53556beec3fc8de6381df4adf": {"46174bf3": {"type": "FUNCTION", "size": 32, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "24": {"type": "MIPS_26", "symbol": "_perror_r", "scope": "LIBRARY", "original": ".text"}}}}}, "strerror": {"ae18dfa19172df6e25c0acc2b1c73d8b38b6e274": {"ee73e69d": {"type": "FUNCTION", "size": 1300, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "208": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "240": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "256": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "272": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "288": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "304": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "312": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "320": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "328": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "336": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "344": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "352": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "360": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "368": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "376": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "384": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "392": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "400": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "408": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "416": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "432": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "440": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "448": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "456": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "464": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "472": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "480": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "488": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "496": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "504": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "512": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "520": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "528": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "536": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "544": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "552": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "560": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "568": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "576": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "584": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "592": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "600": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "608": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "616": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "624": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "632": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "640": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "648": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "656": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "664": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "672": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "680": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "688": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "696": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "704": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "712": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "720": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "728": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "736": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "744": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "752": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "760": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "768": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "776": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "784": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "792": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "800": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "808": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "816": {"type": "MIPS_HI16", "sy)PS2SDB", 8192}, + std::string_view{R"PS2SDB(mbol": "", "original": ".rodata"}, "824": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "832": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "840": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "848": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "856": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "864": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "872": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "880": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "888": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "896": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "904": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "912": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "920": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "928": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "936": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "944": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "952": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "960": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "968": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "976": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "984": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "992": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1000": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1008": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1016": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1024": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1032": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1040": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1048": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1056": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1064": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1072": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1080": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1088": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1096": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1104": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1112": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1120": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1128": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1136": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1144": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1152": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1160": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1168": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1176": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1184": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1192": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1200": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1208": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1216": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1224": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1232": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1240": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1248": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1256": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1264": {"type": "MIPS_26", "symbol": "_user_strerror", "scope": "LIBRARY"}, "1280": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1284": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "_user_strerror": {"0a5385cf4a659d302a43046ea0269e2b17a3ef1d": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "scanf": {"63085351fef9fc601fe85df369696ed687751f8a": {"b8a13381": {"type": "FUNCTION", "size": 104, "library": "libc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "84": {"type": "MIPS_26", "symbol": "__svfscanf", "scope": "LIBRARY"}}}}}, "_scanf_r": {"7283e09ceefabb2f6f593bb5a460dc170f793302": {"0297e7b1": {"type": "FUNCTION", "size": 88, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "__svfscanf", "scope": "LIBRARY"}}}}}, "setenv": {"b2cf04e1fcabaefca079a20284b8e13eaa22f1db": {"11db2d35": {"type": "FUNCTION", "size": 52, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.1.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "32": {"type": "MIPS_26", "symbol": "_setenv_r", "scope": "LIBRARY"}}}}}, "unsetenv": {"2013f5455c8fe6b6a09e036ed372a984df680d0b": {"92fbfe0c": {"type": "FUNCTION", "size": 16, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.1.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "8": {"type": "MIPS_26", "symbol": "_unsetenv_r", "scope": "LIBRARY"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}}}}}, "_setenv_r": {"2e5b52bc97a1976b62efc1c7b1fda40ea32c350e": {"cd828403": {"type": "FUNCTION", "size": 692, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.1.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "__env_lock", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "strlen", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "_findenv_r", "scope": "LIBRARY"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": "environ"}, "128": {"type": "MIPS_26", "symbol": "strlen", "scope": "LIBRARY"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "environ"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": "environ"}, "208": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "252": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": "environ"}, "276": {"type": "MIPS_26", "symbol": "_realloc_r", "scope": "LIBRARY"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": "environ"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "316": {"type": "MIPS_26", "symbol": "_malloc_r", "scope": "LIBRARY"}, "336": {"type": "MIPS_LO16", "symbol": "", "original": "environ"}, "344": {"type": "MIPS_26", "symbol": "bcopy", "scope": "LIBRARY"}, "356": {"type": "MIPS_LO16", "symbol": "", "original": "environ"}, "364": {"type": "MIPS_LO16", "symbol": "", "original": "environ"}, "440": {"type": "MIPS_26", "symbol": "_malloc_r", "scope": "LIBRARY"}, "452": {"type": "MIPS_LO16", "symbol": "", "original": "environ"}, "476": {"type": "MIPS_26", "symbol": "__env_unlock", ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(scope": "LIBRARY"}, "632": {"type": "MIPS_26", "symbol": "__env_unlock", "scope": "LIBRARY"}}}}}, "_unsetenv_r": {"63afb78636718dfadb06d39f3c7eef057bf78c59": {"98b4fb5f": {"type": "FUNCTION", "size": 156, "library": "libc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.1.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__env_lock", "scope": "LIBRARY"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": "environ"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": "environ"}, "108": {"type": "MIPS_26", "symbol": "_findenv_r", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "__env_unlock", "scope": "LIBRARY"}}}}}}, "gcc_wrapper": {"_dpfge": {"d1daff441c9094da12110bc322a155d66d3f2f97": {"231dc7a1": {"type": "FUNCTION", "size": 36, "library": "gcc_wrapper", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "dpcmp"}}}}, "d82a9f8057976d9a3a0e968d2f0bea2da2ca29b9": {"231dc7a1": {"type": "FUNCTION", "size": 36, "library": "gcc_wrapper", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.4", "1.5.1", "1.6.1", "1.6.5", "2.0.2", "2.0.7", "2.1.4", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.5", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "dpcmp"}}}}, "338fc43ae3067dddcc76a3b64cb4b8ade293ab22": {"8deb036a": {"type": "FUNCTION", "size": 60, "library": "gcc_wrapper", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "dpcmp"}}}}}, "_dpfgt": {"b13860d2d97990def5e7265395af54f257df1265": {"231dc7a1": {"type": "FUNCTION", "size": 32, "library": "gcc_wrapper", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "dpcmp"}}}}, "b62ea0b4909aa83291ccd407b14e84e995034314": {"231dc7a1": {"type": "FUNCTION", "size": 32, "library": "gcc_wrapper", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.4", "1.5.1", "1.5.3", "1.6.1", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.2", "2.5.3", "2.5.5", "2.6.0", "2.7.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "dpcmp"}}}}, "e9d7eac08c6ef8dae56ebc64f41547cadfe9dcca": {"8deb036a": {"type": "FUNCTION", "size": 56, "library": "gcc_wrapper", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "dpcmp"}}}}}, "_dpfle": {"ace80f74521aeebf3ca103a773a41b781f26e9bf": {"231dc7a1": {"type": "FUNCTION", "size": 36, "library": "gcc_wrapper", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "dpcmp"}}}}, "e57938d8eaf12752189b36108aeef3ad453b3e10": {"231dc7a1": {"type": "FUNCTION", "size": 36, "library": "gcc_wrapper", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.1", "1.6.1", "1.6.5", "2.0.7", "2.1.0", "2.1.3", "2.1.4", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.3", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "dpcmp"}}}}, "4e1c4d95f5bcce985072a70be695c34d6839153a": {"8deb036a": {"type": "FUNCTION", "size": 60, "library": "gcc_wrapper", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "dpcmp"}}}}}, "_dpflt": {"3a9a0b7baebcff665493a7e5cb569764f8a6b498": {"231dc7a1": {"type": "FUNCTION", "size": 32, "library": "gcc_wrapper", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1", "3.0.1", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "dpcmp"}}}}, "612e4fd1ea03f460f3a13ee9515f12967981448b": {"231dc7a1": {"type": "FUNCTION", "size": 32, "library": "gcc_wrapper", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.3", "2.5.5", "2.6.0", "2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "dpcmp"}}}}, "40122aea8e8dc60ecba7517fd90ed99136b80323": {"8deb036a": {"type": "FUNCTION", "size": 56, "library": "gcc_wrapper", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "dpcmp"}}}}}, "_f_ulltof": {"2d20c9fc2c91497e84d93f0f186c3e969ae0f8c3": {"ed28014a": {"type": "FUNCTION", "size": 60, "library": "gcc_wrapper", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.3.0", "2.3.2", "2.3.4", "2.4.2", "2.4.3", "2.5.3", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "__floatdisf"}, "36": {"type": "MIPS_26", "symbol": "__floatdisf"}}}}, "6374800427e4ded05c8ffd6b6f3a463836be66a0": {"7830691b": {"type": "FUNCTION", "size": 68, "library": "gcc_wrapper", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.0", "2.7.1", "2.8.1", "3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "__floatdisf"}, "40": {"type": "MIPS_26", "symbol": "__floatdisf"}}}}, "12962d2f76a7c2ca6744dbc5f0714595854440ff": {"b8cbae2b": {"type": "FUNCTION", "size": 112, "library": "gcc_wrapper", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "__floatdisf"}, "68": {"type": "MIPS_26", "symbol": "__floatdisf"}}}}, "28c117035b225725d67d00f618f0700c26758027": {"ed28014a": {"type": "FUNCTION", "size": 60, "library": "gcc_wrapper", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.2", "2.5.4", "2.5.5", "2.5.7", "2.7.0", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "__floatdisf"}, "36": {"type": "MIPS_26", "symbol": "__floatdisf"}}}}}, "_d_ulltod": {"c5dfb627135d6411df8ba63f9bb6ee2618dd4a90": {"34eab65a": {"type": "FUNCTION", "size": 76, "library": "gcc_wrapper", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "__floatdidf"}, "40": {"type": "MIPS_26", "symbol": "__floatdidf"}, "52": {"type": "MIPS_26", "symbol": "dpadd"}}}}, "3e7816e702c38be050289adb686014848da7d3e8": {"8f4bd944": {"type": "FUNCTION", "size": 68, "library": "gcc_wrapper", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.7.0", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "__floatdidf"}, "36": {"type": "MIPS_26", "symbol": "__float)PS2SDB", 8192}, + std::string_view{R"PS2SDB(didf"}, "48": {"type": "MIPS_26", "symbol": "dpadd"}}}}, "685a6ca03132b572b06db564200a01e864fb9b15": {"8f4bd944": {"type": "FUNCTION", "size": 68, "library": "gcc_wrapper", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.1", "1.5.3", "1.6.1", "2.0.2", "2.1.1", "2.1.3", "2.1.4", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "__floatdidf"}, "36": {"type": "MIPS_26", "symbol": "__floatdidf"}, "48": {"type": "MIPS_26", "symbol": "dpadd"}}}}, "0edb1f50bee659a37069b945e6868f1b7f370012": {"b228f611": {"type": "FUNCTION", "size": 116, "library": "gcc_wrapper", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "__floatdidf"}, "68": {"type": "MIPS_26", "symbol": "__floatdidf"}, "88": {"type": "MIPS_26", "symbol": "dpadd"}}}}, "ec22d6bcff7ba56a51406acc0a29e8bffa97cbaa": {"8f4bd944": {"type": "FUNCTION", "size": 68, "library": "gcc_wrapper", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3", "2.5.0", "2.5.5", "2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "__floatdidf"}, "36": {"type": "MIPS_26", "symbol": "__floatdidf"}, "48": {"type": "MIPS_26", "symbol": "dpadd"}}}}}, "_d_utod": {"495c6a8ec58529f71a97361a8abd5ed64af7dcc7": {"4c3ef09e": {"type": "FUNCTION", "size": 12, "library": "gcc_wrapper", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.1", "1.5.3", "1.6.1", "2.0.2", "2.1.1", "2.1.3", "2.1.4", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_26", "symbol": "_d_ulltod", "scope": "LIBRARY"}}}}, "a8dbe74d0440eb9e525e490e0b03dcf4ee2349be": {"bdf39cce": {"type": "FUNCTION", "size": 84, "library": "gcc_wrapper", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.0", "2.5.5", "2.7.1", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "__floatdidf"}, "48": {"type": "MIPS_26", "symbol": "__floatdidf"}, "60": {"type": "MIPS_26", "symbol": "dpadd"}}}}, "d3c087662dc91b87b0f820c064bf449f2b4c48e1": {"1d0d2200": {"type": "FUNCTION", "size": 76, "library": "gcc_wrapper", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5", "2.0.7", "2.1.4", "2.3.2", "2.4.3", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "__floatdidf"}, "44": {"type": "MIPS_26", "symbol": "__floatdidf"}, "56": {"type": "MIPS_26", "symbol": "dpadd"}}}}, "e1c1cbd22e2860eef80ff3e7d5dcec93473583b9": {"4da9c635": {"type": "FUNCTION", "size": 48, "library": "gcc_wrapper", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "_d_ulltod", "scope": "LIBRARY"}}}}, "be2b5f6367d8eecb4eccab4cfc37d2b08fdb44c5": {"1d0d2200": {"type": "FUNCTION", "size": 76, "library": "gcc_wrapper", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "__floatdidf"}, "44": {"type": "MIPS_26", "symbol": "__floatdidf"}, "56": {"type": "MIPS_26", "symbol": "dpadd"}}}}, "021b295621c90224f1a2a8cee37cb490a05eae04": {"1d0d2200": {"type": "FUNCTION", "size": 76, "library": "gcc_wrapper", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "__floatdidf"}, "44": {"type": "MIPS_26", "symbol": "__floatdidf"}, "56": {"type": "MIPS_26", "symbol": "dpadd"}}}}, "9dbeda3828eb2f34290a5847fdbe6b70add23e66": {"1d0d2200": {"type": "FUNCTION", "size": 76, "library": "gcc_wrapper", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "2.4.3"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "__floatdidf"}, "44": {"type": "MIPS_26", "symbol": "__floatdidf"}, "56": {"type": "MIPS_26", "symbol": "dpadd"}}}}, "86a417fa872fa9a2f45c7cfb8c24d656180724ea": {"83b73c19": {"type": "FUNCTION", "size": 32, "library": "gcc_wrapper", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "_d_ulltod", "scope": "LIBRARY"}}}}, "55aafef7690b231663bb5265c96a37dded69f5c1": {"1d0d2200": {"type": "FUNCTION", "size": 80, "library": "gcc_wrapper", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "__floatdidf"}, "44": {"type": "MIPS_26", "symbol": "__floatdidf"}, "56": {"type": "MIPS_26", "symbol": "dpadd"}}}}}, "_dpfeq": {"f98aeb2c7ed9379cce4832072197bf851499067e": {"231dc7a1": {"type": "FUNCTION", "size": 36, "library": "gcc_wrapper", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "dpcmp"}}}}, "90ac8af87ab21aaa7dc8fc0bcfec79c907fd9aec": {"231dc7a1": {"type": "FUNCTION", "size": 36, "library": "gcc_wrapper", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.4", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.2", "2.4.3", "2.7.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "dpcmp"}}}}}, "_dpfne": {"aa6bea717c1526644368c76d2a8b905708463cdd": {"231dc7a1": {"type": "FUNCTION", "size": 32, "library": "gcc_wrapper", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.1", "2.4.3", "2.5.0", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "dpcmp"}}}}, "ffabb912cdcfa85585aa6c95018f9df6150fa8ef": {"231dc7a1": {"type": "FUNCTION", "size": 32, "library": "gcc_wrapper", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5", "2.1.3", "2.1.4", "2.2.4", "2.3.2", "2.3.4", "2.4.3"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "dpcmp"}}}}, "82917eb82f3ea4604c90dc86e712a2f08820e7dc": {"8deb036a": {"type": "FUNCTION", "size": 56, "library": "gcc_wrapper", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "dpcmp"}}}}}}, "libmpeg": {"_motionComp0": {"5bf723d59665b93021bc84b16018381da23294aa": {"16921ff0": {"type": "FUNCTION", "size": 592, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"192": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "204": {"type": "MIPS_26", "symbol": "_Error1", "scope": "LIBRARY"}, "228": {"type": "MIPS_26", "symbol": "_getAllRefs", "scope": "LIBRARY", "original": ".text"}, "292": {"type": "MIPS_26", "symbol": "dmaRefImage", "scope": "LIBRARY", "original": ".text"}}}}, "8e62ad693a063af380094c219052379813e1c62e": {"16921ff0": {"type": "FUNCTION", "size": 592, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"192": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".)PS2SDB", 8192}, + std::string_view{R"PS2SDB(rodata"}, "204": {"type": "MIPS_26", "symbol": "_Error1", "scope": "LIBRARY"}, "228": {"type": "MIPS_26", "symbol": "_getAllRefs", "scope": "LIBRARY", "original": ".text"}, "292": {"type": "MIPS_26", "symbol": "dmaRefImage", "scope": "LIBRARY", "original": ".text"}}}}, "bd9660168096edb44e1dd35b5d41d1c773ba63e9": {"09f9fdd1": {"type": "FUNCTION", "size": 820, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_widthMB"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "_widthMB"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": "_mbcont"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_structure"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "176": {"type": "MIPS_26", "symbol": "_Error1", "scope": "LIBRARY"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": "_isError"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": "_isError"}, "204": {"type": "MIPS_26", "symbol": "_getAllRefs", "scope": "LIBRARY", "original": ".text"}, "216": {"type": "MIPS_HI16", "symbol": "", "original": "_sprtag"}, "220": {"type": "MIPS_HI16", "symbol": "", "original": "_mbcont"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_structure"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": "_sprtag"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "452": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "524": {"type": "MIPS_LO16", "symbol": "", "original": "_sprtag"}, "552": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "564": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "612": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "628": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "648": {"type": "MIPS_HI16", "symbol": "", "original": "_curFrame"}, "656": {"type": "MIPS_LO16", "symbol": "", "original": "_curFrame"}, "712": {"type": "MIPS_HI16", "symbol": "", "original": "_curTop"}, "716": {"type": "MIPS_HI16", "symbol": "", "original": "_curBot"}, "724": {"type": "MIPS_LO16", "symbol": "", "original": "_curBot"}, "728": {"type": "MIPS_LO16", "symbol": "", "original": "_curTop"}, "736": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}}}}, "54b7b63980110c442565fdafde12029ca81c35b1": {"0f24476c": {"type": "FUNCTION", "size": 788, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"0": {"type": "MIPS_GPREL16", "symbol": "_widthMB"}, "120": {"type": "MIPS_GPREL16", "symbol": "_picture_structure"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": "_mbcont"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_26", "symbol": "_Error1", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "204": {"type": "MIPS_GPREL16", "symbol": "_isError"}, "208": {"type": "MIPS_26", "symbol": "_getAllRefs", "scope": "LIBRARY", "original": ".text"}, "220": {"type": "MIPS_HI16", "symbol": "", "original": "_mbcont"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "260": {"type": "MIPS_GPREL16", "symbol": "_sprtag"}, "316": {"type": "MIPS_GPREL16", "symbol": "_picture_structure"}, "444": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "540": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "552": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "600": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "640": {"type": "MIPS_GPREL16", "symbol": "_curFrame"}, "692": {"type": "MIPS_GPREL16", "symbol": "_curTop"}, "696": {"type": "MIPS_GPREL16", "symbol": "_curBot"}, "704": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}}}}, "b7dbfe92e831a6416760c20c45718d8ca54de521": {"9dff4184": {"type": "FUNCTION", "size": 812, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_widthMB"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "_widthMB"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_structure"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": "_mbcont"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_26", "symbol": "_Error1", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": "_isError"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": "_isError"}, "212": {"type": "MIPS_26", "symbol": "_getAllRefs", "scope": "LIBRARY", "original": ".text"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": "_sprtag"}, "228": {"type": "MIPS_HI16", "symbol": "", "original": "_mbcont"}, "232": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_structure"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": "_sprtag"}, "444": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "516": {"type": "MIPS_LO16", "symbol": "", "original": "_sprtag"}, "544": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "556": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "604": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "620": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "640": {"type": "MIPS_HI16", "symbol": "", "original": "_curFrame"}, "648": {"type": "MIPS_LO16", "symbol": "", "original": "_curFrame"}, "704": {"type": "MIPS_HI16", "symbol": "", "original": "_curTop"}, "708": {"type": "MIPS_HI16", "symbol": "", "original": "_curBot"}, "716": {"type": "MIPS_LO16", "symbol": "", "original": "_curBot"}, "720": {"type": "MIPS_LO16", "symbol": "", "original": "_curTop"}, "728": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}}}}, "69f28dbfb11d69c959e3749992750a4c5702744e": {"59af61f6": {"type": "FUNCTION", "size": 592, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"192": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "204": {"type": "MIPS_26", "symbol": "_sceMpegError1", "scope": "LIBRARY"}, "228": {"type": "MIPS_26", "symbol": "_getAllRefs", "scope": "LIBRARY", "original": ".text"}, "292": {"type": "MIPS_26", "symbol": "dmaRefImage", "scope": "LIBRARY", "original": ".text"}}}}, "95044ce6d9ed2d42c6b315810cc6e9049d8471a0": {"0e8e0ff5": {"type": "FUNCTION", "size": 872, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.4.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"192": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "204": {"type": "MIPS_26", "symbol": "_Error1", "scope": "LIBRARY"}, "228": {"type": "MIPS_26", "symbol": "_getAllRefs", "scope": "LIBRARY", )PS2SDB", 8192}, + std::string_view{R"PS2SDB("original": ".text"}, "488": {"type": "MIPS_26", "symbol": "DIntr"}, "572": {"type": "MIPS_26", "symbol": "EIntr"}}}}, "09e26eb67319709ecff6859a37dcc3cf86cba5ff": {"c6e6411a": {"type": "FUNCTION", "size": 820, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.6.1"], "compiler_versions": ["2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_widthMB"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "_widthMB"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": "_mbcont"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_structure"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "188": {"type": "MIPS_26", "symbol": "_Error1", "scope": "LIBRARY"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "200": {"type": "MIPS_HI16", "symbol": "", "original": "_isError"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": "_isError"}, "216": {"type": "MIPS_26", "symbol": "_getAllRefs", "scope": "LIBRARY", "original": ".text"}, "228": {"type": "MIPS_HI16", "symbol": "", "original": "_sprtag"}, "232": {"type": "MIPS_HI16", "symbol": "", "original": "_mbcont"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_structure"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "292": {"type": "MIPS_LO16", "symbol": "", "original": "_sprtag"}, "452": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "524": {"type": "MIPS_LO16", "symbol": "", "original": "_sprtag"}, "552": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "564": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "612": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "628": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "648": {"type": "MIPS_HI16", "symbol": "", "original": "_curFrame"}, "656": {"type": "MIPS_LO16", "symbol": "", "original": "_curFrame"}, "712": {"type": "MIPS_HI16", "symbol": "", "original": "_curTop"}, "716": {"type": "MIPS_HI16", "symbol": "", "original": "_curBot"}, "724": {"type": "MIPS_LO16", "symbol": "", "original": "_curBot"}, "728": {"type": "MIPS_LO16", "symbol": "", "original": "_curTop"}, "736": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}}}}}, "_getAllRefs": {"521996b575bafbf848cb4e63ec65c16d1b0b4a26": {"4bb72dd8": {"type": "FUNCTION", "size": 1796, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"276": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "340": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "360": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "384": {"type": "MIPS_26", "symbol": "_dualPrimeVector", "scope": "LIBRARY", "original": ".text"}, "448": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "508": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "572": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "640": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "644": {"type": "MIPS_26", "symbol": "_Error1", "scope": "LIBRARY"}, "904": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "1032": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1064": {"type": "MIPS_26", "symbol": "_dualPrimeVector", "scope": "LIBRARY", "original": ".text"}, "1136": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "1216": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "1236": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1240": {"type": "MIPS_26", "symbol": "_Error1", "scope": "LIBRARY"}, "1404": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "1468": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "1556": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "1576": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1644": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "1716": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "1736": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1740": {"type": "MIPS_26", "symbol": "_Error1", "scope": "LIBRARY"}}}}, "41cc58f9921e624b09346e578d8328a4f512c914": {"4bb72dd8": {"type": "FUNCTION", "size": 1796, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"276": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "340": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "360": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "384": {"type": "MIPS_26", "symbol": "_dualPrimeVector", "scope": "LIBRARY", "original": ".text"}, "448": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "508": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "572": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "640": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "644": {"type": "MIPS_26", "symbol": "_Error1", "scope": "LIBRARY"}, "904": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "1032": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1064": {"type": "MIPS_26", "symbol": "_dualPrimeVector", "scope": "LIBRARY", "original": ".text"}, "1136": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "1216": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "1236": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1240": {"type": "MIPS_26", "symbol": "_Error1", "scope": "LIBRARY"}, "1404": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "1468": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "1556": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "1576": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1644": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "1716": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "1736": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1740": {"type": "MIPS_26", "symbol": "_Error1", "scope": "LIBRARY"}}}}, "5a95113b3d8a4338d051666145a3d90e901be312": {"a4787032": {"type": "FUNCTION", "size": 1712, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_mbcont"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_coding_type"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_coding_type"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_structure"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": "_forwTop"}, "176": {"type": ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(MIPS_HI16", "symbol": "", "original": "_forwFrame"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": "_forwFrame"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": "_forwFrame"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": "_forwFrame"}, "276": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": "_forwFrame"}, "332": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "352": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "376": {"type": "MIPS_26", "symbol": "_dualPrimeVector", "scope": "LIBRARY", "original": ".text"}, "380": {"type": "MIPS_HI16", "symbol": "", "original": "_forwFrame"}, "404": {"type": "MIPS_LO16", "symbol": "", "original": "_forwFrame"}, "432": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "448": {"type": "MIPS_LO16", "symbol": "", "original": "_forwFrame"}, "484": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "512": {"type": "MIPS_LO16", "symbol": "", "original": "_forwFrame"}, "540": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "556": {"type": "MIPS_LO16", "symbol": "", "original": "_forwFrame"}, "600": {"type": "MIPS_26", "symbol": "_Error1", "scope": "LIBRARY"}, "604": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "616": {"type": "MIPS_HI16", "symbol": "", "original": "_forwBot"}, "620": {"type": "MIPS_HI16", "symbol": "", "original": "_backBot"}, "624": {"type": "MIPS_LO16", "symbol": "", "original": "_forwTop"}, "628": {"type": "MIPS_LO16", "symbol": "", "original": "_forwBot"}, "636": {"type": "MIPS_HI16", "symbol": "", "original": "_backTop"}, "640": {"type": "MIPS_LO16", "symbol": "", "original": "_backBot"}, "644": {"type": "MIPS_LO16", "symbol": "", "original": "_backTop"}, "652": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_coding_type"}, "660": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_coding_type"}, "688": {"type": "MIPS_HI16", "symbol": "", "original": "_isSecondField"}, "692": {"type": "MIPS_LO16", "symbol": "", "original": "_isSecondField"}, "868": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "876": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_coding_type"}, "880": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_coding_type"}, "892": {"type": "MIPS_HI16", "symbol": "", "original": "_isSecondField"}, "896": {"type": "MIPS_LO16", "symbol": "", "original": "_isSecondField"}, "996": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1000": {"type": "MIPS_HI16", "symbol": "", "original": "_isSecondField"}, "1008": {"type": "MIPS_LO16", "symbol": "", "original": "_isSecondField"}, "1028": {"type": "MIPS_26", "symbol": "_dualPrimeVector", "scope": "LIBRARY", "original": ".text"}, "1092": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "1160": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "1180": {"type": "MIPS_26", "symbol": "_Error1", "scope": "LIBRARY"}, "1184": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1204": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_structure"}, "1212": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "1240": {"type": "MIPS_HI16", "symbol": "", "original": "_backFrame"}, "1252": {"type": "MIPS_LO16", "symbol": "", "original": "_backFrame"}, "1272": {"type": "MIPS_HI16", "symbol": "", "original": "_backFrame"}, "1292": {"type": "MIPS_LO16", "symbol": "", "original": "_backFrame"}, "1320": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "1352": {"type": "MIPS_LO16", "symbol": "", "original": "_backFrame"}, "1376": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "1408": {"type": "MIPS_HI16", "symbol": "", "original": "_backBot"}, "1416": {"type": "MIPS_LO16", "symbol": "", "original": "_backBot"}, "1420": {"type": "MIPS_HI16", "symbol": "", "original": "_backTop"}, "1424": {"type": "MIPS_LO16", "symbol": "", "original": "_backTop"}, "1468": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "1488": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1500": {"type": "MIPS_HI16", "symbol": "", "original": "_backBot"}, "1508": {"type": "MIPS_LO16", "symbol": "", "original": "_backBot"}, "1512": {"type": "MIPS_HI16", "symbol": "", "original": "_backTop"}, "1516": {"type": "MIPS_LO16", "symbol": "", "original": "_backTop"}, "1560": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "1576": {"type": "MIPS_HI16", "symbol": "", "original": "_backBot"}, "1584": {"type": "MIPS_LO16", "symbol": "", "original": "_backBot"}, "1588": {"type": "MIPS_HI16", "symbol": "", "original": "_backTop"}, "1592": {"type": "MIPS_LO16", "symbol": "", "original": "_backTop"}, "1636": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "1656": {"type": "MIPS_26", "symbol": "_Error1", "scope": "LIBRARY"}, "1660": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "1c4043d152c8a1744565b95770ce7c90a255f2bf": {"fa54cde1": {"type": "FUNCTION", "size": 1640, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_mbcont"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "112": {"type": "MIPS_GPREL16", "symbol": "_picture_coding_type"}, "128": {"type": "MIPS_GPREL16", "symbol": "_picture_structure"}, "180": {"type": "MIPS_GPREL16", "symbol": "_forwFrame"}, "240": {"type": "MIPS_GPREL16", "symbol": "_forwFrame"}, "264": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "296": {"type": "MIPS_GPREL16", "symbol": "_forwFrame"}, "320": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "340": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "360": {"type": "MIPS_26", "symbol": "_dualPrimeVector", "scope": "LIBRARY", "original": ".text"}, "388": {"type": "MIPS_GPREL16", "symbol": "_forwFrame"}, "416": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "432": {"type": "MIPS_GPREL16", "symbol": "_forwFrame"}, "468": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "496": {"type": "MIPS_GPREL16", "symbol": "_forwFrame"}, "524": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "540": {"type": "MIPS_GPREL16", "symbol": "_forwFrame"}, "584": {"type": "MIPS_26", "symbol": "_Error1", "scope": "LIBRARY"}, "588": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "600": {"type": "MIPS_GPREL16", "symbol": "_forwTop"}, "604": {"type": "MIPS_GPREL16", "symbol": "_forwBot"}, "612": {"type": "MIPS_GPREL16", "symbol": "_backTop"}, "620": {"type": "MIPS_GPREL16", "symbol": "_backBot"}, "628": {"type": "MIPS_GPREL16", "symbol": "_picture_coding_type"}, "656": {"type": "MIPS_GPREL16", "symbol": "_isSecondField"}, "836": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "844": {"type": "MIPS_GPREL16", "symbol": "_picture_coding_type"}, "856": {"type": "MIPS_GPREL16", "symbol": "_isSecondField"}, "948": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "952": {"type": "MIPS_GPREL16", "symbol": "_isSecondField"}, "976": {"type": "MIPS_26", "symbol": "_dualPrimeVector", "scope": "LIBRARY", "original": ".text"}, "1040": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "1112": {"type)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "1132": {"type": "MIPS_26", "symbol": "_Error1", "scope": "LIBRARY"}, "1136": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1156": {"type": "MIPS_GPREL16", "symbol": "_picture_structure"}, "1200": {"type": "MIPS_GPREL16", "symbol": "_backFrame"}, "1256": {"type": "MIPS_GPREL16", "symbol": "_backFrame"}, "1280": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "1312": {"type": "MIPS_GPREL16", "symbol": "_backFrame"}, "1336": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "1368": {"type": "MIPS_GPREL16", "symbol": "_backBot"}, "1372": {"type": "MIPS_GPREL16", "symbol": "_backTop"}, "1416": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "1440": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1452": {"type": "MIPS_GPREL16", "symbol": "_backBot"}, "1456": {"type": "MIPS_GPREL16", "symbol": "_backTop"}, "1500": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "1516": {"type": "MIPS_GPREL16", "symbol": "_backBot"}, "1520": {"type": "MIPS_GPREL16", "symbol": "_backTop"}, "1564": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "1584": {"type": "MIPS_26", "symbol": "_Error1", "scope": "LIBRARY"}, "1588": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "26a7eaff6a0c30c02c5b0b5a64110435b8d1e5a8": {"7386b945": {"type": "FUNCTION", "size": 1736, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_mbcont"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_coding_type"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_coding_type"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_structure"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": "_forwTop"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": "_forwFrame"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": "_forwFrame"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": "_forwFrame"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": "_forwFrame"}, "276": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": "_forwFrame"}, "332": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "352": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "376": {"type": "MIPS_26", "symbol": "_dualPrimeVector", "scope": "LIBRARY", "original": ".text"}, "380": {"type": "MIPS_HI16", "symbol": "", "original": "_forwFrame"}, "404": {"type": "MIPS_LO16", "symbol": "", "original": "_forwFrame"}, "432": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "448": {"type": "MIPS_LO16", "symbol": "", "original": "_forwFrame"}, "484": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "512": {"type": "MIPS_LO16", "symbol": "", "original": "_forwFrame"}, "540": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "556": {"type": "MIPS_LO16", "symbol": "", "original": "_forwFrame"}, "600": {"type": "MIPS_26", "symbol": "_Error1", "scope": "LIBRARY"}, "604": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "616": {"type": "MIPS_HI16", "symbol": "", "original": "_backTop"}, "620": {"type": "MIPS_HI16", "symbol": "", "original": "_forwBot"}, "624": {"type": "MIPS_LO16", "symbol": "", "original": "_forwTop"}, "628": {"type": "MIPS_LO16", "symbol": "", "original": "_backTop"}, "632": {"type": "MIPS_HI16", "symbol": "", "original": "_backBot"}, "636": {"type": "MIPS_LO16", "symbol": "", "original": "_forwBot"}, "644": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_coding_type"}, "648": {"type": "MIPS_LO16", "symbol": "", "original": "_backBot"}, "656": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_coding_type"}, "692": {"type": "MIPS_HI16", "symbol": "", "original": "_isSecondField"}, "696": {"type": "MIPS_LO16", "symbol": "", "original": "_isSecondField"}, "876": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "884": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_coding_type"}, "888": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_coding_type"}, "900": {"type": "MIPS_HI16", "symbol": "", "original": "_isSecondField"}, "904": {"type": "MIPS_LO16", "symbol": "", "original": "_isSecondField"}, "996": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1000": {"type": "MIPS_HI16", "symbol": "", "original": "_isSecondField"}, "1008": {"type": "MIPS_LO16", "symbol": "", "original": "_isSecondField"}, "1028": {"type": "MIPS_26", "symbol": "_dualPrimeVector", "scope": "LIBRARY", "original": ".text"}, "1092": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "1164": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "1184": {"type": "MIPS_26", "symbol": "_Error1", "scope": "LIBRARY"}, "1188": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1208": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_structure"}, "1216": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "1244": {"type": "MIPS_HI16", "symbol": "", "original": "_backFrame"}, "1256": {"type": "MIPS_LO16", "symbol": "", "original": "_backFrame"}, "1292": {"type": "MIPS_HI16", "symbol": "", "original": "_backFrame"}, "1312": {"type": "MIPS_LO16", "symbol": "", "original": "_backFrame"}, "1340": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "1372": {"type": "MIPS_LO16", "symbol": "", "original": "_backFrame"}, "1396": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "1428": {"type": "MIPS_HI16", "symbol": "", "original": "_backBot"}, "1436": {"type": "MIPS_LO16", "symbol": "", "original": "_backBot"}, "1440": {"type": "MIPS_HI16", "symbol": "", "original": "_backTop"}, "1444": {"type": "MIPS_LO16", "symbol": "", "original": "_backTop"}, "1488": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "1512": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1524": {"type": "MIPS_HI16", "symbol": "", "original": "_backBot"}, "1532": {"type": "MIPS_LO16", "symbol": "", "original": "_backBot"}, "1536": {"type": "MIPS_HI16", "symbol": "", "original": "_backTop"}, "1540": {"type": "MIPS_LO16", "symbol": "", "original": "_backTop"}, "1584": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "1600": {"type": "MIPS_HI16", "symbol": "", "original": "_backBot"}, "1608": {"type": "MIPS_LO16", "symbol": "", "original": "_backBot"}, "1612": {"type": "MIPS_HI16", "symbol": "", "original": "_backTop"}, "1616": {"type": "MIPS_LO16", "symbol": "", "original": "_backTop"}, "1660": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "1680": {"type": "MIPS_26", "symbol": "_Error1", "scope": "LIBRARY"}, "1684": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "ba3714622eb9201d98f7051799d35a7e0c9f2009": {"4a92a4a7": {"type": "FUNCTION", "size": 1796, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"276": {"type": "MIPS_26", "symbol": ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(_getRef0", "scope": "LIBRARY", "original": ".text"}, "340": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "360": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "384": {"type": "MIPS_26", "symbol": "_dualPrimeVector", "scope": "LIBRARY", "original": ".text"}, "448": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "508": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "572": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "640": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "644": {"type": "MIPS_26", "symbol": "_sceMpegError1", "scope": "LIBRARY"}, "904": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "1032": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1064": {"type": "MIPS_26", "symbol": "_dualPrimeVector", "scope": "LIBRARY", "original": ".text"}, "1136": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "1216": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "1236": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1240": {"type": "MIPS_26", "symbol": "_sceMpegError1", "scope": "LIBRARY"}, "1404": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "1468": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "1556": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "1576": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1644": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "1716": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "1736": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1740": {"type": "MIPS_26", "symbol": "_sceMpegError1", "scope": "LIBRARY"}}}}, "6c3a6be1726dd15bd2f688a1a227836dfa045872": {"816886e9": {"type": "FUNCTION", "size": 1708, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_mbcont"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_coding_type"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_coding_type"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_structure"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": "_forwTop"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": "_forwFrame"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": "_forwFrame"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": "_forwFrame"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": "_forwFrame"}, "276": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": "_forwFrame"}, "332": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "352": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "376": {"type": "MIPS_26", "symbol": "_dualPrimeVector", "scope": "LIBRARY", "original": ".text"}, "380": {"type": "MIPS_HI16", "symbol": "", "original": "_forwFrame"}, "404": {"type": "MIPS_LO16", "symbol": "", "original": "_forwFrame"}, "432": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "448": {"type": "MIPS_LO16", "symbol": "", "original": "_forwFrame"}, "484": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "512": {"type": "MIPS_LO16", "symbol": "", "original": "_forwFrame"}, "540": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "556": {"type": "MIPS_LO16", "symbol": "", "original": "_forwFrame"}, "600": {"type": "MIPS_26", "symbol": "_Error1", "scope": "LIBRARY"}, "604": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "616": {"type": "MIPS_HI16", "symbol": "", "original": "_backTop"}, "620": {"type": "MIPS_HI16", "symbol": "", "original": "_forwBot"}, "624": {"type": "MIPS_LO16", "symbol": "", "original": "_forwTop"}, "628": {"type": "MIPS_LO16", "symbol": "", "original": "_backTop"}, "632": {"type": "MIPS_HI16", "symbol": "", "original": "_backBot"}, "636": {"type": "MIPS_LO16", "symbol": "", "original": "_forwBot"}, "644": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_coding_type"}, "648": {"type": "MIPS_LO16", "symbol": "", "original": "_backBot"}, "656": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_coding_type"}, "688": {"type": "MIPS_HI16", "symbol": "", "original": "_isSecondField"}, "692": {"type": "MIPS_LO16", "symbol": "", "original": "_isSecondField"}, "872": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "880": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_coding_type"}, "884": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_coding_type"}, "896": {"type": "MIPS_HI16", "symbol": "", "original": "_isSecondField"}, "900": {"type": "MIPS_LO16", "symbol": "", "original": "_isSecondField"}, "992": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "996": {"type": "MIPS_HI16", "symbol": "", "original": "_isSecondField"}, "1004": {"type": "MIPS_LO16", "symbol": "", "original": "_isSecondField"}, "1024": {"type": "MIPS_26", "symbol": "_dualPrimeVector", "scope": "LIBRARY", "original": ".text"}, "1088": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "1156": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "1176": {"type": "MIPS_26", "symbol": "_Error1", "scope": "LIBRARY"}, "1180": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1200": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_structure"}, "1208": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "1236": {"type": "MIPS_HI16", "symbol": "", "original": "_backFrame"}, "1248": {"type": "MIPS_LO16", "symbol": "", "original": "_backFrame"}, "1268": {"type": "MIPS_HI16", "symbol": "", "original": "_backFrame"}, "1288": {"type": "MIPS_LO16", "symbol": "", "original": "_backFrame"}, "1316": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "1348": {"type": "MIPS_LO16", "symbol": "", "original": "_backFrame"}, "1372": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "1404": {"type": "MIPS_HI16", "symbol": "", "original": "_backBot"}, "1412": {"type": "MIPS_LO16", "symbol": "", "original": "_backBot"}, "1416": {"type": "MIPS_HI16", "symbol": "", "original": "_backTop"}, "1420": {"type": "MIPS_LO16", "symbol": "", "original": "_backTop"}, "1464": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "1484": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1496": {"type": "MIPS_HI16", "symbol": "", "original": "_backBot"}, "1504": {"type": "MIPS_LO16", "symbol": "", "original": "_backBot"}, "1508": {"type": "MIPS_HI16", "symbol": "", "original": "_backTop"}, "1512": {"type": "MIPS_LO16", "symbol": "", "original": "_backTop"}, "1556": {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "1572": {"type": "MIPS_HI16", "symbol": "", "original": "_backBot"}, "1580": {"type": "MIPS_LO16", "symbol": "", "original": "_backBot"}, "1584": {"type": "MIPS_HI16", "symbol": "", "original": "_backTop"}, "1588": {"type": "MIPS_LO16", "symbol": "", "original": "_backTop"}, "1632":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( {"type": "MIPS_26", "symbol": "_getRef0", "scope": "LIBRARY", "original": ".text"}, "1652": {"type": "MIPS_26", "symbol": "_Error1", "scope": "LIBRARY"}, "1656": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "_getRef0": {"c7c101cbd4355ef4652d41f41da8e11d1093a030": {"a82d8e32": {"type": "FUNCTION", "size": 1052, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"808": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "824": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "928": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "940": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "2b105a3d6d637f54f78b1195acfb00cccfbeace9": {"a82d8e32": {"type": "FUNCTION", "size": 1052, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"808": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "824": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "928": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "940": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "9e22e68f408c42dd4ad199d5ea285f0d5cdf0b34": {"517d9cf2": {"type": "FUNCTION", "size": 1056, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_mbcont"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": "_refBlockp"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": "_refBlockp"}, "392": {"type": "MIPS_HI16", "symbol": "", "original": "_mbcont"}, "400": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "776": {"type": "MIPS_HI16", "symbol": "", "original": "_mbcont"}, "784": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "844": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "852": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "904": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "920": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "0d1b426ca6cc6879947357bb71d58403227e2443": {"e3a97efc": {"type": "FUNCTION", "size": 1072, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_mbcont"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "80": {"type": "MIPS_GPREL16", "symbol": "_refBlockp"}, "396": {"type": "MIPS_HI16", "symbol": "", "original": "_mbcont"}, "404": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "788": {"type": "MIPS_HI16", "symbol": "", "original": "_mbcont"}, "796": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "896": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "904": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "924": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "932": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "80d5928fb568f46112c835a570920662a7831928": {"84b635cc": {"type": "FUNCTION", "size": 1060, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_mbcont"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": "_refBlockp"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": "_refBlockp"}, "392": {"type": "MIPS_HI16", "symbol": "", "original": "_mbcont"}, "400": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "780": {"type": "MIPS_HI16", "symbol": "", "original": "_mbcont"}, "788": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "892": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "904": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "916": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "928": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "ae5caa959bb61be85ad05190891654d82051f6b2": {"74ed0b3a": {"type": "FUNCTION", "size": 1160, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"996": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1004": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1048": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1056": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "_doMC": {"9d3a879f1b7a84e4e1ce4811203e8603a83d75ef": {"34e7ac4a": {"type": "FUNCTION", "size": 540, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"296": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "304": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "400": {"type": "MIPS_26", "symbol": "_copyRefImage", "scope": "LIBRARY", "original": ".text"}, "468": {"type": "MIPS_26", "symbol": "_copyRefImage", "scope": "LIBRARY", "original": ".text"}, "532": {"type": "MIPS_26", "symbol": "_copyAddRefImage", "scope": "LIBRARY", "original": ".text"}}}}, "eb779907e91a1de5c49f001e3f1a7f78abd58063": {"34e7ac4a": {"type": "FUNCTION", "size": 540, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"296": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "304": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "400": {"type": "MIPS_26", "symbol": "_copyRefImage", "scope": "LIBRARY", "original": ".text"}, "468": {"type": "MIPS_26", "symbol": "_copyRefImage", "scope": "LIBRARY", "original": ".text"}, "532": {"type": "MIPS_26", "symbol": "_copyAddRefImage", "scope": "LIBRARY", "original": ".text"}}}}, "c287290c29ef4a20ca6d81a441d3d7d92dcdbed0": {"2664464b": {"type": "FUNCTION", "size": 396, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": "_mbcont"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "200": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "276": {"type": "MIPS_26", "symbol": "_copyRefImage", "scope": "LIBRARY", "original": ".text"}, "292": {"type": "MIPS_HI16", "symbol": "", "original": "_refBlockp"}, "300": {"type": "MIPS_LO16", "symbol": "", "original": "_refBlockp"}, "332": {"type": "MIPS_26", "symb)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ol": "_copyRefImage", "scope": "LIBRARY", "original": ".text"}, "340": {"type": "MIPS_HI16", "symbol": "", "original": "_refBlockp"}, "348": {"type": "MIPS_LO16", "symbol": "", "original": "_refBlockp"}, "388": {"type": "MIPS_26", "symbol": "_copyAddRefImage", "scope": "LIBRARY", "original": ".text"}}}}, "4a1fa1810ff2208693a183700ed8e79f9a42ace3": {"b69a2cb3": {"type": "FUNCTION", "size": 408, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": "_mbcont"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "208": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "288": {"type": "MIPS_26", "symbol": "_copyRefImage", "scope": "LIBRARY", "original": ".text"}, "304": {"type": "MIPS_GPREL16", "symbol": "_refBlockp"}, "344": {"type": "MIPS_26", "symbol": "_copyRefImage", "scope": "LIBRARY", "original": ".text"}, "368": {"type": "MIPS_GPREL16", "symbol": "_refBlockp"}, "400": {"type": "MIPS_26", "symbol": "_copyAddRefImage", "scope": "LIBRARY", "original": ".text"}}}}, "a8cfb9294011273f990ce78117869f94a37fa461": {"a1e96bb3": {"type": "FUNCTION", "size": 432, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": "_mbcont"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": "_refBlockp"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "216": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "300": {"type": "MIPS_26", "symbol": "_copyRefImage", "scope": "LIBRARY", "original": ".text"}, "316": {"type": "MIPS_HI16", "symbol": "", "original": "_refBlockp"}, "324": {"type": "MIPS_LO16", "symbol": "", "original": "_refBlockp"}, "364": {"type": "MIPS_26", "symbol": "_copyRefImage", "scope": "LIBRARY", "original": ".text"}, "380": {"type": "MIPS_LO16", "symbol": "", "original": "_refBlockp"}, "424": {"type": "MIPS_26", "symbol": "_copyAddRefImage", "scope": "LIBRARY", "original": ".text"}}}}, "932167405cde219ffb1a64292e7f05ed9611f6ba": {"e0336dc2": {"type": "FUNCTION", "size": 540, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"296": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "304": {"type": "MIPS_26", "symbol": "_sceMpegError", "scope": "LIBRARY"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "400": {"type": "MIPS_26", "symbol": "_copyRefImage", "scope": "LIBRARY", "original": ".text"}, "468": {"type": "MIPS_26", "symbol": "_copyRefImage", "scope": "LIBRARY", "original": ".text"}, "532": {"type": "MIPS_26", "symbol": "_copyAddRefImage", "scope": "LIBRARY", "original": ".text"}}}}}, "_rix_000": {"8a064ebb8f640d74147f70ba25ae1741fcd68614": {"00000000": {"type": "FUNCTION", "size": 116, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "d910ee1fca4ff5d4030eaa7d2b07d4d589abddc7": {"00000000": {"type": "FUNCTION", "size": 116, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_ri0_000": {"55cd7157e815a032318cd5922db0d21560258577": {"00000000": {"type": "FUNCTION", "size": 148, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "238abc5d4acb27db4189ece738b4457d668af892": {"00000000": {"type": "FUNCTION", "size": 148, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_rix_001": {"0d03c5d94726e09bfdd0fc13f8b68ac190ab5857": {"00000000": {"type": "FUNCTION", "size": 180, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "905e063b0efda9de942c6a2c81d21f3f5e894743": {"00000000": {"type": "FUNCTION", "size": 180, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_ri0_001": {"8765477fcb49423244a9b4ccb9c687872a696d48": {"00000000": {"type": "FUNCTION", "size": 204, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "45bcde5493bc7003a0396203e62567efedee19c1": {"00000000": {"type": "FUNCTION", "size": 204, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_rix_010": {"7ce70adbd7f05eeeaa078b3389d27fa50545400e": {"00000000": {"type": "FUNCTION", "size": 172, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "3ca28ef9a5b0273e296b4a24e823ae05e1a5441d": {"00000000": {"type": "FUNCTION", "size": 172, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_ri0_010": {"96cc994ee42f70be4dc8bbc838ce0149dd8a0085": {"00000000": {"type": "FUNCTION", "size": 184, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3",)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "7620f9da4c78335c353e1ab5450ce0b15623269e": {"00000000": {"type": "FUNCTION", "size": 184, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_rix_011": {"63662e705271810578473169e452204e811beb72": {"00000000": {"type": "FUNCTION", "size": 248, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "5bce00f4e25eed4b6e2eb0eaea50875110d7de01": {"00000000": {"type": "FUNCTION", "size": 248, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_ri0_011": {"e1893238115494376f12712a014424ad1aa14685": {"00000000": {"type": "FUNCTION", "size": 252, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "48032e05b38cd95db24b7763b4722233d15409b1": {"00000000": {"type": "FUNCTION", "size": 252, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_rix_100": {"c249098abf11dab2b58cb793338d98e943df580d": {"00000000": {"type": "FUNCTION", "size": 156, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "f8f9795ce06dcd2bebd465a2e8ff0ff2369c6d21": {"00000000": {"type": "FUNCTION", "size": 164, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "9a4f0059af8bda817dc8508ec162e7d0124ed517": {"00000000": {"type": "FUNCTION", "size": 156, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_ri0_100": {"8d3e0f6b9e5ffba8c202b56cfa1206f232ce457b": {"00000000": {"type": "FUNCTION", "size": 172, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "ff078a6e52a7e7f371f0ee1fe29a8d0f0876e742": {"00000000": {"type": "FUNCTION", "size": 172, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_rix_101": {"f293c3d8ba1867609c29941b8a13a409facc0a29": {"00000000": {"type": "FUNCTION", "size": 220, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "232c299c3cf0ed36c9a20a5f7d3c5a628b9bd990": {"00000000": {"type": "FUNCTION", "size": 228, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "5f79eaa16856c3aa5820044ee959c180df372817": {"00000000": {"type": "FUNCTION", "size": 220, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_ri0_101": {"a40582e0f198f700ea5828ad3bef189258613e37": {"00000000": {"type": "FUNCTION", "size": 228, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "a50c77ff7306f16fdf2da984344b6cbaeb283a4b": {"00000000": {"type": "FUNCTION", "size": 228, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_rix_110": {"cd8594c52fa8615dfe3b194fb133127c414cdafd": {"00000000": {"type": "FUNCTION", "size": 212, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "0cf8f5b7af6f65d45953e44d17e1040e6c85631c": {"00000000": {"type": "FUNCTION", "size": 220, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "516b781fd055f275793c43d38edd0b09a8276ab2": {"00000000": {"type": "FUNCTION", "size": 212, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_ri0_110": {"7882eb41edbbf0962f1d5509da3585dc9b157c82": {"00000000": {"type": "FUNCTION", "size": 208, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "e81e47f3bf38333abef710a243f0d63513a2d424": {"00000000": {"type": "FUNCTION", "size": 208, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_rix_111": {"00c112309b157659e5cd0959f6c95a98282b0c5e": {"00000000": {"type": "FUNCTION", "size": 288, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2)PS2SDB", 8192}, + std::string_view{R"PS2SDB(.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "f886925cd189c4a0a783d7199fe08b69d007ced8": {"00000000": {"type": "FUNCTION", "size": 296, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "1ec58e06a3bf19d4d0f255b0068c6c3bdfc1683a": {"00000000": {"type": "FUNCTION", "size": 288, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_ri0_111": {"b2a09bd8583344bb7a5baebcd0b23fd7bb93724b": {"00000000": {"type": "FUNCTION", "size": 276, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "25b5b82f628f946049be98b5fbfed6c2b8e15e5f": {"00000000": {"type": "FUNCTION", "size": 276, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_copyAddRefImage": {"ff92ab45efce3086639a9fea7acb32eb2c5d80a6": {"cd8ae710": {"type": "FUNCTION", "size": 92, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}}}}, "6c7fa50b898b047b38512325e86d0cf3453770d9": {"cd8ae710": {"type": "FUNCTION", "size": 236, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}}}}}, "_copyRefImage": {"b7d82a49f2437d9d0c0591f7af893322e681c116": {"cd8ae710": {"type": "FUNCTION", "size": 96, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}}}}, "0be09600a500b87834d5c96842d9ddef621a22ce": {"cd8ae710": {"type": "FUNCTION", "size": 88, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.4.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}}}}, "e36da339accc33ad413c09073bfc5e997ae488ce": {"cd8ae710": {"type": "FUNCTION", "size": 192, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}}}}}, "_ipuSetMPEG1": {"dede2bb906c97e5afb671f2d1e25957dd3778ef4": {"00000000": {"type": "FUNCTION", "size": 40, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "2b905b9b6b11043c530653a123a1d60570bddf82": {"00000000": {"type": "FUNCTION", "size": 44, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}}, "_waitBdecOut": {"7447422ab60f1115019df8cd26e497397d35dd01": {"edde3961": {"type": "FUNCTION", "size": 496, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "_waitIpuIdle", "original": ".text"}, "160": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}, "288": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "300": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "324": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}, "356": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}, "364": {"type": "MIPS_26", "symbol": "DIntr"}, "432": {"type": "MIPS_26", "symbol": "EIntr"}}}}, "8b6f281b7b2f8474720f82596f20b89219acd8b4": {"42a999ad": {"type": "FUNCTION", "size": 508, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "_waitIpuIdle", "original": ".text"}, "160": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}, "288": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "296": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "300": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "320": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}, "352": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}, "360": {"type": "MIPS_26", "symbol": "DIntr"}, "440": {"type": "MIPS_26", "symbol": "EIntr"}}}}, "d6af8c5f34aa602d303724834a421b035c14c70d": {"a166b9a7": {"type": "FUNCTION", "size": 668, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "_waitIpuIdle", "original": ".text"}, "160": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}, "208": {"type": "MIPS_26", "symbol": "DIntr"}, "300": {"type": "MIPS_26", "symbol": "EIntr"}, "448": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "456": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "460": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "480": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}, "512": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}, "520": {"type": "MIPS_26", "symbol": "DIntr"}, "600": {"type": "MIPS_26", "symbol": "EIntr"}}}}, "be63746e2834f32689a1748de5fa26ebc6aaa765": {"7b189315": {"type": "FUNCTION", "size": 660, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "_waitIpuIdle", "original": ".text"}, "208")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}, "228": {"type": "MIPS_26", "symbol": "DIntr"}, "276": {"type": "MIPS_26", "symbol": "EIntr"}, "432": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "440": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "444": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "464": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}, "496": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}, "504": {"type": "MIPS_26", "symbol": "DIntr"}, "584": {"type": "MIPS_26", "symbol": "EIntr"}}}}, "36f92938678fd82929066085ffb93e7c00ea7ea2": {"fb07a2cf": {"type": "FUNCTION", "size": 484, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "_waitIpuIdle", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": "_top32"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": "_top32len"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": "_theSceMpeg"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": "_theSceMpeg"}, "128": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": "_top32"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": "_top32len"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": "_top32"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": "_top32len"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": "_top32len"}, "292": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "296": {"type": "MIPS_HI16", "symbol": "", "original": "_theSceMpeg"}, "300": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "304": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": "_theSceMpeg"}, "328": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}, "356": {"type": "MIPS_LO16", "symbol": "", "original": "_theSceMpeg"}, "360": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}, "368": {"type": "MIPS_26", "symbol": "DIntr"}, "436": {"type": "MIPS_26", "symbol": "EIntr"}}}}, "3759c7fa18494e29a9f89b6abe882136511c212f": {"e1227e37": {"type": "FUNCTION", "size": 416, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "_waitIpuIdle", "original": ".text"}, "144": {"type": "MIPS_GPREL16", "symbol": "_theSceMpeg"}, "152": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}, "220": {"type": "MIPS_GPREL16", "symbol": "_top32"}, "256": {"type": "MIPS_GPREL16", "symbol": "_top32len"}, "280": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "288": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "292": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "304": {"type": "MIPS_GPREL16", "symbol": "_theSceMpeg"}, "312": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}, "340": {"type": "MIPS_GPREL16", "symbol": "_theSceMpeg"}, "344": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}}}}, "e92bdfb2a11330b74e4e3d13f508b17e70db9e6e": {"ca8b36e1": {"type": "FUNCTION", "size": 508, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "_waitIpuIdle", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": "_top32"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": "_top32len"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": "_theSceMpeg"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": "_theSceMpeg"}, "128": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": "_top32"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": "_top32len"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": "_top32"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": "_top32len"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": "_top32len"}, "292": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "296": {"type": "MIPS_HI16", "symbol": "", "original": "_theSceMpeg"}, "300": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": "_theSceMpeg"}, "324": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_theSceMpeg"}, "356": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}}}}, "77b500c310f6e0e7db3f62ff1039a0d9da4ec9d5": {"3e2dd1f8": {"type": "FUNCTION", "size": 464, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": "_top32"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": "_top32len"}, "52": {"type": "MIPS_26", "symbol": "_waitIpuIdle", "original": ".text"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": "_theSceMpeg"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": "_theSceMpeg"}, "176": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": "_top32"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": "_top32len"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": "_top32len"}, "312": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "316": {"type": "MIPS_HI16", "symbol": "", "original": "_theSceMpeg"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "324": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": "_theSceMpeg"}, "348": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}, "376": {"type": "MIPS_LO16", "symbol": "", "original": "_theSceMpeg"}, "380": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}}}}}, "_dmVector": {"a34c218f4d24516d6553a13f485834f7fbd52631": {"2eb8d12b": {"type": "FUNCTION", "size": 28, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "_ipuVdec", "scope": "LIBRARY", "original": ".text"}}}}, "ef36607613897e44d95c2b06413ecad9ebfa1556": {"2eb8d12b": {"type": "FUNCTION", "size": 28, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "_ipuVdec", "scope": "LIBRARY", "original": ".text"}}}}}, "_dualPrimeVector": {"9586e74fdae549798bff34bbfdc74fa2a1861d8b": {"00000000": {"type": "FUNCTION", "size": 388, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compil)PS2SDB", 8192}, + std::string_view{R"PS2SDB(er_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "96b512a5b35c175b52ef5df2ec8db614c5b25343": {"00000000": {"type": "FUNCTION", "size": 388, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "d15a0a0521abb577baabd0cb9ba5179fdd041b06": {"a4d21739": {"type": "FUNCTION", "size": 392, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_structure"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": "_top_field_first"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": "_top_field_first"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}}}}, "8d6ccb4ec7a5c1dd4d100ee12f96105b4bc7a8d9": {"60caa908": {"type": "FUNCTION", "size": 384, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"0": {"type": "MIPS_GPREL16", "symbol": "_picture_structure"}, "12": {"type": "MIPS_GPREL16", "symbol": "_top_field_first"}, "344": {"type": "MIPS_GPREL16", "symbol": "_picture_structure"}}}}, "8bc76224b9c98b49975f73a417c9f48a22aa70f2": {"248fd630": {"type": "FUNCTION", "size": 396, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_structure"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": "_top_field_first"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "_top_field_first"}, "356": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}}}}, "882f58f302e8cf4f1416ec483b9c065bf466af4a": {"00000000": {"type": "FUNCTION", "size": 388, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_mbAddressIncrement": {"afababe671c8f5a39124993ad462a3f923d98fe5": {"50edd2e4": {"type": "FUNCTION", "size": 272, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_26", "symbol": "_ipuVdec", "scope": "LIBRARY", "original": ".text"}, "136": {"type": "MIPS_26", "symbol": "_peepBit", "scope": "LIBRARY", "original": ".text"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "172": {"type": "MIPS_26", "symbol": "_flushBuf", "original": ".text"}, "192": {"type": "MIPS_26", "symbol": "_Error1", "scope": "LIBRARY"}}}}, "7aa02d29846533bce3222a1b5ec471ff2f7dd241": {"50edd2e4": {"type": "FUNCTION", "size": 272, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_26", "symbol": "_ipuVdec", "scope": "LIBRARY", "original": ".text"}, "136": {"type": "MIPS_26", "symbol": "_peepBit", "scope": "LIBRARY", "original": ".text"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "172": {"type": "MIPS_26", "symbol": "_flushBuf", "original": ".text"}, "192": {"type": "MIPS_26", "symbol": "_Error1", "scope": "LIBRARY"}}}}, "b1e028dbe6fe3ad42d7b3ba4ce684770a7cc5eb7": {"efdb2936": {"type": "FUNCTION", "size": 272, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": "_isError"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": "_isMpeg2"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_26", "symbol": "_ipuVdec", "scope": "LIBRARY", "original": ".text"}, "144": {"type": "MIPS_26", "symbol": "_peepBit", "scope": "LIBRARY", "original": ".text"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": "_isMpeg2"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "176": {"type": "MIPS_26", "symbol": "_flushBuf", "original": ".text"}, "192": {"type": "MIPS_26", "symbol": "_Error1", "scope": "LIBRARY"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": "_isError"}}}}, "986b77b33bbc5ad31fb97fead0e18fa691b34c82": {"4339f97a": {"type": "FUNCTION", "size": 248, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_26", "symbol": "_ipuVdec", "scope": "LIBRARY", "original": ".text"}, "128": {"type": "MIPS_26", "symbol": "_peepBit", "scope": "LIBRARY", "original": ".text"}, "140": {"type": "MIPS_GPREL16", "symbol": "_isMpeg2"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "160": {"type": "MIPS_26", "symbol": "_flushBuf", "original": ".text"}, "176": {"type": "MIPS_26", "symbol": "_Error1", "scope": "LIBRARY"}, "184": {"type": "MIPS_GPREL16", "symbol": "_isError"}}}}}, "_pictureData0": {"8e2c3cfadec9c1a7e4327e3053e9cdbc645ea31b": {"4bb02739": {"type": "FUNCTION", "size": 264, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"84": {"type": "MIPS_26", "symbol": "_slice0", "scope": "LIBRARY", "original": ".text"}, "112": {"type": "MIPS_26", "symbol": "_waitIpuIdle", "original": ".text"}, "120": {"type": "MIPS_26", "symbol": "_waitBdecOut", "scope": "LIBRARY", "original": ".text"}, "196": {"type": "MIPS_26", "symbol": "_doMC", "scope": "LIBRARY", "original": ".text"}, "216": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "220": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "3f661a5b2d256599b46865aad2ef62f3cdb2eb4f": {"d823f397": {"type": "FUNCTION", "size": 288, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"84": {"type": "MIPS_26", "symbol": "_slice0", "scope": "LIBRARY", "original": ".text"}, "112": {"type": "MIPS_26", "symbol": "_waitIpuIdle", "original": ".text"}, "120": {"type": "MIPS_26", "symbol": "_waitBdecOut", "scope": "LIBRARY", "original": ".text"}, "220": {"type": "MIPS_26", "symbol": "_doMC", "scope": "LIBRARY", "original": ".text"}, "240": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "244": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "a77c47cb4526615f97d7f7b18789203c780a7137": {"1f824232": {"type": "FUNCTION", "size": 280, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"84": {"type": "MIPS_26", "symbol": "_slice0", "scope": "LIBRARY", "original": ".text"}, "112": {"type": "MIPS_26", "symbol": "_waitIpuIdle)PS2SDB", 8192}, + std::string_view{R"PS2SDB(", "original": ".text"}, "120": {"type": "MIPS_26", "symbol": "_waitBdecOut", "scope": "LIBRARY", "original": ".text"}, "212": {"type": "MIPS_26", "symbol": "_doMC", "scope": "LIBRARY", "original": ".text"}, "232": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "236": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "2b70bed9067d662f173adbd143f5c1583485afff": {"f7ade326": {"type": "FUNCTION", "size": 292, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_widthMB"}, "4": {"type": "MIPS_HI16", "symbol": "", "original": "_heightMB"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "_widthMB"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "_heightMB"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_structure"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": "_mbcont"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "108": {"type": "MIPS_26", "symbol": "_slice0", "scope": "LIBRARY", "original": ".text"}, "136": {"type": "MIPS_26", "symbol": "_waitIpuIdle", "original": ".text"}, "144": {"type": "MIPS_26", "symbol": "_waitBdecOut", "scope": "LIBRARY", "original": ".text"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "220": {"type": "MIPS_26", "symbol": "_doMC", "scope": "LIBRARY", "original": ".text"}, "240": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "244": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "ae59a714f19081f4a6af01a0a47fd755fc12e9b0": {"a9ae2d8a": {"type": "FUNCTION", "size": 280, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_GPREL16", "symbol": "_widthMB"}, "8": {"type": "MIPS_GPREL16", "symbol": "_heightMB"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": "_mbcont"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "52": {"type": "MIPS_GPREL16", "symbol": "_picture_structure"}, "100": {"type": "MIPS_26", "symbol": "_slice0", "scope": "LIBRARY", "original": ".text"}, "128": {"type": "MIPS_26", "symbol": "_waitIpuIdle", "original": ".text"}, "136": {"type": "MIPS_26", "symbol": "_waitBdecOut", "scope": "LIBRARY", "original": ".text"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "204": {"type": "MIPS_26", "symbol": "_doMC", "scope": "LIBRARY", "original": ".text"}, "228": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "232": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "133d51c4d5c304161679e69069158a43c7d0d08b": {"67b3d6ea": {"type": "FUNCTION", "size": 288, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_widthMB"}, "4": {"type": "MIPS_HI16", "symbol": "", "original": "_heightMB"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "_widthMB"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "_heightMB"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": "_mbcont"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_structure"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "108": {"type": "MIPS_26", "symbol": "_slice0", "scope": "LIBRARY", "original": ".text"}, "136": {"type": "MIPS_26", "symbol": "_waitIpuIdle", "original": ".text"}, "144": {"type": "MIPS_26", "symbol": "_waitBdecOut", "scope": "LIBRARY", "original": ".text"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "212": {"type": "MIPS_26", "symbol": "_doMC", "scope": "LIBRARY", "original": ".text"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "240": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "_sliceA0": {"dcb651cae2ab3c2064b9c55458aa1a0cb2be41f2": {"58c21a5d": {"type": "FUNCTION", "size": 300, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "_nextStartCode", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_26", "symbol": "_peepBit", "scope": "LIBRARY", "original": ".text"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_26", "symbol": "_Error1", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "_flushBuf", "original": ".text"}, "120": {"type": "MIPS_26", "symbol": "_sliceB", "scope": "LIBRARY", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "_mbAddressIncrement", "scope": "LIBRARY", "original": ".text"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "164": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "4e2fade1bdde2de8f5ad2a30b2234ff8204dd031": {"58c21a5d": {"type": "FUNCTION", "size": 300, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "_nextStartCode", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_26", "symbol": "_peepBit", "scope": "LIBRARY", "original": ".text"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_26", "symbol": "_Error1", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "_flushBuf", "original": ".text"}, "120": {"type": "MIPS_26", "symbol": "_sliceB", "scope": "LIBRARY", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "_mbAddressIncrement", "scope": "LIBRARY", "original": ".text"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "164": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "1379aa90c6dda0d24b69e175bdc6173a6c7bdc27": {"d75eb9dd": {"type": "FUNCTION", "size": 292, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": "_isError"}, "48": {"type": "MIPS_26", "symbol": "_nextStartCode", "scope": "LIBRARY", "original": ".text"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": "_isError"}, "56": {"type": "MIPS_26", "symbol": "_peepBit", "scope": "LIBRARY", "original": ".text"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_26", "symbol": "_Error1", "scope": "LIBRARY"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_26", "symbol": "_flushBuf", "original": ".text"}, "112": {"type": "MIPS_26", "symbol": "_sliceB", "scope": )PS2SDB", 8192}, + std::string_view{R"PS2SDB("LIBRARY", "original": ".text"}, "120": {"type": "MIPS_26", "symbol": "_mbAddressIncrement", "scope": "LIBRARY", "original": ".text"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "_isError"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": "_widthMB"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": "_widthMB"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": "_sp_dcr"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": "_sp_dcr"}}}}, "629d39543355bf59452fe3fd7cd1fa5db4cc4b5b": {"28945e11": {"type": "FUNCTION", "size": 272, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_GPREL16", "symbol": "_isError"}, "40": {"type": "MIPS_26", "symbol": "_nextStartCode", "scope": "LIBRARY", "original": ".text"}, "48": {"type": "MIPS_26", "symbol": "_peepBit", "scope": "LIBRARY", "original": ".text"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_26", "symbol": "_Error1", "scope": "LIBRARY"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_26", "symbol": "_flushBuf", "original": ".text"}, "104": {"type": "MIPS_26", "symbol": "_sliceB", "scope": "LIBRARY", "original": ".text"}, "112": {"type": "MIPS_26", "symbol": "_mbAddressIncrement", "scope": "LIBRARY", "original": ".text"}, "128": {"type": "MIPS_GPREL16", "symbol": "_isError"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "140": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "164": {"type": "MIPS_GPREL16", "symbol": "_widthMB"}, "204": {"type": "MIPS_GPREL16", "symbol": "_sp_dcr"}}}}}, "_slice0": {"1b3142eef9d78895301635d9564c34ecb2611e4b": {"c7144970": {"type": "FUNCTION", "size": 496, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "_sliceA0", "scope": "LIBRARY", "original": ".text"}, "112": {"type": "MIPS_26", "symbol": "_waitBdecOut", "scope": "LIBRARY", "original": ".text"}, "148": {"type": "MIPS_26", "symbol": "_peepBit", "scope": "LIBRARY", "original": ".text"}, "188": {"type": "MIPS_26", "symbol": "_mbAddressIncrement", "scope": "LIBRARY", "original": ".text"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "232": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "288": {"type": "MIPS_26", "symbol": "_decMB0", "scope": "LIBRARY", "original": ".text"}, "332": {"type": "MIPS_26", "symbol": "_skipMB0", "scope": "LIBRARY", "original": ".text"}, "376": {"type": "MIPS_26", "symbol": "_motionComp0", "scope": "LIBRARY", "original": ".text"}, "420": {"type": "MIPS_26", "symbol": "_doMC", "scope": "LIBRARY", "original": ".text"}}}}, "a24586d51e89b8cb0bacfada067b35f66359adeb": {"430abeba": {"type": "FUNCTION", "size": 504, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "_sliceA0", "scope": "LIBRARY", "original": ".text"}, "112": {"type": "MIPS_26", "symbol": "_waitBdecOut", "scope": "LIBRARY", "original": ".text"}, "160": {"type": "MIPS_26", "symbol": "_peepBit", "scope": "LIBRARY", "original": ".text"}, "200": {"type": "MIPS_26", "symbol": "_mbAddressIncrement", "scope": "LIBRARY", "original": ".text"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "244": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "300": {"type": "MIPS_26", "symbol": "_decMB0", "scope": "LIBRARY", "original": ".text"}, "344": {"type": "MIPS_26", "symbol": "_skipMB0", "scope": "LIBRARY", "original": ".text"}, "388": {"type": "MIPS_26", "symbol": "_motionComp0", "scope": "LIBRARY", "original": ".text"}, "428": {"type": "MIPS_26", "symbol": "_doMC", "scope": "LIBRARY", "original": ".text"}}}}, "21e618d57c6bff83c207f400c5b273309851a460": {"e7e6e8b6": {"type": "FUNCTION", "size": 508, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "_sliceA0", "scope": "LIBRARY", "original": ".text"}, "112": {"type": "MIPS_26", "symbol": "_waitBdecOut", "scope": "LIBRARY", "original": ".text"}, "160": {"type": "MIPS_26", "symbol": "_peepBit", "scope": "LIBRARY", "original": ".text"}, "200": {"type": "MIPS_26", "symbol": "_mbAddressIncrement", "scope": "LIBRARY", "original": ".text"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "244": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "300": {"type": "MIPS_26", "symbol": "_decMB0", "scope": "LIBRARY", "original": ".text"}, "344": {"type": "MIPS_26", "symbol": "_skipMB0", "scope": "LIBRARY", "original": ".text"}, "388": {"type": "MIPS_26", "symbol": "_motionComp0", "scope": "LIBRARY", "original": ".text"}, "432": {"type": "MIPS_26", "symbol": "_doMC", "scope": "LIBRARY", "original": ".text"}}}}, "adb3b5987af8caeff2e1702a00eba0ef690b8e77": {"25a7918b": {"type": "FUNCTION", "size": 512, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "_sliceA0", "scope": "LIBRARY", "original": ".text"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": "_isError"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_isError"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": "_mbcont"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "132": {"type": "MIPS_26", "symbol": "_waitBdecOut", "scope": "LIBRARY", "original": ".text"}, "164": {"type": "MIPS_26", "symbol": "_peepBit", "scope": "LIBRARY", "original": ".text"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": "_isError"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": "_isError"}, "200": {"type": "MIPS_26", "symbol": "_mbAddressIncrement", "scope": "LIBRARY", "original": ".text"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": "_isError"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": "_isError"}, "248": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "252": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "304": {"type": "MIPS_26", "symbol": "_decMB0", "scope": "LIBRARY", "original": ".text"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": "_isError"}, "344": {"type": "MIPS_26", "symbol": "_skipMB0", "scope": "LIBRARY", "original": ".text"}, "384": {"type": "MIPS_26", "symbol": "_motionComp0", "scope": "LIBRARY", "original": ".text"}, "400": {"type": "MIPS_LO16", "symbol": "", "original": "_isError"}, "416": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "424": {"type": "MIPS_26", "symbol": "_doMC", "scope": "LIBRARY", "original": ".text"}, "440": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}}}}, "b7cce6dabd6f86c351ff2972dcc6f4f3991c8332": {"6155364a": {"type": "FUNCTION", "size": 460, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.5)PS2SDB", 8192}, + std::string_view{R"PS2SDB(.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "_sliceA0", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_GPREL16", "symbol": "_isError"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": "_mbcont"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "112": {"type": "MIPS_26", "symbol": "_waitBdecOut", "scope": "LIBRARY", "original": ".text"}, "144": {"type": "MIPS_26", "symbol": "_peepBit", "scope": "LIBRARY", "original": ".text"}, "156": {"type": "MIPS_GPREL16", "symbol": "_isError"}, "168": {"type": "MIPS_GPREL16", "symbol": "_isError"}, "180": {"type": "MIPS_26", "symbol": "_mbAddressIncrement", "scope": "LIBRARY", "original": ".text"}, "188": {"type": "MIPS_GPREL16", "symbol": "_isError"}, "216": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "220": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "268": {"type": "MIPS_26", "symbol": "_decMB0", "scope": "LIBRARY", "original": ".text"}, "284": {"type": "MIPS_GPREL16", "symbol": "_isError"}, "308": {"type": "MIPS_26", "symbol": "_skipMB0", "scope": "LIBRARY", "original": ".text"}, "344": {"type": "MIPS_26", "symbol": "_motionComp0", "scope": "LIBRARY", "original": ".text"}, "360": {"type": "MIPS_GPREL16", "symbol": "_isError"}, "376": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "384": {"type": "MIPS_26", "symbol": "_doMC", "scope": "LIBRARY", "original": ".text"}, "396": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}}}}, "9084864c001e8caf3fb5610728830acaa7d94b49": {"6b04ec50": {"type": "FUNCTION", "size": 480, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "_sliceA0", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": "_isError"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": "_isError"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": "_mbcont"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "128": {"type": "MIPS_26", "symbol": "_waitBdecOut", "scope": "LIBRARY", "original": ".text"}, "160": {"type": "MIPS_26", "symbol": "_peepBit", "scope": "LIBRARY", "original": ".text"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": "_isError"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": "_isError"}, "196": {"type": "MIPS_26", "symbol": "_mbAddressIncrement", "scope": "LIBRARY", "original": ".text"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": "_isError"}, "232": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "236": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "284": {"type": "MIPS_26", "symbol": "_decMB0", "scope": "LIBRARY", "original": ".text"}, "300": {"type": "MIPS_LO16", "symbol": "", "original": "_isError"}, "324": {"type": "MIPS_26", "symbol": "_skipMB0", "scope": "LIBRARY", "original": ".text"}, "360": {"type": "MIPS_26", "symbol": "_motionComp0", "scope": "LIBRARY", "original": ".text"}, "376": {"type": "MIPS_LO16", "symbol": "", "original": "_isError"}, "392": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "400": {"type": "MIPS_26", "symbol": "_doMC", "scope": "LIBRARY", "original": ".text"}, "412": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}}}}, "c0a2d0af6be4c6941bd06ae8e105e791c3fcc56e": {"0ebc4027": {"type": "FUNCTION", "size": 812, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "_sceMpegSliceA0", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "_waitIpuIdle", "original": ".text"}, "236": {"type": "MIPS_26", "symbol": "_sceMpegDispatchMpegCbNodata", "scope": "LIBRARY"}, "352": {"type": "MIPS_26", "symbol": "_sceMpegStopIpuDma", "scope": "LIBRARY"}, "400": {"type": "MIPS_26", "symbol": "_sceMpegErrorBdec", "scope": "LIBRARY"}, "452": {"type": "MIPS_26", "symbol": "_sceMpegPeepBit", "scope": "LIBRARY", "original": ".text"}, "492": {"type": "MIPS_26", "symbol": "_sceMpegMbAddressIncrement", "scope": "LIBRARY", "original": ".text"}, "528": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "536": {"type": "MIPS_26", "symbol": "_sceMpegError", "scope": "LIBRARY"}, "540": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "592": {"type": "MIPS_26", "symbol": "_decMB0", "scope": "LIBRARY", "original": ".text"}, "636": {"type": "MIPS_26", "symbol": "_skipMB0", "scope": "LIBRARY", "original": ".text"}, "680": {"type": "MIPS_26", "symbol": "_motionComp0", "scope": "LIBRARY", "original": ".text"}, "724": {"type": "MIPS_26", "symbol": "_doMC", "scope": "LIBRARY", "original": ".text"}}}}}, "_skipMB0": {"b2fff24f2ed2c0f8fb22412b1f33a8af781a10df": {"df5299ee": {"type": "FUNCTION", "size": 188, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"136": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "140": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "056ff5daab91b042f010f261dbcc5c31eae03593": {"df5299ee": {"type": "FUNCTION", "size": 188, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"136": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "140": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "c30ccfdae694d2555ed192f3de15b578a5c0d04e": {"bb8cfaa7": {"type": "FUNCTION", "size": 204, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_mbcont"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_coding_type"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": "_sp_dcr"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_coding_type"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": "_sp_dcr"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_structure"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_coding_type"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "156": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "9f436a15b04047a3a858f24b257b939b35285618": {"47ae0e6e": {"type": "FUNCTION", "size": 196, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_mbcont"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "40": {"type": "MIPS_GPREL16", "symbol": "_picture_coding_type"}, "52": {"type": "MIPS_GPREL16", "symbol": "_sp_dcr"}, "84": {"type": "MIPS_GPREL16", "symbol": "_picture_structure"}, "108": {"type": "MIPS_GPREL16", "symb)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ol": "_picture_structure"}, "128": {"type": "MIPS_GPREL16", "symbol": "_picture_coding_type"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "d83527f15df194893a59169a45fd2d180ddf1109": {"79d4efc9": {"type": "FUNCTION", "size": 208, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_mbcont"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_coding_type"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": "_sp_dcr"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "_sp_dcr"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_coding_type"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_structure"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_coding_type"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "160": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "365e19fdfcf12f5c58032c7f1d936963636828d1": {"515b56fd": {"type": "FUNCTION", "size": 188, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"136": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "140": {"type": "MIPS_26", "symbol": "_sceMpegError", "scope": "LIBRARY"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "_decMB0": {"401be9485cc66996a62f19b3d9d68fa3ee8c728e": {"e358a013": {"type": "FUNCTION", "size": 1192, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"116": {"type": "MIPS_26", "symbol": "_ipuVdec", "scope": "LIBRARY", "original": ".text"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "212": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "400": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "444": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "556": {"type": "MIPS_26", "symbol": "_motionVectors", "scope": "LIBRARY", "original": ".text"}, "600": {"type": "MIPS_26", "symbol": "_motionVector", "scope": "LIBRARY", "original": ".text"}, "696": {"type": "MIPS_26", "symbol": "_motionVectors", "scope": "LIBRARY", "original": ".text"}, "740": {"type": "MIPS_26", "symbol": "_motionVector", "scope": "LIBRARY", "original": ".text"}, "788": {"type": "MIPS_26", "symbol": "_flushBuf", "original": ".text"}, "828": {"type": "MIPS_26", "symbol": "receiveDataFromIPU", "scope": "LIBRARY", "original": ".text"}, "836": {"type": "MIPS_26", "symbol": "_waitIpuIdle", "original": ".text"}, "904": {"type": "MIPS_26", "symbol": "_sendIpuCommand", "scope": "LIBRARY", "original": ".text"}}}}, "18290710b54566c608bcf41e861ca0f3d4f9ec4f": {"e358a013": {"type": "FUNCTION", "size": 1192, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"116": {"type": "MIPS_26", "symbol": "_ipuVdec", "scope": "LIBRARY", "original": ".text"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "212": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "400": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "444": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "556": {"type": "MIPS_26", "symbol": "_motionVectors", "scope": "LIBRARY", "original": ".text"}, "600": {"type": "MIPS_26", "symbol": "_motionVector", "scope": "LIBRARY", "original": ".text"}, "696": {"type": "MIPS_26", "symbol": "_motionVectors", "scope": "LIBRARY", "original": ".text"}, "740": {"type": "MIPS_26", "symbol": "_motionVector", "scope": "LIBRARY", "original": ".text"}, "788": {"type": "MIPS_26", "symbol": "_flushBuf", "original": ".text"}, "828": {"type": "MIPS_26", "symbol": "receiveDataFromIPU", "scope": "LIBRARY", "original": ".text"}, "836": {"type": "MIPS_26", "symbol": "_waitIpuIdle", "original": ".text"}, "904": {"type": "MIPS_26", "symbol": "_sendIpuCommand", "scope": "LIBRARY", "original": ".text"}}}}, "05aace5ec534ac92e4393424b34a00af1c59e0fd": {"4a521c09": {"type": "FUNCTION", "size": 1316, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_coding_type"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_coding_type"}, "112": {"type": "MIPS_26", "symbol": "_ipuVdec", "scope": "LIBRARY", "original": ".text"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": "_isError"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": "_isError"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_structure"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": "_frame_pred_frame_dct"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": "_frame_pred_frame_dct"}, "204": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "228": {"type": "MIPS_HI16", "symbol": "", "original": "_concealment_motion_vectors"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": "_concealment_motion_vectors"}, "240": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_structure"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "268": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_structure"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "352": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_structure"}, "356": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "368": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_structure"}, "372": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "388": {"type": "MIPS_HI16", "symbol": "", "original": "_frame_pred_frame_dct"}, "392": {"type": "MIPS_LO16", "symbol": "", "original": "_frame_pred_frame_dct"}, "420": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "464": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "468": {"type": "MIPS_HI16", "symbol": "", "original": "_qscqsc"}, "472": {"type": "MIPS_LO16", "symbol": "", "original": "_qscqsc"}, "488": {"type": "MIPS_HI16", "symbol": "", "original": "_isMpeg2"}, "500": {"type")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: "MIPS_HI16", "symbol": "", "original": "_concealment_motion_vectors"}, "504": {"type": "MIPS_LO16", "symbol": "", "original": "_concealment_motion_vectors"}, "512": {"type": "MIPS_HI16", "symbol": "", "original": "_isMpeg2"}, "516": {"type": "MIPS_LO16", "symbol": "", "original": "_isMpeg2"}, "524": {"type": "MIPS_HI16", "symbol": "", "original": "_f_code"}, "532": {"type": "MIPS_LO16", "symbol": "", "original": "_f_code"}, "536": {"type": "MIPS_LO16", "symbol": "", "original": "_f_code"}, "576": {"type": "MIPS_26", "symbol": "_motionVectors", "scope": "LIBRARY", "original": ".text"}, "588": {"type": "MIPS_HI16", "symbol": "", "original": "_isError"}, "592": {"type": "MIPS_HI16", "symbol": "", "original": "_forward_f_code"}, "596": {"type": "MIPS_HI16", "symbol": "", "original": "_full_pel_forward_vector"}, "600": {"type": "MIPS_LO16", "symbol": "", "original": "_forward_f_code"}, "608": {"type": "MIPS_LO16", "symbol": "", "original": "_full_pel_forward_vector"}, "628": {"type": "MIPS_26", "symbol": "_motionVector", "scope": "LIBRARY", "original": ".text"}, "636": {"type": "MIPS_HI16", "symbol": "", "original": "_isError"}, "640": {"type": "MIPS_LO16", "symbol": "", "original": "_isError"}, "664": {"type": "MIPS_HI16", "symbol": "", "original": "_isMpeg2"}, "668": {"type": "MIPS_LO16", "symbol": "", "original": "_isMpeg2"}, "676": {"type": "MIPS_HI16", "symbol": "", "original": "_f_code"}, "684": {"type": "MIPS_LO16", "symbol": "", "original": "_f_code"}, "728": {"type": "MIPS_26", "symbol": "_motionVectors", "scope": "LIBRARY", "original": ".text"}, "740": {"type": "MIPS_LO16", "symbol": "", "original": "_isError"}, "744": {"type": "MIPS_HI16", "symbol": "", "original": "_backward_f_code"}, "748": {"type": "MIPS_HI16", "symbol": "", "original": "_full_pel_backward_vector"}, "752": {"type": "MIPS_LO16", "symbol": "", "original": "_backward_f_code"}, "760": {"type": "MIPS_LO16", "symbol": "", "original": "_full_pel_backward_vector"}, "780": {"type": "MIPS_26", "symbol": "_motionVector", "scope": "LIBRARY", "original": ".text"}, "788": {"type": "MIPS_LO16", "symbol": "", "original": "_isError"}, "812": {"type": "MIPS_HI16", "symbol": "", "original": "_concealment_motion_vectors"}, "816": {"type": "MIPS_LO16", "symbol": "", "original": "_concealment_motion_vectors"}, "828": {"type": "MIPS_26", "symbol": "_flushBuf", "original": ".text"}, "848": {"type": "MIPS_HI16", "symbol": "", "original": "_mbcont"}, "856": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "904": {"type": "MIPS_HI16", "symbol": "", "original": "_sp_dcr"}, "940": {"type": "MIPS_26", "symbol": "_waitIpuIdle", "original": ".text"}, "948": {"type": "MIPS_HI16", "symbol": "", "original": "_qscqsc"}, "956": {"type": "MIPS_LO16", "symbol": "", "original": "_qscqsc"}, "964": {"type": "MIPS_LO16", "symbol": "", "original": "_sp_dcr"}, "1008": {"type": "MIPS_26", "symbol": "_sendIpuCommand", "scope": "LIBRARY", "original": ".text"}, "1020": {"type": "MIPS_LO16", "symbol": "", "original": "_isError"}, "1024": {"type": "MIPS_HI16", "symbol": "", "original": "_mbcont"}, "1032": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "1044": {"type": "MIPS_HI16", "symbol": "", "original": "_sp_dcr"}, "1060": {"type": "MIPS_LO16", "symbol": "", "original": "_isError"}, "1068": {"type": "MIPS_LO16", "symbol": "", "original": "_sp_dcr"}, "1084": {"type": "MIPS_HI16", "symbol": "", "original": "_concealment_motion_vectors"}, "1092": {"type": "MIPS_LO16", "symbol": "", "original": "_sp_dcr"}, "1108": {"type": "MIPS_HI16", "symbol": "", "original": "_concealment_motion_vectors"}, "1112": {"type": "MIPS_LO16", "symbol": "", "original": "_concealment_motion_vectors"}, "1120": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_coding_type"}, "1156": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_coding_type"}, "1164": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_coding_type"}, "1196": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_structure"}, "1212": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "1236": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_structure"}, "1244": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}}}}, "5c920388796ffe6ad3c241c3cb34fe4c30625ec4": {"48d1d90b": {"type": "FUNCTION", "size": 1208, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"80": {"type": "MIPS_GPREL16", "symbol": "_picture_coding_type"}, "108": {"type": "MIPS_26", "symbol": "_ipuVdec", "scope": "LIBRARY", "original": ".text"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "132": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "152": {"type": "MIPS_GPREL16", "symbol": "_isError"}, "168": {"type": "MIPS_GPREL16", "symbol": "_picture_structure"}, "176": {"type": "MIPS_GPREL16", "symbol": "_frame_pred_frame_dct"}, "196": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "220": {"type": "MIPS_GPREL16", "symbol": "_concealment_motion_vectors"}, "228": {"type": "MIPS_GPREL16", "symbol": "_picture_structure"}, "252": {"type": "MIPS_GPREL16", "symbol": "_picture_structure"}, "352": {"type": "MIPS_GPREL16", "symbol": "_frame_pred_frame_dct"}, "380": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "420": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "428": {"type": "MIPS_GPREL16", "symbol": "_qscqsc"}, "444": {"type": "MIPS_GPREL16", "symbol": "_isMpeg2"}, "456": {"type": "MIPS_GPREL16", "symbol": "_concealment_motion_vectors"}, "464": {"type": "MIPS_GPREL16", "symbol": "_isMpeg2"}, "472": {"type": "MIPS_HI16", "symbol": "", "original": "_f_code"}, "480": {"type": "MIPS_LO16", "symbol": "", "original": "_f_code"}, "484": {"type": "MIPS_LO16", "symbol": "", "original": "_f_code"}, "524": {"type": "MIPS_26", "symbol": "_motionVectors", "scope": "LIBRARY", "original": ".text"}, "536": {"type": "MIPS_GPREL16", "symbol": "_isError"}, "540": {"type": "MIPS_GPREL16", "symbol": "_forward_f_code"}, "548": {"type": "MIPS_GPREL16", "symbol": "_full_pel_forward_vector"}, "568": {"type": "MIPS_26", "symbol": "_motionVector", "scope": "LIBRARY", "original": ".text"}, "576": {"type": "MIPS_GPREL16", "symbol": "_isError"}, "600": {"type": "MIPS_GPREL16", "symbol": "_isMpeg2"}, "608": {"type": "MIPS_HI16", "symbol": "", "original": "_f_code"}, "616": {"type": "MIPS_LO16", "symbol": "", "original": "_f_code"}, "660": {"type": "MIPS_26", "symbol": "_motionVectors", "scope": "LIBRARY", "original": ".text"}, "672": {"type": "MIPS_GPREL16", "symbol": "_isError"}, "676": {"type": "MIPS_GPREL16", "symbol": "_backward_f_code"}, "684": {"type": "MIPS_GPREL16", "symbol": "_full_pel_backward_vector"}, "704": {"type": "MIPS_26", "symbol": "_motionVector", "scope": "LIBRARY", "original": ".text"}, "712": {"type": "MIPS_GPREL16", "symbol": "_isError"}, "740": {"type": "MIPS_GPREL16", "symbol": "_concealment_motion_vectors"}, "752": {"type": "MIPS_26", "symbol": "_flushBuf", "original": ".text"}, "772": {"type": "MIPS_HI16", "symbol": "", "original": "_mbcont"}, "780": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "860": {"type": "MIPS_26", "symbol": "_waitIpuIdle", "original": ".text"}, "876": {"type": "MIPS_GPREL16", "symbol": "_qscqsc"}, "880": {"type": "MIPS_GPREL16", "symbol": "_sp_dcr"}, "924": {"type": "MIPS_26", "symbol": "_sendIpuCommand", "scope": "LIBRARY", "original": ".text"}, "936": {"type": "MIPS_GPREL16", "symbol": "_isError"}, "940": {"type": "MIPS_HI16", "symbol": "", "original": "_mbcont"}, "948": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "972": {"type": "MIPS_GPREL16", "symbol": "_isError"}, "980": {"type": "MIPS_GPREL16", "symbol": "_sp_dcr"}, "996": {"type": "MIPS_GPREL16", "symbol": "_concealment_motion_vectors"}, "1004": {"type": "MIPS_GPREL16", "symbol": "_sp_dcr"}, "1020": {"type": "MIPS_GPREL16", "symbol": "_concealment_motion_vectors"}, "1028": {"type": "MIPS_GPREL16", "symbol": "_picture_coding_type"}, "1064": {"type": "MIPS_GPREL16", "symbol": "_picture_coding_type"}, "1112": {"type": "MIPS_GPREL16", "symbol": "_picture_structure"}, "1140": {"type": "MIPS_GPREL16", "symbol": "_picture_structure"}}}}, "07fd13ea0e3bdbf481a5e049d2760c7345ce8c00": {"7178a62f": {"type": "FUNCTION", "size": 1320, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_coding_type"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_coding_type"}, "112": {"type": "MIPS_26", "symbol": "_ipuVdec", "scope": "LIBRARY", "original": ".text"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": "_isError"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": "_isError"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_structure"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": "_frame_pred_frame_dct"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": "_frame_pred_frame_dct"}, "212": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": "_concealment_motion_vectors"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": "_concealment_motion_vectors"}, "248": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_structure"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "276": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_structure"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "360": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_structure"}, "364": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "376": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_structure"}, "384": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "396": {"type": "MIPS_HI16", "symbol": "", "original": "_frame_pred_frame_dct"}, "400": {"type": "MIPS_LO16", "symbol": "", "original": "_frame_pred_frame_dct"}, "428": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "468": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "472": {"type": "MIPS_HI16", "symbol": "", "original": "_qscqsc"}, "476": {"type": "MIPS_LO16", "symbol": "", "original": "_qscqsc"}, "492": {"type": "MIPS_HI16", "symbol": "", "original": "_isMpeg2"}, "504": {"type": "MIPS_HI16", "symbol": "", "original": "_concealment_motion_vectors"}, "508": {"type": "MIPS_LO16", "symbol": "", "original": "_concealment_motion_vectors"}, "516": {"type": "MIPS_HI16", "symbol": "", "original": "_isMpeg2"}, "520": {"type": "MIPS_LO16", "symbol": "", "original": "_isMpeg2"}, "528": {"type": "MIPS_HI16", "symbol": "", "original": "_f_code"}, "536": {"type": "MIPS_LO16", "symbol": "", "original": "_f_code"}, "540": {"type": "MIPS_LO16", "symbol": "", "original": "_f_code"}, "580": {"type": "MIPS_26", "symbol": "_motionVectors", "scope": "LIBRARY", "original": ".text"}, "592": {"type": "MIPS_HI16", "symbol": "", "original": "_isError"}, "596": {"type": "MIPS_HI16", "symbol": "", "original": "_forward_f_code"}, "600": {"type": "MIPS_HI16", "symbol": "", "original": "_full_pel_forward_vector"}, "604": {"type": "MIPS_LO16", "symbol": "", "original": "_forward_f_code"}, "612": {"type": "MIPS_LO16", "symbol": "", "original": "_full_pel_forward_vector"}, "632": {"type": "MIPS_26", "symbol": "_motionVector", "scope": "LIBRARY", "original": ".text"}, "640": {"type": "MIPS_HI16", "symbol": "", "original": "_isError"}, "644": {"type": "MIPS_LO16", "symbol": "", "original": "_isError"}, "668": {"type": "MIPS_HI16", "symbol": "", "original": "_isMpeg2"}, "672": {"type": "MIPS_LO16", "symbol": "", "original": "_isMpeg2"}, "680": {"type": "MIPS_HI16", "symbol": "", "original": "_f_code"}, "688": {"type": "MIPS_LO16", "symbol": "", "original": "_f_code"}, "732": {"type": "MIPS_26", "symbol": "_motionVectors", "scope": "LIBRARY", "original": ".text"}, "744": {"type": "MIPS_LO16", "symbol": "", "original": "_isError"}, "748": {"type": "MIPS_HI16", "symbol": "", "original": "_backward_f_code"}, "752": {"type": "MIPS_HI16", "symbol": "", "original": "_full_pel_backward_vector"}, "756": {"type": "MIPS_LO16", "symbol": "", "original": "_backward_f_code"}, "764": {"type": "MIPS_LO16", "symbol": "", "original": "_full_pel_backward_vector"}, "784": {"type": "MIPS_26", "symbol": "_motionVector", "scope": "LIBRARY", "original": ".text"}, "792": {"type": "MIPS_LO16", "symbol": "", "original": "_isError"}, "816": {"type": "MIPS_HI16", "symbol": "", "original": "_concealment_motion_vectors"}, "820": {"type": "MIPS_LO16", "symbol": "", "original": "_concealment_motion_vectors"}, "832": {"type": "MIPS_26", "symbol": "_flushBuf", "original": ".text"}, "852": {"type": "MIPS_HI16", "symbol": "", "original": "_mbcont"}, "860": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "908": {"type": "MIPS_HI16", "symbol": "", "original": "_sp_dcr"}, "944": {"type": "MIPS_26", "symbol": "_waitIpuIdle", "original": ".text"}, "952": {"type": "MIPS_HI16", "symbol": "", "original": "_qscqsc"}, "960": {"type": "MIPS_LO16", "symbol": "", "original": "_qscqsc"}, "968": {"type": "MIPS_LO16", "symbol": "", "original": "_sp_dcr"}, "1012": {"type": "MIPS_26", "symbol": "_sendIpuCommand", "scope": "LIBRARY", "original": ".text"}, "1024": {"type": "MIPS_LO16", "symbol": "", "original": "_isError"}, "1028": {"type": "MIPS_HI16", "symbol": "", "original": "_mbcont"}, "1036": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "1048": {"type": "MIPS_HI16", "symbol": "", "original": "_sp_dcr"}, "1064": {"type": "MIPS_LO16", "symbol": "", "original": "_isError"}, "1072": {"type": "MIPS_LO16", "symbol": "", "original": "_sp_dcr"}, "1088": {"type": "MIPS_HI16", "symbol": "", "original": "_concealment_motion_vectors"}, "1096": {"type": "MIPS_LO16", "symbol": "", "original": "_sp_dcr"}, "1112": {"type": "MIPS_HI16", "symbol": "", "original": "_concealment_motion_vectors"}, "1116": {"type": "MIPS_LO16", "symbol": "", "original": "_concealment_motion_vectors"}, "1124": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_coding_type"}, "1160": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_coding_type"}, "1168": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_coding_type"}, "1200": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_structure"}, "1216": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "1240": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_structure"}, "1248": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}}}}, "1416afe550e1bffa74bd83dda7f010a9440ca677": {"97c0b3df": {"type": "FUNCTION", "size": 1368, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"112": )PS2SDB", 8192}, + std::string_view{R"PS2SDB({"type": "MIPS_26", "symbol": "_waitIpuIdle", "original": ".text"}, "148": {"type": "MIPS_26", "symbol": "_sceMpegWaitIpuIdle64", "scope": "LIBRARY", "original": ".text"}, "260": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "268": {"type": "MIPS_26", "symbol": "_sceMpegError", "scope": "LIBRARY"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "340": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY", "original": ".text"}, "528": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY", "original": ".text"}, "572": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY", "original": ".text"}, "684": {"type": "MIPS_26", "symbol": "_motionVectors", "scope": "LIBRARY", "original": ".text"}, "728": {"type": "MIPS_26", "symbol": "_motionVector", "scope": "LIBRARY", "original": ".text"}, "824": {"type": "MIPS_26", "symbol": "_motionVectors", "scope": "LIBRARY", "original": ".text"}, "868": {"type": "MIPS_26", "symbol": "_motionVector", "scope": "LIBRARY", "original": ".text"}, "916": {"type": "MIPS_26", "symbol": "_flushBuf", "original": ".text"}, "956": {"type": "MIPS_26", "symbol": "receiveDataFromIPU", "scope": "LIBRARY", "original": ".text"}, "964": {"type": "MIPS_26", "symbol": "_waitIpuIdle", "original": ".text"}}}}, "79f9c4b51bde66688515e9b20a128d3b57f82026": {"cd1b6df1": {"type": "FUNCTION", "size": 1324, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.6.1"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_coding_type"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_coding_type"}, "112": {"type": "MIPS_26", "symbol": "_ipuVdec", "scope": "LIBRARY", "original": ".text"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": "_isError"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": "_isError"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_structure"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": "_frame_pred_frame_dct"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": "_frame_pred_frame_dct"}, "212": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": "_concealment_motion_vectors"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": "_concealment_motion_vectors"}, "248": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_structure"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "276": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_structure"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "360": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_structure"}, "364": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "376": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_structure"}, "384": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "396": {"type": "MIPS_HI16", "symbol": "", "original": "_frame_pred_frame_dct"}, "400": {"type": "MIPS_LO16", "symbol": "", "original": "_frame_pred_frame_dct"}, "428": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "468": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "472": {"type": "MIPS_HI16", "symbol": "", "original": "_qscqsc"}, "476": {"type": "MIPS_LO16", "symbol": "", "original": "_qscqsc"}, "492": {"type": "MIPS_HI16", "symbol": "", "original": "_isMpeg2"}, "504": {"type": "MIPS_HI16", "symbol": "", "original": "_concealment_motion_vectors"}, "508": {"type": "MIPS_LO16", "symbol": "", "original": "_concealment_motion_vectors"}, "516": {"type": "MIPS_HI16", "symbol": "", "original": "_isMpeg2"}, "520": {"type": "MIPS_LO16", "symbol": "", "original": "_isMpeg2"}, "528": {"type": "MIPS_HI16", "symbol": "", "original": "_f_code"}, "536": {"type": "MIPS_LO16", "symbol": "", "original": "_f_code"}, "540": {"type": "MIPS_LO16", "symbol": "", "original": "_f_code"}, "580": {"type": "MIPS_26", "symbol": "_motionVectors", "scope": "LIBRARY", "original": ".text"}, "592": {"type": "MIPS_HI16", "symbol": "", "original": "_isError"}, "596": {"type": "MIPS_HI16", "symbol": "", "original": "_forward_f_code"}, "600": {"type": "MIPS_HI16", "symbol": "", "original": "_full_pel_forward_vector"}, "604": {"type": "MIPS_LO16", "symbol": "", "original": "_forward_f_code"}, "612": {"type": "MIPS_LO16", "symbol": "", "original": "_full_pel_forward_vector"}, "632": {"type": "MIPS_26", "symbol": "_motionVector", "scope": "LIBRARY", "original": ".text"}, "640": {"type": "MIPS_HI16", "symbol": "", "original": "_isError"}, "644": {"type": "MIPS_LO16", "symbol": "", "original": "_isError"}, "668": {"type": "MIPS_HI16", "symbol": "", "original": "_isMpeg2"}, "672": {"type": "MIPS_LO16", "symbol": "", "original": "_isMpeg2"}, "680": {"type": "MIPS_HI16", "symbol": "", "original": "_f_code"}, "688": {"type": "MIPS_LO16", "symbol": "", "original": "_f_code"}, "732": {"type": "MIPS_26", "symbol": "_motionVectors", "scope": "LIBRARY", "original": ".text"}, "744": {"type": "MIPS_LO16", "symbol": "", "original": "_isError"}, "748": {"type": "MIPS_HI16", "symbol": "", "original": "_backward_f_code"}, "752": {"type": "MIPS_HI16", "symbol": "", "original": "_full_pel_backward_vector"}, "756": {"type": "MIPS_LO16", "symbol": "", "original": "_backward_f_code"}, "764": {"type": "MIPS_LO16", "symbol": "", "original": "_full_pel_backward_vector"}, "784": {"type": "MIPS_26", "symbol": "_motionVector", "scope": "LIBRARY", "original": ".text"}, "792": {"type": "MIPS_LO16", "symbol": "", "original": "_isError"}, "816": {"type": "MIPS_HI16", "symbol": "", "original": "_concealment_motion_vectors"}, "820": {"type": "MIPS_LO16", "symbol": "", "original": "_concealment_motion_vectors"}, "832": {"type": "MIPS_26", "symbol": "_flushBuf", "original": ".text"}, "852": {"type": "MIPS_HI16", "symbol": "", "original": "_mbcont"}, "860": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "908": {"type": "MIPS_HI16", "symbol": "", "original": "_sp_dcr"}, "948": {"type": "MIPS_26", "symbol": "_waitIpuIdle", "original": ".text"}, "956": {"type": "MIPS_HI16", "symbol": "", "original": "_qscqsc"}, "964": {"type": "MIPS_LO16", "symbol": "", "original": "_qscqsc"}, "972": {"type": "MIPS_LO16", "symbol": "", "original": "_sp_dcr"}, "1016": {"type": "MIPS_26", "symbol": "_sendIpuCommand", "scope": "LIBRARY", "original": ".text"}, "1028": {"type": "MIPS_LO16", "symbol": "", "original": "_isError"}, "1032": {"type": "MIPS_HI16", "symbol": "", "original": "_mbcont"}, "1040": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "1052": {"type": "MIPS_HI16", "symbol": "", "original": "_sp_dcr"}, "1068": {"type": "MIPS_LO16", "symbol": "", "original": "_isError"}, "1076": {"type": "MIPS_LO16", "symbol": "", "original": "_sp_dcr"}, "1092": {"type": "MIPS_HI16", "symbol": "", "original": "_concealment_motion_vectors"}, "1100": {"type": "MIPS_LO16", "symbol": "", "original": "_sp_dcr"}, "1116": {"type": "MIPS_HI16", "symbol": "", "original": "_concealment_motion_vectors"}, "1120": {"type": "MIPS_LO16", "symbol": "", "original": "_concealment_motion_vectors"}, "1128": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_coding_type"}, "1164": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_coding_type"}, "1)PS2SDB", 8192}, + std::string_view{R"PS2SDB(172": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_coding_type"}, "1204": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_structure"}, "1220": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "1244": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_structure"}, "1252": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}}}}}, "_decode_motion_vector": {"54fce08731a1046cc476666b485fe3b629a14a79": {"00000000": {"type": "FUNCTION", "size": 136, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "_motionVectors": {"37e562a5e177c4aa44ed841497a16784b8b73310": {"c0efda58": {"type": "FUNCTION", "size": 412, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"104": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "140": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "196": {"type": "MIPS_26", "symbol": "_motionVector", "scope": "LIBRARY", "original": ".text"}, "208": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "296": {"type": "MIPS_26", "symbol": "_motionVector", "scope": "LIBRARY", "original": ".text"}, "340": {"type": "MIPS_26", "symbol": "_motionVector", "scope": "LIBRARY", "original": ".text"}}}, "e04d1dfe": {"type": "FUNCTION", "size": 412, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"104": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY", "original": ".text"}, "140": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY", "original": ".text"}, "196": {"type": "MIPS_26", "symbol": "_motionVector", "scope": "LIBRARY", "original": ".text"}, "208": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY", "original": ".text"}, "296": {"type": "MIPS_26", "symbol": "_motionVector", "scope": "LIBRARY", "original": ".text"}, "340": {"type": "MIPS_26", "symbol": "_motionVector", "scope": "LIBRARY", "original": ".text"}}}}, "2d4a9b33a93bd169110cf1aed9948782c584aa12": {"6799c561": {"type": "FUNCTION", "size": 380, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"100": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "176": {"type": "MIPS_26", "symbol": "_motionVector", "scope": "LIBRARY", "original": ".text"}, "184": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "268": {"type": "MIPS_26", "symbol": "_motionVector", "scope": "LIBRARY", "original": ".text"}, "308": {"type": "MIPS_26", "symbol": "_motionVector", "scope": "LIBRARY", "original": ".text"}}}}}, "_motionVector": {"c9c6005a2b64ccd395f71552e0f7222cf0d6b31b": {"3f187446": {"type": "FUNCTION", "size": 332, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"76": {"type": "MIPS_26", "symbol": "_ipuVdec", "scope": "LIBRARY", "original": ".text"}, "100": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "_decode_motion_vector", "scope": "LIBRARY", "original": ".text"}, "148": {"type": "MIPS_26", "symbol": "_dmVector", "scope": "LIBRARY", "original": ".text"}, "164": {"type": "MIPS_26", "symbol": "_ipuVdec", "scope": "LIBRARY", "original": ".text"}, "188": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "236": {"type": "MIPS_26", "symbol": "_decode_motion_vector", "scope": "LIBRARY", "original": ".text"}, "272": {"type": "MIPS_26", "symbol": "_dmVector", "scope": "LIBRARY", "original": ".text"}}}}, "9daa29b7b4a2e2fc0d95191a608e4aa022b8a6cb": {"e0d1a60e": {"type": "FUNCTION", "size": 316, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "_ipuVdec", "scope": "LIBRARY", "original": ".text"}, "92": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "124": {"type": "MIPS_26", "symbol": "_decode_motion_vector", "scope": "LIBRARY", "original": ".text"}, "140": {"type": "MIPS_26", "symbol": "_dmVector", "scope": "LIBRARY", "original": ".text"}, "152": {"type": "MIPS_26", "symbol": "_ipuVdec", "scope": "LIBRARY", "original": ".text"}, "176": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "224": {"type": "MIPS_26", "symbol": "_decode_motion_vector", "scope": "LIBRARY", "original": ".text"}, "260": {"type": "MIPS_26", "symbol": "_dmVector", "scope": "LIBRARY", "original": ".text"}}}, "dcf072a2": {"type": "FUNCTION", "size": 316, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "_ipuVdec", "scope": "LIBRARY", "original": ".text"}, "92": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "124": {"type": "MIPS_26", "symbol": "decode_motion_vector", "scope": "LIBRARY", "original": ".text"}, "140": {"type": "MIPS_26", "symbol": "_dmVector", "scope": "LIBRARY", "original": ".text"}, "152": {"type": "MIPS_26", "symbol": "_ipuVdec", "scope": "LIBRARY", "original": ".text"}, "176": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "224": {"type": "MIPS_26", "symbol": "decode_motion_vector", "scope": "LIBRARY", "original": ".text"}, "260": {"type": "MIPS_26", "symbol": "_dmVector", "scope": "LIBRARY", "original": ".text"}}}}, "f675521f6a822567f803d67d5540aa5527d511d5": {"1593b599": {"type": "FUNCTION", "size": 1064, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"72": {"type": "MIPS_26", "symbol": "_waitIpuIdle", "original": ".text"}, "108": {"type": "MIPS_26", "symbol": "_sceMpegWaitIpuIdle64", "scope": "LIBRARY", "original": ".text"}, "228": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY", "original": ".text"}, "380": {"type": "MIPS_26", "symbol": "_waitIpuIdle", "original": ".text"}, "416": {"type": "MIPS_26", "symbol": "_sceMpegWaitIpuIdle64", "scope": "LIBRARY", "original": ".text"}, "524": {"type": "MIPS_26", "symbol": "_waitIpuIdle", "original": ".text"}, "560": {"type": "MIPS_26", "symbol": "_sceMpegWaitIpuIdle64", "scope": "LIBRARY", "original": ".text"}, "676": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY", "original": ".text"}, "872": {"type": "MIPS_26", "symbol": "_waitIpuIdle", "original": ".text"}, "908": {"type": "MIPS_26", "symbol": "_sceMpegWaitIpuIdle64", "scope": "LIBRARY", "original": ".text"}}}}}, "_sendIpuCommand": {"a0e649929647681fce02789df117053234bad71f":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( {"61fe2c30": {"type": "FUNCTION", "size": 44, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "74106a54404b36230b737f0b2d593d6be8669d8b": {"61fe2c30": {"type": "FUNCTION", "size": 44, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "994f488397c98c048b8ace9c8f4efe69217bc469": {"1c875120": {"type": "FUNCTION", "size": 48, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": "_isTop32dirty"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "_isTop32dirty"}}}}, "0436b301b04f40846b83ff9cfa512a35ce2a5c8a": {"2381e16c": {"type": "FUNCTION", "size": 44, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_GPREL16", "symbol": "_isTop32dirty"}}}}}, "_waitIpuIdle": {"0d812c730393d1c744fb0f84d36f6d423cf32070": {"3e18000e": {"type": "FUNCTION", "size": 164, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"108": {"type": "MIPS_26", "symbol": "_dispatchMpegCbNodata", "scope": "LIBRARY"}}}}, "a98864eaff1429d932671799e0d17116e4b5029b": {"5fff99b1": {"type": "FUNCTION", "size": 360, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"184": {"type": "MIPS_26", "symbol": "DIntr"}, "232": {"type": "MIPS_26", "symbol": "EIntr"}, "280": {"type": "MIPS_26", "symbol": "_dispatchMpegCbNodata", "scope": "LIBRARY"}}}}, "1500fa4db0fb86b12ca56ddd9338acff90936986": {"4dee0891": {"type": "FUNCTION", "size": 164, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"72": {"type": "MIPS_HI16", "symbol": "", "original": "_theSceMpeg"}, "108": {"type": "MIPS_26", "symbol": "_dispatchMpegCbNodata", "scope": "LIBRARY"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": "_theSceMpeg"}}}}, "0ada7295404b4a2e9dd870a20158a5cfd37e8d44": {"ca76a808": {"type": "FUNCTION", "size": 152, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"100": {"type": "MIPS_26", "symbol": "_dispatchMpegCbNodata", "scope": "LIBRARY"}, "104": {"type": "MIPS_GPREL16", "symbol": "_theSceMpeg"}}}}, "3f4cbf1bc7f3fef58c982ea9f12d400158f23164": {"7fde94af": {"type": "FUNCTION", "size": 52, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "_sceMpegWaitIpuIdle", "scope": "LIBRARY", "original": ".text"}}}}}, "_waitIpuIdle64": {"5d2e3bf5830abd251e57de37bb26db40cd690492": {"3e18000e": {"type": "FUNCTION", "size": 176, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"108": {"type": "MIPS_26", "symbol": "_dispatchMpegCbNodata", "scope": "LIBRARY"}}}}, "d346f8b9e9d37791864a81151da595ed3d92ea09": {"c048a495": {"type": "FUNCTION", "size": 388, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"192": {"type": "MIPS_26", "symbol": "DIntr"}, "240": {"type": "MIPS_26", "symbol": "EIntr"}, "292": {"type": "MIPS_26", "symbol": "_dispatchMpegCbNodata", "scope": "LIBRARY"}}}}, "4f3849f3ba8a331ee171c38b4cbf2719eadfaf3c": {"d3f7ca5f": {"type": "FUNCTION", "size": 176, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"76": {"type": "MIPS_HI16", "symbol": "", "original": "_theSceMpeg"}, "108": {"type": "MIPS_26", "symbol": "_dispatchMpegCbNodata", "scope": "LIBRARY"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": "_theSceMpeg"}}}}, "40baa9c8b7f8069549104b215d5cf2b9d456229f": {"ca76a808": {"type": "FUNCTION", "size": 164, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"100": {"type": "MIPS_26", "symbol": "_dispatchMpegCbNodata", "scope": "LIBRARY"}, "104": {"type": "MIPS_GPREL16", "symbol": "_theSceMpeg"}}}}}, "_ipuVdec": {"7e19416311e75524ef3c9c5359acbfb5b4041ded": {"09724b3d": {"type": "FUNCTION", "size": 376, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"72": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_26", "symbol": "_dispatchMpegCbNodata", "scope": "LIBRARY"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "240": {"type": "MIPS_26", "symbol": "_dispatchMpegCbNodata", "scope": "LIBRARY"}}}}, "10b6648cafafe73e997892bb7c7c3ca9aecb1100": {"9554a931": {"type": "FUNCTION", "size": 620, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"100": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "_dispatchMpegCbNodata", "scope": "LIBRARY"}, "200": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "352": {"type": "MIPS_26", "symbol": "DIntr"}, "400": {"type": "MIPS_26", "symbol": "EIntr"}, "460": {"type": "MIPS_26", "symbol": "_dispatchMpegCbNodata", "scope": "LIBRARY"}}}}, "ba12469b21380e18835b474eec399246263fee1a": {"54d39466": {"type": "FUNCTION", "size": 436, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"80": {"type": "MIPS_HI16", "symbol": "", "original": "_isTop32dirty"}, "84": {"type": "MIPS_HI1)PS2SDB", 8192}, + std::string_view{R"PS2SDB(6", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": "_top32"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": "_top32len"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": "_isError"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": "_theSceMpeg"}, "124": {"type": "MIPS_26", "symbol": "_dispatchMpegCbNodata", "scope": "LIBRARY"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": "_theSceMpeg"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": "_isTop32dirty"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": "_top32"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": "_top32len"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": "_isError"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": "_isTop32dirty"}, "256": {"type": "MIPS_HI16", "symbol": "", "original": "_theSceMpeg"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": "_theSceMpeg"}, "288": {"type": "MIPS_26", "symbol": "_dispatchMpegCbNodata", "scope": "LIBRARY"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": "_top32"}, "364": {"type": "MIPS_LO16", "symbol": "", "original": "_top32len"}, "388": {"type": "MIPS_LO16", "symbol": "", "original": "_isError"}}}}, "9182e504677804e758957029453062a8dd6dca6f": {"74993504": {"type": "FUNCTION", "size": 372, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"116": {"type": "MIPS_26", "symbol": "_dispatchMpegCbNodata", "scope": "LIBRARY"}, "120": {"type": "MIPS_GPREL16", "symbol": "_theSceMpeg"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "200": {"type": "MIPS_GPREL16", "symbol": "_isTop32dirty"}, "228": {"type": "MIPS_GPREL16", "symbol": "_theSceMpeg"}, "232": {"type": "MIPS_26", "symbol": "_dispatchMpegCbNodata", "scope": "LIBRARY"}, "284": {"type": "MIPS_GPREL16", "symbol": "_top32"}, "308": {"type": "MIPS_GPREL16", "symbol": "_top32len"}, "360": {"type": "MIPS_GPREL16", "symbol": "_isError"}}}}, "e3258522e7443ab18f755e476fb11205df19536c": {"7a14122a": {"type": "FUNCTION", "size": 412, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"60": {"type": "MIPS_HI16", "symbol": "", "original": "_top32len"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": "_theSceMpeg"}, "132": {"type": "MIPS_26", "symbol": "_dispatchMpegCbNodata", "scope": "LIBRARY"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "_theSceMpeg"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "212": {"type": "MIPS_HI16", "symbol": "", "original": "_isTop32dirty"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": "_isTop32dirty"}, "228": {"type": "MIPS_HI16", "symbol": "", "original": "_theSceMpeg"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": "_theSceMpeg"}, "256": {"type": "MIPS_26", "symbol": "_dispatchMpegCbNodata", "scope": "LIBRARY"}, "304": {"type": "MIPS_HI16", "symbol": "", "original": "_top32"}, "312": {"type": "MIPS_LO16", "symbol": "", "original": "_top32"}, "336": {"type": "MIPS_LO16", "symbol": "", "original": "_top32len"}, "356": {"type": "MIPS_HI16", "symbol": "", "original": "_isError"}, "400": {"type": "MIPS_LO16", "symbol": "", "original": "_isError"}}}}}, "_peepBit": {"6562c30ac6bacc9885c5bfafe8b5f0d5f941e2fc": {"59bdf73f": {"type": "FUNCTION", "size": 264, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"88": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_26", "symbol": "_dispatchMpegCbNodata", "scope": "LIBRARY"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "200": {"type": "MIPS_26", "symbol": "_waitIpuIdle64", "scope": "LIBRARY", "original": ".text"}}}}, "5fa480a240ebd86c6477efc8e0e3a72ff265ccbd": {"4fa05748": {"type": "FUNCTION", "size": 284, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"96": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_26", "symbol": "_dispatchMpegCbNodata", "scope": "LIBRARY"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "220": {"type": "MIPS_26", "symbol": "_waitIpuIdle64", "scope": "LIBRARY", "original": ".text"}}}}, "0fe998aca3ddf42fb477f3d61e5fc087933b032a": {"23944c15": {"type": "FUNCTION", "size": 308, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": "_isTop32dirty"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "_isTop32dirty"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": "_top32len"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": "_top32len"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": "_top32len"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": "_top32"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": "_theSceMpeg"}, "140": {"type": "MIPS_26", "symbol": "_dispatchMpegCbNodata", "scope": "LIBRARY"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": "_theSceMpeg"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "200": {"type": "MIPS_HI16", "symbol": "", "original": "_top32"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "228": {"type": "MIPS_26", "symbol": "_waitIpuIdle64", "scope": "LIBRARY", "original": ".text"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": "_isTop32dirty"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": "_top32len"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": "_top32"}, "260": {"type": "MIPS_HI16", "symbol": "", "original": "_top32"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": "_top32"}}}}, "9583ecf0f29cca73823aa8c7932d336ca09a0b38": {"765fa9d1": {"type": "FUNCTION", "size": 248, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_GPREL16", "symbol": "_isTop32dirty"}, "36": {"type": "MIPS_GPREL16", "symbol": "_top32len"}, "48": {"type": "MIPS_GPREL16", "symbol": "_top32"}, "124": {"type": "MIPS_26", "symbol": "_dispatchMpegCbNodata", "scope": "LIBRARY"}, "128": {"type": "MIPS_GPREL16", "symbol": "_theSceMpeg"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "180": {"type": "MIPS_26", "symbol": "_waitIpuIdle64", "scope": "LIBRARY", "original": ".text"}, "184": {"type": "MIPS_GPREL16", "symbol": "_isTop32dirty"}, "200": {"type": "MIPS_GPREL16", "symbol": "_top32"}, "204": {"type": "MIPS_GPREL16", "symbol": "_top32len"}, "208": {"type": "MIPS_GPREL16", "symbol": "_top32"}}}}, "7d1780bf1a5cf23d95c3017d8808ce77f0077fc0": {"b2817db7": {"type": "FUNCT)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ION", "size": 304, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_isTop32dirty"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": "_top32len"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": "_isTop32dirty"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": "_top32len"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": "_top32"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": "_top32"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": "_theSceMpeg"}, "164": {"type": "MIPS_26", "symbol": "_dispatchMpegCbNodata", "scope": "LIBRARY"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": "_theSceMpeg"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "220": {"type": "MIPS_26", "symbol": "_waitIpuIdle64", "scope": "LIBRARY", "original": ".text"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": "_isTop32dirty"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": "_top32len"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": "_top32"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": "_top32"}}}}}, "_flushBuf": {"6e78989517ee3f4696d3847317479019a465e6ae": {"1d9f14ef": {"type": "FUNCTION", "size": 240, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_26", "symbol": "_dispatchMpegCbNodata", "scope": "LIBRARY"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "188": {"type": "MIPS_26", "symbol": "_waitIpuIdle64", "scope": "LIBRARY", "original": ".text"}}}}, "ec7a68b7518dd208305c1f2f0f56ea6a1ab588f7": {"6dcaec83": {"type": "FUNCTION", "size": 268, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_26", "symbol": "_dispatchMpegCbNodata", "scope": "LIBRARY"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "216": {"type": "MIPS_26", "symbol": "_waitIpuIdle64", "scope": "LIBRARY", "original": ".text"}}}}, "d9aba09113a50d966b232527ce83d35f18056769": {"8d61ecd7": {"type": "FUNCTION", "size": 276, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"68": {"type": "MIPS_HI16", "symbol": "", "original": "_isTop32dirty"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": "_top32"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": "_top32len"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": "_theSceMpeg"}, "108": {"type": "MIPS_26", "symbol": "_dispatchMpegCbNodata", "scope": "LIBRARY"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": "_theSceMpeg"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": "_top32"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": "_top32len"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "216": {"type": "MIPS_26", "symbol": "_waitIpuIdle64", "scope": "LIBRARY", "original": ".text"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": "_isTop32dirty"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": "_top32"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": "_top32len"}}}}, "6caa19761d429a4990ce453339c0797f7b3fea44": {"9073ea0d": {"type": "FUNCTION", "size": 236, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"108": {"type": "MIPS_26", "symbol": "_dispatchMpegCbNodata", "scope": "LIBRARY"}, "112": {"type": "MIPS_GPREL16", "symbol": "_theSceMpeg"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "180": {"type": "MIPS_26", "symbol": "_waitIpuIdle64", "scope": "LIBRARY", "original": ".text"}, "184": {"type": "MIPS_GPREL16", "symbol": "_isTop32dirty"}, "220": {"type": "MIPS_GPREL16", "symbol": "_top32"}, "224": {"type": "MIPS_GPREL16", "symbol": "_top32len"}}}}, "a7016dee35988ca57040df035746401582586b1b": {"157bb69a": {"type": "FUNCTION", "size": 260, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"80": {"type": "MIPS_HI16", "symbol": "", "original": "_theSceMpeg"}, "116": {"type": "MIPS_26", "symbol": "_dispatchMpegCbNodata", "scope": "LIBRARY"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": "_theSceMpeg"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": "_isTop32dirty"}, "192": {"type": "MIPS_26", "symbol": "_waitIpuIdle64", "scope": "LIBRARY", "original": ".text"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": "_isTop32dirty"}, "208": {"type": "MIPS_HI16", "symbol": "", "original": "_top32"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": "_top32"}, "220": {"type": "MIPS_HI16", "symbol": "", "original": "_top32len"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": "_top32len"}}}}, "a639a8a356321edbeccee089cae462e9fca431ea": {"733d596c": {"type": "FUNCTION", "size": 8, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_26", "symbol": "_sceMpegFlushBuf", "scope": "LIBRARY", "original": ".text"}}}}}, "_nextBit": {"7eda821fbaff852e2a11864fd048c4c915b4bb14": {"aa1b23a1": {"type": "FUNCTION", "size": 336, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_26", "symbol": "_dispatchMpegCbNodata", "scope": "LIBRARY"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "200": {"type": "MIPS_26", "symbol": "_waitIpuIdle64", "scope": "LIBRARY", "original": ".text"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "284": {"type": "MIPS_26", "symbol": "_waitIpuIdle64", "scope": "LIBRARY", "original": ".text"}}}}, "320c447dfd039b4c89da19f18846c4af9b172170": {"e289aebd": {"type": "FUNCTION", "size": 364, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_26", "symbol": "_dispatchMpegCbNodata", "scope": "LIBRARY"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "228": {"type": "MIPS_26", "symbol": "_waitIpuIdle64", "scope": "LIBRARY", "original": ".text"}, "288": {"type": "MIPS_LO16", "symbol": "", "origina)PS2SDB", 8192}, + std::string_view{R"PS2SDB(l": ".data"}, "312": {"type": "MIPS_26", "symbol": "_waitIpuIdle64", "scope": "LIBRARY", "original": ".text"}}}}, "688801a799c1c0745428f943a0424beb90e851d9": {"3adc399c": {"type": "FUNCTION", "size": 360, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"68": {"type": "MIPS_HI16", "symbol": "", "original": "_isTop32dirty"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": "_top32len"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": "_top32"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": "_theSceMpeg"}, "108": {"type": "MIPS_26", "symbol": "_dispatchMpegCbNodata", "scope": "LIBRARY"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": "_theSceMpeg"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": "_isTop32dirty"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": "_top32len"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": "_top32"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": "_isTop32dirty"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": "_top32len"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "224": {"type": "MIPS_26", "symbol": "_waitIpuIdle64", "scope": "LIBRARY", "original": ".text"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": "_isTop32dirty"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": "_top32"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": "_top32len"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": "_top32"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "304": {"type": "MIPS_26", "symbol": "_waitIpuIdle64", "scope": "LIBRARY", "original": ".text"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": "_isTop32dirty"}, "324": {"type": "MIPS_LO16", "symbol": "", "original": "_top32"}}}}, "9107894ca40cafd80f8da1c9980900ff08322bdd": {"68217ed7": {"type": "FUNCTION", "size": 328, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_GPREL16", "symbol": "_isTop32dirty"}, "116": {"type": "MIPS_26", "symbol": "_dispatchMpegCbNodata", "scope": "LIBRARY"}, "120": {"type": "MIPS_GPREL16", "symbol": "_theSceMpeg"}, "144": {"type": "MIPS_GPREL16", "symbol": "_isTop32dirty"}, "156": {"type": "MIPS_GPREL16", "symbol": "_top32len"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "192": {"type": "MIPS_26", "symbol": "_waitIpuIdle64", "scope": "LIBRARY", "original": ".text"}, "196": {"type": "MIPS_GPREL16", "symbol": "_isTop32dirty"}, "208": {"type": "MIPS_GPREL16", "symbol": "_top32"}, "228": {"type": "MIPS_GPREL16", "symbol": "_top32len"}, "236": {"type": "MIPS_GPREL16", "symbol": "_top32"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "272": {"type": "MIPS_26", "symbol": "_waitIpuIdle64", "scope": "LIBRARY", "original": ".text"}, "276": {"type": "MIPS_GPREL16", "symbol": "_isTop32dirty"}, "292": {"type": "MIPS_GPREL16", "symbol": "_top32"}}}}, "61860d241f46819e6cb50a9636fb064f3714daef": {"c7df6677": {"type": "FUNCTION", "size": 376, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": "_top32len"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": "_isTop32dirty"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": "_top32"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": "_isTop32dirty"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": "_theSceMpeg"}, "148": {"type": "MIPS_26", "symbol": "_dispatchMpegCbNodata", "scope": "LIBRARY"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": "_theSceMpeg"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": "_isTop32dirty"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": "_top32len"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "224": {"type": "MIPS_26", "symbol": "_waitIpuIdle64", "scope": "LIBRARY", "original": ".text"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": "_isTop32dirty"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": "_top32"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": "_top32len"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": "_top32"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "304": {"type": "MIPS_26", "symbol": "_waitIpuIdle64", "scope": "LIBRARY", "original": ".text"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": "_isTop32dirty"}, "324": {"type": "MIPS_LO16", "symbol": "", "original": "_top32"}}}}}, "_nextStartCode": {"5642c5468587fa7192560fefd9cefe49a17529a9": {"c9a4f6f4": {"type": "FUNCTION", "size": 124, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "_waitIpuIdle", "original": ".text"}, "56": {"type": "MIPS_26", "symbol": "_flushBuf", "original": ".text"}, "72": {"type": "MIPS_26", "symbol": "_flushBuf", "original": ".text"}, "84": {"type": "MIPS_26", "symbol": "_peepBit", "scope": "LIBRARY", "original": ".text"}}}}, "97253c638d0afb8d1c1b3ce983f59cf7dd774523": {"c9a4f6f4": {"type": "FUNCTION", "size": 128, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "_waitIpuIdle", "original": ".text"}, "56": {"type": "MIPS_26", "symbol": "_flushBuf", "original": ".text"}, "72": {"type": "MIPS_26", "symbol": "_flushBuf", "original": ".text"}, "84": {"type": "MIPS_26", "symbol": "_peepBit", "scope": "LIBRARY", "original": ".text"}}}}, "81bf633f7bd02dcc77760f689e93927fd8b1b546": {"abe66dce": {"type": "FUNCTION", "size": 104, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "_waitIpuIdle", "original": ".text"}, "48": {"type": "MIPS_26", "symbol": "_flushBuf", "original": ".text"}, "64": {"type": "MIPS_26", "symbol": "_flushBuf", "original": ".text"}, "72": {"type": "MIPS_26", "symbol": "_peepBit", "scope": "LIBRARY", "original": ".text"}}}}}, "_sliceB": {"33543035c904370b3562f8d344f1da6c73c8e857": {"cc6378bb": {"type": "FUNCTION", "size": 100, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "32": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "52": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_26", "symbol": "_flushBuf", "original": ".text"}, "72": {"type": "MIPS_26", "symbol": "_extrainfo", "scope": "LIBRARY", "original": ".text"}}}}, "f39fa79be18e8528487bc)PS2SDB", 8192}, + std::string_view{R"PS2SDB(a7a3d892f9af44c2265": {"cc6378bb": {"type": "FUNCTION", "size": 100, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "32": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "52": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_26", "symbol": "_flushBuf", "original": ".text"}, "72": {"type": "MIPS_26", "symbol": "_extrainfo", "scope": "LIBRARY", "original": ".text"}}}}, "0aefd04d684cc9a8ecc75bbf96ece27b230b58e8": {"bd91efd7": {"type": "FUNCTION", "size": 108, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": "_qscqsc"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "_qscqsc"}, "28": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "44": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": "_intra_slice"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": "_intra_slice"}, "56": {"type": "MIPS_26", "symbol": "_flushBuf", "original": ".text"}, "64": {"type": "MIPS_26", "symbol": "_extrainfo", "scope": "LIBRARY", "original": ".text"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": "_intra_slice"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": "_intra_slice"}}}}, "238673e584b6115c88e95c99f45a0a0f0ff88b6f": {"b7fc9420": {"type": "FUNCTION", "size": 88, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "16": {"type": "MIPS_GPREL16", "symbol": "_qscqsc"}, "20": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "32": {"type": "MIPS_GPREL16", "symbol": "_intra_slice"}, "36": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "44": {"type": "MIPS_GPREL16", "symbol": "_intra_slice"}, "48": {"type": "MIPS_26", "symbol": "_flushBuf", "original": ".text"}, "56": {"type": "MIPS_26", "symbol": "_extrainfo", "scope": "LIBRARY", "original": ".text"}}}}}, "_nextHeader": {"58f2ba3677626c7914ce0d0196c96cde941a8fa6": {"90071911": {"type": "FUNCTION", "size": 268, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"64": {"type": "MIPS_26", "symbol": "_nextStartCode", "scope": "LIBRARY", "original": ".text"}, "76": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "144": {"type": "MIPS_26", "symbol": "_sequenceHeader", "scope": "LIBRARY"}, "160": {"type": "MIPS_26", "symbol": "_groupOfPicturesHeader", "scope": "LIBRARY", "original": ".text"}, "176": {"type": "MIPS_26", "symbol": "_pictureHeader", "scope": "LIBRARY", "original": ".text"}, "200": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}}}}, "cbbc7a35cd4de6c334c39969fac248307d0a587c": {"1192ad24": {"type": "FUNCTION", "size": 284, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"80": {"type": "MIPS_26", "symbol": "_nextStartCode", "scope": "LIBRARY", "original": ".text"}, "92": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "160": {"type": "MIPS_26", "symbol": "_sequenceHeader", "scope": "LIBRARY"}, "176": {"type": "MIPS_26", "symbol": "_groupOfPicturesHeader", "scope": "LIBRARY", "original": ".text"}, "192": {"type": "MIPS_26", "symbol": "_pictureHeader", "scope": "LIBRARY", "original": ".text"}, "216": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}}}}, "5c73cf3cbbd9f8525ebc80efd58aeedad18339f5": {"8adf7ac5": {"type": "FUNCTION", "size": 292, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": "_headerDts"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": "_headerPts"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": "_theSceMpeg"}, "80": {"type": "MIPS_26", "symbol": "_nextStartCode", "scope": "LIBRARY", "original": ".text"}, "88": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "156": {"type": "MIPS_26", "symbol": "_sequenceHeader", "scope": "LIBRARY"}, "172": {"type": "MIPS_26", "symbol": "_groupOfPicturesHeader", "scope": "LIBRARY", "original": ".text"}, "188": {"type": "MIPS_26", "symbol": "_pictureHeader", "scope": "LIBRARY", "original": ".text"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": "_theSceMpeg"}, "212": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": "_headerPts"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": "_headerDts"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_coding_type"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_coding_type"}}}}, "7dd6fe15fbc3272d8653d2927f31f7a57db93aa9": {"ab93b788": {"type": "FUNCTION", "size": 252, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "_nextStartCode", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "_sequenceHeader", "scope": "LIBRARY"}, "148": {"type": "MIPS_26", "symbol": "_groupOfPicturesHeader", "scope": "LIBRARY", "original": ".text"}, "164": {"type": "MIPS_26", "symbol": "_pictureHeader", "scope": "LIBRARY", "original": ".text"}, "172": {"type": "MIPS_GPREL16", "symbol": "_theSceMpeg"}, "188": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}, "204": {"type": "MIPS_GPREL16", "symbol": "_headerDts"}, "208": {"type": "MIPS_GPREL16", "symbol": "_headerPts"}, "212": {"type": "MIPS_GPREL16", "symbol": "_picture_coding_type"}}}}}, "_pictureHeader": {"02df5789a4010610c75b2478e9776c3330b88b5d": {"f4b4a718": {"type": "FUNCTION", "size": 196, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "36": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "52": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "80": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "96": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "124": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "140": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "152": {"type": "M)PS2SDB", 8192}, + std::string_view{R"PS2SDB(IPS_26", "symbol": "_extrainfo", "scope": "LIBRARY", "original": ".text"}, "160": {"type": "MIPS_26", "symbol": "_extensionAndUserData", "scope": "LIBRARY", "original": ".text"}, "188": {"type": "MIPS_26", "symbol": "_updateTempTackData", "scope": "LIBRARY", "original": ".text"}}}}, "3d0497ae703eaf6a23c5e62279279b06cef16abd": {"f4b4a718": {"type": "FUNCTION", "size": 196, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "36": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "52": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "80": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "96": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "124": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "140": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "152": {"type": "MIPS_26", "symbol": "_extrainfo", "scope": "LIBRARY", "original": ".text"}, "160": {"type": "MIPS_26", "symbol": "_extensionAndUserData", "scope": "LIBRARY", "original": ".text"}, "188": {"type": "MIPS_26", "symbol": "_updateTempTackData", "scope": "LIBRARY", "original": ".text"}}}}, "34fe00103af438b99f5941ebb99e60f768e581ed": {"87fd541b": {"type": "FUNCTION", "size": 204, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_coding_type"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": "_temporal_reference"}, "28": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": "_temporal_reference"}, "40": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": "_vbv_delay"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_coding_type"}, "56": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_coding_type"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": "_vbv_delay"}, "92": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": "_full_pel_forward_vector"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": "_forward_f_code"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": "_full_pel_forward_vector"}, "108": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": "_forward_f_code"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_coding_type"}, "136": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": "_full_pel_backward_vector"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_backward_f_code"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_full_pel_backward_vector"}, "152": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": "_backward_f_code"}, "164": {"type": "MIPS_26", "symbol": "_extrainfo", "scope": "LIBRARY", "original": ".text"}, "172": {"type": "MIPS_26", "symbol": "_extensionAndUserData", "scope": "LIBRARY", "original": ".text"}, "196": {"type": "MIPS_26", "symbol": "_updateTempTackData", "scope": "LIBRARY", "original": ".text"}}}}, "02851c65e0ae8a37dcbfc7d880e11fc348ffd54e": {"ba0eea32": {"type": "FUNCTION", "size": 152, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "16": {"type": "MIPS_GPREL16", "symbol": "_temporal_reference"}, "20": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "28": {"type": "MIPS_GPREL16", "symbol": "_picture_coding_type"}, "32": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "40": {"type": "MIPS_GPREL16", "symbol": "_picture_coding_type"}, "56": {"type": "MIPS_GPREL16", "symbol": "_vbv_delay"}, "60": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "68": {"type": "MIPS_GPREL16", "symbol": "_full_pel_forward_vector"}, "72": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "80": {"type": "MIPS_GPREL16", "symbol": "_forward_f_code"}, "84": {"type": "MIPS_GPREL16", "symbol": "_picture_coding_type"}, "100": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "108": {"type": "MIPS_GPREL16", "symbol": "_full_pel_backward_vector"}, "112": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "120": {"type": "MIPS_GPREL16", "symbol": "_backward_f_code"}, "124": {"type": "MIPS_26", "symbol": "_extrainfo", "scope": "LIBRARY", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "_extensionAndUserData", "scope": "LIBRARY", "original": ".text"}, "144": {"type": "MIPS_26", "symbol": "_updateTempTackData", "scope": "LIBRARY", "original": ".text"}}}}, "c006663c2ef5c4fbc2f31a236ddfbe7f51b18a75": {"c4b7ce11": {"type": "FUNCTION", "size": 200, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_coding_type"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": "_temporal_reference"}, "28": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": "_temporal_reference"}, "40": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": "_vbv_delay"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_coding_type"}, "56": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_coding_type"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": "_vbv_delay"}, "88": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": "_full_pel_forward_vector"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": "_forward_f_code"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": "_full_pel_forward_vector"}, "104": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": "_forward_f_code"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_coding_type"}, "132": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": "_full_pel_backward_vector"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": "_backward_f_code"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": "_full_pel_backward_vector"}, "148": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": "_backward_f_code"}, "160": {"type": "MIPS_26", "symbol": "_extrainfo", "scope": "LI)PS2SDB", 8192}, + std::string_view{R"PS2SDB(BRARY", "original": ".text"}, "168": {"type": "MIPS_26", "symbol": "_extensionAndUserData", "scope": "LIBRARY", "original": ".text"}, "192": {"type": "MIPS_26", "symbol": "_updateTempTackData", "scope": "LIBRARY", "original": ".text"}}}}, "0471152e9b4ea5e4db693d529bc8e924899f6f13": {"255905a4": {"type": "FUNCTION", "size": 324, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "36": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "140": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "160": {"type": "MIPS_26", "symbol": "_flushBuf", "original": ".text"}, "172": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "188": {"type": "MIPS_26", "symbol": "_extensionAndUserData", "scope": "LIBRARY", "original": ".text"}}}}}, "_extensionAndUserData": {"0e444613c572ae47843223377229547c00525888": {"fcec8b77": {"type": "FUNCTION", "size": 296, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "132": {"type": "MIPS_26", "symbol": "_nextStartCode", "scope": "LIBRARY", "original": ".text"}, "160": {"type": "MIPS_26", "symbol": "_flushBuf", "original": ".text"}, "172": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "208": {"type": "MIPS_26", "symbol": "_nextStartCode", "scope": "LIBRARY", "original": ".text"}, "224": {"type": "MIPS_26", "symbol": "_flushBuf", "original": ".text"}, "232": {"type": "MIPS_26", "symbol": "_nextStartCode", "scope": "LIBRARY", "original": ".text"}, "244": {"type": "MIPS_26", "symbol": "_peepBit", "scope": "LIBRARY", "original": ".text"}}}}, "c7aa8dc6992e24eb1a4c296760bdd5700d321909": {"a0ee15e6": {"type": "FUNCTION", "size": 176, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "_nextStartCode", "scope": "LIBRARY", "original": ".text"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "_flushBuf", "original": ".text"}, "48": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_26", "symbol": "_nextStartCode", "scope": "LIBRARY", "original": ".text"}, "108": {"type": "MIPS_26", "symbol": "_flushBuf", "original": ".text"}, "116": {"type": "MIPS_26", "symbol": "_nextStartCode", "scope": "LIBRARY", "original": ".text"}, "124": {"type": "MIPS_26", "symbol": "_peepBit", "scope": "LIBRARY", "original": ".text"}}}}, "44083fa273680bb72492537852e10121a1e48131": {"1ccffc40": {"type": "FUNCTION", "size": 188, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "_nextStartCode", "scope": "LIBRARY", "original": ".text"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_26", "symbol": "_flushBuf", "original": ".text"}, "72": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "108": {"type": "MIPS_26", "symbol": "_nextStartCode", "scope": "LIBRARY", "original": ".text"}, "124": {"type": "MIPS_26", "symbol": "_flushBuf", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "_nextStartCode", "scope": "LIBRARY", "original": ".text"}, "140": {"type": "MIPS_26", "symbol": "_peepBit", "scope": "LIBRARY", "original": ".text"}}}}, "99587f14119f6d20e8786bbd1c716ba4bbc985b9": {"f83e2735": {"type": "FUNCTION", "size": 460, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_26", "symbol": "flushByteBoundary", "scope": "LIBRARY", "original": ".text"}, "144": {"type": "MIPS_26", "symbol": "_flushBuf", "original": ".text"}, "156": {"type": "MIPS_26", "symbol": "_sceMpegPeepBit", "scope": "LIBRARY"}, "216": {"type": "MIPS_26", "symbol": "flushBuf32", "scope": "LIBRARY", "original": ".text"}, "228": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "264": {"type": "MIPS_26", "symbol": "flushByteBoundary", "scope": "LIBRARY", "original": ".text"}, "280": {"type": "MIPS_26", "symbol": "_flushBuf", "original": ".text"}, "292": {"type": "MIPS_26", "symbol": "_sceMpegPeepBit", "scope": "LIBRARY"}, "332": {"type": "MIPS_26", "symbol": "flushBuf32", "scope": "LIBRARY", "original": ".text"}, "340": {"type": "MIPS_26", "symbol": "flushByteBoundary", "scope": "LIBRARY", "original": ".text"}, "360": {"type": "MIPS_26", "symbol": "_flushBuf", "original": ".text"}, "372": {"type": "MIPS_26", "symbol": "_sceMpegPeepBit", "scope": "LIBRARY"}, "408": {"type": "MIPS_26", "symbol": "_sceMpegPeepBit", "scope": "LIBRARY"}}}}}, "_pictureCodingExtension": {"9a897267f5ecd55483e7d5525ef2d94d08ffdd2a": {"d65e35da": {"type": "FUNCTION", "size": 496, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "32": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "48": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "80": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "128": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "160": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "176": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "192": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "208": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "256": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "304": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "352": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "368": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "380": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "396": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "416": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "428": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "440": {"type": "MIPS_26", "symbol": )PS2SDB", 8192}, + std::string_view{R"PS2SDB("_nextBit", "scope": "LIBRARY", "original": ".text"}, "452": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "476": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}}}}, "7c363f0e9c41ddc85bf2b44d3f2b47d97fd4a81f": {"d65e35da": {"type": "FUNCTION", "size": 496, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "32": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "48": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "80": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "128": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "160": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "176": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "192": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "208": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "256": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "304": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "352": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "368": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "380": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "396": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "416": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "428": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "440": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "452": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "476": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}}}}, "825cff67bfb9a0a47e263507d30d74f110093074": {"85f751f7": {"type": "FUNCTION", "size": 556, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_theSceMpeg"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_structure"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": "_intra_dc_precision"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": "_theSceMpeg"}, "44": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": "_f_code"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": "_f_code"}, "64": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": "_f_code"}, "76": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "88": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "100": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": "_intra_dc_precision"}, "148": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "180": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": "_top_field_first"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": "_frame_pred_frame_dct"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": "_top_field_first"}, "196": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": "_concealment_motion_vectors"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": "_frame_pred_frame_dct"}, "212": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "220": {"type": "MIPS_HI16", "symbol": "", "original": "_q_scale_type"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": "_concealment_motion_vectors"}, "228": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": "_intra_vlc_format"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": "_q_scale_type"}, "272": {"type": "MIPS_HI16", "symbol": "", "original": "_alternate_scan"}, "284": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "292": {"type": "MIPS_HI16", "symbol": "", "original": "_repeat_first_field"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": "_intra_vlc_format"}, "328": {"type": "MIPS_HI16", "symbol": "", "original": "_chroma_420_type"}, "340": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "372": {"type": "MIPS_LO16", "symbol": "", "original": "_alternate_scan"}, "388": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "396": {"type": "MIPS_LO16", "symbol": "", "original": "_repeat_first_field"}, "400": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "408": {"type": "MIPS_HI16", "symbol": "", "original": "_progressive_frame"}, "412": {"type": "MIPS_LO16", "symbol": "", "original": "_chroma_420_type"}, "416": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "424": {"type": "MIPS_HI16", "symbol": "", "original": "_composite_display_flag"}, "428": {"type": "MIPS_LO16", "symbol": "", "original": "_progressive_frame"}, "432": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "444": {"type": "MIPS_LO16", "symbol": "", "original": "_composite_display_flag"}, "452": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "456": {"type": "MIPS_HI16", "symbol": "", "original": "_v_axis"}, "460": {"type": "MIPS_HI16", "symbol": "", "original": "_field_sequence"}, "464": {"type": "MIPS_LO16", "symbol": "", "original": "_v_axis"}, "468": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "476": {"type": "MIPS_HI16", "symbol": "", "original": "_sub_carrier"}, "480": {"type": "MIPS_LO16", "symbol": "", "original": "_field_sequence"}, "484": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "492": {"type": "MIPS_HI16", "symbol": "", "original": "_burst_amplitude"}, "496": {"type": "MIPS_LO16", "symbol": "", "original": "_sub_carrier"}, "500": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "508": {"type": "MIPS_HI16", "symbol": "", "original": "_sub_carrier_phase"}, "512": {"type": "MIPS_LO16", "symbol": "", "original": "_burst_amplitude"}, "516": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "524": {"type": "MIPS_LO16", "symbol": "", "original": "_sub_carrier_phase"}}}}, "29d33a6c8bf8d94be13b1c341961bb58ebc03f11": {"a37c792d": {"type": "FUNCTION", "size": 452, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_GPREL16", "symbol": "_theSceMpeg"}, "36": {"type")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": "_f_code"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": "_f_code"}, "56": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": "_f_code"}, "68": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "80": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "92": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "100": {"type": "MIPS_GPREL16", "symbol": "_intra_dc_precision"}, "132": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "152": {"type": "MIPS_GPREL16", "symbol": "_picture_structure"}, "160": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "168": {"type": "MIPS_GPREL16", "symbol": "_top_field_first"}, "172": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "180": {"type": "MIPS_GPREL16", "symbol": "_frame_pred_frame_dct"}, "184": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "192": {"type": "MIPS_GPREL16", "symbol": "_concealment_motion_vectors"}, "196": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "204": {"type": "MIPS_GPREL16", "symbol": "_q_scale_type"}, "236": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "244": {"type": "MIPS_GPREL16", "symbol": "_intra_vlc_format"}, "276": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "284": {"type": "MIPS_GPREL16", "symbol": "_alternate_scan"}, "316": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "324": {"type": "MIPS_GPREL16", "symbol": "_repeat_first_field"}, "328": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "336": {"type": "MIPS_GPREL16", "symbol": "_chroma_420_type"}, "340": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "348": {"type": "MIPS_GPREL16", "symbol": "_progressive_frame"}, "352": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "364": {"type": "MIPS_GPREL16", "symbol": "_composite_display_flag"}, "368": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "376": {"type": "MIPS_GPREL16", "symbol": "_v_axis"}, "380": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "388": {"type": "MIPS_GPREL16", "symbol": "_field_sequence"}, "392": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "400": {"type": "MIPS_GPREL16", "symbol": "_sub_carrier"}, "404": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "412": {"type": "MIPS_GPREL16", "symbol": "_burst_amplitude"}, "416": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "424": {"type": "MIPS_GPREL16", "symbol": "_sub_carrier_phase"}}}}, "df4d21b288c506051580b71ccc8dd36d9c4e3b02": {"56e98592": {"type": "FUNCTION", "size": 556, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_theSceMpeg"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": "_intra_dc_precision"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_structure"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": "_theSceMpeg"}, "64": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": "_f_code"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": "_f_code"}, "84": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": "_f_code"}, "96": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "108": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "120": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": "_intra_dc_precision"}, "160": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "192": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": "_top_field_first"}, "200": {"type": "MIPS_HI16", "symbol": "", "original": "_frame_pred_frame_dct"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": "_top_field_first"}, "208": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "216": {"type": "MIPS_HI16", "symbol": "", "original": "_concealment_motion_vectors"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": "_frame_pred_frame_dct"}, "224": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "232": {"type": "MIPS_HI16", "symbol": "", "original": "_q_scale_type"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": "_concealment_motion_vectors"}, "240": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "248": {"type": "MIPS_HI16", "symbol": "", "original": "_intra_vlc_format"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": "_q_scale_type"}, "276": {"type": "MIPS_HI16", "symbol": "", "original": "_alternate_scan"}, "280": {"type": "MIPS_HI16", "symbol": "", "original": "_repeat_first_field"}, "288": {"type": "MIPS_HI16", "symbol": "", "original": "_chroma_420_type"}, "296": {"type": "MIPS_HI16", "symbol": "", "original": "_progressive_frame"}, "304": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "308": {"type": "MIPS_HI16", "symbol": "", "original": "_composite_display_flag"}, "312": {"type": "MIPS_LO16", "symbol": "", "original": "_intra_vlc_format"}, "344": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_alternate_scan"}, "384": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "392": {"type": "MIPS_LO16", "symbol": "", "original": "_repeat_first_field"}, "396": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "404": {"type": "MIPS_LO16", "symbol": "", "original": "_chroma_420_type"}, "408": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "416": {"type": "MIPS_LO16", "symbol": "", "original": "_progressive_frame"}, "420": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "432": {"type": "MIPS_LO16", "symbol": "", "original": "_composite_display_flag"}, "440": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "444": {"type": "MIPS_HI16", "symbol": "", "original": "_v_axis"}, "448": {"type": "MIPS_HI16", "symbol": "", "original": "_field_sequence"}, "452": {"type": "MIPS_LO16", "symbol": "", "original": "_v_axis"}, "456": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "464": {"type": "MIPS_HI16", "symbol": "", "original": "_sub_carrier"}, "468": {"type": "MIPS_LO16", "symbol": "", "original": "_field_sequence"}, "472": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "480": {"type": "MIPS_HI16", "symbol": "", "original": "_burst_amplitude"}, "484": {"type": "MIPS_LO16", "symbol": "", "original": "_sub_carrier"}, "488": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "origina)PS2SDB", 8192}, + std::string_view{R"PS2SDB(l": ".text"}, "496": {"type": "MIPS_HI16", "symbol": "", "original": "_sub_carrier_phase"}, "500": {"type": "MIPS_LO16", "symbol": "", "original": "_burst_amplitude"}, "504": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "512": {"type": "MIPS_LO16", "symbol": "", "original": "_sub_carrier_phase"}}}}, "9a8048fef1591685c7d9beb4c0cc9a64583926b4": {"2a3bd3b5": {"type": "FUNCTION", "size": 484, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "32": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "48": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "128": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "160": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "176": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "192": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "208": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "256": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "304": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "352": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "368": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "380": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "396": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "412": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "424": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "436": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "448": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "460": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}}}}, "6e56a4a6d2d59070d84ed760e32c25309f4d89de": {"661e61c4": {"type": "FUNCTION", "size": 560, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_theSceMpeg"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_structure"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": "_intra_dc_precision"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": "_theSceMpeg"}, "44": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": "_f_code"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": "_f_code"}, "64": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": "_f_code"}, "76": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "88": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "100": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": "_intra_dc_precision"}, "152": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "184": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": "_top_field_first"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": "_frame_pred_frame_dct"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": "_top_field_first"}, "200": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "208": {"type": "MIPS_HI16", "symbol": "", "original": "_concealment_motion_vectors"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": "_frame_pred_frame_dct"}, "216": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": "_q_scale_type"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": "_concealment_motion_vectors"}, "232": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "240": {"type": "MIPS_HI16", "symbol": "", "original": "_intra_vlc_format"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": "_q_scale_type"}, "276": {"type": "MIPS_HI16", "symbol": "", "original": "_alternate_scan"}, "288": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "296": {"type": "MIPS_HI16", "symbol": "", "original": "_repeat_first_field"}, "324": {"type": "MIPS_LO16", "symbol": "", "original": "_intra_vlc_format"}, "332": {"type": "MIPS_HI16", "symbol": "", "original": "_chroma_420_type"}, "344": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "376": {"type": "MIPS_LO16", "symbol": "", "original": "_alternate_scan"}, "392": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "400": {"type": "MIPS_LO16", "symbol": "", "original": "_repeat_first_field"}, "404": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "412": {"type": "MIPS_HI16", "symbol": "", "original": "_progressive_frame"}, "416": {"type": "MIPS_LO16", "symbol": "", "original": "_chroma_420_type"}, "420": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "428": {"type": "MIPS_HI16", "symbol": "", "original": "_composite_display_flag"}, "432": {"type": "MIPS_LO16", "symbol": "", "original": "_progressive_frame"}, "436": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "448": {"type": "MIPS_LO16", "symbol": "", "original": "_composite_display_flag"}, "456": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "460": {"type": "MIPS_HI16", "symbol": "", "original": "_v_axis"}, "464": {"type": "MIPS_HI16", "symbol": "", "original": "_field_sequence"}, "468": {"type": "MIPS_LO16", "symbol": "", "original": "_v_axis"}, "472": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "480": {"type": "MIPS_HI16", "symbol": "", "original": "_sub_carrier"}, "484": {"type": "MIPS_LO16", "symbol": "", "original": "_field_sequence"}, "488": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "496": {"type": "MIPS_HI16", "symbol": "", "original": "_burst_amplitude"}, "500": {"type": "MIPS_LO16", "symbol": "", "original": "_sub_carrier"}, "504": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "512": {"type": "MIPS_HI16", "symbol": "", "original": "_sub_carrier_phase"}, "516": {"type": "MIPS_LO16", "symbol": "", "original": "_burst_amplitude"}, "520": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "528": {"type": "MIPS_LO16", "symbol": "", "original": "_sub_carrier_phase"}}}}}, "_extrainfo": {"d29fa74d8709055d7d2db0f91212ce0ef3691180": {"a38a1722": {"type": "FUNCTION", "size": 72, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "_flushBuf", "original": ".text"}, "36": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}}}}, "db380562d2ff5a828f2c35a37f140ca202be8975": {"8c750719")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: {"type": "FUNCTION", "size": 52, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "_flushBuf", "original": ".text"}, "24": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}}}}}, "_updateTempTackData": {"fd2b7b5c867c5d78221ed51978d30c99d0d8f9c6": {"00000000": {"type": "FUNCTION", "size": 116, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "158cb53dc6330d21c3670b13ba6b6c4b28ac85e0": {"00000000": {"type": "FUNCTION", "size": 116, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "66caaaa3af178fdcb03812dcf322ce0172fc0f59": {"8303383d": {"type": "FUNCTION", "size": 224, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_coding_type"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_coding_type"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": "_temporal_reference"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "_temporal_reference"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": "_temporal_reference"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": "_temporal_reference"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_trFrameNumber"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_temporal_reference"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": "_trFrameNumber"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": "_trFrameNumber"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": "_trFrameNumber"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "bd584cc24e0ffb246e68dbfe8e12736857e99c80": {"b5663def": {"type": "FUNCTION", "size": 152, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"0": {"type": "MIPS_GPREL16", "symbol": "_picture_coding_type"}, "12": {"type": "MIPS_GPREL16", "symbol": "_temporal_reference"}, "16": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "24": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "32": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "36": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "44": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "56": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "64": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "72": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "76": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "80": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "84": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "88": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "100": {"type": "MIPS_GPREL16", "symbol": "_trFrameNumber"}, "104": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "116": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "124": {"type": "MIPS_GPREL16", "symbol": "_trFrameNumber"}, "128": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "132": {"type": "MIPS_GPREL16", "symbol": "_trFrameNumber"}, "148": {"type": "MIPS_GPREL16", "symbol": ".sdata"}}}}, "3d4f88be7a3af65156f81ca95686b2eec4d2d2ee": {"7f5c2060": {"type": "FUNCTION", "size": 208, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_coding_type"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_coding_type"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": "_temporal_reference"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "_temporal_reference"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "_temporal_reference"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": "_temporal_reference"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": "_temporal_reference"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": "_trFrameNumber"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": "_temporal_reference"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_trFrameNumber"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": "_trFrameNumber"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": "_trFrameNumber"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "_groupOfPicturesHeader": {"cd2577ac0507ea893a93e75344f60bcebc4763eb": {"f119e463": {"type": "FUNCTION", "size": 160, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "52": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "76": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "88": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "100": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "112": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "128": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "152": {"type": "MIPS_26", "symbol": "_extensionAndUserData", "scope": "LIBRARY", "original": ".text"}}}}, "f669c9c5611f0f1418d725abb0440a36546b7757": {"f119e463": {"type": "FUNCTION", "size": 160, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "52": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "76": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "88": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "100": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "112": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "128": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "152": {"type": "MIPS_26", "symbol": "_extensionAndUserData", "scope": "LIBRARY", "original": ".text"}}}}, "cb1f57e532ef34d92c1bf3e2c024284ecdccf3ab": {"ce3f3ffd": {"type": "FUNCTION", "size": 228, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_theSceMpeg"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "_theSceMpeg"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": "_time_code_minutes"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": "_time_code_hours"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": "_drop_frame_flag"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": "_time_code_seconds"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": "_time_code_pictures"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": "_drop_frame_flag"}, "108": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": "_broken_link"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": "_time_code_hours"}, "124": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "_closed_gop"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "_time_code_minutes"}, "140": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "148": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": "_time_code_seconds"}, "160": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": "_time_code_pictures"}, "172": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": "_closed_gop"}, "184": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": "_broken_link"}, "220": {"type": "MIPS_26", "symbol": "_extensionAndUserData", "scope": "LIBRARY", "original": ".text"}}}}, "6ea450b75418ef0b94523c2c5071167423a0776c": {"7e532111": {"type": "FUNCTION", "size": 144, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_GPREL16", "symbol": "_theSceMpeg"}, "16": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "36": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "40": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "44": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "48": {"type": "MIPS_GPREL16", "symbol": "_drop_frame_flag"}, "52": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_GPREL16", "symbol": "_time_code_hours"}, "64": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "72": {"type": "MIPS_GPREL16", "symbol": "_time_code_minutes"}, "76": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "84": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "92": {"type": "MIPS_GPREL16", "symbol": "_time_code_seconds"}, "96": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "104": {"type": "MIPS_GPREL16", "symbol": "_time_code_pictures"}, "108": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "116": {"type": "MIPS_GPREL16", "symbol": "_closed_gop"}, "120": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "132": {"type": "MIPS_GPREL16", "symbol": "_broken_link"}, "136": {"type": "MIPS_26", "symbol": "_extensionAndUserData", "scope": "LIBRARY", "original": ".text"}}}}, "1bc10f4ec191a5f1b756edefb32949e913091dea": {"ebe287db": {"type": "FUNCTION", "size": 160, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "128": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "152": {"type": "MIPS_26", "symbol": "_extensionAndUserData", "scope": "LIBRARY", "original": ".text"}}}}}, "_quantMatrixExtension": {"89a10b0738975c437e8feebd50d6b1939a72e383": {"df975aae": {"type": "FUNCTION", "size": 196, "library": "lib)PS2SDB", 8192}, + std::string_view{R"PS2SDB(mpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "32": {"type": "MIPS_26", "symbol": "_waitIpuIdle", "original": ".text"}, "44": {"type": "MIPS_26", "symbol": "_sendIpuCommand", "scope": "LIBRARY", "original": ".text"}, "52": {"type": "MIPS_26", "symbol": "_waitIpuIdle", "original": ".text"}, "64": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "80": {"type": "MIPS_26", "symbol": "_waitIpuIdle", "original": ".text"}, "92": {"type": "MIPS_26", "symbol": "_sendIpuCommand", "scope": "LIBRARY", "original": ".text"}, "100": {"type": "MIPS_26", "symbol": "_waitIpuIdle", "original": ".text"}, "112": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "132": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "176": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}}}}, "d832bf3c5ddabace5d5646ecd4c27fc284a355a2": {"df975aae": {"type": "FUNCTION", "size": 196, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "32": {"type": "MIPS_26", "symbol": "_waitIpuIdle", "original": ".text"}, "44": {"type": "MIPS_26", "symbol": "_sendIpuCommand", "scope": "LIBRARY", "original": ".text"}, "52": {"type": "MIPS_26", "symbol": "_waitIpuIdle", "original": ".text"}, "64": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "80": {"type": "MIPS_26", "symbol": "_waitIpuIdle", "original": ".text"}, "92": {"type": "MIPS_26", "symbol": "_sendIpuCommand", "scope": "LIBRARY", "original": ".text"}, "100": {"type": "MIPS_26", "symbol": "_waitIpuIdle", "original": ".text"}, "112": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "132": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "176": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}}}}, "d0ae2da9c1542b1a14dff842c04e24bf7bbacace": {"20529618": {"type": "FUNCTION", "size": 172, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": "_load_intra_quantizer_matrix"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": "_load_intra_quantizer_matrix"}, "32": {"type": "MIPS_26", "symbol": "_waitIpuIdle", "original": ".text"}, "40": {"type": "MIPS_26", "symbol": "_sendIpuCommand", "scope": "LIBRARY", "original": ".text"}, "48": {"type": "MIPS_26", "symbol": "_waitIpuIdle", "original": ".text"}, "60": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": "_load_non_intra_quantizer_matrix"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "_load_non_intra_quantizer_matrix"}, "76": {"type": "MIPS_26", "symbol": "_waitIpuIdle", "original": ".text"}, "84": {"type": "MIPS_26", "symbol": "_sendIpuCommand", "scope": "LIBRARY", "original": ".text"}, "92": {"type": "MIPS_26", "symbol": "_waitIpuIdle", "original": ".text"}, "100": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "124": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "152": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}}}}, "ac198764f7785f19e6433887fb86fbf52757be94": {"057fd429": {"type": "FUNCTION", "size": 152, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "20": {"type": "MIPS_GPREL16", "symbol": "_load_intra_quantizer_matrix"}, "24": {"type": "MIPS_26", "symbol": "_waitIpuIdle", "original": ".text"}, "32": {"type": "MIPS_26", "symbol": "_sendIpuCommand", "scope": "LIBRARY", "original": ".text"}, "40": {"type": "MIPS_26", "symbol": "_waitIpuIdle", "original": ".text"}, "48": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_GPREL16", "symbol": "_load_non_intra_quantizer_matrix"}, "64": {"type": "MIPS_26", "symbol": "_waitIpuIdle", "original": ".text"}, "72": {"type": "MIPS_26", "symbol": "_sendIpuCommand", "scope": "LIBRARY", "original": ".text"}, "80": {"type": "MIPS_26", "symbol": "_waitIpuIdle", "original": ".text"}, "88": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "112": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}}}}, "177be5063c979e488b7271c5f38d75f2aab4e9db": {"cc97c05b": {"type": "FUNCTION", "size": 232, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "32": {"type": "MIPS_26", "symbol": "_waitIpuIdle", "original": ".text"}, "68": {"type": "MIPS_26", "symbol": "_waitIpuIdle", "original": ".text"}, "80": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "_waitIpuIdle", "original": ".text"}, "136": {"type": "MIPS_26", "symbol": "_waitIpuIdle", "original": ".text"}, "148": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "168": {"type": "MIPS_26", "symbol": "_sceMpegError", "scope": "LIBRARY"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "180": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "200": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "212": {"type": "MIPS_26", "symbol": "_sceMpegError", "scope": "LIBRARY"}}}}}, "_pictureDisplayExtension": {"643dfab563848f97b99c8da2)PS2SDB", 8192}, + std::string_view{R"PS2SDB(22606bec72b8ee0b": {"f1b43b9e": {"type": "FUNCTION", "size": 244, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"128": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "152": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "168": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "188": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}}}}, "0d2862e08e19de262110e2de812560364af24f55": {"f1b43b9e": {"type": "FUNCTION", "size": 244, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"128": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "152": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "168": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "188": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}}}}, "abe2cebcfd237a628b3d572c7c17b61ca5419036": {"64cbf91e": {"type": "FUNCTION", "size": 240, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_progressive_sequence"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "_progressive_sequence"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": "_repeat_first_field"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "_repeat_first_field"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": "_top_field_first"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": "_top_field_first"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_structure"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": "_repeat_first_field"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": "_repeat_first_field"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": "_frame_center_horizontal_offset"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": "_frame_center_vertical_offset"}, "136": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_frame_center_horizontal_offset"}, "160": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "168": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": "_frame_center_vertical_offset"}, "188": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}}}}, "aa6e21495a1c017167c5c4f7b3fa2dfcfb8ed9b4": {"422ab093": {"type": "FUNCTION", "size": 192, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_GPREL16", "symbol": "_progressive_sequence"}, "28": {"type": "MIPS_GPREL16", "symbol": "_repeat_first_field"}, "36": {"type": "MIPS_GPREL16", "symbol": "_top_field_first"}, "56": {"type": "MIPS_GPREL16", "symbol": "_picture_structure"}, "68": {"type": "MIPS_GPREL16", "symbol": "_repeat_first_field"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": "_frame_center_horizontal_offset"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": "_frame_center_vertical_offset"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": "_frame_center_vertical_offset"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": "_frame_center_horizontal_offset"}, "116": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "128": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "140": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "152": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}}}}, "c6e730a1b3f5f9a93a3604de5e6c71db709b3ca8": {"c0017de3": {"type": "FUNCTION", "size": 216, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_progressive_sequence"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "_progressive_sequence"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": "_repeat_first_field"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": "_repeat_first_field"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": "_top_field_first"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": "_top_field_first"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_structure"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": "_repeat_first_field"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": "_repeat_first_field"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": "_frame_center_horizontal_offset"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": "_frame_center_vertical_offset"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": "_frame_center_vertical_offset"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": "_frame_center_horizontal_offset"}, "140": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "152": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "164": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "176": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}}}}, "9ccad6ba106736c9d063ec288a5fa1fc9671a605": {"07cfa605": {"type": "FUNCTION", "size": 244, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"128": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "152": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "188": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}}}}}, "_copyrightExtension": {"6dd78093cd31df5ac44f398b83f7ff539ce8dfb5": {"c44a2659": {"type": "FUNCTION", "size": 144, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "28": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "40": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "52": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "76": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "88": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "100": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "112": {"type": "MIPS_26", "symbol": "_ne)PS2SDB", 8192}, + std::string_view{R"PS2SDB(xtBit", "scope": "LIBRARY", "original": ".text"}, "136": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}}}}, "243ed43686f454d9ae77015446b4de14081d9624": {"8316f6ad": {"type": "FUNCTION", "size": 172, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": "_copyright_number_3"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": "_copyright_identifier"}, "32": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": "_copyright_flag"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": "_copyright_flag"}, "44": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": "_original_or_copy"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": "_copyright_identifier"}, "60": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": "_copyright_number_1"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "_original_or_copy"}, "76": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": "_copyright_number_2"}, "88": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "96": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": "_copyright_number_1"}, "108": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "116": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": "_copyright_number_2"}, "128": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "136": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": "_copyright_number_3"}}}}, "546971f90633f7c4fe2c4b7e3b13ec1ed78681d2": {"824a6a63": {"type": "FUNCTION", "size": 124, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "16": {"type": "MIPS_GPREL16", "symbol": "_copyright_flag"}, "20": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "28": {"type": "MIPS_GPREL16", "symbol": "_copyright_identifier"}, "32": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "40": {"type": "MIPS_GPREL16", "symbol": "_original_or_copy"}, "44": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "52": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "68": {"type": "MIPS_GPREL16", "symbol": "_copyright_number_1"}, "72": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "80": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "88": {"type": "MIPS_GPREL16", "symbol": "_copyright_number_2"}, "92": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "100": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY", "original": ".text"}, "112": {"type": "MIPS_GPREL16", "symbol": "_copyright_number_3"}}}}, "73b217201e20aa8e95582a7cce6b0817b8d69e48": {"2ee729cd": {"type": "FUNCTION", "size": 148, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "28": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "40": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}}}}}, "_decPicture": {"ee44f77c31d02108bca823102975d78c2691b761": {"d28d7b54": {"type": "FUNCTION", "size": 204, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"48": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "52": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "156": {"type": "MIPS_26", "symbol": "_pictureData0", "scope": "LIBRARY", "original": ".text"}}}}, "9a9e2165d831bcde17c7acf3f5656a093a3d5a3d": {"d28d7b54": {"type": "FUNCTION", "size": 204, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "52": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "156": {"type": "MIPS_26", "symbol": "_pictureData0", "scope": "LIBRARY", "original": ".text"}}}}, "8f4c4d8db9979f5adf593526c11151b9e217270a": {"cb790730": {"type": "FUNCTION", "size": 224, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_structure"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": "_isSecondField"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "_isSecondField"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "60": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": "_isSecondField"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": "_curFrame"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": "_curFrame"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": "_curFrame"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "_curTop"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": "_curTop"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_curBot"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": "_curBot"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": "_curFrame"}, "164": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "172": {"type": "MIPS_26", "symbol": "_pictureData0", "scope": "LIBRARY", "original": ".text"}}}}, "4dea70e7a1f27836badb69408653cc951b7f34bf": {"bded545b": {"type": "FUNCTION", "size": 196, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_GPREL16", "symbol": "_picture_structure"}, "32": {"type": "MIPS_GPREL16", "symbol": "_isSecondField"}, "40": {"type": "MIPS_GPREL16", "symbol": "_picture_structure"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "48": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "56": {"type": "MIPS_GPREL16", "symbol": "_isSecondField"}, "60": {"type": "MIPS_GPREL16", "symbol": "_picture_structure"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_GPREL16", "symbol": "_curFrame"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_GPREL16", "symbol": "_curFrame"}, "124": {"type": "MIPS_GPREL16", "symbol": "_curTop"}, "132": {"type": "MIPS_GPREL16", "symbol": "_curBot"}, "136": {"type": "MIPS_GPREL16", "symbol": "_curFrame"}, "140": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_26", "symbol": "_pictureData0", "scope": "LIBRARY", "original": ".text"}}}}, "9024e1b2733d86f183431fa15eb61f99fdf5a12c": {"b1374ca1": {"type": "FUNCTION", "size": 228, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_structure"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": "_isSecondField"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": "_isSecondField"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "_isSecondField"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": "_curFrame"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": "_curFrame"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": "_curFrame"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": "_curTop"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": "_curTop"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": "_curBot"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": "_curBot"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": "_curFrame"}, "168": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "176": {"type": "MIPS_26", "symbol": "_pictureData0", "scope": "LIBRARY", "original": ".text"}}}}, "f291ef599136e5a1d3842c2a560c94afcc19bf01": {"610dd9aa": {"type": "FUNCTION", "size": 204, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "52": {"type": "MIPS_26", "symbol": "_sceMpegError", "scope": "LIBRARY"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_26", "symbol": "_sceMpegError", "scope": "LIBRARY"}, "156": {"type": "MIPS_26", "symbol": "_sceMpegPictureData0", "scope": "LIBRARY"}}}}}, "_outputFrame": {"abc2922f84b8f4d07984951a98c59ffd24b78bbd": {"14b29577": {"type": "FUNCTION", "size": 144, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "_dispRefImage", "scope": "LIBRARY", "original": ".text"}, "100": {"type": "MIPS_26", "symbol": "_dispRefImageField", "scope": "LIBRARY", "original": ".text"}}}}, "e5252d664c706997eebdd145e22528befcbc5ff6": {"14b29577": {"type": "FUNCTION", "size": 144, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "_dispRefImage", "scope": "LIBRARY", "original": ".text"}, "100": {"type": "MIPS_26", "symbol": "_dispRefImageField", "scope": "LIBRARY", "original": ".text"}}}}, "95f891c8f6ca59ba5ba948abde653b8485bf754c": {"e4411b65": {"type": "FUNCTION", "size": 184, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_theSceMpeg"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "_theSceMpeg"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_structure"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_coding_type"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_coding_type"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": "_forwFrame"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": "_zFrame"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "_zFrame"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "_forwFrame"}, "80": {"type": "MIPS_26", "symbol": "_dispRefImage", "scope": "LIBRARY", "original": ".text"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_coding_type"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": "_forwTop"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": "_zTop"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": "_zBot"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": "_zTop"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": "_zBot"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": "_forwBot"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": "_forwTop"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "_forwBot"}, "140": {"type": "MIPS_26", "symbol": "_dispRefImageField", "scope": "LIBRARY", "original": ".text"}}}}, "2c3b20e62ad160141ae77)PS2SDB", 8192}, + std::string_view{R"PS2SDB(77fea5d8879a1d5219a": {"c3292115": {"type": "FUNCTION", "size": 140, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_GPREL16", "symbol": "_theSceMpeg"}, "28": {"type": "MIPS_GPREL16", "symbol": "_picture_structure"}, "40": {"type": "MIPS_GPREL16", "symbol": "_picture_coding_type"}, "48": {"type": "MIPS_GPREL16", "symbol": "_forwFrame"}, "52": {"type": "MIPS_GPREL16", "symbol": "_zFrame"}, "56": {"type": "MIPS_26", "symbol": "_dispRefImage", "scope": "LIBRARY", "original": ".text"}, "76": {"type": "MIPS_GPREL16", "symbol": "_forwTop"}, "80": {"type": "MIPS_GPREL16", "symbol": "_zTop"}, "88": {"type": "MIPS_GPREL16", "symbol": "_zBot"}, "92": {"type": "MIPS_GPREL16", "symbol": "_forwBot"}, "96": {"type": "MIPS_26", "symbol": "_dispRefImageField", "scope": "LIBRARY", "original": ".text"}}}}}, "_updateRefImage": {"6de1f3221d5f004c59336b050e200d2fd9ae3c4d": {"00000000": {"type": "FUNCTION", "size": 692, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "4182e898d0d4a432f61806a50c2f2dffb2cc60f5": {"00000000": {"type": "FUNCTION", "size": 692, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "0ef03a24de104b0dbc3bbe7dd6e436ab132d13e7": {"75b59f00": {"type": "FUNCTION", "size": 988, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_theSceMpeg"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_structure"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_coding_type"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": "_theSceMpeg"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_coding_type"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": "_zFrame"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": "_zBot"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": "_zFrame"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": "_zTop"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": "_curFrame"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": "_curTop"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": "_zBot"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": "_zTop"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": "_curBot"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": "_curFrame"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_curTop"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": "_curBot"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": "_broken_link"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": "_closed_gop"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": "_broken_link"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": "_closed_gop"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": "_broken_link"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": "_closed_gop"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": "_broken_link"}, "208": {"type": "MIPS_HI16", "symbol": "", "original": "_closed_gop"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": "_closed_gop"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": "_forwFrame"}, "228": {"type": "MIPS_HI16", "symbol": "", "original": "_forwTop"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": "_forwFrame"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": "_forwBot"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": "_forwTop"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": "_forwBot"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": "_broken_link"}, "280": {"type": "MIPS_HI16", "symbol": "", "original": "_forwFrame"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": "_forwFrame"}, "300": {"type": "MIPS_HI16", "symbol": "", "original": "_closed_gop"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": "_closed_gop"}, "312": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "316": {"type": "MIPS_HI16", "symbol": "", "original": "_backFrame"}, "324": {"type": "MIPS_LO16", "symbol": "", "original": "_backFrame"}, "344": {"type": "MIPS_HI16", "symbol": "", "original": "_forwTop"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_forwTop"}, "364": {"type": "MIPS_HI16", "symbol": "", "original": "_closed_gop"}, "368": {"type": "MIPS_HI16", "symbol": "", "original": "_forwBot"}, "372": {"type": "MIPS_LO16", "symbol": "", "original": "_forwBot"}, "384": {"type": "MIPS_HI16", "symbol": "", "original": "_closed_gop"}, "388": {"type": "MIPS_LO16", "symbol": "", "original": "_closed_gop"}, "396": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "400": {"type": "MIPS_HI16", "symbol": "", "original": "_backTop"}, "408": {"type": "MIPS_LO16", "symbol": "", "original": "_backTop"}, "420": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "424": {"type": "MIPS_HI16", "symbol": "", "original": "_backBot"}, "432": {"type": "MIPS_LO16", "symbol": "", "original": "_backBot"}, "456": {"type": "MIPS_HI16", "symbol": "", "original": "_backFrame"}, "460": {"type": "MIPS_HI16", "symbol": "", "original": "_forwFrame"}, "464": {"type": "MIPS_LO16", "symbol": "", "original": "_forwFrame"}, "468": {"type": "MIPS_HI16", "symbol": "", "original": "_forwTop"}, "472": {"type": "MIPS_LO16", "symbol": "", "original": "_backFrame"}, "476": {"type": "MIPS_HI16", "symbol": "", "original": "_backTop"}, "480": {"type": "MIPS_LO16", "symbol": "", "original": "_backFrame"}, "484": {"type": "MIPS_HI16", "symbol": "", "original": "_forwBot"}, "488": {"type": "MIPS_LO16", "symbol": "", "original": "_forwTop"}, "492": {"type": "MIPS_HI16", "symbol": "", "original": "_backBot"}, "496": {"type": "MIPS_LO16", "symbol": "", "original": "_backTop"}, "500": {"type": "MIPS_LO16", "symbol": "", "original": "_backTop"}, "504": {"type": "MIPS_LO16", "symbol": "", "original": "_forwBot"}, "508": {"type": "MIPS_LO16", "symbol": "", "original": "_backBot"}, "512": {"type": "MIPS_LO16", "symbol": "", "original": "_forwFrame"}, "516": {"type": "MIPS_LO16", "symbol": "", "original": "_forwTop"}, "520": {"type": "MIPS_LO16", "symbol": "", "original": "_forwBot"}, "528": {"type": "MIPS_LO16", "symbol": "", "original": "_backBot"}, "532": {"type": "MIPS_HI16", "symbol": "", "original": "_backTop"}, "536": {"type": "MIPS_HI16", "symbol": "", "original": "_backBot"}, "540": {"type": "MIPS_LO16", "symbol": "", "original": "_backFrame"}, "544": {"type": "MIPS_HI16", "symbol": "", "original": "_curFrame"}, "548": {"type": "MIPS_LO16", "symbol": "", "original": "_backTop"}, "552": {"type": "MIPS_HI16", "symbol": "", "original": "_curTop"}, "556": {"type": "MIPS_LO16", "symbol": "", "original": "_backBot"}, "560": {"type": "MIPS_HI16", "symbol": "", "original": "_curBot"}, "564": {"type": "MIPS_LO16", "symbol": "", "original": "_curFrame"}, "568": {"type": "MIPS_LO16", "sym)PS2SDB", 8192}, + std::string_view{R"PS2SDB(bol": "", "original": "_curTop"}, "576": {"type": "MIPS_LO16", "symbol": "", "original": "_curBot"}, "588": {"type": "MIPS_HI16", "symbol": "", "original": "_forwFrame"}, "596": {"type": "MIPS_LO16", "symbol": "", "original": "_forwFrame"}, "608": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "624": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_coding_type"}, "648": {"type": "MIPS_HI16", "symbol": "", "original": "_forwTop"}, "660": {"type": "MIPS_HI16", "symbol": "", "original": "_forwTop"}, "664": {"type": "MIPS_LO16", "symbol": "", "original": "_forwTop"}, "676": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "680": {"type": "MIPS_HI16", "symbol": "", "original": "_forwBot"}, "684": {"type": "MIPS_LO16", "symbol": "", "original": "_forwBot"}, "696": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "704": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "732": {"type": "MIPS_HI16", "symbol": "", "original": "_progressive_frame"}, "740": {"type": "MIPS_HI16", "symbol": "", "original": "_progressive_sequence"}, "752": {"type": "MIPS_LO16", "symbol": "", "original": "_curFrame"}, "760": {"type": "MIPS_HI16", "symbol": "", "original": "_progressive_frame"}, "768": {"type": "MIPS_LO16", "symbol": "", "original": "_curTop"}, "772": {"type": "MIPS_LO16", "symbol": "", "original": "_curBot"}, "776": {"type": "MIPS_HI16", "symbol": "", "original": "_progressive_frame"}, "780": {"type": "MIPS_HI16", "symbol": "", "original": "_progressive_sequence"}, "784": {"type": "MIPS_LO16", "symbol": "", "original": "_progressive_frame"}, "788": {"type": "MIPS_HI16", "symbol": "", "original": "_top_field_first"}, "792": {"type": "MIPS_HI16", "symbol": "", "original": "_repeat_first_field"}, "796": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_coding_type"}, "800": {"type": "MIPS_LO16", "symbol": "", "original": "_repeat_first_field"}, "804": {"type": "MIPS_HI16", "symbol": "", "original": "_headerPts"}, "808": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "812": {"type": "MIPS_HI16", "symbol": "", "original": "_headerDts"}, "816": {"type": "MIPS_LO16", "symbol": "", "original": "_progressive_sequence"}, "820": {"type": "MIPS_HI16", "symbol": "", "original": "_frame_center_horizontal_offset"}, "824": {"type": "MIPS_LO16", "symbol": "", "original": "_top_field_first"}, "828": {"type": "MIPS_HI16", "symbol": "", "original": "_display_vertical_size"}, "832": {"type": "MIPS_LO16", "symbol": "", "original": "_headerPts"}, "836": {"type": "MIPS_HI16", "symbol": "", "original": "_display_horizontal_size"}, "840": {"type": "MIPS_LO16", "symbol": "", "original": "_headerDts"}, "844": {"type": "MIPS_LO16", "symbol": "", "original": "_frame_center_horizontal_offset"}, "852": {"type": "MIPS_HI16", "symbol": "", "original": "_frame_center_vertical_offset"}, "860": {"type": "MIPS_LO16", "symbol": "", "original": "_frame_center_vertical_offset"}, "888": {"type": "MIPS_LO16", "symbol": "", "original": "_display_horizontal_size"}, "892": {"type": "MIPS_LO16", "symbol": "", "original": "_frame_center_horizontal_offset"}, "896": {"type": "MIPS_LO16", "symbol": "", "original": "_display_vertical_size"}, "940": {"type": "MIPS_LO16", "symbol": "", "original": "_frame_center_vertical_offset"}}}}, "3edf9c9ecc72168375544987adcfe44ce403cf0e": {"ba3fd224": {"type": "FUNCTION", "size": 716, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"0": {"type": "MIPS_GPREL16", "symbol": "_picture_structure"}, "8": {"type": "MIPS_GPREL16", "symbol": "_theSceMpeg"}, "16": {"type": "MIPS_GPREL16", "symbol": "_picture_coding_type"}, "68": {"type": "MIPS_GPREL16", "symbol": "_zFrame"}, "72": {"type": "MIPS_GPREL16", "symbol": "_zTop"}, "80": {"type": "MIPS_GPREL16", "symbol": "_zBot"}, "88": {"type": "MIPS_GPREL16", "symbol": "_curFrame"}, "92": {"type": "MIPS_GPREL16", "symbol": "_curTop"}, "100": {"type": "MIPS_GPREL16", "symbol": "_curBot"}, "108": {"type": "MIPS_GPREL16", "symbol": "_broken_link"}, "112": {"type": "MIPS_GPREL16", "symbol": "_closed_gop"}, "124": {"type": "MIPS_GPREL16", "symbol": "_closed_gop"}, "128": {"type": "MIPS_GPREL16", "symbol": "_broken_link"}, "136": {"type": "MIPS_GPREL16", "symbol": "_closed_gop"}, "148": {"type": "MIPS_GPREL16", "symbol": "_forwFrame"}, "152": {"type": "MIPS_GPREL16", "symbol": "_forwTop"}, "160": {"type": "MIPS_GPREL16", "symbol": "_forwBot"}, "180": {"type": "MIPS_GPREL16", "symbol": "_picture_structure"}, "188": {"type": "MIPS_GPREL16", "symbol": "_broken_link"}, "192": {"type": "MIPS_GPREL16", "symbol": "_forwFrame"}, "208": {"type": "MIPS_GPREL16", "symbol": "_closed_gop"}, "220": {"type": "MIPS_GPREL16", "symbol": "_backFrame"}, "232": {"type": "MIPS_GPREL16", "symbol": "_forwTop"}, "248": {"type": "MIPS_GPREL16", "symbol": "_closed_gop"}, "252": {"type": "MIPS_GPREL16", "symbol": "_forwBot"}, "264": {"type": "MIPS_GPREL16", "symbol": "_closed_gop"}, "276": {"type": "MIPS_GPREL16", "symbol": "_backTop"}, "292": {"type": "MIPS_GPREL16", "symbol": "_picture_structure"}, "296": {"type": "MIPS_GPREL16", "symbol": "_backBot"}, "320": {"type": "MIPS_GPREL16", "symbol": "_backFrame"}, "324": {"type": "MIPS_GPREL16", "symbol": "_forwFrame"}, "328": {"type": "MIPS_GPREL16", "symbol": "_backFrame"}, "332": {"type": "MIPS_GPREL16", "symbol": "_backFrame"}, "336": {"type": "MIPS_GPREL16", "symbol": "_forwTop"}, "340": {"type": "MIPS_GPREL16", "symbol": "_backTop"}, "344": {"type": "MIPS_GPREL16", "symbol": "_backTop"}, "348": {"type": "MIPS_GPREL16", "symbol": "_forwBot"}, "352": {"type": "MIPS_GPREL16", "symbol": "_backBot"}, "356": {"type": "MIPS_GPREL16", "symbol": "_forwFrame"}, "360": {"type": "MIPS_GPREL16", "symbol": "_forwTop"}, "364": {"type": "MIPS_GPREL16", "symbol": "_forwBot"}, "368": {"type": "MIPS_GPREL16", "symbol": "_backBot"}, "372": {"type": "MIPS_GPREL16", "symbol": "_backFrame"}, "376": {"type": "MIPS_GPREL16", "symbol": "_backTop"}, "380": {"type": "MIPS_GPREL16", "symbol": "_backBot"}, "384": {"type": "MIPS_GPREL16", "symbol": "_curFrame"}, "388": {"type": "MIPS_GPREL16", "symbol": "_curTop"}, "396": {"type": "MIPS_GPREL16", "symbol": "_curBot"}, "408": {"type": "MIPS_GPREL16", "symbol": "_forwFrame"}, "444": {"type": "MIPS_GPREL16", "symbol": "_forwTop"}, "456": {"type": "MIPS_GPREL16", "symbol": "_forwTop"}, "472": {"type": "MIPS_GPREL16", "symbol": "_forwBot"}, "520": {"type": "MIPS_GPREL16", "symbol": "_picture_coding_type"}, "528": {"type": "MIPS_HI16", "symbol": "", "original": "_frame_center_horizontal_offset"}, "532": {"type": "MIPS_GPREL16", "symbol": "_curFrame"}, "552": {"type": "MIPS_GPREL16", "symbol": "_curTop"}, "556": {"type": "MIPS_GPREL16", "symbol": "_curBot"}, "560": {"type": "MIPS_GPREL16", "symbol": "_picture_coding_type"}, "564": {"type": "MIPS_HI16", "symbol": "", "original": "_frame_center_horizontal_offset"}, "568": {"type": "MIPS_GPREL16", "symbol": "_picture_structure"}, "572": {"type": "MIPS_LO16", "symbol": "", "original": "_frame_center_horizontal_offset"}, "576": {"type": "MIPS_GPREL16", "symbol": "_progressive_sequence"}, "580": {"type": "MIPS_HI16", "symbol": "", "original": "_frame_center_vertical_offset"}, "584": {"type": "MIPS_GPREL16", "symbol": "_progressive_frame"}, "588": {"type": "MIPS_LO16", "symbol": "", "original": "_frame_center_vertical_offset"}, "592": {"type": "MIPS_GPREL16", "symbol": "_top_field_first"}, "600": {"type": "MIPS_GPREL16", "symbol": "_repeat_first_field"}, "632": {"type": "MIPS_GPREL16", "symbol": "_display_horizontal_size"}, "636": {"type": "MIPS_LO16", "symbol": "", "original": "_frame_center_horizontal_offset"}, "640": {"type": "MIPS_GPREL16", "symbol": "_display_vertical_size"}, "648": {"type": "MIPS_GPREL16", "symb)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ol": "_headerPts"}, "656": {"type": "MIPS_GPREL16", "symbol": "_headerDts"}, "680": {"type": "MIPS_LO16", "symbol": "", "original": "_frame_center_vertical_offset"}}}}, "e360c1128af0aaf3ca9b83b4baf1b382c99f3f7e": {"65aca3a1": {"type": "FUNCTION", "size": 952, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_structure"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": "_theSceMpeg"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_coding_type"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": "_theSceMpeg"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_coding_type"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": "_zFrame"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": "_zTop"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": "_zFrame"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": "_zBot"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": "_curFrame"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": "_curTop"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": "_zTop"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": "_zBot"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": "_curBot"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": "_curFrame"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": "_curTop"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": "_broken_link"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": "_curBot"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": "_closed_gop"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": "_closed_gop"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": "_broken_link"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": "_closed_gop"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": "_broken_link"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": "_closed_gop"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": "_closed_gop"}, "220": {"type": "MIPS_HI16", "symbol": "", "original": "_forwFrame"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": "_forwTop"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": "_forwFrame"}, "232": {"type": "MIPS_HI16", "symbol": "", "original": "_forwBot"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": "_forwTop"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": "_forwBot"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": "_broken_link"}, "276": {"type": "MIPS_HI16", "symbol": "", "original": "_forwFrame"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": "_forwFrame"}, "296": {"type": "MIPS_HI16", "symbol": "", "original": "_closed_gop"}, "300": {"type": "MIPS_LO16", "symbol": "", "original": "_closed_gop"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "312": {"type": "MIPS_HI16", "symbol": "", "original": "_backFrame"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": "_backFrame"}, "324": {"type": "MIPS_HI16", "symbol": "", "original": "_forwTop"}, "332": {"type": "MIPS_LO16", "symbol": "", "original": "_forwTop"}, "344": {"type": "MIPS_HI16", "symbol": "", "original": "_closed_gop"}, "348": {"type": "MIPS_HI16", "symbol": "", "original": "_forwBot"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_forwBot"}, "364": {"type": "MIPS_HI16", "symbol": "", "original": "_closed_gop"}, "368": {"type": "MIPS_LO16", "symbol": "", "original": "_closed_gop"}, "376": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "380": {"type": "MIPS_HI16", "symbol": "", "original": "_backTop"}, "388": {"type": "MIPS_LO16", "symbol": "", "original": "_backTop"}, "400": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "404": {"type": "MIPS_HI16", "symbol": "", "original": "_backBot"}, "408": {"type": "MIPS_LO16", "symbol": "", "original": "_backBot"}, "428": {"type": "MIPS_HI16", "symbol": "", "original": "_backFrame"}, "432": {"type": "MIPS_HI16", "symbol": "", "original": "_backTop"}, "440": {"type": "MIPS_HI16", "symbol": "", "original": "_backBot"}, "444": {"type": "MIPS_HI16", "symbol": "", "original": "_forwFrame"}, "448": {"type": "MIPS_LO16", "symbol": "", "original": "_backFrame"}, "452": {"type": "MIPS_LO16", "symbol": "", "original": "_forwFrame"}, "456": {"type": "MIPS_HI16", "symbol": "", "original": "_forwTop"}, "460": {"type": "MIPS_LO16", "symbol": "", "original": "_backTop"}, "464": {"type": "MIPS_HI16", "symbol": "", "original": "_forwBot"}, "468": {"type": "MIPS_LO16", "symbol": "", "original": "_backFrame"}, "472": {"type": "MIPS_LO16", "symbol": "", "original": "_forwTop"}, "476": {"type": "MIPS_LO16", "symbol": "", "original": "_backBot"}, "480": {"type": "MIPS_LO16", "symbol": "", "original": "_backTop"}, "484": {"type": "MIPS_LO16", "symbol": "", "original": "_forwBot"}, "488": {"type": "MIPS_LO16", "symbol": "", "original": "_forwFrame"}, "492": {"type": "MIPS_LO16", "symbol": "", "original": "_forwTop"}, "496": {"type": "MIPS_LO16", "symbol": "", "original": "_forwBot"}, "500": {"type": "MIPS_LO16", "symbol": "", "original": "_backBot"}, "504": {"type": "MIPS_LO16", "symbol": "", "original": "_backTop"}, "508": {"type": "MIPS_HI16", "symbol": "", "original": "_curFrame"}, "512": {"type": "MIPS_LO16", "symbol": "", "original": "_backBot"}, "516": {"type": "MIPS_HI16", "symbol": "", "original": "_curTop"}, "520": {"type": "MIPS_LO16", "symbol": "", "original": "_backFrame"}, "524": {"type": "MIPS_HI16", "symbol": "", "original": "_curBot"}, "536": {"type": "MIPS_LO16", "symbol": "", "original": "_curFrame"}, "544": {"type": "MIPS_LO16", "symbol": "", "original": "_curTop"}, "552": {"type": "MIPS_LO16", "symbol": "", "original": "_curBot"}, "564": {"type": "MIPS_HI16", "symbol": "", "original": "_forwFrame"}, "572": {"type": "MIPS_LO16", "symbol": "", "original": "_forwFrame"}, "584": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "620": {"type": "MIPS_HI16", "symbol": "", "original": "_forwTop"}, "632": {"type": "MIPS_HI16", "symbol": "", "original": "_forwTop"}, "636": {"type": "MIPS_LO16", "symbol": "", "original": "_forwTop"}, "648": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "652": {"type": "MIPS_HI16", "symbol": "", "original": "_forwBot"}, "656": {"type": "MIPS_LO16", "symbol": "", "original": "_forwBot"}, "668": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "676": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "704": {"type": "MIPS_HI16", "symbol": "", "original": "_progressive_frame"}, "712": {"type": "MIPS_HI16", "symbol": "", "original": "_progressive_sequence"}, "724": {"type": "MIPS_LO16", "symbol": "", "original": "_curFrame"}, "732": {"type": "MIPS_HI16", "symbol": "", "original": "_progressive_frame"}, "740": {"type": "MIPS_LO16", "symbol": "", "original": "_curTop"}, "744": {"type": "MIPS_LO16", "symbol": "", "original": "_curBot"}, "748": {"type": "MIPS_HI16", "symbol": "", "original": "_progressive_frame"}, "752": {"type": "MIPS_HI16", "symbol": "", "original": "_progressive_sequence"}, "756": {"type": "MIPS_LO16", "symbol": "", "original": "_progressive_frame"}, "760": {"type": "MIPS_HI16", "symbol": "", "o)PS2SDB", 8192}, + std::string_view{R"PS2SDB(riginal": "_top_field_first"}, "764": {"type": "MIPS_HI16", "symbol": "", "original": "_repeat_first_field"}, "768": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_coding_type"}, "772": {"type": "MIPS_LO16", "symbol": "", "original": "_repeat_first_field"}, "776": {"type": "MIPS_HI16", "symbol": "", "original": "_headerPts"}, "780": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "784": {"type": "MIPS_HI16", "symbol": "", "original": "_headerDts"}, "788": {"type": "MIPS_LO16", "symbol": "", "original": "_progressive_sequence"}, "792": {"type": "MIPS_HI16", "symbol": "", "original": "_frame_center_horizontal_offset"}, "796": {"type": "MIPS_LO16", "symbol": "", "original": "_top_field_first"}, "800": {"type": "MIPS_HI16", "symbol": "", "original": "_display_vertical_size"}, "804": {"type": "MIPS_LO16", "symbol": "", "original": "_headerPts"}, "808": {"type": "MIPS_HI16", "symbol": "", "original": "_display_horizontal_size"}, "812": {"type": "MIPS_LO16", "symbol": "", "original": "_headerDts"}, "816": {"type": "MIPS_LO16", "symbol": "", "original": "_frame_center_horizontal_offset"}, "824": {"type": "MIPS_HI16", "symbol": "", "original": "_frame_center_vertical_offset"}, "832": {"type": "MIPS_LO16", "symbol": "", "original": "_frame_center_vertical_offset"}, "860": {"type": "MIPS_LO16", "symbol": "", "original": "_display_horizontal_size"}, "864": {"type": "MIPS_LO16", "symbol": "", "original": "_frame_center_horizontal_offset"}, "868": {"type": "MIPS_LO16", "symbol": "", "original": "_display_vertical_size"}, "904": {"type": "MIPS_LO16", "symbol": "", "original": "_frame_center_vertical_offset"}}}}, "d70c2a878fe9a26f82cdd276913b3aaaa95b8b8f": {"00000000": {"type": "FUNCTION", "size": 692, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "11b61361d791526f66faea5d9092a3fb30d5bca7": {"e4cdebfe": {"type": "FUNCTION", "size": 972, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_structure"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": "_theSceMpeg"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_coding_type"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": "_theSceMpeg"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_coding_type"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": "_zFrame"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": "_zTop"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": "_zFrame"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": "_zBot"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": "_curFrame"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": "_curTop"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": "_zTop"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": "_zBot"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": "_curBot"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": "_curFrame"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": "_curTop"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": "_broken_link"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": "_curBot"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": "_closed_gop"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": "_closed_gop"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": "_broken_link"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": "_closed_gop"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": "_broken_link"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": "_closed_gop"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": "_closed_gop"}, "220": {"type": "MIPS_HI16", "symbol": "", "original": "_forwFrame"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": "_forwTop"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": "_forwFrame"}, "232": {"type": "MIPS_HI16", "symbol": "", "original": "_forwBot"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": "_forwTop"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": "_forwBot"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": "_broken_link"}, "276": {"type": "MIPS_HI16", "symbol": "", "original": "_forwFrame"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": "_forwFrame"}, "296": {"type": "MIPS_HI16", "symbol": "", "original": "_closed_gop"}, "300": {"type": "MIPS_LO16", "symbol": "", "original": "_closed_gop"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "312": {"type": "MIPS_HI16", "symbol": "", "original": "_backFrame"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": "_backFrame"}, "340": {"type": "MIPS_HI16", "symbol": "", "original": "_forwTop"}, "348": {"type": "MIPS_LO16", "symbol": "", "original": "_forwTop"}, "360": {"type": "MIPS_HI16", "symbol": "", "original": "_closed_gop"}, "364": {"type": "MIPS_HI16", "symbol": "", "original": "_forwBot"}, "368": {"type": "MIPS_LO16", "symbol": "", "original": "_forwBot"}, "380": {"type": "MIPS_HI16", "symbol": "", "original": "_closed_gop"}, "384": {"type": "MIPS_LO16", "symbol": "", "original": "_closed_gop"}, "392": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "396": {"type": "MIPS_HI16", "symbol": "", "original": "_backTop"}, "404": {"type": "MIPS_LO16", "symbol": "", "original": "_backTop"}, "416": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_backBot"}, "428": {"type": "MIPS_LO16", "symbol": "", "original": "_backBot"}, "448": {"type": "MIPS_HI16", "symbol": "", "original": "_backFrame"}, "452": {"type": "MIPS_HI16", "symbol": "", "original": "_backTop"}, "460": {"type": "MIPS_HI16", "symbol": "", "original": "_backBot"}, "464": {"type": "MIPS_HI16", "symbol": "", "original": "_forwFrame"}, "468": {"type": "MIPS_LO16", "symbol": "", "original": "_backFrame"}, "472": {"type": "MIPS_LO16", "symbol": "", "original": "_forwFrame"}, "476": {"type": "MIPS_HI16", "symbol": "", "original": "_forwTop"}, "480": {"type": "MIPS_LO16", "symbol": "", "original": "_backTop"}, "484": {"type": "MIPS_HI16", "symbol": "", "original": "_forwBot"}, "488": {"type": "MIPS_LO16", "symbol": "", "original": "_backFrame"}, "492": {"type": "MIPS_LO16", "symbol": "", "original": "_forwTop"}, "496": {"type": "MIPS_LO16", "symbol": "", "original": "_backBot"}, "500": {"type": "MIPS_LO16", "symbol": "", "original": "_backTop"}, "504": {"type": "MIPS_LO16", "symbol": "", "original": "_forwBot"}, "508": {"type": "MIPS_LO16", "symbol": "", "original": "_forwFrame"}, "512": {"type": "MIPS_LO16", "symbol": "", "original": "_forwTop"}, "516": {"type": "MIPS_LO16", "symbol": "", "original": "_forwBot"}, "520": {"type": "MIPS_LO16", "symbol": "", "original": "_backBot"}, "524": {"type": "MIPS_LO16", "symbol": "", "original": "_backTop"}, "528": {"type": "MIPS_HI16", "symbol": "", "original": "_curFrame"}, "532": {"type": "MIPS_LO16", "symbol": "", "original": "_backBot"}, "536": {"type": "MIPS_HI16", "symbol": "", "original": "_curTop"}, "540": {"type": "MIPS_LO16", "symbol": "", "original": "_backFrame"}, "544": {"type": "MIPS_HI16", "symbol": "", "original": "_curBo)PS2SDB", 8192}, + std::string_view{R"PS2SDB(t"}, "556": {"type": "MIPS_LO16", "symbol": "", "original": "_curFrame"}, "564": {"type": "MIPS_LO16", "symbol": "", "original": "_curTop"}, "572": {"type": "MIPS_LO16", "symbol": "", "original": "_curBot"}, "584": {"type": "MIPS_HI16", "symbol": "", "original": "_forwFrame"}, "592": {"type": "MIPS_LO16", "symbol": "", "original": "_forwFrame"}, "604": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "640": {"type": "MIPS_HI16", "symbol": "", "original": "_forwTop"}, "652": {"type": "MIPS_HI16", "symbol": "", "original": "_forwTop"}, "656": {"type": "MIPS_LO16", "symbol": "", "original": "_forwTop"}, "668": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "672": {"type": "MIPS_HI16", "symbol": "", "original": "_forwBot"}, "676": {"type": "MIPS_LO16", "symbol": "", "original": "_forwBot"}, "688": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "696": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "724": {"type": "MIPS_HI16", "symbol": "", "original": "_progressive_frame"}, "732": {"type": "MIPS_HI16", "symbol": "", "original": "_progressive_sequence"}, "744": {"type": "MIPS_LO16", "symbol": "", "original": "_curFrame"}, "752": {"type": "MIPS_HI16", "symbol": "", "original": "_progressive_frame"}, "760": {"type": "MIPS_LO16", "symbol": "", "original": "_curTop"}, "764": {"type": "MIPS_LO16", "symbol": "", "original": "_curBot"}, "768": {"type": "MIPS_HI16", "symbol": "", "original": "_progressive_frame"}, "772": {"type": "MIPS_HI16", "symbol": "", "original": "_progressive_sequence"}, "776": {"type": "MIPS_LO16", "symbol": "", "original": "_progressive_frame"}, "780": {"type": "MIPS_HI16", "symbol": "", "original": "_top_field_first"}, "784": {"type": "MIPS_HI16", "symbol": "", "original": "_repeat_first_field"}, "788": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_coding_type"}, "792": {"type": "MIPS_LO16", "symbol": "", "original": "_repeat_first_field"}, "796": {"type": "MIPS_HI16", "symbol": "", "original": "_headerPts"}, "800": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "804": {"type": "MIPS_HI16", "symbol": "", "original": "_headerDts"}, "808": {"type": "MIPS_LO16", "symbol": "", "original": "_progressive_sequence"}, "812": {"type": "MIPS_HI16", "symbol": "", "original": "_frame_center_horizontal_offset"}, "816": {"type": "MIPS_LO16", "symbol": "", "original": "_top_field_first"}, "820": {"type": "MIPS_HI16", "symbol": "", "original": "_display_vertical_size"}, "824": {"type": "MIPS_LO16", "symbol": "", "original": "_headerPts"}, "828": {"type": "MIPS_HI16", "symbol": "", "original": "_display_horizontal_size"}, "832": {"type": "MIPS_LO16", "symbol": "", "original": "_headerDts"}, "836": {"type": "MIPS_LO16", "symbol": "", "original": "_frame_center_horizontal_offset"}, "844": {"type": "MIPS_HI16", "symbol": "", "original": "_frame_center_vertical_offset"}, "852": {"type": "MIPS_LO16", "symbol": "", "original": "_frame_center_vertical_offset"}, "880": {"type": "MIPS_LO16", "symbol": "", "original": "_display_horizontal_size"}, "884": {"type": "MIPS_LO16", "symbol": "", "original": "_frame_center_horizontal_offset"}, "888": {"type": "MIPS_LO16", "symbol": "", "original": "_display_vertical_size"}, "924": {"type": "MIPS_LO16", "symbol": "", "original": "_frame_center_vertical_offset"}}}}}, "_isOutSizeOK": {"1cbbae25126eb30fa57c2bfd2dc6a8471da037a5": {"95d4a4a5": {"type": "FUNCTION", "size": 160, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"104": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_26", "symbol": "sprintf"}, "128": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}}}}, "add31486cfbd664dbb4b3295b747b57d3ce00d90": {"95d4a4a5": {"type": "FUNCTION", "size": 160, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"104": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_26", "symbol": "sprintf"}, "128": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}}}}, "40139b92869ea9f5d67c28459e45c73c1995a515": {"0c1a7ba0": {"type": "FUNCTION", "size": 156, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_theSceMpeg"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": "_theSceMpeg"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "120": {"type": "MIPS_26", "symbol": "sprintf"}, "128": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}}}}, "651c6008fe41a65e2fb0e6bbb78e3e2ccb86f294": {"0360e134": {"type": "FUNCTION", "size": 152, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_GPREL16", "symbol": "_theSceMpeg"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_26", "symbol": "sprintf"}, "124": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}}}}}, "_cpr8": {"31532551313150e8f5f24adc4b2b0c9ab858e99e": {"2b4f02a7": {"type": "FUNCTION", "size": 624, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"248": {"type": "MIPS_26", "symbol": "DIntr"}, "308": {"type": "MIPS_26", "symbol": "EIntr"}, "356": {"type": "MIPS_26", "symbol": "DIntr"}, "412": {"type": "MIPS_26", "symbol": "EIntr"}}}}, "fb2accaaba17b22c791c833900b11bc397d71c2e": {"d818356a": {"type": "FUNCTION", "size": 656, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"248": {"type": "MIPS_26", "symbol": "DIntr"}, "316": {"type": "MIPS_26", "symbol": "EIntr"}, "372": {"type": "MIPS_26", "symbol": "DIntr"}, "440": {"type": "MIPS_26", "symbol": "EIntr"}}}}, "fbd82f92c0bd0f27270b36828c6152fea993f4a8": {"d818356a": {"type": "FUNCTION", "size": 656, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"248": {"type": "MIPS_26", "symbol": "DIntr"}, "316": {"type": "MIPS_26", "symbol": "EIntr"}, "372": {"type": "MIPS_26", "symbol": "DIntr"}, "440": {"type": "MIPS_26", "symbol": "EIntr"}}}}, "b6988c2ec5e6406aa538b6f06c7d4db9843be575": {"cb0ee674": {"type": "FUNCTION", "size": 492, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_theSceMpeg"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "_theSceMpeg"}, "16": {"type": "MIPS_HI16", "symbol": "", "ori)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ginal": "_picture_structure"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}}}}, "63630383480246e6d8c0e9f3045bec70f5cef5bb": {"7bdcbd56": {"type": "FUNCTION", "size": 532, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_GPREL16", "symbol": "_theSceMpeg"}, "72": {"type": "MIPS_GPREL16", "symbol": "_picture_structure"}}}}, "796bbe632db5521c4c7b72b95e6731d76ec2dad4": {"e30217f4": {"type": "FUNCTION", "size": 540, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_theSceMpeg"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": "_theSceMpeg"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_structure"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}}}}, "6fffa54b68fc1a06847990a36df2df35f7249103": {"d818356a": {"type": "FUNCTION", "size": 656, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"248": {"type": "MIPS_26", "symbol": "DIntr"}, "316": {"type": "MIPS_26", "symbol": "EIntr"}, "372": {"type": "MIPS_26", "symbol": "DIntr"}, "440": {"type": "MIPS_26", "symbol": "EIntr"}}}}, "50208fd60fa09b23ddc92302b64b561784ae8ff7": {"e30217f4": {"type": "FUNCTION", "size": 544, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_theSceMpeg"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": "_theSceMpeg"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_structure"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}}}}}, "_markOutput": {"0463a4094a77db2da58055a948e5ef4ee7bcd208": {"00000000": {"type": "FUNCTION", "size": 40, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "7fa39e084521e5c6d7d89d7151dbade13f218759": {"00000000": {"type": "FUNCTION", "size": 40, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "2f90bbbe04ab18a2f830c444fbeb7ebb9e61e83c": {"14b92908": {"type": "FUNCTION", "size": 56, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_theSceMpeg"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "_theSceMpeg"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": "_totalFrames"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": "_totalFrames"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": "_isOutputPicture"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": "_isOutputPicture"}}}}, "f159752015b476d0314e36969096666af64a706e": {"7c426b66": {"type": "FUNCTION", "size": 44, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"0": {"type": "MIPS_GPREL16", "symbol": "_theSceMpeg"}, "20": {"type": "MIPS_GPREL16", "symbol": "_totalFrames"}, "40": {"type": "MIPS_GPREL16", "symbol": "_isOutputPicture"}}}}}, "_getPtsDtsFlags": {"b045b26a2eb3fcd400ab1a882ca560cd5e2da95f": {"6a8232b2": {"type": "FUNCTION", "size": 396, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"120": {"type": "MIPS_26", "symbol": "__muldi3"}, "136": {"type": "MIPS_26", "symbol": "__muldi3"}, "156": {"type": "MIPS_26", "symbol": "__muldi3"}, "192": {"type": "MIPS_26", "symbol": "__muldi3"}}}}, "6eeb7d09060c7ca443f5840353dd5ee6a585cb55": {"c3e88fc0": {"type": "FUNCTION", "size": 372, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"144": {"type": "MIPS_26", "symbol": "__muldi3"}}}}, "2c023e3d889dd7a59b6824d64acb8b2bc6350eb3": {"ea8fc88a": {"type": "FUNCTION", "size": 404, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_theSceMpeg"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": "_theSceMpeg"}, "128": {"type": "MIPS_26", "symbol": "__muldi3"}, "144": {"type": "MIPS_26", "symbol": "__muldi3"}, "164": {"type": "MIPS_26", "symbol": "__muldi3"}, "200": {"type": "MIPS_26", "symbol": "__muldi3"}}}}, "593c4edbeb8e14b94b4b4f223283aea3dfaa4c66": {"a3c71a98": {"type": "FUNCTION", "size": 400, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_GPREL16", "symbol": "_theSceMpeg"}, "124": {"type": "MIPS_26", "symbol": "__muldi3"}, "140": {"type": "MIPS_26", "symbol": "__muldi3"}, "160": {"type": "MIPS_26", "symbol": "__muldi3"}, "196": {"type": "MIPS_26", "symbol": "__muldi3"}}}}, "fba2733a51cd5264ec119302deb905d5bd1164bd": {"3a0663d1": {"type": "FUNCTION", "size": 404, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_theSceMpeg"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": "_theSceMpeg"}, "128": {"type": "MIPS_26", "symbol": "__muldi3"}, "144": {"type": "MIPS_26", "symbol": "__muldi3"}, "164": {"type": "MIPS_26", "symbol": "__muldi3"}, "200": {"type": "MIPS_26", "symbol": "__muldi3"}}}}}, "_dispRefImage": {"cad74ed1f495ade20975a3ea9adaec45cc6e1db5": {"f156161d": {"type": "FUNCTION", "size": 272, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "_getPtsDtsFlags", "scope": "LIBRARY", "original": ".text"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_26", "symbol": "_isOutSizeOK", "scope": "LIBRARY", "original": ".text"}, "204": {"type": "MIPS_26", "symbol": "_csc_storeRefImage", "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "_cpr8", "scope": "LIBRARY", "original": ".text"}, "244": {"type": "MIPS_26", "symbol": "_markOutput", "scope": "LIBRARY", "original": ".text"}}}}, "137f94ea0995fa503ea53d43869295fc4d7265a5": {"f156161d": {"type": "FUNCTION", "size": 272, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "_getPtsDtsFlags", "scope": "LIBRARY", "original": ".text"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_LO16", "symbol": "",)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "original": ".data"}, "164": {"type": "MIPS_26", "symbol": "_isOutSizeOK", "scope": "LIBRARY", "original": ".text"}, "204": {"type": "MIPS_26", "symbol": "_csc_storeRefImage", "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "_cpr8", "scope": "LIBRARY", "original": ".text"}, "244": {"type": "MIPS_26", "symbol": "_markOutput", "scope": "LIBRARY", "original": ".text"}}}}, "10836d7034414510a74275dbc7fe530d446f2c13": {"fef73b9e": {"type": "FUNCTION", "size": 280, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": "_theSceMpeg"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "_theSceMpeg"}, "44": {"type": "MIPS_26", "symbol": "_getPtsDtsFlags", "scope": "LIBRARY", "original": ".text"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": "_theSceMpeg"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_26", "symbol": "_isOutSizeOK", "scope": "LIBRARY", "original": ".text"}, "208": {"type": "MIPS_26", "symbol": "_csc_storeRefImage", "scope": "LIBRARY"}, "224": {"type": "MIPS_26", "symbol": "_cpr8", "scope": "LIBRARY", "original": ".text"}, "248": {"type": "MIPS_26", "symbol": "_markOutput", "scope": "LIBRARY", "original": ".text"}}}}, "695f12ba48d98bf43f52db25b83b276800cd7711": {"08c61514": {"type": "FUNCTION", "size": 264, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_GPREL16", "symbol": "_theSceMpeg"}, "36": {"type": "MIPS_26", "symbol": "_getPtsDtsFlags", "scope": "LIBRARY", "original": ".text"}, "44": {"type": "MIPS_GPREL16", "symbol": "_theSceMpeg"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_26", "symbol": "_isOutSizeOK", "scope": "LIBRARY", "original": ".text"}, "200": {"type": "MIPS_26", "symbol": "_csc_storeRefImage", "scope": "LIBRARY"}, "216": {"type": "MIPS_26", "symbol": "_cpr8", "scope": "LIBRARY", "original": ".text"}, "236": {"type": "MIPS_26", "symbol": "_markOutput", "scope": "LIBRARY", "original": ".text"}}}}, "20e9bb99534d20fc632998b86a8bcdb7b64cdb2d": {"b7230562": {"type": "FUNCTION", "size": 704, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"144": {"type": "MIPS_26", "symbol": "__muldi3"}, "264": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "524": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "536": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "544": {"type": "MIPS_26", "symbol": "sceSnprintf"}, "556": {"type": "MIPS_26", "symbol": "_sceMpegError", "scope": "LIBRARY"}, "600": {"type": "MIPS_26", "symbol": "_sceMpegCscStoreRefImage", "scope": "LIBRARY"}, "616": {"type": "MIPS_26", "symbol": "_cpr8", "scope": "LIBRARY", "original": ".text"}}}}}, "_dispRefImageField": {"a59fed6fd20d98f3c9451c6adcfd487c143f203c": {"9d3b4cdd": {"type": "FUNCTION", "size": 440, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"112": {"type": "MIPS_26", "symbol": "_getPtsDtsFlags", "scope": "LIBRARY", "original": ".text"}, "152": {"type": "MIPS_26", "symbol": "_getPtsDtsFlags", "scope": "LIBRARY", "original": ".text"}, "256": {"type": "MIPS_26", "symbol": "_isOutSizeOK", "scope": "LIBRARY", "original": ".text"}, "320": {"type": "MIPS_26", "symbol": "_csc_storeRefImage", "scope": "LIBRARY"}, "336": {"type": "MIPS_26", "symbol": "_cpr8", "scope": "LIBRARY", "original": ".text"}, "392": {"type": "MIPS_26", "symbol": "_markOutput", "scope": "LIBRARY", "original": ".text"}}}}, "1d1dd6f9e7fde14d556ba54fdaba2bc97c997af7": {"9d3b4cdd": {"type": "FUNCTION", "size": 440, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"112": {"type": "MIPS_26", "symbol": "_getPtsDtsFlags", "scope": "LIBRARY", "original": ".text"}, "152": {"type": "MIPS_26", "symbol": "_getPtsDtsFlags", "scope": "LIBRARY", "original": ".text"}, "256": {"type": "MIPS_26", "symbol": "_isOutSizeOK", "scope": "LIBRARY", "original": ".text"}, "320": {"type": "MIPS_26", "symbol": "_csc_storeRefImage", "scope": "LIBRARY"}, "336": {"type": "MIPS_26", "symbol": "_cpr8", "scope": "LIBRARY", "original": ".text"}, "392": {"type": "MIPS_26", "symbol": "_markOutput", "scope": "LIBRARY", "original": ".text"}}}}, "1e14e52cb53691c42ec69ad5ff2930aa560191f5": {"86cf6885": {"type": "FUNCTION", "size": 448, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_structure"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": "_theSceMpeg"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": "_theSceMpeg"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": "_theSceMpeg"}, "124": {"type": "MIPS_26", "symbol": "_getPtsDtsFlags", "scope": "LIBRARY", "original": ".text"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": "_theSceMpeg"}, "160": {"type": "MIPS_26", "symbol": "_getPtsDtsFlags", "scope": "LIBRARY", "original": ".text"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": "_theSceMpeg"}, "260": {"type": "MIPS_26", "symbol": "_isOutSizeOK", "scope": "LIBRARY", "original": ".text"}, "324": {"type": "MIPS_26", "symbol": "_csc_storeRefImage", "scope": "LIBRARY"}, "340": {"type": "MIPS_26", "symbol": "_cpr8", "scope": "LIBRARY", "original": ".text"}, "396": {"type": "MIPS_26", "symbol": "_markOutput", "scope": "LIBRARY", "original": ".text"}}}}, "5747159fd3a58288fb3d0cf2b45771af8389cd01": {"741f7063": {"type": "FUNCTION", "size": 428, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_GPREL16", "symbol": "_theSceMpeg"}, "56": {"type": "MIPS_GPREL16", "symbol": "_picture_structure"}, "108": {"type": "MIPS_26", "symbol": "_getPtsDtsFlags", "scope": "LIBRARY", "original": ".text"}, "120": {"type": "MIPS_GPREL16", "symbol": "_theSceMpeg"}, "148": {"type": "MIPS_26", "symbol": "_getPtsDtsFlags", "scope": "LIBRARY", "original": ".text"}, "156": {"type": "MIPS_GPREL16", "symbol": "_theSceMpeg"}, "248": {"type": "MIPS_26", "symbol": "_isOutSizeOK", "scope": "LIBRARY", "original": ".text"}, "312": {"type": "MIPS_26", "symbol": "_csc_storeRefImage", "scope": "LIBRARY"}, "328": {"type": "MIPS_26", "symbol": "_cpr8", "scope": "LIBRARY", "original": ".text"}, "380": {"type": "MIPS_26", "symbol": "_markOutput", "scope": "LIBRARY", "original": ".text"}}}}, "0cb5c9a84284f9611541d7a04fbae639a967dec5": {"a3933bea": {"type": "FUNCTION", "size": 452, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_theSceMpeg"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_structure"}, "40": {"type": "MIPS_LO16")PS2SDB", 8192}, + std::string_view{R"PS2SDB(, "symbol": "", "original": "_theSceMpeg"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": "_theSceMpeg"}, "128": {"type": "MIPS_26", "symbol": "_getPtsDtsFlags", "scope": "LIBRARY", "original": ".text"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "_theSceMpeg"}, "164": {"type": "MIPS_26", "symbol": "_getPtsDtsFlags", "scope": "LIBRARY", "original": ".text"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": "_theSceMpeg"}, "264": {"type": "MIPS_26", "symbol": "_isOutSizeOK", "scope": "LIBRARY", "original": ".text"}, "328": {"type": "MIPS_26", "symbol": "_csc_storeRefImage", "scope": "LIBRARY"}, "344": {"type": "MIPS_26", "symbol": "_cpr8", "scope": "LIBRARY", "original": ".text"}, "400": {"type": "MIPS_26", "symbol": "_markOutput", "scope": "LIBRARY", "original": ".text"}}}}, "4fd503b7bd7c824b11688de68645ca166127980a": {"b272d903": {"type": "FUNCTION", "size": 1056, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"204": {"type": "MIPS_26", "symbol": "__muldi3"}, "836": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "848": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "856": {"type": "MIPS_26", "symbol": "sceSnprintf"}, "868": {"type": "MIPS_26", "symbol": "_sceMpegError", "scope": "LIBRARY"}, "936": {"type": "MIPS_26", "symbol": "_sceMpegCscStoreRefImage", "scope": "LIBRARY"}, "952": {"type": "MIPS_26", "symbol": "_cpr8", "scope": "LIBRARY", "original": ".text"}}}}}, "dmaRefImage": {"0ce9c7ea5e1eb890ad2583754b8bc96ca6b15308": {"b6f15a06": {"type": "FUNCTION", "size": 340, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.4.2", "2.4.3"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "228": {"type": "MIPS_26", "symbol": "DIntr"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "332": {"type": "MIPS_26", "symbol": "EIntr"}}}}, "210ff7d6f63a47664e6204052dc2d79cd9d0cbfd": {"121d0c0a": {"type": "FUNCTION", "size": 364, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "228": {"type": "MIPS_26", "symbol": "DIntr"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "336": {"type": "MIPS_26", "symbol": "EIntr"}}}}, "9c60ff38a1f42bdedaa58430dcdd736bb812cd4c": {"121d0c0a": {"type": "FUNCTION", "size": 364, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "228": {"type": "MIPS_26", "symbol": "DIntr"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "336": {"type": "MIPS_26", "symbol": "EIntr"}}}}, "151bdcaa1eee1a3c1ed0579cc8c24f5680a5f176": {"0135ef55": {"type": "FUNCTION", "size": 380, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "244": {"type": "MIPS_26", "symbol": "DIntr"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "352": {"type": "MIPS_26", "symbol": "EIntr"}}}}}, "receiveDataFromIPU": {"29dafd56e603afd523e966abd87b66d437ec1ac9": {"76d77bd6": {"type": "FUNCTION", "size": 112, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "DIntr"}, "104": {"type": "MIPS_26", "symbol": "EIntr"}}}}, "660be03f77ca512d20cd7afda094bf90b76d96a1": {"c60e0854": {"type": "FUNCTION", "size": 132, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "DIntr"}, "108": {"type": "MIPS_26", "symbol": "EIntr"}}}}, "89bbe7fdf5c81efd6b68c29004e5f2b6013d93d8": {"51e2d871": {"type": "FUNCTION", "size": 160, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "DIntr"}, "136": {"type": "MIPS_26", "symbol": "EIntr"}}}}}, "_doCSC": {"36760ae83befed6add43a2dcf4e239b58985eda9": {"82d23dca": {"type": "FUNCTION", "size": 280, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"76": {"type": "MIPS_26", "symbol": "DIntr"}, "132": {"type": "MIPS_26", "symbol": "EIntr"}, "148": {"type": "MIPS_26", "symbol": "_sendIpuCommand", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}}}}, "7ad98807adf56783fccd9a0eac728b135ecdadca": {"63938a36": {"type": "FUNCTION", "size": 296, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"76": {"type": "MIPS_26", "symbol": "DIntr"}, "144": {"type": "MIPS_26", "symbol": "EIntr"}, "160": {"type": "MIPS_26", "symbol": "_sendIpuCommand", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}}}}, "cdaf309a33eb4f5f9481bef63f81b47f717fabb8": {"63938a36": {"type": "FUNCTION", "size": 296, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"76": {"type": "MIPS_26", "symbol": "DIntr"}, "144": {"type": "MIPS_26", "symbol": "EIntr"}, "160": {"type": "MIPS_26", "symbol": "_sendIpuCommand", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}}}}, "66a003483183849e538da3a0d16aa3c1a4d1db47": {"e583efae": {"type": "FUNCTION", "size": 232, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"108": {"type": "MIPS_26", "symbol": "_sendIpuCommand", "scope": "LIBRARY"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": "_theSceMpeg"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": "_theSceMpeg"}, "132": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}}}}, "dbbca190fbacc6687b9e5815dc0e994f0a750d32": {"b23a5929": {"type": "FUNCTION", "size": 220, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"104": {"type": "MIPS_26", "symbol": "_sendIpuCommand", "scope": "LIBRARY"}, "116": {"type": "MIPS_GPREL16", "symbol": "_theSceMpeg"}, "124": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}}}}, "241b41afd96a1e3a34edbe6fcd558547d5a4e71f": {"2e302a53": {"type": "FUNCTION", "size": 220, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.6.3", "1.6.5)PS2SDB", 8192}, + std::string_view{R"PS2SDB("], "compiler_versions": ["2.3.1.01"], "relocations": {"104": {"type": "MIPS_26", "symbol": "_sendIpuCommand", "scope": "LIBRARY"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": "_theSceMpeg"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": "_theSceMpeg"}, "128": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}}}}}, "_ch3dmaCSC": {"3f927977f3c236d739d61870f68f68f61d9dd5de": {"4c9a9064": {"type": "FUNCTION", "size": 372, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"124": {"type": "MIPS_26", "symbol": "DIntr"}, "168": {"type": "MIPS_26", "symbol": "EIntr"}, "264": {"type": "MIPS_26", "symbol": "DIntr"}, "312": {"type": "MIPS_26", "symbol": "EIntr"}}}}, "12028956420ce3153b7eecb454de0da069b9c388": {"00000000": {"type": "FUNCTION", "size": 320, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "55ac26f956ee770a67e96d11c1d6d95ca6ed64b5": {"00000000": {"type": "FUNCTION", "size": 328, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "4659c0d6e4fa036e7441c9cfd746c1ab13bfd158": {"90688910": {"type": "FUNCTION", "size": 328, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "220": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "228": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "45292f1a9ced94ea3e9270819dd29c8bd8e9b963": {"09314405": {"type": "FUNCTION", "size": 160, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "9035ba64c95c752cddb8086bc690f9b8b6aa8949": {"3ce70451": {"type": "FUNCTION", "size": 184, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"60": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "c63306f0a7ce9f61211d421abddbf90e02d86744": {"fccf7815": {"type": "FUNCTION", "size": 176, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"60": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "_doCSC2": {"6fa0c9b223393247164b725129240ff91966e809": {"b91d9d5b": {"type": "FUNCTION", "size": 432, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"140": {"type": "MIPS_HI16", "symbol": "_ch3dmaCSC", "original": ".text"}, "148": {"type": "MIPS_LO16", "symbol": "_ch3dmaCSC", "original": ".text"}, "152": {"type": "MIPS_26", "symbol": "AddDmacHandler2"}, "180": {"type": "MIPS_26", "symbol": "EnableDmac"}, "188": {"type": "MIPS_26", "symbol": "DIntr"}, "248": {"type": "MIPS_26", "symbol": "EIntr"}, "288": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}, "340": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "344": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "348": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "388": {"type": "MIPS_26", "symbol": "DisableDmac"}, "400": {"type": "MIPS_26", "symbol": "RemoveDmacHandler"}}}}, "52e727dc83bfb797457e550f88ea75cc1298505b": {"1f48d0fc": {"type": "FUNCTION", "size": 448, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"140": {"type": "MIPS_HI16", "symbol": "_ch3dmaCSC", "original": ".text"}, "148": {"type": "MIPS_LO16", "symbol": "_ch3dmaCSC", "original": ".text"}, "152": {"type": "MIPS_26", "symbol": "AddDmacHandler2"}, "180": {"type": "MIPS_26", "symbol": "EnableDmac"}, "188": {"type": "MIPS_26", "symbol": "DIntr"}, "260": {"type": "MIPS_26", "symbol": "EIntr"}, "300": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}, "356": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "360": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "364": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "404": {"type": "MIPS_26", "symbol": "DisableDmac"}, "416": {"type": "MIPS_26", "symbol": "RemoveDmacHandler"}}}}, "c2b139607cc75b10f31cade38378ac6d3484a244": {"1f48d0fc": {"type": "FUNCTION", "size": 448, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"140": {"type": "MIPS_HI16", "symbol": "_ch3dmaCSC", "original": ".text"}, "148": {"type": "MIPS_LO16", "symbol": "_ch3dmaCSC", "original": ".text"}, "152": {"type": "MIPS_26", "symbol": "AddDmacHandler2"}, "180": {"type": "MIPS_26", "symbol": "EnableDmac"}, "188": {"type": "MIPS_26", "symbol": "DIntr"}, "260": {"type": "MIPS_26", "symbol": "EIntr"}, "300": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}, "356": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "360": {"type": "MIPS_26", "symbol": "_Error", "scop)PS2SDB", 8192}, + std::string_view{R"PS2SDB(e": "LIBRARY"}, "364": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "404": {"type": "MIPS_26", "symbol": "DisableDmac"}, "416": {"type": "MIPS_26", "symbol": "RemoveDmacHandler"}}}}, "0d534edf86d37725d59899141f472294e8267807": {"8680b7ea": {"type": "FUNCTION", "size": 448, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_HI16", "symbol": "_ch3dmaCSC", "original": ".text"}, "156": {"type": "MIPS_LO16", "symbol": "_ch3dmaCSC", "original": ".text"}, "160": {"type": "MIPS_26", "symbol": "AddDmacHandler"}, "188": {"type": "MIPS_26", "symbol": "EnableDmac"}, "280": {"type": "MIPS_HI16", "symbol": "", "original": "_theSceMpeg"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": "_theSceMpeg"}, "288": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}, "296": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "300": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "312": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "352": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "356": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "360": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "404": {"type": "MIPS_26", "symbol": "DisableDmac"}, "416": {"type": "MIPS_26", "symbol": "RemoveDmacHandler"}}}}, "0ac1cb230e9394c6030d9719f298890d985551ee": {"d44c7f51": {"type": "FUNCTION", "size": 404, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "128": {"type": "MIPS_HI16", "symbol": "_ch3dmaCSC", "original": ".text"}, "136": {"type": "MIPS_LO16", "symbol": "_ch3dmaCSC", "original": ".text"}, "140": {"type": "MIPS_26", "symbol": "AddDmacHandler"}, "168": {"type": "MIPS_26", "symbol": "EnableDmac"}, "256": {"type": "MIPS_GPREL16", "symbol": "_theSceMpeg"}, "260": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}, "268": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "296": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "308": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "312": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "356": {"type": "MIPS_26", "symbol": "DisableDmac"}, "368": {"type": "MIPS_26", "symbol": "RemoveDmacHandler"}}}}, "3499ca1cedaec93edc9d8642d66df66993568026": {"09d3e0d1": {"type": "FUNCTION", "size": 432, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_HI16", "symbol": "_ch3dmaCSC", "original": ".text"}, "148": {"type": "MIPS_LO16", "symbol": "_ch3dmaCSC", "original": ".text"}, "152": {"type": "MIPS_26", "symbol": "AddDmacHandler"}, "180": {"type": "MIPS_26", "symbol": "EnableDmac"}, "268": {"type": "MIPS_HI16", "symbol": "", "original": "_theSceMpeg"}, "276": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": "_theSceMpeg"}, "284": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "328": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "332": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "336": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "380": {"type": "MIPS_26", "symbol": "DisableDmac"}, "392": {"type": "MIPS_26", "symbol": "RemoveDmacHandler"}}}}, "ac9f1034c0a7f900d54b7583e41942a456f2d706": {"68aae291": {"type": "FUNCTION", "size": 424, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_HI16", "symbol": "_ch3dmaCSC", "original": ".text"}, "144": {"type": "MIPS_LO16", "symbol": "_ch3dmaCSC", "original": ".text"}, "148": {"type": "MIPS_26", "symbol": "AddDmacHandler"}, "176": {"type": "MIPS_26", "symbol": "EnableDmac"}, "264": {"type": "MIPS_HI16", "symbol": "", "original": "_theSceMpeg"}, "272": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": "_theSceMpeg"}, "280": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "312": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "324": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "328": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "332": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "372": {"type": "MIPS_26", "symbol": "DisableDmac"}, "384": {"type": "MIPS_26", "symbol": "RemoveDmacHandler"}}}}, "bbd6c1e9f943ba5a1fe12984e10bfdb5ce3d0787": {"db1c084a": {"type": "FUNCTION", "size": 448, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"140": {"type": "MIPS_HI16", "symbol": "_ch3dmaCSC", "original": ".text"}, "148": {"type": "MIPS_LO16", "symbol": "_ch3dmaCSC", "original": ".text"}, "152": {"type": "MIPS_26", "symbol": "AddDmacHandler2"}, "180": {"type": "MIPS_26", "symbol": "EnableDmac"}, "188": {"type": "MIPS_26", "symbol": "DIntr"}, "260": {"type": "MIPS_26", "symbol": "EIntr"}, "300": {"type": "MIPS_26", "symbol": "_sceMpegDispatchMpegCallback", "scope": "LIBRARY"}, "356": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "360": {"type": "MIPS_26", "symbol": "_sceMpegError", "scope": "LIBRARY"}, "364": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "404": {"type": "MIPS_26", "symbol": "DisableDmac"}, "416": {"type": "MIPS_26", "symbol": "RemoveDmacHandler")PS2SDB", 8192}, + std::string_view{R"PS2SDB(}}}}, "9da54c4a603af1317df76055af796dc783fa7fbb": {"b2e08cb1": {"type": "FUNCTION", "size": 440, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.6.1"], "compiler_versions": ["2.3.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_HI16", "symbol": "_ch3dmaCSC", "original": ".text"}, "148": {"type": "MIPS_LO16", "symbol": "_ch3dmaCSC", "original": ".text"}, "152": {"type": "MIPS_26", "symbol": "AddDmacHandler"}, "184": {"type": "MIPS_26", "symbol": "EnableDmac"}, "272": {"type": "MIPS_HI16", "symbol": "", "original": "_theSceMpeg"}, "280": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": "_theSceMpeg"}, "288": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "324": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "336": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "340": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "344": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "388": {"type": "MIPS_26", "symbol": "DisableDmac"}, "400": {"type": "MIPS_26", "symbol": "RemoveDmacHandler"}}}}}, "_ch4dma": {"bddc81c9e8badf2f5310f2992f4b5f69e402c26e": {"d57aa63b": {"type": "FUNCTION", "size": 260, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "DIntr"}, "116": {"type": "MIPS_26", "symbol": "EIntr"}, "172": {"type": "MIPS_26", "symbol": "DIntr"}, "224": {"type": "MIPS_26", "symbol": "EIntr"}}}}, "4682a016915285ae59f11b690cc2e975290739c3": {"00000000": {"type": "FUNCTION", "size": 204, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "bda15121a184731c067a4ec7806c904af70d5687": {"00000000": {"type": "FUNCTION", "size": 212, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "29c01b1d3c717ffaf48ef3928cf5a71a963e69a5": {"033bb2a7": {"type": "FUNCTION", "size": 212, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "_csc_storeRefImage": {"4170b66f186dc799e8548111fa98afef2f67d937": {"3f56c87f": {"type": "FUNCTION", "size": 628, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"64": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}, "152": {"type": "MIPS_26", "symbol": "_sendIpuCommand", "scope": "LIBRARY"}, "244": {"type": "MIPS_HI16", "symbol": "_ch4dma", "original": ".text"}, "252": {"type": "MIPS_LO16", "symbol": "_ch4dma", "original": ".text"}, "260": {"type": "MIPS_26", "symbol": "AddDmacHandler2"}, "288": {"type": "MIPS_26", "symbol": "EnableDmac"}, "296": {"type": "MIPS_26", "symbol": "DIntr"}, "344": {"type": "MIPS_26", "symbol": "EIntr"}, "400": {"type": "MIPS_26", "symbol": "_doCSC", "scope": "LIBRARY", "original": ".text"}, "424": {"type": "MIPS_26", "symbol": "_doCSC2", "scope": "LIBRARY", "original": ".text"}, "432": {"type": "MIPS_26", "symbol": "DisableDmac"}, "444": {"type": "MIPS_26", "symbol": "RemoveDmacHandler"}, "460": {"type": "MIPS_26", "symbol": "DIntr"}, "516": {"type": "MIPS_26", "symbol": "EIntr"}, "540": {"type": "MIPS_26", "symbol": "_doCSC", "scope": "LIBRARY", "original": ".text"}, "564": {"type": "MIPS_26", "symbol": "_doCSC2", "scope": "LIBRARY", "original": ".text"}, "584": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}}}}, "cfce55132d8bb27691db513f459b5711088ee440": {"c16a3c6a": {"type": "FUNCTION", "size": 648, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}, "152": {"type": "MIPS_26", "symbol": "_sendIpuCommand", "scope": "LIBRARY"}, "244": {"type": "MIPS_HI16", "symbol": "_ch4dma", "original": ".text"}, "252": {"type": "MIPS_LO16", "symbol": "_ch4dma", "original": ".text"}, "260": {"type": "MIPS_26", "symbol": "AddDmacHandler2"}, "288": {"type": "MIPS_26", "symbol": "EnableDmac"}, "296": {"type": "MIPS_26", "symbol": "DIntr"}, "356": {"type": "MIPS_26", "symbol": "EIntr"}, "412": {"type": "MIPS_26", "symbol": "_doCSC", "scope": "LIBRARY", "original": ".text"}, "436": {"type": "MIPS_26", "symbol": "_doCSC2", "scope": "LIBRARY", "original": ".text"}, "444": {"type": "MIPS_26", "symbol": "DisableDmac"}, "456": {"type": "MIPS_26", "symbol": "RemoveDmacHandler"}, "472": {"type": "MIPS_26", "symbol": "DIntr"}, "536": {"type": "MIPS_26", "symbol": "EIntr"}, "560": {"type": "MIPS_26", "symbol": "_doCSC", "scope": "LIBRARY", "original": ".text"}, "584": {"type": "MIPS_26", "symbol": "_doCSC2", "scope": "LIBRARY", "original": ".text"}, "604": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}}}}, "e9683f5694f717317d5cc299cd0b395cec8b86c4": {"c16a3c6a": {"type": "FUNCTION", "size": 648, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}, "152": {"type": "MIPS_26", "symbol": "_sendIpuCommand", "scope": "LIBRARY"}, "244": {"type": "MIPS_HI16", "symbol": "_ch4dma", "original": ".text"}, "252": {"type": "MIPS_LO16", "symbol": "_ch4dma", "original": ".text"}, "260": {"type": "MIPS_26", "symbol": "AddDmacHandler2"}, "288": {"type": "MIPS_26", "symbol": "EnableDmac"}, "296": {"type": "MIPS_26", "symbol": "DIntr"}, "356": {"type": "MIPS_26", "symbol": "EIntr"}, "412": {"type": "MIPS_26", "symbol": "_doCSC", "scope": "LIBRARY", "original": ".text"}, "436": {"type": "MIPS_26", "symbol": "_doCSC2", "scope": "LIBRARY", "original": ".text"}, "444": {"type": "MIPS_26", "symbol": "DisableDmac"}, "456": {"type": "MIPS_26", "symbol": "RemoveDmacHandler"}, "472": {"type": "MIPS_26", "symbol": "DIntr"}, "536": {"type": "MIPS_26", "symbol": "EIntr"}, "560": {"type": "MIPS_26", "symbol": "_doCSC", "scope": "LIBRARY", "original": ".text"}, "584": {"type": "MIPS_26", "symbol": "_doCSC2", "scope": "LIBRARY", "original": ".text"}, "604": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "s)PS2SDB", 8192}, + std::string_view{R"PS2SDB(cope": "LIBRARY"}}}}, "b805d14f50dca158bfaf8c2da9e7fca85e5d306e": {"5842f1c0": {"type": "FUNCTION", "size": 596, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": "_theSceMpeg"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": "_theSceMpeg"}, "80": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "172": {"type": "MIPS_26", "symbol": "_sendIpuCommand", "scope": "LIBRARY"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "260": {"type": "MIPS_HI16", "symbol": "_ch4dma", "original": ".text"}, "268": {"type": "MIPS_LO16", "symbol": "_ch4dma", "original": ".text"}, "272": {"type": "MIPS_26", "symbol": "AddDmacHandler"}, "300": {"type": "MIPS_26", "symbol": "EnableDmac"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "360": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "376": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "384": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "392": {"type": "MIPS_26", "symbol": "_doCSC", "scope": "LIBRARY", "original": ".text"}, "412": {"type": "MIPS_26", "symbol": "_doCSC2", "scope": "LIBRARY", "original": ".text"}, "420": {"type": "MIPS_26", "symbol": "DisableDmac"}, "432": {"type": "MIPS_26", "symbol": "RemoveDmacHandler"}, "444": {"type": "MIPS_LO16", "symbol": "", "original": "_theSceMpeg"}, "492": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "500": {"type": "MIPS_26", "symbol": "_doCSC", "scope": "LIBRARY", "original": ".text"}, "512": {"type": "MIPS_LO16", "symbol": "", "original": "_theSceMpeg"}, "520": {"type": "MIPS_26", "symbol": "_doCSC2", "scope": "LIBRARY", "original": ".text"}, "528": {"type": "MIPS_LO16", "symbol": "", "original": "_theSceMpeg"}, "540": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}}}}, "3de457e3ce27f9ff093f6d47e27e0a3d555cfb32": {"d16e5cbb": {"type": "FUNCTION", "size": 328, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"36": {"type": "MIPS_GPREL16", "symbol": "_theSceMpeg"}, "56": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}, "140": {"type": "MIPS_26", "symbol": "_sendIpuCommand", "scope": "LIBRARY"}, "256": {"type": "MIPS_26", "symbol": "_doCSC", "scope": "LIBRARY", "original": ".text"}, "272": {"type": "MIPS_26", "symbol": "_doCSC2", "scope": "LIBRARY", "original": ".text"}, "284": {"type": "MIPS_GPREL16", "symbol": "_theSceMpeg"}, "292": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}}}}, "7e96dd20f85c4ffe6ca4026341e21cda71b918c6": {"4929a6a0": {"type": "FUNCTION", "size": 340, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": "_theSceMpeg"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "_theSceMpeg"}, "64": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}, "148": {"type": "MIPS_26", "symbol": "_sendIpuCommand", "scope": "LIBRARY"}, "264": {"type": "MIPS_26", "symbol": "_doCSC", "scope": "LIBRARY", "original": ".text"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": "_theSceMpeg"}, "280": {"type": "MIPS_26", "symbol": "_doCSC2", "scope": "LIBRARY", "original": ".text"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": "_theSceMpeg"}, "300": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}}}}, "39cdc27cfbf867de49932a6b74848e9d8bc352bb": {"9c2d754a": {"type": "FUNCTION", "size": 340, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_theSceMpeg"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": "_theSceMpeg"}, "68": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}, "148": {"type": "MIPS_26", "symbol": "_sendIpuCommand", "scope": "LIBRARY"}, "264": {"type": "MIPS_26", "symbol": "_doCSC", "scope": "LIBRARY", "original": ".text"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": "_theSceMpeg"}, "280": {"type": "MIPS_26", "symbol": "_doCSC2", "scope": "LIBRARY", "original": ".text"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": "_theSceMpeg"}, "300": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}}}}, "f133f414381dab4648aff15a252b8af7bba9ccbf": {"5bdcb6c2": {"type": "FUNCTION", "size": 344, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_theSceMpeg"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": "_theSceMpeg"}, "68": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}, "148": {"type": "MIPS_26", "symbol": "_sendIpuCommand", "scope": "LIBRARY"}, "268": {"type": "MIPS_26", "symbol": "_doCSC", "scope": "LIBRARY", "original": ".text"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": "_theSceMpeg"}, "284": {"type": "MIPS_26", "symbol": "_doCSC2", "scope": "LIBRARY", "original": ".text"}, "292": {"type": "MIPS_LO16", "symbol": "", "original": "_theSceMpeg"}, "304": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}}}}}, "sceMpegInit": {"7a3a46f427e1ffe1287f4584946433ef3829e69f": {"0d6e4f0f": {"type": "FUNCTION", "size": 156, "library": "libmpeg", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "DIntr"}, "112": {"type": "MIPS_26", "symbol": "EIntr"}, "148": {"type": "MIPS_26", "symbol": "sceIpuInit"}}}}, "44617119f31a3dab4c728b0c17378e7c737e5ac4": {"8b84fba4": {"type": "FUNCTION", "size": 168, "library": "libmpeg", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "DIntr"}, "124": {"type": "MIPS_26", "symbol": "EIntr"}, "160": {"type": "MIPS_26", "symbol": "sceIpuInit"}}}}, "bacb5de637372eac884c02dc4b27704b16229ed3": {"098f2108": {"type": "FUNCTION", "size": 176, "library": "libmpeg", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "DIntr"}, "124": {"type": "MIPS_26", "symbol": "EIntr"}, "152": {"type": "MIPS_26", "symbol": "sceIpuInit"}}}}, "20595b4dccf7b2dc309da9835e1568a821ca15d3": {"9866fe30": {"type": "FUNCTION", "size": 76, "library": "libmpeg", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "sceIpuInit"}}}}, "37cb219a81f8ea0909084130bb95a7b0097208f1": {"29ebd2c4": {"type": "FUNCTION", "size": 168, "library": "libmpeg", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"160": {"type": "MIPS_26", "symbol": "sceIpuInit"}}}}, "03b6a0c2985d3712a4600cfb5725)PS2SDB", 8192}, + std::string_view{R"PS2SDB(081f9a89462d": {"3f442df8": {"type": "FUNCTION", "size": 80, "library": "libmpeg", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.1"], "compiler_versions": ["2.3.1.01"], "relocations": {"72": {"type": "MIPS_26", "symbol": "sceIpuInit"}}}}}, "sceMpegCreate": {"be9a4ad80ebbf5bdb8889b2a92338dccb960abc9": {"4e878fe6": {"type": "FUNCTION", "size": 520, "library": "libmpeg", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "memset"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "120": {"type": "MIPS_26", "symbol": "_alalcInit", "scope": "LIBRARY", "original": ".text"}, "140": {"type": "MIPS_HI16", "symbol": "_defStopDMA"}, "148": {"type": "MIPS_HI16", "symbol": "_defRestartDMA"}, "152": {"type": "MIPS_LO16", "symbol": "_defStopDMA"}, "156": {"type": "MIPS_LO16", "symbol": "_defRestartDMA"}, "288": {"type": "MIPS_26", "symbol": "_alalcAlloc", "scope": "LIBRARY", "original": ".text"}, "364": {"type": "MIPS_26", "symbol": "_clearOnce", "scope": "LIBRARY"}, "372": {"type": "MIPS_26", "symbol": "sceMpegReset", "scope": "LIBRARY", "original": ".text"}, "380": {"type": "MIPS_26", "symbol": "sceMpegClearRefBuff", "scope": "LIBRARY", "original": ".text"}, "460": {"type": "MIPS_26", "symbol": "_alalcSetDynamic", "scope": "LIBRARY", "original": ".text"}}}}, "9139081ade708d32493a2956fa31bcd3490962b0": {"4e878fe6": {"type": "FUNCTION", "size": 524, "library": "libmpeg", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "memset"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "120": {"type": "MIPS_26", "symbol": "_alalcInit", "scope": "LIBRARY", "original": ".text"}, "140": {"type": "MIPS_HI16", "symbol": "_defStopDMA"}, "148": {"type": "MIPS_HI16", "symbol": "_defRestartDMA"}, "152": {"type": "MIPS_LO16", "symbol": "_defStopDMA"}, "156": {"type": "MIPS_LO16", "symbol": "_defRestartDMA"}, "288": {"type": "MIPS_26", "symbol": "_alalcAlloc", "scope": "LIBRARY", "original": ".text"}, "364": {"type": "MIPS_26", "symbol": "_clearOnce", "scope": "LIBRARY"}, "372": {"type": "MIPS_26", "symbol": "sceMpegReset", "scope": "LIBRARY", "original": ".text"}, "380": {"type": "MIPS_26", "symbol": "sceMpegClearRefBuff", "scope": "LIBRARY", "original": ".text"}, "460": {"type": "MIPS_26", "symbol": "_alalcSetDynamic", "scope": "LIBRARY", "original": ".text"}}}}, "5ba75e5c56987fb65ea878af3e10e2f0a0e46280": {"4e878fe6": {"type": "FUNCTION", "size": 524, "library": "libmpeg", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "memset"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "120": {"type": "MIPS_26", "symbol": "_alalcInit", "scope": "LIBRARY", "original": ".text"}, "140": {"type": "MIPS_HI16", "symbol": "_defStopDMA"}, "148": {"type": "MIPS_HI16", "symbol": "_defRestartDMA"}, "152": {"type": "MIPS_LO16", "symbol": "_defStopDMA"}, "156": {"type": "MIPS_LO16", "symbol": "_defRestartDMA"}, "288": {"type": "MIPS_26", "symbol": "_alalcAlloc", "scope": "LIBRARY", "original": ".text"}, "364": {"type": "MIPS_26", "symbol": "_clearOnce", "scope": "LIBRARY"}, "372": {"type": "MIPS_26", "symbol": "sceMpegReset", "scope": "LIBRARY", "original": ".text"}, "380": {"type": "MIPS_26", "symbol": "sceMpegClearRefBuff", "scope": "LIBRARY", "original": ".text"}, "460": {"type": "MIPS_26", "symbol": "_alalcSetDynamic", "scope": "LIBRARY", "original": ".text"}}}}, "7e5eb46e911a9bf5de38de67c5b479feb2ef1139": {"9198de72": {"type": "FUNCTION", "size": 572, "library": "libmpeg", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"76": {"type": "MIPS_26", "symbol": "_alalcInit", "scope": "LIBRARY", "original": ".text"}, "96": {"type": "MIPS_HI16", "symbol": "_defStopDMA"}, "104": {"type": "MIPS_HI16", "symbol": "_defRestartDMA"}, "112": {"type": "MIPS_LO16", "symbol": "_defStopDMA"}, "120": {"type": "MIPS_LO16", "symbol": "_defRestartDMA"}, "240": {"type": "MIPS_26", "symbol": "_alalcAlloc", "scope": "LIBRARY", "original": ".text"}, "268": {"type": "MIPS_HI16", "symbol": "", "original": "_theSceMpeg"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": "_theSceMpeg"}, "320": {"type": "MIPS_26", "symbol": "_clearOnce", "scope": "LIBRARY"}, "328": {"type": "MIPS_26", "symbol": "sceMpegReset", "scope": "LIBRARY", "original": ".text"}, "336": {"type": "MIPS_26", "symbol": "sceMpegClearRefBuff", "scope": "LIBRARY", "original": ".text"}, "344": {"type": "MIPS_HI16", "symbol": "", "original": "_refFrame0"}, "348": {"type": "MIPS_HI16", "symbol": "", "original": "_forwFrame"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_refFrame0"}, "356": {"type": "MIPS_HI16", "symbol": "", "original": "_refTop2"}, "360": {"type": "MIPS_HI16", "symbol": "", "original": "_refBot0"}, "364": {"type": "MIPS_HI16", "symbol": "", "original": "_refBot1"}, "368": {"type": "MIPS_HI16", "symbol": "", "original": "_refBot2"}, "372": {"type": "MIPS_LO16", "symbol": "", "original": "_refTop2"}, "376": {"type": "MIPS_LO16", "symbol": "", "original": "_refBot0"}, "380": {"type": "MIPS_LO16", "symbol": "", "original": "_refBot1"}, "384": {"type": "MIPS_LO16", "symbol": "", "original": "_refBot2"}, "388": {"type": "MIPS_HI16", "symbol": "", "original": "_zTop"}, "392": {"type": "MIPS_HI16", "symbol": "", "original": "_forwBot"}, "396": {"type": "MIPS_HI16", "symbol": "", "original": "_backBot"}, "400": {"type": "MIPS_HI16", "symbol": "", "original": "_zBot"}, "404": {"type": "MIPS_LO16", "symbol": "", "original": "_forwFrame"}, "412": {"type": "MIPS_LO16", "symbol": "", "original": "_zTop"}, "416": {"type": "MIPS_LO16", "symbol": "", "original": "_forwBot"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_refFrame1"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "_backBot"}, "428": {"type": "MIPS_HI16", "symbol": "", "original": "_refFrame2"}, "432": {"type": "MIPS_LO16", "symbol": "", "original": "_zBot"}, "436": {"type": "MIPS_HI16", "symbol": "", "original": "_refTop0"}, "440": {"type": "MIPS_HI16", "symbol": "", "original": "_refTop1"}, "444": {"type": "MIPS_LO16", "symbol": "", "original": "_refFrame1"}, "448": {"type": "MIPS_LO16", "symbol": "", "original": "_refFrame2"}, "452": {"type": "MIPS_LO16", "symbol": "", "original": "_refTop0"}, "456": {"type": "MIPS_LO16", "symbol": "", "original": "_refTop1"}, "460": {"type": "MIPS_HI16", "symbol": "", "original": "_backFrame"}, "464": {"type": "MIPS_HI16", "symbol": "", "original": "_zFrame"}, "468": {"type": "MIPS_HI16", "symbol": "", "original": "_forwTop"}, "472": {"type": "MIPS_HI16", "symbol": "", "original": "_backTop"}, "500": {"type": "MIPS_LO16", "symbol": "", "original": "_backFrame"}, "504": {"type": "MIPS_LO16", "symbol": "", "original": "_zFrame"}, "508": {"type": "MIPS_LO16", "symbol": "", "original": "_forwTop"}, "512": {"type": "MIPS_LO16", "symbol": "", "original": "_backTop"}, "516": {"type": "MIPS_26", "symbol": "_alalcSetDynamic")PS2SDB", 8192}, + std::string_view{R"PS2SDB(, "scope": "LIBRARY", "original": ".text"}, "524": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "528": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "532": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "660c7bee3a70f2df822eddc7a1134ba1e1ec7b78": {"d7fd58b5": {"type": "FUNCTION", "size": 508, "library": "libmpeg", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "_alalcInit", "scope": "LIBRARY", "original": ".text"}, "88": {"type": "MIPS_HI16", "symbol": "_defStopDMA"}, "96": {"type": "MIPS_HI16", "symbol": "_defRestartDMA"}, "104": {"type": "MIPS_LO16", "symbol": "_defStopDMA"}, "112": {"type": "MIPS_LO16", "symbol": "_defRestartDMA"}, "232": {"type": "MIPS_26", "symbol": "_alalcAlloc", "scope": "LIBRARY", "original": ".text"}, "308": {"type": "MIPS_26", "symbol": "_clearOnce", "scope": "LIBRARY"}, "312": {"type": "MIPS_GPREL16", "symbol": "_theSceMpeg"}, "316": {"type": "MIPS_26", "symbol": "sceMpegReset", "scope": "LIBRARY", "original": ".text"}, "324": {"type": "MIPS_26", "symbol": "sceMpegClearRefBuff", "scope": "LIBRARY", "original": ".text"}, "336": {"type": "MIPS_HI16", "symbol": "", "original": "_refFrame0"}, "340": {"type": "MIPS_HI16", "symbol": "", "original": "_refFrame1"}, "344": {"type": "MIPS_HI16", "symbol": "", "original": "_refFrame2"}, "348": {"type": "MIPS_HI16", "symbol": "", "original": "_refTop0"}, "352": {"type": "MIPS_HI16", "symbol": "", "original": "_refTop1"}, "356": {"type": "MIPS_HI16", "symbol": "", "original": "_refTop2"}, "360": {"type": "MIPS_HI16", "symbol": "", "original": "_refBot0"}, "364": {"type": "MIPS_HI16", "symbol": "", "original": "_refBot1"}, "368": {"type": "MIPS_HI16", "symbol": "", "original": "_refBot2"}, "372": {"type": "MIPS_LO16", "symbol": "", "original": "_refFrame0"}, "376": {"type": "MIPS_LO16", "symbol": "", "original": "_refFrame1"}, "380": {"type": "MIPS_LO16", "symbol": "", "original": "_refFrame2"}, "384": {"type": "MIPS_LO16", "symbol": "", "original": "_refTop0"}, "388": {"type": "MIPS_LO16", "symbol": "", "original": "_refTop1"}, "392": {"type": "MIPS_LO16", "symbol": "", "original": "_refTop2"}, "396": {"type": "MIPS_LO16", "symbol": "", "original": "_refBot0"}, "400": {"type": "MIPS_LO16", "symbol": "", "original": "_refBot1"}, "404": {"type": "MIPS_LO16", "symbol": "", "original": "_refBot2"}, "424": {"type": "MIPS_GPREL16", "symbol": "_forwFrame"}, "428": {"type": "MIPS_GPREL16", "symbol": "_backFrame"}, "432": {"type": "MIPS_GPREL16", "symbol": "_zFrame"}, "436": {"type": "MIPS_GPREL16", "symbol": "_forwTop"}, "440": {"type": "MIPS_GPREL16", "symbol": "_backTop"}, "444": {"type": "MIPS_GPREL16", "symbol": "_zTop"}, "448": {"type": "MIPS_GPREL16", "symbol": "_forwBot"}, "452": {"type": "MIPS_GPREL16", "symbol": "_backBot"}, "456": {"type": "MIPS_GPREL16", "symbol": "_zBot"}, "460": {"type": "MIPS_26", "symbol": "_alalcSetDynamic", "scope": "LIBRARY", "original": ".text"}, "468": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "472": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "476": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "4496b2e12c5c240f650ea86c20d4bda1c8221113": {"3acff49f": {"type": "FUNCTION", "size": 568, "library": "libmpeg", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "memset"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_26", "symbol": "_sceMpegError", "scope": "LIBRARY"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "120": {"type": "MIPS_26", "symbol": "_sceMpegAlalcInit", "scope": "LIBRARY"}, "140": {"type": "MIPS_HI16", "symbol": "_sceMpegDefaultStopDMA"}, "148": {"type": "MIPS_HI16", "symbol": "_sceMpegDefaultRestartDMA"}, "152": {"type": "MIPS_LO16", "symbol": "_sceMpegDefaultStopDMA"}, "156": {"type": "MIPS_LO16", "symbol": "_sceMpegDefaultRestartDMA"}, "288": {"type": "MIPS_26", "symbol": "_sceMpegAlalcAlloc", "scope": "LIBRARY"}, "364": {"type": "MIPS_26", "symbol": "_clearOnce", "scope": "LIBRARY", "original": ".text"}, "372": {"type": "MIPS_26", "symbol": "sceMpegReset", "scope": "LIBRARY", "original": ".text"}, "380": {"type": "MIPS_26", "symbol": "sceMpegClearRefBuff", "scope": "LIBRARY", "original": ".text"}, "460": {"type": "MIPS_26", "symbol": "_sceMpegAlalcSetDynamic", "scope": "LIBRARY"}, "488": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "500": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "508": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "516": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "520": {"type": "MIPS_26", "symbol": "_sceMpegError1", "scope": "LIBRARY"}}}}, "7a1034914321fc091a89e1781a0df176f50f4347": {"4e878fe6": {"type": "FUNCTION", "size": 520, "library": "libmpeg", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "memset"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "120": {"type": "MIPS_26", "symbol": "_alalcInit", "scope": "LIBRARY", "original": ".text"}, "140": {"type": "MIPS_HI16", "symbol": "_defStopDMA"}, "148": {"type": "MIPS_HI16", "symbol": "_defRestartDMA"}, "152": {"type": "MIPS_LO16", "symbol": "_defStopDMA"}, "156": {"type": "MIPS_LO16", "symbol": "_defRestartDMA"}, "288": {"type": "MIPS_26", "symbol": "_alalcAlloc", "scope": "LIBRARY", "original": ".text"}, "364": {"type": "MIPS_26", "symbol": "_clearOnce", "scope": "LIBRARY"}, "372": {"type": "MIPS_26", "symbol": "sceMpegReset", "scope": "LIBRARY", "original": ".text"}, "380": {"type": "MIPS_26", "symbol": "sceMpegClearRefBuff", "scope": "LIBRARY", "original": ".text"}, "460": {"type": "MIPS_26", "symbol": "_alalcSetDynamic", "scope": "LIBRARY", "original": ".text"}}}}, "fc53f9523da6eb9c6afe928f8aa48709eb993db7": {"d7fd58b5": {"type": "FUNCTION", "size": 508, "library": "libmpeg", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.0"], "compiler_versions": ["2.3.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "_alalcInit", "scope": "LIBRARY", "original": ".text"}, "88": {"type": "MIPS_HI16", "symbol": "_defStopDMA"}, "96": {"type": "MIPS_HI16", "symbol": "_defRestartDMA"}, "104": {"type": "MIPS_LO16", "symbol": "_defStopDMA"}, "112": {"type": "MIPS_LO16", "symbol": "_defRestartDMA"}, "232": {"type": "MIPS_26", "symbol": "_alalcAlloc", "scope": "LIBRARY", "original": ".text"}, "308": {"type": "MIPS_26", "symbol": "_clearOnce", "scope": "LIBRARY"}, "312": {"type": "MIPS_GPREL16", "symbol": "_theSceMpeg"}, "316": {"type": "MIPS_26", "symbol": "sceMpegReset", "scope": "LIBRARY", "original": ".text"}, "324": {"type": "MIPS_26", "symbol": "sceMpegClearRefBuff", "scope": "LIBRARY", "original": ".text"}, "336": {"type": "MIPS_HI16", "symbol": "", "original": "_refFrame0"}, "340": {"type": "MIPS_HI16", "symbol": "", "original": "_refFrame1"}, "344": {"type": "MIPS_HI16", "symbol": "", "original": "_refFrame2"}, "348": {"type": "MIPS_HI16", "symbol": "", "original": "_refTop0"}, "352": {"type": "MIPS_HI16", "symbol": "", "original": "_refTop1"}, "356": {"type": "MIPS_HI16", "symbol": "", "original": "_refTop2"}, "360": {"type": "MIPS_HI16", "symbol": "", "original": "_refBot0"}, "364": {"type": "MIPS_HI16", "symbol": "", "original": "_refBot1"}, "368": {"type": "MIPS_HI16", "symbol": "", "original": "_refBot2"}, "372": {"type": "MIPS_LO16", "symbol": "", "original": "_refFrame0"}, "376": {"type": "MIPS_LO16", "symbol": "", "original": "_refFrame1"}, "380": )PS2SDB", 8192}, + std::string_view{R"PS2SDB({"type": "MIPS_LO16", "symbol": "", "original": "_refFrame2"}, "384": {"type": "MIPS_LO16", "symbol": "", "original": "_refTop0"}, "388": {"type": "MIPS_LO16", "symbol": "", "original": "_refTop1"}, "392": {"type": "MIPS_LO16", "symbol": "", "original": "_refTop2"}, "396": {"type": "MIPS_LO16", "symbol": "", "original": "_refBot0"}, "400": {"type": "MIPS_LO16", "symbol": "", "original": "_refBot1"}, "404": {"type": "MIPS_LO16", "symbol": "", "original": "_refBot2"}, "424": {"type": "MIPS_GPREL16", "symbol": "_forwFrame"}, "428": {"type": "MIPS_GPREL16", "symbol": "_backFrame"}, "432": {"type": "MIPS_GPREL16", "symbol": "_zFrame"}, "436": {"type": "MIPS_GPREL16", "symbol": "_forwTop"}, "440": {"type": "MIPS_GPREL16", "symbol": "_backTop"}, "444": {"type": "MIPS_GPREL16", "symbol": "_zTop"}, "448": {"type": "MIPS_GPREL16", "symbol": "_forwBot"}, "452": {"type": "MIPS_GPREL16", "symbol": "_backBot"}, "456": {"type": "MIPS_GPREL16", "symbol": "_zBot"}, "460": {"type": "MIPS_26", "symbol": "_alalcSetDynamic", "scope": "LIBRARY", "original": ".text"}, "468": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "472": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "476": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sceMpegDelete": {"98ab17e54d84a098b4240053ee845921141318c1": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libmpeg", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceMpegAddBs": {"2e210009560aa416295c2c3e3b83735bae3a3fd2": {"c07d361e": {"type": "FUNCTION", "size": 36, "library": "libmpeg", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "_sendDataToIPU", "scope": "LIBRARY"}}}}, "dce2b1606f6d83c008d739f9b8b454bd8077846e": {"a79c1b82": {"type": "FUNCTION", "size": 60, "library": "libmpeg", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "_sendDataToIPU", "scope": "LIBRARY"}}}}, "991a45268885e1065654489925f1c06242a8a9c3": {"496d31ca": {"type": "FUNCTION", "size": 56, "library": "libmpeg", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": "_bsDatap"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": "_bsDataSize"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": "_bsDatap"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "_bsDataSize"}, "48": {"type": "MIPS_26", "symbol": "_sendDataToIPU", "scope": "LIBRARY"}}}}, "c6f543d65d23e2e6da76befdbcd6492b85f2373c": {"b1daea54": {"type": "FUNCTION", "size": 48, "library": "libmpeg", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"28": {"type": "MIPS_GPREL16", "symbol": "_bsDatap"}, "40": {"type": "MIPS_26", "symbol": "_sendDataToIPU", "scope": "LIBRARY"}, "44": {"type": "MIPS_GPREL16", "symbol": "_bsDataSize"}}}}}, "sceMpegGetPicture": {"5a7f773ca184f530f6d322ba6aef8f68af095528": {"d4ce7121": {"type": "FUNCTION", "size": 72, "library": "libmpeg", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "_getpic", "scope": "LIBRARY", "original": ".text"}}}}, "0fbad6e137d221587aa6bf200fc0f4b9f4b83c89": {"d4ce7121": {"type": "FUNCTION", "size": 72, "library": "libmpeg", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "_getpic", "scope": "LIBRARY", "original": ".text"}}}}, "93670c7ed74d3e968a954b9657d59f299cc3ddde": {"d4ce7121": {"type": "FUNCTION", "size": 72, "library": "libmpeg", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "_getpic", "scope": "LIBRARY", "original": ".text"}}}}}, "sceMpegGetPictureRAW8": {"104fcc7bc516ae7c81351bbfba06b6fe1fff897a": {"14771bb7": {"type": "FUNCTION", "size": 68, "library": "libmpeg", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "_getpic", "scope": "LIBRARY", "original": ".text"}}}}, "5eaf2b135e4729a002ae1f0c586196caef8fc994": {"14771bb7": {"type": "FUNCTION", "size": 68, "library": "libmpeg", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "_getpic", "scope": "LIBRARY", "original": ".text"}}}}, "d6193a3113ade557f2a112d88472cf360ac88995": {"14771bb7": {"type": "FUNCTION", "size": 68, "library": "libmpeg", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "_getpic", "scope": "LIBRARY", "original": ".text"}}}}}, "sceMpegGetPictureRAW8xy": {"67122dca2f73ceb77b226f23c44dfb8792d03536": {"8ecda24c": {"type": "FUNCTION", "size": 80, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "_getpic", "scope": "LIBRARY", "original": ".text"}}}}, "e52fc5597d9969d4708aaedfb897294b54903668": {"8ecda24c": {"type": "FUNCTION", "size": 80, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "_getpic", "scope": "LIBRARY", "original": ".text"}}}}, "f25c86ccd2f94b2fdbf5eebcca90a068198d9719": {"8ecda24c": {"type": "FUNCTION", "size": 80, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "_getpic", "scope": "LIBRARY", "original": ".text"}}}}}, "sceMpegSetDecodeMode": {"62daad28907a7b2cf49d87ee56825a868efc1dcf": {"00000000": {"type": "FUNCTION", "size": 20, "library": "libmpeg", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3")PS2SDB", 8192}, + std::string_view{R"PS2SDB(, "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "b583eafb075c0147aeec46da5e729b2b23cea7cb": {"00000000": {"type": "FUNCTION", "size": 20, "library": "libmpeg", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "a2f09444717fe471d9483128f112035687ca81c8": {"00000000": {"type": "FUNCTION", "size": 20, "library": "libmpeg", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceMpegGetDecodeMode": {"c205f1f506235a084207c3df6a1df08b40dcdb0c": {"00000000": {"type": "FUNCTION", "size": 32, "library": "libmpeg", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "2b288927411e9909fecb0bd5e6dcaf9cd3a35b37": {"00000000": {"type": "FUNCTION", "size": 32, "library": "libmpeg", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "f7ed1a3a990e04e3596838929589cec4c640f425": {"00000000": {"type": "FUNCTION", "size": 32, "library": "libmpeg", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceMpegIsEnd": {"59ec169d63fda3aa0aef41a3bc5f7e67bcfbb8c2": {"00000000": {"type": "FUNCTION", "size": 12, "library": "libmpeg", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceMpegIsRefBuffEmpty": {"fbebccc0544e9781ca2620369c2f7b664cdaeb1d": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libmpeg", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceMpegReset": {"e280a0a095e5c50c40670b4d162f729522720f64": {"1c4d50a7": {"type": "FUNCTION", "size": 80, "library": "libmpeg", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "_clearEach", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "_initSeqAgain", "scope": "LIBRARY"}}}}, "8e1e3fff9d5338c698c593885cf6c2c5f7ea45e8": {"8debfc73": {"type": "FUNCTION", "size": 88, "library": "libmpeg", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "_clearEach", "scope": "LIBRARY"}, "60": {"type": "MIPS_26", "symbol": "_initSeqAgain", "scope": "LIBRARY"}}}}, "70f3982a17766bbaa6e744cb89715e8c8b9aedb1": {"9d761e80": {"type": "FUNCTION", "size": 92, "library": "libmpeg", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "_clearEach", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "_initSeqAgain", "scope": "LIBRARY"}}}}, "15a19b24a8299376bc24aff7c49bb794f3c6cc6d": {"1386c9a3": {"type": "FUNCTION", "size": 64, "library": "libmpeg", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "_clearEach", "scope": "LIBRARY"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": "_totalFrames"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": "_totalFrames"}, "56": {"type": "MIPS_26", "symbol": "_initSeqAgain", "scope": "LIBRARY"}}}}, "ef09f9fb8d7e8af654ac8e7299e3c3bbedad40c6": {"3f401feb": {"type": "FUNCTION", "size": 60, "library": "libmpeg", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "_clearEach", "scope": "LIBRARY"}, "48": {"type": "MIPS_GPREL16", "symbol": "_totalFrames"}, "52": {"type": "MIPS_26", "symbol": "_initSeqAgain", "scope": "LIBRARY"}}}}, "2095572cd9e61635ec2a5ca32c78d5826a28c4fd": {"1173781a": {"type": "FUNCTION", "size": 124, "library": "libmpeg", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "_clearEach", "scope": "LIBRARY", "original": ".text"}}}}}, "sceMpegClearRefBuff": {"14f83de26ba420f5b09d7f7599e36c951c596033": {"00000000": {"type": "FUNCTION", "size": 84, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "bc3226b329c1e04fc68aeb4d2dc647fff6e5e89e": {"00000000": {"type": "FUNCTION", "size": 84, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "fb2a6e8a10931545b7329d26d1e8b809c1c842d3": {"9dbe3620": {"type": "FUNCTION", "size": 104, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_forwFrame"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": "_forwFrame"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": "_forwTop"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": "_forwTop"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": "_forwBot"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": "_forwBot"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": "_backFrame"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": "_backFrame"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": "_backTop"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": "_backTop"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": "_backBot"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": "_backBot"}}}}, "07e15facc3a051811f15d28f6d94f83bb1c0d726": {"a929232e": {"type": "FUNCTION", "size": 80, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"0": {"type": "MIPS_GPREL16", "symbol": "_forwFrame"}, "12": {"t)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ype": "MIPS_GPREL16", "symbol": "_forwTop"}, "24": {"type": "MIPS_GPREL16", "symbol": "_forwBot"}, "36": {"type": "MIPS_GPREL16", "symbol": "_backFrame"}, "48": {"type": "MIPS_GPREL16", "symbol": "_backTop"}, "60": {"type": "MIPS_GPREL16", "symbol": "_backBot"}}}}, "6b4debd993eaa992d5764613741f980847599f9a": {"00000000": {"type": "FUNCTION", "size": 84, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceMpegAddCallback": {"dcca04d840821fc066593b1a9faf14ac81dea822": {"00000000": {"type": "FUNCTION", "size": 36, "library": "libmpeg", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "3013ad39f8e7d1e0f49e1ea7badc7b010d330990": {"00000000": {"type": "FUNCTION", "size": 52, "library": "libmpeg", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_dispatchMpegCallback": {"d4903742a8697c6a3d6f875db21c92faf47efbbb": {"00000000": {"type": "FUNCTION", "size": 80, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "f95cacbdfabab4a548f131a4c7ece6642a425e3c": {"00000000": {"type": "FUNCTION", "size": 116, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_dispatchMpegCbNodata": {"bacf8caa61d30456debd49a8d8b152090bdd8eae": {"21f41d0f": {"type": "FUNCTION", "size": 36, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY", "original": ".text"}}}}, "a75e6dd305f5e9dba7c0658408c0b312f4149827": {"21f41d0f": {"type": "FUNCTION", "size": 40, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY", "original": ".text"}}}}}, "sceMpegSetDefaultPtsGap": {"3297139afe79c913cce0d6f2b024a0c7a15725bf": {"00000000": {"type": "FUNCTION", "size": 20, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "3deeba4d1eaef17133d5a9651c0c231013e773f2": {"00000000": {"type": "FUNCTION", "size": 24, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "6da65ad51815e78b3f59490db4b877d113cd1567": {"00000000": {"type": "FUNCTION", "size": 24, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceMpegResetDefaultPtsGap": {"248bdb715d1ae00d844afb890705bbfb9156b41a": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "053914c5c3531a354a96a2f1af2489cc517d1ce5": {"00000000": {"type": "FUNCTION", "size": 20, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "5c186a8452d7aa22dcaffa76eeaa3b9ca9ce8e53": {"00000000": {"type": "FUNCTION", "size": 20, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceMpegSetImageBuff": {"b58ec550d6e30112c3ec2c6cde1ebe31cb422bae": {"00000000": {"type": "FUNCTION", "size": 12, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "2c767a1ff3800f83e25bf52cd955229c25a1b75b": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "fa34fb757dda18b84f9da01116f4b5bccbd40a71": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "a679e3680fe65b8690c910faa9f32948847e4ac0": {"d6ed632d": {"type": "FUNCTION", "size": 20, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_theSceMpeg"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": "_theSceMpeg"}}}}, "644882639939b609a31f3a7ec4b3ec6ad498f840": {"7f31cfa3": {"type": "FUNCTION", "size": 16, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"0": {"type": "MIPS_GPREL16", "symbol": "_theSceMpeg"}}}}, "66236389fe8a4762767818897b8c696e6f5868ff": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceMpegDispWidth": {"9e3cdd3bb8b6470497c60972f94146d17cb2d72a": {"00000000": {"type": "FUNCTION", "size": 12, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "03c50fcf32207dee3afefe9740cf60ca28f23140": {"00000000": {"type": "FUNCTION", "size": 12, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "6bbe41ef1acdbbc)PS2SDB", 8192}, + std::string_view{R"PS2SDB(c4eb7a0d6097c87c3264349a2": {"00000000": {"type": "FUNCTION", "size": 12, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceMpegDispHeight": {"8599033b50775cdffbbc47a54afad1fdda14d919": {"00000000": {"type": "FUNCTION", "size": 12, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "612e6a59d6c81fbc9011fcf5a7cac9888468537c": {"00000000": {"type": "FUNCTION", "size": 12, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "03c50fcf32207dee3afefe9740cf60ca28f23140": {"00000000": {"type": "FUNCTION", "size": 12, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceMpegDispCenterOffX": {"f367d7b0039b914de49f9781f302165f3a3ccdcf": {"00000000": {"type": "FUNCTION", "size": 12, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "53ad9fb45c168255b4000c9da0f6a010463fc4ee": {"00000000": {"type": "FUNCTION", "size": 12, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "e523045abc7a9eafbeff6373e75803bccf52b764": {"00000000": {"type": "FUNCTION", "size": 12, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceMpegDispCenterOffY": {"f367d7b0039b914de49f9781f302165f3a3ccdcf": {"00000000": {"type": "FUNCTION", "size": 12, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "53ad9fb45c168255b4000c9da0f6a010463fc4ee": {"00000000": {"type": "FUNCTION", "size": 12, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "e523045abc7a9eafbeff6373e75803bccf52b764": {"00000000": {"type": "FUNCTION", "size": 12, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceSetBrokenLink": {"b4b82f331b6808b21e7378f124bfaac03f36d5a0": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "7e27063fb2f6a325c830aa7e750ee3f200921ef2": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceSetPtm": {"0213e30efb734d9175923e7414c99f6b1ee8b2bb": {"00000000": {"type": "FUNCTION", "size": 20, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "364eeeebb4ff6963e82b685fa376b1c4d8e46183": {"00000000": {"type": "FUNCTION", "size": 24, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "3794a2acf4256559bc050eb8c873b46d7de1befa": {"00000000": {"type": "FUNCTION", "size": 24, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_alalcInit": {"bd580aa885ab9855465bebde3efe44101347354e": {"00000000": {"type": "FUNCTION", "size": 20, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "_alalcSetDynamic": {"c1fb8ae4569513b4dea6795e6f264687b0ecf212": {"00000000": {"type": "FUNCTION", "size": 12, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "_alalcFree": {"4ab23b5a4cc0c8001c33d5898a73118280ccaab3": {"00000000": {"type": "FUNCTION", "size": 12, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "_alalcAlloc": {"f917d4f7001cdc029930aee6ca932e223f18c897": {"53211cf3": {"type": "FUNCTION", "size": 108, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"68": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "5176db0270852a393126698dae912914d9ddc0b8": {"3f2dcf2d": {"type": "FUNCTION", "size": 104, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"68": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "84":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "_alalcRest": {"88d16f3162e3eaa97b062bbc6f54bdd22592784e": {"00000000": {"type": "FUNCTION", "size": 24, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "_getpic": {"2ec5a07827d6e2b546f46838d96b94535f3de8d2": {"c167b1c1": {"type": "FUNCTION", "size": 368, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_26", "symbol": "_Error1", "scope": "LIBRARY"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_26", "symbol": "_nextHeader", "scope": "LIBRARY"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "176": {"type": "MIPS_26", "symbol": "_sceMpegFlush", "scope": "LIBRARY", "original": ".text"}, "216": {"type": "MIPS_26", "symbol": "_decodeOrSkip", "scope": "LIBRARY", "original": ".text"}, "252": {"type": "MIPS_26", "symbol": "_decodeOrSkip", "scope": "LIBRARY", "original": ".text"}, "288": {"type": "MIPS_26", "symbol": "_decodeOrSkip", "scope": "LIBRARY", "original": ".text"}}}}, "cd832cd80e9485acc22bbc77d53ea2d186594251": {"338f9933": {"type": "FUNCTION", "size": 436, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_26", "symbol": "_Error1", "scope": "LIBRARY"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_26", "symbol": "scePrintf"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "108": {"type": "MIPS_26", "symbol": "scePrintf"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_26", "symbol": "_nextHeader", "scope": "LIBRARY"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "232": {"type": "MIPS_26", "symbol": "_sceMpegFlush", "scope": "LIBRARY", "original": ".text"}, "272": {"type": "MIPS_26", "symbol": "_decodeOrSkip", "scope": "LIBRARY", "original": ".text"}, "308": {"type": "MIPS_26", "symbol": "_decodeOrSkip", "scope": "LIBRARY", "original": ".text"}, "344": {"type": "MIPS_26", "symbol": "_decodeOrSkip", "scope": "LIBRARY", "original": ".text"}, "376": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}}}}, "1cfee41517097d4ffb9dbf2e1a056a17d0a82aea": {"ca1f93c5": {"type": "FUNCTION", "size": 388, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"68": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_26", "symbol": "_Error1", "scope": "LIBRARY"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": "_isOutputPicture"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": "_isOutputPicture"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_structure"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": "_isMpeg2"}, "120": {"type": "MIPS_26", "symbol": "_nextHeader", "scope": "LIBRARY"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_isMpeg2"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "196": {"type": "MIPS_26", "symbol": "_sceMpegFlush", "scope": "LIBRARY", "original": ".text"}, "236": {"type": "MIPS_26", "symbol": "_decodeOrSkip", "scope": "LIBRARY", "original": ".text"}, "272": {"type": "MIPS_26", "symbol": "_decodeOrSkip", "scope": "LIBRARY", "original": ".text"}, "308": {"type": "MIPS_26", "symbol": "_decodeOrSkip", "scope": "LIBRARY", "original": ".text"}, "332": {"type": "MIPS_LO16", "symbol": "", "original": "_isOutputPicture"}}}}, "9089c00882cadcf9dcf14a72042d06bf3dbc32c9": {"5a28b8c3": {"type": "FUNCTION", "size": 344, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "60": {"type": "MIPS_26", "symbol": "_Error1", "scope": "LIBRARY"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "76": {"type": "MIPS_GPREL16", "symbol": "_isOutputPicture"}, "96": {"type": "MIPS_26", "symbol": "_nextHeader", "scope": "LIBRARY"}, "112": {"type": "MIPS_GPREL16", "symbol": "_picture_structure"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "164": {"type": "MIPS_26", "symbol": "_sceMpegFlush", "scope": "LIBRARY", "original": ".text"}, "204": {"type": "MIPS_26", "symbol": "_decodeOrSkip", "scope": "LIBRARY", "original": ".text"}, "240": {"type": "MIPS_26", "symbol": "_decodeOrSkip", "scope": "LIBRARY", "original": ".text"}, "276": {"type": "MIPS_26", "symbol": "_decodeOrSkip", "scope": "LIBRARY", "original": ".text"}, "300": {"type": "MIPS_GPREL16", "symbol": "_isOutputPicture"}}}}, "1b2069e5f295078b2c0f82d01b3cdbfbac5518f6": {"94c97beb": {"type": "FUNCTION", "size": 368, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"64": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_26", "symbol": "_Error1", "scope": "LIBRARY"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": "_isOutputPicture"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": "_isOutputPicture"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_structure"}, "112": {"type": "MIPS_26", "symbol": "_nextHeader", "scope": "LIBRARY"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "180": {"type": "MIPS_26", "symbol": "_sceMpegFlush", "scope": "LIBRARY", "original": ".text"}, "220": {"type": "MIPS_26", "symbol": "_decodeOrSkip", "scope": "LIBRARY", "original": ".text"}, "256": {"type": "MIPS_26", "symbol": "_decodeOrSkip", "scope": "LIBRARY", "original": ".text"}, "292": {"type": "MIPS_26", "symbol": "_decodeOrSkip", "scope": "LIBRARY", "original": ".text"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": "_isOutputPicture"}}}}, "79646abf6a15e69b6210a77448a62d989604eb46": {"ac52171d": {"type": "FUNCTION", "size": 376, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"64": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_26", "symbol": "_Error1", "scope": "LIBRARY"}, "72": {"type": "MIPS_LO16", "symb)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ol": "", "original": ".rodata"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": "_isOutputPicture"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": "_isOutputPicture"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_structure"}, "120": {"type": "MIPS_26", "symbol": "_nextHeader", "scope": "LIBRARY"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "188": {"type": "MIPS_26", "symbol": "_sceMpegFlush", "scope": "LIBRARY", "original": ".text"}, "228": {"type": "MIPS_26", "symbol": "_decodeOrSkip", "scope": "LIBRARY", "original": ".text"}, "264": {"type": "MIPS_26", "symbol": "_decodeOrSkip", "scope": "LIBRARY", "original": ".text"}, "300": {"type": "MIPS_26", "symbol": "_decodeOrSkip", "scope": "LIBRARY", "original": ".text"}, "324": {"type": "MIPS_LO16", "symbol": "", "original": "_isOutputPicture"}}}}, "030ef474b6ffce61037cb52106286e56efe6d783": {"ad4cc2ed": {"type": "FUNCTION", "size": 436, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_26", "symbol": "_sceMpegError1", "scope": "LIBRARY"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_26", "symbol": "scePrintf"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "108": {"type": "MIPS_26", "symbol": "scePrintf"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_26", "symbol": "_sceMpegNextHeader", "scope": "LIBRARY"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "232": {"type": "MIPS_26", "symbol": "_sceMpegFlush", "scope": "LIBRARY"}, "272": {"type": "MIPS_26", "symbol": "_decodeOrSkip", "scope": "LIBRARY", "original": ".text"}, "308": {"type": "MIPS_26", "symbol": "_decodeOrSkip", "scope": "LIBRARY", "original": ".text"}, "344": {"type": "MIPS_26", "symbol": "_decodeOrSkip", "scope": "LIBRARY", "original": ".text"}, "376": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}}}}}, "_decodeOrSkipFrame": {"20fd3b3c3fd704be024c1cd944b807ae5e4c6b95": {"68936b99": {"type": "FUNCTION", "size": 276, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"80": {"type": "MIPS_26", "symbol": "_updateRefImage", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "_decPicture", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "_updateRefImage", "scope": "LIBRARY"}, "132": {"type": "MIPS_26", "symbol": "_dispatchMpegCbNodata", "scope": "LIBRARY", "original": ".text"}, "148": {"type": "MIPS_26", "symbol": "_outputFrame", "scope": "LIBRARY"}}}}, "1465550f61221dc9a07cb64c4a21271ae36e8f5a": {"10de58b7": {"type": "FUNCTION", "size": 288, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"80": {"type": "MIPS_26", "symbol": "_updateRefImage", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "_decPicture", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "_updateRefImage", "scope": "LIBRARY"}, "132": {"type": "MIPS_26", "symbol": "_dispatchMpegCbNodata", "scope": "LIBRARY", "original": ".text"}, "160": {"type": "MIPS_26", "symbol": "_outputFrame", "scope": "LIBRARY"}}}}, "ba5f67da1f2c7d488f6ef4b6ca8a7af9a28d7590": {"1b33d668": {"type": "FUNCTION", "size": 292, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"80": {"type": "MIPS_26", "symbol": "_updateRefImage", "scope": "LIBRARY"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": "_totalFrames"}, "104": {"type": "MIPS_26", "symbol": "_decPicture", "scope": "LIBRARY"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": "_totalFrames"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": "_totalFrames"}, "132": {"type": "MIPS_26", "symbol": "_updateRefImage", "scope": "LIBRARY"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": "_totalFrames"}, "148": {"type": "MIPS_26", "symbol": "_dispatchMpegCbNodata", "scope": "LIBRARY", "original": ".text"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": "_totalFrames"}, "160": {"type": "MIPS_26", "symbol": "_outputFrame", "scope": "LIBRARY"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_structure"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": "_isSecondField"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": "_totalFrames"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": "_isSecondField"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": "_isSecondField"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": "_isSecondField"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": "_totalFrames"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": "_isSecondField"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": "_totalFrames"}}}}, "a50b7b45a7a08a88d22756cdb682ea7cef3d36aa": {"5f57379b": {"type": "FUNCTION", "size": 260, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"76": {"type": "MIPS_26", "symbol": "_updateRefImage", "scope": "LIBRARY"}, "92": {"type": "MIPS_GPREL16", "symbol": "_totalFrames"}, "96": {"type": "MIPS_26", "symbol": "_decPicture", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "_updateRefImage", "scope": "LIBRARY"}, "128": {"type": "MIPS_26", "symbol": "_dispatchMpegCbNodata", "scope": "LIBRARY", "original": ".text"}, "136": {"type": "MIPS_GPREL16", "symbol": "_totalFrames"}, "140": {"type": "MIPS_26", "symbol": "_outputFrame", "scope": "LIBRARY"}, "148": {"type": "MIPS_GPREL16", "symbol": "_picture_structure"}, "160": {"type": "MIPS_GPREL16", "symbol": "_totalFrames"}, "172": {"type": "MIPS_GPREL16", "symbol": "_isSecondField"}, "180": {"type": "MIPS_GPREL16", "symbol": "_isSecondField"}, "184": {"type": "MIPS_GPREL16", "symbol": "_totalFrames"}, "192": {"type": "MIPS_GPREL16", "symbol": "_isSecondField"}, "216": {"type": "MIPS_GPREL16", "symbol": "_totalFrames"}}}}, "f0a2f139c9501a865d1bfe1e3a28f0fbb9a2c7fc": {"ca43484d": {"type": "FUNCTION", "size": 280, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"84": {"type": "MIPS_26", "symbol": "_updateRefImage", "scope": "LIBRARY"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": "_totalFrames"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": "_totalFrames"}, "104": {"type": "MIPS_26", "symbol": "_decPicture", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "_updateRefImage", "scope": "LIBRARY"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "_totalFrames"}, "140": {"type": "MIPS_26", "symbol": "_dispatchMpegCbNodata", "scope": "LIBRARY", "original": ".text"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_totalFrames"}, "152": {"type": "MIPS_26", "symbol": "_outputFrame", "scope": "LIBRARY"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_structur)PS2SDB", 8192}, + std::string_view{R"PS2SDB(e"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": "_isSecondField"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": "_totalFrames"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": "_isSecondField"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": "_isSecondField"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": "_totalFrames"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": "_isSecondField"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": "_totalFrames"}}}}, "d16cfab409b61719a9d306e39a9046dfedf34d1b": {"610d2a5c": {"type": "FUNCTION", "size": 368, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"80": {"type": "MIPS_26", "symbol": "_updateRefImage", "scope": "LIBRARY", "original": ".text"}, "96": {"type": "MIPS_26", "symbol": "_decPicture", "scope": "LIBRARY", "original": ".text"}, "116": {"type": "MIPS_26", "symbol": "_updateRefImage", "scope": "LIBRARY", "original": ".text"}, "240": {"type": "MIPS_26", "symbol": "_sceMpegOutputFrame", "scope": "LIBRARY"}}}}}, "_decodeOrSkip": {"3f0db97f58da40e0466312c02698bc66009c7718": {"6ba65dff": {"type": "FUNCTION", "size": 68, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "_decodeOrSkipField", "scope": "LIBRARY", "original": ".text"}, "48": {"type": "MIPS_26", "symbol": "_decodeOrSkipFrame", "scope": "LIBRARY", "original": ".text"}}}}, "b949be1dd28ec5026021dd2436e6e7483b56e817": {"6ba65dff": {"type": "FUNCTION", "size": 68, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "_decodeOrSkipField", "scope": "LIBRARY", "original": ".text"}, "48": {"type": "MIPS_26", "symbol": "_decodeOrSkipFrame", "scope": "LIBRARY", "original": ".text"}}}}, "4f9189a56926f4de28ad73b74191acf3eb363cdd": {"47310235": {"type": "FUNCTION", "size": 60, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_structure"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "24": {"type": "MIPS_26", "symbol": "_decodeOrSkipField", "scope": "LIBRARY", "original": ".text"}, "40": {"type": "MIPS_26", "symbol": "_decodeOrSkipFrame", "scope": "LIBRARY", "original": ".text"}}}}, "de51160654cc06b3fa759d66ef2f105d450daf46": {"f4f20827": {"type": "FUNCTION", "size": 56, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_GPREL16", "symbol": "_picture_structure"}, "20": {"type": "MIPS_26", "symbol": "_decodeOrSkipField", "scope": "LIBRARY", "original": ".text"}, "36": {"type": "MIPS_26", "symbol": "_decodeOrSkipFrame", "scope": "LIBRARY", "original": ".text"}}}}, "b4d89a7d0f6ffd44e2abc1a9de9570348a059d0b": {"6ba65dff": {"type": "FUNCTION", "size": 68, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "_decodeOrSkipField", "scope": "LIBRARY", "original": ".text"}, "48": {"type": "MIPS_26", "symbol": "_decodeOrSkipFrame", "scope": "LIBRARY", "original": ".text"}}}}}, "_decodeOrSkipField": {"5dd4f04fb6f29a600dd39b3d5382cf8782030830": {"25059d50": {"type": "FUNCTION", "size": 348, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"92": {"type": "MIPS_26", "symbol": "_updateRefImage", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "_decPicture", "scope": "LIBRARY"}, "132": {"type": "MIPS_26", "symbol": "_nextHeader", "scope": "LIBRARY"}, "148": {"type": "MIPS_26", "symbol": "_sceMpegFlush", "scope": "LIBRARY", "original": ".text"}, "196": {"type": "MIPS_26", "symbol": "_updateRefImage", "scope": "LIBRARY"}, "228": {"type": "MIPS_26", "symbol": "_decPicture", "scope": "LIBRARY"}, "248": {"type": "MIPS_26", "symbol": "_outputFrame", "scope": "LIBRARY"}, "304": {"type": "MIPS_26", "symbol": "_dispatchMpegCbNodata", "scope": "LIBRARY", "original": ".text"}}}}, "91703e2ff606b01e3f8d8ac31d2d160c128861ca": {"bc0d6cff": {"type": "FUNCTION", "size": 372, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"92": {"type": "MIPS_26", "symbol": "_updateRefImage", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "_decPicture", "scope": "LIBRARY"}, "144": {"type": "MIPS_26", "symbol": "_nextHeader", "scope": "LIBRARY"}, "160": {"type": "MIPS_26", "symbol": "_sceMpegFlush", "scope": "LIBRARY", "original": ".text"}, "208": {"type": "MIPS_26", "symbol": "_updateRefImage", "scope": "LIBRARY"}, "240": {"type": "MIPS_26", "symbol": "_decPicture", "scope": "LIBRARY"}, "272": {"type": "MIPS_26", "symbol": "_outputFrame", "scope": "LIBRARY"}, "328": {"type": "MIPS_26", "symbol": "_dispatchMpegCbNodata", "scope": "LIBRARY", "original": ".text"}}}}, "26c08309bba4860e42bae0138bb94508d82bf3f7": {"e1f141cf": {"type": "FUNCTION", "size": 368, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": "_isSecondField"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": "_isSecondField"}, "100": {"type": "MIPS_26", "symbol": "_updateRefImage", "scope": "LIBRARY"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": "_totalFrames"}, "132": {"type": "MIPS_26", "symbol": "_decPicture", "scope": "LIBRARY"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "_totalFrames"}, "144": {"type": "MIPS_26", "symbol": "_nextHeader", "scope": "LIBRARY"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_isSecondField"}, "160": {"type": "MIPS_26", "symbol": "_sceMpegFlush", "scope": "LIBRARY", "original": ".text"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_structure"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "212": {"type": "MIPS_26", "symbol": "_updateRefImage", "scope": "LIBRARY"}, "232": {"type": "MIPS_HI16", "symbol": "", "original": "_totalFrames"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": "_totalFrames"}, "248": {"type": "MIPS_26", "symbol": "_decPicture", "scope": "LIBRARY"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": "_totalFrames"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": "_totalFrames"}, "264": {"type": "MIPS_26", "symbol": "_outputFrame", "scope": "LIBRARY"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": "_totalFrames"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": "_isSecondField"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": "_totalFrames"}, "316": {"type": "MIPS_26", "symbol": "_dispatchMpegCbNodata", "scope": "LIBRARY", "original": ".text"}}}}, "da28cb4666dd384ccf0f698f63b0a8ad6223ceb6": {"a7bf4979": {"type": )PS2SDB", 8192}, + std::string_view{R"PS2SDB("FUNCTION", "size": 340, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_GPREL16", "symbol": "_isSecondField"}, "88": {"type": "MIPS_26", "symbol": "_updateRefImage", "scope": "LIBRARY"}, "108": {"type": "MIPS_GPREL16", "symbol": "_totalFrames"}, "112": {"type": "MIPS_26", "symbol": "_decPicture", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "_nextHeader", "scope": "LIBRARY"}, "128": {"type": "MIPS_GPREL16", "symbol": "_isSecondField"}, "140": {"type": "MIPS_26", "symbol": "_sceMpegFlush", "scope": "LIBRARY", "original": ".text"}, "164": {"type": "MIPS_GPREL16", "symbol": "_picture_structure"}, "192": {"type": "MIPS_26", "symbol": "_updateRefImage", "scope": "LIBRARY"}, "216": {"type": "MIPS_GPREL16", "symbol": "_totalFrames"}, "220": {"type": "MIPS_26", "symbol": "_decPicture", "scope": "LIBRARY"}, "236": {"type": "MIPS_GPREL16", "symbol": "_totalFrames"}, "244": {"type": "MIPS_26", "symbol": "_outputFrame", "scope": "LIBRARY"}, "252": {"type": "MIPS_GPREL16", "symbol": "_totalFrames"}, "264": {"type": "MIPS_GPREL16", "symbol": "_isSecondField"}, "276": {"type": "MIPS_GPREL16", "symbol": "_totalFrames"}, "296": {"type": "MIPS_26", "symbol": "_dispatchMpegCbNodata", "scope": "LIBRARY", "original": ".text"}}}}, "d29bccf72f144a041f5a0edd320d83e5ff4df860": {"1ba30a28": {"type": "FUNCTION", "size": 376, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_isSecondField"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": "_isSecondField"}, "104": {"type": "MIPS_26", "symbol": "_updateRefImage", "scope": "LIBRARY"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": "_totalFrames"}, "132": {"type": "MIPS_26", "symbol": "_decPicture", "scope": "LIBRARY"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "_totalFrames"}, "144": {"type": "MIPS_26", "symbol": "_nextHeader", "scope": "LIBRARY"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_isSecondField"}, "160": {"type": "MIPS_26", "symbol": "_sceMpegFlush", "scope": "LIBRARY", "original": ".text"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_structure"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "216": {"type": "MIPS_26", "symbol": "_updateRefImage", "scope": "LIBRARY"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": "_totalFrames"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": "_totalFrames"}, "248": {"type": "MIPS_26", "symbol": "_decPicture", "scope": "LIBRARY"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": "_totalFrames"}, "272": {"type": "MIPS_26", "symbol": "_outputFrame", "scope": "LIBRARY"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": "_totalFrames"}, "292": {"type": "MIPS_LO16", "symbol": "", "original": "_isSecondField"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": "_totalFrames"}, "324": {"type": "MIPS_26", "symbol": "_dispatchMpegCbNodata", "scope": "LIBRARY", "original": ".text"}}}}, "bfe10b0f816f2410072887f64ba9a9edb6eaca79": {"593795df": {"type": "FUNCTION", "size": 452, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"92": {"type": "MIPS_26", "symbol": "_updateRefImage", "scope": "LIBRARY", "original": ".text"}, "116": {"type": "MIPS_26", "symbol": "_decPicture", "scope": "LIBRARY", "original": ".text"}, "144": {"type": "MIPS_26", "symbol": "_sceMpegNextHeader", "scope": "LIBRARY"}, "160": {"type": "MIPS_26", "symbol": "_sceMpegFlush", "scope": "LIBRARY"}, "208": {"type": "MIPS_26", "symbol": "_updateRefImage", "scope": "LIBRARY", "original": ".text"}, "240": {"type": "MIPS_26", "symbol": "_decPicture", "scope": "LIBRARY", "original": ".text"}, "272": {"type": "MIPS_26", "symbol": "_sceMpegOutputFrame", "scope": "LIBRARY"}}}}, "13241fbaafe783398d8f16be9352a89eee263d2e": {"b2df8a90": {"type": "FUNCTION", "size": 364, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.6.1"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_isSecondField"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": "_isSecondField"}, "104": {"type": "MIPS_26", "symbol": "_updateRefImage", "scope": "LIBRARY"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": "_totalFrames"}, "132": {"type": "MIPS_26", "symbol": "_decPicture", "scope": "LIBRARY"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "_totalFrames"}, "144": {"type": "MIPS_26", "symbol": "_nextHeader", "scope": "LIBRARY"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "_isSecondField"}, "160": {"type": "MIPS_26", "symbol": "_sceMpegFlush", "scope": "LIBRARY", "original": ".text"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_structure"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "212": {"type": "MIPS_26", "symbol": "_updateRefImage", "scope": "LIBRARY"}, "232": {"type": "MIPS_HI16", "symbol": "", "original": "_totalFrames"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": "_totalFrames"}, "244": {"type": "MIPS_26", "symbol": "_decPicture", "scope": "LIBRARY"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": "_totalFrames"}, "260": {"type": "MIPS_26", "symbol": "_outputFrame", "scope": "LIBRARY"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": "_totalFrames"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": "_isSecondField"}, "292": {"type": "MIPS_LO16", "symbol": "", "original": "_totalFrames"}, "312": {"type": "MIPS_26", "symbol": "_dispatchMpegCbNodata", "scope": "LIBRARY", "original": ".text"}}}}}, "_sceMpegFlush": {"177d60298012072ac6fe9c559532c206583b589a": {"0f845b2c": {"type": "FUNCTION", "size": 104, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "_lastFrame", "scope": "LIBRARY"}}}}, "e18e08d58828855e833456ca468fd5d79dbc9c1c": {"0f845b2c": {"type": "FUNCTION", "size": 104, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "_lastFrame", "scope": "LIBRARY"}}}}, "fd4a293f745a9d180bffa1adb70dee45f8633b2a": {"dc36ade1": {"type": "FUNCTION", "size": 112, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"48": {"type": "MIPS_HI16", "symbol": "", "original": "_totalFrames"}, "52": {"type": "MIPS_26", "symbol": "_lastFrame", "scope": "LIBRARY"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": "_totalFrames"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": "_totalFrames"}}}}, "fa7bfe743246f9fbaf9a21c6f8da55860a9cdb91": {"cd23c363": {"type": "FUNCTION", "size": 104, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "_lastFrame", "scope": "LIBRARY"}, "52": {"type": "MIPS_GPREL16", "symbol": "_totalFrames"}, "56": {"type": "MIPS_GPREL16", "symbol": "_totalFrames"}}}}, "7902fe5b3c29a60b7b1807c4bf5c1dfc48f84602": {"260a2b9f": {"type": "FUNCTION", "size": 192, "library": "libmpeg", "scope": "GLOBAL", "is_interface":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_26", "symbol": "_sceMpegError", "scope": "LIBRARY"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "108": {"type": "MIPS_26", "symbol": "_dispRefImage", "scope": "LIBRARY", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "_dispRefImageField", "scope": "LIBRARY", "original": ".text"}}}}}, "_initSeqAgain": {"e58a17154b85815aa6ae51b2dfd0c90fade84882": {"3d5924ab": {"type": "FUNCTION", "size": 12, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_26", "symbol": "_ipuSetMPEG1", "scope": "LIBRARY"}}}}, "476b221021556ef2452c4bba3a43c34d9631903f": {"3d5924ab": {"type": "FUNCTION", "size": 12, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_26", "symbol": "_ipuSetMPEG1", "scope": "LIBRARY"}}}}, "be2f94fccb629b757358e319352d6a3beb5cef90": {"b51a79d7": {"type": "FUNCTION", "size": 16, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_isMpeg2"}, "8": {"type": "MIPS_26", "symbol": "_ipuSetMPEG1", "scope": "LIBRARY"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "_isMpeg2"}}}}, "4be19f5e0a8c8329b399a4d162d066d70f2407a8": {"a31120a7": {"type": "FUNCTION", "size": 12, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"0": {"type": "MIPS_GPREL16", "symbol": "_isMpeg2"}, "4": {"type": "MIPS_26", "symbol": "_ipuSetMPEG1", "scope": "LIBRARY"}}}}}, "_lastFrame": {"a9024d406702fea10c21b84380d8639f95e5a618": {"579ce862": {"type": "FUNCTION", "size": 124, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY", "original": ".text"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_26", "symbol": "_dispRefImage", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "_dispRefImageField", "scope": "LIBRARY"}}}}, "c8c27e53f3a4d969ef723fbcebd278de16658aeb": {"579ce862": {"type": "FUNCTION", "size": 124, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY", "original": ".text"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_26", "symbol": "_dispRefImage", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "_dispRefImageField", "scope": "LIBRARY"}}}}, "0fba6de635d103f5e91139f15d4b5a864dd41d3d": {"2b8e5a5c": {"type": "FUNCTION", "size": 132, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": "_isSecondField"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "_isSecondField"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY", "original": ".text"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "_isSecondField"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_structure"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": "_backTop"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": "_backFrame"}, "76": {"type": "MIPS_26", "symbol": "_dispRefImage", "scope": "LIBRARY"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": "_backFrame"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": "_isSecondField"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": "_backBot"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": "_backTop"}, "104": {"type": "MIPS_26", "symbol": "_dispRefImageField", "scope": "LIBRARY"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": "_backBot"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": "_isSecondField"}}}}, "96d60a9dad9b5bab167c06e15f6a6f80b183b925": {"a44e268c": {"type": "FUNCTION", "size": 104, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_GPREL16", "symbol": "_isSecondField"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "24": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY", "original": ".text"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_GPREL16", "symbol": "_picture_structure"}, "56": {"type": "MIPS_GPREL16", "symbol": "_backFrame"}, "60": {"type": "MIPS_26", "symbol": "_dispRefImage", "scope": "LIBRARY"}, "76": {"type": "MIPS_GPREL16", "symbol": "_backTop"}, "80": {"type": "MIPS_26", "symbol": "_dispRefImageField", "scope": "LIBRARY"}, "84": {"type": "MIPS_GPREL16", "symbol": "_backBot"}, "92": {"type": "MIPS_GPREL16", "symbol": "_isSecondField"}}}}, "566c0ebec8e804f6e6a9d5f1e1356335112c6f8a": {"373bc2f3": {"type": "FUNCTION", "size": 136, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_isSecondField"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "_isSecondField"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY", "original": ".text"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": "_isSecondField"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_structure"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": "_backTop"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": "_backFrame"}, "80": {"type": "MIPS_26", "symbol": "_dispRefImage", "scope": "LIBRARY"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": "_backFrame"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": "_isSecondField"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": "_backBot"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": "_backTop"}, "108": {"type": "MIPS_26", "symbol": "_dispRefImageField", "scope": "LIBRARY"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": "_backBot"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": "_isSecondField"}}}}}, "_clearOnce": {"1f66637de24da9543dc5d7c83dae7fb814b70c90": {"13f)PS2SDB", 8192}, + std::string_view{R"PS2SDB(a78b3": {"type": "FUNCTION", "size": 96, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "_ipuSetMPEG1", "scope": "LIBRARY"}}}}, "ed1a1ed62386966092cc533568a24646cd7acf08": {"13fa78b3": {"type": "FUNCTION", "size": 96, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "_ipuSetMPEG1", "scope": "LIBRARY"}}}}, "9b6d11138fe5a5572c817d4c8fd8e2501af48115": {"c64466b2": {"type": "FUNCTION", "size": 76, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "_ipuSetMPEG1", "scope": "LIBRARY"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": "_mbcont"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}}}}, "b7616bd1a05875b1d82bc356a709e2ce5bb47889": {"9ea823f3": {"type": "FUNCTION", "size": 72, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "_ipuSetMPEG1", "scope": "LIBRARY"}, "16": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": "_mbcont"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "_mbcont"}}}}, "ad1965b7e9bb03f1be43ebc2de36818d85d41261": {"a33bac32": {"type": "FUNCTION", "size": 204, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"120": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "196": {"type": "MIPS_26", "symbol": "_sceMpegError", "scope": "LIBRARY"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "_clearEach": {"f17b67fb36301cdc623e002bcc231afb2d3228f2": {"0f6a3a1d": {"type": "FUNCTION", "size": 188, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "DIntr"}, "108": {"type": "MIPS_26", "symbol": "EIntr"}, "180": {"type": "MIPS_26", "symbol": "sceIpuSync"}}}}, "4fe3c267f6d38fe1860e923f5fd476c4f40aa2ff": {"3b080593": {"type": "FUNCTION", "size": 200, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "DIntr"}, "120": {"type": "MIPS_26", "symbol": "EIntr"}, "192": {"type": "MIPS_26", "symbol": "sceIpuSync"}}}}, "574c122d033e5da7ff849b146117a9ebda3a34b2": {"3b080593": {"type": "FUNCTION", "size": 200, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "DIntr"}, "120": {"type": "MIPS_26", "symbol": "EIntr"}, "192": {"type": "MIPS_26", "symbol": "sceIpuSync"}}}}, "b30e367152c62193ec7ccdb5b9fb3c72768a41cd": {"0360f5dc": {"type": "FUNCTION", "size": 196, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_sp_dcr"}, "8": {"type": "MIPS_HI16", "symbol": "", "original": "_isTop32dirty"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": "_sp_dcr"}, "24": {"type": "MIPS_26", "symbol": "DIntr"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": "_isTop32dirty"}, "116": {"type": "MIPS_26", "symbol": "EIntr"}, "188": {"type": "MIPS_26", "symbol": "sceIpuSync"}}}}, "47cf8358bfbc5a988c84dfc034c559170a0aca69": {"bf6bed1b": {"type": "FUNCTION", "size": 112, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"8": {"type": "MIPS_GPREL16", "symbol": "_isTop32dirty"}, "16": {"type": "MIPS_GPREL16", "symbol": "_sp_dcr"}, "104": {"type": "MIPS_26", "symbol": "sceIpuSync"}}}}, "2457c7f32e6818f21d63ab75b7ea37bc02a362b8": {"9dc7500a": {"type": "FUNCTION", "size": 208, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_sp_dcr"}, "8": {"type": "MIPS_HI16", "symbol": "", "original": "_isTop32dirty"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "_sp_dcr"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "_isTop32dirty"}, "200": {"type": "MIPS_26", "symbol": "sceIpuSync"}}}}, "8f3073eb66b77be142991e968a1bb088e94e6049": {"3693612b": {"type": "FUNCTION", "size": 120, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_isTop32dirty"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "_isTop32dirty"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": "_sp_dcr"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": "_sp_dcr"}, "112": {"type": "MIPS_26", "symbol": "sceIpuSync"}}}}, "0006a7c55972da443bab2a3d864f42b2e03b15af": {"3b080593": {"type": "FUNCTION", "size": 200, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "DIntr"}, "120": {"type": "MIPS_26", "symbol": "EIntr"}, "192": {"type": "MIPS_26", "symbol": "sceIpuSync"}}}}}, "_ErrMessage": {"ee87e26cace34f85a359594ea20a15084700afdb": {"38e37c92": {"type": "FUNCTION", "size": 16, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "8": {"type": "MIPS_26", "symbol": "printf"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}, "d4a8720a": {"type": "FUNCTION", "size": 16, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "8": {"type": "MIPS_26", "symbol": "scePrintf"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "_Error1": {"b65cbd3a472567d637b81e5ef4f624d19b26979c": {"58226ca0": {"type": "FUNCTION", "size": 52, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "sprintf"}, "28": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY", "original": ".text"}}}}, "28391ec865dacbd8d26ed4a1b7287d6b404515e1": {"5b2457df": {"type": "FUNCTION", "size": 44, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "sprintf"}, "24": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY", "original": ".text"}}}}}, "_Error": {"d00cee5ca59b851b1155b205811daf9c7ba7ea83": {"edfa36b5": {"type": "FUNCTION", "size": 84, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "_ErrMessage", "scope": "LIBRARY", "original": ".text"}}}}, "940b70e3d4a17273783212d2c73aae54f841843a": {"edfa36b5": {"type": "FUNCTION", "size": 84, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "_ErrMessage", "scope": "LIBRARY", "original": ".text"}}}}, "eb31fb0cb6b9b7f7fba92f9935e8146b08de6ca3": {"ebfe8e44": {"type": "FUNCTION", "size": 88, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "_ErrMessage", "scope": "LIBRARY", "original": ".text"}}}}, "736fd1df775e138513302bb0bd057a6ba06c64b3": {"459c1b95": {"type": "FUNCTION", "size": 84, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "48": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "_ErrMessage", "scope": "LIBRARY", "original": ".text"}}}}}, "_sendDataToIPU": {"70d4e2edc4653f410a7d27347b1ddeb44d59b7c9": {"f301df36": {"type": "FUNCTION", "size": 240, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.2", "2.4.3"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"156": {"type": "MIPS_26", "symbol": "FlushCache"}, "164": {"type": "MIPS_26", "symbol": "DIntr"}, "232": {"type": "MIPS_26", "symbol": "EIntr"}}}}, "5819de386cde69a23806d3960f9248ad14f44aa2": {"43d8acb4": {"type": "FUNCTION", "size": 256, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"156": {"type": "MIPS_26", "symbol": "FlushCache"}, "164": {"type": "MIPS_26", "symbol": "DIntr"}, "236": {"type": "MIPS_26", "symbol": "EIntr"}}}}, "db8431273b7f21fc45bb4e212c2fee71969bc279": {"51553c81": {"type": "FUNCTION", "size": 212, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "b333340a76ec84d2d2ec95af77f84d4b53c04b88": {"ee163ff8": {"type": "FUNCTION", "size": 220, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "eae07bc6cb2e7f219e2ed5d0d630b56bd674e0fe": {"43d8acb4": {"type": "FUNCTION", "size": 256, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"156": {"type": "MIPS_26", "symbol": "FlushCache"}, "164": {"type": "MIPS_26", "symbol": "DIntr"}, "236": {"type": "MIPS_26", "symbol": "EIntr"}}}}, "37fe8ba7671ecc5bdcc82c86e95d7de4330405ff": {"f301df36": {"type": "FUNCTION", "size": 240, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"156": {"type": "MIPS_26", "symbol": "FlushCache"}, "164": {"type": "MIPS_26", "symbol": "DIntr"}, "232": {"type": "MIPS_26", "symbol": "EIntr"}}}}, "14efde6efffd0edc4eb627a119792979481574cf": {"ee163ff8": {"type": "FUNCTION", "size": 224, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1"], "compiler_versions": ["2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "_RefImageInit": {"c58dd4785ec4210b9b684f54bcc3323786553f92": {"00000000": {"type": "FUNCTION", "size": 32, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "_sequenceHeader": {"13aba76c04951ec11bd656fe3359acf1b88937e6": {"edbf0997": {"type": "FUNCTION", "size": 292, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY", "original": ".text"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY"}, "132": {"type": "MIPS_26", "symbol": "_waitIpuIdle"}, "144": {"type": "MIPS_26", "symbol": "_sendIpuCommand", "scope": "LIBRARY"}, "152": {"type": "MIPS_26", "symbol": "_waitIpuIdle"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": "_defIQM"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": "_defIQM"}, "180": {"type": "MIPS_26", "symbol": "_setDefaultQM", "scope": "LIBRARY", "original": ".text"}, "192": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY"}, "208": {"type": "MIPS_26", "sym)PS2SDB", 8192}, + std::string_view{R"PS2SDB(bol": "_waitIpuIdle"}, "220": {"type": "MIPS_26", "symbol": "_sendIpuCommand", "scope": "LIBRARY"}, "228": {"type": "MIPS_26", "symbol": "_waitIpuIdle"}, "244": {"type": "MIPS_HI16", "symbol": "", "original": "_defNIQM"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": "_defNIQM"}, "256": {"type": "MIPS_26", "symbol": "_setDefaultQM", "scope": "LIBRARY", "original": ".text"}, "264": {"type": "MIPS_26", "symbol": "_extensionAndUserData", "scope": "LIBRARY"}, "284": {"type": "MIPS_26", "symbol": "_initSeq", "scope": "LIBRARY", "original": ".text"}}}}, "7f6a20c1b9bfa1c69d35b5aacf9948b12f9d4d34": {"edbf0997": {"type": "FUNCTION", "size": 292, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY", "original": ".text"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY"}, "132": {"type": "MIPS_26", "symbol": "_waitIpuIdle"}, "144": {"type": "MIPS_26", "symbol": "_sendIpuCommand", "scope": "LIBRARY"}, "152": {"type": "MIPS_26", "symbol": "_waitIpuIdle"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": "_defIQM"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": "_defIQM"}, "180": {"type": "MIPS_26", "symbol": "_setDefaultQM", "scope": "LIBRARY", "original": ".text"}, "192": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY"}, "208": {"type": "MIPS_26", "symbol": "_waitIpuIdle"}, "220": {"type": "MIPS_26", "symbol": "_sendIpuCommand", "scope": "LIBRARY"}, "228": {"type": "MIPS_26", "symbol": "_waitIpuIdle"}, "244": {"type": "MIPS_HI16", "symbol": "", "original": "_defNIQM"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": "_defNIQM"}, "256": {"type": "MIPS_26", "symbol": "_setDefaultQM", "scope": "LIBRARY", "original": ".text"}, "264": {"type": "MIPS_26", "symbol": "_extensionAndUserData", "scope": "LIBRARY"}, "284": {"type": "MIPS_26", "symbol": "_initSeq", "scope": "LIBRARY", "original": ".text"}}}}, "a3785d4d50d20cca17608cb82c2c7c9bc30055e1": {"b05b97e1": {"type": "FUNCTION", "size": 340, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": "_frame_rate_code"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": "_aspect_ratio_information"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": "_vertical_size"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": "_horizontal_size"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": "_frame_rate_code"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": "_aspect_ratio_information"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": "_horizontal_size"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": "_vertical_size"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "112": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY", "original": ".text"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "124": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": "_load_intra_quantizer_matrix"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": "_constrained_parameters_flag"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": "_vbv_buffer_size_value"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": "_bit_rate_value"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": "_constrained_parameters_flag"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": "_vbv_buffer_size_value"}, "176": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": "_bit_rate_value"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": "_load_intra_quantizer_matrix"}, "192": {"type": "MIPS_26", "symbol": "_waitIpuIdle"}, "200": {"type": "MIPS_26", "symbol": "_sendIpuCommand", "scope": "LIBRARY"}, "208": {"type": "MIPS_26", "symbol": "_waitIpuIdle"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": "_defIQM"}, "232": {"type": "MIPS_26", "symbol": "_setDefaultQM", "scope": "LIBRARY", "original": ".text"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": "_defIQM"}, "244": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY"}, "248": {"type": "MIPS_HI16", "symbol": "", "original": "_load_non_intra_quantizer_matrix"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": "_load_non_intra_quantizer_matrix"}, "260": {"type": "MIPS_26", "symbol": "_waitIpuIdle"}, "268": {"type": "MIPS_26", "symbol": "_sendIpuCommand", "scope": "LIBRARY"}, "276": {"type": "MIPS_26", "symbol": "_waitIpuIdle"}, "292": {"type": "MIPS_HI16", "symbol": "", "original": "_defNIQM"}, "300": {"type": "MIPS_26", "symbol": "_setDefaultQM", "scope": "LIBRARY", "original": ".text"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": "_defNIQM"}, "308": {"type": "MIPS_26", "symbol": "_extensionAndUserData", "scope": "LIBRARY"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "332": {"type": "MIPS_26", "symbol": "_initSeq", "scope": "LIBRARY", "original": ".text"}}}}, "d22de1188695d506dc58284e84bae5b0bf577922": {"132a6755": {"type": "FUNCTION", "size": 276, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "20": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY"}, "52": {"type": "MIPS_GPREL16", "symbol": "_frame_rate_code"}, "60": {"type": "MIPS_GPREL16", "symbol": "_aspect_ratio_information"}, "64": {"type": "MIPS_GPREL16", "symbol": "_horizontal_size"}, "72": {"type": "MIPS_GPREL16", "symbol": "_vertical_size"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY", "original": ".text"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY"}, "116": {"type": "MIPS_GPREL16", "symbol": "_constrained_parameters_flag"}, "120": {"type": "MIPS_GPREL16", "symbol": "_vbv_buffer_size_value"}, "124": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY"}, "128": {"type": "MIPS_GPREL16", "symbol": "_bit_rate_value"}, "136": {"type": "MIPS_GPREL16", "symbol": "_load_intra_quantizer_matrix"}, "140": {"type": "MIPS_26", "symbol": "_waitIpuIdle"}, "148": {"type": "MIPS_26", "symbol": "_sendIpuCommand", "scope": "LIBRARY"}, "156": {"type": "MIPS_26", "symbol": "_waitIpuIdle"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": "defIQM"}, "180": {"type": "MIPS_26", "symbol": "_setDefaultQM", "scope": "LIBRARY", "original": ".text"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": "defIQM"}, "188": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY"}, "200": {"type": "MIPS_GPREL16", "symbol": "_load_non_intra_quantizer_matrix"}, "204": {"type": "MIPS_26", "symbol": "_waitIpuIdle"}, "212": {"type": "MIPS_26", "symbol": "_sendIpuCommand", "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "_waitIpuIdle"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": "defNIQM"}, "244": {)PS2SDB", 8192}, + std::string_view{R"PS2SDB("type": "MIPS_26", "symbol": "_setDefaultQM", "scope": "LIBRARY", "original": ".text"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": "defNIQM"}, "252": {"type": "MIPS_26", "symbol": "_extensionAndUserData", "scope": "LIBRARY"}, "260": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "268": {"type": "MIPS_26", "symbol": "_initSeq", "scope": "LIBRARY", "original": ".text"}}}}, "33fc5b1cd523342add5e17f469a2f2449ab2b43c": {"cae15797": {"type": "FUNCTION", "size": 344, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": "_frame_rate_code"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": "_aspect_ratio_information"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": "_vertical_size"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": "_horizontal_size"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": "_frame_rate_code"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": "_aspect_ratio_information"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": "_horizontal_size"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": "_vertical_size"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY", "original": ".text"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "_load_intra_quantizer_matrix"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": "_constrained_parameters_flag"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": "_vbv_buffer_size_value"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": "_bit_rate_value"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": "_constrained_parameters_flag"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": "_vbv_buffer_size_value"}, "180": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": "_bit_rate_value"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": "_load_intra_quantizer_matrix"}, "196": {"type": "MIPS_26", "symbol": "_waitIpuIdle"}, "204": {"type": "MIPS_26", "symbol": "_sendIpuCommand", "scope": "LIBRARY"}, "212": {"type": "MIPS_26", "symbol": "_waitIpuIdle"}, "228": {"type": "MIPS_HI16", "symbol": "", "original": "defIQM"}, "236": {"type": "MIPS_26", "symbol": "_setDefaultQM", "scope": "LIBRARY", "original": ".text"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": "defIQM"}, "248": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY"}, "252": {"type": "MIPS_HI16", "symbol": "", "original": "_load_non_intra_quantizer_matrix"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": "_load_non_intra_quantizer_matrix"}, "264": {"type": "MIPS_26", "symbol": "_waitIpuIdle"}, "272": {"type": "MIPS_26", "symbol": "_sendIpuCommand", "scope": "LIBRARY"}, "280": {"type": "MIPS_26", "symbol": "_waitIpuIdle"}, "296": {"type": "MIPS_HI16", "symbol": "", "original": "defNIQM"}, "304": {"type": "MIPS_26", "symbol": "_setDefaultQM", "scope": "LIBRARY", "original": ".text"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": "defNIQM"}, "312": {"type": "MIPS_26", "symbol": "_extensionAndUserData", "scope": "LIBRARY"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "336": {"type": "MIPS_26", "symbol": "_initSeq", "scope": "LIBRARY", "original": ".text"}}}}, "02c7bd06ff6981026c0b48446a584309c943b7a3": {"e0bae42c": {"type": "FUNCTION", "size": 684, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "76": {"type": "MIPS_26", "symbol": "_sceMpegError", "scope": "LIBRARY"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "140": {"type": "MIPS_26", "symbol": "_waitIpuIdle", "original": ".text"}, "176": {"type": "MIPS_26", "symbol": "_waitIpuIdle", "original": ".text"}, "200": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "212": {"type": "MIPS_26", "symbol": "_sceMpegDispatchMpegCallback", "scope": "LIBRARY"}, "224": {"type": "MIPS_26", "symbol": "_waitIpuIdle", "original": ".text"}, "244": {"type": "MIPS_26", "symbol": "_waitIpuIdle", "original": ".text"}, "252": {"type": "MIPS_26", "symbol": "DIntr"}, "320": {"type": "MIPS_26", "symbol": "EIntr"}, "348": {"type": "MIPS_26", "symbol": "_waitIpuIdle", "original": ".text"}, "368": {"type": "MIPS_26", "symbol": "_sceMpegDispatchMpegCallback", "scope": "LIBRARY"}, "380": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "396": {"type": "MIPS_26", "symbol": "_waitIpuIdle", "original": ".text"}, "436": {"type": "MIPS_26", "symbol": "_waitIpuIdle", "original": ".text"}, "460": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "468": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "472": {"type": "MIPS_26", "symbol": "_sceMpegDispatchMpegCallback", "scope": "LIBRARY"}, "480": {"type": "MIPS_26", "symbol": "_waitIpuIdle", "original": ".text"}, "500": {"type": "MIPS_26", "symbol": "_waitIpuIdle", "original": ".text"}, "508": {"type": "MIPS_26", "symbol": "DIntr"}, "580": {"type": "MIPS_26", "symbol": "EIntr"}, "616": {"type": "MIPS_26", "symbol": "_waitIpuIdle", "original": ".text"}, "636": {"type": "MIPS_26", "symbol": "_sceMpegDispatchMpegCallback", "scope": "LIBRARY"}, "644": {"type": "MIPS_26", "symbol": "_extensionAndUserData", "scope": "LIBRARY", "original": ".text"}, "652": {"type": "MIPS_26", "symbol": "_initSeq", "scope": "LIBRARY", "original": ".text"}}}}}, "_initSeq": {"2356b1d5b0ba12f0cf20de5c9ba1d57d06379060": {"df279698": {"type": "FUNCTION", "size": 680, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"288": {"type": "MIPS_26", "symbol": "_alalcFree", "scope": "LIBRARY"}, "308": {"type": "MIPS_26", "symbol": "_alalcAlloc", "scope": "LIBRARY"}, "332": {"type": "MIPS_26", "symbol": "_alalcAlloc", "scope": "LIBRARY"}, "356": {"type": "MIPS_26", "symbol": "_alalcAlloc", "scope": "LIBRARY"}, "436": {"type": "MIPS_26", "symbol": "_initRefImages", "scope": "LIBRARY", "original": ".text"}, "452": {"type": "MIPS_26", "symbol": "_RefImageInit", "scope": "LIBRARY", "original": ".text"}, "468": {"type": "MIPS_26", "symbol": "_RefImageInit", "scope": "LIBRARY", "original": ".text"}, "484": {"type": "MIPS_26", "symbol": "_RefImageInit", "scope": "LIBRARY", "original": ".text"}, "500": {"type": "MIPS_26", "symbol": "_RefImageInit", "scope": "LIBRARY", "original": ".text"}, "516": {"type": "MIPS_26", "symbol": "_RefImageInit", "scope": "LIBRARY", "original": ".text"}, "532": {"type": "MIPS_26", "symbol": "_RefImageInit", "scope": "LIBRARY", "original": ".text"}, "548": {"type": "MIPS_26", "symbol": "_RefImageInit", "scope": "LIBRARY", "original": ".text"}, "564": {"type": "MIPS_26", "symbol": "_RefImageInit", "scope": "LIBRARY", "original": ".text"}, "624": {"type": "MIPS_26", "symbol": "_RefImageInit", "scope": "LIBRARY", "original": ".text"}}}}, "a12efa933be67c)PS2SDB", 8192}, + std::string_view{R"PS2SDB(5d8bdc9add600ae9b38e68223a": {"df279698": {"type": "FUNCTION", "size": 680, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"288": {"type": "MIPS_26", "symbol": "_alalcFree", "scope": "LIBRARY"}, "308": {"type": "MIPS_26", "symbol": "_alalcAlloc", "scope": "LIBRARY"}, "332": {"type": "MIPS_26", "symbol": "_alalcAlloc", "scope": "LIBRARY"}, "356": {"type": "MIPS_26", "symbol": "_alalcAlloc", "scope": "LIBRARY"}, "436": {"type": "MIPS_26", "symbol": "_initRefImages", "scope": "LIBRARY", "original": ".text"}, "452": {"type": "MIPS_26", "symbol": "_RefImageInit", "scope": "LIBRARY", "original": ".text"}, "468": {"type": "MIPS_26", "symbol": "_RefImageInit", "scope": "LIBRARY", "original": ".text"}, "484": {"type": "MIPS_26", "symbol": "_RefImageInit", "scope": "LIBRARY", "original": ".text"}, "500": {"type": "MIPS_26", "symbol": "_RefImageInit", "scope": "LIBRARY", "original": ".text"}, "516": {"type": "MIPS_26", "symbol": "_RefImageInit", "scope": "LIBRARY", "original": ".text"}, "532": {"type": "MIPS_26", "symbol": "_RefImageInit", "scope": "LIBRARY", "original": ".text"}, "548": {"type": "MIPS_26", "symbol": "_RefImageInit", "scope": "LIBRARY", "original": ".text"}, "564": {"type": "MIPS_26", "symbol": "_RefImageInit", "scope": "LIBRARY", "original": ".text"}, "624": {"type": "MIPS_26", "symbol": "_RefImageInit", "scope": "LIBRARY", "original": ".text"}}}}, "d77128dd3a54ec3c81234b26a912e1bd0797bb83": {"bdd89eb9": {"type": "FUNCTION", "size": 836, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_isMpeg2"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": "_isMpeg2"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": "_progressive_sequence"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": "_chroma_format"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": "_progressive_frame"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_structure"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": "_frame_pred_frame_dct"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": "_matrix_coefficients"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": "_frame_pred_frame_dct"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": "_matrix_coefficients"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": "_progressive_sequence"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": "_chroma_format"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": "_progressive_frame"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": "_horizontal_size"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": "_widthMB"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": "_horizontal_size"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": "_heightMB"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": "_heightMB"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": "_widthMB"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": "_progressive_sequence"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": "_progressive_sequence"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": "_vertical_size"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": "_vertical_size"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": "_vertical_size"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": "_vertical_size"}, "216": {"type": "MIPS_HI16", "symbol": "", "original": "_picWidth"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": "_widthMB"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": "_picHeight"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": "_heightMB"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": "_picWidth"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": "_picHeight"}, "292": {"type": "MIPS_HI16", "symbol": "", "original": "_cWidth"}, "300": {"type": "MIPS_HI16", "symbol": "", "original": "_cHeight"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": "_cWidth"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": "_cHeight"}, "320": {"type": "MIPS_26", "symbol": "_alalcFree", "scope": "LIBRARY"}, "336": {"type": "MIPS_26", "symbol": "_alalcAlloc", "scope": "LIBRARY"}, "356": {"type": "MIPS_26", "symbol": "_alalcAlloc", "scope": "LIBRARY"}, "376": {"type": "MIPS_26", "symbol": "_alalcAlloc", "scope": "LIBRARY"}, "388": {"type": "MIPS_HI16", "symbol": "", "original": "_refBot2"}, "396": {"type": "MIPS_HI16", "symbol": "", "original": "_refFrame0"}, "400": {"type": "MIPS_LO16", "symbol": "", "original": "_refBot2"}, "404": {"type": "MIPS_HI16", "symbol": "", "original": "_refFrame1"}, "412": {"type": "MIPS_HI16", "symbol": "", "original": "_refFrame2"}, "416": {"type": "MIPS_HI16", "symbol": "", "original": "_refTop0"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_refTop1"}, "428": {"type": "MIPS_HI16", "symbol": "", "original": "_refTop2"}, "432": {"type": "MIPS_LO16", "symbol": "", "original": "_refFrame0"}, "436": {"type": "MIPS_LO16", "symbol": "", "original": "_refFrame1"}, "444": {"type": "MIPS_LO16", "symbol": "", "original": "_refFrame2"}, "448": {"type": "MIPS_LO16", "symbol": "", "original": "_refTop0"}, "452": {"type": "MIPS_LO16", "symbol": "", "original": "_refTop1"}, "460": {"type": "MIPS_LO16", "symbol": "", "original": "_refTop2"}, "496": {"type": "MIPS_HI16", "symbol": "", "original": "_refBot0"}, "500": {"type": "MIPS_LO16", "symbol": "", "original": "_refBot0"}, "504": {"type": "MIPS_HI16", "symbol": "", "original": "_refBot1"}, "508": {"type": "MIPS_LO16", "symbol": "", "original": "_refBot1"}, "512": {"type": "MIPS_26", "symbol": "_initRefImages", "scope": "LIBRARY", "original": ".text"}, "520": {"type": "MIPS_LO16", "symbol": "", "original": "_picWidth"}, "528": {"type": "MIPS_26", "symbol": "_RefImageInit", "scope": "LIBRARY", "original": ".text"}, "532": {"type": "MIPS_LO16", "symbol": "", "original": "_picHeight"}, "536": {"type": "MIPS_LO16", "symbol": "", "original": "_picWidth"}, "544": {"type": "MIPS_26", "symbol": "_RefImageInit", "scope": "LIBRARY", "original": ".text"}, "548": {"type": "MIPS_LO16", "symbol": "", "original": "_picHeight"}, "552": {"type": "MIPS_LO16", "symbol": "", "original": "_picWidth"}, "560": {"type": "MIPS_26", "symbol": "_RefImageInit", "scope": "LIBRARY", "original": ".text"}, "564": {"type": "MIPS_LO16", "symbol": "", "original": "_picHeight"}, "568": {"type": "MIPS_LO16", "symbol": "", "original": "_picHeight"}, "576": {"type": "MIPS_LO16", "symbol": "", "original": "_picWidth"}, "588": {"type": "MIPS_26", "symbol": "_RefImageInit", "scope": "LIBRARY", "original": ".text"}, "596": {"type": "MIPS_LO16", "symbol": "", "original": "_picHeight"}, "604": {"type": "MIPS_LO16", "symbol": "", "original": "_picWidth"}, "616": {"type": "MIPS_26", "symbol": "_RefImageInit", "scope": "LIBRARY", "original": ".text"}, "624": {"type": "MIPS_LO16", "symbol": "", "original": "_picHeight"}, "632": {"type": "MIPS_LO16", "symbol": "", "original": "_picWidth"}, "644": {"type": "MIPS_26", "symbol": "_RefImageInit", "scope": "LIBRARY", "original": ".text"}, "652": {"type": "MIPS_LO16", "symbol": "", "original": "_picHeight"}, "656": {"type": "MIPS_HI16", "symbol": "", "original": "_refBot0"}, "660": {"type": "MIPS_LO16", "symbol": "", "original": "_refBot0"}, "664": {"type": "MIPS_LO16", "symbol": ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(", "original": "_picWidth"}, "676": {"type": "MIPS_26", "symbol": "_RefImageInit", "scope": "LIBRARY", "original": ".text"}, "684": {"type": "MIPS_LO16", "symbol": "", "original": "_picHeight"}, "688": {"type": "MIPS_HI16", "symbol": "", "original": "_refBot1"}, "692": {"type": "MIPS_LO16", "symbol": "", "original": "_refBot1"}, "696": {"type": "MIPS_LO16", "symbol": "", "original": "_picWidth"}, "708": {"type": "MIPS_26", "symbol": "_RefImageInit", "scope": "LIBRARY", "original": ".text"}, "716": {"type": "MIPS_LO16", "symbol": "", "original": "_picHeight"}, "720": {"type": "MIPS_HI16", "symbol": "", "original": "_refBot2"}, "724": {"type": "MIPS_LO16", "symbol": "", "original": "_refBot2"}, "728": {"type": "MIPS_LO16", "symbol": "", "original": "_picWidth"}, "784": {"type": "MIPS_26", "symbol": "_RefImageInit", "scope": "LIBRARY", "original": ".text"}}}}, "0fb09740b508511ef1737edbc5413a7327968596": {"d84348f5": {"type": "FUNCTION", "size": 760, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"48": {"type": "MIPS_GPREL16", "symbol": "_isMpeg2"}, "72": {"type": "MIPS_GPREL16", "symbol": "_picture_structure"}, "76": {"type": "MIPS_GPREL16", "symbol": "_frame_pred_frame_dct"}, "80": {"type": "MIPS_GPREL16", "symbol": "_matrix_coefficients"}, "84": {"type": "MIPS_GPREL16", "symbol": "_progressive_sequence"}, "88": {"type": "MIPS_GPREL16", "symbol": "_chroma_format"}, "92": {"type": "MIPS_GPREL16", "symbol": "_progressive_frame"}, "96": {"type": "MIPS_GPREL16", "symbol": "_horizontal_size"}, "112": {"type": "MIPS_GPREL16", "symbol": "_widthMB"}, "116": {"type": "MIPS_GPREL16", "symbol": "_progressive_sequence"}, "124": {"type": "MIPS_GPREL16", "symbol": "_vertical_size"}, "144": {"type": "MIPS_GPREL16", "symbol": "_vertical_size"}, "156": {"type": "MIPS_GPREL16", "symbol": "_widthMB"}, "172": {"type": "MIPS_GPREL16", "symbol": "_heightMB"}, "176": {"type": "MIPS_GPREL16", "symbol": "_picWidth"}, "184": {"type": "MIPS_GPREL16", "symbol": "_picHeight"}, "232": {"type": "MIPS_GPREL16", "symbol": "_cWidth"}, "240": {"type": "MIPS_GPREL16", "symbol": "_cHeight"}, "244": {"type": "MIPS_26", "symbol": "_alalcFree", "scope": "LIBRARY"}, "260": {"type": "MIPS_26", "symbol": "_alalcAlloc", "scope": "LIBRARY"}, "280": {"type": "MIPS_26", "symbol": "_alalcAlloc", "scope": "LIBRARY"}, "300": {"type": "MIPS_26", "symbol": "_alalcAlloc", "scope": "LIBRARY"}, "312": {"type": "MIPS_HI16", "symbol": "", "original": "_refBot2"}, "320": {"type": "MIPS_HI16", "symbol": "", "original": "_refFrame0"}, "324": {"type": "MIPS_LO16", "symbol": "", "original": "_refBot2"}, "328": {"type": "MIPS_HI16", "symbol": "", "original": "_refFrame1"}, "336": {"type": "MIPS_HI16", "symbol": "", "original": "_refFrame2"}, "340": {"type": "MIPS_HI16", "symbol": "", "original": "_refTop0"}, "344": {"type": "MIPS_HI16", "symbol": "", "original": "_refTop1"}, "352": {"type": "MIPS_HI16", "symbol": "", "original": "_refTop2"}, "356": {"type": "MIPS_HI16", "symbol": "", "original": "_refBot0"}, "360": {"type": "MIPS_HI16", "symbol": "", "original": "_refBot1"}, "368": {"type": "MIPS_LO16", "symbol": "", "original": "_refFrame0"}, "372": {"type": "MIPS_LO16", "symbol": "", "original": "_refFrame1"}, "376": {"type": "MIPS_LO16", "symbol": "", "original": "_refFrame2"}, "384": {"type": "MIPS_LO16", "symbol": "", "original": "_refTop0"}, "388": {"type": "MIPS_LO16", "symbol": "", "original": "_refTop1"}, "392": {"type": "MIPS_LO16", "symbol": "", "original": "_refTop2"}, "400": {"type": "MIPS_LO16", "symbol": "", "original": "_refBot0"}, "404": {"type": "MIPS_LO16", "symbol": "", "original": "_refBot1"}, "444": {"type": "MIPS_26", "symbol": "_initRefImages", "scope": "LIBRARY", "original": ".text"}, "452": {"type": "MIPS_GPREL16", "symbol": "_picWidth"}, "460": {"type": "MIPS_26", "symbol": "_RefImageInit", "scope": "LIBRARY", "original": ".text"}, "464": {"type": "MIPS_GPREL16", "symbol": "_picHeight"}, "468": {"type": "MIPS_GPREL16", "symbol": "_picWidth"}, "476": {"type": "MIPS_26", "symbol": "_RefImageInit", "scope": "LIBRARY", "original": ".text"}, "480": {"type": "MIPS_GPREL16", "symbol": "_picHeight"}, "484": {"type": "MIPS_GPREL16", "symbol": "_picWidth"}, "492": {"type": "MIPS_26", "symbol": "_RefImageInit", "scope": "LIBRARY", "original": ".text"}, "496": {"type": "MIPS_GPREL16", "symbol": "_picHeight"}, "500": {"type": "MIPS_GPREL16", "symbol": "_picHeight"}, "508": {"type": "MIPS_GPREL16", "symbol": "_picWidth"}, "520": {"type": "MIPS_26", "symbol": "_RefImageInit", "scope": "LIBRARY", "original": ".text"}, "528": {"type": "MIPS_GPREL16", "symbol": "_picHeight"}, "536": {"type": "MIPS_GPREL16", "symbol": "_picWidth"}, "548": {"type": "MIPS_26", "symbol": "_RefImageInit", "scope": "LIBRARY", "original": ".text"}, "556": {"type": "MIPS_GPREL16", "symbol": "_picHeight"}, "564": {"type": "MIPS_GPREL16", "symbol": "_picWidth"}, "576": {"type": "MIPS_26", "symbol": "_RefImageInit", "scope": "LIBRARY", "original": ".text"}, "584": {"type": "MIPS_GPREL16", "symbol": "_picHeight"}, "592": {"type": "MIPS_GPREL16", "symbol": "_picWidth"}, "604": {"type": "MIPS_26", "symbol": "_RefImageInit", "scope": "LIBRARY", "original": ".text"}, "612": {"type": "MIPS_GPREL16", "symbol": "_picHeight"}, "620": {"type": "MIPS_GPREL16", "symbol": "_picWidth"}, "632": {"type": "MIPS_26", "symbol": "_RefImageInit", "scope": "LIBRARY", "original": ".text"}, "640": {"type": "MIPS_GPREL16", "symbol": "_picHeight"}, "644": {"type": "MIPS_HI16", "symbol": "", "original": "_refBot2"}, "648": {"type": "MIPS_LO16", "symbol": "", "original": "_refBot2"}, "652": {"type": "MIPS_GPREL16", "symbol": "_picWidth"}, "708": {"type": "MIPS_26", "symbol": "_RefImageInit", "scope": "LIBRARY", "original": ".text"}}}}, "374d81b832fe25c28e8c8546c0df72af6ef06848": {"f24f6316": {"type": "FUNCTION", "size": 844, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_isMpeg2"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": "_isMpeg2"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": "_progressive_sequence"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": "_chroma_format"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": "_progressive_frame"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": "_picture_structure"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": "_frame_pred_frame_dct"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": "_matrix_coefficients"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": "_picture_structure"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": "_frame_pred_frame_dct"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": "_matrix_coefficients"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": "_progressive_sequence"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": "_chroma_format"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": "_progressive_frame"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": "_horizontal_size"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": "_widthMB"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": "_horizontal_size"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": "_heightMB"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": "_heightMB"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": "_widthMB"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": "_progressive_sequence"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": "_progressive_sequence"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": "_vertical_size"}, "184": {"type": "MIPS_LO16", "symbo)PS2SDB", 8192}, + std::string_view{R"PS2SDB(l": "", "original": "_vertical_size"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": "_vertical_size"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": "_vertical_size"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": "_picWidth"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": "_widthMB"}, "232": {"type": "MIPS_HI16", "symbol": "", "original": "_picHeight"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": "_heightMB"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": "_picWidth"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": "_picHeight"}, "300": {"type": "MIPS_HI16", "symbol": "", "original": "_cWidth"}, "308": {"type": "MIPS_HI16", "symbol": "", "original": "_cHeight"}, "312": {"type": "MIPS_LO16", "symbol": "", "original": "_cWidth"}, "324": {"type": "MIPS_LO16", "symbol": "", "original": "_cHeight"}, "328": {"type": "MIPS_26", "symbol": "_alalcFree", "scope": "LIBRARY"}, "344": {"type": "MIPS_26", "symbol": "_alalcAlloc", "scope": "LIBRARY"}, "364": {"type": "MIPS_26", "symbol": "_alalcAlloc", "scope": "LIBRARY"}, "384": {"type": "MIPS_26", "symbol": "_alalcAlloc", "scope": "LIBRARY"}, "396": {"type": "MIPS_HI16", "symbol": "", "original": "_refBot2"}, "404": {"type": "MIPS_HI16", "symbol": "", "original": "_refFrame0"}, "408": {"type": "MIPS_LO16", "symbol": "", "original": "_refBot2"}, "412": {"type": "MIPS_HI16", "symbol": "", "original": "_refFrame1"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "_refFrame2"}, "424": {"type": "MIPS_HI16", "symbol": "", "original": "_refTop0"}, "428": {"type": "MIPS_HI16", "symbol": "", "original": "_refTop1"}, "436": {"type": "MIPS_HI16", "symbol": "", "original": "_refTop2"}, "440": {"type": "MIPS_LO16", "symbol": "", "original": "_refFrame0"}, "444": {"type": "MIPS_LO16", "symbol": "", "original": "_refFrame1"}, "452": {"type": "MIPS_LO16", "symbol": "", "original": "_refFrame2"}, "456": {"type": "MIPS_LO16", "symbol": "", "original": "_refTop0"}, "460": {"type": "MIPS_LO16", "symbol": "", "original": "_refTop1"}, "468": {"type": "MIPS_LO16", "symbol": "", "original": "_refTop2"}, "504": {"type": "MIPS_HI16", "symbol": "", "original": "_refBot0"}, "508": {"type": "MIPS_LO16", "symbol": "", "original": "_refBot0"}, "512": {"type": "MIPS_HI16", "symbol": "", "original": "_refBot1"}, "516": {"type": "MIPS_LO16", "symbol": "", "original": "_refBot1"}, "520": {"type": "MIPS_26", "symbol": "_initRefImages", "scope": "LIBRARY", "original": ".text"}, "528": {"type": "MIPS_LO16", "symbol": "", "original": "_picWidth"}, "536": {"type": "MIPS_26", "symbol": "_RefImageInit", "scope": "LIBRARY", "original": ".text"}, "540": {"type": "MIPS_LO16", "symbol": "", "original": "_picHeight"}, "544": {"type": "MIPS_LO16", "symbol": "", "original": "_picWidth"}, "552": {"type": "MIPS_26", "symbol": "_RefImageInit", "scope": "LIBRARY", "original": ".text"}, "556": {"type": "MIPS_LO16", "symbol": "", "original": "_picHeight"}, "560": {"type": "MIPS_LO16", "symbol": "", "original": "_picWidth"}, "568": {"type": "MIPS_26", "symbol": "_RefImageInit", "scope": "LIBRARY", "original": ".text"}, "572": {"type": "MIPS_LO16", "symbol": "", "original": "_picHeight"}, "576": {"type": "MIPS_LO16", "symbol": "", "original": "_picHeight"}, "584": {"type": "MIPS_LO16", "symbol": "", "original": "_picWidth"}, "596": {"type": "MIPS_26", "symbol": "_RefImageInit", "scope": "LIBRARY", "original": ".text"}, "604": {"type": "MIPS_LO16", "symbol": "", "original": "_picHeight"}, "612": {"type": "MIPS_LO16", "symbol": "", "original": "_picWidth"}, "624": {"type": "MIPS_26", "symbol": "_RefImageInit", "scope": "LIBRARY", "original": ".text"}, "632": {"type": "MIPS_LO16", "symbol": "", "original": "_picHeight"}, "640": {"type": "MIPS_LO16", "symbol": "", "original": "_picWidth"}, "652": {"type": "MIPS_26", "symbol": "_RefImageInit", "scope": "LIBRARY", "original": ".text"}, "660": {"type": "MIPS_LO16", "symbol": "", "original": "_picHeight"}, "664": {"type": "MIPS_HI16", "symbol": "", "original": "_refBot0"}, "668": {"type": "MIPS_LO16", "symbol": "", "original": "_refBot0"}, "672": {"type": "MIPS_LO16", "symbol": "", "original": "_picWidth"}, "684": {"type": "MIPS_26", "symbol": "_RefImageInit", "scope": "LIBRARY", "original": ".text"}, "692": {"type": "MIPS_LO16", "symbol": "", "original": "_picHeight"}, "696": {"type": "MIPS_HI16", "symbol": "", "original": "_refBot1"}, "700": {"type": "MIPS_LO16", "symbol": "", "original": "_refBot1"}, "704": {"type": "MIPS_LO16", "symbol": "", "original": "_picWidth"}, "716": {"type": "MIPS_26", "symbol": "_RefImageInit", "scope": "LIBRARY", "original": ".text"}, "724": {"type": "MIPS_LO16", "symbol": "", "original": "_picHeight"}, "728": {"type": "MIPS_HI16", "symbol": "", "original": "_refBot2"}, "732": {"type": "MIPS_LO16", "symbol": "", "original": "_refBot2"}, "736": {"type": "MIPS_LO16", "symbol": "", "original": "_picWidth"}, "792": {"type": "MIPS_26", "symbol": "_RefImageInit", "scope": "LIBRARY", "original": ".text"}}}}, "8dc77f6e1451d50ea16a68253c4945569c7df83f": {"aafeea29": {"type": "FUNCTION", "size": 788, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"216": {"type": "MIPS_26", "symbol": "_sceMpegAlalcFree", "scope": "LIBRARY"}, "236": {"type": "MIPS_26", "symbol": "_sceMpegAlalcAlloc", "scope": "LIBRARY"}, "260": {"type": "MIPS_26", "symbol": "_sceMpegAlalcAlloc", "scope": "LIBRARY"}, "284": {"type": "MIPS_26", "symbol": "_sceMpegAlalcAlloc", "scope": "LIBRARY"}}}}}, "_initRefImages": {"bf332bf23d20d9ecf7ecfa4d9a08a1bc1da58dbf": {"00000000": {"type": "FUNCTION", "size": 224, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "15eef923f57e47cfa6c028e3ccfd9cafe62eda56": {"5c073f3f": {"type": "FUNCTION", "size": 232, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_picWidth"}, "4": {"type": "MIPS_HI16", "symbol": "", "original": "_picHeight"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "_picWidth"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "_picHeight"}}}}, "893a0ae810e1b10ce79fa6302767277f344764eb": {"f6e44662": {"type": "FUNCTION", "size": 224, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"0": {"type": "MIPS_GPREL16", "symbol": "_picHeight"}, "8": {"type": "MIPS_GPREL16", "symbol": "_picWidth"}}}}}, "_setDefaultQM": {"2a79fd17eb813007531fd9b4dfb9560dc7bb1aec": {"448c8090": {"type": "FUNCTION", "size": 212, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "_waitIpuIdle"}, "72": {"type": "MIPS_26", "symbol": "_waitIpuIdle"}, "80": {"type": "MIPS_26", "symbol": "DIntr"}, "140": {"type": "MIPS_26", "symbol": "EIntr"}, "152": {"type": "MIPS_26", "symbol": "_sendIpuCommand", "scope": "LIBRARY"}, "160": {"type": "MIPS_26", "symbol": "_waitIpuIdle"}, "180": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}}}}, )PS2SDB", 8192}, + std::string_view{R"PS2SDB("6e0f44873ce80568dcf0c9fb16ccdbc583b17a40": {"93a36276": {"type": "FUNCTION", "size": 224, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "_waitIpuIdle"}, "72": {"type": "MIPS_26", "symbol": "_waitIpuIdle"}, "80": {"type": "MIPS_26", "symbol": "DIntr"}, "152": {"type": "MIPS_26", "symbol": "EIntr"}, "164": {"type": "MIPS_26", "symbol": "_sendIpuCommand", "scope": "LIBRARY"}, "172": {"type": "MIPS_26", "symbol": "_waitIpuIdle"}, "192": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}}}}, "0b544e093c9a9ca276852d1acf52c79ede544ede": {"93a36276": {"type": "FUNCTION", "size": 224, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "_waitIpuIdle"}, "72": {"type": "MIPS_26", "symbol": "_waitIpuIdle"}, "80": {"type": "MIPS_26", "symbol": "DIntr"}, "152": {"type": "MIPS_26", "symbol": "EIntr"}, "164": {"type": "MIPS_26", "symbol": "_sendIpuCommand", "scope": "LIBRARY"}, "172": {"type": "MIPS_26", "symbol": "_waitIpuIdle"}, "192": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}}}}, "e9e49b76bb9f25c78472b39a5f85fe1ba07d589f": {"7a584e4d": {"type": "FUNCTION", "size": 192, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "_waitIpuIdle"}, "68": {"type": "MIPS_26", "symbol": "_waitIpuIdle"}, "132": {"type": "MIPS_26", "symbol": "_sendIpuCommand", "scope": "LIBRARY"}, "140": {"type": "MIPS_26", "symbol": "_waitIpuIdle"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}}}}, "d7164b8d6762e252c007866abd7dd2d2a91fe680": {"2eda81d9": {"type": "FUNCTION", "size": 180, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"24": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "36": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}, "44": {"type": "MIPS_26", "symbol": "_waitIpuIdle"}, "60": {"type": "MIPS_26", "symbol": "_waitIpuIdle"}, "124": {"type": "MIPS_26", "symbol": "_sendIpuCommand", "scope": "LIBRARY"}, "132": {"type": "MIPS_26", "symbol": "_waitIpuIdle"}, "144": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "152": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}}}}, "4e177fd53d68b253a60454f28967325fb3080370": {"312e9e9e": {"type": "FUNCTION", "size": 200, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.6.1"], "compiler_versions": ["2.3.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "_waitIpuIdle"}, "72": {"type": "MIPS_26", "symbol": "_waitIpuIdle"}, "140": {"type": "MIPS_26", "symbol": "_sendIpuCommand", "scope": "LIBRARY"}, "148": {"type": "MIPS_26", "symbol": "_waitIpuIdle"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback", "scope": "LIBRARY"}}}}}, "_sequenceExtension": {"85f516d95b70ee8f9d0f4ce807bfa1ce234cd242": {"7431a6cb": {"type": "FUNCTION", "size": 304, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "_ipuSetMPEG1", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY", "original": ".text"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "188": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY", "original": ".text"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "4b3212460118f4e0990dc1ba673d94c2832cc934": {"7431a6cb": {"type": "FUNCTION", "size": 304, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "_ipuSetMPEG1", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY", "original": ".text"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "188": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY", "original": ".text"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "e49b866fab324e6bf7fcd4dc83a180f6560a4110": {"df39744a": {"type": "FUNCTION", "size": 356, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_isMpeg2"}, "40": {"type": "MIPS_26", "symbol": "_ipuSetMPEG1", "scope": "LIBRARY"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "_isMpeg2"}, "48": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": "_chroma_format"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": "_chroma_format"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "108": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY", "original": ".text"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": "_profile_and_level_indication"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": "_profile_and_level_indication"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": "_progressive_sequence"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": "_progressive_sequence"}, "144": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": "_frame_rate_extension_d"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": "_profile_and_level_indication"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": "_frame_rate_extension_n"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": "_low_delay"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": "_frame_rate_extension_d"}, "200": {"type": "MIPS_LO16", "symbol": "", "origina)PS2SDB", 8192}, + std::string_view{R"PS2SDB(l": "_frame_rate_extension_n"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": "_low_delay"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "228": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY", "original": ".text"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": "_horizontal_size"}, "240": {"type": "MIPS_HI16", "symbol": "", "original": "_vertical_size"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": "_horizontal_size"}, "248": {"type": "MIPS_HI16", "symbol": "", "original": "_bit_rate_value"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": "_vertical_size"}, "256": {"type": "MIPS_HI16", "symbol": "", "original": "_vbv_buffer_size_value"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": "_bit_rate_value"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": "_vbv_buffer_size_value"}, "332": {"type": "MIPS_LO16", "symbol": "", "original": "_horizontal_size"}, "336": {"type": "MIPS_LO16", "symbol": "", "original": "_vertical_size"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": "_bit_rate_value"}, "344": {"type": "MIPS_LO16", "symbol": "", "original": "_vbv_buffer_size_value"}}}}, "08b1ef8340c3b2c2791cb196ae4153f01e77fb38": {"96dcfe57": {"type": "FUNCTION", "size": 312, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "_ipuSetMPEG1", "scope": "LIBRARY"}, "40": {"type": "MIPS_GPREL16", "symbol": "_isMpeg2"}, "44": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY"}, "92": {"type": "MIPS_GPREL16", "symbol": "_chroma_format"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "100": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY", "original": ".text"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "120": {"type": "MIPS_GPREL16", "symbol": "_profile_and_level_indication"}, "124": {"type": "MIPS_GPREL16", "symbol": "_progressive_sequence"}, "128": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY"}, "140": {"type": "MIPS_GPREL16", "symbol": "_profile_and_level_indication"}, "168": {"type": "MIPS_GPREL16", "symbol": "_frame_rate_extension_d"}, "176": {"type": "MIPS_GPREL16", "symbol": "_frame_rate_extension_n"}, "184": {"type": "MIPS_GPREL16", "symbol": "_low_delay"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "200": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY", "original": ".text"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "208": {"type": "MIPS_GPREL16", "symbol": "_horizontal_size"}, "216": {"type": "MIPS_GPREL16", "symbol": "_vertical_size"}, "224": {"type": "MIPS_GPREL16", "symbol": "_bit_rate_value"}, "232": {"type": "MIPS_GPREL16", "symbol": "_vbv_buffer_size_value"}, "288": {"type": "MIPS_GPREL16", "symbol": "_horizontal_size"}, "292": {"type": "MIPS_GPREL16", "symbol": "_vertical_size"}, "296": {"type": "MIPS_GPREL16", "symbol": "_bit_rate_value"}, "300": {"type": "MIPS_GPREL16", "symbol": "_vbv_buffer_size_value"}}}}, "d3cd6fd08ca59820f9f56ec295c27934b0e77a7c": {"a0777e7d": {"type": "FUNCTION", "size": 320, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"72": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "132": {"type": "MIPS_26", "symbol": "_sceMpegError", "scope": "LIBRARY"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "160": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "204": {"type": "MIPS_26", "symbol": "_sceMpegError", "scope": "LIBRARY"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "3006177cfa571dc1be1f75feeff43b334cd450ec": {"159bbe0d": {"type": "FUNCTION", "size": 296, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "_ipuSetMPEG1", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY", "original": ".text"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "180": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY", "original": ".text"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "_sequenceDisplayExtension": {"626ae66a1033eacb295b09963daf081269ffd81c": {"7d705c1f": {"type": "FUNCTION", "size": 140, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY"}, "28": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY"}, "44": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY"}}}}, "d98256daccc4ba402aa4842e09829ff6fea2626e": {"7d705c1f": {"type": "FUNCTION", "size": 140, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY"}, "28": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY"}, "44": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY"}}}}, "7ab21153e1db64217ba469884d5e6f7ca9116014": {"f81c05de": {"type": "FUNCTION", "size": 160, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": "_color_description"}, "24": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": "_video_format"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "_video_format"}, "36": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": "_color_description"}, "56": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": "_color_primaries"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": "_transfer_characteristics"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": "_color_primaries"}, "72": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": "_matrix_coefficien)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ts"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": "_transfer_characteristics"}, "88": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": "_matrix_coefficients"}, "104": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": "_display_horizontal_size"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": "_display_vertical_size"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": "_display_horizontal_size"}, "120": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY"}, "128": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "_display_vertical_size"}}}}, "50ff8abe4067bde725dd41037e80c55a6f18b222": {"0fc10b46": {"type": "FUNCTION", "size": 116, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY"}, "16": {"type": "MIPS_GPREL16", "symbol": "_video_format"}, "20": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY"}, "32": {"type": "MIPS_GPREL16", "symbol": "_color_description"}, "36": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY"}, "44": {"type": "MIPS_GPREL16", "symbol": "_color_primaries"}, "48": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY"}, "56": {"type": "MIPS_GPREL16", "symbol": "_transfer_characteristics"}, "60": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY"}, "68": {"type": "MIPS_GPREL16", "symbol": "_matrix_coefficients"}, "72": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY"}, "80": {"type": "MIPS_GPREL16", "symbol": "_display_horizontal_size"}, "84": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "_nextBit", "scope": "LIBRARY"}, "104": {"type": "MIPS_GPREL16", "symbol": "_display_vertical_size"}}}}, "bcceaf2aec5f07d7e7bf365a9dc2623fd4c61879": {"c82b56af": {"type": "FUNCTION", "size": 140, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "28": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "44": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}}}}}, "_sequenceScalableExtension": {"c6533793ba6790ef969bee79cef58f7427fb5f6e": {"3d5a1e12": {"type": "FUNCTION", "size": 12, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "4": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY", "original": ".text"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}, "5717ea7f": {"type": "FUNCTION", "size": 12, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "4": {"type": "MIPS_26", "symbol": "_sceMpegError", "scope": "LIBRARY"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "53b68b1d1ac1d1fdb21709ed9bc31f21b0f7173e": {"3d5a1e12": {"type": "FUNCTION", "size": 12, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "4": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY", "original": ".text"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "_unknown_extension": {"c6533793ba6790ef969bee79cef58f7427fb5f6e": {"3d5a1e12": {"type": "FUNCTION", "size": 12, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "4": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY", "original": ".text"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}, "5717ea7f": {"type": "FUNCTION", "size": 12, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "4": {"type": "MIPS_26", "symbol": "_sceMpegError", "scope": "LIBRARY"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "53b68b1d1ac1d1fdb21709ed9bc31f21b0f7173e": {"3d5a1e12": {"type": "FUNCTION", "size": 12, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "4": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY", "original": ".text"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "_pictureSpatialScalableExtension": {"c6533793ba6790ef969bee79cef58f7427fb5f6e": {"3d5a1e12": {"type": "FUNCTION", "size": 12, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "4": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY", "original": ".text"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}, "5717ea7f": {"type": "FUNCTION", "size": 12, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "4": {"type": "MIPS_26", "symbol": "_sceMpegError", "scope": "LIBRARY"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "53b68b1d1ac1d1fdb21709ed9bc31f21b0f7173e": {"3d5a1e12": {"type": "FUNCTION", "size": 12, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "4": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY", "original": ".text"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "_pictureTemporalSca)PS2SDB", 8192}, + std::string_view{R"PS2SDB(lableExtension": {"c6533793ba6790ef969bee79cef58f7427fb5f6e": {"3d5a1e12": {"type": "FUNCTION", "size": 12, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "4": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY", "original": ".text"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}, "5717ea7f": {"type": "FUNCTION", "size": 12, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "4": {"type": "MIPS_26", "symbol": "_sceMpegError", "scope": "LIBRARY"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "53b68b1d1ac1d1fdb21709ed9bc31f21b0f7173e": {"3d5a1e12": {"type": "FUNCTION", "size": 12, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "4": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY", "original": ".text"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "_defStopDMA": {"2d0cc84a4c23c34de847f2fc280b5fa3b3f7ea94": {"ea923db4": {"type": "FUNCTION", "size": 12, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_26", "symbol": "sceIpuStopDMA"}}}}, "4ef006291ba8fb6806e356bb3c79bd8cd95e646e": {"e3332031": {"type": "FUNCTION", "size": 36, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceIpuStopDMA"}}}}, "bf1f90d4a7b06ee0e06e4a73586f5c34d7bdface": {"e3332031": {"type": "FUNCTION", "size": 36, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceIpuStopDMA"}}}}}, "_defRestartDMA": {"2d0cc84a4c23c34de847f2fc280b5fa3b3f7ea94": {"42a7de8a": {"type": "FUNCTION", "size": 12, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_26", "symbol": "sceIpuRestartDMA"}}}}, "4ef006291ba8fb6806e356bb3c79bd8cd95e646e": {"fbe4f88a": {"type": "FUNCTION", "size": 36, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceIpuRestartDMA"}}}}, "bf1f90d4a7b06ee0e06e4a73586f5c34d7bdface": {"fbe4f88a": {"type": "FUNCTION", "size": 36, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceIpuRestartDMA"}}}}}, "_sysbitInit": {"4c17b6ba382616f63ae5637b29bab5225f84c1a4": {"7a044c30": {"type": "FUNCTION", "size": 52, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "_sysbitFlush", "scope": "LIBRARY", "original": ".text"}}}}}, "_sysbitNext": {"e508050391be2014956561f01c4d588451fa6d5a": {"00000000": {"type": "FUNCTION", "size": 28, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "aac526b609245877c58008164c24efea666422b0": {"00000000": {"type": "FUNCTION", "size": 32, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.1"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}}, "_sysbitFlush": {"9a02e17e66e4ca4c8abbb77a5b4e1cdaf2592f00": {"00000000": {"type": "FUNCTION", "size": 152, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "ced02cd0ae83757ed905f099ffbbd3dcde4c8e44": {"00000000": {"type": "FUNCTION", "size": 136, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}}, "_sysbitGet": {"6909e094b95d88521495678ccecaac0fe3d656e3": {"8ad8ffe3": {"type": "FUNCTION", "size": 76, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "_sysbitNext", "scope": "LIBRARY", "original": ".text"}, "40": {"type": "MIPS_26", "symbol": "_sysbitFlush", "scope": "LIBRARY", "original": ".text"}}}}}, "_sysbitMarker": {"89f26d05df6a41932e1c016fdd4d2b43ef1b22fc": {"d4fe744e": {"type": "FUNCTION", "size": 68, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "_sysbitNext", "scope": "LIBRARY", "original": ".text"}, "36": {"type": "MIPS_26", "symbol": "_sysbitFlush", "scope": "LIBRARY", "original": ".text"}}}}}, "_sysbitJump": {"19a4f22c5fa5a2b6165140a927cd08b2474c358a": {"9dcf8460": {"type": "FUNCTION", "size": 84, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.)PS2SDB", 8192}, + std::string_view{R"PS2SDB(0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"76": {"type": "MIPS_26", "symbol": "_sysbitFlush", "scope": "LIBRARY", "original": ".text"}}}}}, "_sysbitPtr": {"a407c4c106fd52215c05d61f49c52d5cc814e9e2": {"00000000": {"type": "FUNCTION", "size": 44, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "_type2id": {"0ad77aa6a28346c5e4f040f7bc882f21eeac3006": {"46454231": {"type": "FUNCTION", "size": 136, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "ee1bf2c3ce919adf5bed949428486633f477166a": {"eefc54a3": {"type": "FUNCTION", "size": 144, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "_id2type": {"10fa70f1f5bb1d7ddcf7d8c5d8f0783dda91553e": {"a8c4f009": {"type": "FUNCTION", "size": 508, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceMpegDemuxPssRing": {"ae8684323183a036168b22c164d0e1bb1e89a3cf": {"fed74686": {"type": "FUNCTION", "size": 760, "library": "libmpeg", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"88": {"type": "MIPS_26", "symbol": "_sysbitInit", "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "_sysbitNext", "scope": "LIBRARY"}, "244": {"type": "MIPS_26", "symbol": "_pack_header", "scope": "LIBRARY", "original": ".text"}, "268": {"type": "MIPS_26", "symbol": "_sysbitPtr", "scope": "LIBRARY"}, "284": {"type": "MIPS_26", "symbol": "_sysbitPtr", "scope": "LIBRARY"}, "356": {"type": "MIPS_26", "symbol": "_PES_packet", "scope": "LIBRARY", "original": ".text"}, "476": {"type": "MIPS_26", "symbol": "_sysbitPtr", "scope": "LIBRARY"}, "492": {"type": "MIPS_26", "symbol": "_sysbitPtr", "scope": "LIBRARY"}, "580": {"type": "MIPS_26", "symbol": "_sysbitNext", "scope": "LIBRARY"}, "600": {"type": "MIPS_26", "symbol": "_sysbitNext", "scope": "LIBRARY"}, "620": {"type": "MIPS_26", "symbol": "_sysbitNext", "scope": "LIBRARY"}, "688": {"type": "MIPS_26", "symbol": "_sysbitNext", "scope": "LIBRARY"}}}}, "b9bbf65f177ccdd4f22ab760c20c475a4df8d7f4": {"25bb598b": {"type": "FUNCTION", "size": 780, "library": "libmpeg", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"88": {"type": "MIPS_26", "symbol": "_sysbitInit", "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "_sysbitNext", "scope": "LIBRARY"}, "240": {"type": "MIPS_26", "symbol": "_pack_header", "scope": "LIBRARY", "original": ".text"}, "264": {"type": "MIPS_26", "symbol": "_sysbitPtr", "scope": "LIBRARY"}, "280": {"type": "MIPS_26", "symbol": "_sysbitPtr", "scope": "LIBRARY"}, "368": {"type": "MIPS_26", "symbol": "_PES_packet", "scope": "LIBRARY", "original": ".text"}, "484": {"type": "MIPS_26", "symbol": "_sysbitPtr", "scope": "LIBRARY"}, "500": {"type": "MIPS_26", "symbol": "_sysbitPtr", "scope": "LIBRARY"}, "600": {"type": "MIPS_26", "symbol": "_sysbitNext", "scope": "LIBRARY"}, "620": {"type": "MIPS_26", "symbol": "_sysbitNext", "scope": "LIBRARY"}, "640": {"type": "MIPS_26", "symbol": "_sysbitNext", "scope": "LIBRARY"}, "708": {"type": "MIPS_26", "symbol": "_sysbitNext", "scope": "LIBRARY"}}}}, "8f7580bf4a4ac8c90cab4b4c18e35cca22688060": {"2e6f7f81": {"type": "FUNCTION", "size": 752, "library": "libmpeg", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"88": {"type": "MIPS_26", "symbol": "_sysbitInit", "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "_sysbitNext", "scope": "LIBRARY"}, "244": {"type": "MIPS_26", "symbol": "_pack_header", "scope": "LIBRARY", "original": ".text"}, "268": {"type": "MIPS_26", "symbol": "_sysbitPtr", "scope": "LIBRARY"}, "284": {"type": "MIPS_26", "symbol": "_sysbitPtr", "scope": "LIBRARY"}, "352": {"type": "MIPS_26", "symbol": "_PES_packet", "scope": "LIBRARY", "original": ".text"}, "468": {"type": "MIPS_26", "symbol": "_sysbitPtr", "scope": "LIBRARY"}, "484": {"type": "MIPS_26", "symbol": "_sysbitPtr", "scope": "LIBRARY"}, "572": {"type": "MIPS_26", "symbol": "_sysbitNext", "scope": "LIBRARY"}, "592": {"type": "MIPS_26", "symbol": "_sysbitNext", "scope": "LIBRARY"}, "612": {"type": "MIPS_26", "symbol": "_sysbitNext", "scope": "LIBRARY"}, "680": {"type": "MIPS_26", "symbol": "_sysbitNext", "scope": "LIBRARY"}}}}, "03df840afe8f6571729fadede842a2477b8c38ed": {"0f8109f4": {"type": "FUNCTION", "size": 716, "library": "libmpeg", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"88": {"type": "MIPS_26", "symbol": "_sysbitInit", "scope": "LIBRARY"}, "200": {"type": "MIPS_26", "symbol": "_sysbitNext", "scope": "LIBRARY"}, "224": {"type": "MIPS_26", "symbol": "_pack_header", "scope": "LIBRARY", "original": ".text"}, "244": {"type": "MIPS_26", "symbol": "_sysbitPtr", "scope": "LIBRARY"}, "260": {"type": "MIPS_26", "symbol": "_sysbitPtr", "scope": "LIBRARY"}, "324": {"type": "MIPS_26", "symbol": "_PES_packet", "scope": "LIBRARY", "original": ".text"}, "436": {"type": "MIPS_26", "symbol": "_sysbitPtr", "scope": "LIBRARY"}, "452": {"type": "MIPS_26", "symbol": "_sysbitPtr", "scope": "LIBRARY"}, "536": {"type": "MIPS_26", "symbol": "_sysbitNext", "scope": "LIBRARY"}, "556": {"type": "MIPS_26", "symbol": "_sysbitNext", "scope": "LIBRARY"}, "576": {"type": "MIPS_26", "symbol": "_sysbitNext", "scope": "LIBRARY"}, "644": {"type": "MIPS_26", "symbol": "_sysbitNext", "scope": "LIBRARY"}}}}, "b757490ff30059d7a6a481fb522c9dc3c80308ab": {"299856f3": {"type": "FUNCTION", "size": 992, "library": "libmpeg", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"336": {"type": "MIPS_26", "symbol": )PS2SDB", 8192}, + std::string_view{R"PS2SDB("_pack_header", "scope": "LIBRARY", "original": ".text"}, "412": {"type": "MIPS_26", "symbol": "_PES_packet", "scope": "LIBRARY", "original": ".text"}}}}}, "sceMpegDemuxPss": {"603a9bdf43edfeb7721c135c5a4942df26b0870d": {"ca4db503": {"type": "FUNCTION", "size": 32, "library": "libmpeg", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceMpegDemuxPssRing", "scope": "LIBRARY", "original": ".text"}}}}}, "sceMpegAddStrCallback": {"9cc0365d1069f95f848ee48425e8e965383b0d1f": {"2294a7f4": {"type": "FUNCTION", "size": 244, "library": "libmpeg", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "_type2id", "scope": "LIBRARY", "original": ".text"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "b1ad1839bf3bf71873a4e2abc3c278be3c1a4376": {"4b9239ab": {"type": "FUNCTION", "size": 248, "library": "libmpeg", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "_type2id", "scope": "LIBRARY", "original": ".text"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "b9c6be625f467de2206eb7fae44133a863d7e0b1": {"489402d4": {"type": "FUNCTION", "size": 252, "library": "libmpeg", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "_type2id", "scope": "LIBRARY", "original": ".text"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "1c8d7af756a8253f3989ee08cdf9f85c30425636": {"3f326509": {"type": "FUNCTION", "size": 304, "library": "libmpeg", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "244": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "9c1c04c4c7051028ad39d385c8a2df8422665f58": {"489402d4": {"type": "FUNCTION", "size": 252, "library": "libmpeg", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.0"], "compiler_versions": ["2.3.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "_type2id", "scope": "LIBRARY", "original": ".text"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "_pack_header": {"5fbefa8aca759bfa00e6957333c10c34a4e9cae0": {"661aa4e4": {"type": "FUNCTION", "size": 336, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "60": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "_sysbitMarker", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "_sysbitMarker", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "120": {"type": "MIPS_26", "symbol": "_sysbitMarker", "scope": "LIBRARY"}, "132": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "148": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "160": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "216": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "244": {"type": "MIPS_26", "symbol": "_sysbitNext", "scope": "LIBRARY"}, "276": {"type": "MIPS_26", "symbol": "_system_header", "scope": "LIBRARY", "original": ".text"}}}}, "084b5428ad5c4d541fdb93bfbb36ce78f6c6f61c": {"b0056e6e": {"type": "FUNCTION", "size": 1704, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"1672": {"type": "MIPS_26", "symbol": "_system_header", "scope": "LIBRARY", "original": ".text"}}}}}, "_system_header": {"1bf1ec95e77f92f2356938af60622b0db09667da": {"d47b1489": {"type": "FUNCTION", "size": 108, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "36": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "60": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "_sysbitNext", "scope": "LIBRARY"}}}}, "4115f10989468ad4cf06aedb82460920159ffc53": {"00000000": {"type": "FUNCTION", "size": 464, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_PES_packet": {"fd3b54fc31280620dc45a5f138c7ffd52396c6e3": {"5faf2632": {"type": "FUNCTION", "size": 1456, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "108": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "120": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "140": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "300": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "312": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "328": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "340": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "356": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "372": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "388": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "404": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "444": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "456": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "468": {"type": "MIPS)PS2SDB", 8192}, + std::string_view{R"PS2SDB(_26", "symbol": "_sysbitMarker", "scope": "LIBRARY"}, "480": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "492": {"type": "MIPS_26", "symbol": "_sysbitMarker", "scope": "LIBRARY"}, "504": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "516": {"type": "MIPS_26", "symbol": "_sysbitMarker", "scope": "LIBRARY"}, "584": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "596": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "608": {"type": "MIPS_26", "symbol": "_sysbitMarker", "scope": "LIBRARY"}, "620": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "632": {"type": "MIPS_26", "symbol": "_sysbitMarker", "scope": "LIBRARY"}, "644": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "656": {"type": "MIPS_26", "symbol": "_sysbitMarker", "scope": "LIBRARY"}, "724": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "744": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "764": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "780": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "796": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "812": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "828": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "840": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "860": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "872": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "884": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "896": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "904": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "908": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "928": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "944": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "964": {"type": "MIPS_26", "symbol": "_sysbitMarker", "scope": "LIBRARY"}, "976": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "1000": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "1064": {"type": "MIPS_26", "symbol": "_sysbitJump", "scope": "LIBRARY"}, "1120": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "1160": {"type": "MIPS_26", "symbol": "_sysbitJump", "scope": "LIBRARY"}, "1308": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "1352": {"type": "MIPS_26", "symbol": "_sysbitJump", "scope": "LIBRARY"}, "1396": {"type": "MIPS_26", "symbol": "_sysbitJump", "scope": "LIBRARY"}}}}, "835bd7b451712f568568e2c0ef8eb9e00c628378": {"c49401bd": {"type": "FUNCTION", "size": 1416, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "252": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "264": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "280": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "292": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "308": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "324": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "340": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "356": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "396": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "408": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "420": {"type": "MIPS_26", "symbol": "_sysbitMarker", "scope": "LIBRARY"}, "432": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "444": {"type": "MIPS_26", "symbol": "_sysbitMarker", "scope": "LIBRARY"}, "456": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "468": {"type": "MIPS_26", "symbol": "_sysbitMarker", "scope": "LIBRARY"}, "536": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "548": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "560": {"type": "MIPS_26", "symbol": "_sysbitMarker", "scope": "LIBRARY"}, "572": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "584": {"type": "MIPS_26", "symbol": "_sysbitMarker", "scope": "LIBRARY"}, "596": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "608": {"type": "MIPS_26", "symbol": "_sysbitMarker", "scope": "LIBRARY"}, "676": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "688": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "696": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "704": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "724": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "740": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "756": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "772": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "788": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "800": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "820": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "832": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "844": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "856": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "860": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "864": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "884": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "900": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "920": {"type": "MIPS_26", "symbol": "_sysbitMarker", "scope": "LIBRARY"}, "932": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "960": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "1024": {"type": "MIPS_26", "symbol": "_sysbitJump", "scope": "LIBRARY"}, "1080": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "1120": {"type": "MIPS_26", "symbol": "_sysbitJump", "scope": "LIBRARY"}, "1268": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "1312": {"type": "MIPS_26", "symbol": "_sysbitJump", "scope": "LIBRARY"}, "1356": {"type": "MIPS_26", "symbol": "_sysbitJump", "scope": "LIBRARY"}}}}, "a6b7a5afa2dfc8f87ad86c698d94cf187bff3eb5": {"830b77b0": {"type": "FUNCTION", "size": 1404, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "244": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "256": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "272": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "284": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "300": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "316": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "332": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "348": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "388": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "400": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "412": {"type": "MIPS_26", "symbol": "_sysbitMarker", "scope": "LIBRARY"}, "424": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "436": {")PS2SDB", 8192}, + std::string_view{R"PS2SDB(type": "MIPS_26", "symbol": "_sysbitMarker", "scope": "LIBRARY"}, "448": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "460": {"type": "MIPS_26", "symbol": "_sysbitMarker", "scope": "LIBRARY"}, "528": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "540": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "552": {"type": "MIPS_26", "symbol": "_sysbitMarker", "scope": "LIBRARY"}, "564": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "576": {"type": "MIPS_26", "symbol": "_sysbitMarker", "scope": "LIBRARY"}, "588": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "600": {"type": "MIPS_26", "symbol": "_sysbitMarker", "scope": "LIBRARY"}, "664": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "676": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "684": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "692": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "712": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "728": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "744": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "760": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "776": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "788": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "808": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "820": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "832": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "844": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "848": {"type": "MIPS_26", "symbol": "_Error", "scope": "LIBRARY"}, "852": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "872": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "888": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "908": {"type": "MIPS_26", "symbol": "_sysbitMarker", "scope": "LIBRARY"}, "920": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "944": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "1004": {"type": "MIPS_26", "symbol": "_sysbitJump", "scope": "LIBRARY"}, "1060": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "1100": {"type": "MIPS_26", "symbol": "_sysbitJump", "scope": "LIBRARY"}, "1256": {"type": "MIPS_26", "symbol": "_sysbitGet", "scope": "LIBRARY"}, "1300": {"type": "MIPS_26", "symbol": "_sysbitJump", "scope": "LIBRARY"}, "1344": {"type": "MIPS_26", "symbol": "_sysbitJump", "scope": "LIBRARY"}}}}, "97ae7c618d8c3be4caf0f399c51845ca70d71e2f": {"de4c749d": {"type": "FUNCTION", "size": 7592, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "5488": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "5496": {"type": "MIPS_26", "symbol": "_sceMpegError", "scope": "LIBRARY"}, "5500": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sceMpegGetPictureAbort": {"4b001f0b6b54584922b3bb0be83495d01d00cdb2": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libmpeg", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "929d5c4ab5abc2bff17c24561aafa4e9e7070ad1": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libmpeg", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "decode_motion_vector": {"54fce08731a1046cc476666b485fe3b629a14a79": {"00000000": {"type": "FUNCTION", "size": 136, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "_sceMpegPictureData0": {"95277abac33965a0cc133fe11b742e0f1569155a": {"170f4d72": {"type": "FUNCTION", "size": 576, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"92": {"type": "MIPS_26", "symbol": "_slice0", "scope": "LIBRARY", "original": ".text"}, "120": {"type": "MIPS_26", "symbol": "_waitIpuIdle", "original": ".text"}, "128": {"type": "MIPS_26", "symbol": "_waitIpuIdle", "original": ".text"}, "236": {"type": "MIPS_26", "symbol": "_sceMpegDispatchMpegCbNodata", "scope": "LIBRARY"}, "352": {"type": "MIPS_26", "symbol": "_sceMpegStopIpuDma", "scope": "LIBRARY"}, "400": {"type": "MIPS_26", "symbol": "_sceMpegErrorBdec", "scope": "LIBRARY"}, "500": {"type": "MIPS_26", "symbol": "_doMC", "scope": "LIBRARY", "original": ".text"}, "520": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "524": {"type": "MIPS_26", "symbol": "_sceMpegError", "scope": "LIBRARY"}, "528": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "_sceMpegMbAddressIncrement": {"2e4d65e54d5fe043bf8431879bdd2a4a7ed2a967": {"a60c8cd7": {"type": "FUNCTION", "size": 376, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "56": {"type": "MIPS_26", "symbol": "_waitIpuIdle", "original": ".text"}, "84": {"type": "MIPS_26", "symbol": "_sceMpegWaitIpuIdle64", "scope": "LIBRARY", "original": ".text"}, "244": {"type": "MIPS_26", "symbol": "_sceMpegPeepBit", "scope": "LIBRARY", "original": ".text"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "280": {"type": "MIPS_26", "symbol": "_flushBuf", "original": ".text"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "304": {"type": "MIPS_26", "symbol": "_sceMpegError1", "scope": "LIBRARY"}}}}}, "_sceMpegWaitIpuIdle": {"8039093caa25f69f83342186c0ca97cc7f10f5dc": {"70ea2177": {"type": "FUNCTION", "size": 360, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"220": {"type": "MIPS_26", "symbol": "_sceMpegDispatchMpegCbNodata", "scope": "LIBRARY"}, "256": {"type": "MIPS_26", "symbol": "_sceMpegDispatchMpegCbNodata", "scope": "LIBRARY"}, "276": {"type": "MIPS_26", "symbol": "_sceMpegStopIpuDma", "scope": "LIBRARY"}}}}}, "_sceMpegWaitIpuIdle64": {"09fa4b27d35e47d41d204414539f67da9dfc2a64": {"ad992ba8": {"type": "FUNCTION", "size": 384, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"228": {"type": "MIPS_26", "symbol": "_sceMpegDispatchMpegCbNodata", "scope": "LIBRARY"}, "264": {"type": "MIPS_26", "symbol": "_sceMpegDispatchMpegCbNodata", "scope": "LIBRARY"}, "284": {"type": "MIPS_26", "symbol": "_sceMpegStopIpuDma", "scope": "LIBRARY"}}}}}, "_sceMpegNextBit": {"deb7c0fc377cf1fde97631edc827562a3afd587d": {"44430e66": {"type": "FUNCTION", "size": 232, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "_waitIpuIdle", "original": ".text"}, "76": {"type": "MIPS_26", "symbol": "_sceMpegWaitIpuIdle64", "scope": "LIBRARY", "original": ".text"}, "188": {"type": "MIPS_26", "symbol": "_sceMpegWaitIpuIdle64", "scope": "LIBRARY", "original": ".text"}}}}}, "_sceMpegPeepBit": {"f636474e68aef8b605ae5ccda981ec3605dd0dde": {"a7a544ac": {"type": "FUNCTION", "size": 140, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versi)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ons": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "_waitIpuIdle", "original": ".text"}, "80": {"type": "MIPS_26", "symbol": "_sceMpegWaitIpuIdle64", "scope": "LIBRARY", "original": ".text"}}}}}, "_sceMpegFlushBuf": {"ecd4b51561501a035e0ef884e0b45938e6781a36": {"b42b3f79": {"type": "FUNCTION", "size": 148, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "_waitIpuIdle", "original": ".text"}, "100": {"type": "MIPS_26", "symbol": "_sceMpegWaitIpuIdle64", "scope": "LIBRARY", "original": ".text"}}}}}, "_sceMpegSliceA0": {"e3625409d4d93cbc465f5b17b6df8ee42544ccbe": {"a010f6b1": {"type": "FUNCTION", "size": 416, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "flushByteBoundary", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_26", "symbol": "_flushBuf", "original": ".text"}, "76": {"type": "MIPS_26", "symbol": "_sceMpegPeepBit", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "_sceMpegPeepBit", "scope": "LIBRARY"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "140": {"type": "MIPS_26", "symbol": "_sceMpegError1", "scope": "LIBRARY"}, "156": {"type": "MIPS_26", "symbol": "flushBuf32", "scope": "LIBRARY", "original": ".text"}, "168": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "184": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "200": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "212": {"type": "MIPS_26", "symbol": "_flushBuf", "original": ".text"}, "232": {"type": "MIPS_26", "symbol": "_flushBuf", "original": ".text"}, "244": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "260": {"type": "MIPS_26", "symbol": "_sceMpegMbAddressIncrement", "scope": "LIBRARY"}, "284": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "292": {"type": "MIPS_26", "symbol": "_sceMpegError", "scope": "LIBRARY"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "_sceMpegNextHeader": {"000148f669d704fea7d7f2b7f22315a52e38ec5a": {"22b79bf9": {"type": "FUNCTION", "size": 340, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"84": {"type": "MIPS_26", "symbol": "flushByteBoundary", "scope": "LIBRARY", "original": ".text"}, "104": {"type": "MIPS_26", "symbol": "_flushBuf", "original": ".text"}, "116": {"type": "MIPS_26", "symbol": "_sceMpegPeepBit", "scope": "LIBRARY"}, "144": {"type": "MIPS_26", "symbol": "_sceMpegNextBit", "scope": "LIBRARY"}, "212": {"type": "MIPS_26", "symbol": "_sequenceHeader", "scope": "LIBRARY", "original": ".text"}, "228": {"type": "MIPS_26", "symbol": "_groupOfPicturesHeader", "scope": "LIBRARY", "original": ".text"}, "244": {"type": "MIPS_26", "symbol": "_pictureHeader", "scope": "LIBRARY", "original": ".text"}, "268": {"type": "MIPS_26", "symbol": "_sceMpegDispatchMpegCallback", "scope": "LIBRARY"}}}}}, "flushBuf32": {"a1b018d687c75580e2e0da5fe36e17f7c579bd97": {"e139d3a0": {"type": "FUNCTION", "size": 8, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_26", "symbol": "_flushBuf", "original": ".text"}}}}}, "flushByteBoundary": {"4e9ab95b0c885677ffa08f4f79f6011ba0fb1caf": {"a0e86324": {"type": "FUNCTION", "size": 80, "library": "libmpeg", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "_waitIpuIdle", "original": ".text"}, "60": {"type": "MIPS_26", "symbol": "_flushBuf", "original": ".text"}}}}}, "sceMpegSetBuffType": {"8959fed6f126b9da3bc7a07219702a264f9f1ae7": {"6f0f47cc": {"type": "FUNCTION", "size": 52, "library": "libmpeg", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "_clearOnce", "scope": "LIBRARY", "original": ".text"}}}}}, "sceMpegGetBuffType": {"93e25c993260bd60d9c9ddd85e4963b17cd1f241": {"00000000": {"type": "FUNCTION", "size": 12, "library": "libmpeg", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_sceMpegDispatchMpegCallback": {"ca9933bc1897ce1a05ab9ba1d97882661fb4d22d": {"00000000": {"type": "FUNCTION", "size": 120, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_sceMpegDispatchMpegCbNodata": {"9ebd546377c4adc40b35275e7ba46413c1f44e5a": {"00000000": {"type": "FUNCTION", "size": 116, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_sceMpegSetBrokenLink": {"aec0c427021acfc92db7f2ff5fde195784983f61": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_sceMpegSetPtm": {"402a17010fbe27705be0a226f994efb6f18bd5d6": {"00000000": {"type": "FUNCTION", "size": 24, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_sceMpegAlalcInit": {"bd580aa885ab9855465bebde3efe44101347354e": {"00000000": {"type": "FUNCTION", "size": 20, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_sceMpegAlalcSetDynamic": {"c1fb8ae4569513b4dea6795e6f264687b0ecf212": {"00000000": {"type": "FUNCTION", "size": 12, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_sceMpegAlalcFree": {"4ab23b5a4cc0c8001c33d5898a73118280ccaab3": {"00000000": {"type": "FUNCTION", "size": 12, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_sceMpegAlalcAlloc": {"f917d4f7001cdc029930aee6ca932e223f18c897": {"88c23a17": {"type": "FUNCTION", "size": 108, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_26", "symbol": "_sceMpegError", "scope": "LIBRARY"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "_sceMpegAlalcReset": {"88d16f3162e3eaa97b062bbc6f54bdd22592784e": {"00000000": {"type": "FUNCTION", "size": 24, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_sceMpegDefaultStopDMA": {"bf1f90d4a7b06ee0e06e4a73586f5c34d7bdface": {"e3332031": {"type": "FUNCTION", "size": 36, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceIpuStopDMA"}}}}}, "_sceMpegDefaultRestar)PS2SDB", 8192}, + std::string_view{R"PS2SDB(tDMA": {"bf1f90d4a7b06ee0e06e4a73586f5c34d7bdface": {"fbe4f88a": {"type": "FUNCTION", "size": 36, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceIpuRestartDMA"}}}}}, "_sceMpegOutputFrame": {"404e76cc0e006418ef3f1bb991b09d9321270735": {"14b29577": {"type": "FUNCTION", "size": 144, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "_dispRefImage", "scope": "LIBRARY", "original": ".text"}, "100": {"type": "MIPS_26", "symbol": "_dispRefImageField", "scope": "LIBRARY", "original": ".text"}}}}}, "_sceMpegCscStoreRefImage": {"b28fdf8ec5c418e5b8ca0ea8653602d8e0e46110": {"bd94d3e5": {"type": "FUNCTION", "size": 1240, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "_sceMpegDispatchMpegCallback", "scope": "LIBRARY"}, "216": {"type": "MIPS_26", "symbol": "FlushCache"}, "264": {"type": "MIPS_HI16", "symbol": "_ch4dma", "original": ".text"}, "272": {"type": "MIPS_LO16", "symbol": "_ch4dma", "original": ".text"}, "280": {"type": "MIPS_26", "symbol": "AddDmacHandler2"}, "308": {"type": "MIPS_26", "symbol": "EnableDmac"}, "316": {"type": "MIPS_26", "symbol": "DIntr"}, "376": {"type": "MIPS_26", "symbol": "EIntr"}, "476": {"type": "MIPS_26", "symbol": "DIntr"}, "544": {"type": "MIPS_26", "symbol": "EIntr"}, "636": {"type": "MIPS_26", "symbol": "_sceMpegDispatchMpegCallback", "scope": "LIBRARY"}, "740": {"type": "MIPS_26", "symbol": "_doCSC2", "scope": "LIBRARY", "original": ".text"}, "748": {"type": "MIPS_26", "symbol": "DisableDmac"}, "760": {"type": "MIPS_26", "symbol": "RemoveDmacHandler"}, "776": {"type": "MIPS_26", "symbol": "DIntr"}, "840": {"type": "MIPS_26", "symbol": "EIntr"}, "908": {"type": "MIPS_26", "symbol": "DIntr"}, "976": {"type": "MIPS_26", "symbol": "EIntr"}, "1068": {"type": "MIPS_26", "symbol": "_sceMpegDispatchMpegCallback", "scope": "LIBRARY"}, "1172": {"type": "MIPS_26", "symbol": "_doCSC2", "scope": "LIBRARY", "original": ".text"}, "1192": {"type": "MIPS_26", "symbol": "_sceMpegDispatchMpegCallback", "scope": "LIBRARY"}}}}}, "_sceMpegId2type": {"10fa70f1f5bb1d7ddcf7d8c5d8f0783dda91553e": {"a8c4f009": {"type": "FUNCTION", "size": 508, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "_sceMpegType2id": {"662bbc463f7fdea6361ce80ac6d652760df7eff0": {"9610c40c": {"type": "FUNCTION", "size": 168, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "_sceMpegStopIpuDma": {"993a499593d626613599861e95ec820e8cd3806f": {"30d81650": {"type": "FUNCTION", "size": 160, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "DIntr"}, "100": {"type": "MIPS_26", "symbol": "EIntr"}}}}}, "_sceMpegErrorBdec": {"80a76e6437a859940fe8c4d3e5b86419215af3b2": {"b1cc4717": {"type": "FUNCTION", "size": 200, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "20": {"type": "MIPS_26", "symbol": "_sceMpegError", "scope": "LIBRARY", "original": ".text"}, "40": {"type": "MIPS_26", "symbol": "_sceMpegDispatchMpegCallback", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "_sceMpegDispatchMpegCallback", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "DIntr"}, "164": {"type": "MIPS_26", "symbol": "EIntr"}}}}}, "_sceMpegError": {"cab2886ba7eba2a8b27751fbc799fa0884663b95": {"2de86778": {"type": "FUNCTION", "size": 84, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "_sceMpegDispatchMpegCallback", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "_ErrMessage", "scope": "LIBRARY", "original": ".text"}}}}}, "_sceMpegError1": {"3589c71a4c7330552af413314e0cb0788a39176f": {"dce61890": {"type": "FUNCTION", "size": 64, "library": "libmpeg", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "sceSnprintf"}, "40": {"type": "MIPS_26", "symbol": "_sceMpegError", "scope": "LIBRARY", "original": ".text"}}}}}}, "libipu": {"setD3_CHCR": {"e4b1f21d575330b211cde025715cbf808324a67a": {"fed02f09": {"type": "FUNCTION", "size": 100, "library": "libipu", "scope": "LOCAL", "is_interface": false, "versions": ["2.2.0", "2.3.0", "2.4.0", "2.5.0"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "DIntr"}, "92": {"type": "MIPS_26", "symbol": "EIntr"}}}}, "652fc45838bb87a4fbe20d631bcaa6f6034dedf9": {"dca0f6d2": {"type": "FUNCTION", "size": 116, "library": "libipu", "scope": "LOCAL", "is_interface": false, "versions": ["2.6.0", "2.7.0", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "DIntr"}, "96": {"type": "MIPS_26", "symbol": "EIntr"}}}}}, "setD4_CHCR": {"16fb0f666f3cc2307c4e7d5305e9ca8e15cc46f6": {"fed02f09": {"type": "FUNCTION", "size": 100, "library": "libipu", "scope": "LOCAL", "is_interface": false, "versions": ["2.2.0", "2.3.0", "2.4.0", "2.5.0", "2.6.0", "2.7.0"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "DIntr"}, "92": {"type": "MIPS_26", "symbol": "EIntr"}}}}, "eb8f3ad69805b2a7ba144fd7a219c731082ec687": {"dca0f6d2": {"type": "FUNCTION", "size": 116, "library": "libipu", "scope": "LOCAL", "is_interface": false, "versions": ["2.6.0", "2.7.0", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "DIntr"}, "96": {"type": "MIPS_26", "symbol": "EIntr"}}}}}, "sceIpuStopDMA": {"05e6f975a28f5556ef0cdaa8942af59b14eb767a": {"06e5e443": {"type": "FUNCTION", "size": 228, "library": "libipu", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0", "2.3.0", "2.4.0", "2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1)PS2SDB", 8192}, + std::string_view{R"PS2SDB(.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "setD4_CHCR", "original": ".text"}, "124": {"type": "MIPS_26", "symbol": "setD3_CHCR", "scope": "LIBRARY", "original": ".text"}}}}, "4392fd4dc231ceca6f20f75bbc7c95bd81f30978": {"00000000": {"type": "FUNCTION", "size": 380, "library": "libipu", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.1.0"], "sdk": ["2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.4.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "44ec903457ce0aaa71fad581a08225814e6a371e": {"00000000": {"type": "FUNCTION", "size": 200, "library": "libipu", "scope": "GLOBAL", "is_interface": true, "versions": ["1.5.0", "1.6.2"], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}, "1b0fb8b360f7a97c7241808861ffb6c8b0c289e8": {"00000000": {"type": "FUNCTION", "size": 204, "library": "libipu", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1"], "sdk": ["1.6.1"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}}, "sceIpuRestartDMA": {"cfdc9b4a0181444dc7637b1ff308fa296d71fb88": {"3cd598e8": {"type": "FUNCTION", "size": 336, "library": "libipu", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0", "2.3.0", "2.4.0", "2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"124": {"type": "MIPS_26", "symbol": "setD3_CHCR", "scope": "LIBRARY", "original": ".text"}, "304": {"type": "MIPS_26", "symbol": "setD4_CHCR", "original": ".text"}}}}, "c782bdf3c54d0a1f77ceef851b3b8132b0c77884": {"00000000": {"type": "FUNCTION", "size": 464, "library": "libipu", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.1.0"], "sdk": ["2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.4.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "7b72486265ac301d801a108241554720e18696a1": {"00000000": {"type": "FUNCTION", "size": 284, "library": "libipu", "scope": "GLOBAL", "is_interface": true, "versions": ["1.5.0", "1.6.2"], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}, "d10b1fe1c5f1a7e70452c677381d30fe59e801e9": {"00000000": {"type": "FUNCTION", "size": 284, "library": "libipu", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1"], "sdk": ["1.6.1"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}}, "sceIpuSync": {"c4251b03a67915c4c0f0851ee6fbd65bd92f0f6d": {"00000000": {"type": "FUNCTION", "size": 104, "library": "libipu", "scope": "GLOBAL", "is_interface": true, "versions": ["1.5.0", "1.6.1", "1.6.2", "2.0.0", "2.1.0", "2.2.0", "2.3.0", "2.4.0", "2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.1", "1.6.3", "1.6.5", "2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceIpuInit": {"e8588aaabae47f7d8d076eb12dd2325a288f6aa2": {"203f15cc": {"type": "FUNCTION", "size": 568, "library": "libipu", "scope": "GLOBAL", "is_interface": true, "versions": ["2.2.0", "2.3.0", "2.4.0", "2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0", "3.1.0"], "sdk": ["2.2.0", "2.2.1", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "setD4_CHCR", "original": ".text"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "308": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "e8a3b147c050600164f63767ee55458d627c434a": {"672c6f04": {"type": "FUNCTION", "size": 660, "library": "libipu", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.1.0"], "sdk": ["2.0.2", "2.0.7", "2.1.1", "2.1.3", "2.1.4", "2.4.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"212": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "404": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "412": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "1c06e1168c407101a8ebc0bd03b20dc7a7f62b6c": {"07904101": {"type": "FUNCTION", "size": 524, "library": "libipu", "scope": "GLOBAL", "is_interface": true, "versions": ["1.5.0", "1.6.2"], "sdk": ["1.5.0", "1.5.1", "1.5.3", "1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"112": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "288": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "a3352a33a6c2d5e085208a3301aa61bb3295aa23": {"d0749d07": {"type": "FUNCTION", "size": 564, "library": "libipu", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.1"], "sdk": ["1.6.1"], "compiler_versions": ["2.3.1.01"], "relocations": {"116": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "308": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}}, "libmsin": {"sceMSIn_Init": {"9f2ff66a62059751b463d50729c7437ac02ce998": {"00000000": {"type": "FUNCTION", "size": 128, "library": "libmsin", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.3", "1.6.5", "2.0.7", "2.1.4", "2.2.0", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceMSIn_ATick": {"0a5385cf4a659d302a43046ea0269e2b17a3ef1d": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libmsin", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.3", "1.6.5", "2.0.7", "2.1.4", "2.2.0", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "sceMSIn_Load": {"0a5385cf4a659d302a43046ea0269e2b17a3ef1d": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libmsin", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.3", "1.6.5", "2.0.7", "2.1.4", "2.2.0", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "put_message": {"b8038e43d6784a2c1e89d48cef4e594ac082e215": {"00000000": {"type": "FUNCTION", "size": 148, "library": "libmsin", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.0.7", "2.1.4", "2.2.0", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "7589fc60d24afc770286342d2b6bc9a97e511005": {"00000000": {"type": "FUNCTION", "size": 148, "library": "libmsin", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.6.3", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}}, "sceMSIn_PutMsg": {"8741a16ed45f97291fd05)PS2SDB", 8192}, + std::string_view{R"PS2SDB(268d60e7f0829d44959": {"d5492172": {"type": "FUNCTION", "size": 176, "library": "libmsin", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.3", "1.6.5", "2.0.7", "2.1.4", "2.2.0", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"156": {"type": "MIPS_26", "symbol": "put_message", "scope": "LIBRARY", "original": ".text"}}}}}, "sceMSIn_PutExcMsg": {"721b83059ff66dc5e529282ce611365644a7c270": {"253f66d2": {"type": "FUNCTION", "size": 120, "library": "libmsin", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.3", "1.6.5", "2.0.7", "2.1.4", "2.2.0", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "put_message", "scope": "LIBRARY", "original": ".text"}}}}}, "sceMSIn_PutHsMsg": {"e101b5018ea03351bf75d8e533dcda40add0f27e": {"a77697fe": {"type": "FUNCTION", "size": 72, "library": "libmsin", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.3", "1.6.5", "2.0.7", "2.1.4", "2.2.0", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "put_message", "scope": "LIBRARY", "original": ".text"}}}}}}, "libscf": {"GetRomName": {"cfdb76c20d0c55c7e375c5abca8bc94be0e41ced": {"84f62dff": {"type": "FUNCTION", "size": 156, "library": "libscf", "scope": "LOCAL", "is_interface": false, "versions": ["2.0.0", "2.1.0", "2.3.0", "2.4.0"], "sdk": ["2.0.2", "2.1.4", "2.3.0", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "52": {"type": "MIPS_26", "symbol": "sceOpen"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "76": {"type": "MIPS_26", "symbol": "printf"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_26", "symbol": "sceRead"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "108": {"type": "MIPS_26", "symbol": "printf"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_26", "symbol": "sceClose"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}, "fae0154a": {"type": "FUNCTION", "size": 156, "library": "libscf", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.0"], "sdk": ["2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "52": {"type": "MIPS_26", "symbol": "sceOpen"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "76": {"type": "MIPS_26", "symbol": "scePrintf"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_26", "symbol": "sceRead"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "108": {"type": "MIPS_26", "symbol": "scePrintf"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_26", "symbol": "sceClose"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "60a6db595febadc5398886695ddb4f27b78a3773": {"d501bd04": {"type": "FUNCTION", "size": 112, "library": "libscf", "scope": "LOCAL", "is_interface": false, "versions": ["2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "44": {"type": "MIPS_26", "symbol": "sceOpen"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_26", "symbol": "sceRead"}, "76": {"type": "MIPS_26", "symbol": "sceClose"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "IsT10K": {"133cfd42df5c2a1077bf414184aacbff2c269a1f": {"6e193a0f": {"type": "FUNCTION", "size": 64, "library": "libscf", "scope": "LOCAL", "is_interface": false, "versions": ["2.0.0", "2.1.0", "2.3.0", "2.4.0", "2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.0.2", "2.1.4", "2.3.0", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_26", "symbol": "GetRomName", "scope": "LIBRARY", "original": ".text"}}}}}, "sceScfGetLanguage": {"c6dbe5f9ce22e8a8832b2e95ccadab765cf02fbe": {"8fe44fee": {"type": "FUNCTION", "size": 96, "library": "libscf", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.1.0", "2.3.0", "2.4.0", "2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.0.2", "2.1.4", "2.3.0", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "GetOsdConfigParam"}, "16": {"type": "MIPS_26", "symbol": "IsT10K", "scope": "LIBRARY", "original": ".text"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "GetOsdConfigParam"}}}}}, "sceScfSetT10kConfig": {"3fee7c63dfda2dfa32be0ef7f61c0411691afe07": {"d6ed632d": {"type": "FUNCTION", "size": 28, "library": "libscf", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.1.0", "2.3.0", "2.4.0", "2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.0.2", "2.1.4", "2.3.0", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceScfGetAspect": {"5d3f9cf86e9eed1953e743f34cb5f429641c6d07": {"6d94bec7": {"type": "FUNCTION", "size": 64, "library": "libscf", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.1.0", "2.3.0", "2.4.0", "2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.0.2", "2.1.4", "2.3.0", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "IsT10K", "scope": "LIBRARY", "original": ".text"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_26", ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(symbol": "GetOsdConfigParam"}}}}}, "sceScfGetSpdif": {"a850df1f1181838118c011f094b42873628a262a": {"6d94bec7": {"type": "FUNCTION", "size": 60, "library": "libscf", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.1.0", "2.3.0", "2.4.0", "2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.0.2", "2.1.4", "2.3.0", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "IsT10K", "scope": "LIBRARY", "original": ".text"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_26", "symbol": "GetOsdConfigParam"}}}}}, "sceScfGetTimeZone": {"26cc8630d497c5d41625ec42fd38e8ed1051affd": {"6d94bec7": {"type": "FUNCTION", "size": 76, "library": "libscf", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.0", "2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "IsT10K", "scope": "LIBRARY", "original": ".text"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_26", "symbol": "GetOsdConfigParam"}}}}, "8e747697a1958edef7b5a55a1a2987d06a3c17f9": {"bbebf9e8": {"type": "FUNCTION", "size": 100, "library": "libscf", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.1.0", "2.3.0"], "sdk": ["2.0.2", "2.1.4", "2.3.0", "2.3.4", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "IsT10K", "scope": "LIBRARY", "original": ".text"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_26", "symbol": "GetOsdConfigParam"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_26", "symbol": "printf"}}}}}, "sceScfGetDateNotation": {"f6799d360e0952418038b58abfc2fc9daea8a664": {"cc91d1b8": {"type": "FUNCTION", "size": 100, "library": "libscf", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.0", "2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "IsT10K", "scope": "LIBRARY", "original": ".text"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_26", "symbol": "GetOsdConfigParam"}, "72": {"type": "MIPS_26", "symbol": "GetOsdConfigParam2"}}}}, "1a649a0c7f8d2bcd9deaeebd0cf574728dbdd577": {"80150c2a": {"type": "FUNCTION", "size": 124, "library": "libscf", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.1.0", "2.3.0"], "sdk": ["2.0.2", "2.1.4", "2.3.0", "2.3.4", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "IsT10K", "scope": "LIBRARY", "original": ".text"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_26", "symbol": "GetOsdConfigParam"}, "72": {"type": "MIPS_26", "symbol": "GetOsdConfigParam2"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_26", "symbol": "printf"}}}}}, "sceScfGetSummerTime": {"0864b936fa30a5c04171da552662d67c76eaea8f": {"cc91d1b8": {"type": "FUNCTION", "size": 104, "library": "libscf", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.0", "2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "IsT10K", "scope": "LIBRARY", "original": ".text"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_26", "symbol": "GetOsdConfigParam"}, "72": {"type": "MIPS_26", "symbol": "GetOsdConfigParam2"}}}}, "83bde1a672124e80ce712189307c70a12f4cfb08": {"83133755": {"type": "FUNCTION", "size": 128, "library": "libscf", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.1.0", "2.3.0"], "sdk": ["2.0.2", "2.1.4", "2.3.0", "2.3.4", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "IsT10K", "scope": "LIBRARY", "original": ".text"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_26", "symbol": "GetOsdConfigParam"}, "72": {"type": "MIPS_26", "symbol": "GetOsdConfigParam2"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "100": {"type": "MIPS_26", "symbol": "printf"}}}}}, "sceScfGetTimeNotation": {"5148064f3b1de0951e3bd933829a325a73285414": {"cc91d1b8": {"type": "FUNCTION", "size": 104, "library": "libscf", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.0", "2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "IsT10K", "scope": "LIBRARY", "original": ".text"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_26", "symbol": "GetOsdConfigParam"}, "72": {"type": "MIPS_26", "symbol": "GetOsdConfigParam2"}}}}, "2d60f946f351b8ee14fd138bae650dc7d4039f3d": {"83133755": {"type": "FUNCTION", "size": 128, "library": "libscf", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.1.0", "2.3.0"], "sdk": ["2.0.2", "2.1.4", "2.3.0", "2.3.4", "2.5.7"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "IsT10K", "scope": "LIBRARY", "original": ".text"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_26", "symbol": "GetOsdConfigParam"}, "72": {"type": "MIPS_26", "symbol": "GetOsdConfigParam2"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "100": {"type": "MIPS_26", "symbol": "printf"}}}}}, "tobcd": {"fd56f4054b3c6869086f3b0cd3cfa9fa8ed68a1b": {"00000000": {"type": "FUNCTION", "size": 44, "library": "libscf", "scope": "LOCAL", "is_interface": false, "versions": ["2.4.0", "2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "1fedd43fc09217d73910e9982702c82d2bad43ce": {"65da6ad9": {"type": "FUNCTION", "size": 100, "library": "libscf", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.1.0"], "sdk": ["2.0.2", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_LO16", "symbol": "", "origin)PS2SDB", 8192}, + std::string_view{R"PS2SDB(al": ".rodata"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_26", "symbol": "__assert"}}}}, "2ebbdb78396ab9cbab7bc0b511a12f885751ee97": {"65da6ad9": {"type": "FUNCTION", "size": 100, "library": "libscf", "scope": "LOCAL", "is_interface": false, "versions": ["2.3.0"], "sdk": ["2.3.0", "2.3.4", "2.5.7"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_26", "symbol": "__assert"}}}}}, "frombcd": {"5d679b42c674c5b3046eab1ca58cde278c469e70": {"00000000": {"type": "FUNCTION", "size": 32, "library": "libscf", "scope": "LOCAL", "is_interface": false, "versions": ["2.4.0", "2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "b06276a5ee4ac09f09a0ae12a08150ddb6b02b4d": {"65da6ad9": {"type": "FUNCTION", "size": 88, "library": "libscf", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.1.0"], "sdk": ["2.0.2", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_26", "symbol": "__assert"}}}}, "15a0e92293ade64a6cec53ef3c10819cf224c3a4": {"65da6ad9": {"type": "FUNCTION", "size": 88, "library": "libscf", "scope": "LOCAL", "is_interface": false, "versions": ["2.3.0"], "sdk": ["2.3.0", "2.3.4", "2.5.7"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_26", "symbol": "__assert"}}}}}, "convertfrombcd": {"aea6a9da32122bca198c22af3582e35e882dd8cc": {"88d69e57": {"type": "FUNCTION", "size": 104, "library": "libscf", "scope": "LOCAL", "is_interface": false, "versions": ["2.4.0", "2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "frombcd", "scope": "LIBRARY", "original": ".text"}, "28": {"type": "MIPS_26", "symbol": "frombcd", "scope": "LIBRARY", "original": ".text"}, "40": {"type": "MIPS_26", "symbol": "frombcd", "scope": "LIBRARY", "original": ".text"}, "52": {"type": "MIPS_26", "symbol": "frombcd", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_26", "symbol": "frombcd", "scope": "LIBRARY", "original": ".text"}, "76": {"type": "MIPS_26", "symbol": "frombcd", "scope": "LIBRARY", "original": ".text"}}}}, "25755a7de8710ba3435f48b0f49cee1874c8968b": {"a13338d6": {"type": "FUNCTION", "size": 132, "library": "libscf", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.1.0"], "sdk": ["2.0.2", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_26", "symbol": "__assert"}, "44": {"type": "MIPS_26", "symbol": "frombcd", "scope": "LIBRARY", "original": ".text"}, "56": {"type": "MIPS_26", "symbol": "frombcd", "scope": "LIBRARY", "original": ".text"}, "68": {"type": "MIPS_26", "symbol": "frombcd", "scope": "LIBRARY", "original": ".text"}, "80": {"type": "MIPS_26", "symbol": "frombcd", "scope": "LIBRARY", "original": ".text"}, "92": {"type": "MIPS_26", "symbol": "frombcd", "scope": "LIBRARY", "original": ".text"}, "104": {"type": "MIPS_26", "symbol": "frombcd", "scope": "LIBRARY", "original": ".text"}}}}, "68ba9e7b27fbb7e8fbc2befeb7657152d3e4837e": {"a13338d6": {"type": "FUNCTION", "size": 132, "library": "libscf", "scope": "LOCAL", "is_interface": false, "versions": ["2.3.0"], "sdk": ["2.3.0", "2.3.4", "2.5.7"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_26", "symbol": "__assert"}, "44": {"type": "MIPS_26", "symbol": "frombcd", "scope": "LIBRARY", "original": ".text"}, "56": {"type": "MIPS_26", "symbol": "frombcd", "scope": "LIBRARY", "original": ".text"}, "68": {"type": "MIPS_26", "symbol": "frombcd", "scope": "LIBRARY", "original": ".text"}, "80": {"type": "MIPS_26", "symbol": "frombcd", "scope": "LIBRARY", "original": ".text"}, "92": {"type": "MIPS_26", "symbol": "frombcd", "scope": "LIBRARY", "original": ".text"}, "104": {"type": "MIPS_26", "symbol": "frombcd", "scope": "LIBRARY", "original": ".text"}}}}}, "converttobcd": {"aea6a9da32122bca198c22af3582e35e882dd8cc": {"6d079935": {"type": "FUNCTION", "size": 104, "library": "libscf", "scope": "LOCAL", "is_interface": false, "versions": ["2.4.0", "2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "tobcd", "scope": "LIBRARY", "original": ".text"}, "28": {"type": "MIPS_26", "symbol": "tobcd", "scope": "LIBRARY", "original": ".text"}, "40": {"type": "MIPS_26", "symbol": "tobcd", "scope": "LIBRARY", "original": ".text"}, "52": {"type": "MIPS_26", "symbol": "tobcd", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_26", "symbol": "tobcd", "scope": "LIBRARY", "original": ".text"}, "76": {"type": "MIPS_26", "symbol": "tobcd", "scope": "LIBRARY", "original": ".text"}}}}, "0c5707124d5150ccf2135ecb68939497086eb107": {"179cc0ba": {"type": "FUNCTION", "size": 132, "library": "libscf", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.1.0"], "sdk": ["2.0.2", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_26", "symbol": "__assert"}, "44": {"type": "MIPS_26", "symbol": "tobcd", "scope": "LIBRARY", "original": ".text"}, "56": {"type": "MIPS_26", "symbol": "tobcd", "scope": "LIBRARY", "original": ".text"}, "68": {"type": "MIPS_26", "symbol": "tobcd", "scope": "LIBRARY", "original": ".text"}, "80": {"type": "MIPS_26", "symbol": "tobcd", "scope": "LIBRARY", "original": ".text"}, "92": {"type": "MIPS_26", "symbol": "tobcd", "scope": "LIBRARY", "original": ".text"}, "104": {"type": "MIPS_26", "symbol": "tobcd", "scope": "LIBRARY", "original": ".text"}}}}, "2af9daba436d0492e9d5e2a865f5abda1bfc7375": {"179cc0ba": {"type": "FUNCTION", "size": 132, "library": "libscf", "scope": "LOCAL", "is_interface": false, "versions": ["2.3.0"], "sdk": ["2.3.0", "2.3.4", "2.5.7"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "28": {"type": "MIPS_LO16)PS2SDB", 8192}, + std::string_view{R"PS2SDB(", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_26", "symbol": "__assert"}, "44": {"type": "MIPS_26", "symbol": "tobcd", "scope": "LIBRARY", "original": ".text"}, "56": {"type": "MIPS_26", "symbol": "tobcd", "scope": "LIBRARY", "original": ".text"}, "68": {"type": "MIPS_26", "symbol": "tobcd", "scope": "LIBRARY", "original": ".text"}, "80": {"type": "MIPS_26", "symbol": "tobcd", "scope": "LIBRARY", "original": ".text"}, "92": {"type": "MIPS_26", "symbol": "tobcd", "scope": "LIBRARY", "original": ".text"}, "104": {"type": "MIPS_26", "symbol": "tobcd", "scope": "LIBRARY", "original": ".text"}}}}}, "adddate": {"b53491d19b99c9b51c04a6bf08a0a70da89cf724": {"64f461b1": {"type": "FUNCTION", "size": 180, "library": "libscf", "scope": "LOCAL", "is_interface": false, "versions": ["2.4.0", "2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "372768eeea3953d6adc4acc023100e116c24e868": {"2535baac": {"type": "FUNCTION", "size": 228, "library": "libscf", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.1.0"], "sdk": ["2.0.2", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_26", "symbol": "__assert"}}}}, "b98017e33f93e5a08c206f32f3df2b01bf398696": {"2535baac": {"type": "FUNCTION", "size": 228, "library": "libscf", "scope": "LOCAL", "is_interface": false, "versions": ["2.3.0"], "sdk": ["2.3.0", "2.3.4", "2.5.7"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_26", "symbol": "__assert"}}}}}, "subdate": {"6d0ad3da37054a3d3655a4a76d4caf4ab73362f1": {"64f461b1": {"type": "FUNCTION", "size": 164, "library": "libscf", "scope": "LOCAL", "is_interface": false, "versions": ["2.4.0", "2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "38b632b2a627a4922ba364522bc02b2eea94760b": {"2535baac": {"type": "FUNCTION", "size": 212, "library": "libscf", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.1.0"], "sdk": ["2.0.2", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_26", "symbol": "__assert"}}}}, "f0a5e96055e414caf3e572bde91b2b5fec4848e9": {"2535baac": {"type": "FUNCTION", "size": 212, "library": "libscf", "scope": "LOCAL", "is_interface": false, "versions": ["2.3.0"], "sdk": ["2.3.0", "2.3.4", "2.5.7"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_26", "symbol": "__assert"}}}}}, "addhour": {"3e7d7ddb93ed1281fcd72d090e0486d274ebac75": {"b82a6f8d": {"type": "FUNCTION", "size": 48, "library": "libscf", "scope": "LOCAL", "is_interface": false, "versions": ["2.4.0", "2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "adddate", "scope": "LIBRARY", "original": ".text"}}}}, "b6f551122182c96b31fbdcd65c417d05b5a60862": {"a08fd66c": {"type": "FUNCTION", "size": 108, "library": "libscf", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.1.0"], "sdk": ["2.0.2", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_26", "symbol": "__assert"}, "84": {"type": "MIPS_26", "symbol": "adddate", "scope": "LIBRARY", "original": ".text"}}}}, "e9b57dadafad25a00432d9a14265f66bcb2e586f": {"a08fd66c": {"type": "FUNCTION", "size": 108, "library": "libscf", "scope": "LOCAL", "is_interface": false, "versions": ["2.3.0"], "sdk": ["2.3.0", "2.3.4", "2.5.7"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_26", "symbol": "__assert"}, "84": {"type": "MIPS_26", "symbol": "adddate", "scope": "LIBRARY", "original": ".text"}}}}}, "subhour": {"c799cd170ec9a97e615f449f03aaeb3810144ce9": {"c861414d": {"type": "FUNCTION", "size": 36, "library": "libscf", "scope": "LOCAL", "is_interface": false, "versions": ["2.4.0", "2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "subdate", "scope": "LIBRARY", "original": ".text"}}}}, "f5081f55c5b708174f35c65db7487951529de19a": {"f9000aa2": {"type": "FUNCTION", "size": 104, "library": "libscf", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.1.0"], "sdk": ["2.0.2", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_26", "symbol": "__assert"}, "76": {"type": "MIPS_26", "symbol": "subdate", "scope": "LIBRARY", "original": ".text"}}}}, "811d4307d75823c700f1f10b2206b4f33eb45704": {"f9000aa2": {"type": "FUNCTION", "size": 104, "library": "libscf", "scope": "LOCAL", "is_interface": false, "versions": ["2.3.0"], "sdk": ["2)PS2SDB", 8192}, + std::string_view{R"PS2SDB(.3.0", "2.3.4", "2.5.7"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_26", "symbol": "__assert"}, "76": {"type": "MIPS_26", "symbol": "subdate", "scope": "LIBRARY", "original": ".text"}}}}}, "AdjustTime": {"1f20be64376b273757be24a02724e056a706d467": {"475c89f0": {"type": "FUNCTION", "size": 140, "library": "libscf", "scope": "LOCAL", "is_interface": false, "versions": ["2.4.0", "2.5.0", "2.6.0", "2.7.0"], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "convertfrombcd", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_26", "symbol": "addhour", "scope": "LIBRARY", "original": ".text"}, "96": {"type": "MIPS_26", "symbol": "subhour", "scope": "LIBRARY", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "converttobcd", "scope": "LIBRARY", "original": ".text"}}}}, "6a2dd28fdadc26e14ff1e0bcedcce5ca59622ee3": {"475c89f0": {"type": "FUNCTION", "size": 140, "library": "libscf", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "3.0.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "convertfrombcd", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_26", "symbol": "addhour", "scope": "LIBRARY", "original": ".text"}, "96": {"type": "MIPS_26", "symbol": "subhour", "scope": "LIBRARY", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "converttobcd", "scope": "LIBRARY", "original": ".text"}}}}, "406666bdffbe8a7564fc759d43d79b66bc733feb": {"8cd575cd": {"type": "FUNCTION", "size": 204, "library": "libscf", "scope": "GLOBAL", "is_interface": false, "versions": ["2.0.0", "2.1.0"], "sdk": ["2.0.2", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "44": {"type": "MIPS_26", "symbol": "__assert"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_26", "symbol": "__assert"}, "88": {"type": "MIPS_26", "symbol": "convertfrombcd", "scope": "LIBRARY", "original": ".text"}, "128": {"type": "MIPS_26", "symbol": "addhour", "scope": "LIBRARY", "original": ".text"}, "160": {"type": "MIPS_26", "symbol": "subhour", "scope": "LIBRARY", "original": ".text"}, "196": {"type": "MIPS_26", "symbol": "converttobcd", "scope": "LIBRARY", "original": ".text"}}}}, "a391ccf5af23de09d3c31a552437a8ed4feb65d3": {"8cd575cd": {"type": "FUNCTION", "size": 204, "library": "libscf", "scope": "LOCAL", "is_interface": false, "versions": ["2.3.0"], "sdk": ["2.3.0", "2.3.4", "2.5.7"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "44": {"type": "MIPS_26", "symbol": "__assert"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_26", "symbol": "__assert"}, "88": {"type": "MIPS_26", "symbol": "convertfrombcd", "scope": "LIBRARY", "original": ".text"}, "128": {"type": "MIPS_26", "symbol": "addhour", "scope": "LIBRARY", "original": ".text"}, "160": {"type": "MIPS_26", "symbol": "subhour", "scope": "LIBRARY", "original": ".text"}, "196": {"type": "MIPS_26", "symbol": "converttobcd", "scope": "LIBRARY", "original": ".text"}}}}}, "sceScfGetGMTfromRTC": {"cf15a656230f23cfcbf1fe5bf410127a0248bd6c": {"0f375ee4": {"type": "FUNCTION", "size": 8, "library": "libscf", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.0", "2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_26", "symbol": "AdjustTime", "scope": "LIBRARY", "original": ".text"}}}}, "e55bb914405056dc9acd5f4f4383058533077d96": {"69c1cf48": {"type": "FUNCTION", "size": 68, "library": "libscf", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.1.0"], "sdk": ["2.0.2", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_26", "symbol": "__assert"}, "60": {"type": "MIPS_26", "symbol": "AdjustTime", "scope": "LIBRARY", "original": ".text"}}}}, "28a9d94780bfc228852970e35e3706e8bd124b43": {"69c1cf48": {"type": "FUNCTION", "size": 68, "library": "libscf", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0"], "sdk": ["2.3.0", "2.3.4", "2.5.7"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_26", "symbol": "__assert"}, "60": {"type": "MIPS_26", "symbol": "AdjustTime", "scope": "LIBRARY", "original": ".text"}}}}}, "sceScfGetLocalTimefromRTC": {"f1f397ef8452f06e04d436dce72e74efaa578f4a": {"0b705e1c": {"type": "FUNCTION", "size": 72, "library": "libscf", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.0", "2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.3", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "sceScfGetTimeZone", "scope": "LIBRARY", "original": ".text"}, "24": {"type": "MIPS_26", "symbol": "sceScfGetSummerTime", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_26", "symbol": "AdjustTime", "scope": "LIBRARY", "original": ".text"}}}}, "454a98400e4b4ad8ceacb3f4d2dc5bd903882909": {"608c5664": {"type": "FUNCTION", "size": 104, "library": "libscf", "scope": "GLOBAL", "is_interface": true, "versions": ["2.0.0", "2.1.0"], "sdk": ["2.0.2", "2.1.4"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "sceScfGetTimeZone", "scope": "LIBRARY", "original": ".text"}, "24": {"type": "MIPS_26", "symbol": "sceScfGetSummerTime", "scope": "LIBRARY", "original": ".text"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_26", "symbol": "__assert"}, "96": {"type": "MIPS_26", "symbol": "AdjustTime", "scope": "LIBRARY", "original": ".text"}}}}, "bf0840ab3f03f9a90c72e6ce7c5d51dc2c8323c8": {"608c5664": {"ty)PS2SDB", 8192}, + std::string_view{R"PS2SDB(pe": "FUNCTION", "size": 104, "library": "libscf", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0"], "sdk": ["2.3.0", "2.3.4", "2.5.7"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "sceScfGetTimeZone", "scope": "LIBRARY", "original": ".text"}, "24": {"type": "MIPS_26", "symbol": "sceScfGetSummerTime", "scope": "LIBRARY", "original": ".text"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_26", "symbol": "__assert"}, "96": {"type": "MIPS_26", "symbol": "AdjustTime", "scope": "LIBRARY", "original": ".text"}}}}}}, "libccc": {"sceCccDecodeSJIS": {"7f4d5ab1dde32e7708949e71c0989f6209882816": {"8803930d": {"type": "FUNCTION", "size": 376, "library": "libccc", "scope": "GLOBAL", "is_interface": true, "versions": ["1.0.0", "1.1.0"], "sdk": ["2.4.3", "2.5.5", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"180": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "320": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "332": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "c4d8301f3fe889630974851a1b302916382823be": {"18239290": {"type": "FUNCTION", "size": 676, "library": "libccc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"584": {"type": "MIPS_GPREL16", "symbol": "__error_char_sjis__"}}}}, "a15c960fd5cbe79d85b99da92be0e97a334f3777": {"ad87db09": {"type": "FUNCTION", "size": 440, "library": "libccc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"396": {"type": "MIPS_GPREL16", "symbol": "__error_char_sjis__"}}}}}, "sceCccEncodeSJIS": {"4d2d444efdebe7fad48262afa355802118d8a61c": {"c9759665": {"type": "FUNCTION", "size": 416, "library": "libccc", "scope": "GLOBAL", "is_interface": true, "versions": ["1.0.0", "1.1.0"], "sdk": ["2.4.3", "2.5.5", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"168": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "2453622b69b0ad6b42d21dea316e77fdf938d448": {"72b8cccc": {"type": "FUNCTION", "size": 548, "library": "libccc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "sceCccIsValidSJIS", "scope": "LIBRARY"}, "68": {"type": "MIPS_GPREL16", "symbol": "__error_char_sjis__"}}}}}, "sceCccUTF8toUTF16": {"4cea8c98adcc0ec7b965575581698eb2223d46da": {"33cd1ee9": {"type": "FUNCTION", "size": 400, "library": "libccc", "scope": "GLOBAL", "is_interface": true, "versions": ["1.0.0", "1.1.0"], "sdk": ["2.4.3", "2.5.5", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"108": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "316": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "324": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceCccUTF8toSJIS": {"b8759f6ad6fbd40f6375bfc7b5b8df7b3c0ab460": {"6b83c05a": {"type": "FUNCTION", "size": 364, "library": "libccc", "scope": "GLOBAL", "is_interface": true, "versions": ["1.0.0", "1.1.0"], "sdk": ["2.4.3", "2.5.5", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "sceCccEncodeSJIS", "scope": "LIBRARY", "original": ".text"}, "260": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "d677ae03e6ea54d1d8e1c53f03f6689a359db44a": {"64fc98bb": {"type": "FUNCTION", "size": 340, "library": "libccc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"104": {"type": "MIPS_GPREL16", "symbol": "__error_char_sjis__"}, "108": {"type": "MIPS_26", "symbol": "sceCccUCStoJIS", "scope": "LIBRARY"}, "140": {"type": "MIPS_26", "symbol": "sceCccEncodeSJIS", "scope": "LIBRARY"}, "260": {"type": "MIPS_26", "symbol": "sceCccDecodeUTF8", "scope": "LIBRARY"}}}}}, "sceCccSJIStoUTF8": {"1d541106180a816962a5caf3b44e7bd466469e1e": {"b2dcd4a4": {"type": "FUNCTION", "size": 432, "library": "libccc", "scope": "GLOBAL", "is_interface": true, "versions": ["1.0.0", "1.1.0"], "sdk": ["2.4.3", "2.5.5", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"336": {"type": "MIPS_26", "symbol": "sceCccDecodeSJIS", "scope": "LIBRARY", "original": ".text"}, "348": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "356": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "360": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "368": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "01c111e9a394ed7124d5d5070865565fa26e1b86": {"b5c3c75a": {"type": "FUNCTION", "size": 348, "library": "libccc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"104": {"type": "MIPS_GPREL16", "symbol": "__error_char_utf8__"}, "108": {"type": "MIPS_26", "symbol": "sceCccJIStoUCS", "scope": "LIBRARY"}, "136": {"type": "MIPS_26", "symbol": "sceCccEncodeUTF8", "scope": "LIBRARY"}, "260": {"type": "MIPS_26", "symbol": "sceCccDecodeSJIS", "scope": "LIBRARY"}}}}, "81f9dfe9a7fc78bb7b6c1933f2ad6d41cbb2a10a": {"1d7cc357": {"type": "FUNCTION", "size": 232, "library": "libccc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "sceCccDecodeSJIS", "scope": "LIBRARY"}, "72": {"type": "MIPS_GPREL16", "symbol": "__error_char_utf8__"}, "80": {"type": "MIPS_26", "symbol": "sceCccJIStoUCS", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "sceCccEncodeUTF8", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "sceCccDecodeSJIS", "scope": "LIBRARY"}}}}}, "sceCccSJIStoUTF16": {"73b5e6fb9a7f635bd991baadc4c4595a313d9ea6": {"6895da70": {"type": "FUNCTION", "size": 372, "library": "libccc", "scope": "GLOBAL", "is_interface": true, "versions": ["1.0.0", "1.1.0"], "sdk": ["2.4.3", "2.5.5", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "320": {"type": "MIPS_26", "symbol": "sceCccDecodeSJIS", "scope": "LIBRARY", "original": ".text"}, "332": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}}}}}, "sceCccUTF16toSJIS": {"d4d108b8324cfcaef45c817370d3d3ee3b96d1fe": {"366f4739": {"type": "FUNCTION", "size": 348, "library": "libccc", "scope": "GLOBAL", "is_interface": true, "versions": ["1.0.0", "1.1.0"], "sdk": ["2.4.3", "2.5.5", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "sceCccEncodeSJIS", "scope": "LIBRARY", "original": ".text"}, "296": {"type": "MIPS_HI16", "symbol": "", "original": ".data"})PS2SDB", 8192}, + std::string_view{R"PS2SDB(, "300": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceCccUTF16toUTF8": {"113f6e29bd6f0a55cb3a09560f90e0b3dda6b20c": {"d6013b1a": {"type": "FUNCTION", "size": 440, "library": "libccc", "scope": "GLOBAL", "is_interface": true, "versions": ["1.0.0", "1.1.0"], "sdk": ["2.4.3", "2.5.5", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "408": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "412": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceCccSetTable": {"722a91784091909b5ae5a4c8fc068c7ee05cc1bd": {"5c073f3f": {"type": "FUNCTION", "size": 20, "library": "libccc", "scope": "GLOBAL", "is_interface": true, "versions": ["1.0.0", "1.1.0"], "sdk": ["2.4.3", "2.5.5", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "b72424411558f233ee125d7491f7d19cedab21b3": {"a5b2302d": {"type": "FUNCTION", "size": 40, "library": "libccc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_GPREL16", "symbol": "__table_ptr_jis2ucs__"}, "24": {"type": "MIPS_GPREL16", "symbol": "__table_ptr_ucs2jis__"}}}}}, "sceCccStrlenUTF16": {"d851d95de219658da474d1cc72330be5b0fa423e": {"cee68643": {"type": "FUNCTION", "size": 60, "library": "libccc", "scope": "GLOBAL", "is_interface": true, "versions": ["1.0.0", "1.1.0"], "sdk": ["2.4.3", "2.5.5", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "sceCccDecodeUTF16", "scope": "LIBRARY", "original": ".text"}}}}}, "sceCccStrlenUTF8": {"d851d95de219658da474d1cc72330be5b0fa423e": {"f1d414c3": {"type": "FUNCTION", "size": 60, "library": "libccc", "scope": "GLOBAL", "is_interface": true, "versions": ["1.0.0", "1.1.0"], "sdk": ["2.4.3", "2.5.5", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "sceCccDecodeUTF8", "scope": "LIBRARY", "original": ".text"}}}}}, "sceCccStrlenSJIS": {"d851d95de219658da474d1cc72330be5b0fa423e": {"9fff617a": {"type": "FUNCTION", "size": 60, "library": "libccc", "scope": "GLOBAL", "is_interface": true, "versions": ["1.0.0", "1.1.0"], "sdk": ["2.4.3", "2.5.5", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "sceCccDecodeSJIS", "scope": "LIBRARY", "original": ".text"}}}}}, "sceCccIsValidUCS4": {"3edb30666a55c9207919693a1d802c8c1d6f8aed": {"00000000": {"type": "FUNCTION", "size": 12, "library": "libccc", "scope": "GLOBAL", "is_interface": true, "versions": ["1.0.0", "1.1.0"], "sdk": ["2.4.3", "2.5.5", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "10c5bfc40c92a730cf0ac91e2d7a653e6f239081": {"00000000": {"type": "FUNCTION", "size": 56, "library": "libccc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "ae391038743a6a9b92bb5e244926c29d4bacaaf8": {"00000000": {"type": "FUNCTION", "size": 12, "library": "libccc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceCccIsValidUCS2": {"b8beead3b67d479fdd005c46f96351909f47deda": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libccc", "scope": "GLOBAL", "is_interface": true, "versions": ["1.0.0", "1.1.0"], "sdk": ["2.4.3", "2.5.5", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceCccIsValidJIS": {"e628971c227ba4379f1644fbcc1f102a2c865fd3": {"00000000": {"type": "FUNCTION", "size": 124, "library": "libccc", "scope": "GLOBAL", "is_interface": true, "versions": ["1.0.0", "1.1.0"], "sdk": ["2.4.3", "2.5.5", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "46a9a9be64cc7a11b64081c5fbf9c504311bfabf": {"00000000": {"type": "FUNCTION", "size": 256, "library": "libccc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceCccIsValidUTF8": {"3edb30666a55c9207919693a1d802c8c1d6f8aed": {"00000000": {"type": "FUNCTION", "size": 12, "library": "libccc", "scope": "GLOBAL", "is_interface": true, "versions": ["1.0.0", "1.1.0"], "sdk": ["2.4.3", "2.5.5", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "8c63eed0b88f6bcccf4c5a25d9aab1f6d2036231": {"81893ccf": {"type": "FUNCTION", "size": 40, "library": "libccc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "sceCccIsValidUCS4", "scope": "LIBRARY"}}}}, "7ba17f652620d1a8770717ffc05543c774ba24f8": {"8042f9a5": {"type": "FUNCTION", "size": 28, "library": "libccc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceCccIsValidUCS4", "scope": "LIBRARY"}}}}}, "sceCccIsValidUTF16": {"5378c4088e112860680ea2d931d22372400c3e67": {"00000000": {"type": "FUNCTION", "size": 48, "library": "libccc", "scope": "GLOBAL", "is_interface": true, "versions": ["1.0.0", "1.1.0"], "sdk": ["2.4.3", "2.5.5", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceCccIsValidSJIS": {"cdd4575dc103c1994eec6ac7397ba7535caf0fed": {"00000000": {"type": "FUNCTION", "size": 152, "library": "libccc", "scope": "GLOBAL", "is_interface": true, "versions": ["1.0.0", "1.1.0"], "sdk": ["2.4.3", "2.5.5", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "16bb37b09e9b3d20c75c550d82adc603ecfe9d48": {"a6d87bc6": {"type": "FUNCTION", "size": 112, "library": "libccc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"88": {"type": "MIPS_26", "symbol": "sceCccIsValidJIS", "scope": "LIBRARY"}}}}}, "sceCccDecodeUTF16": {"5baa484a5646151cbf01f6b64d8d9c4255bf500b": {"df2d6f77": {"type": "FUNCTION", "size": 100, "library": "libccc", "scope": "GLOBAL", "is_interface": true, "versions": ["1.0.0", "1.1.0"], "sdk": ["2.4.3", "2.5.5", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"84": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceCccDecodeUTF8": {"545a333939f7f3623fa849750dd37c069c9e9b1a": {"467399ef": {"type": "FUNCTION", "size": 116, "library": "libccc", "scope": "GLOBAL", "is_interface": true, "versions": ["1.0.0", "1.1.0"], "sdk": ["2.4.3", "2.5.5", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "0596590d0b43fd238695c6c994ef8746ef2f83f2": {"a7aee231": {"type": "FUNCTION", "size": 224, "library": "libccc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"108": {"type": "MIPS_GPREL16", "symbol": "__error_char_utf8__"}}}}}, "sceCccEncodeUTF16": {"d9b15ec9262b7aeddde7f47f2550e997804ee44d": {"97789e2e": {"type": "FUNCTION", "size": 132, "library": "libccc", "scope": "GLOBAL", "is_interface": true, "versions": ["1.0.0", "1.1.0"], "sdk": ["2.4.3", "2.5.5", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceCccEncodeUTF8": {"6818cc010e3293b4e0e5ceb24b59281a9036b724": {"c9922232": {"type": "FUNCTION", "size": 204, "library": "libccc", "scope": "GLOBAL", "is_interface": true, "versions")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: ["1.0.0", "1.1.0"], "sdk": ["2.4.3", "2.5.5", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "c8d439fd743facb7e609dd5bab9a8ee4d4a51a1d": {"2cecedfb": {"type": "FUNCTION", "size": 360, "library": "libccc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "sceCccIsValidUTF8", "scope": "LIBRARY"}, "64": {"type": "MIPS_GPREL16", "symbol": "__error_char_utf8__"}}}}, "356df19e27eeb2746ac895d2a0a991f93f581807": {"1204def2": {"type": "FUNCTION", "size": 268, "library": "libccc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "sceCccIsValidUTF8", "scope": "LIBRARY"}, "48": {"type": "MIPS_GPREL16", "symbol": "__error_char_utf8__"}}}}}, "sceCccUCStoJIS": {"aab3314b8c085308c3f9c3ab6f462e8a34274e7b": {"719fbbac": {"type": "FUNCTION", "size": 52, "library": "libccc", "scope": "GLOBAL", "is_interface": true, "versions": ["1.0.0", "1.1.0"], "sdk": ["2.4.3", "2.5.5", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "5d77191035382d5d8798450394e05e2508b36fb8": {"c6c03b94": {"type": "FUNCTION", "size": 132, "library": "libccc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_GPREL16", "symbol": "__table_ptr_ucs2jis__"}}}}}, "sceCccJIStoUCS": {"0a7b19b8c2764b30ed35202178aede4711fb79fe": {"d3e72eac": {"type": "FUNCTION", "size": 32, "library": "libccc", "scope": "GLOBAL", "is_interface": true, "versions": ["1.0.0", "1.1.0"], "sdk": ["2.4.3", "2.5.5", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "8513356c7c2446e47889d3e947e10bfa61d0a3f8": {"54c35c51": {"type": "FUNCTION", "size": 96, "library": "libccc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_GPREL16", "symbol": "__table_ptr_jis2ucs__"}}}}, "f2312187d8669d094889b2b274e6a2ad2e50bdc0": {"2aa8dc71": {"type": "FUNCTION", "size": 32, "library": "libccc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_GPREL16", "symbol": "__table_ptr_jis2ucs__"}}}}}, "sceCccSetErrorCharSJIS": {"dd63d5874ab021cb6724476baf5fb831baa9ba81": {"86811c7c": {"type": "FUNCTION", "size": 16, "library": "libccc", "scope": "GLOBAL", "is_interface": true, "versions": ["1.0.0", "1.1.0"], "sdk": ["2.4.3", "2.5.5", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceCccSetErrorCharUTF8": {"0f72143bbde701febfcbee128cbe1f2870065c43": {"86811c7c": {"type": "FUNCTION", "size": 16, "library": "libccc", "scope": "GLOBAL", "is_interface": true, "versions": ["1.0.0", "1.1.0"], "sdk": ["2.4.3", "2.5.5", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceCccSetErrorCharUTF16": {"0f72143bbde701febfcbee128cbe1f2870065c43": {"86811c7c": {"type": "FUNCTION", "size": 16, "library": "libccc", "scope": "GLOBAL", "is_interface": true, "versions": ["1.0.0", "1.1.0"], "sdk": ["2.4.3", "2.5.5", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}}, "libsein": {"sceSEIn_Init": {"48f6406709a9e7500ec338729e300342db7727ae": {"00000000": {"type": "FUNCTION", "size": 120, "library": "libsein", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3", "2.5.5", "2.7.1", "2.8.1", "3.0.0", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceSEIn_ATick": {"0a5385cf4a659d302a43046ea0269e2b17a3ef1d": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libsein", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3", "2.5.5", "2.7.1", "2.8.1", "3.0.0", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceSEIn_Load": {"0a5385cf4a659d302a43046ea0269e2b17a3ef1d": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libsein", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3", "2.5.5", "2.7.1", "2.8.1", "3.0.0", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceSEIn_PutSEMsg": {"ae7df1ab912c3cfe5adc33138df2658029391e57": {"00000000": {"type": "FUNCTION", "size": 232, "library": "libsein", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3", "2.5.5", "2.7.1", "2.8.1", "3.0.0", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceSEIn_PutMsg": {"1ee61b2b1dccb105680cc58b64f60da955a8fd54": {"3c723cd8": {"type": "FUNCTION", "size": 164, "library": "libsein", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3", "2.5.5", "2.7.1", "2.8.1", "3.0.0", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"144": {"type": "MIPS_26", "symbol": "sceSEIn_PutSEMsg", "scope": "LIBRARY", "original": ".text"}}}}}, "sceSEIn_MakeNoteOn": {"f008b92496c8773f713c0c41209fda229a037e47": {"1ee25ad4": {"type": "FUNCTION", "size": 80, "library": "libsein", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3", "2.5.5", "2.7.1", "2.8.1", "3.0.0", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "sceSEIn_PutSEMsg", "scope": "LIBRARY", "original": ".text"}}}}}, "sceSEIn_MakePitchOn": {"4d5541c044a6258a16d384de5b98fcb0cd92220c": {"b9d15ed0": {"type": "FUNCTION", "size": 100, "library": "libsein", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3", "2.5.5", "2.7.1", "2.8.1", "3.0.0", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"80": {"type": "MIPS_26", "symbol": "sceSEIn_PutSEMsg", "scope": "LIBRARY", "original": ".text"}}}}}, "sceSEIn_MakeNoteOnZero": {"09de5aedbfd8f1cba24824163651179f9d9c0944": {"1ee25ad4": {"type": "FUNCTION", "size": 80, "library": "libsein", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3", "2.5.5", "2.7.1", "2.8.1", "3.0.0", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "sceSEIn_PutSEMsg", "scope": "LIBRARY", "original": ".text"}}}}}, "sceSEIn_MakePitchOnZero": {"0629e7c3be4c15d9c57672d7d3f9ef5b325ad783": {"b9d15ed0": {"type": "FUNCTION", "size": 100, "library": "libsein", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3", "2.5.5", "2.7.1", "2.8.1", "3.0.0", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"80": {"type": "MIPS_26", "symbol": "sceSEIn_PutSEMsg", "scope": "LIBRARY", "original": ".text"}}}}}, "sceSEIn_MakeAllNoteOff": {"635d5afc21036a678b0d79e01e1fb2dcc0e8aaa3": {"967dc817": {"type": "FUNCTION", "size": 48, "library": "libsein", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3", "2.5.5", "2.7.1", "2.8.1", "3.0.0", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "sceSEIn_PutSEMsg", "scope": "LIBRARY", "original": ".text"}}}}}, "sceSEIn_MakeAllNoteOffMask": {"c5541792912d9fe91a68c758a3d9aa588b0d1ae8": {"314ecc13": {"type")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: "FUNCTION", "size": 132, "library": "libsein", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3", "2.5.5", "2.7.1", "2.8.1", "3.0.0", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"112": {"type": "MIPS_26", "symbol": "sceSEIn_PutSEMsg", "scope": "LIBRARY", "original": ".text"}}}}}, "sceSEIn_MakeTimeVolume": {"a46f1aa6d079425908141fa1304a5fc0716f6f7d": {"dc6c3999": {"type": "FUNCTION", "size": 228, "library": "libsein", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3", "2.5.5", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"140": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "192": {"type": "MIPS_26", "symbol": "sceSEIn_PutSEMsg", "scope": "LIBRARY", "original": ".text"}}}, "40c05fae": {"type": "FUNCTION", "size": 228, "library": "libsein", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1", "3.0.0", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"140": {"type": "MIPS_26", "symbol": "make_delta_time", "scope": "LIBRARY", "original": ".text"}, "192": {"type": "MIPS_26", "symbol": "sceSEIn_PutSEMsg", "scope": "LIBRARY", "original": ".text"}}}}}, "sceSEIn_MakeTimePanpot": {"b852430a5c00274b6adc175f8468aba009dc2e52": {"8e31d1e2": {"type": "FUNCTION", "size": 240, "library": "libsein", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3", "2.5.5", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"152": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "204": {"type": "MIPS_26", "symbol": "sceSEIn_PutSEMsg", "scope": "LIBRARY", "original": ".text"}}}, "c8054d35": {"type": "FUNCTION", "size": 240, "library": "libsein", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1", "3.0.0", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"152": {"type": "MIPS_26", "symbol": "make_delta_time", "scope": "LIBRARY", "original": ".text"}, "204": {"type": "MIPS_26", "symbol": "sceSEIn_PutSEMsg", "scope": "LIBRARY", "original": ".text"}}}}}, "sceSEIn_MakeTimePitch": {"b535aac9484429999444dec03af94fc4bcdecd8f": {"c2242ea3": {"type": "FUNCTION", "size": 244, "library": "libsein", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3", "2.5.5", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"152": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "208": {"type": "MIPS_26", "symbol": "sceSEIn_PutSEMsg", "scope": "LIBRARY", "original": ".text"}}}, "8410b274": {"type": "FUNCTION", "size": 244, "library": "libsein", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1", "3.0.0", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"152": {"type": "MIPS_26", "symbol": "make_delta_time", "scope": "LIBRARY", "original": ".text"}, "208": {"type": "MIPS_26", "symbol": "sceSEIn_PutSEMsg", "scope": "LIBRARY", "original": ".text"}}}}}, "sceSEIn_MakePitchLFO": {"2d5ed9c6f23a7ade0c7b86d5fa12e2c6b89a37ba": {"af4ee58a": {"type": "FUNCTION", "size": 240, "library": "libsein", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3", "2.5.5", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"148": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "208": {"type": "MIPS_26", "symbol": "sceSEIn_PutSEMsg", "scope": "LIBRARY", "original": ".text"}}}, "1622d2c2": {"type": "FUNCTION", "size": 240, "library": "libsein", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1", "3.0.0", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"148": {"type": "MIPS_26", "symbol": "make_delta_time", "scope": "LIBRARY", "original": ".text"}, "208": {"type": "MIPS_26", "symbol": "sceSEIn_PutSEMsg", "scope": "LIBRARY", "original": ".text"}}}}}, "sceSEIn_MakeAmpLFO": {"471b01d418799c5a5a65a62333c539d17c18862f": {"06b9afcb": {"type": "FUNCTION", "size": 224, "library": "libsein", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3", "2.5.5", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"148": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "192": {"type": "MIPS_26", "symbol": "sceSEIn_PutSEMsg", "scope": "LIBRARY", "original": ".text"}}}}, "884653aa9c8bf5c4e7f93b54055f361dba436f70": {"5a372d83": {"type": "FUNCTION", "size": 236, "library": "libsein", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1", "3.0.0", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"148": {"type": "MIPS_26", "symbol": "make_delta_time", "scope": "LIBRARY", "original": ".text"}, "204": {"type": "MIPS_26", "symbol": "sceSEIn_PutSEMsg", "scope": "LIBRARY", "original": ".text"}}}}}, "make_delta_time": {"38203e6878824c2f5bf35f073d173e962c67ae1a": {"00000000": {"type": "FUNCTION", "size": 176, "library": "libsein", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.8.1", "3.0.0", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceSEIn_MakeTimeLfoCycle": {"d7b7eabfa8c1fa7c8bdb80a995f9f921a743750b": {"af156cff": {"type": "FUNCTION", "size": 248, "library": "libsein", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1", "3.0.0", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"164": {"type": "MIPS_26", "symbol": "make_delta_time", "scope": "LIBRARY", "original": ".text"}, "180": {"type": "MIPS_26", "symbol": "make_delta_time", "scope": "LIBRARY", "original": ".text"}, "204": {"type": "MIPS_26", "symbol": "sceSEIn_PutSEMsg", "scope": "LIBRARY", "original": ".text"}}}}}}, "libhig": {"sceHiGsBlockSize": {"0ba2b281a65e4391b9467276c1a1567cc9a318cd": {"a094bc6d": {"type": "FUNCTION", "size": 180, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sceHiGsPageSize": {"7ffe357d76ef370e1679712f02513b196fe6272a": {"a094bc6d": {"type": "FUNCTION", "size": 180, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "_hig_sys_err": {"1ace9adbfe680831d3937760b248141e983b67a7": {"273b4da8": {"type": "FUNCTION", "size": 48, "library": "libhig", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "set_status": {"33cdefef9f2e15d0d1e8ea1420ef393412ea9f11": {"00000000": {"type": "FUNCTION", "size": 24, "library": "libhig", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "clear_status": {"289ed07a2727b3e49171bd7ea9f3edcb678dc6f1": {"00000000": {"type": "FUNCTION", "size": 28, "library": "libhig", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiRegistTable": {"ad6d0616b9021cbfc4d4c42c)PS2SDB", 8192}, + std::string_view{R"PS2SDB(6c47ee823c4e2428": {"5f010440": {"type": "FUNCTION", "size": 24, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "set_api": {"f5f7e8cafeba67d49596c0f281c44ff9ec8badf4": {"3c029a52": {"type": "FUNCTION", "size": 224, "library": "libhig", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "parse_sub": {"c6ec2ab95ec1029013c3a94738a187c107e9ce92": {"d3fbec77": {"type": "FUNCTION", "size": 432, "library": "libhig", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "set_api", "scope": "LIBRARY", "original": ".text"}, "72": {"type": "MIPS_26", "symbol": "set_status", "scope": "LIBRARY", "original": ".text"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "176": {"type": "MIPS_26", "symbol": "set_status", "scope": "LIBRARY", "original": ".text"}, "188": {"type": "MIPS_26", "symbol": "parse_sub", "scope": "LIBRARY", "original": ".text"}, "276": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "284": {"type": "MIPS_26", "symbol": "_hig_sys_err", "scope": "LIBRARY", "original": ".text"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "360": {"type": "MIPS_26", "symbol": "set_status", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHiParseHeader": {"906780468ca50ac80e9b0589098807bfac806ae8": {"00d9e030": {"type": "FUNCTION", "size": 208, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "_hig_sys_err", "scope": "LIBRARY", "original": ".text"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_26", "symbol": "parse_sub", "scope": "LIBRARY", "original": ".text"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceHiGetPlug": {"ab918cad88ac7fc4885142510cf25d60cc47aba7": {"b0c4e1e6": {"type": "FUNCTION", "size": 132, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "strncmp"}, "96": {"type": "MIPS_26", "symbol": "_hig_sys_err", "scope": "LIBRARY", "original": ".text"}}}}}, "apicall": {"3bbb58b3f663a9884fc901d375e6cd05879ffe87": {"00000000": {"type": "FUNCTION", "size": 36, "library": "libhig", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiCallPlug": {"3847040d58408465a918d54c7af7231254a57e92": {"a13742d5": {"type": "FUNCTION", "size": 32, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceHiCallPlugSub", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHiCallPlugSub": {"3a2780a714095cdd68d2e9145677e30f6fc9da4a": {"40f6631a": {"type": "FUNCTION", "size": 520, "library": "libhig", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_26", "symbol": "sceHiGetType", "scope": "LIBRARY", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "apicall", "scope": "LIBRARY", "original": ".text"}, "352": {"type": "MIPS_26", "symbol": "sceHiCallPlugSub", "scope": "LIBRARY", "original": ".text"}, "396": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "400": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceHiGetInsPlug": {"7b584072ef312e2cc3daf59b4975d2751e7c472b": {"5b00a0ac": {"type": "FUNCTION", "size": 384, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"204": {"type": "MIPS_26", "symbol": "_hig_sys_err", "scope": "LIBRARY", "original": ".text"}, "352": {"type": "MIPS_26", "symbol": "_hig_sys_err", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHiGetPlugList": {"27882fc35b7547f7e5d880e96f70f6b3a20ea870": {"71a1f9fd": {"type": "FUNCTION", "size": 220, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"200": {"type": "MIPS_26", "symbol": "_hig_sys_err", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHiGetList": {"420ce5810ad4ba1a166ae7d80aa29abdf7534cb2": {"5f02a5e5": {"type": "FUNCTION", "size": 236, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"216": {"type": "MIPS_26", "symbol": "_hig_sys_err", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHiGetData": {"a04002cba4379a45c31e8c34667ed7f47cd88f04": {"ddb0ddd2": {"type": "FUNCTION", "size": 428, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"212": {"type": "MIPS_26", "symbol": "_hig_sys_err", "scope": "LIBRARY", "original": ".text"}, "360": {"type": "MIPS_26", "symbol": "_hig_sys_err", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHiMakeType": {"e3aed8508fdd2b978f8129254eedc263d5a0a0de": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiGetType": {"e3a)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ed8508fdd2b978f8129254eedc263d5a0a0de": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiNewPlugBlk": {"168e8069f9c95a70ba120da9ea2f11354ac915c6": {"5e66787a": {"type": "FUNCTION", "size": 152, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "sceHiMemAlign", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "memset"}, "108": {"type": "MIPS_26", "symbol": "sceHiSetPlugType", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHiSetPlugType": {"dbd89432e642012025e144412a7f583dc845da0a": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiSetDataType": {"dbd89432e642012025e144412a7f583dc845da0a": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiSetPluginApi": {"ddd8e32f9e36739a53671a300121ec6445eb7bd6": {"405ac85a": {"type": "FUNCTION", "size": 32, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "set_api", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHiAddPlugBlk": {"3031c1d2cf0c73b91a0cd11dc2637a8841434a06": {"d7d5f097": {"type": "FUNCTION", "size": 160, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"132": {"type": "MIPS_26", "symbol": "_hig_sys_err", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHiInsPlugBlk": {"31772bc3a2eac8bd4288a75eb38399dd35b8a164": {"2f507920": {"type": "FUNCTION", "size": 72, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "_hig_sys_err", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHiAddDataBlk": {"1984d83b21176c53eb826d60fbc2fe920267c5f3": {"dc7d2791": {"type": "FUNCTION", "size": 148, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"128": {"type": "MIPS_26", "symbol": "_hig_sys_err", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHiInsDataBlk": {"319f8dbbd67c686ffc1ee3cba057d87443302e08": {"33a9002a": {"type": "FUNCTION", "size": 84, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "_hig_sys_err", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHiRmvPlugBlk": {"212a7c02f99ebbfb9068e09d303998325ab66733": {"c3336676": {"type": "FUNCTION", "size": 88, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "_hig_sys_err", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHiRmvDataBlk": {"ef5b29c1ab4e9d6ef6641188dcece2c52ef68dac": {"d462c87a": {"type": "FUNCTION", "size": 96, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"76": {"type": "MIPS_26", "symbol": "_hig_sys_err", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHiMakeDataBlk": {"68745f47d440c89d186c34cd82968a27b228c903": {"925ce03c": {"type": "FUNCTION", "size": 164, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "sceHiMemAlign", "scope": "LIBRARY"}, "60": {"type": "MIPS_26", "symbol": "_hig_sys_err", "scope": "LIBRARY", "original": ".text"}, "80": {"type": "MIPS_26", "symbol": "memset"}, "92": {"type": "MIPS_26", "symbol": "sceHiSetDataType", "scope": "LIBRARY", "original": ".text"}, "104": {"type": "MIPS_26", "symbol": "set_status", "scope": "LIBRARY", "original": ".text"}, "116": {"type": "MIPS_26", "symbol": "set_status", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHiGetPlugPlace": {"ee4b24749737225fe1630d6596d600f069dd4102": {"00000000": {"type": "FUNCTION", "size": 68, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiGetDataPlace": {"015f4a427ae2deb1b3b5005cca632e31aa63a652": {"00000000": {"type": "FUNCTION", "size": 84, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiStopPlugStatus": {"959b1fe028b990bce249a6031f5c8ad7b5eb5d7e": {"74509b19": {"type": "FUNCTION", "size": 36, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "set_status", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHiStopPlugListStatus": {"959b1fe028b990bce249a6031f5c8ad7b5eb5d7e": {"74509b19": {"type": "FUNCTION", "size": 36, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "set_status", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHiContPlugStatus": {"959b1fe028b990bce249a6031f5c8ad7b5eb5d7e": {"eab01284": {"type": "FUNCTION", "size": 36, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "clear_status", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHiContPlugListStatus": {"959b1fe028b990bce249a6031f5c8ad7b5eb5d7e": {"eab01284": {"type": "FUNCTION", "size": 36, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5)PS2SDB", 8192}, + std::string_view{R"PS2SDB(", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "clear_status", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHiMemInit": {"38e657cc5b1eece225af407a614e54028c5856ac": {"2278a570": {"type": "FUNCTION", "size": 108, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "make_info_block", "scope": "LIBRARY", "original": ".text"}}}}, "e083f1d8496a9bfd43b7e9365f27c1a61f5f3bfd": {"29ac9b1d": {"type": "FUNCTION", "size": 140, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0", "3.0.2"], "sdk": ["3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "memset"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "make_info_block", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHiMemAlloc": {"c605ac321a34146f19a3748cb64b46f086706649": {"d71ae383": {"type": "FUNCTION", "size": 272, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "208": {"type": "MIPS_26", "symbol": "make_info_block", "scope": "LIBRARY", "original": ".text"}, "236": {"type": "MIPS_26", "symbol": "make_info_block", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHiMemFree": {"2295f062d73641f910c901d521a728c3478c42ef": {"3bb51e9d": {"type": "FUNCTION", "size": 284, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "192": {"type": "MIPS_26", "symbol": "make_info_block", "scope": "LIBRARY", "original": ".text"}, "256": {"type": "MIPS_26", "symbol": "make_info_block", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHiMemAlign": {"07922cdefd8257bdf0709a1541ac63eabfce7dd9": {"3bbc2c1f": {"type": "FUNCTION", "size": 188, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "sceHiMemAlloc", "scope": "LIBRARY", "original": ".text"}, "124": {"type": "MIPS_26", "symbol": "make_info_block", "scope": "LIBRARY", "original": ".text"}, "140": {"type": "MIPS_26", "symbol": "make_info_block", "scope": "LIBRARY", "original": ".text"}, "148": {"type": "MIPS_26", "symbol": "sceHiMemFree", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHiMemRealloc": {"855c35b38ebf8ab6ed7e6954a24b50d0050fbce6": {"867f5844": {"type": "FUNCTION", "size": 148, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "sceHiMemAlloc", "scope": "LIBRARY", "original": ".text"}, "56": {"type": "MIPS_26", "symbol": "sceHiMemFree", "scope": "LIBRARY", "original": ".text"}, "72": {"type": "MIPS_26", "symbol": "sceHiMemAlloc", "scope": "LIBRARY", "original": ".text"}, "104": {"type": "MIPS_26", "symbol": "memcpy"}, "112": {"type": "MIPS_26", "symbol": "sceHiMemFree", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHiMemCalloc": {"374a7f217cd7dd44bb8b039b4b6de9c7d9802337": {"e50ca11d": {"type": "FUNCTION", "size": 84, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "sceHiMemAlloc", "scope": "LIBRARY", "original": ".text"}, "52": {"type": "MIPS_26", "symbol": "memset"}}}}}, "sceHiMemGetUsedSize": {"1e9cf8323fd7ab86dc24210fa7416e9ddd1aec60": {"5c073f3f": {"type": "FUNCTION", "size": 112, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceHiMemGetNousedSize": {"76740f38953f4a5c1b6c15d0f2ca0bd719b5c148": {"5c073f3f": {"type": "FUNCTION", "size": 112, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "make_info_block": {"7809a5624e49efddb38629ffc75312fefb76a915": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libhig", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiDMAInit": {"0025c39d328e10c1ba897deff4cf8194d8d2537e": {"be85f71d": {"type": "FUNCTION", "size": 184, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "sceHiMemAlign"}, "28": {"type": "MIPS_LO16", "symbol": "sceHiMemAlign"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_HI16", "symbol": "sceHiMe)PS2SDB", 8192}, + std::string_view{R"PS2SDB(mFree"}, "48": {"type": "MIPS_LO16", "symbol": "sceHiMemFree"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "_buf_init", "scope": "LIBRARY", "original": ".text"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "b330ffcf51371e4b55339794089d4b278190719e": {"bf65b753": {"type": "FUNCTION", "size": 188, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0", "3.0.2"], "sdk": ["3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "sceHiMemAlign"}, "28": {"type": "MIPS_LO16", "symbol": "sceHiMemAlign"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_HI16", "symbol": "sceHiMemFree"}, "48": {"type": "MIPS_LO16", "symbol": "sceHiMemFree"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "_buf_init", "scope": "LIBRARY", "original": ".text"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceHiDMARegist": {"d3eab190bc1fc7adaa8fa532715f5c6eff534a7f": {"88e8528b": {"type": "FUNCTION", "size": 244, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "_buf_get_ancestor", "scope": "LIBRARY", "original": ".text"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "_hig_dma_err", "scope": "LIBRARY", "original": ".text"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_26", "symbol": "_buf_alloc", "scope": "LIBRARY", "original": ".text"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_26", "symbol": "_hig_dma_err", "scope": "LIBRARY", "original": ".text"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "d9bcbed216736dfe2c9935e2e4102901be6a4f22": {"4e52e179": {"type": "FUNCTION", "size": 268, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "_buf_get_ancestor", "scope": "LIBRARY", "original": ".text"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_26", "symbol": "_hig_dma_err", "scope": "LIBRARY", "original": ".text"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_26", "symbol": "_buf_alloc", "scope": "LIBRARY", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_26", "symbol": "_buf_alloc", "scope": "LIBRARY", "original": ".text"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_26", "symbol": "_hig_dma_err", "scope": "LIBRARY", "original": ".text"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceHiDMASend": {"c4192360d91a807d931d2a4472cd5d6f2a5699f7": {"d379b3dc": {"type": "FUNCTION", "size": 196, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_26", "symbol": "_buf_set_end", "scope": "LIBRARY", "original": ".text"}, "44": {"type": "MIPS_26", "symbol": "_hig_dma_err", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_26", "symbol": "FlushCache"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "6c61d49a9ae435540957e2ef19ba3190015ed5a6": {"5acadca2": {"type": "FUNCTION", "size": 292, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_26", "symbol": "_buf_set_end", "scope": "LIBRARY", "original": ".text"}, "44": {"type": "MIPS_26", "symbol": "_hig_dma_err", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_26", "symbol": "FlushCache"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceHiDMASendI": {"43d4e7ca8d700755ec04d6b200a0c1e4408c7dce": {"d31b7811": {"type": "FUNCTION", "size": 204, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_26", "symbol": "_buf_set_end", "scope": "LIBRARY", "original": ".text"}, "44": {"type": "MIPS_26", "symbol":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "_hig_dma_err", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_26", "symbol": "iFlushCache"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "f0187f9549723c6adb8e668b797b09bbd184f7fe": {"09a3dd9e": {"type": "FUNCTION", "size": 292, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_26", "symbol": "_buf_set_end", "scope": "LIBRARY", "original": ".text"}, "44": {"type": "MIPS_26", "symbol": "_hig_dma_err", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_26", "symbol": "iFlushCache"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceHiDMAWait": {"a04265a024db504a5f7a12970778b22f36a2b9c8": {"2a629340": {"type": "FUNCTION", "size": 1816, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"144": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "164": {"type": "MIPS_26", "symbol": "scePrintf"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "180": {"type": "MIPS_26", "symbol": "scePrintf"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "196": {"type": "MIPS_26", "symbol": "scePrintf"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "208": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "212": {"type": "MIPS_26", "symbol": "scePrintf"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "228": {"type": "MIPS_26", "symbol": "scePrintf"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "240": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "244": {"type": "MIPS_26", "symbol": "scePrintf"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "256": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "260": {"type": "MIPS_26", "symbol": "scePrintf"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "272": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "276": {"type": "MIPS_26", "symbol": "scePrintf"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "288": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "292": {"type": "MIPS_26", "symbol": "scePrintf"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "304": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "308": {"type": "MIPS_26", "symbol": "scePrintf"}, "312": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "320": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "328": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "452": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "476": {"type": "MIPS_26", "symbol": "scePrintf"}, "480": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "488": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "492": {"type": "MIPS_26", "symbol": "scePrintf"}, "496": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "504": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "508": {"type": "MIPS_26", "symbol": "scePrintf"}, "512": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "520": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "524": {"type": "MIPS_26", "symbol": "scePrintf"}, "528": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "536": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "540": {"type": "MIPS_26", "symbol": "scePrintf"}, "544": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "552": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "556": {"type": "MIPS_26", "symbol": "scePrintf"}, "560": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "568": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "572": {"type": "MIPS_26", "symbol": "scePrintf"}, "576": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "584": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "588": {"type": "MIPS_26", "symbol": "scePrintf"}, "592": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "600": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "604": {"type": "MIPS_26", "symbol": "scePrintf"}, "608": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "616": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "620": {"type": "MIPS_26", "symbol": "scePrintf"}, "624": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "632": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "640": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "772": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "796": {"type": "MIPS_26", "symbol": "scePrintf"}, "800": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "808": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "812": {"type": "MIPS_26", "symbol": "scePrintf"}, "816": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "824": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "828": {"type": "MIPS_26", "symbol": "scePrintf"}, "832": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "840": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "844": {"type": "MIPS_26", "symbol": "scePrintf"}, "848": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "856": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "860": {"type": "MIPS_26", "symbol": "scePrintf"}, "864": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "872": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "876": {"type": "MIPS_26", "symbol": "scePrintf"}, "880": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "888": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "892": {"type": "MIPS_26", "symbol": "scePrintf"}, "896": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "904": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "908": {"type": "MIPS_26", "symbol": "scePrintf"}, "912": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "920": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "924": {"type": "MIPS_26", "symbol": "scePrintf"}, "928": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "936": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "940": {"type": "MIPS_26", "symbol": "scePrintf"}, "944": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "952": {"type": "MIPS_HI16", "symbol": "", "original": ".r)PS2SDB", 8192}, + std::string_view{R"PS2SDB(odata"}, "960": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1084": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1108": {"type": "MIPS_26", "symbol": "scePrintf"}, "1112": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1120": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1124": {"type": "MIPS_26", "symbol": "scePrintf"}, "1128": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1136": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1140": {"type": "MIPS_26", "symbol": "scePrintf"}, "1144": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1152": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1156": {"type": "MIPS_26", "symbol": "scePrintf"}, "1160": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1168": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1172": {"type": "MIPS_26", "symbol": "scePrintf"}, "1176": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1184": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1188": {"type": "MIPS_26", "symbol": "scePrintf"}, "1192": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1200": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1204": {"type": "MIPS_26", "symbol": "scePrintf"}, "1208": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1216": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1220": {"type": "MIPS_26", "symbol": "scePrintf"}, "1224": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1232": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1236": {"type": "MIPS_26", "symbol": "scePrintf"}, "1240": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1248": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1252": {"type": "MIPS_26", "symbol": "scePrintf"}, "1256": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1264": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1272": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1412": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1436": {"type": "MIPS_26", "symbol": "scePrintf"}, "1440": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1448": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1452": {"type": "MIPS_26", "symbol": "scePrintf"}, "1456": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1464": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1468": {"type": "MIPS_26", "symbol": "scePrintf"}, "1472": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1480": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1484": {"type": "MIPS_26", "symbol": "scePrintf"}, "1488": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1496": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1500": {"type": "MIPS_26", "symbol": "scePrintf"}, "1504": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1512": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1516": {"type": "MIPS_26", "symbol": "scePrintf"}, "1520": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1528": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1532": {"type": "MIPS_26", "symbol": "scePrintf"}, "1536": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1544": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1548": {"type": "MIPS_26", "symbol": "scePrintf"}, "1552": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1560": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1564": {"type": "MIPS_26", "symbol": "scePrintf"}, "1568": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1576": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1580": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1584": {"type": "MIPS_26", "symbol": "scePrintf"}, "1596": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1600": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1604": {"type": "MIPS_26", "symbol": "scePrintf"}, "1612": {"type": "MIPS_26", "symbol": "_hig_dma_err", "scope": "LIBRARY", "original": ".text"}, "1644": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "1648": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "1660": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "1672": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "1700": {"type": "MIPS_26", "symbol": "_buf_clear", "scope": "LIBRARY", "original": ".text"}, "1708": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "1732": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "1736": {"type": "MIPS_26", "symbol": "_buf_clear", "scope": "LIBRARY", "original": ".text"}, "1744": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "7852833b9a893c9581a97ee478e3ede45340604d": {"44766674": {"type": "FUNCTION", "size": 1780, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"144": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "164": {"type": "MIPS_26", "symbol": "scePrintf"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "180": {"type": "MIPS_26", "symbol": "scePrintf"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "196": {"type": "MIPS_26", "symbol": "scePrintf"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "208": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "212": {"type": "MIPS_26", "symbol": "scePrintf"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "228": {"type": "MIPS_26", "symbol": "scePrintf"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "240": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "244": {"type": "MIPS_26", "symbol": "scePrintf"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "256": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "260": {"type": "MIPS_26", "symbol": "scePrintf"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "272": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "276": {"type": "MIPS_26", "symbol": "scePrintf"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "288": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "292": {"type": "MIPS_26", "symbol": "scePrintf"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "304": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "308": {"type": "MIPS_26", "symbol": "scePrintf"}, "312": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "320": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "328": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "452": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "476": {"type": "MIPS_26", "symbol": "scePrintf"}, "480": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "488": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "492": {"type": "MIPS_26", "symbol": "scePrintf"}, "496": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "504": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "508": {"type": "MIPS_26", "symbol": "scePrintf"}, "512": {"type":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "MIPS_LO16", "symbol": "", "original": ".rodata"}, "520": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "524": {"type": "MIPS_26", "symbol": "scePrintf"}, "528": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "536": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "540": {"type": "MIPS_26", "symbol": "scePrintf"}, "544": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "552": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "556": {"type": "MIPS_26", "symbol": "scePrintf"}, "560": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "568": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "572": {"type": "MIPS_26", "symbol": "scePrintf"}, "576": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "584": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "588": {"type": "MIPS_26", "symbol": "scePrintf"}, "592": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "600": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "604": {"type": "MIPS_26", "symbol": "scePrintf"}, "608": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "616": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "620": {"type": "MIPS_26", "symbol": "scePrintf"}, "624": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "632": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "640": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "772": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "796": {"type": "MIPS_26", "symbol": "scePrintf"}, "800": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "808": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "812": {"type": "MIPS_26", "symbol": "scePrintf"}, "816": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "824": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "828": {"type": "MIPS_26", "symbol": "scePrintf"}, "832": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "840": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "844": {"type": "MIPS_26", "symbol": "scePrintf"}, "848": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "856": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "860": {"type": "MIPS_26", "symbol": "scePrintf"}, "864": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "872": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "876": {"type": "MIPS_26", "symbol": "scePrintf"}, "880": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "888": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "892": {"type": "MIPS_26", "symbol": "scePrintf"}, "896": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "904": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "908": {"type": "MIPS_26", "symbol": "scePrintf"}, "912": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "920": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "924": {"type": "MIPS_26", "symbol": "scePrintf"}, "928": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "936": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "940": {"type": "MIPS_26", "symbol": "scePrintf"}, "944": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "952": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "960": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1084": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1108": {"type": "MIPS_26", "symbol": "scePrintf"}, "1112": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1120": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1124": {"type": "MIPS_26", "symbol": "scePrintf"}, "1128": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1136": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1140": {"type": "MIPS_26", "symbol": "scePrintf"}, "1144": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1152": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1156": {"type": "MIPS_26", "symbol": "scePrintf"}, "1160": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1168": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1172": {"type": "MIPS_26", "symbol": "scePrintf"}, "1176": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1184": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1188": {"type": "MIPS_26", "symbol": "scePrintf"}, "1192": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1200": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1204": {"type": "MIPS_26", "symbol": "scePrintf"}, "1208": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1216": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1220": {"type": "MIPS_26", "symbol": "scePrintf"}, "1224": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1232": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1236": {"type": "MIPS_26", "symbol": "scePrintf"}, "1240": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1248": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1252": {"type": "MIPS_26", "symbol": "scePrintf"}, "1256": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1264": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1272": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1412": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1436": {"type": "MIPS_26", "symbol": "scePrintf"}, "1440": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1448": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1452": {"type": "MIPS_26", "symbol": "scePrintf"}, "1456": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1464": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1468": {"type": "MIPS_26", "symbol": "scePrintf"}, "1472": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1480": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1484": {"type": "MIPS_26", "symbol": "scePrintf"}, "1488": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1496": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1500": {"type": "MIPS_26", "symbol": "scePrintf"}, "1504": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1512": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1516": {"type": "MIPS_26", "symbol": "scePrintf"}, "1520": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1528": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1532": {"type": "MIPS_26", "symbol": "scePrintf"}, "1536": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1544": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1548": {"type": "MIPS_26", "symbol": "scePrintf"}, "1552": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1560": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1564": {"type": "MIPS_26", "symbol": "scePrintf"}, "1568": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1576": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1580": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1584": {"type": "MIPS_26", "symbol": "scePrintf"}, "1596": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1600": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1604": {"type": "MIPS_26", "symbol": "scePrintf"}, "1612": {"type": "MIPS_26", "symbol": "_hig_dma_err", "scope": "LIBRARY", "original": ".text"}, "1644": {"type": "MIPS_HI16", "symbol": "",)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "original": ".bss"}, "1648": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "1660": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "1672": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "1696": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "1700": {"type": "MIPS_26", "symbol": "_buf_clear", "scope": "LIBRARY", "original": ".text"}, "1708": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceHiDMASwap": {"1189007f7143abe42aa4b72d9f130ffb924bdc36": {"9fd5e3c5": {"type": "FUNCTION", "size": 32, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceHiDMAPurge": {"0a5385cf4a659d302a43046ea0269e2b17a3ef1d": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiDMAInit_DBuf": {"a423215c9ec0984452a485630e3540974f365ffd": {"c51b26ab": {"type": "FUNCTION", "size": 268, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_26", "symbol": "_hig_dma_err", "scope": "LIBRARY", "original": ".text"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_26", "symbol": "_buf_alloc", "scope": "LIBRARY", "original": ".text"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_26", "symbol": "_hig_dma_err", "scope": "LIBRARY", "original": ".text"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "_calc_freeq": {"e8ab82197215853130628bdbbbd0b1d4a3811e30": {"00000000": {"type": "FUNCTION", "size": 12, "library": "libhig", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_set_rwbuf": {"c13ed2f336e4eb4906fdd6b40fba31684af40179": {"04c02cb6": {"type": "FUNCTION", "size": 124, "library": "libhig", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_26", "symbol": "_calc_freeq", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "_buf_init": {"c16271dcfea12b7738b5072894ee8df2336b3a2f": {"dabdaec7": {"type": "FUNCTION", "size": 256, "library": "libhig", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "_hig_dma_err", "scope": "LIBRARY", "original": ".text"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "192": {"type": "MIPS_26", "symbol": "_buf_clear", "scope": "LIBRARY", "original": ".text"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "_buf_set_next": {"5a5e3d2b3cf8b2f14b8f680d6af6f476eef4be95": {"4379d46e": {"type": "FUNCTION", "size": 108, "library": "libhig", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "_buf_set_end": {"589923927e7b3dd9affd785864c147f28cfd3ac9": {"0fb62888": {"type": "FUNCTION", "size": 96, "library": "libhig", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "_buf_set_ret": {"80d355b27057c3fdb2812d7996087bc53c81de6d": {"0fb62888": {"type": "FUNCTION", "size": 96, "library": "libhig", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "_buf_alloc": {"deb64e593013f47fc6483db0ea787f21fe4b792e": {"efb68339": {"type": "FUNCTION", "size": 224, "library": "libhig", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_26", "symbol": "_buf_set_next", "scope": "LIBRARY", "original": ".text"}, "180": {"type": "MIPS_26", "symbol": "_buf_clear", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHiDMAMake_ChainStart": {"ee7d349b986c8fc1f0460b103f6c6c1b076724f5": {"340d0013": {"type": "FUNCTION", "size": 108, "library": "libhig", "scope": "GLOBAL", "is_interface": true,)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_26", "symbol": "_hig_dma_err", "scope": "LIBRARY", "original": ".text"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_26", "symbol": "_buf_alloc", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_26", "symbol": "_hig_dma_err", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHiDMAMake_ChainEnd": {"7fccb80d2f858fd0f13bef72be2f2af3ef05f10c": {"55c2e119": {"type": "FUNCTION", "size": 120, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "_hig_dma_err", "scope": "LIBRARY", "original": ".text"}, "52": {"type": "MIPS_26", "symbol": "_buf_set_ret", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_26", "symbol": "_hig_dma_err", "scope": "LIBRARY", "original": ".text"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceHiDMAMake_DynamicChainStart": {"5f381c5dc45ff62db20e303cc999c955508c36a3": {"d977f539": {"type": "FUNCTION", "size": 120, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_26", "symbol": "_hig_dma_err", "scope": "LIBRARY", "original": ".text"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_26", "symbol": "_buf_alloc", "scope": "LIBRARY", "original": ".text"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_26", "symbol": "_hig_dma_err", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHiDMAMake_DynamicChainEnd": {"f96dfa720ebb586ba5cad57f607f54b5c2b1c71c": {"1c75371a": {"type": "FUNCTION", "size": 276, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "_hig_dma_err", "scope": "LIBRARY", "original": ".text"}, "52": {"type": "MIPS_26", "symbol": "_buf_set_ret", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_26", "symbol": "_buf_alloc", "scope": "LIBRARY", "original": ".text"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_26", "symbol": "_hig_dma_err", "scope": "LIBRARY", "original": ".text"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "22c256fd148290a411ca11eaf706f2a82cf04708": {"c094b7a6": {"type": "FUNCTION", "size": 300, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_26", "symbol": "_hig_dma_err", "scope": "LIBRARY", "original": ".text"}, "48": {"type": "MIPS_26", "symbol": "_buf_set_ret", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "_buf_alloc", "scope": "LIBRARY", "original": ".text"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_26", "symbol": "_buf_alloc", "scope": "LIBRARY", "original": ".text"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_26", "symbol": "_hig_dma_err", "scope": "LIBRARY", "original": ".text"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "200": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceHiDMADel_Chain": {"eafe4e81edffefb8c59245b1b96bdb9645a66627": {"337079df": {"type": "FUNCTION", "size": 128, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceHiDMAMake_DBufStart": {"6b2bcf5b98a9a271a679950b3f1cdab840c56269": {"9965cce5": {"type": "FUNCTION", "size": 72, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_26", "symbol": "_hig_dma_err", "scope": "LIBRARY", "original": ".text"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceHiDMAMake_DBufEnd": {"88e2816ec42439c702f905760e7a8a98f1d1f06a": {"bcf497ec": {"type": "FUNCTION", "size": 60, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_26", "symbol": "_hig_dma_err", "scope": "LIBRARY", "original": ".text"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceHiDMAMake_LoadMicro": )PS2SDB", 8192}, + std::string_view{R"PS2SDB({"7bee4a44d11983de77ef7ccc4223e2fb902eb044": {"3a5a4db1": {"type": "FUNCTION", "size": 264, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_26", "symbol": "_hig_dma_err", "scope": "LIBRARY", "original": ".text"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "_buf_alloc", "scope": "LIBRARY", "original": ".text"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_26", "symbol": "_hig_dma_err", "scope": "LIBRARY", "original": ".text"}, "116": {"type": "MIPS_26", "symbol": "_set_rwbuf", "scope": "LIBRARY", "original": ".text"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceHiDMAMake_ExecMicro": {"c13b4471f11a915c535c3ab59e15c64d55d1ff11": {"ce14f00a": {"type": "FUNCTION", "size": 216, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_26", "symbol": "_hig_dma_err", "scope": "LIBRARY", "original": ".text"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_26", "symbol": "_buf_alloc", "scope": "LIBRARY", "original": ".text"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "_hig_dma_err", "scope": "LIBRARY", "original": ".text"}, "100": {"type": "MIPS_26", "symbol": "_set_rwbuf", "scope": "LIBRARY", "original": ".text"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceHiDMAMake_ExecMicroAddr": {"d19df31dfa4132e461fd03c404f95eb5040b73a4": {"719fe2fa": {"type": "FUNCTION", "size": 252, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "_hig_dma_err", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_26", "symbol": "_buf_alloc", "scope": "LIBRARY", "original": ".text"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_26", "symbol": "_hig_dma_err", "scope": "LIBRARY", "original": ".text"}, "108": {"type": "MIPS_26", "symbol": "_set_rwbuf", "scope": "LIBRARY", "original": ".text"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceHiDMAMake_ContinueMicro": {"f8d7d22a37193d9c904a8dcd69506fa36b4e7f2b": {"ce14f00a": {"type": "FUNCTION", "size": 216, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_26", "symbol": "_hig_dma_err", "scope": "LIBRARY", "original": ".text"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_26", "symbol": "_buf_alloc", "scope": "LIBRARY", "original": ".text"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "_hig_dma_err", "scope": "LIBRARY", "original": ".text"}, "100": {"type": "MIPS_26", "symbol": "_set_rwbuf", "scope": "LIBRARY", "original": ".text"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceHiDMAMake_WaitMicro": {"c99bf9c8a21525d4f7351dfeaace96043687dc37": {"ce14f00a": {"type": "FUNCTION", "size": 216, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_26", "symbol": "_hig_dma_err", "scope": "LIBRARY", "original": ".text"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_26", "symbol": "_buf_alloc", "scope": "LIBRARY", "original": ".text"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "_hig_dma_err", "scope": "LIBRARY", "original": ".text"}, "100": {"type": "MIPS_26", "symbol": "_set_rwbuf", "scope": "LIBRARY", "original": ".text"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceHiDMAMake_LoadImm": {"74b275c9361d95640c935af7fd1c9e8e235634a9": {"7c67cc27": {"type": "FUNCTION", "size": 428, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_26", "symbol": "_hig_dma_err", "scope": "LIBRARY", "original": ".text"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "_buf_alloc", "scope": "LIBRARY", "original": ".text"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_26", "symbol": "_hig_dma_err", "scope": "LIBRARY", "original": ".text"}, "116": {"type": "MIPS_26", "symbol": "_set_rwbuf", "scope": "LIBRARY", "original": ".text"}, "124": {"type": "MIPS_26", "symbol": "_get_unpack_size", "scope": "LIBRARY", "original": ".text"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": )PS2SDB", 8192}, + std::string_view{R"PS2SDB(".bss"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "268": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "360": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "580ea342db08be73995a9158d86c39f38c59b06b": {"2addd688": {"type": "FUNCTION", "size": 436, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_26", "symbol": "_hig_dma_err", "scope": "LIBRARY", "original": ".text"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "_buf_alloc", "scope": "LIBRARY", "original": ".text"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_26", "symbol": "_hig_dma_err", "scope": "LIBRARY", "original": ".text"}, "116": {"type": "MIPS_26", "symbol": "_set_rwbuf", "scope": "LIBRARY", "original": ".text"}, "124": {"type": "MIPS_26", "symbol": "_get_unpack_size", "scope": "LIBRARY", "original": ".text"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "268": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "360": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "384": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceHiDMAMake_LoadPtr": {"128cbc259d69c81e20a8ec810bc51000f3662fa2": {"581a2596": {"type": "FUNCTION", "size": 452, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_26", "symbol": "_hig_dma_err", "scope": "LIBRARY", "original": ".text"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_26", "symbol": "_buf_alloc", "scope": "LIBRARY", "original": ".text"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "_hig_dma_err", "scope": "LIBRARY", "original": ".text"}, "124": {"type": "MIPS_26", "symbol": "_set_rwbuf", "scope": "LIBRARY", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "_get_unpack_size", "scope": "LIBRARY", "original": ".text"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "300": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "312": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "324": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "392": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceHiDMAMake_CallID": {"e266006bf4f48cebaa6b1331860edc72086b9bc3": {"585a06f2": {"type": "FUNCTION", "size": 356, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_26", "symbol": "_hig_dma_err", "scope": "LIBRARY", "original": ".text"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "_buf_alloc", "scope": "LIBRARY", "original": ".text"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_26", "symbol": "_hig_dma_err", "scope": "LIBRARY", "original": ".text"}, "116": {"type": "MIPS_26", "symbol": "_set_rwbuf", "scope": "LIBRARY", "original": ".text"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "220": {"type": "MIPS_26", "symbol": "_hig_dma_err", "scope": "LIBRARY", "original": ".text"}, "260": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceHiDMAMake_CallPtr": {"aebc2ad1227ee3516fdaf36a17f0ee7953c0776f": {"850b7f80": {"type": "FUNCTION", "size": 232, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "_hig_dma_err", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_26", "symbol": "_buf_alloc", "scope": "LIBRARY", "original": ".text"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_26", "symbol": "_hig_dma_err", "scope": "LIBRARY", "original": ".text"}, "108": {"type": "MIPS_26", "symbol": "_set_rwbuf", "scope": "LIBRARY", "original": ".text"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceHiDMAMake_LoadStep": {"6ae64555b874a20666f620d1e39b5d29ae58042d": {"b8ec0999": {"type": "FUNCTION", "size": 500, "library": "libhig", "sc)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_26", "symbol": "_hig_dma_err", "scope": "LIBRARY", "original": ".text"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "_buf_alloc", "scope": "LIBRARY", "original": ".text"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_26", "symbol": "_hig_dma_err", "scope": "LIBRARY", "original": ".text"}, "140": {"type": "MIPS_26", "symbol": "_set_rwbuf", "scope": "LIBRARY", "original": ".text"}, "148": {"type": "MIPS_26", "symbol": "_get_unpack_size", "scope": "LIBRARY", "original": ".text"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "200": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "332": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "364": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "432": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceHiDMAMake_LumpStart": {"98d929bf383e1a0e1d364dea5fd104ab0866a735": {"604e5c7f": {"type": "FUNCTION", "size": 232, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "_hig_dma_err", "scope": "LIBRARY", "original": ".text"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_26", "symbol": "_hig_dma_err", "scope": "LIBRARY", "original": ".text"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_26", "symbol": "_buf_alloc", "scope": "LIBRARY", "original": ".text"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_26", "symbol": "_hig_dma_err", "scope": "LIBRARY", "original": ".text"}, "148": {"type": "MIPS_26", "symbol": "_set_rwbuf", "scope": "LIBRARY", "original": ".text"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceHiDMAMake_LumpEnd": {"1b009ceef6f595d1fac83430c1235bf96532d748": {"5af6327b": {"type": "FUNCTION", "size": 336, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "_hig_dma_err", "scope": "LIBRARY", "original": ".text"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "_get_unpack_size", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "228": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "312": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceHiDMAMake_Lump": {"e0a599446733cbbfc524550cc62f81a8d19d04e9": {"a772d9a9": {"type": "FUNCTION", "size": 268, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_26", "symbol": "_hig_dma_err", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "sceHiDMAMake_LumpEnd", "scope": "LIBRARY", "original": ".text"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_26", "symbol": "_buf_alloc", "scope": "LIBRARY", "original": ".text"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_26", "symbol": "_hig_dma_err", "scope": "LIBRARY", "original": ".text"}, "152": {"type": "MIPS_26", "symbol": "_set_rwbuf", "scope": "LIBRARY", "original": ".text"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "176": {"type": "MIPS_26", "symbol": "sceHiDMAMake_LumpStart", "scope": "LIBRARY", "original": ".text"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "53cf023748926f36e3785dfe534e8e39c7b33a1a": {"d3a05ffa": {"type": "FUNCTION", "size": 272, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: {"type": "MIPS_26", "symbol": "_hig_dma_err", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "sceHiDMAMake_LumpEnd", "scope": "LIBRARY", "original": ".text"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_26", "symbol": "_buf_alloc", "scope": "LIBRARY", "original": ".text"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_26", "symbol": "_hig_dma_err", "scope": "LIBRARY", "original": ".text"}, "152": {"type": "MIPS_26", "symbol": "_set_rwbuf", "scope": "LIBRARY", "original": ".text"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "176": {"type": "MIPS_26", "symbol": "sceHiDMAMake_LumpStart", "scope": "LIBRARY", "original": ".text"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceHiDMAMake_LoadGS": {"d1b3f6638ca67a18b3755941757e0025242b2d0f": {"3a5a4db1": {"type": "FUNCTION", "size": 260, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_26", "symbol": "_hig_dma_err", "scope": "LIBRARY", "original": ".text"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "_buf_alloc", "scope": "LIBRARY", "original": ".text"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_26", "symbol": "_hig_dma_err", "scope": "LIBRARY", "original": ".text"}, "116": {"type": "MIPS_26", "symbol": "_set_rwbuf", "scope": "LIBRARY", "original": ".text"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "ac67a9a6906b9da66ab00f5fbf4c7841f47dbab2": {"1702dc27": {"type": "FUNCTION", "size": 288, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0", "3.0.2"], "sdk": ["3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_26", "symbol": "_hig_dma_err", "scope": "LIBRARY", "original": ".text"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "_buf_alloc", "scope": "LIBRARY", "original": ".text"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_26", "symbol": "_hig_dma_err", "scope": "LIBRARY", "original": ".text"}, "116": {"type": "MIPS_26", "symbol": "_set_rwbuf", "scope": "LIBRARY", "original": ".text"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceHiDMAMake_LoadGSLump": {"9502b3696a622468d8f0223be238ab6328ca4710": {"9c2358b2": {"type": "FUNCTION", "size": 468, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_26", "symbol": "_hig_dma_err", "scope": "LIBRARY", "original": ".text"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "_buf_alloc", "scope": "LIBRARY", "original": ".text"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_26", "symbol": "_hig_dma_err", "scope": "LIBRARY", "original": ".text"}, "140": {"type": "MIPS_26", "symbol": "_set_rwbuf", "scope": "LIBRARY", "original": ".text"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "320": {"type": "MIPS_26", "symbol": "memcpy"}, "328": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "368": {"type": "MIPS_26", "symbol": "_buf_alloc", "scope": "LIBRARY", "original": ".text"}, "380": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "384": {"type": "MIPS_26", "symbol": "_hig_dma_err", "scope": "LIBRARY", "original": ".text"}, "400": {"type": "MIPS_26", "symbol": "_set_rwbuf", "scope": "LIBRARY", "original": ".text"}, "412": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "487fae9e5168ac14e541473d1b368a5288b916d3": {"878a020e": {"type": "FUNCTION", "size": 484, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0", "3.0.2"], "sdk": ["3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_26", "symbol": "_hig_dma_err", "scope": "LIBRARY", "original": ".text"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_26", "symbol": "_buf_alloc", "scope": "LIBRARY", "original": ".text"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_26", "symbol": "_hig_dma_err", "scope": "LIBRARY", "original": ".text"}, "136": {"type": "MIPS_26", "symbol": "_set_rwbuf", "scope": "LIBRARY", "original": ".text"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "340": {"type": "MIPS_26", "symbol": "memcpy"}, "348": {"type": "MIPS_LO16", "symbol": "", "original":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( ".bss"}, "388": {"type": "MIPS_26", "symbol": "_buf_alloc", "scope": "LIBRARY", "original": ".text"}, "400": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "404": {"type": "MIPS_26", "symbol": "_hig_dma_err", "scope": "LIBRARY", "original": ".text"}, "420": {"type": "MIPS_26", "symbol": "_set_rwbuf", "scope": "LIBRARY", "original": ".text"}, "432": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceHiDMAGet_ChainAddr": {"25ec7106b77ef94e7a605f0ab302a21ec8e84c65": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_get_slice": {"2a504e041cc75de96373099fc40b93c16aa32cd8": {"d3e72eac": {"type": "FUNCTION", "size": 44, "library": "libhig", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceHiDMASet_BufferPtr": {"fa2df7cb1611386fb512aadbcff716a345c32946": {"93ddfd01": {"type": "FUNCTION", "size": 92, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "_get_slice", "scope": "LIBRARY", "original": ".text"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_26", "symbol": "_set_rwbuf", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHiDMAGet_BufferPtr": {"ea3a0e84db7a6625f8531fb9767f84efe8846de0": {"d6ed632d": {"type": "FUNCTION", "size": 36, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "_buf_get_ancestor": {"e76f4eb6c6308b87e67e6813cb81c9dcccb566f4": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhig", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_buf_clear": {"bef1648a14fceb8c8126125732d9010695f31d11": {"00000000": {"type": "FUNCTION", "size": 48, "library": "libhig", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_get_unpack_size": {"8b697b9226319d6f77a167695423ea63552cd2d4": {"003a3b50": {"type": "FUNCTION", "size": 176, "library": "libhig", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "_hig_dma_err": {"1ace9adbfe680831d3937760b248141e983b67a7": {"273b4da8": {"type": "FUNCTION", "size": 48, "library": "libhig", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.0", "2.7.0"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": "sceHiErrState"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "sceHiErrState"}}}}, "ed9f0d68511b07924d73902bdb45ff58f7ec8844": {"e40af5c2": {"type": "FUNCTION", "size": 76, "library": "libhig", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceHiGetErrStatePtr", "scope": "LIBRARY"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "_hig_gsmem_err": {"1ace9adbfe680831d3937760b248141e983b67a7": {"273b4da8": {"type": "FUNCTION", "size": 48, "library": "libhig", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.0", "2.7.0"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": "sceHiErrState"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "sceHiErrState"}}}}, "ed9f0d68511b07924d73902bdb45ff58f7ec8844": {"e40af5c2": {"type": "FUNCTION", "size": 76, "library": "libhig", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceHiGetErrStatePtr", "scope": "LIBRARY"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sceHiGsMemInit": {"d674e76659214ce1bb963572a52d8363e813d2e2": {"3a96056f": {"type": "FUNCTION", "size": 140, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_26", "symbol": "_hig_gsmem_err", "scope": "LIBRARY", "original": ".text"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_26", "symbol": "_hig_gsmem_err", "scope": "LIBRARY", "original": ".text"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceHiGsMemAlloc": {"d11d51afadf90c7719460c759298a7b926b4f54c": {"c9cd6f87": {"type": "FUNCTION", "size": 464, "library": "libhig", "scope": "GLOBAL", "is_in)PS2SDB", 8192}, + std::string_view{R"PS2SDB(terface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "276": {"type": "MIPS_26", "symbol": "sceHiMemCalloc", "scope": "LIBRARY"}, "316": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "324": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "380": {"type": "MIPS_26", "symbol": "sceHiMemCalloc", "scope": "LIBRARY"}, "396": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "408": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceHiGsMemFree": {"a0510af8e53ac00665cab772ea8cdc9ac07a2d99": {"48725c75": {"type": "FUNCTION", "size": 100, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_26", "symbol": "_hig_gsmem_err", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_26", "symbol": "sceHiMemFree", "scope": "LIBRARY"}}}}}, "sceHiGsMemRealloc": {"ac6111a238dc1c98cb7dd57d5c6c2b414e2d248b": {"4c6d9e73": {"type": "FUNCTION", "size": 68, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "sceHiGsMemFree", "scope": "LIBRARY", "original": ".text"}, "40": {"type": "MIPS_26", "symbol": "sceHiGsMemAlloc", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHiGsMemAddTbl": {"e567b7642a6bd26f766aa7c477fa939d45cff580": {"f60359cc": {"type": "FUNCTION", "size": 64, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "_hig_gsmem_err", "scope": "LIBRARY", "original": ".text"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceHiGsMemRestSize": {"d9d6a9a94bd2941438b92b47ce92022a2339e53e": {"268cd9ce": {"type": "FUNCTION", "size": 64, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceHiGsMemRestSizePlus": {"1e14782516fae032133ee81a2ea32c997538487d": {"d3e72eac": {"type": "FUNCTION", "size": 72, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceHiGsMemPrintTbl": {"218b61e4ca003b5283bf133687fa9568fe1b56e9": {"f3e73ee3": {"type": "FUNCTION", "size": 92, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "48": {"type": "MIPS_26", "symbol": "scePrintf"}}}}}, "_hig_gsdsp_err": {"1ace9adbfe680831d3937760b248141e983b67a7": {"273b4da8": {"type": "FUNCTION", "size": 48, "library": "libhig", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.0", "2.7.0"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": "sceHiErrState"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "sceHiErrState"}}}}, "ed9f0d68511b07924d73902bdb45ff58f7ec8844": {"e40af5c2": {"type": "FUNCTION", "size": 76, "library": "libhig", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceHiGetErrStatePtr", "scope": "LIBRARY"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceHiGsDisplayStatus": {"2a51c093207f3b6546ea5ac91d4ae4a6999eaed5": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "_register": {"0ca9393b54257f635c3180808564b89f7a782e91": {"1573b0a6": {"type": "FUNCTION", "size": 136, "library": "libhig", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "sceHiDMAMake_ChainStart", "scope": "LIBRARY"}, "44": {"type": "MIPS_26", "symbol": "sceHiDMAMake_WaitMicro", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "sceHiDMAMake_LoadGS", "scope": "LIBRARY"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "sceHiDMAMake_ChainEnd", "scope": "LIBRARY"}}}}}, "sceHiGsDisplaySet": {"10ab9f4090c3c235c94980a55d04e2e226f68625": {"805decd4": {"type": "FUNCTION", "size": 8)PS2SDB", 8192}, + std::string_view{R"PS2SDB(52, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_26", "symbol": "sceGsGetGParam"}, "144": {"type": "MIPS_26", "symbol": "sceGsSetDefDBuff"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_26", "symbol": "sceHiGsMemFree", "scope": "LIBRARY"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "200": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "204": {"type": "MIPS_26", "symbol": "sceHiGsMemFree", "scope": "LIBRARY"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "240": {"type": "MIPS_26", "symbol": "sceHiGsMemFree", "scope": "LIBRARY"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "268": {"type": "MIPS_26", "symbol": "sceHiGsPageSize", "scope": "LIBRARY"}, "284": {"type": "MIPS_26", "symbol": "sceHiGsMemAlloc", "scope": "LIBRARY"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "300": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "324": {"type": "MIPS_26", "symbol": "sceHiGsMemAlloc", "scope": "LIBRARY"}, "332": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "344": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "348": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "364": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "372": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "400": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "404": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "412": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "460": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "472": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "476": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "480": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "484": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "516": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "520": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "528": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "552": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "556": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "560": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "564": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "576": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "600": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "612": {"type": "MIPS_26", "symbol": "sceHiGsPageSize", "scope": "LIBRARY"}, "624": {"type": "MIPS_26", "symbol": "sceHiGsMemAlloc", "scope": "LIBRARY"}, "632": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "640": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "644": {"type": "MIPS_26", "symbol": "_hig_gsdsp_err", "scope": "LIBRARY", "original": ".text"}, "672": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "728": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "736": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "764": {"type": "MIPS_26", "symbol": "_register", "scope": "LIBRARY", "original": ".text"}, "796": {"type": "MIPS_26", "symbol": "_register", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHiGsDisplayEnd": {"18ca8c5e013e09ab21e561e0a21c1faf5cfb8dbe": {"c70cfbc2": {"type": "FUNCTION", "size": 164, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceHiGsServiceExit", "scope": "LIBRARY"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "sceHiGsMemFree", "scope": "LIBRARY"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_26", "symbol": "sceHiGsMemFree", "scope": "LIBRARY"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_26", "symbol": "sceHiGsMemFree", "scope": "LIBRARY"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceHiGsDisplayMode": {"5d316a4039b00403becd149da0fe63ccffebee4e": {"16d270e9": {"type": "FUNCTION", "size": 268, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "228": {"type": "MIPS_26", "symbol": "_hig_gsdsp_err", "scope": "LIBRARY", "original": ".text"}, "244": {"type": "MIPS_26", "symbol": "sceGsResetGraph"}}}}}, "sceHiGsDisplaySize": {"be5472815fccc385c5a58751d5ff68dd1fac3293": {"c466dafd": {"type": "FUNCTION", "size": 396, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_26", "symbol": "_hig_gsdsp_err", )PS2SDB", 8192}, + std::string_view{R"PS2SDB("scope": "LIBRARY", "original": ".text"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "232": {"type": "MIPS_26", "symbol": "_hig_gsdsp_err", "scope": "LIBRARY", "original": ".text"}, "248": {"type": "MIPS_26", "symbol": "sceHiGsDisplaySet", "scope": "LIBRARY", "original": ".text"}, "268": {"type": "MIPS_HI16", "symbol": "", "original": "sceHiGsStdCtx"}, "272": {"type": "MIPS_26", "symbol": "sceHiGsServiceInit", "scope": "LIBRARY"}, "296": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "300": {"type": "MIPS_LO16", "symbol": "", "original": "sceHiGsStdCtx"}, "304": {"type": "MIPS_26", "symbol": "sceHiGsCtxSetByDBuff", "scope": "LIBRARY"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "320": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "328": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "344": {"type": "MIPS_LO16", "symbol": "", "original": "sceHiGsStdCtx"}, "356": {"type": "MIPS_LO16", "symbol": "", "original": "sceHiGsStdCtx"}, "372": {"type": "MIPS_26", "symbol": "sceHiGsCtxUpdate", "scope": "LIBRARY"}, "376": {"type": "MIPS_LO16", "symbol": "", "original": "sceHiGsStdCtx"}}}}}, "sceHiGsDisplaySwap": {"1f10531651d9e43cf4f7302d963703516ab2d36a": {"4db0313a": {"type": "FUNCTION", "size": 264, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_26", "symbol": "sceGsGetGParam"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_26", "symbol": "sceGsSetHalfOffset"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_26", "symbol": "sceHiGsCtxSwapAll", "scope": "LIBRARY"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_26", "symbol": "sceGsPutDispEnv"}, "176": {"type": "MIPS_26", "symbol": "sceGsPutDispEnv"}, "184": {"type": "MIPS_26", "symbol": "sceHiGsCtxGetDefault", "scope": "LIBRARY"}, "200": {"type": "MIPS_26", "symbol": "sceHiGsCtxFcache", "scope": "LIBRARY"}, "212": {"type": "MIPS_26", "symbol": "sceHiGsCtxSend", "scope": "LIBRARY"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "f3d0453afdaa9616bdc4c4e3a54b5c0ad00be918": {"261908f9": {"type": "FUNCTION", "size": 288, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_26", "symbol": "sceGsGetGParam"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_26", "symbol": "sceGsSetHalfOffset"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_26", "symbol": "sceHiGsCtxSwapAll", "scope": "LIBRARY"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "184": {"type": "MIPS_26", "symbol": "sceGsPutDispEnv"}, "200": {"type": "MIPS_26", "symbol": "sceGsPutDispEnv"}, "208": {"type": "MIPS_26", "symbol": "sceHiGsCtxGetDefault", "scope": "LIBRARY"}, "224": {"type": "MIPS_26", "symbol": "sceHiGsCtxFcache", "scope": "LIBRARY"}, "236": {"type": "MIPS_26", "symbol": "sceHiGsCtxSend", "scope": "LIBRARY"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceHiGsClearColor": {"ef257b19ae24d608afb8555b73da72518f32ed1e": {"341f8ad4": {"type": "FUNCTION", "size": 160, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "sceHiGsCtxGetDefault", "scope": "LIBRARY"}, "60": {"type": "MIPS_26", "symbol": "sceHiGsCtxSetClearColor", "scope": "LIBRARY"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceHiGsClearDepth": {"922f690bed5226cd179c4e30b63b8196fa7ba227": {"9caa2e76": {"type": "FUNCTION", "size": 68, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceHiGsCtxGetDefault", "scope": "LIBRARY"}, "24": {"type": "MIPS_26", "symbol": "sceHiGsCtxSetClearZ", "scope": "LIBRARY"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceHiGsClear": {"579936efce67c034a0b1e98e356b73eb6c5a3f29": {"2e3365c0": {"type": "FUNCTION", "size": 408, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceHiGsCtxGetDefault", "scope": "LIBRARY"}, "24": {"type": "MIPS_26", "symbol": "sceHiGsCtxSetClearMode", "scope": "LIBRARY"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "208": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "284": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "292": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "324": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "348": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "356": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "360": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "372": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "_hig_gsctx_err": {"1ace9adbfe680831d3937760b248141e983b67a7": {"273b4da8": {"type": "FUNCTION", "size": 48, "library": "libhig", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.0", "2.7.0"], "s)PS2SDB", 8192}, + std::string_view{R"PS2SDB(dk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": "sceHiErrState"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "sceHiErrState"}}}}, "ed9f0d68511b07924d73902bdb45ff58f7ec8844": {"e40af5c2": {"type": "FUNCTION", "size": 76, "library": "libhig", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceHiGetErrStatePtr", "scope": "LIBRARY"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sceHiGsContextID": {"3068c0370b6821e90afefbe8dff4734d535afd9c": {"6b448cbe": {"type": "FUNCTION", "size": 64, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "_hig_gsctx_err", "scope": "LIBRARY", "original": ".text"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "sceHiGsCtxSetContext", "scope": "LIBRARY", "original": ".text"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceHiGsContextStatus": {"613313e4523eb8c0edd846234c29b8ab45b97441": {"d6ed632d": {"type": "FUNCTION", "size": 16, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceHiGsGeneralStatus": {"dda2e83879e8ec8472e168637cfb51fac29f8227": {"d6ed632d": {"type": "FUNCTION", "size": 16, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceHiGsPackedDelete": {"5fe2fe725f07871cf421d6bf06e0e7af41e5e0a5": {"186c47f4": {"type": "FUNCTION", "size": 140, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "sceHiDMADel_Chain", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "sceHiMemFree", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "sceHiMemFree", "scope": "LIBRARY"}}}}}, "sceHiGsPackedCreate": {"b7a5b9d13658aa399701c83c4dc85282992f74ca": {"768d5a46": {"type": "FUNCTION", "size": 544, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "sceHiMemAlign", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "sceHiMemAlign", "scope": "LIBRARY"}, "376": {"type": "MIPS_26", "symbol": "sceHiDMAMake_ChainStart", "scope": "LIBRARY"}, "392": {"type": "MIPS_26", "symbol": "sceHiDMAMake_WaitMicro", "scope": "LIBRARY"}, "412": {"type": "MIPS_26", "symbol": "sceHiDMAMake_LoadGS", "scope": "LIBRARY"}, "428": {"type": "MIPS_26", "symbol": "sceHiDMAMake_ChainEnd", "scope": "LIBRARY"}, "444": {"type": "MIPS_26", "symbol": "sceHiGsPackedDelete", "scope": "LIBRARY", "original": ".text"}, "460": {"type": "MIPS_26", "symbol": "sceHiGsPackedDelete", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHiGsPackedUpdate": {"5001c32d0e188a26239912d6933e77ef72c50842": {"2a21cb93": {"type": "FUNCTION", "size": 356, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "_hig_gsctx_err", "scope": "LIBRARY", "original": ".text"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "_hig_drw_err": {"1ace9adbfe680831d3937760b248141e983b67a7": {"273b4da8": {"type": "FUNCTION", "size": 48, "library": "libhig", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.0", "2.7.0"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": "sceHiErrState"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "sceHiErrState"}}}}, "ed9f0d68511b07924d73902bdb45ff58f7ec8844": {"e40af5c2": {"type": "FUNCTION", "size": 76, "library": "libhig", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceHiGetErrStatePtr", "scope": "LIBRARY"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sceHiGsCtxSetMax": {"83305f4696103e061366ac9d79857136f0c692a1": {"6000f24d": {"type": "FUNCTION", "size": 60, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_26", "symbol": "_hig_drw_err", "scope": "LIBRARY", "original": ".text"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceHiGsCtxSetDefault": {"c43bb9ad412e7cd9ce991ab3a024be3002ee307d": {"26a8a9ff": {"type": "FUNCTION", "size": 40, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss")PS2SDB", 8192}, + std::string_view{R"PS2SDB(}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceHiGsEnvSetDefault": {"c43bb9ad412e7cd9ce991ab3a024be3002ee307d": {"26a8a9ff": {"type": "FUNCTION", "size": 40, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceHiGsCtxGetDefault": {"ceaacd8dbc6550567edb1845aa0d5c1d3047b02c": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceHiGsEnvGetDefault": {"ceaacd8dbc6550567edb1845aa0d5c1d3047b02c": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "_regist_to_hidma": {"76f14dcd66d9c5b8f4dfbb89cb2ef8ee5991c900": {"52d5b193": {"type": "FUNCTION", "size": 112, "library": "libhig", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "sceHiDMAMake_DynamicChainStart", "scope": "LIBRARY"}, "36": {"type": "MIPS_26", "symbol": "sceHiDMAMake_WaitMicro", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "sceHiDMAMake_LoadGS", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "sceHiDMAMake_DynamicChainEnd", "scope": "LIBRARY"}}}}}, "sceHiGsEnvRegist": {"20ac027a9243bd14447d3ecd610d63642a3d99f5": {"eca84caf": {"type": "FUNCTION", "size": 88, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "_hig_drw_err", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHiGsServiceInit": {"ad5414fb3235120479e9461e1f82a1a8111e6ca3": {"286cec8e": {"type": "FUNCTION", "size": 348, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "_hig_drw_err", "scope": "LIBRARY", "original": ".text"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_HI16", "symbol": "_regist_to_hidma", "original": ".text"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "_regist_to_hidma", "original": ".text"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "sceHiMemAlign", "scope": "LIBRARY"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_26", "symbol": "_hig_drw_err", "scope": "LIBRARY", "original": ".text"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "180": {"type": "MIPS_26", "symbol": "sceHiGsEnvCreate", "scope": "LIBRARY", "original": ".text"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "200": {"type": "MIPS_26", "symbol": "sceHiGsEnvUpdate", "scope": "LIBRARY", "original": ".text"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "208": {"type": "MIPS_26", "symbol": "sceHiGsEnvSetDefault", "scope": "LIBRARY", "original": ".text"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "216": {"type": "MIPS_26", "symbol": "sceHiGsDisplayStatus", "scope": "LIBRARY"}, "228": {"type": "MIPS_26", "symbol": "sceHiGsCtxCreate", "scope": "LIBRARY", "original": ".text"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "244": {"type": "MIPS_26", "symbol": "sceHiMemFree", "scope": "LIBRARY"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "252": {"type": "MIPS_26", "symbol": "sceHiMemFree", "scope": "LIBRARY"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "260": {"type": "MIPS_26", "symbol": "_hig_drw_err", "scope": "LIBRARY", "original": ".text"}, "280": {"type": "MIPS_26", "symbol": "_set_stdgsctx", "scope": "LIBRARY", "original": ".text"}, "288": {"type": "MIPS_26", "symbol": "sceHiGsCtxUpdate", "scope": "LIBRARY", "original": ".text"}, "292": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "296": {"type": "MIPS_26", "symbol": "sceHiGsCtxSetDefault", "scope": "LIBRARY", "original": ".text"}, "300": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "312": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceHiGsServiceExit": {"df82406cd2680d715e2dbda62ac0d23c0c38ae2a": {"ef40bac8": {"type": "FUNCTION", "size": 296, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_26", "symbol": "sceHiGsCtxDelete", "scope": "LIBRARY", "original": ".text"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "180": {"type": "MIPS_HI16", "s)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ymbol": "", "original": ".data"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "200": {"type": "MIPS_26", "symbol": "sceHiMemFree", "scope": "LIBRARY"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "216": {"type": "MIPS_26", "symbol": "sceHiGsEnvDelete", "scope": "LIBRARY", "original": ".text"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "_delete_packed": {"e2b29a7ebab84b2e4b4d36a25505fe4b8afb6231": {"be3b109a": {"type": "FUNCTION", "size": 24, "library": "libhig", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceHiMemFree", "scope": "LIBRARY"}}}}}, "_create_packed": {"51c3b6604a4d22513329bf0344ffde98cf28a3e9": {"aabb0cfb": {"type": "FUNCTION", "size": 352, "library": "libhig", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.0", "2.7.0"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "_hig_drw_err", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_26", "symbol": "sceHiMemAlign", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "sceHiGsPackedDelete", "scope": "LIBRARY", "original": ".text"}, "92": {"type": "MIPS_26", "symbol": "_hig_drw_err", "scope": "LIBRARY", "original": ".text"}}}}, "65ac8f4b59ccf6c74e0be2544439ea207d47305a": {"aabb0cfb": {"type": "FUNCTION", "size": 352, "library": "libhig", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "_hig_drw_err", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_26", "symbol": "sceHiMemAlign", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "sceHiGsPackedDelete", "scope": "LIBRARY", "original": ".text"}, "92": {"type": "MIPS_26", "symbol": "_hig_drw_err", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHiGsEnvUpdate": {"57eaef75d5406322e3cf2bc0e2e1355e276100f1": {"b9b02528": {"type": "FUNCTION", "size": 180, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_26", "symbol": "_hig_drw_err", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHiGsEnvDelete": {"5daf92a5f904d416b5cef73d7094b6a8bc2523ff": {"f56c7fdb": {"type": "FUNCTION", "size": 56, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "_delete_packed", "scope": "LIBRARY", "original": ".text"}, "20": {"type": "MIPS_26", "symbol": "sceHiMemFree", "scope": "LIBRARY"}, "28": {"type": "MIPS_26", "symbol": "sceHiMemFree", "scope": "LIBRARY"}}}}}, "sceHiGsEnvCreate": {"6ba4049f1ae40242d8d7d9a50836553064794835": {"0dce0296": {"type": "FUNCTION", "size": 732, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "sceHiMemAlign", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "sceHiMemAlign", "scope": "LIBRARY"}, "132": {"type": "MIPS_26", "symbol": "_create_packed", "scope": "LIBRARY", "original": ".text"}, "148": {"type": "MIPS_26", "symbol": "sceHiMemFree", "scope": "LIBRARY"}, "672": {"type": "MIPS_26", "symbol": "sceHiGsEnvUpdate", "scope": "LIBRARY", "original": ".text"}, "688": {"type": "MIPS_26", "symbol": "_delete_packed", "scope": "LIBRARY", "original": ".text"}, "696": {"type": "MIPS_26", "symbol": "sceHiMemFree", "scope": "LIBRARY"}}}}}, "sceHiGsCtxCreate": {"faf3e673e2eed56d46afec06fa9b0f4318797daa": {"c269c502": {"type": "FUNCTION", "size": 632, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "sceHiMemAlign", "scope": "LIBRARY"}, "132": {"type": "MIPS_26", "symbol": "sceGsSetDefClear"}, "224": {"type": "MIPS_26", "symbol": "_create_packed", "scope": "LIBRARY", "original": ".text"}, "240": {"type": "MIPS_26", "symbol": "_register_gsctx", "scope": "LIBRARY", "original": ".text"}, "256": {"type": "MIPS_26", "symbol": "_delete_packed", "scope": "LIBRARY", "original": ".text"}, "264": {"type": "MIPS_26", "symbol": "sceHiMemFree", "scope": "LIBRARY"}}}}}, "sceHiGsCtxDelete": {"45d94cedbf6c29d3279191c4e07e0e32157881a7": {"87eefda9": {"type": "FUNCTION", "size": 84, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "_delete_packed", "scope": "LIBRARY", "original": ".text"}, "24": {"type": "MIPS_26", "symbol": "_erase_gsctx", "scope": "LIBRARY", "original": ".text"}, "40": {"type": "MIPS_26", "symbol": "_hig_drw_err", "scope": "LIBRARY", "original": ".text"}, "56": {"type": "MIPS_26", "symbol": "sceHiMemFree", "scope": "LIBRARY"}}}}}, "_register_gsctx": {"ae211f8e3260b9f41e23ad60370f4801d58de6e8": {"cc595b0d": {"type": "FUNCTION", "size": 88, "library": "libhig", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "_erase_gsctx": {"19936b5aa7359c71a3187d3fd597cd2bfba9269f": {"943aff9a": {"type": "FUNCTION", "size": 208, "library": "libhig", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "164": {"type": "MI)PS2SDB", 8192}, + std::string_view{R"PS2SDB(PS_LO16", "symbol": "", "original": ".data"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceHiGsCtxSwapAll": {"ec6b31427a38693ddfbc0efd7ef8e38131378f7c": {"75c931da": {"type": "FUNCTION", "size": 216, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_26", "symbol": "sceHiGsCtxSwap", "scope": "LIBRARY", "original": ".text"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceHiGsCtxSwap": {"084daa0b2db8df61c2e0fdba5511afa292fe10a3": {"34c7ee7b": {"type": "FUNCTION", "size": 128, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"104": {"type": "MIPS_26", "symbol": "sceHiGsCtxSetHalfOffset", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHiGsCtxSetHalfOffset": {"86daa93832c6a325058ad23a0c0644fb087e6b0c": {"00000000": {"type": "FUNCTION", "size": 132, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiGsEnvCopy": {"53da8bfd2e1f11fe4e3d1a04a4c6e61093967788": {"126e8d63": {"type": "FUNCTION", "size": 136, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "_hig_drw_err", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHiGsCtxCopy": {"f45642837438fec182bf070171cb5debd1d081be": {"6a23be4d": {"type": "FUNCTION", "size": 512, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "_hig_drw_err", "scope": "LIBRARY", "original": ".text"}}}}, "7c6654483b73be021b537cd5195fbf02233c0258": {"76dac747": {"type": "FUNCTION", "size": 512, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.2"], "sdk": ["3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "_hig_drw_err", "scope": "LIBRARY", "original": ".text"}}}}}, "_set_stdgsctx": {"347b1c103efbf30803044199fdd37cc71d006912": {"69e9a32b": {"type": "FUNCTION", "size": 8, "library": "libhig", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_26", "symbol": "sceHiGsCtxSetByDBuff", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHiGsCtxSetByDBuff": {"a3906c559fad9dfcd775297aa880c9b17e23a409": {"ea3852e4": {"type": "FUNCTION", "size": 444, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"116": {"type": "MIPS_26", "symbol": "sceHiGsCtxSetDefaultValues", "scope": "LIBRARY", "original": ".text"}, "176": {"type": "MIPS_26", "symbol": "sceHiGsCtxSetDefaultValues", "scope": "LIBRARY", "original": ".text"}, "212": {"type": "MIPS_26", "symbol": "sceGsGetGParam"}, "376": {"type": "MIPS_26", "symbol": "sceHiGsCtxSetRect", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHiGsCtxRegist": {"3dc02f4e2558849eca07f4a8dfbc02c7e0e77788": {"fa52b097": {"type": "FUNCTION", "size": 180, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_26", "symbol": "_hig_drw_err", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHiGsCtxRegistClear": {"d017fe6d74cef581beb02c11043172f9912fc734": {"037c5c5d": {"type": "FUNCTION", "size": 96, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_26", "symbol": "_hig_drw_err", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHiGsCtxSend": {"4d1774201726d1b1e77f6a4e5f0420aeb50653d2": {"afc32d3b": {"type": "FUNCTION", "size": 344, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"184": {"type": "MIPS_26", "symbol": "sceDmaGetChan"}, "200": {"type": "MIPS_26", "symbol": "sceDmaSync"}}}}}, "sceHiGsCtxSendClear": {"b9bb6eb7c5d28a9ae38867fe9a601338916e5219": {"00000000": {"type": "FUNCTION", "size": 140, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiGsCtxFcache": {"a9c7abc9a89f05a801945dcb1c7d93e666058a49": {"3842f303": {"type": "FUNCTION", "size": 132, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "_SyncAddrQwsize", "scope": "LIBRARY", "original": ".text"}, "100": {"type": "MIPS_26", "symbol": "_SyncAddrQwsize", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHiGsCtxFcacheI": {"a9c7abc9a89f05a801945dcb1c7d93e666058a49": {"3613a2bc": {"type": "FUNCTION", "size": 132, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "_iSyncAddrQwsize", "scope": "LIBRARY", "original": ".text"}, "100": {"type": "MIPS_26", "symbol": "_iSyncAddrQwsize", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHiGsEnvFcache": {"74fe126f88fe1e149a192a1a68e02b57fb4e2d41": {"0677fc03": {"type": "FUNCTION", "size": 60, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sd)PS2SDB", 8192}, + std::string_view{R"PS2SDB(k": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "_SyncAddrQwsize", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHiGsEnvFcacheI": {"74fe126f88fe1e149a192a1a68e02b57fb4e2d41": {"6e1b827c": {"type": "FUNCTION", "size": 60, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "_iSyncAddrQwsize", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHiGsEnvSend": {"e7dd6bf234c8d09a6fa3b87591ac72a2fe90395d": {"00000000": {"type": "FUNCTION", "size": 128, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiGsCtxUpdate": {"907abd5e577343c525dff8c3edebb6db17a02caf": {"6464811f": {"type": "FUNCTION", "size": 388, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "276": {"type": "MIPS_26", "symbol": "sceHiGsCtxSetHalfOffset", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHiGsCtxSetClearColor": {"7798fc79efed676433b22785a58903dff57ac97a": {"00000000": {"type": "FUNCTION", "size": 36, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiGsCtxSetClearZ": {"384c4de8129e51a2cde6f34631db76e7c85e0046": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiGsCtxSetClearMode": {"014a7d9bf97504cb0d33bb1fa61791e0843efce2": {"ca94194d": {"type": "FUNCTION", "size": 248, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sceHiGsCtxChkSize": {"bb2013c56ec7f0c2665c7a885666e6aa8de572c2": {"07139c4a": {"type": "FUNCTION", "size": 344, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"108": {"type": "MIPS_26", "symbol": "sceHiGsPageSize", "scope": "LIBRARY"}, "200": {"type": "MIPS_26", "symbol": "sceHiGsPageSize", "scope": "LIBRARY"}, "308": {"type": "MIPS_26", "symbol": "sceHiGsPageSize", "scope": "LIBRARY"}}}}}, "sceHiGsCtxSetDepth": {"44f380c3fc8f93bd6d18946793ce1e7a745f1bf0": {"f6127dde": {"type": "FUNCTION", "size": 260, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"136": {"type": "MIPS_26", "symbol": "_hig_drw_err", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHiGsCtxSetColorDepth": {"2814c4c7a904d8cd6a3fb1c9718154e2cb55c2a5": {"00000000": {"type": "FUNCTION", "size": 52, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiGsCtxSetZbufDepth": {"acac52be21f1a4f4cdd1210cd9c7e06658f12b83": {"bfb2530f": {"type": "FUNCTION", "size": 228, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"104": {"type": "MIPS_26", "symbol": "_hig_drw_err", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHiGsCtxSetRect": {"65e84810b07b6a52b44d62a4227feac8898918d4": {"00000000": {"type": "FUNCTION", "size": 412, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiGsCtxSetLumpBuffer": {"899e229a156f7c4c6c9c63fcf18e71b84cf9acf0": {"4a1b6b9f": {"type": "FUNCTION", "size": 424, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"116": {"type": "MIPS_26", "symbol": "sceHiGsPageSize", "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "sceHiGsPageSize", "scope": "LIBRARY"}, "344": {"type": "MIPS_26", "symbol": "sceHiGsPageSize", "scope": "LIBRARY"}}}}}, "sceHiGsCtxSetEachBuffer": {"2609c4e082f39a1ffe22d4940203139b56c793d4": {"00000000": {"type": "FUNCTION", "size": 52, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiGsCtxShiftBuffers": {"b99d89ca38f9086d4e765cd759e0977051be94e7": {"00000000": {"type": "FUNCTION", "size": 84, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiGsCtxGetTex0": {"048b7004c719b4d1be6983f8446db1ac44a3b9ac": {"00000000": {"type": "FUNCTION", "size": 348, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiGsCtxGetClamp": {"f0b9d1ef19e08cf18eef972112e06194663d6e03": {"00000000": {"type": "FUNCTION", "size": 668, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiGsCtxSetContext": {"8a41e0ff08a7024d27ab47bb5347ac2769befc3e": {"00000000": {"type": "FUNCTION", "size": 12, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiGsCtxSetFrame": {"2e10fba4161b6fe1dbcaf141f5d4d9a57a2136c6": {"00000000": {"type": "FUNCTION", "size": 108, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiGsCtxSetRegZbuf": {"69c0d461f075fe3554596d96bb3a4b38c32d500b)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": {"00000000": {"type": "FUNCTION", "size": 104, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiGsCtxSetRegTex0": {"618b2b1665841b77efa143833340e3beade59f32": {"00000000": {"type": "FUNCTION", "size": 424, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiGsCtxSetRegTex1": {"51f34fda4538f9dece8147010ac9a3f91f1a2074": {"00000000": {"type": "FUNCTION", "size": 184, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiGsCtxSetRegMiptbp1": {"7323a5614c534f250a020b7529cf8eb1aeb6fb93": {"00000000": {"type": "FUNCTION", "size": 220, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiGsCtxSetRegMiptbp2": {"e7d43f72402284826188ca4ca24b4b3021cbbd0b": {"00000000": {"type": "FUNCTION", "size": 220, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiGsCtxSetRegClamp": {"ca29a89add1ab232fc457223269722368ad250f1": {"00000000": {"type": "FUNCTION", "size": 180, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiGsCtxSetRegTest": {"7c8655f97fea221d2c16eca122599c883b4641cd": {"00000000": {"type": "FUNCTION", "size": 200, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiGsCtxSetRegAlpha": {"53e562c926440ccae4ed36614e3334d983817bc2": {"00000000": {"type": "FUNCTION", "size": 108, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiGsCtxSetRegXyoffset": {"8a2e997e979a9e87d4d40817cd537dd24e964370": {"00000000": {"type": "FUNCTION", "size": 28, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiGsCtxSetRegFba": {"8bd55d1355b66408ad57ef137b7fb0faafaeecf2": {"00000000": {"type": "FUNCTION", "size": 44, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiGsEnvSetRegColclamp": {"96114d9d49fed91b3764e2edab689212480a5db2": {"00000000": {"type": "FUNCTION", "size": 140, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiGsEnvSetRegDimx": {"e54143941f00120440d362c6beff1c542a04fa8d": {"00000000": {"type": "FUNCTION", "size": 724, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiGsEnvSetRegDthe": {"6b9b9dd98297e12e211d807b027cff669578c28c": {"00000000": {"type": "FUNCTION", "size": 120, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiGsEnvSetRegFog": {"6cd70b0abb16a4c951662d91dd60521689b4f980": {"00000000": {"type": "FUNCTION", "size": 92, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiGsEnvSetRegFogcol": {"d66fbc8230e15a6d193ed50fbbd46bc60a827810": {"00000000": {"type": "FUNCTION", "size": 100, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiGsEnvSetRegPabe": {"af24550b2a225767c05f533863690f90cd7bd1d9": {"00000000": {"type": "FUNCTION", "size": 120, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiGsEnvSetRegTexa": {"aff556bcd5602b243a546c5ae2a7c9ed119f78be": {"00000000": {"type": "FUNCTION", "size": 124, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiGsEnvSetRegPrmode": {"4423fda502ed6b80ca0fc135da7b3ceb9fe7a530": {"00000000": {"type": "FUNCTION", "size": 324, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiGsEnvSetRegPrmodecont": {"7e7e93321ad72bdee68378ae8e8b434f932bd3e0": {"00000000": {"type": "FUNCTION", "size": 120, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiGsEnvSetRegTexclut": {"25d4f9847844843a596171117abe5e93f4a7c184": {"00000000": {"type": "FUNCTION", "size": 156, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiGsEnvSetRegScanmsk": {"7818b012f05c6d20b128dcb23ce7910154fa6f85": {"00000000": {"type": "FUNCTION", "size": 120, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiGsEnvSetRegBitblt": {"19f4b925b2ecc6d28c60ce83f5aaf6917d6a9591": {"00000000": {"type": "FUNCTION", "size": 308, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3)PS2SDB", 8192}, + std::string_view{R"PS2SDB(.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiGsEnvSetRegTrxpos": {"9f6193b865f2aeceb2cf39187089babb485a6aab": {"00000000": {"type": "FUNCTION", "size": 268, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiGsEnvSetRegTrxreg": {"86836da7cc38af511ed2d53f09303e3689430574": {"00000000": {"type": "FUNCTION", "size": 148, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiGsEnvSetRegTrxdir": {"e6c49f31678835f2f2049a5633017dea4504f168": {"00000000": {"type": "FUNCTION", "size": 120, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiGsEnvSetRegSignal": {"b0bd6a37ae30e3df637ce401661a985dff170229": {"00000000": {"type": "FUNCTION", "size": 96, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiGsEnvSetRegLabel": {"142cbf1fcf09aad606dbd8f4e333ece5199fdfc6": {"00000000": {"type": "FUNCTION", "size": 96, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiGsCtxSetDefaultValues": {"75a89bc5d7e1e0adfe3be71f194768f22122c991": {"22b81a0e": {"type": "FUNCTION", "size": 116, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "sceHiGsCtxSetDepth", "scope": "LIBRARY", "original": ".text"}, "68": {"type": "MIPS_26", "symbol": "sceHiGsCtxSetRect", "scope": "LIBRARY", "original": ".text"}, "80": {"type": "MIPS_26", "symbol": "sceHiGsCtxSetLumpBuffer", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHiGsServiceSetRegistFunc": {"896c1dc3e3f1b3dd60b2b196112c4986fe37c256": {"ed6fd92a": {"type": "FUNCTION", "size": 40, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_HI16", "symbol": "_regist_to_hidma", "original": ".text"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "_regist_to_hidma", "original": ".text"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceHiGsCtxGetRect": {"4ff24190e92b64a3131a520619029e1cef3027d6": {"00000000": {"type": "FUNCTION", "size": 140, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_SyncAddrQwsize": {"5ef43e9fc70518f82bca835425339c8248ff821b": {"6b65c6c4": {"type": "FUNCTION", "size": 32, "library": "libhig", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "SyncDCache"}}}}}, "_iSyncAddrQwsize": {"5ef43e9fc70518f82bca835425339c8248ff821b": {"0d4ab134": {"type": "FUNCTION", "size": 32, "library": "libhig", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.0", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "iSyncDCache"}}}}}, "sceHiCalcPlugBlkSize": {"1dfcc8353957fa2c250c31bb288919e937202af2": {"00000000": {"type": "FUNCTION", "size": 24, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiCreatePlugBlk": {"95924b534a716ac4e4f78ef83a659ada56999764": {"7429b066": {"type": "FUNCTION", "size": 112, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "memset"}, "72": {"type": "MIPS_26", "symbol": "sceHiSetPlugType", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHiCreateDataBlk": {"f1b72031db071342c19af683c06b363fbf8f0eea": {"daa39141": {"type": "FUNCTION", "size": 112, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "memset"}, "48": {"type": "MIPS_26", "symbol": "sceHiSetDataType", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_26", "symbol": "set_status", "scope": "LIBRARY", "original": ".text"}, "72": {"type": "MIPS_26", "symbol": "set_status", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHiGetErrStatePtr": {"2a51c093207f3b6546ea5ac91d4ae4a6999eaed5": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceHiDMAGetChainHead": {"8bf345ad18b18df5b40b55acc278d734752d2c3c": {"e0ffd1bb": {"type": "FUNCTION", "size": 72, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "_buf_get_ancestor", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHiDMAGetChainTail": {"291c177b4925ed4fb3bab033ce704c0de84e4cba": {"e0ffd1bb": {"type": "FUNCTION", "size": 120, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "_buf_get_ancestor", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHiDMARegistClear": {"ad519239883ac4b9a4f922906bdcfe8b22f333cd": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "r)PS2SDB", 8192}, + std::string_view{R"PS2SDB(elocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceHiDMAMarkup": {"8c5b529f0de1267d69cb691fa26571e41ff47a7e": {"93d14e47": {"type": "FUNCTION", "size": 292, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "200": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceHiDMADeleteMarked": {"011c86d432cb05baa6316f66483d6d627dcfea67": {"79aed805": {"type": "FUNCTION", "size": 128, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_26", "symbol": "_buf_clear", "scope": "LIBRARY", "original": ".text"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceHiGsFrameRegs": {"6649b6a82ea49902871b522bd458ae8e1c1b6428": {"fa345fbf": {"type": "FUNCTION", "size": 184, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0", "2.8.0"], "sdk": ["2.7.1", "2.7.2-3", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "sceHiGsContextStatus", "scope": "LIBRARY"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": "sceHiGsStdCtx"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": "sceHiGsStdCtx"}}}}}, "sceHiGsZbufRegs": {"8cd872f3a31f5d248416ee4dc5b4d59af7d2709c": {"0e33c88d": {"type": "FUNCTION", "size": 152, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0", "2.8.0"], "sdk": ["2.7.1", "2.7.2-3", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "sceHiGsContextStatus", "scope": "LIBRARY"}}}}}, "sceHiGsTex0Regs": {"15695864e4ee20afabb79a474bfb0a198a3fd94a": {"ba4769db": {"type": "FUNCTION", "size": 560, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0", "2.8.0"], "sdk": ["2.7.1", "2.7.2-3", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"100": {"type": "MIPS_26", "symbol": "sceHiGsContextStatus", "scope": "LIBRARY"}}}}}, "sceHiGsTex1Regs": {"ed441fd5cc02066a095e77883bda731144c3472c": {"81e6783c": {"type": "FUNCTION", "size": 280, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0", "2.8.0"], "sdk": ["2.7.1", "2.7.2-3", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "sceHiGsContextStatus", "scope": "LIBRARY"}}}}}, "sceHiGsMiptbp1Regs": {"05187e24d0e75e91165e6496da2413b14ff85883": {"d4cf5580": {"type": "FUNCTION", "size": 304, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0", "2.8.0"], "sdk": ["2.7.1", "2.7.2-3", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "sceHiGsContextStatus", "scope": "LIBRARY"}}}}}, "sceHiGsMiptbp2Regs": {"30a0baaea59107b1add1125438c4f1e4c911f331": {"d4cf5580": {"type": "FUNCTION", "size": 304, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0", "2.8.0"], "sdk": ["2.7.1", "2.7.2-3", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "sceHiGsContextStatus", "scope": "LIBRARY"}}}}}, "sceHiGsClampRegs": {"fc1f2f642b05884118b999a0108f2dd9b0a409ef": {"d4cf5580": {"type": "FUNCTION", "size": 264, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0", "2.8.0"], "sdk": ["2.7.1", "2.7.2-3", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "sceHiGsContextStatus", "scope": "LIBRARY"}}}}}, "sceHiGsTestRegs": {"72f17b3b8c239109e6d6b5590699b288893058c3": {"3592d96a": {"type": "FUNCTION", "size": 304, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0", "2.8.0"], "sdk": ["2.7.1", "2.7.2-3", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "sceHiGsContextStatus", "scope": "LIBRARY"}}}}}, "sceHiGsAlphaRegs": {"d22daa8c0c1f8fd2b0171871c24c7f0357fe1b14": {"2bb42344": {"type": "FUNCTION", "size": 180, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0", "2.8.0"], "sdk": ["2.7.1", "2.7.2-3", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "sceHiGsContextStatus", "scope": "LIBRARY"}}}}}, "sceHiGsXyoffsetRegs": {"8b9587c42a7c18585e685164e0eb7e40ee84666b": {"5b1ae531": {"type": "FUNCTION", "size": 64, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0", "2.8.0"], "sdk": ["2.7.1", "2.7.2-3", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "sceHiGsContextStatus", "scope": "LIBRARY"}}}}}, "sceHiGsFbaRegs": {"255f5dc4bbe8eea6c8fc648f59f538869c0288d1": {"a46193f5": {"type": "FUNCTION", "size": 68, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0", "2.8.0"], "sdk": ["2.7.1", "2.7.2-3", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceHiGsContextStatus", "scope": "LIBRARY"}}}}}, "sceHiGsColclampRegs": {"04dad483d9939a52259beb600abc1458802b2d07": {"b9e72cc5": {"type": "FUNCTION", "size": 68, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0", "2.8.0"], "sdk": ["2.7.1", "2.7.2-3", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceHiGsGeneralStatus", "scope": "LIBRARY"}}}}}, "sceHiGsDimxRegs": {"ff113fadf9b518d7dc59b26152f1971cd1193eff": {"3921e163": {"type": "FUNCTION", "size": 676, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0", "2.8.0"], "sdk": ["2.7.1", "2.7.2-3", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "sceHiGsGeneralStatus", "scope": "LIBRARY"}}}}}, "sceHiGsDtheRegs": {"3911904a97c9d365a36083d9286ad58202e73dd1": {"b9e72cc5": {"type": "FUNCTION", "size": 68, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0", "2.8.0"], "sdk": ["2.7.1", "2.7.2-3", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceHiGsGeneralStatus", "scope": "LIBRARY"}}}}}, "sceHiGsFogRegs": {"11ed3cff3dc68215f0ab1bbf76c92beee66cce12": {"b9e72cc5": {"type": "FUNCTION", "size": 44, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0", "2.8.0"], "sdk": ["2.7.1", "2.7.2-3", "2.8.0", "2.8.1")PS2SDB", 8192}, + std::string_view{R"PS2SDB(], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceHiGsGeneralStatus", "scope": "LIBRARY"}}}}}, "sceHiGsFogcolRegs": {"ed792627f98064114db53c16eb6179058fce9d17": {"13b577bd": {"type": "FUNCTION", "size": 80, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0", "2.8.0"], "sdk": ["2.7.1", "2.7.2-3", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "sceHiGsGeneralStatus", "scope": "LIBRARY"}}}}}, "sceHiGsPabeRegs": {"62443e5ccad51c31e210c58929164a5d85946beb": {"b9e72cc5": {"type": "FUNCTION", "size": 68, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0", "2.8.0"], "sdk": ["2.7.1", "2.7.2-3", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceHiGsGeneralStatus", "scope": "LIBRARY"}}}}}, "sceHiGsTexaRegs": {"6c8d319a8dea80e81960a6ee0cd730d1a2398d51": {"13b577bd": {"type": "FUNCTION", "size": 108, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0", "2.8.0"], "sdk": ["2.7.1", "2.7.2-3", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "sceHiGsGeneralStatus", "scope": "LIBRARY"}}}}}, "sceHiGsPrmodeRegs": {"110e7deff17d949adfd2ab3aa6f647f8e0fcccf3": {"2814665a": {"type": "FUNCTION", "size": 296, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0", "2.8.0"], "sdk": ["2.7.1", "2.7.2-3", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "sceHiGsGeneralStatus", "scope": "LIBRARY"}}}}}, "sceHiGsPrmodecontRegs": {"2f55483480d06979dc838991190b132d24e77f06": {"b9e72cc5": {"type": "FUNCTION", "size": 68, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0", "2.8.0"], "sdk": ["2.7.1", "2.7.2-3", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceHiGsGeneralStatus", "scope": "LIBRARY"}}}}}, "sceHiDMAGetState": {"cbe10671d64414cd5b2da7b516ef7d938a23c4f4": {"bae1b0f3": {"type": "FUNCTION", "size": 52, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0", "3.0.2"], "sdk": ["3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceHiDMASetState": {"7f3534d825380213720cc2bd237192f1027c6635": {"bae1b0f3": {"type": "FUNCTION", "size": 52, "library": "libhig", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0", "3.0.2"], "sdk": ["3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}}, "mslgcc_ps2": {"mwExit": {"a639a8a356321edbeccee089cae462e9fca431ea": {"0f99feb4": {"type": "FUNCTION", "size": 8, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5", "2.0.7", "2.1.3", "2.1.4", "2.2.4", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_26", "symbol": "__destroy_global_chain", "scope": "LIBRARY"}}}}, "7ba17f652620d1a8770717ffc05543c774ba24f8": {"0236165c": {"type": "FUNCTION", "size": 28, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3", "2.5.5", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "__destroy_global_chain", "scope": "LIBRARY"}}}}, "b4cc0155d72a4c374ab63f5efb12464ff183c80f": {"0236165c": {"type": "FUNCTION", "size": 32, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.0.2", "2.2.2", "2.3.4", "2.4.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "__destroy_global_chain", "scope": "LIBRARY"}}}}, "711e2ee3d68dbdec33f6ca06188dfb4fd8a747f5": {"0236165c": {"type": "FUNCTION", "size": 32, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.6.0", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "__destroy_global_chain", "scope": "LIBRARY"}}}}}, "mwInit": {"4a5d4485eed75717c3eb67718b2cb4e450c9aca8": {"5599fafb": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "4249997da2795fd41556f312b2f70723655bb816": {"4e1b7bf0": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.5.0", "2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "__static_init"}, "4": {"type": "MIPS_HI16", "symbol": "", "original": "__static_init_end"}, "8": {"type": "MIPS_HI16", "symbol": "", "original": "__exception_table_start__"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": "__exception_table_end__"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "__static_init"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": "__static_init_end"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "__exception_table_start__"}, "28": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "__exception_table_end__"}}}}, "760db60cc5316fde07e728f78b1843ada76d0e56": {"c2ac8157": {"type": "FUNCTION", "size": 56, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5", "2.7.1", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "__static_init"}, "8": {"type": "MIPS_HI16", "symbol": "", "original": "__static_init_end"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": "__exception_table_start__"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": "__exception_table_end__"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "__static_init"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": "__static_init_end"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "__exception_table_start__"}, "36": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": "__exception_table_end__"}}}}, "e9f11d81fcb1a32a9af12bb45b0ea70b7ea5ca59": {"5a8a87ec": {"type": "FUNCTION", "size": 64, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "fda9d0cc4b1134d952b88118b905672bd9844955": {"5599fafb": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.6.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "231e5d977e35d8208c97c3b9453d6dd705d03914": {"5599fafb": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.6.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "47cd089fda3a38158b94ba46faf916a4c23d6b0a": {"5599fafb": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {")PS2SDB", 8192}, + std::string_view{R"PS2SDB(28": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "79c51b5843c926825c81998590221b6ff705c023": {"5599fafb": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "ef5315790c3f412f2476ea2c5ad65d63045973b8": {"5a8a87ec": {"type": "FUNCTION", "size": 64, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "ac8958b443ea24f780994229089b7b9c0313e30d": {"5a8a87ec": {"type": "FUNCTION", "size": 64, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "1b7b1241adca4f70634b433530ffb8cd19051211": {"5599fafb": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.6.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "4c342829660b0e08feb2acfaa08d2733ba892a41": {"5a8a87ec": {"type": "FUNCTION", "size": 64, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.1.0"], "compiler_versions": ["2.3.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "e9d3bdc45c9657560365ed68eae878a36464d5b4": {"5a8a87ec": {"type": "FUNCTION", "size": 64, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "1de77855b163a0d001e1e0c5b45f72503dc934af": {"5599fafb": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.0.7"], "compiler_versions": ["2.3.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "549a2434acd0e700cc8d186d2e96f25032bc2a83": {"5599fafb": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "9f4367550cd05b71a5212f75a2f33342a752089d": {"5a8a87ec": {"type": "FUNCTION", "size": 64, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "9d6c572fe164110a1271147790412ca1a8ec5511": {"5a8a87ec": {"type": "FUNCTION", "size": 64, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "3e8452cf304d03ccd084e4714b3d14999124b801": {"5599fafb": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "f6aba7a7af83a1ef5978b329ba84c2171758c93c": {"5599fafb": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "9654fe573a78ee6563beeac0c36a7dea551fd656": {"5a8a87ec": {"type": "FUNCTION", "size": 64, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "81691f42d9d4d5295a458e1efdeb1a5b804d7029": {"5a8a87ec": {"type": "FUNCTION", "size": 64, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "6780a55dd8575f13e24c7eed258c3ad9001cf6e8": {"5599fafb": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "aadcfda2a9790ea7d578c1c85a070ae918051f3a": {"5a8a87ec": {"type": "FUNCTION", "size": 64, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "b742de05adc200b4e3b915e61d146cbb4f31e846": {"5a8a87ec": {"type": "FUNCTION", "size": 64, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "6f0e2a733096caf7c1ca1e8c3106609d283c5740": {"5a8a87ec": {"type": "FUNCTION", "size": 64, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "fd9c303a319db8cc67f99bfa164026fd5fe5750b": {"5599fafb": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "f3a864c8baf2b4f2bd83a6b986f4e891a4e30c41": {"5599fafb": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "5d05c0fd5cb1ca4e800c9baab103bfe5e467bebd": {"5599fafb": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "d58d84da1432c2ba31f630bc596a4d6c053eb0fe": {"5599fafb": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "f746fe4ac78c57875a350dcf96ba503a90facb32": {"5599fafb": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "73bf3de8164b815325fb1afdae53706367659265": {"5599fafb": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "f7e1308483cb6a3b92165485f979e87747ba2353": {"5599fafb": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "LIBRARY"}}}}, "0587e530a0c34137db5c0dd90e5e5ac929c190a6": {"5599fafb": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "975847ef1cb44dacb7c96364c7fcfb730b558a50": {"5599fafb": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "8d2a4fed27b5c1b825ab832feac849e54e49c5d1": {"5599fafb": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "c757388dd1e72cc4edd6bbf058e57fbb47d63d47": {"5599fafb": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.1.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "8ef0dc6d5d09d65bd6876f61e64471c9d404aa22": {"25373c8e": {"type": "FUNCTION", "size": 56, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "d613cf3648f40a0e68daffd6271ce830a4975438": {"5a8a87ec": {"type": "FUNCTION", "size": 64, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.1"], "compiler_versions": ["2.3.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "c47e083f8925331d08e037e04de0be00d04b2f6e": {"5599fafb": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "faf7e7af2162b66279586bf7b5dca7d121d9d583": {"5599fafb": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "77f77093dcd43b338b3cb185b153802bdd48abac": {"5599fafb": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.1.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "4cfa4144b0d7e6b9df5c492ea76858ee71fbaf9c": {"5599fafb": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "0f3609140c94449101e27fe836e6375f4b4c5f5f": {"5599fafb": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.2.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "c14dca69fd57a2634b8fdc04772e695a11de2055": {"5599fafb": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "00a6b5bb7a82498c6e96a67260159c78eb17da1e": {"5599fafb": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "85d97d1d033d860d4c5cf84ec00b027249ce924a": {"5a8a87ec": {"type": "FUNCTION", "size": 64, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.1.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "93b9198705a34ffacb3aadd79d8132986a2845ea": {"5599fafb": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "9f55da5c71fad5ab0c887727289615f55fa5b6f5": {"5599fafb": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.2.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "076ee506c3e5850957b52d7a29959f2805032b91": {"5599fafb": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "ad3ff231fcbaf9f352fbbd6fbab01cbf44464068": {"5599fafb": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.6.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "913a1e26ebe362acdffdc81445db70300007ad84": {"5a8a87ec": {"type": "FUNCTION", "size": 64, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.6.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "bce4cee01d27ea9a5ef26d6eea5e9a7de36351c4": {"5599fafb": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "3b6ebc056ded011f96f6a89c6549fd70e31ed305": {"5599fafb": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "dde71bf928e10c97ee01244522d4a114131c5819": {"5599fafb": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "fcb21f45597ce16f6cd862b41e40650681e75fc1": {"5599fafb": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "f78cab9738e6e84167f0814a716480386ebebc49": {"5599fafb": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "9eb84c4b74fa56e28dbf211ecd2b65469edd82da": {"5599fafb": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "fd2eae4d7e0b64137da50557de522e6b3e35b83e": {"5599f)PS2SDB", 8192}, + std::string_view{R"PS2SDB(afb": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "a5af43c235c1f5e89341dce3fc72b0a338de8154": {"5a8a87ec": {"type": "FUNCTION", "size": 64, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "3d23c19f6925a34be294d25a98bd0c9579a3a323": {"25373c8e": {"type": "FUNCTION", "size": 56, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "61ddec6481dcb0e9f7705ff1dcd3a8495560d2c7": {"5599fafb": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "f4de8fe7c7a2eb23e7d63f48cf4647380415b357": {"5599fafb": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "7c08f0a38ad5d5a5aec0c191c08c82bbecbba010": {"cd9701cb": {"type": "FUNCTION", "size": 64, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.0", "2.7.1", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": "__static_init"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "__static_init"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": "__static_init_end"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": "__static_init_end"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": "__exception_table_start__"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": "__exception_table_start__"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": "__exception_table_end__"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": "__exception_table_end__"}, "40": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "6c0c79ee7a2dab5b21abcc25cb11ff3cf3cfbf1f": {"5599fafb": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "f7a147ff0913205b1801ef787a7e17c78a0d8957": {"5599fafb": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "160b4495149113c92329529bcff2ec45839e8978": {"5599fafb": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "4342318b332e9dac0968542d0cabfed23fcd6faa": {"5599fafb": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "865bae735bea587abf517f2aca111b8c7e26627d": {"5599fafb": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "84ac24b76b5b8ca1f743f8060e7c1d263a00373c": {"5a8a87ec": {"type": "FUNCTION", "size": 64, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.2.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "3e15858caa6dc923915f5b05289b15a14e3a114a": {"5a8a87ec": {"type": "FUNCTION", "size": 64, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.2.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "5b7fb39bffd43a0c3169360c11e45461e88838c3": {"5a8a87ec": {"type": "FUNCTION", "size": 64, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.2.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "10d50a6b7d6119be9572f2d66b7b990f7e2b4e1c": {"5599fafb": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "9e1bbc5951313f020b17dcd30e49712fb5d3cfdc": {"5599fafb": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "95fc94e2dc8852ccb6c9011d3540a55ed968867c": {"5599fafb": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "be4e1119292aab1ae7f770bc81d323dee6139a8b": {"5a8a87ec": {"type": "FUNCTION", "size": 64, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "63a3b1fd32a15195124701400a296fa8bfc91d5c": {"5a8a87ec": {"type": "FUNCTION", "size": 64, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "9e8e3a52b4ce2ee92f03619422d3de8105ea54af": {"5a8a87ec": {"type": "FUNCTION", "size": 64, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "d51974c9cd085a70d50c913b475fac394cd8c818": {"5a8a87ec": {"type": "FUNCTION", "size": 64, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "837e74d01aece4db508e2bc4ab86172b35ecb51f": {"5a8a87ec": {"type": "FUNCTION", "size": 64, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "57ae3e2bef7b0275808577ffe0792c984006be1b": {"5599fafb": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "3929f7ee105f33bc235acbdd3c30f70ce4ffa712": {"5599fafb": {"type": )PS2SDB", 8192}, + std::string_view{R"PS2SDB("FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "e41146fcc18c70b2fa8532905c8d5528a5b9a621": {"5a8a87ec": {"type": "FUNCTION", "size": 64, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "71b1186059e863f8d4a47cff2c74995f281d3b27": {"5a8a87ec": {"type": "FUNCTION", "size": 64, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "20d3d24f6cbbb16390759f61abcbc5ab9d3bf859": {"5a8a87ec": {"type": "FUNCTION", "size": 64, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "720697bd4f681f79025965ec7abaf948f155e8a9": {"5a8a87ec": {"type": "FUNCTION", "size": 64, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "31c6b2d6a6f7203f5b72a8458abc47131b87479b": {"5599fafb": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "8ef3debe908418ff2e85569a512d3154aad52e68": {"5a8a87ec": {"type": "FUNCTION", "size": 64, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "c76ea1f95e4bdb7f0c4145dc67c0cbdac2971d56": {"5599fafb": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "8f7f3f390cd4b2c7e718383ce017bf7eda8e3d17": {"25373c8e": {"type": "FUNCTION", "size": 56, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "d95ea79125fcc2b5ae9513ec662091224334aabb": {"5599fafb": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "27c6ba5058d3c76a94d3169c4c1e7d99eac435da": {"5599fafb": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "91c82ec7c86dd4cea7ffaaabd76045bbbe2fddc0": {"5599fafb": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "6f21ee8fc6b5459068b3ecd61ddb9f32ac64f24b": {"5599fafb": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}}, "__destroy_arr": {"9e3d1657a00501725ba4ad57284a500e6fdd8c59": {"00000000": {"type": "FUNCTION", "size": 108, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.1.3", "2.1.4", "2.2.2", "2.2.4", "2.3.0", "2.3.4", "2.4.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "29ca348d44f0a06433aedad57333a0917daa4e57": {"00000000": {"type": "FUNCTION", "size": 108, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "4ef25695c6fce471c9a19573e2e0e98490589dde": {"00000000": {"type": "FUNCTION", "size": 108, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.3", "2.5.5", "2.6.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "6cbc29132545dcbaf372d06543f09b7ba0308913": {"00000000": {"type": "FUNCTION", "size": 108, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.2", "2.4.3", "2.5.0", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "f118d725e64f0209134c398989c56f85e0c55edd": {"00000000": {"type": "FUNCTION", "size": 108, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.4", "1.6.1", "1.6.5", "2.0.2", "2.4.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "c2388c24e49270e2fc55eb9b67bf82db927085bb": {"00000000": {"type": "FUNCTION", "size": 108, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.4", "2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "0fb399ea37229c80052460dd05c8adf1d76d99f9": {"00000000": {"type": "FUNCTION", "size": 108, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "a5e6a77bf28cfe9743cea940ff3015109cc13338": {"00000000": {"type": "FUNCTION", "size": 116, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "60ee0719fdd8bbff8eba2b56b6111d35ab731a76": {"00000000": {"type": "FUNCTION", "size": 128, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.2.2"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}, "ff6be5eb98e5951a52769015af8c7f07ad18edaa": {"00000000": {"type": "FUNCTION", "size": 104, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}}, "__construct_new_array": {"9598c58654eda2f32bca7d58635cc2d748e35cdd": {"00000000": {"type": "FUNCTION", "size": 332, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5", "2.0.7", "2.1.3", "2.2.2", "2.2.4", "2.3.0", "2.3.4", "2.4.2", "2.5.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "49012e88423a9af335c82decdbadbf102be37604": {"00000000": {"type": "FUNCTION", "size": 340, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.0", "2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "3c0438887e81ac490d9ea49f23959187966100f2": {"00000000": {"type": "FUNCTION", "size": 332, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "b5f7daff36bdde74fe3b9e3d13293feb606cb1b8": {"00000000": {"type": "FUNCTION", "size": 332, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.4", "1.5.3", "1.6.1", "1.6.5", "2.1.0", ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.2", "2.4.3", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "4b0954828b68c02cf27b04c0188d4d95e7bb1580": {"00000000": {"type": "FUNCTION", "size": 332, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.0", "2.4.1", "2.6.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "09a58cf8c42e04118487352051d1ed0facc2afd5": {"00000000": {"type": "FUNCTION", "size": 332, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5", "2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}, "80c5a5a35840a5d1e7e4e60b851ca6c8a5359972": {"00000000": {"type": "FUNCTION", "size": 332, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.2", "2.4.3", "2.5.2", "2.5.4", "2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "4b41f9eb6e2011162440bb0c440382d08f6996e5": {"00000000": {"type": "FUNCTION", "size": 332, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.1.4"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "f30044682920370c53337bd82a221e019eae8815": {"00000000": {"type": "FUNCTION", "size": 332, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.2", "2.4.3", "2.5.0", "2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "10eb9b4c25e4bef36e86b8cceea1eedc1d74fa37": {"00000000": {"type": "FUNCTION", "size": 324, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "9914c97eabe7cdd13bd12247cce17858ef92d675": {"00000000": {"type": "FUNCTION", "size": 324, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "e4ce9a17cb738065e307788a28a316466b5c392a": {"00000000": {"type": "FUNCTION", "size": 320, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}}, "__construct_array": {"d1dc6810ebfc3002c4c32573783c07cfe99b8451": {"00000000": {"type": "FUNCTION", "size": 300, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5", "2.0.7", "2.1.3", "2.1.4", "2.2.2", "2.2.4", "2.3.0", "2.3.4", "2.4.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "684addadec36a5d1075b63eb69c68bc4ab337264": {"00000000": {"type": "FUNCTION", "size": 300, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.0", "2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "cf6a0e218d805f260cb2d208da94a5004381e84d": {"00000000": {"type": "FUNCTION", "size": 292, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.4", "1.6.1", "1.6.5", "2.1.0", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.2", "2.4.3", "2.5.5", "2.6.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "cd36ba6aa2bdf7db7e689304015033a0152950be": {"00000000": {"type": "FUNCTION", "size": 292, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.2", "2.4.3", "2.5.0", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "e1983f4614f13ec8ba40bd4950ac4f513e45698d": {"00000000": {"type": "FUNCTION", "size": 292, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.1", "2.6.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "17db428d2a72390cb6f24f5b92ea66c550a78e3e": {"00000000": {"type": "FUNCTION", "size": 300, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}, "e8f542f5971c30988eb8b1d78c95e62576f57847": {"00000000": {"type": "FUNCTION", "size": 292, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.2", "2.4.3", "2.5.2", "2.5.4", "2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "37405e7f7dfa9e17e447fb849fbeaf019bd74ce3": {"00000000": {"type": "FUNCTION", "size": 300, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.1.4"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "e4ef123496b115c32482d67d081055fc60b0bf1d": {"00000000": {"type": "FUNCTION", "size": 292, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.2", "2.4.3", "2.5.0", "2.5.4", "2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "42a4ac3b9b4b2b87c2ce8fc35a03d9079863ee62": {"00000000": {"type": "FUNCTION", "size": 228, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "296e67ac2649900eb5815e6056623023ef09d6df": {"00000000": {"type": "FUNCTION", "size": 292, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "ca7c5bbef604fde7aeaa2210dc2263f35baf0406": {"00000000": {"type": "FUNCTION", "size": 292, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "c9b6860ebf8353521647d61f0c681706eb45d4ef": {"00000000": {"type": "FUNCTION", "size": 284, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}}, "__destroy_global_chain": {"07805ef67fdd143be9e9ec508549cc1e0625e884": {"b87754bb": {"type": "FUNCTION", "size": 64, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_GPREL16", "symbol": "__global_destructor_chain"}, "40": {"type": "MIPS_GPREL16", "symbol": "__global_destructor_chain"}}}}, "3dc8db1de2485cd5c8fe1906d4929322631d9614": {"db443114": {"type": "FUNCTION", "size": 84, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "__global_destructor_chain"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "__global_destructor_chain"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": "__global_destructor_chain"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "__global_destructor_chain"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": "__global_destructor_chain"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": "__global_destructor_chain"}}}}, "94f7848489b0947674f195fcefc52d7a91f96743": {"59f95cab": {"type": "FUNCTION", "size": 68, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.0.7", "2.1.3", "2.1.4", "2.2.2", "2.2.4", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.2", "2.6.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": "__global_destructor_chain"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": "__global_destructor_chain"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": "__global_destructor_chain"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "__global_destructor_chain"}}}}, "4e5b6b387a7876bcb24a700bbb88a373fe5a6a6f": {"59f95cab": {"type": "FUNCTION", "size": 68, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "M)PS2SDB", 8192}, + std::string_view{R"PS2SDB(IPS_HI16", "symbol": "", "original": "__global_destructor_chain"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": "__global_destructor_chain"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": "__global_destructor_chain"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "__global_destructor_chain"}}}}, "f2a30c8fbac7ea99b4ca0f7a3c26fa9f7b0ff4c1": {"6cd41fe5": {"type": "FUNCTION", "size": 92, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.2.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": "__global_destructor_chain"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": "__global_destructor_chain"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": "__global_destructor_chain"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": "__global_destructor_chain"}}}}, "69b38aaa1d2d7d9dca43a92f7d741d1ec251e5c1": {"6cd41fe5": {"type": "FUNCTION", "size": 92, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": "__global_destructor_chain"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": "__global_destructor_chain"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": "__global_destructor_chain"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": "__global_destructor_chain"}}}}}, "__register_global_object": {"e65af27757f9c99f426b8bd2441bf5fc09a76251": {"ebe4e305": {"type": "FUNCTION", "size": 28, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_GPREL16", "symbol": "__global_destructor_chain"}, "24": {"type": "MIPS_GPREL16", "symbol": "__global_destructor_chain"}}}}, "516741aceae876deced4ba7dd531ea8bd7fe7b23": {"cb0ee674": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "__global_destructor_chain"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "__global_destructor_chain"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": "__global_destructor_chain"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "__global_destructor_chain"}}}}, "845e96cadaefd307eee8a2af5d2cf7a11502e975": {"51f33373": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.6.1", "1.6.5", "2.0.2", "2.1.0", "2.1.3", "2.1.4", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "__global_destructor_chain"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": "__global_destructor_chain"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": "__global_destructor_chain"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "__global_destructor_chain"}}}}, "a66894ade9e639116164d334689f90f9ff4a6b36": {"ebe4e305": {"type": "FUNCTION", "size": 28, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_GPREL16", "symbol": "__global_destructor_chain"}, "24": {"type": "MIPS_GPREL16", "symbol": "__global_destructor_chain"}}}}, "1b7c4fd22ca349944ea29496dada5b02ae89a41c": {"31925361": {"type": "FUNCTION", "size": 32, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "__global_destructor_chain"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "__global_destructor_chain"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": "__global_destructor_chain"}}}}, "c81322f6e4ccfe3e2a5cf408605d501647a66138": {"482e093b": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "__global_destructor_chain"}, "4": {"type": "MIPS_HI16", "symbol": "", "original": "__global_destructor_chain"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "__global_destructor_chain"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "__global_destructor_chain"}}}}, "425748337b61509724cd7e6dedd4d7ec5b45a91a": {"62cc9c40": {"type": "FUNCTION", "size": 84, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.2.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": "__global_destructor_chain"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": "__global_destructor_chain"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": "__global_destructor_chain"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": "__global_destructor_chain"}}}}}, "__initialize_cpp_rts": {"c6f6989720fb1f54cc5af563de51231c0f8a91f6": {"00000000": {"type": "FUNCTION", "size": 84, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.0.7", "2.1.3", "2.1.4", "2.2.2", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.2", "2.5.5", "2.6.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "361c0dc19e8ca31835fc2114c94dac2da24138b9": {"00000000": {"type": "FUNCTION", "size": 84, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.5.0", "2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "97a2fa2faabaa96658351371739e941eb2c9739e": {"00000000": {"type": "FUNCTION", "size": 84, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "8b158764adeea3745b59470a9841e8bef1b83406": {"00000000": {"type": "FUNCTION", "size": 84, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.4", "1.5.1", "1.5.3", "1.6.1", "1.6.5", "2.0.2", "2.1.0", "2.4.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "364f18f38c27dfeb5d989d1f2eba50486ac17438": {"00000000": {"type": "FUNCTION", "size": 92, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "a639a8a356321edbeccee089cae462e9fca431ea": {"78dbd841": {"type": "FUNCTION", "size": 8, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_26", "symbol": "__call_static_initializers__FPPFv_vPPFv_v", "scope": "LIBRARY"}}}}, "33b613e104c9f963203495dee87ad540535ff1cd": {"00000000": {"type": "FUNCTION", "size": 84, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5", "2.7.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "a612706da53619cf3cf7f8692a23ec874586c94e": {"c0e07659": {"type": "FUNCTION", "size": 120, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"84": {"type": "MIPS_26", "s)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ymbol": "_RegisterExceptionTables", "scope": "LIBRARY"}}}}, "9a5fe3ff679fa41ae1948040ffa641638ba6132f": {"00000000": {"type": "FUNCTION", "size": 96, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "9e8fa3ba87cb8263d7f290017c62b786c9e74679": {"a4d426fe": {"type": "FUNCTION", "size": 48, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.2.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "__call_static_initializers__FPPFv_vPPFv_v", "scope": "LIBRARY"}}}}, "fde436ddea9c2c57625e180e013b4ea446bf1583": {"a4d426fe": {"type": "FUNCTION", "size": 48, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "__call_static_initializers__FPPFv_vPPFv_v", "scope": "LIBRARY"}}}}, "6f1f3d7a66e9e5511c572f09ac283262bfdd2c8f": {"00000000": {"type": "FUNCTION", "size": 80, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}, "81d8f775af31cf4699fc8adf1dfcc093c236ef80": {"85f18feb": {"type": "FUNCTION", "size": 28, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "__call_static_initializers__FPPFv_vPPFv_v", "scope": "LIBRARY"}}}}}, "__destroy_new_array": {"a33bfa2bc604ffb960bea51cdb4a8a1fb7843311": {"50d7fbbf": {"type": "FUNCTION", "size": 156, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.0", "2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"112": {"type": "MIPS_26", "symbol": "__dla__FPv", "scope": "LIBRARY"}}}}, "b3503fee898e514a18369847e2f23e1bcd5d0d08": {"84e6b738": {"type": "FUNCTION", "size": 160, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.2", "2.4.3", "2.5.4", "2.5.5", "2.5.7", "2.6.0", "2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"116": {"type": "MIPS_26", "symbol": "__dla__FPv", "scope": "LIBRARY"}}}}, "b73e0b30fdcc10d0b9015ebd3d52eff22672fda8": {"94ef3871": {"type": "FUNCTION", "size": 160, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.4", "1.5.3", "1.6.1", "2.1.0", "2.4.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"116": {"type": "MIPS_26", "symbol": "__dl__FPv", "scope": "LIBRARY"}}}}, "7fd3ac65b7395fd18a8e555bd0267d19447ac9c4": {"84e6b738": {"type": "FUNCTION", "size": 160, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.1", "2.6.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"116": {"type": "MIPS_26", "symbol": "__dla__FPv", "scope": "LIBRARY"}}}}, "04e8634a0a065bf97c541b08fca97e881ef7b62b": {"84e6b738": {"type": "FUNCTION", "size": 160, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.3", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"116": {"type": "MIPS_26", "symbol": "__dla__FPv", "scope": "LIBRARY"}}}, "94ef3871": {"type": "FUNCTION", "size": 160, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"116": {"type": "MIPS_26", "symbol": "__dl__FPv", "scope": "LIBRARY"}}}}, "ffd29a610c828b8661aa3adde04597a2aa320335": {"84e6b738": {"type": "FUNCTION", "size": 160, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.0.7", "2.1.3", "2.2.2", "2.2.4", "2.3.4", "2.4.2", "2.5.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"116": {"type": "MIPS_26", "symbol": "__dla__FPv", "scope": "LIBRARY"}}}}, "653c807c78c926520b7158f91f79fd30320a4883": {"50d7fbbf": {"type": "FUNCTION", "size": 156, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3", "2.5.0", "2.5.2", "2.5.4", "2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"112": {"type": "MIPS_26", "symbol": "__dla__FPv", "scope": "LIBRARY"}}}}, "3b26134f2f4f25efa6615da91d74356fe30098ba": {"50d7fbbf": {"type": "FUNCTION", "size": 156, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"112": {"type": "MIPS_26", "symbol": "__dla__FPv", "scope": "LIBRARY"}}}}, "3a9e1fbdc02caced3a66169cd023cd130c3f31b8": {"50d7fbbf": {"type": "FUNCTION", "size": 156, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"112": {"type": "MIPS_26", "symbol": "__dla__FPv", "scope": "LIBRARY"}}}}, "8ac49d427794af950a30be8efbdd07f1b1b1912e": {"c473de2f": {"type": "FUNCTION", "size": 200, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.2.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"160": {"type": "MIPS_26", "symbol": "__dla__FPv", "scope": "LIBRARY"}}}}, "a51fb01738e80cb2ae7e583d49453a7a652e06db": {"94ef3871": {"type": "FUNCTION", "size": 160, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"116": {"type": "MIPS_26", "symbol": "__dl__FPv", "scope": "LIBRARY"}}}}}, "__dla__FPv": {"7ba17f652620d1a8770717ffc05543c774ba24f8": {"d7464b39": {"type": "FUNCTION", "size": 28, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.3", "2.5.0", "2.5.2", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "__dl__FPv", "scope": "LIBRARY"}}}}, "0eb2f39f8eb7674fdb162dfaf54dbbc2980464c5": {"c6d7b0f6": {"type": "FUNCTION", "size": 60, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.1.0"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "__dl__FPv", "scope": "LIBRARY"}, "28": {"type": "MIPS_26", "symbol": "__unexpected", "scope": "LIBRARY"}}}}, "81d8f775af31cf4699fc8adf1dfcc093c236ef80": {"d7464b39": {"type": "FUNCTION", "size": 28, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.2", "2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "__dl__FPv", "scope": "LIBRARY"}}}}, "909698dc84d7258302ca65f33caa0c3204fed294": {"c6d7b0f6": {"type": "FUNCTION", "size": 64, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.0.7", "2.2.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "__dl__FPv", "scope": "LIBRARY"}, "28": {"type": "MIPS_26", "symbol": "__unexpected", "scope": "LIBRARY"}}}}, "a639a8a356321edbeccee089cae462e9fca431ea": {"29111d04": {"type": "FUNCTION", "size": 8, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_26", "symbol": "free"}}}}, "3181ee3554f384fff6186b1bea1f83a8370fc0ce": {"b73314a0": {"type": "FUNCTION", "size": 84, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.2.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "__dl__FPv", "scope": "LIBRARY"}, "44": {"type": "MIPS_26", "symbol": "__unexpected", "scope": "LIBRARY"}}}}}, "__dl__FPv": {"51e2da9080bb17334ef3428a439179fe7390db0e": {"841c10b5": {"type": "FUNCTION", "size": 92, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.5", "2.7.0", "2.8.0", "2.8.1", "3.)PS2SDB", 8192}, + std::string_view{R"PS2SDB(0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "free"}, "32": {"type": "MIPS_26", "symbol": "__unexpected", "scope": "LIBRARY"}}}}, "0eb2f39f8eb7674fdb162dfaf54dbbc2980464c5": {"eb008d97": {"type": "FUNCTION", "size": 60, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.4", "1.5.0", "1.6.5", "2.0.2", "2.1.0"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "free"}, "28": {"type": "MIPS_26", "symbol": "__unexpected", "scope": "LIBRARY"}}}}, "909698dc84d7258302ca65f33caa0c3204fed294": {"eb008d97": {"type": "FUNCTION", "size": 64, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.0.7", "2.1.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.2", "2.4.3"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "free"}, "28": {"type": "MIPS_26", "symbol": "__unexpected", "scope": "LIBRARY"}}}}, "2100f605402cd55cdb70986291612414ff41151b": {"eb008d97": {"type": "FUNCTION", "size": 68, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.3", "2.5.2", "2.5.4", "2.6.0", "2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "free"}, "28": {"type": "MIPS_26", "symbol": "__unexpected", "scope": "LIBRARY"}}}}, "72016f168b232588631eba829da8bb926b1c4a38": {"eb008d97": {"type": "FUNCTION", "size": 64, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "free"}, "28": {"type": "MIPS_26", "symbol": "__unexpected", "scope": "LIBRARY"}}}}, "2172c9008d98831a787f9b4ec6c8b19667df8088": {"eb008d97": {"type": "FUNCTION", "size": 92, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.2", "2.5.0", "2.5.4", "2.5.5", "2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "free"}, "28": {"type": "MIPS_26", "symbol": "__unexpected", "scope": "LIBRARY"}}}}, "374a35cac4020471ed35f8f6be1e91b4e97f7e62": {"841c10b5": {"type": "FUNCTION", "size": 84, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.5", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "free"}, "32": {"type": "MIPS_26", "symbol": "__unexpected", "scope": "LIBRARY"}}}}, "a639a8a356321edbeccee089cae462e9fca431ea": {"29111d04": {"type": "FUNCTION", "size": 8, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_26", "symbol": "free"}}}}, "df0a9e20d40af6e2d576b30f9214863f1ce57800": {"009c0820": {"type": "FUNCTION", "size": 92, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.2.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "DIntr"}, "28": {"type": "MIPS_26", "symbol": "free"}, "36": {"type": "MIPS_26", "symbol": "EIntr"}, "52": {"type": "MIPS_26", "symbol": "__unexpected", "scope": "LIBRARY"}}}}, "3181ee3554f384fff6186b1bea1f83a8370fc0ce": {"856d4c1b": {"type": "FUNCTION", "size": 84, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.2.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "free"}, "44": {"type": "MIPS_26", "symbol": "__unexpected", "scope": "LIBRARY"}}}}, "07072d30bbb124d755e2411ec06d72bda9d8ca86": {"1c65712a": {"type": "FUNCTION", "size": 120, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "DIntr"}, "28": {"type": "MIPS_26", "symbol": "free"}, "36": {"type": "MIPS_26", "symbol": "EIntr"}, "56": {"type": "MIPS_26", "symbol": "__unexpected", "scope": "LIBRARY"}}}}, "9bfe97c65baf7ee49ee8d373c63bf8d1740a259e": {"856d4c1b": {"type": "FUNCTION", "size": 104, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "free"}, "44": {"type": "MIPS_26", "symbol": "__unexpected", "scope": "LIBRARY"}}}}, "af0084924e0401aa136f462dc0b304683dd9ecee": {"934dbeb9": {"type": "FUNCTION", "size": 56, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "free"}, "40": {"type": "MIPS_26", "symbol": "__unexpected", "scope": "LIBRARY"}}}}}, "__dt__Q23std9exceptionFv": {"ac5100c9cad9291834660af159f8ec0572d528b4": {"bd277cdd": {"type": "FUNCTION", "size": 76, "library": "mslgcc_ps2", "scope": "EE_GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std9exception"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std9exception"}, "44": {"type": "MIPS_26", "symbol": "__dl__FPv", "scope": "LIBRARY"}}}}, "6bed860f7248d263d8cd4443dff77c9d8348b51f": {"7ef817e4": {"type": "FUNCTION", "size": 100, "library": "mslgcc_ps2", "scope": "EE_GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.4", "1.5.0", "1.6.5", "2.0.2", "2.1.0"], "compiler_versions": ["2.3.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std9exception"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std9exception"}, "44": {"type": "MIPS_26", "symbol": "__dl__FPv", "scope": "LIBRARY"}, "60": {"type": "MIPS_26", "symbol": "__unexpected", "scope": "LIBRARY"}}}}, "864a3117ae9b55485553e9d710df8d8ce0a27089": {"1cbb22a3": {"type": "FUNCTION", "size": 76, "library": "mslgcc_ps2", "scope": "EE_GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std9exception"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std9exception"}, "48": {"type": "MIPS_26", "symbol": "__dl__FPv", "scope": "LIBRARY"}}}}, "ecb1024caca789cb35a1906964ca4c7e32f5801e": {"f6240438": {"type": "FUNCTION", "size": 108, "library": "mslgcc_ps2", "scope": "EE_GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.0.7", "2.1.4", "2.2.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std9exception"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std9exception"}, "52": {"type": "MIPS_26", "symbol": "__dl__FPv", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "__unexpected", "scope": "LIBRARY"}}}}, "0dd545c0dbed4990628ea4ba42a580a49d9a8e58": {"fdee0a46": {"type": "FUNCTION", "size": 76, "library": "mslgcc_ps2", "scope": "EE_GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.0", "2.3.4", "2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std9exception"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std9exception"}, "48": {"type": "MIPS_26", "symbol": "__dl__FPv", "scope": "LIBRARY"}}}}, "a69b55d270105751d21fb8423d380eba747fdf0b": {"a3bdbe8b": {"type": "FUNCTION", "size": 108, "library": "mslgcc_ps2", "scope": "EE_GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"32": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std9exception"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std9exception"}, "52": {"type": "MIPS_26", )PS2SDB", 8192}, + std::string_view{R"PS2SDB("symbol": "__dl__FPv", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "__unexpected", "scope": "LIBRARY"}}}}, "35b4e041fa76af2573ad14da75b5b3b1795d79da": {"1cbb22a3": {"type": "FUNCTION", "size": 76, "library": "mslgcc_ps2", "scope": "EE_GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std9exception"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std9exception"}, "48": {"type": "MIPS_26", "symbol": "__dl__FPv", "scope": "LIBRARY"}}}}, "9b90b819612c49d0d7898e02df1be4e19b107d60": {"1cbb22a3": {"type": "FUNCTION", "size": 76, "library": "mslgcc_ps2", "scope": "EE_GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.3", "2.5.4", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std9exception"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std9exception"}, "48": {"type": "MIPS_26", "symbol": "__dl__FPv", "scope": "LIBRARY"}}}}, "e4d79dd78f754a2f568a8adeba2aee263bd36986": {"1cbb22a3": {"type": "FUNCTION", "size": 76, "library": "mslgcc_ps2", "scope": "EE_GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std9exception"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std9exception"}, "48": {"type": "MIPS_26", "symbol": "__dl__FPv", "scope": "LIBRARY"}}}}, "749776d49e0b501809bbaebad5d7ab84a9a65dc7": {"6f7a347b": {"type": "FUNCTION", "size": 140, "library": "mslgcc_ps2", "scope": "EE_GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.2.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std9exception"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std9exception"}, "76": {"type": "MIPS_26", "symbol": "__dl__FPv", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "__unexpected", "scope": "LIBRARY"}}}}, "b06ab256730f22da8a213893f9af74c58dd0d984": {"909b9d6c": {"type": "FUNCTION", "size": 96, "library": "mslgcc_ps2", "scope": "EE_GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std9exception"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std9exception"}, "68": {"type": "MIPS_26", "symbol": "__dl__FPv", "scope": "LIBRARY"}}}}, "52d91f9579e5a6138da6cced32a9e5383c2ecce1": {"85caa6be": {"type": "FUNCTION", "size": 96, "library": "mslgcc_ps2", "scope": "EE_GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std9exception"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std9exception"}, "44": {"type": "MIPS_26", "symbol": "__dl__FPv", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "__unexpected", "scope": "LIBRARY"}}}}}, "what__Q23std9exceptionCFv": {"2a51c093207f3b6546ea5ac91d4ae4a6999eaed5": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "mslgcc_ps2", "scope": "EE_GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.4", "2.2.2", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "@STRING@what__Q23std9exceptionCFv"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "@STRING@what__Q23std9exceptionCFv"}}}}, "c06b7115faf9578c4b800edd7176ac87025a8aae": {"bae1b0f3": {"type": "FUNCTION", "size": 24, "library": "mslgcc_ps2", "scope": "EE_GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "@STRING@what__Q23std9exceptionCFv"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "@STRING@what__Q23std9exceptionCFv"}}}}}, "__nwa__FUi": {"7ba17f652620d1a8770717ffc05543c774ba24f8": {"ea581f9f": {"type": "FUNCTION", "size": 28, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "__nw__FUi", "scope": "LIBRARY"}}}}, "81d8f775af31cf4699fc8adf1dfcc093c236ef80": {"ea581f9f": {"type": "FUNCTION", "size": 28, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.2.2", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.2", "2.4.3"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "__nw__FUi", "scope": "LIBRARY"}}}}, "a639a8a356321edbeccee089cae462e9fca431ea": {"4f33bc2d": {"type": "FUNCTION", "size": 8, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_26", "symbol": "malloc"}}}}}, "default_new_handler__3stdFv": {"22dd0c990a8f7cfaf962ffc9c02ba6099435736d": {"69a9516d": {"type": "FUNCTION", "size": 124, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std9bad_alloc"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": "@133"}, "20": {"type": "MIPS_HI16", "symbol": "__dt__Q23std9bad_allocFv"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std9bad_alloc"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": "@133"}, "44": {"type": "MIPS_26", "symbol": "__throw"}, "48": {"type": "MIPS_LO16", "symbol": "__dt__Q23std9bad_allocFv"}, "64": {"type": "MIPS_26", "symbol": "__unexpected", "scope": "LIBRARY"}}}}, "f6f08aa9ab2503a3f8097d5f6ccc43abb887e430": {"9174a341": {"type": "FUNCTION", "size": 92, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.4.4", "2.1.0", "2.4.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std9bad_alloc"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std9bad_alloc"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": "@45"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "@45"}, "36": {"type": "MIPS_HI16", "symbol": "__dt__Q23std9bad_allocFv"}, "44": {"type": "MIPS_26", "symbol": "__throw"}, "48": {"type": "MIPS_LO16", "symbol": "__dt__Q23std9bad_allocFv"}, "60": {"type": "MIPS_26", "symbol": "__unexpected", "scope": "LIBRARY"}}}}, "089cd46040e08ad239429150109dd0d2bf3a6129": {"9174a341": {"type": "FUNCTION", "size": 96, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.2", "2.4.3"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std9bad_alloc"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std9bad_alloc"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": "@34"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "@34"}, "36": {"type": "MIPS_HI16", "symbol": "__dt__Q23std9bad_allocFv"}, "44": {"type": "MIPS_26", "symbol": "__throw"}, "48": {"type": "MIPS_LO16", "symbol": "__dt__Q23std9bad_allocFv"}, "60": {"type": "MIPS_26)PS2SDB", 8192}, + std::string_view{R"PS2SDB(", "symbol": "__unexpected", "scope": "LIBRARY"}}}}, "e0239a5431d1144717bd745e8bfffa5072e73efd": {"86f46b15": {"type": "FUNCTION", "size": 96, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.0.7", "2.2.2", "2.3.4", "2.4.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std9bad_alloc"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std9bad_alloc"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": "@45"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "@45"}, "36": {"type": "MIPS_HI16", "symbol": "__dt__Q23std9bad_allocFv"}, "44": {"type": "MIPS_26", "symbol": "__throw"}, "48": {"type": "MIPS_LO16", "symbol": "__dt__Q23std9bad_allocFv"}, "60": {"type": "MIPS_26", "symbol": "__unexpected", "scope": "LIBRARY"}}}}, "3e426e4cb6ebfdd05b9e8c7699cbb9f41f7b2b39": {"bc38bc2f": {"type": "FUNCTION", "size": 100, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.4.3", "2.5.2", "2.5.4", "2.6.0", "2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std9bad_alloc"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": "@34"}, "20": {"type": "MIPS_HI16", "symbol": "__dt__Q23std9bad_allocFv"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std9bad_alloc"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": "@34"}, "44": {"type": "MIPS_26", "symbol": "__throw"}, "48": {"type": "MIPS_LO16", "symbol": "__dt__Q23std9bad_allocFv"}, "60": {"type": "MIPS_26", "symbol": "__unexpected", "scope": "LIBRARY"}}}}, "7e1ddb28f7309302833ec8be30050047d8f371dd": {"9174a341": {"type": "FUNCTION", "size": 96, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std9bad_alloc"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std9bad_alloc"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": "@34"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "@34"}, "36": {"type": "MIPS_HI16", "symbol": "__dt__Q23std9bad_allocFv"}, "44": {"type": "MIPS_26", "symbol": "__throw"}, "48": {"type": "MIPS_LO16", "symbol": "__dt__Q23std9bad_allocFv"}, "60": {"type": "MIPS_26", "symbol": "__unexpected", "scope": "LIBRARY"}}}}, "db06f16e1552dcb67d181d38c522f8c29bb9fce9": {"bc38bc2f": {"type": "FUNCTION", "size": 124, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.4.2", "2.5.0", "2.5.4", "2.5.5", "2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std9bad_alloc"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": "@34"}, "20": {"type": "MIPS_HI16", "symbol": "__dt__Q23std9bad_allocFv"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std9bad_alloc"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": "@34"}, "44": {"type": "MIPS_26", "symbol": "__throw"}, "48": {"type": "MIPS_LO16", "symbol": "__dt__Q23std9bad_allocFv"}, "60": {"type": "MIPS_26", "symbol": "__unexpected", "scope": "LIBRARY"}}}}, "ff8f34719faa0b99f68805f1ebdac6f47fb15bb3": {"69a9516d": {"type": "FUNCTION", "size": 116, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.5.5", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std9bad_alloc"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": "@133"}, "20": {"type": "MIPS_HI16", "symbol": "__dt__Q23std9bad_allocFv"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std9bad_alloc"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": "@133"}, "44": {"type": "MIPS_26", "symbol": "__throw"}, "48": {"type": "MIPS_LO16", "symbol": "__dt__Q23std9bad_allocFv"}, "64": {"type": "MIPS_26", "symbol": "__unexpected", "scope": "LIBRARY"}}}}, "ccf11b3e024c276370bbfaa4cee4a301ec65fe9e": {"53b4e00f": {"type": "FUNCTION", "size": 88, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std9bad_alloc"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std9bad_alloc"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": "@45"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "@45"}, "36": {"type": "MIPS_HI16", "symbol": "__dt__Q23std9bad_allocFv"}, "44": {"type": "MIPS_26", "symbol": "__throw"}, "48": {"type": "MIPS_LO16", "symbol": "__dt__Q23std9bad_allocFv"}, "72": {"type": "MIPS_26", "symbol": "__unexpected", "scope": "LIBRARY"}}}}}, "__dt__Q23std9bad_allocFv": {"c7b225fab89e266e0bb9aaaf5d5f30540582f778": {"828d0547": {"type": "FUNCTION", "size": 92, "library": "mslgcc_ps2", "scope": "EE_GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std9bad_alloc"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std9bad_alloc"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std9exception"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std9exception"}, "64": {"type": "MIPS_26", "symbol": "__dl__FPv", "scope": "LIBRARY"}}}}, "87910af936f904765fca79a532895932eb48658f": {"88e8dd57": {"type": "FUNCTION", "size": 120, "library": "mslgcc_ps2", "scope": "EE_GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.4", "2.1.0", "2.4.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std9bad_alloc"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std9bad_alloc"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std9exception"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std9exception"}, "64": {"type": "MIPS_26", "symbol": "__dl__FPv", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "__unexpected", "scope": "LIBRARY"}}}}, "0a652c21200e91e6492bd54f54ed07f3be5e0f4b": {"7e9347d3": {"type": "FUNCTION", "size": 96, "library": "mslgcc_ps2", "scope": "EE_GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.2", "2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std9bad_alloc"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std9bad_alloc"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std9exception"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std9exception"}, "68": {"type": "MIPS_26", "symbol": "__dl__FPv", "scope": "LIBRARY"}}}}, "543f7105e6ba1001e8ae3de64f2a5a79b97a0cec": {"f35cf282": {"type": "FUNCTION", "size": 132, "library": "mslgcc_ps2", "scope": "EE_GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.0.7", "2.2.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std9bad_alloc"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std9bad_alloc"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std9exception"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std9exception"}, "72": {"type": "MIPS_26", "symbol": "__dl__FPv", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "__unexpected", "scope": "LIBRARY"}}}}, "4cf24ed6d870a05f7731f0f2eca98d8f990698c7": {"7e9347d3": {"type": "FUNCTION", "size": 96, "library": "mslgcc_ps2", "scope": "EE_GL)PS2SDB", 8192}, + std::string_view{R"PS2SDB(OBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4", "2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std9bad_alloc"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std9bad_alloc"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std9exception"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std9exception"}, "68": {"type": "MIPS_26", "symbol": "__dl__FPv", "scope": "LIBRARY"}}}}, "6787ac379a45bfddc362834a7fa2de10c7ac8b7e": {"7e9347d3": {"type": "FUNCTION", "size": 96, "library": "mslgcc_ps2", "scope": "EE_GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std9bad_alloc"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std9bad_alloc"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std9exception"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std9exception"}, "68": {"type": "MIPS_26", "symbol": "__dl__FPv", "scope": "LIBRARY"}}}}, "adb38dc5a80d213dcbda4ba69e35a23761e2a167": {"7e9347d3": {"type": "FUNCTION", "size": 96, "library": "mslgcc_ps2", "scope": "EE_GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std9bad_alloc"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std9bad_alloc"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std9exception"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std9exception"}, "68": {"type": "MIPS_26", "symbol": "__dl__FPv", "scope": "LIBRARY"}}}}, "ff16778df4a27971bb699e0ef528b2c17d5bdc22": {"fb0d397f": {"type": "FUNCTION", "size": 116, "library": "mslgcc_ps2", "scope": "EE_GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std9bad_alloc"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std9bad_alloc"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std9exception"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std9exception"}, "64": {"type": "MIPS_26", "symbol": "__dl__FPv", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "__unexpected", "scope": "LIBRARY"}}}}}, "what__Q23std9bad_allocCFv": {"2a51c093207f3b6546ea5ac91d4ae4a6999eaed5": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "mslgcc_ps2", "scope": "EE_GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.2.2", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "@STRING@what__Q23std9bad_allocCFv"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "@STRING@what__Q23std9bad_allocCFv"}}}}}, "__nwa__FUiRCQ23std9nothrow_t": {"7ba17f652620d1a8770717ffc05543c774ba24f8": {"b4d31c16": {"type": "FUNCTION", "size": 28, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.5", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "__nw__FUiRCQ23std9nothrow_t", "scope": "LIBRARY"}}}}, "0eb2f39f8eb7674fdb162dfaf54dbbc2980464c5": {"d1788c88": {"type": "FUNCTION", "size": 60, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "__nw__FUiRCQ23std9nothrow_t", "scope": "LIBRARY"}, "28": {"type": "MIPS_26", "symbol": "__unexpected", "scope": "LIBRARY"}}}}}, "__nw__FUiRCQ23std9nothrow_t": {"899a2a621feb93746bcb559729bff0cd5c85140b": {"01f99249": {"type": "FUNCTION", "size": 160, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.5", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_HI16", "symbol": "", "original": "_new_handler_func__3std"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "_new_handler_func__3std"}, "72": {"type": "MIPS_26", "symbol": "malloc"}, "96": {"type": "MIPS_26", "symbol": "__unexpected", "scope": "LIBRARY"}}}}, "7ea7eab4f4d277f9b85b238d6b064ba5051fc7fc": {"3fe70b84": {"type": "FUNCTION", "size": 128, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_LO16", "symbol": "", "original": "_new_handler_func__3std"}, "64": {"type": "MIPS_26", "symbol": "malloc"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": "_new_handler_func__3std"}, "88": {"type": "MIPS_26", "symbol": "__unexpected", "scope": "LIBRARY"}}}}}, "__nw__FUi": {"f46c41dae63488f51785b9290044bc919afe517f": {"ad95b7c6": {"type": "FUNCTION", "size": 176, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_HI16", "symbol": "", "original": "_new_handler_func__3std"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "_new_handler_func__3std"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": "__throws_bad_alloc__3std"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "__throws_bad_alloc__3std"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std9bad_alloc"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": "@150"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std9bad_alloc"}, "96": {"type": "MIPS_HI16", "symbol": "__dt__Q23std9bad_allocFv"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": "@150"}, "112": {"type": "MIPS_26", "symbol": "__throw"}, "116": {"type": "MIPS_LO16", "symbol": "__dt__Q23std9bad_allocFv"}, "136": {"type": "MIPS_26", "symbol": "malloc"}}}}, "5a40aa554c7bdf738dd75452e76fa5c461b091d8": {"28353469": {"type": "FUNCTION", "size": 172, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "2.1.0"], "compiler_versions": ["2.3.1.01"], "relocations": {"36": {"type": "MIPS_LO16", "symbol": "", "original": "_new_handler_func__3std"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": "__throws_bad_alloc__3std"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": "__throws_bad_alloc__3std"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std9bad_alloc"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std9bad_alloc"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": "@62"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": "@62"}, "96": {"type": "MIPS_HI16", "symbol": "__dt__Q23std9bad_allocFv"}, "104": {"type": "MIPS_26", "symbol": "__throw"}, "108": {"type": "MIPS_LO16", "symbol": "__dt__Q23std9bad_allocFv"}, "132": {"type": "MIPS_26", "symbol": "malloc"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_new_handler_func__3std"}}}}, "28ab04bac82648a17f8e9f96a9b9da653fa80237": {"403215fb": {"type": "FUNCTION", "size": 180, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.2", "2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_LO16", "symbol": "", "original": "_new_handler_func__3std"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": "__throws_bad_alloc__3std"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": "__)PS2SDB", 8192}, + std::string_view{R"PS2SDB(throws_bad_alloc__3std"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std9bad_alloc"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std9bad_alloc"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": "@47"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": "@47"}, "100": {"type": "MIPS_HI16", "symbol": "__dt__Q23std9bad_allocFv"}, "108": {"type": "MIPS_26", "symbol": "__throw"}, "112": {"type": "MIPS_LO16", "symbol": "__dt__Q23std9bad_allocFv"}, "140": {"type": "MIPS_26", "symbol": "malloc"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": "_new_handler_func__3std"}}}}, "f5b39543d2db243eef20416978a2808dde083fe6": {"6a75872b": {"type": "FUNCTION", "size": 184, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.0.7", "2.3.4", "2.4.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": "_new_handler_func__3std"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": "_new_handler_func__3std"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": "__throws_bad_alloc__3std"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "__throws_bad_alloc__3std"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std9bad_alloc"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std9bad_alloc"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": "@62"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": "@62"}, "104": {"type": "MIPS_HI16", "symbol": "__dt__Q23std9bad_allocFv"}, "112": {"type": "MIPS_26", "symbol": "__throw"}, "116": {"type": "MIPS_LO16", "symbol": "__dt__Q23std9bad_allocFv"}, "144": {"type": "MIPS_26", "symbol": "malloc"}}}}, "aa8a902d63892082f6d312bbd5b8517030ec0857": {"6c980508": {"type": "FUNCTION", "size": 172, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_LO16", "symbol": "", "original": "_new_handler_func__3std"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": "__throws_bad_alloc__3std"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": "__throws_bad_alloc__3std"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std9bad_alloc"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": "@47"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std9bad_alloc"}, "88": {"type": "MIPS_HI16", "symbol": "__dt__Q23std9bad_allocFv"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": "@47"}, "104": {"type": "MIPS_26", "symbol": "__throw"}, "108": {"type": "MIPS_LO16", "symbol": "__dt__Q23std9bad_allocFv"}, "132": {"type": "MIPS_26", "symbol": "malloc"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "_new_handler_func__3std"}}}}, "1eedd10bd6bbebbed87c1fb4c7249942d06221d1": {"403215fb": {"type": "FUNCTION", "size": 180, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_LO16", "symbol": "", "original": "_new_handler_func__3std"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": "__throws_bad_alloc__3std"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": "__throws_bad_alloc__3std"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std9bad_alloc"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std9bad_alloc"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": "@47"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": "@47"}, "100": {"type": "MIPS_HI16", "symbol": "__dt__Q23std9bad_allocFv"}, "108": {"type": "MIPS_26", "symbol": "__throw"}, "112": {"type": "MIPS_LO16", "symbol": "__dt__Q23std9bad_allocFv"}, "140": {"type": "MIPS_26", "symbol": "malloc"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": "_new_handler_func__3std"}}}}, "a639a8a356321edbeccee089cae462e9fca431ea": {"4f33bc2d": {"type": "FUNCTION", "size": 8, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_26", "symbol": "malloc"}}}}, "e76815c035dcfe74287501866c9e16ce07cfca09": {"7fb00a0c": {"type": "FUNCTION", "size": 212, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.2.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "DIntr"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": "_new_handler_func__3std"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": "_new_handler_func__3std"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": "__throws_bad_alloc__3std"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": "__throws_bad_alloc__3std"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std9bad_alloc"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std9bad_alloc"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": "@62"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": "@62"}, "116": {"type": "MIPS_HI16", "symbol": "__dt__Q23std9bad_allocFv"}, "124": {"type": "MIPS_26", "symbol": "__throw"}, "128": {"type": "MIPS_LO16", "symbol": "__dt__Q23std9bad_allocFv"}, "156": {"type": "MIPS_26", "symbol": "malloc"}, "172": {"type": "MIPS_26", "symbol": "EIntr"}}}}, "c591d5231618bdfcbe51eb739dbd60239ac09329": {"8856f34e": {"type": "FUNCTION", "size": 204, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "DIntr"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": "_new_handler_func__3std"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": "_new_handler_func__3std"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": "__throws_bad_alloc__3std"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": "__throws_bad_alloc__3std"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std9bad_alloc"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": "@150"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std9bad_alloc"}, "104": {"type": "MIPS_HI16", "symbol": "__dt__Q23std9bad_allocFv"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": "@150"}, "120": {"type": "MIPS_26", "symbol": "__throw"}, "124": {"type": "MIPS_LO16", "symbol": "__dt__Q23std9bad_allocFv"}, "144": {"type": "MIPS_26", "symbol": "malloc"}, "160": {"type": "MIPS_26", "symbol": "EIntr"}}}}}, "__throw_catch_compare": {"92063776d8cd1609b63ee108e503aea8a512681f": {"00000000": {"type": "FUNCTION", "size": 632, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.0", "2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "d40d15e3bad37972bb5217a45fcbd4ce782f67e9": {"00000000": {"type": "FUNCTION", "size": 604, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.4", "1.5.0", "1.6.5", "2.0.2", "2.1.0", "2.4.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "f72a9081e3008e4151d5772b9ece42b68d7e50b0": {"00000000": {"type": "FUNCTION", "size": 612, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "df244b2445fe19f54e9a5463a99f0b8fb3298360": {"00000000": {"type": "FUNCTION", "size": 620, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5", "2.0.7", "2.1.4", "2.2.2", "2.3.0", "2.3.4", "2.4.2")PS2SDB", 8192}, + std::string_view{R"PS2SDB(], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "4b1464fe6f1569569ae88328c11bb2ceb5149e40": {"00000000": {"type": "FUNCTION", "size": 604, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}, "93b6e9f76b8fd602ab776916c12814ff6b0a4042": {"00000000": {"type": "FUNCTION", "size": 612, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3", "2.5.2", "2.5.4", "2.6.0", "2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "2db636ca956f3505646575a13fb73807a6ad4ec5": {"00000000": {"type": "FUNCTION", "size": 612, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.2", "2.5.0", "2.5.4", "2.5.5", "2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "8d65cabea1b92e7e5352d82cf74881fae6b8cc1f": {"00000000": {"type": "FUNCTION", "size": 624, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "548ddcbe6f29e2febb17b21d769a26d8672e80d9": {"00000000": {"type": "FUNCTION", "size": 588, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "0f47cee3509daa701103b2f9cba6352a851fde98": {"00000000": {"type": "FUNCTION", "size": 1048, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.2.2"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}, "9eab364808740cfeedebf871fe33aed00e3aab89": {"00000000": {"type": "FUNCTION", "size": 1048, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "c7cb9eb9de17f1fc740a90dd819606b8e8f7fc74": {"00000000": {"type": "FUNCTION", "size": 568, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}}, "unexpected__3stdFv": {"ec08b718285b32292efdfc9fe38fe237c1db7521": {"b9e78b8c": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "uhandler__3std"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "uhandler__3std"}}}}, "dee5c1cce510a69fa7b9392feacca789d60aac5b": {"02ec296d": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.4", "2.2.2", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.2", "2.4.3"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": "uhandler__3std"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "uhandler__3std"}}}}, "47f7f867e547d20f2e8fa8a898adaa92caa95ae5": {"02ec296d": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": "uhandler__3std"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "uhandler__3std"}}}}, "cacf47f32b6e643f00ae05e1389deccc15ca33cd": {"02ec296d": {"type": "FUNCTION", "size": 40, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.2.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": "uhandler__3std"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "uhandler__3std"}}}}, "f91c0a14dbb750e66da66b2df59e931cf53bc066": {"02ec296d": {"type": "FUNCTION", "size": 40, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": "uhandler__3std"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "uhandler__3std"}}}}, "a2d59143cecb91a95447475a061fc3ec5f744a40": {"2efce44a": {"type": "FUNCTION", "size": 32, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_GPREL16", "symbol": "uhandler__3std"}}}}, "949981fed02c934e8976226f66591b4d2851f7ab": {"2efce44a": {"type": "FUNCTION", "size": 32, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_GPREL16", "symbol": "uhandler__3std"}}}}}, "terminate__3stdFv": {"ec08b718285b32292efdfc9fe38fe237c1db7521": {"b9e78b8c": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "thandler__3std"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "thandler__3std"}}}}, "dee5c1cce510a69fa7b9392feacca789d60aac5b": {"02ec296d": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.4", "2.2.2", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": "thandler__3std"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "thandler__3std"}}}}, "47f7f867e547d20f2e8fa8a898adaa92caa95ae5": {"02ec296d": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.3", "2.5.4", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": "thandler__3std"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "thandler__3std"}}}}, "657345676d0dc06ec13cf581e847dfd0c5158b40": {"b9e78b8c": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "thandler__3std"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "thandler__3std"}}}}, "cacf47f32b6e643f00ae05e1389deccc15ca33cd": {"02ec296d": {"type": "FUNCTION", "size": 40, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.2.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": "thandler__3std"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "thandler__3std"}}}}, "f91c0a14dbb750e66da66b2df59e931cf53bc066": {"02ec296d": {"type": "FUNCTION", "size": 40, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": "thandler__3std"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "thandler__3std"}}}}, "a2d59143cecb91a95447475a061fc3ec5f744a40": {"b3f3053c": {"type": "FUNCTION", "size": 32, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_GPREL16", "symbol": "thandler__3std"}}}}, "949981fed02c934e8976226f66591b4d2851f7ab": {"b3f3053c": {"type": "FUNCTION", "size": 32, "library": "mslgcc_ps2", "s)PS2SDB", 8192}, + std::string_view{R"PS2SDB(cope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_GPREL16", "symbol": "thandler__3std"}}}}}, "duhandler__3stdFv": {"ec08b718285b32292efdfc9fe38fe237c1db7521": {"b9e78b8c": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "thandler__3std"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "thandler__3std"}}}}, "dee5c1cce510a69fa7b9392feacca789d60aac5b": {"02ec296d": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.4", "2.2.2", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.2", "2.4.3"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": "thandler__3std"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "thandler__3std"}}}}, "47f7f867e547d20f2e8fa8a898adaa92caa95ae5": {"02ec296d": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": "thandler__3std"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "thandler__3std"}}}}, "b4cc0155d72a4c374ab63f5efb12464ff183c80f": {"bbe07f26": {"type": "FUNCTION", "size": 32, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.2.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}}}}, "711e2ee3d68dbdec33f6ca06188dfb4fd8a747f5": {"bbe07f26": {"type": "FUNCTION", "size": 32, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}}}}, "a2d59143cecb91a95447475a061fc3ec5f744a40": {"b3f3053c": {"type": "FUNCTION", "size": 32, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_GPREL16", "symbol": "thandler__3std"}}}}, "81d8f775af31cf4699fc8adf1dfcc093c236ef80": {"bbe07f26": {"type": "FUNCTION", "size": 28, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.3.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}}}}}, "dthandler__3stdFv": {"7ba17f652620d1a8770717ffc05543c774ba24f8": {"d2c0e426": {"type": "FUNCTION", "size": 28, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "abort"}}}}, "81d8f775af31cf4699fc8adf1dfcc093c236ef80": {"d2c0e426": {"type": "FUNCTION", "size": 28, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.4", "2.2.2", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "abort"}}}}, "b4cc0155d72a4c374ab63f5efb12464ff183c80f": {"d2c0e426": {"type": "FUNCTION", "size": 32, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.2.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "abort"}}}}, "711e2ee3d68dbdec33f6ca06188dfb4fd8a747f5": {"d2c0e426": {"type": "FUNCTION", "size": 32, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "abort"}}}}}, "__ptmf_scall": {"22714aa6f6144e3f666fa589ed6bb81f80a69017": {"00000000": {"type": "FUNCTION", "size": 52, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.1", "1.6.5", "2.0.7", "2.1.0", "2.1.3", "2.1.4", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.2", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.1.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}}, "__DecodeUnsignedNumber__FPcPUi": {"ea542409a055e87ac55dbd0dcdc70376f03781f2": {"00000000": {"type": "FUNCTION", "size": 168, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "632fa46caf32dfd3d02e3ddd6c331629c7e77ba7": {"00000000": {"type": "FUNCTION", "size": 156, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.6.5", "2.0.2", "2.1.0", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "292cf668a7bb5a4267cd5b0a7fd3961659a03b4d": {"00000000": {"type": "FUNCTION", "size": 160, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.0.7", "2.1.4", "2.2.2", "2.3.0", "2.3.4", "2.4.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "a8aa232ec60fedb93dcd92a9cf55431a5803d954": {"00000000": {"type": "FUNCTION", "size": 160, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "d855bdf86c707e7019dda90754269f6794d8c8b0": {"00000000": {"type": "FUNCTION", "size": 156, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "4d331a080ae17d80f65b49a39fd83c2e0f74211e": {"00000000": {"type": "FUNCTION", "size": 292, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.2.2"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}, "9afecf332acf77990682724a772ecb37322268ea": {"00000000": {"type": "FUNCTION", "size": 292, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "__DecodeSignedNumber__FPcPi": {"4d43598c05193d8069a3f64cead2c239992ca610": {"00000000": {"type": "FUNCTION", "size": 168, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "6f63f91d5f591ba5ade8755aaf08283f832b3c10": {"00000000": {"type": "FUNCTION", "size": 156, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.6.5", "2.0.2", "2.1.0", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.4", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "c5efee8547e3554c58cc24fc563c431e6e6e7272": {"00000000": {"type": "FUNCTION", "size": 160, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.0.7", "2.1.4", "2.2.2", "2.3.0", "2.3.4", "2.4.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "7c37cae97716231d4063644e54ace2754696ee5b": {"00000000": {"type": "FUNCTION", "size": 160, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( false, "versions": [], "sdk": ["2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "2fa06a4009345d8b9a5d126556a9a4b1a3339f44": {"00000000": {"type": "FUNCTION", "size": 156, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "10b029091c6bd1bcc322de9a5b98343223ff8c2c": {"00000000": {"type": "FUNCTION", "size": 296, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.2.2"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}, "39641819e286278f85a5909e53f6c6e365149fcd": {"00000000": {"type": "FUNCTION", "size": 296, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "__end__catch": {"33ede18bc541ee63b001c96452f335cfaa75bb07": {"00000000": {"type": "FUNCTION", "size": 60, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.0", "2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "81848b6918ea04a52c12f773ee933fe2105ccbba": {"00000000": {"type": "FUNCTION", "size": 52, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.6.5", "2.0.2", "2.1.0", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "da45336f07529d33e5bbb3a6b167eb71b28f76ae": {"00000000": {"type": "FUNCTION", "size": 56, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5", "2.0.7", "2.1.4", "2.2.2", "2.3.0", "2.3.4", "2.4.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "0b691aa3cd5ec7d2e2d65dc6310ab77542b47f86": {"00000000": {"type": "FUNCTION", "size": 56, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}, "5f8b735abbbce3f6a1ad18b0458f88177eb8005d": {"00000000": {"type": "FUNCTION", "size": 52, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3", "2.5.2", "2.5.4", "2.6.0", "2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "6137d1ae67062b1df74cf9365d23adeea62f2c65": {"00000000": {"type": "FUNCTION", "size": 52, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3", "2.5.4", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "5d6dd11681ecbe70f4f24ea12e72397b2ba8483c": {"00000000": {"type": "FUNCTION", "size": 56, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.2", "2.5.0", "2.5.4", "2.5.5", "2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "548668da8fc178b8cec97dfbda841676aeebb777": {"00000000": {"type": "FUNCTION", "size": 56, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "__ThrowHandler__FP12ThrowContext": {"480286a97f301ca7bad060a14bd0fff85a23af85": {"4ce4a3d9": {"type": "FUNCTION", "size": 420, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "FindExceptionRecord__FPcP13ExceptionInfo", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "__SetupFrameInfo__FP12ThrowContextP13ExceptionInfo", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "FindMostRecentException__FP12ThrowContextP13ExceptionInfo", "scope": "LIBRARY"}, "120": {"type": "MIPS_26", "symbol": "FindExceptionHandler__FP12ThrowContextP13ExceptionInfoPl", "scope": "LIBRARY"}, "208": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "224": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "240": {"type": "MIPS_26", "symbol": "UnwindStack__FP12ThrowContextP13ExceptionInfoPc", "scope": "LIBRARY"}, "384": {"type": "MIPS_26", "symbol": "__TransferControl__FP12ThrowContextP13ExceptionInfoPc", "scope": "LIBRARY"}}}}, "4aae96c874be566a03394cf43a02044409603f21": {"eee7b119": {"type": "FUNCTION", "size": 396, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "2.0.2", "2.1.0", "2.4.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "FindExceptionRecord__FPcP13ExceptionInfo", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "__SetupFrameInfo__FP12ThrowContextP13ExceptionInfo", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "FindMostRecentException__FP12ThrowContextP13ExceptionInfo", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "FindExceptionHandler__FP12ThrowContextP13ExceptionInfoPl", "scope": "LIBRARY"}, "200": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "216": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "232": {"type": "MIPS_26", "symbol": "UnwindStack__FP12ThrowContextP13ExceptionInfoPc", "scope": "LIBRARY"}, "360": {"type": "MIPS_26", "symbol": "__TransferControl__FP12ThrowContextP13ExceptionInfoPc", "scope": "LIBRARY"}}}}, "961cc2bfba666181ec9d02ef79caabed8f73cefd": {"b7c5722a": {"type": "FUNCTION", "size": 400, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "FindExceptionRecord__FPcP13ExceptionInfo", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "__SetupFrameInfo__FP12ThrowContextP13ExceptionInfo", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "FindMostRecentException__FP12ThrowContextP13ExceptionInfo", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "FindExceptionHandler__FP12ThrowContextP13ExceptionInfoPl", "scope": "LIBRARY"}, "204": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "236": {"type": "MIPS_26", "symbol": "UnwindStack__FP12ThrowContextP13ExceptionInfoPc", "scope": "LIBRARY"}, "364": {"type": "MIPS_26", "symbol": "__TransferControl__FP12ThrowContextP13ExceptionInfoPc", "scope": "LIBRARY"}}}}, "840279ad45fa0b1d6ae3436d5427247ad6591e48": {"b845bdde": {"type": "FUNCTION", "size": 404, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.0.7", "2.1.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "FindExceptionRecord__FPcP13ExceptionInfo", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "__SetupFrameInfo__FP12ThrowContextP13ExceptionInfo", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "FindMostRecentException__FP12ThrowContextP13ExceptionInfo", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "FindExceptionHandler__FP12ThrowContextP13ExceptionInfoPl", "scope": "LIBRARY"}, "204": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "236": {"type": "MIPS_26", "symbol": "UnwindStack__FP12ThrowContextP13ExceptionInfoPc", "scope": "LIBRARY"}, "368": {"type": "MIPS_26", "symbol": "__TransferControl__FP12ThrowContextP13ExceptionInfoPc", "scope": "LIBRARY"}}}}, "faaed6505440fd)PS2SDB", 8192}, + std::string_view{R"PS2SDB(9588cd001d1b7a1c0a4f555b54": {"b845bdde": {"type": "FUNCTION", "size": 404, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "FindExceptionRecord__FPcP13ExceptionInfo", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "__SetupFrameInfo__FP12ThrowContextP13ExceptionInfo", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "FindMostRecentException__FP12ThrowContextP13ExceptionInfo", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "FindExceptionHandler__FP12ThrowContextP13ExceptionInfoPl", "scope": "LIBRARY"}, "204": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "236": {"type": "MIPS_26", "symbol": "UnwindStack__FP12ThrowContextP13ExceptionInfoPc", "scope": "LIBRARY"}, "368": {"type": "MIPS_26", "symbol": "__TransferControl__FP12ThrowContextP13ExceptionInfoPc", "scope": "LIBRARY"}}}}, "e4d84e14aa876aac00f462b9deca5678ac0c55ed": {"b7c5722a": {"type": "FUNCTION", "size": 400, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.3", "2.5.2", "2.5.4", "2.6.0", "2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "FindExceptionRecord__FPcP13ExceptionInfo", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "__SetupFrameInfo__FP12ThrowContextP13ExceptionInfo", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "FindMostRecentException__FP12ThrowContextP13ExceptionInfo", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "FindExceptionHandler__FP12ThrowContextP13ExceptionInfoPl", "scope": "LIBRARY"}, "204": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "236": {"type": "MIPS_26", "symbol": "UnwindStack__FP12ThrowContextP13ExceptionInfoPc", "scope": "LIBRARY"}, "364": {"type": "MIPS_26", "symbol": "__TransferControl__FP12ThrowContextP13ExceptionInfoPc", "scope": "LIBRARY"}}}}, "bbdc7981c9e33acd76cfb02e2f8849cb9f4cdcf0": {"b7c5722a": {"type": "FUNCTION", "size": 400, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.3", "2.5.4", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "FindExceptionRecord__FPcP13ExceptionInfo", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "__SetupFrameInfo__FP12ThrowContextP13ExceptionInfo", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "FindMostRecentException__FP12ThrowContextP13ExceptionInfo", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "FindExceptionHandler__FP12ThrowContextP13ExceptionInfoPl", "scope": "LIBRARY"}, "204": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "236": {"type": "MIPS_26", "symbol": "UnwindStack__FP12ThrowContextP13ExceptionInfoPc", "scope": "LIBRARY"}, "364": {"type": "MIPS_26", "symbol": "__TransferControl__FP12ThrowContextP13ExceptionInfoPc", "scope": "LIBRARY"}}}}, "1c77619eb9fc9b4eb6a08fcf5f628464d62f41fe": {"eee7b119": {"type": "FUNCTION", "size": 396, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.4", "2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "FindExceptionRecord__FPcP13ExceptionInfo", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "__SetupFrameInfo__FP12ThrowContextP13ExceptionInfo", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "FindMostRecentException__FP12ThrowContextP13ExceptionInfo", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "FindExceptionHandler__FP12ThrowContextP13ExceptionInfoPl", "scope": "LIBRARY"}, "200": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "216": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "232": {"type": "MIPS_26", "symbol": "UnwindStack__FP12ThrowContextP13ExceptionInfoPc", "scope": "LIBRARY"}, "360": {"type": "MIPS_26", "symbol": "__TransferControl__FP12ThrowContextP13ExceptionInfoPc", "scope": "LIBRARY"}}}}, "2261a34a6b8e56bf4091e4808aa2337541a18b1e": {"c82e3bc5": {"type": "FUNCTION", "size": 372, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "FindExceptionRecord__FPcP13ExceptionInfo", "scope": "LIBRARY"}, "44": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "__SetupFrameInfo__FP12ThrowContextP13ExceptionInfo", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "FindMostRecentException__FP12ThrowContextP13ExceptionInfo", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "FindExceptionHandler__FP12ThrowContextP13ExceptionInfoPl", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "192": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "208": {"type": "MIPS_26", "symbol": "UnwindStack__FP12ThrowContextP13ExceptionInfoPc", "scope": "LIBRARY"}, "344": {"type": "MIPS_26", "symbol": "__TransferControl__FP12ThrowContextP13ExceptionInfoPc", "scope": "LIBRARY"}}}}, "38b95eb37584a0d945f473d19e6c10b923eccfed": {"e02fd336": {"type": "FUNCTION", "size": 408, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "FindExceptionRecord__FPcP13ExceptionInfo", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "__SetupFrameInfo__FP12ThrowContextP13ExceptionInfo", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "FindMostRecentException__FP12ThrowContextP13ExceptionInfo", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "FindExceptionHandler__FP12ThrowContextP13ExceptionInfoPl", "scope": "LIBRARY"}, "208": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "224": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "240": {"type": "MIPS_26", "symbol": "UnwindStack__FP12ThrowContextP13ExceptionInfoPc", "scope": "LIBRARY"}, "372": {"type": "MIPS_26", "symbol": "__TransferControl__FP12ThrowContextP13ExceptionInfoPc", "scope": "LIBRARY"}}}}}, "FindExceptionHandler__FP12ThrowContextP13ExceptionInfoPl": {"cc822d48c247f9aa9eaa0aae76be65de45b72b76": {"1779d362": {"type": "FUNCTION", "size": 828, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"276": {"type": "MIPS_HI16", "symbol": "", "original": "@752"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": "@752"}, "384": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "396": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "412": {"type": "MIPS_26", "symbol": "__throw_catch_compare", "scope": "LIBRARY"}, "448": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "460": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "472": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "572": {"ty)PS2SDB", 8192}, + std::string_view{R"PS2SDB(pe": "MIPS_26", "symbol": "__throw_catch_compare", "scope": "LIBRARY"}, "660": {"type": "MIPS_26", "symbol": "UnwindStack__FP12ThrowContextP13ExceptionInfoPc", "scope": "LIBRARY"}, "724": {"type": "MIPS_26", "symbol": "__TransferControl__FP12ThrowContextP13ExceptionInfoPc", "scope": "LIBRARY"}, "744": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}, "760": {"type": "MIPS_26", "symbol": "NextAction__FP14ActionIterator", "scope": "LIBRARY"}}}}, "5a4f93f5a9ccc387653b667ca4e6c5f2b1a8f2fc": {"2b064950": {"type": "FUNCTION", "size": 692, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.4.4", "2.0.2", "2.1.0", "2.4.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"200": {"type": "MIPS_HI16", "symbol": "", "original": "@380"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": "@380"}, "300": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "312": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "328": {"type": "MIPS_26", "symbol": "__throw_catch_compare", "scope": "LIBRARY"}, "360": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "372": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "384": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "460": {"type": "MIPS_26", "symbol": "__throw_catch_compare", "scope": "LIBRARY"}, "524": {"type": "MIPS_26", "symbol": "UnwindStack__FP12ThrowContextP13ExceptionInfoPc", "scope": "LIBRARY"}, "588": {"type": "MIPS_26", "symbol": "__TransferControl__FP12ThrowContextP13ExceptionInfoPc", "scope": "LIBRARY"}, "604": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}, "624": {"type": "MIPS_26", "symbol": "NextAction__FP14ActionIterator", "scope": "LIBRARY"}}}}, "6fc88d2a1bb88c6a8543c7121689ed1fd6b8445f": {"c5117bb8": {"type": "FUNCTION", "size": 876, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.3.2", "2.3.4", "2.4.0", "2.4.2", "2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"352": {"type": "MIPS_HI16", "symbol": "", "original": "@414"}, "360": {"type": "MIPS_LO16", "symbol": "", "original": "@414"}, "464": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "476": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "492": {"type": "MIPS_26", "symbol": "__throw_catch_compare", "scope": "LIBRARY"}, "524": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "536": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "548": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "636": {"type": "MIPS_26", "symbol": "__throw_catch_compare", "scope": "LIBRARY"}, "708": {"type": "MIPS_26", "symbol": "UnwindStack__FP12ThrowContextP13ExceptionInfoPc", "scope": "LIBRARY"}, "772": {"type": "MIPS_26", "symbol": "__TransferControl__FP12ThrowContextP13ExceptionInfoPc", "scope": "LIBRARY"}, "788": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}, "808": {"type": "MIPS_26", "symbol": "NextAction__FP14ActionIterator", "scope": "LIBRARY"}}}}, "d0546bd3784b3af459d5831dee4acf1f87053c32": {"f653d7cc": {"type": "FUNCTION", "size": 724, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.0.7", "2.1.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"212": {"type": "MIPS_HI16", "symbol": "", "original": "@375"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": "@375"}, "316": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "328": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "344": {"type": "MIPS_26", "symbol": "__throw_catch_compare", "scope": "LIBRARY"}, "376": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "388": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "400": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "476": {"type": "MIPS_26", "symbol": "__throw_catch_compare", "scope": "LIBRARY"}, "556": {"type": "MIPS_26", "symbol": "UnwindStack__FP12ThrowContextP13ExceptionInfoPc", "scope": "LIBRARY"}, "620": {"type": "MIPS_26", "symbol": "__TransferControl__FP12ThrowContextP13ExceptionInfoPc", "scope": "LIBRARY"}, "636": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}, "656": {"type": "MIPS_26", "symbol": "NextAction__FP14ActionIterator", "scope": "LIBRARY"}}}}, "bc0198bfd243f2d547b49625ddac5ecb4ee8f4c2": {"158f12b2": {"type": "FUNCTION", "size": 724, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"212": {"type": "MIPS_HI16", "symbol": "", "original": "@375"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": "@375"}, "316": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "328": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "344": {"type": "MIPS_26", "symbol": "__throw_catch_compare", "scope": "LIBRARY"}, "376": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "388": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "400": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "476": {"type": "MIPS_26", "symbol": "__throw_catch_compare", "scope": "LIBRARY"}, "556": {"type": "MIPS_26", "symbol": "UnwindStack__FP12ThrowContextP13ExceptionInfoPc", "scope": "LIBRARY"}, "620": {"type": "MIPS_26", "symbol": "__TransferControl__FP12ThrowContextP13ExceptionInfoPc", "scope": "LIBRARY"}, "636": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}, "656": {"type": "MIPS_26", "symbol": "NextAction__FP14ActionIterator", "scope": "LIBRARY"}}}}, "670dcc913c4c0e4ae4ca027b76236d3b1be59d9b": {"f9646d54": {"type": "FUNCTION", "size": 804, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.4.3", "2.5.2", "2.5.4", "2.6.0", "2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"264": {"type": "MIPS_HI16", "symbol": "", "original": "@408"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": "@408"}, "380": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "392": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "408": {"type": "MIPS_26", "symbol": "__throw_catch_compare", "scope": "LIBRARY"}, "440": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "456": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "472": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "560": {"type": "MIPS_26", "symbol": "__throw_catch_compare", "scope": "LIBRARY"}, "628": {"type": "MIPS_26", "symbol": "UnwindStack__FP12ThrowContextP13ExceptionInfoPc", "scope": "LIBRARY"}, "692": {"type": "MIPS_26", "symbol": "__TransferControl__FP12ThrowContextP13ExceptionInfoPc", "scope": "LIBRARY"}, "712": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}, "732": {"type": "MIPS_26", "symbol": "NextAction__FP14ActionIterator", "scope": "LIBRARY"}}}}, "48f0f404f8028d803aecf6eda4459dae91786b7b": {"7c7b8c78": {"type": "FUNCTION", "size": 876, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.4.3", "2.5.4", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"344": {"type": "MIPS_HI16", "symbol": "", "original": "@410"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "@410"}, "456": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "468": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": "LIBRARY"}, "484": {"type": "MIPS_26", "symbol": "__throw_catch_compare", "scope": "LIBRARY"}, "516": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "532": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "548": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "636": {"type": "MIPS_26", "symbol": "__throw_catch_compare", "scope": "LIBRARY"}, "708": {"type": "MIPS_26", "symbol": "UnwindStack__FP12ThrowContextP13ExceptionInfoPc", "scope": "LIBRARY"}, "772": {"type": "MIPS_26", "symbol": "__TransferControl__FP12ThrowContextP13ExceptionInfoPc", "scope": "LIBRARY"}, "788": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}, "808": {"type": "MIPS_26", "symbol": "NextAction__FP14ActionIterator", "scope": "LIBRARY"}}}}, "210b1569ec8e5ea60d44a4a3730f8c094b2882b8": {"30066b2f": {"type": "FUNCTION", "size": 804, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.4", "2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"264": {"type": "MIPS_HI16", "symbol": "", "original": "@408"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": "@408"}, "376": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "388": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "404": {"type": "MIPS_26", "symbol": "__throw_catch_compare", "scope": "LIBRARY"}, "436": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "452": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "468": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "556": {"type": "MIPS_26", "symbol": "__throw_catch_compare", "scope": "LIBRARY"}, "628": {"type": "MIPS_26", "symbol": "UnwindStack__FP12ThrowContextP13ExceptionInfoPc", "scope": "LIBRARY"}, "692": {"type": "MIPS_26", "symbol": "__TransferControl__FP12ThrowContextP13ExceptionInfoPc", "scope": "LIBRARY"}, "712": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}, "732": {"type": "MIPS_26", "symbol": "NextAction__FP14ActionIterator", "scope": "LIBRARY"}}}}, "2a7c2203fab9f55bab614dd60273d22c889c6ebe": {"b3ce301e": {"type": "FUNCTION", "size": 760, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"240": {"type": "MIPS_HI16", "symbol": "", "original": "@732"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": "@732"}, "344": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "356": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "372": {"type": "MIPS_26", "symbol": "__throw_catch_compare", "scope": "LIBRARY"}, "408": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "420": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "432": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "508": {"type": "MIPS_26", "symbol": "__throw_catch_compare", "scope": "LIBRARY"}, "596": {"type": "MIPS_26", "symbol": "UnwindStack__FP12ThrowContextP13ExceptionInfoPc", "scope": "LIBRARY"}, "660": {"type": "MIPS_26", "symbol": "__TransferControl__FP12ThrowContextP13ExceptionInfoPc", "scope": "LIBRARY"}, "680": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}, "700": {"type": "MIPS_26", "symbol": "NextAction__FP14ActionIterator", "scope": "LIBRARY"}}}}, "891dafba75768de6d32befbc9af635723da2653e": {"c5117bb8": {"type": "FUNCTION", "size": 876, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.4.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"352": {"type": "MIPS_HI16", "symbol": "", "original": "@414"}, "360": {"type": "MIPS_LO16", "symbol": "", "original": "@414"}, "464": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "476": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "492": {"type": "MIPS_26", "symbol": "__throw_catch_compare", "scope": "LIBRARY"}, "524": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "536": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "548": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "636": {"type": "MIPS_26", "symbol": "__throw_catch_compare", "scope": "LIBRARY"}, "708": {"type": "MIPS_26", "symbol": "UnwindStack__FP12ThrowContextP13ExceptionInfoPc", "scope": "LIBRARY"}, "772": {"type": "MIPS_26", "symbol": "__TransferControl__FP12ThrowContextP13ExceptionInfoPc", "scope": "LIBRARY"}, "788": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}, "808": {"type": "MIPS_26", "symbol": "NextAction__FP14ActionIterator", "scope": "LIBRARY"}}}}, "2c5b0e0ca633535f9be7b8eb2a98c3ffc3632f69": {"5a83e96f": {"type": "FUNCTION", "size": 892, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"364": {"type": "MIPS_HI16", "symbol": "", "original": "@414"}, "368": {"type": "MIPS_LO16", "symbol": "", "original": "@414"}, "472": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "484": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "500": {"type": "MIPS_26", "symbol": "__throw_catch_compare", "scope": "LIBRARY"}, "532": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "544": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "556": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "644": {"type": "MIPS_26", "symbol": "__throw_catch_compare", "scope": "LIBRARY"}, "724": {"type": "MIPS_26", "symbol": "UnwindStack__FP12ThrowContextP13ExceptionInfoPc", "scope": "LIBRARY"}, "788": {"type": "MIPS_26", "symbol": "__TransferControl__FP12ThrowContextP13ExceptionInfoPc", "scope": "LIBRARY"}, "804": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}, "824": {"type": "MIPS_26", "symbol": "NextAction__FP14ActionIterator", "scope": "LIBRARY"}}}}, "d37857d2c3413ff2d73a9e22f24da3edac2c77c1": {"bbbc44c5": {"type": "FUNCTION", "size": 688, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"200": {"type": "MIPS_HI16", "symbol": "", "original": "@378"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": "@378"}, "296": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "308": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "324": {"type": "MIPS_26", "symbol": "__throw_catch_compare", "scope": "LIBRARY"}, "356": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "368": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "380": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "456": {"type": "MIPS_26", "symbol": "__throw_catch_compare", "scope": "LIBRARY"}, "520": {"type": "MIPS_26", "symbol": "UnwindStack__FP12ThrowContextP13ExceptionInfoPc", "scope": "LIBRARY"}, "584": {"type": "MIPS_26", "symbol": "__TransferControl__FP12ThrowContextP13ExceptionInfoPc", "scope": "LIBRARY"}, "600": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}, "620": {"type": "MIPS_26", "symbol": "NextAction__FP14ActionIterator", "scope": "LIBRARY"}}}}}, "__unexpected": {"1597322b02eee48d0cae7d701c63b05519e3ca48": {"ec7e2c5e": {"type": "FUNCTION", "size": 516, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.0", "2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": )PS2SDB", 8192}, + std::string_view{R"PS2SDB({"40": {"type": "MIPS_26", "symbol": "unexpected__3stdFv", "scope": "LIBRARY"}, "60": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "__throw_catch_compare", "scope": "LIBRARY"}, "260": {"type": "MIPS_26", "symbol": "__throw"}, "304": {"type": "MIPS_HI16", "symbol": "", "original": "@823"}, "312": {"type": "MIPS_LO16", "symbol": "", "original": "@823"}, "352": {"type": "MIPS_26", "symbol": "__throw_catch_compare", "scope": "LIBRARY"}, "424": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std13bad_exception"}, "428": {"type": "MIPS_HI16", "symbol": "", "original": "@824"}, "432": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std13bad_exception"}, "436": {"type": "MIPS_HI16", "symbol": "__dt__Q23std13bad_exceptionFv"}, "440": {"type": "MIPS_LO16", "symbol": "", "original": "@824"}, "452": {"type": "MIPS_26", "symbol": "__throw"}, "456": {"type": "MIPS_LO16", "symbol": "__dt__Q23std13bad_exceptionFv"}, "464": {"type": "MIPS_26", "symbol": "__end__catch", "scope": "LIBRARY"}, "472": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}}}}, "a9d191df6c3901cf35a171042548536825b15073": {"cff26045": {"type": "FUNCTION", "size": 436, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.4", "1.5.0", "1.6.5", "2.0.2", "2.1.0", "2.4.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "unexpected__3stdFv", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "160": {"type": "MIPS_26", "symbol": "__throw_catch_compare", "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "__throw"}, "252": {"type": "MIPS_HI16", "symbol": "", "original": "@430"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": "@430"}, "288": {"type": "MIPS_26", "symbol": "__throw_catch_compare", "scope": "LIBRARY"}, "344": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std13bad_exception"}, "348": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std13bad_exception"}, "356": {"type": "MIPS_HI16", "symbol": "", "original": "@431"}, "360": {"type": "MIPS_LO16", "symbol": "", "original": "@431"}, "364": {"type": "MIPS_HI16", "symbol": "__dt__Q23std13bad_exceptionFv"}, "372": {"type": "MIPS_26", "symbol": "__throw"}, "376": {"type": "MIPS_LO16", "symbol": "__dt__Q23std13bad_exceptionFv"}, "384": {"type": "MIPS_26", "symbol": "__end__catch", "scope": "LIBRARY"}, "392": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}}}}, "86b04b127cb5bb402b09b95ec2ca238b78c24093": {"0a012eb3": {"type": "FUNCTION", "size": 452, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.2", "2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "unexpected__3stdFv", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "172": {"type": "MIPS_26", "symbol": "__throw_catch_compare", "scope": "LIBRARY"}, "228": {"type": "MIPS_26", "symbol": "__throw"}, "268": {"type": "MIPS_HI16", "symbol": "", "original": "@460"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": "@460"}, "308": {"type": "MIPS_26", "symbol": "__throw_catch_compare", "scope": "LIBRARY"}, "360": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std13bad_exception"}, "364": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std13bad_exception"}, "372": {"type": "MIPS_HI16", "symbol": "", "original": "@461"}, "376": {"type": "MIPS_LO16", "symbol": "", "original": "@461"}, "380": {"type": "MIPS_HI16", "symbol": "__dt__Q23std13bad_exceptionFv"}, "388": {"type": "MIPS_26", "symbol": "__throw"}, "392": {"type": "MIPS_LO16", "symbol": "__dt__Q23std13bad_exceptionFv"}, "400": {"type": "MIPS_26", "symbol": "__end__catch", "scope": "LIBRARY"}, "408": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}}}}, "11648ad5c09ce92e2d925d884dac910d50b60879": {"95de4025": {"type": "FUNCTION", "size": 448, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5", "2.0.7", "2.1.4", "2.2.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "unexpected__3stdFv", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "160": {"type": "MIPS_26", "symbol": "__throw_catch_compare", "scope": "LIBRARY"}, "228": {"type": "MIPS_26", "symbol": "__throw"}, "260": {"type": "MIPS_HI16", "symbol": "", "original": "@424"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": "@424"}, "296": {"type": "MIPS_26", "symbol": "__throw_catch_compare", "scope": "LIBRARY"}, "356": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std13bad_exception"}, "360": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std13bad_exception"}, "368": {"type": "MIPS_HI16", "symbol": "", "original": "@425"}, "372": {"type": "MIPS_LO16", "symbol": "", "original": "@425"}, "376": {"type": "MIPS_HI16", "symbol": "__dt__Q23std13bad_exceptionFv"}, "384": {"type": "MIPS_26", "symbol": "__throw"}, "388": {"type": "MIPS_LO16", "symbol": "__dt__Q23std13bad_exceptionFv"}, "396": {"type": "MIPS_26", "symbol": "__end__catch", "scope": "LIBRARY"}, "404": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}}}}, "195c22a00d0b90f7bc6fcf5b59a610aa202ebb61": {"1119a696": {"type": "FUNCTION", "size": 480, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "unexpected__3stdFv", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "172": {"type": "MIPS_26", "symbol": "__throw_catch_compare", "scope": "LIBRARY"}, "244": {"type": "MIPS_26", "symbol": "__throw"}, "316": {"type": "MIPS_HI16", "symbol": "", "original": "@460"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": "@460"}, "324": {"type": "MIPS_26", "symbol": "__throw_catch_compare", "scope": "LIBRARY"}, "388": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std13bad_exception"}, "392": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std13bad_exception"}, "400": {"type": "MIPS_HI16", "symbol": "", "original": "@461"}, "404": {"type": "MIPS_LO16", "symbol": "", "original": "@461"}, "408": {"type": "MIPS_HI16", "symbol": "__dt__Q23std13bad_exceptionFv"}, "416": {"type": "MIPS_26", "symbol": "__throw"}, "420": {"type": "MIPS_LO16", "symbol": "__dt__Q23std13bad_exceptionFv"}, "428": {"type": "MIPS_26", "symbol": "__end__catch", "scope": "LIBRARY"}, "436": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}}}}, "69fab60b7cc640d390214447dabb769334bb2773": {"ac8e6ebb": {"type": "FUNCTION", "size": 448, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": )PS2SDB", 8192}, + std::string_view{R"PS2SDB(["1.6.5", "2.0.2", "2.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "unexpected__3stdFv", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "160": {"type": "MIPS_26", "symbol": "__throw_catch_compare", "scope": "LIBRARY"}, "228": {"type": "MIPS_26", "symbol": "__throw"}, "260": {"type": "MIPS_HI16", "symbol": "", "original": "@424"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": "@424"}, "296": {"type": "MIPS_26", "symbol": "__throw_catch_compare", "scope": "LIBRARY"}, "356": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std13bad_exception"}, "360": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std13bad_exception"}, "368": {"type": "MIPS_HI16", "symbol": "", "original": "@425"}, "372": {"type": "MIPS_LO16", "symbol": "", "original": "@425"}, "376": {"type": "MIPS_HI16", "symbol": "__dt__Q23std13bad_exceptionFv"}, "384": {"type": "MIPS_26", "symbol": "__throw"}, "388": {"type": "MIPS_LO16", "symbol": "__dt__Q23std13bad_exceptionFv"}, "396": {"type": "MIPS_26", "symbol": "__end__catch", "scope": "LIBRARY"}, "404": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}}}}, "41b5a5d76f053bf9ed08f47dc58404c0c83fd27e": {"943eb5ef": {"type": "FUNCTION", "size": 468, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3", "2.5.2", "2.5.4", "2.6.0", "2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "unexpected__3stdFv", "scope": "LIBRARY"}, "60": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "176": {"type": "MIPS_26", "symbol": "__throw_catch_compare", "scope": "LIBRARY"}, "236": {"type": "MIPS_26", "symbol": "__throw"}, "260": {"type": "MIPS_HI16", "symbol": "", "original": "@454"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": "@454"}, "316": {"type": "MIPS_26", "symbol": "__throw_catch_compare", "scope": "LIBRARY"}, "376": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std13bad_exception"}, "380": {"type": "MIPS_HI16", "symbol": "", "original": "@455"}, "384": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std13bad_exception"}, "388": {"type": "MIPS_HI16", "symbol": "__dt__Q23std13bad_exceptionFv"}, "392": {"type": "MIPS_LO16", "symbol": "", "original": "@455"}, "404": {"type": "MIPS_26", "symbol": "__throw"}, "408": {"type": "MIPS_LO16", "symbol": "__dt__Q23std13bad_exceptionFv"}, "416": {"type": "MIPS_26", "symbol": "__end__catch", "scope": "LIBRARY"}, "424": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}}}}, "3b343cfe299239f929a8a2a39e9d31050e85d9be": {"0a012eb3": {"type": "FUNCTION", "size": 452, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.4", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "unexpected__3stdFv", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "172": {"type": "MIPS_26", "symbol": "__throw_catch_compare", "scope": "LIBRARY"}, "228": {"type": "MIPS_26", "symbol": "__throw"}, "268": {"type": "MIPS_HI16", "symbol": "", "original": "@456"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": "@456"}, "308": {"type": "MIPS_26", "symbol": "__throw_catch_compare", "scope": "LIBRARY"}, "360": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std13bad_exception"}, "364": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std13bad_exception"}, "372": {"type": "MIPS_HI16", "symbol": "", "original": "@457"}, "376": {"type": "MIPS_LO16", "symbol": "", "original": "@457"}, "380": {"type": "MIPS_HI16", "symbol": "__dt__Q23std13bad_exceptionFv"}, "388": {"type": "MIPS_26", "symbol": "__throw"}, "392": {"type": "MIPS_LO16", "symbol": "__dt__Q23std13bad_exceptionFv"}, "400": {"type": "MIPS_26", "symbol": "__end__catch", "scope": "LIBRARY"}, "408": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}}}}, "e9763c9d2fbc6f8275b0aa45d21a5b54df4f8501": {"7eaf0e53": {"type": "FUNCTION", "size": 452, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.2", "2.5.0", "2.5.4", "2.5.5", "2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "unexpected__3stdFv", "scope": "LIBRARY"}, "60": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "__throw_catch_compare", "scope": "LIBRARY"}, "228": {"type": "MIPS_26", "symbol": "__throw"}, "252": {"type": "MIPS_HI16", "symbol": "", "original": "@454"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": "@454"}, "304": {"type": "MIPS_26", "symbol": "__throw_catch_compare", "scope": "LIBRARY"}, "360": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std13bad_exception"}, "364": {"type": "MIPS_HI16", "symbol": "", "original": "@455"}, "368": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std13bad_exception"}, "372": {"type": "MIPS_HI16", "symbol": "__dt__Q23std13bad_exceptionFv"}, "376": {"type": "MIPS_LO16", "symbol": "", "original": "@455"}, "388": {"type": "MIPS_26", "symbol": "__throw"}, "392": {"type": "MIPS_LO16", "symbol": "__dt__Q23std13bad_exceptionFv"}, "400": {"type": "MIPS_26", "symbol": "__end__catch", "scope": "LIBRARY"}, "408": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}}}}, "182d061d6c7859d52b543f991f53f5b6e248cd59": {"cbe3fcea": {"type": "FUNCTION", "size": 540, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "unexpected__3stdFv", "scope": "LIBRARY"}, "60": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "212": {"type": "MIPS_26", "symbol": "__throw_catch_compare", "scope": "LIBRARY"}, "276": {"type": "MIPS_26", "symbol": "__throw"}, "336": {"type": "MIPS_HI16", "symbol": "", "original": "@470"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "@470"}, "392": {"type": "MIPS_26", "symbol": "__throw_catch_compare", "scope": "LIBRARY"}, "448": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std13bad_exception"}, "452": {"type": "MIPS_HI16", "symbol": "", "original": "@471"}, "456": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std13bad_exception"}, "460": {"type": "MIPS_HI16", "symbol": "__dt__Q23std13bad_exceptionFv"}, "464": {"type": "MIPS_LO16", "symbol": "", "original": "@471"}, "476": {"type": "MIPS_26", "symbol": "__throw"}, "480": {"type": "MIPS_LO16", "symbol": "__dt__Q23std13bad_exceptionFv"}, "488": {"type": "MIPS_26", "symbol": "__end__catch", "scope": "LIBRARY"}, "496": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}}}}, "9a7d84fee5c8392f2eef12e3f5a91c024bfdbc7e": {"08fdf3a6": {"type": "FUNCTION", "size": 428, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: true, "versions": [], "sdk": ["1.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "unexpected__3stdFv", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "160": {"type": "MIPS_26", "symbol": "__throw_catch_compare", "scope": "LIBRARY"}, "216": {"type": "MIPS_26", "symbol": "__throw"}, "248": {"type": "MIPS_HI16", "symbol": "", "original": "@428"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": "@428"}, "284": {"type": "MIPS_26", "symbol": "__throw_catch_compare", "scope": "LIBRARY"}, "336": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std13bad_exception"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std13bad_exception"}, "348": {"type": "MIPS_HI16", "symbol": "", "original": "@429"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "@429"}, "356": {"type": "MIPS_HI16", "symbol": "__dt__Q23std13bad_exceptionFv"}, "364": {"type": "MIPS_26", "symbol": "__throw"}, "368": {"type": "MIPS_LO16", "symbol": "__dt__Q23std13bad_exceptionFv"}, "376": {"type": "MIPS_26", "symbol": "__end__catch", "scope": "LIBRARY"}, "384": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}}}}, "3ee38c6af4e9d44be484171ef21b81fafefdda1c": {"63275461": {"type": "FUNCTION", "size": 596, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "unexpected__3stdFv", "scope": "LIBRARY"}, "60": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "228": {"type": "MIPS_26", "symbol": "__throw_catch_compare", "scope": "LIBRARY"}, "300": {"type": "MIPS_26", "symbol": "__throw"}, "392": {"type": "MIPS_HI16", "symbol": "", "original": "@849"}, "400": {"type": "MIPS_LO16", "symbol": "", "original": "@849"}, "440": {"type": "MIPS_26", "symbol": "__throw_catch_compare", "scope": "LIBRARY"}, "504": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std13bad_exception"}, "508": {"type": "MIPS_HI16", "symbol": "", "original": "@850"}, "512": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std13bad_exception"}, "516": {"type": "MIPS_HI16", "symbol": "__dt__Q23std13bad_exceptionFv"}, "520": {"type": "MIPS_LO16", "symbol": "", "original": "@850"}, "532": {"type": "MIPS_26", "symbol": "__throw"}, "536": {"type": "MIPS_LO16", "symbol": "__dt__Q23std13bad_exceptionFv"}, "544": {"type": "MIPS_26", "symbol": "__end__catch", "scope": "LIBRARY"}, "552": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}}}}, "e6e41f973ea2cb37cb300cb688ea2b322b0394f4": {"92f0ca72": {"type": "FUNCTION", "size": 224, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "unexpected__3stdFv", "scope": "LIBRARY"}, "44": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "IsInSpecification__FPcP16ex_specification", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "__throw"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": "@800"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": "@800"}, "128": {"type": "MIPS_26", "symbol": "IsInSpecification__FPcP16ex_specification", "scope": "LIBRARY"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std13bad_exception"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std13bad_exception"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": "@801"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": "@801"}, "164": {"type": "MIPS_HI16", "symbol": "__dt__Q23std13bad_exceptionFv"}, "172": {"type": "MIPS_26", "symbol": "__throw"}, "176": {"type": "MIPS_LO16", "symbol": "__dt__Q23std13bad_exceptionFv"}, "184": {"type": "MIPS_26", "symbol": "__end__catch", "scope": "LIBRARY"}, "192": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}}}}}, "__dt__Q23std13bad_exceptionFv": {"c7b225fab89e266e0bb9aaaf5d5f30540582f778": {"828d0547": {"type": "FUNCTION", "size": 92, "library": "mslgcc_ps2", "scope": "EE_GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std13bad_exception"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std13bad_exception"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std9exception"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std9exception"}, "64": {"type": "MIPS_26", "symbol": "__dl__FPv", "scope": "LIBRARY"}}}}, "87910af936f904765fca79a532895932eb48658f": {"88e8dd57": {"type": "FUNCTION", "size": 120, "library": "mslgcc_ps2", "scope": "EE_GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.4", "1.5.0", "1.6.5", "2.0.2", "2.1.0", "2.4.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std13bad_exception"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std13bad_exception"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std9exception"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std9exception"}, "64": {"type": "MIPS_26", "symbol": "__dl__FPv", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "__unexpected", "scope": "LIBRARY"}}}}, "0a652c21200e91e6492bd54f54ed07f3be5e0f4b": {"7e9347d3": {"type": "FUNCTION", "size": 96, "library": "mslgcc_ps2", "scope": "EE_GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.2", "2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std13bad_exception"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std13bad_exception"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std9exception"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std9exception"}, "68": {"type": "MIPS_26", "symbol": "__dl__FPv", "scope": "LIBRARY"}}}}, "543f7105e6ba1001e8ae3de64f2a5a79b97a0cec": {"f35cf282": {"type": "FUNCTION", "size": 132, "library": "mslgcc_ps2", "scope": "EE_GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.0.7", "2.1.4", "2.2.2", "2.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std13bad_exception"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std13bad_exception"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std9exception"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std9exception"}, "72": {"type": "MIPS_26", "symbol": "__dl__FPv", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "__unexpected", "scope": "LIBRARY"}}}}, "4cf24ed6d870a05f7731f0f2eca98d8f990698c7": {"7e9347d3": {"type": "FUNCTION", "size": 96, "library": "mslgcc_ps2", "scope": "EE_GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.0", "2.3.4", "2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std)PS2SDB", 8192}, + std::string_view{R"PS2SDB(13bad_exception"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std13bad_exception"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std9exception"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std9exception"}, "68": {"type": "MIPS_26", "symbol": "__dl__FPv", "scope": "LIBRARY"}}}}, "6787ac379a45bfddc362834a7fa2de10c7ac8b7e": {"7e9347d3": {"type": "FUNCTION", "size": 96, "library": "mslgcc_ps2", "scope": "EE_GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std13bad_exception"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std13bad_exception"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std9exception"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std9exception"}, "68": {"type": "MIPS_26", "symbol": "__dl__FPv", "scope": "LIBRARY"}}}}, "adb38dc5a80d213dcbda4ba69e35a23761e2a167": {"7e9347d3": {"type": "FUNCTION", "size": 96, "library": "mslgcc_ps2", "scope": "EE_GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std13bad_exception"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std13bad_exception"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std9exception"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std9exception"}, "68": {"type": "MIPS_26", "symbol": "__dl__FPv", "scope": "LIBRARY"}}}}, "ff16778df4a27971bb699e0ef528b2c17d5bdc22": {"fb0d397f": {"type": "FUNCTION", "size": 116, "library": "mslgcc_ps2", "scope": "EE_GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std13bad_exception"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std13bad_exception"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std9exception"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std9exception"}, "64": {"type": "MIPS_26", "symbol": "__dl__FPv", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "__unexpected", "scope": "LIBRARY"}}}}}, "FindMostRecentException__FP12ThrowContextP13ExceptionInfo": {"50d3d0f23861dc966ecdb34e8aa43b02d9b21195": {"80bb0972": {"type": "FUNCTION", "size": 372, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"236": {"type": "MIPS_HI16", "symbol": "", "original": "@887"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": "@887"}, "264": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}, "280": {"type": "MIPS_26", "symbol": "NextAction__FP14ActionIterator", "scope": "LIBRARY"}, "304": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}}}}, "0657f8fbd24ec50e06410b5daa884cd331d3e4fc": {"95bcf0d3": {"type": "FUNCTION", "size": 288, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "2.0.2", "2.1.0", "2.4.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"156": {"type": "MIPS_HI16", "symbol": "", "original": "@489"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": "@489"}, "184": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}, "200": {"type": "MIPS_26", "symbol": "NextAction__FP14ActionIterator", "scope": "LIBRARY"}, "224": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}}}}, "b6bf87700aeccd0db4f21d6bc0d9f0d1c1171103": {"6b46ecaf": {"type": "FUNCTION", "size": 452, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"316": {"type": "MIPS_HI16", "symbol": "", "original": "@518"}, "324": {"type": "MIPS_LO16", "symbol": "", "original": "@518"}, "344": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}, "360": {"type": "MIPS_26", "symbol": "NextAction__FP14ActionIterator", "scope": "LIBRARY"}, "384": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}}}}, "acf62ea5beca824af43a4bd9f0be8ba6aa989747": {"51fda517": {"type": "FUNCTION", "size": 304, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.0.7", "2.1.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"168": {"type": "MIPS_HI16", "symbol": "", "original": "@479"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": "@479"}, "200": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}, "216": {"type": "MIPS_26", "symbol": "NextAction__FP14ActionIterator", "scope": "LIBRARY"}, "240": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}}}}, "4659fae1cc822647947743afdbe600d39d77a683": {"cd1caf1b": {"type": "FUNCTION", "size": 304, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"168": {"type": "MIPS_HI16", "symbol": "", "original": "@479"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": "@479"}, "200": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}, "216": {"type": "MIPS_26", "symbol": "NextAction__FP14ActionIterator", "scope": "LIBRARY"}, "240": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}}}}, "a1a91cee4b88cf81d7d2be1fb4e90550d273de45": {"80bb0972": {"type": "FUNCTION", "size": 372, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.4.3", "2.5.0", "2.5.2", "2.5.4", "2.6.0", "2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"236": {"type": "MIPS_HI16", "symbol": "", "original": "@510"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": "@510"}, "264": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}, "280": {"type": "MIPS_26", "symbol": "NextAction__FP14ActionIterator", "scope": "LIBRARY"}, "304": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}}}}, "d44196307f50f8b7d8f21e8552286de8f61f0d95": {"6b46ecaf": {"type": "FUNCTION", "size": 452, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.4.3", "2.5.4", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"316": {"type": "MIPS_HI16", "symbol": "", "original": "@514"}, "324": {"type": "MIPS_LO16", "symbol": "", "original": "@514"}, "344": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}, "360": {"type": "MIPS_26", "symbol": "NextAction__FP14ActionIterator", "scope": "LIBRARY"}, "384": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}}}}, "19212956d392b26d79847701ae3dc6d8654a69a6": {"e1025383": {"type": "FUNCTION", "size": 340, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"212": {"type": "MIPS_HI16", "symbol": "", "original": "@859"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": "@859"}, "240": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}, "256": {"type": "MIPS_26", "symbol": "NextAction__FP14ActionIterator", "scope": "LIBRARY"}, "280": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}}}}, "05a5bf8dab76f53754ecf9c64291ea1a4f8b8152": {"14b0daad": {"type": "FUNCTION", "size": 468, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [],)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"328": {"type": "MIPS_HI16", "symbol": "", "original": "@518"}, "332": {"type": "MIPS_LO16", "symbol": "", "original": "@518"}, "360": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}, "376": {"type": "MIPS_26", "symbol": "NextAction__FP14ActionIterator", "scope": "LIBRARY"}, "400": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}}}}}, "UnwindStack__FP12ThrowContextP13ExceptionInfoPc": {"5920d3e26e7a6093a7451f9134366283f6fe61ec": {"05139e0c": {"type": "FUNCTION", "size": 2116, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "__PopStackFrame__FP12ThrowContextP13ExceptionInfo", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "FindExceptionRecord__FPcP13ExceptionInfo", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "__SetupFrameInfo__FP12ThrowContextP13ExceptionInfo", "scope": "LIBRARY"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": "@1276"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": "@1276"}, "188": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "312": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "324": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "472": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "596": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "608": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "620": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "752": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "764": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "896": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "908": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1040": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1052": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1064": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1264": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1276": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1288": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "1300": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "1488": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1616": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1628": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1864": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "1876": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1900": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1984": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "1996": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "2008": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "2040": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}}}}, "115d9c3119567eedb1d7f2e658a7a0cba9aae89a": {"cd93bd4c": {"type": "FUNCTION", "size": 2076, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.4.4", "2.0.2", "2.1.0", "2.4.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"64": {"type": "MIPS_26", "symbol": "__PopStackFrame__FP12ThrowContextP13ExceptionInfo", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "FindExceptionRecord__FPcP13ExceptionInfo", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "__SetupFrameInfo__FP12ThrowContextP13ExceptionInfo", "scope": "LIBRARY"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": "@739"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": "@739"}, "180": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "212": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "304": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "316": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "464": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "588": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "600": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "612": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "744": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "756": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "892": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "904": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1044": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1056": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1068": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1272": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1284": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1296": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "1308": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "1496": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1628": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1640": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1832": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "1844": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1864": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1944": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "1956": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "1968": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1996": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}}}}, "8795e623292d6e0ce221fcebdf7788fe4523cac3": {"e1dc5a20": {"type": "FUNCTION", "size": 2168, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.3.2", "2.3.4", "2.4.0", "2.4.2", "2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_26", "symbol": "__PopStackFrame__FP12ThrowContextP13ExceptionInfo", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "FindExceptionRecord__FPcP13ExceptionInfo", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "__SetupFrameInfo__FP12ThrowContextP13ExceptionInfo", "scope": "LIBRARY"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": "@756"}, "156": {"type": "MIPS_LO16",)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "symbol": "", "original": "@756"}, "180": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "212": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "308": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "320": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "476": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "604": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "616": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "628": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "764": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "776": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "916": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "928": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1072": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1084": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1096": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1300": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1312": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1324": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "1336": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "1532": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1668": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1680": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1924": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "1936": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1956": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "2040": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "2052": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "2064": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "2092": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}}}}, "bf7c97da3a566a6e7a0985db277eccd135de7aea": {"c4ef1766": {"type": "FUNCTION", "size": 2096, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.0.7", "2.1.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "__PopStackFrame__FP12ThrowContextP13ExceptionInfo", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "FindExceptionRecord__FPcP13ExceptionInfo", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "__SetupFrameInfo__FP12ThrowContextP13ExceptionInfo", "scope": "LIBRARY"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": "@716"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": "@716"}, "196": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "228": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "320": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "332": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "480": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "604": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "616": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "628": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "760": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "772": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "908": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "920": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1060": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1072": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1084": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1288": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1300": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1312": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "1324": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "1512": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1644": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1656": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1852": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "1864": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1884": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1972": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "1984": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "1996": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "2024": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}}}}, "b56181a4061e3d6dc38156a80d7f4ca698308534": {"94689086": {"type": "FUNCTION", "size": 2096, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "__PopStackFrame__FP12ThrowContextP13ExceptionInfo", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "FindExceptionRecord__FPcP13ExceptionInfo", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "__SetupFrameInfo__FP12ThrowContextP13ExceptionInfo", "scope": "LIBRARY"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": "@716"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": "@716"}, "196": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "228": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "320": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "332": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "480": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "604": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "616": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "628": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "760": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "772": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "908": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "920": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1060": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1072": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1084": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi)PS2SDB", 8192}, + std::string_view{R"PS2SDB(", "scope": "LIBRARY"}, "1288": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1300": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1312": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "1324": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "1512": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1644": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1656": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1852": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "1864": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1884": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1972": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "1984": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "1996": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "2024": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}}}}, "adab55c5bea79284529cfb227de2d191103b3e8d": {"8ec4b7a0": {"type": "FUNCTION", "size": 2148, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.4.3", "2.5.2", "2.5.4", "2.6.0", "2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_26", "symbol": "__PopStackFrame__FP12ThrowContextP13ExceptionInfo", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "FindExceptionRecord__FPcP13ExceptionInfo", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "__SetupFrameInfo__FP12ThrowContextP13ExceptionInfo", "scope": "LIBRARY"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": "@748"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": "@748"}, "180": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "212": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "304": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "316": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "464": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "596": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "608": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "620": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "752": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "764": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "904": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "916": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1060": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1072": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1084": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1288": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1300": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1312": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "1324": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "1512": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1644": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1656": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1900": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "1912": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1932": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "2016": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "2028": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "2040": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "2072": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}}}}, "8ef51b3f1259020089dd4fa5ea56df39d2a07aae": {"e1dc5a20": {"type": "FUNCTION", "size": 2168, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.4.3", "2.5.4", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_26", "symbol": "__PopStackFrame__FP12ThrowContextP13ExceptionInfo", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "FindExceptionRecord__FPcP13ExceptionInfo", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "__SetupFrameInfo__FP12ThrowContextP13ExceptionInfo", "scope": "LIBRARY"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": "@752"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": "@752"}, "180": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "212": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "308": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "320": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "476": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "604": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "616": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "628": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "764": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "776": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "916": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "928": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1072": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1084": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1096": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1300": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1312": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1324": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "1336": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "1532": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1668": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1680": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1924": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "1936": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1956": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "2040": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "2052": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "2064": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "2092": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}}}}, "86bbd3b221368e521da6821e0d8bbb4dccc6a724": {)PS2SDB", 8192}, + std::string_view{R"PS2SDB("96fd0651": {"type": "FUNCTION", "size": 2148, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.4", "2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_26", "symbol": "__PopStackFrame__FP12ThrowContextP13ExceptionInfo", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "FindExceptionRecord__FPcP13ExceptionInfo", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "__SetupFrameInfo__FP12ThrowContextP13ExceptionInfo", "scope": "LIBRARY"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": "@748"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": "@748"}, "180": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "212": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "304": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "316": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "464": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "596": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "608": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "620": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "752": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "764": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "904": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "916": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1060": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1072": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1084": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1288": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1300": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1312": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "1324": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "1512": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1644": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1656": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1896": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "1908": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1932": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "2016": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "2028": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "2040": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "2072": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}}}}, "0a6c5dd0e8234e41d26ad425c75b463eff6641e9": {"ad2aee6e": {"type": "FUNCTION", "size": 2060, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "__PopStackFrame__FP12ThrowContextP13ExceptionInfo", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "FindExceptionRecord__FPcP13ExceptionInfo", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "__SetupFrameInfo__FP12ThrowContextP13ExceptionInfo", "scope": "LIBRARY"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": "@1248"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": "@1248"}, "188": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "312": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "324": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "472": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "596": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "608": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "620": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "752": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "764": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "896": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "908": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1040": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1052": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1064": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1256": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1268": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1280": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "1292": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "1480": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1608": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1620": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1812": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "1824": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1844": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1932": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "1944": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "1956": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1984": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}}}}, "e431f5853b94d2ce7f6ecc8fdf585e43fb68e3ed": {"e1dc5a20": {"type": "FUNCTION", "size": 2168, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.4.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_26", "symbol": "__PopStackFrame__FP12ThrowContextP13ExceptionInfo", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "FindExceptionRecord__FPcP13ExceptionInfo", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "__SetupFrameInfo__FP12ThrowContextP13ExceptionInfo", "scope": "LIBRARY"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": "@756"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": "@756"}, "180": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "212": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "308": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "320": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "476": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "604": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "616": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "628": {"type")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "764": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "776": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "916": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "928": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1072": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1084": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1096": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1300": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1312": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1324": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "1336": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "1532": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1668": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1680": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1924": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "1936": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1956": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "2040": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "2052": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "2064": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "2092": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}}}}, "f3a92800d2749e5a25da45d3e3b2db3342867cf6": {"0573861a": {"type": "FUNCTION", "size": 2144, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "__PopStackFrame__FP12ThrowContextP13ExceptionInfo", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "FindExceptionRecord__FPcP13ExceptionInfo", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "__SetupFrameInfo__FP12ThrowContextP13ExceptionInfo", "scope": "LIBRARY"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": "@756"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": "@756"}, "196": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "228": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "320": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "332": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "480": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "604": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "616": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "628": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "760": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "772": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "908": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "920": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1060": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1072": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1084": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1288": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1300": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1312": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "1324": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "1512": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1644": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1656": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1900": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "1912": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1932": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "2020": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "2032": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "2044": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "2072": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}}}}, "e1cea9f92ea349bf1bbcfffdbeeb9fec5b7e550e": {"46b850db": {"type": "FUNCTION", "size": 2064, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"64": {"type": "MIPS_26", "symbol": "__PopStackFrame__FP12ThrowContextP13ExceptionInfo", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "FindExceptionRecord__FPcP13ExceptionInfo", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "__SetupFrameInfo__FP12ThrowContextP13ExceptionInfo", "scope": "LIBRARY"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": "@737"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": "@737"}, "180": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "212": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "304": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "316": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "464": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "588": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "600": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "612": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "744": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "756": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "892": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "904": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1044": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1056": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1068": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1268": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1280": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1292": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "1304": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "1488": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1620": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1632": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1824": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumb)PS2SDB", 8192}, + std::string_view{R"PS2SDB(er__FPcPUi", "scope": "LIBRARY"}, "1836": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1856": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1936": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "1948": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "1960": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "1988": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}}}}}, "NextAction__FP14ActionIterator": {"994a1073cbe639f5cf98aaf7f10cf9d60f9bef2a": {"0b06ccc7": {"type": "FUNCTION", "size": 836, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "__PopStackFrame__FP12ThrowContextP13ExceptionInfo", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "FindExceptionRecord__FPcP13ExceptionInfo", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "__SetupFrameInfo__FP12ThrowContextP13ExceptionInfo", "scope": "LIBRARY"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": "@1676"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": "@1676"}, "196": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "232": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "260": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "284": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "296": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "308": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "332": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "344": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "372": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "384": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "412": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "424": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "436": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "460": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "472": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "484": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "496": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "524": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "548": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "560": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "632": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "644": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "668": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "692": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "704": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "716": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "744": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}, "764": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}}}}, "65801654d49be997ed1201d11efcb4ef7cee6a11": {"b02f272e": {"type": "FUNCTION", "size": 748, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.4.4", "2.0.2", "2.1.0", "2.4.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "__PopStackFrame__FP12ThrowContextP13ExceptionInfo", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "FindExceptionRecord__FPcP13ExceptionInfo", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "__SetupFrameInfo__FP12ThrowContextP13ExceptionInfo", "scope": "LIBRARY"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "@1014"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": "@1014"}, "176": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "200": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "212": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "236": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "260": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "272": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "284": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "308": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "320": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "344": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "356": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "380": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "392": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "404": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "428": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "440": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "452": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "464": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "488": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "512": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "524": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "548": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "560": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "580": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "600": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "612": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "624": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "652": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}, "676": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}}}}, "98f0c608d84f7843f0e5fe75c8d4cba8895616ef": {"d897c482": {"type": "FUNCTION", "size": 788, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "__PopStackFrame__FP12ThrowContextP13ExceptionInfo", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "FindExceptionRecord__FPcP13ExceptionInfo", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "__SetupFrameInfo__FP12ThrowContextP13ExceptionInfo", "scope": "LIBRARY"}, "144": {"type": "MIPS_HI16", "symbol": "<)PS2SDB", 8192}, + std::string_view{R"PS2SDB(data>", "original": "@1016"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": "@1016"}, "176": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "200": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "212": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "236": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "260": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "272": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "284": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "308": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "320": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "344": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "356": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "380": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "392": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "404": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "428": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "440": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "452": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "464": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "488": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "512": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "524": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "596": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "608": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "628": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "648": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "660": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "672": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "700": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}, "716": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}}}}, "6bbdf3ec37b1b77670d6314f78d8cb7817a64bd4": {"c5b6544b": {"type": "FUNCTION", "size": 748, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.0.7", "2.1.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "__PopStackFrame__FP12ThrowContextP13ExceptionInfo", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "FindExceptionRecord__FPcP13ExceptionInfo", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "__SetupFrameInfo__FP12ThrowContextP13ExceptionInfo", "scope": "LIBRARY"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": "@979"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": "@979"}, "184": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "208": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "244": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "268": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "280": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "292": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "316": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "328": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "352": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "364": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "388": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "400": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "412": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "436": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "448": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "460": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "472": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "496": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "520": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "532": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "556": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "568": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "588": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "608": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "620": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "632": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "660": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}, "680": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}}}}, "c6f31df3a2f949a4f7c703fbc7778a7537240925": {"0c5eca6a": {"type": "FUNCTION", "size": 748, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "__PopStackFrame__FP12ThrowContextP13ExceptionInfo", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "FindExceptionRecord__FPcP13ExceptionInfo", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "__SetupFrameInfo__FP12ThrowContextP13ExceptionInfo", "scope": "LIBRARY"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": "@979"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": "@979"}, "184": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "208": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "244": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "268": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "280": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "292": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "316": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "328": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "352": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "364": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "388": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "400": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "412": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "436": {"type": "MIPS_26", "symbol": "__DecodeS)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ignedNumber__FPcPi", "scope": "LIBRARY"}, "448": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "460": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "472": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "496": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "520": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "532": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "556": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "568": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "588": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "608": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "620": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "632": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "660": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}, "680": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}}}}, "f6cf993a7db474a7ba1320b983eb03ffeb9c3da8": {"b6730525": {"type": "FUNCTION", "size": 788, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.4.3", "2.5.2", "2.5.4", "2.6.0", "2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "__PopStackFrame__FP12ThrowContextP13ExceptionInfo", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "FindExceptionRecord__FPcP13ExceptionInfo", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "__SetupFrameInfo__FP12ThrowContextP13ExceptionInfo", "scope": "LIBRARY"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "@1008"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": "@1008"}, "176": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "200": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "212": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "236": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "260": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "272": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "284": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "308": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "320": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "344": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "356": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "380": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "392": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "404": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "428": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "440": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "452": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "464": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "488": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "512": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "524": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "596": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "608": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "628": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "648": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "660": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "672": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "700": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}, "720": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}}}}, "c3e1e6f02daa84ded9b2ab6e401dd88db7878fa7": {"d897c482": {"type": "FUNCTION", "size": 788, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.4.3", "2.5.4", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "__PopStackFrame__FP12ThrowContextP13ExceptionInfo", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "FindExceptionRecord__FPcP13ExceptionInfo", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "__SetupFrameInfo__FP12ThrowContextP13ExceptionInfo", "scope": "LIBRARY"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "@1012"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": "@1012"}, "176": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "200": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "212": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "236": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "260": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "272": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "284": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "308": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "320": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "344": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "356": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "380": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "392": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "404": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "428": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "440": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "452": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "464": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "488": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "512": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "524": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "596": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "608": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "628": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "648": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "660": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "672": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "700": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}, "716": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}}}}, "5d453829f8be49f25f32b4bbd7175fbd77149bbe": {"45b15880": {"type": "FUNCTI)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ON", "size": 788, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.4", "2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "__PopStackFrame__FP12ThrowContextP13ExceptionInfo", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "FindExceptionRecord__FPcP13ExceptionInfo", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "__SetupFrameInfo__FP12ThrowContextP13ExceptionInfo", "scope": "LIBRARY"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "@1008"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": "@1008"}, "176": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "200": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "212": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "236": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "260": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "272": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "284": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "308": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "320": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "344": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "356": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "380": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "392": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "404": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "428": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "440": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "452": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "464": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "488": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "512": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "524": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "592": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "604": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "624": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "644": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "656": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "668": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "696": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}, "716": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}}}}, "843d6e091083a135d531f798b5e4a19656cda00d": {"a3c91608": {"type": "FUNCTION", "size": 772, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "__PopStackFrame__FP12ThrowContextP13ExceptionInfo", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "FindExceptionRecord__FPcP13ExceptionInfo", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "__SetupFrameInfo__FP12ThrowContextP13ExceptionInfo", "scope": "LIBRARY"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": "@1648"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": "@1648"}, "192": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "216": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "228": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "252": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "276": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "288": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "300": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "324": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "336": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "360": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "372": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "396": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "408": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "420": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "444": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "456": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "468": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "480": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "504": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "528": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "540": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "564": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "576": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "596": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "616": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "628": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "640": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "668": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}, "708": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}}}}, "f09a3893b7ddefdc6d0ac319c6b629ebff9203ed": {"088a2856": {"type": "FUNCTION", "size": 796, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "__PopStackFrame__FP12ThrowContextP13ExceptionInfo", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "FindExceptionRecord__FPcP13ExceptionInfo", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "__SetupFrameInfo__FP12ThrowContextP13ExceptionInfo", "scope": "LIBRARY"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": "@1016"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": "@1016"}, "184": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "208": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "244": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "268": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "280": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "292": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "316": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "sco)PS2SDB", 8192}, + std::string_view{R"PS2SDB(pe": "LIBRARY"}, "328": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "352": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "364": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "388": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "400": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "412": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "436": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "448": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "460": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "472": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "496": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "520": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "532": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "604": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "616": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "636": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "656": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "668": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "680": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "708": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}, "728": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}}}}, "71fed676997e1ba5eece6618c0c15465e4176dea": {"c0002abe": {"type": "FUNCTION", "size": 736, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "__PopStackFrame__FP12ThrowContextP13ExceptionInfo", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "FindExceptionRecord__FPcP13ExceptionInfo", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "__SetupFrameInfo__FP12ThrowContextP13ExceptionInfo", "scope": "LIBRARY"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": "@1012"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": "@1012"}, "168": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "192": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "204": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "228": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "252": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "264": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "276": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "300": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "312": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "336": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "348": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "372": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "384": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "396": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "420": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "432": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "444": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "456": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "480": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "504": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "516": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "540": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "552": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "572": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "592": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "604": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "616": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}, "644": {"type": "MIPS_26", "symbol": "terminate__3stdFv", "scope": "LIBRARY"}, "668": {"type": "MIPS_26", "symbol": "__DecodeSignedNumber__FPcPi", "scope": "LIBRARY"}}}}}, "FindExceptionRecord__FPcP13ExceptionInfo": {"bf0e2fa404ba0d7625b884b72f7954baf261f7df": {"7f87af29": {"type": "FUNCTION", "size": 448, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "__FindExceptionTable__FP13ExceptionInfoPc", "scope": "LIBRARY"}, "312": {"type": "MIPS_26", "symbol": "__SkipUnwindInfo__FPc", "scope": "LIBRARY"}, "328": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "348": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "360": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}}}}, "0feb2565f32f869d962f7ef4d097e2ef7b6ff93c": {"d41a412e": {"type": "FUNCTION", "size": 420, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.4.4", "1.6.5", "2.0.2", "2.1.0", "2.4.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "__FindExceptionTable__FP13ExceptionInfoPc", "scope": "LIBRARY"}, "284": {"type": "MIPS_26", "symbol": "__SkipUnwindInfo__FPc", "scope": "LIBRARY"}, "300": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "320": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "332": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}}}}, "466f0c7b2eddff4242a690063bbf6622ec7807fb": {"3778afd1": {"type": "FUNCTION", "size": 440, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.3.2", "2.3.4", "2.4.0", "2.4.2", "2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "__FindExceptionTable__FP13ExceptionInfoPc", "scope": "LIBRARY"}, "304": {"type": "MIPS_26", "symbol": "__SkipUnwindInfo__FPc", "scope": "LIBRARY"}, "320": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "340": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "352": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}}}}, "d6c4f8920a14f75254e1e6ecdc8832ec6f951ee8": {"d41a412e": {"type": "FUNCTION", "size": 420, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.0.7", "2.1.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "__FindExceptionTable__FP13ExceptionInfoPc", "scope": "LIBRARY"}, "284": {"type": "MIPS_26", "symbol": "__SkipUnwindInfo__FPc", "scope": "LIBRARY"}, "300": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "320": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "LIBRARY"}, "332": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}}}}, "2f8457358ace7f8535b5fb365412e5268630db09": {"630aa0ca": {"type": "FUNCTION", "size": 444, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.4.3", "2.5.0", "2.5.2", "2.5.4", "2.6.0", "2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "__FindExceptionTable__FP13ExceptionInfoPc", "scope": "LIBRARY"}, "308": {"type": "MIPS_26", "symbol": "__SkipUnwindInfo__FPc", "scope": "LIBRARY"}, "324": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "344": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "356": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}}}}, "2982f4fa8b3266e83b72fa8e59edf41cf058b058": {"3778afd1": {"type": "FUNCTION", "size": 440, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.4.3", "2.5.4", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "__FindExceptionTable__FP13ExceptionInfoPc", "scope": "LIBRARY"}, "304": {"type": "MIPS_26", "symbol": "__SkipUnwindInfo__FPc", "scope": "LIBRARY"}, "320": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "340": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "352": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}}}}, "1f26220201357ad6828cb73e42ee8082483b460b": {"c1c2dc8c": {"type": "FUNCTION", "size": 436, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "__FindExceptionTable__FP13ExceptionInfoPc", "scope": "LIBRARY"}, "300": {"type": "MIPS_26", "symbol": "__SkipUnwindInfo__FPc", "scope": "LIBRARY"}, "316": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "336": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "348": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}}}}, "b60bf1134e3f94e88e77005154f0ae2dca6a8839": {"3778afd1": {"type": "FUNCTION", "size": 440, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.4.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "__FindExceptionTable__FP13ExceptionInfoPc", "scope": "LIBRARY"}, "304": {"type": "MIPS_26", "symbol": "__SkipUnwindInfo__FPc", "scope": "LIBRARY"}, "320": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "340": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "352": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}}}}, "24b1cdc9ac6b7eacecf0540f1a0132412e7d2a5c": {"d41a412e": {"type": "FUNCTION", "size": 420, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "__FindExceptionTable__FP13ExceptionInfoPc", "scope": "LIBRARY"}, "284": {"type": "MIPS_26", "symbol": "__SkipUnwindInfo__FPc", "scope": "LIBRARY"}, "300": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "320": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "332": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}}}}, "5633ee6dab49a7e7b20d356757e0469376f68bf3": {"4dba1c9c": {"type": "FUNCTION", "size": 416, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "__FindExceptionTable__FP13ExceptionInfoPc", "scope": "LIBRARY"}, "280": {"type": "MIPS_26", "symbol": "__SkipUnwindInfo__FPc", "scope": "LIBRARY"}, "296": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "316": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "328": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}}}}}, "what__Q23std13bad_exceptionCFv": {"2a51c093207f3b6546ea5ac91d4ae4a6999eaed5": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "mslgcc_ps2", "scope": "EE_GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.5.0", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.4", "2.2.2", "2.3.0", "2.3.2", "2.3.4", "2.4.0", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "@STRING@what__Q23std13bad_exceptionCFv"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "@STRING@what__Q23std13bad_exceptionCFv"}}}}}, "__TransferControl__FP12ThrowContextP13ExceptionInfoPc": {"7e4c2a6fbaf6270b15faa87f41eb726388dced68": {"00000000": {"type": "FUNCTION", "size": 100, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.4", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "359d79bd88f1af3f63a11ecea36cdcf6ec6a0f56": {"00000000": {"type": "FUNCTION", "size": 100, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "__throw": {"79f0a3dc59e959b9c0311a2eda6a621718e3efa5": {"1911221a": {"type": "FUNCTION", "size": 124, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.6.5", "2.0.2", "2.0.7", "2.1.0", "2.1.4", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3", "2.5.0", "2.5.2", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"116": {"type": "MIPS_26", "symbol": "__ThrowHandler__FP12ThrowContext", "scope": "LIBRARY"}}}}, "e892e57b78c8d3f8b0500a1e64701411069a0e7f": {"1911221a": {"type": "FUNCTION", "size": 124, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"116": {"type": "MIPS_26", "symbol": "__ThrowHandler__FP12ThrowContext", "scope": "LIBRARY"}}}}}, "__SkipUnwindInfo__FPc": {"628eaec6c204a6348852f6b662f8902064508a80": {"8b35d4e8": {"type": "FUNCTION", "size": 80, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "36": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}}}}, "607a60765c325e98055a96cb7c17cd4c220e2ffb": {"8b35d4e8": {"type": "FUNCTION", "size": 76, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "2.0.2", "2.1.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "36": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}}}}, "ac5e1e8d02090ef8e0a6843bc971451123cbf41c": {"c3c53d51": {"type": "FUNCTION", "size": 80, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, )PS2SDB", 8192}, + std::string_view{R"PS2SDB("versions": [], "sdk": ["1.6.5", "2.0.7", "2.1.4", "2.4.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "36": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}}}}, "32c4c066e854bd50cc10a839d89aa1f98de008f2": {"c3c53d51": {"type": "FUNCTION", "size": 80, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "36": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}}}}, "90b504c9369ea63382136d0d7b26d91e3ddb4600": {"8b35d4e8": {"type": "FUNCTION", "size": 76, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.3", "2.5.0", "2.5.2", "2.5.4", "2.6.0", "2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "36": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}}}}, "8a54ad66ecac6c7a8eef97475b254338c0a718a3": {"8b35d4e8": {"type": "FUNCTION", "size": 76, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.3", "2.5.4", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "36": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}}}}, "fb615590f03102554ea1d0e3e151e3300e164628": {"c3c53d51": {"type": "FUNCTION", "size": 80, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "36": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}}}}}, "__FindExceptionTable__FP13ExceptionInfoPc": {"56c31c49263c25c36c52034bb97c8ff683cfc296": {"53b7e415": {"type": "FUNCTION", "size": 32, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.5", "2.7.0", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "__exception_table_start__"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": "__exception_table_start__"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": "__exception_table_end__"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "__exception_table_end__"}}}}, "e8d13c8d79949b162be19f3b23addb2b286d2c57": {"00000000": {"type": "FUNCTION", "size": 32, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.1.0"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}, "d55f06a50b7b1c88de1c0036a83af3968a7fc2fc": {"00000000": {"type": "FUNCTION", "size": 32, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "2780419cc6e8f74b53bdc1359bee851b43fe6d32": {"00000000": {"type": "FUNCTION", "size": 32, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.7"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}, "f6460af3f29063e29caacbd615c9a3706ae20e0f": {"00000000": {"type": "FUNCTION", "size": 32, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}, "e75f86f922630c5657a7023c260644e353cff7fe": {"00000000": {"type": "FUNCTION", "size": 32, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "207875bc23cba3409f8a31055942cf16b2913805": {"00000000": {"type": "FUNCTION", "size": 32, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "01e99861ec94bf254597e3186cdaf1903bcc1fca": {"00000000": {"type": "FUNCTION", "size": 32, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "b2c842ea14244e87659bd7e28638ffdbb09d03e1": {"00000000": {"type": "FUNCTION", "size": 32, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}, "900819a66ed0017d141a5cee992fee720529fcd9": {"00000000": {"type": "FUNCTION", "size": 32, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "1abd39e463d367de57d40b4e486fc0fc6379a1af": {"00000000": {"type": "FUNCTION", "size": 32, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "e4dce82766d83947aff18bd6662fceb27ebf740a": {"00000000": {"type": "FUNCTION", "size": 32, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "ee7d32d4d14b772a5bc7750f7001d7c4743d3bcd": {"00000000": {"type": "FUNCTION", "size": 32, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "893a7d3d0934b8659bbc1f4de3a1ad7c554909eb": {"00000000": {"type": "FUNCTION", "size": 32, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "7a3d25df72d142fc44ef4f91936571f1ed4c8f84": {"00000000": {"type": "FUNCTION", "size": 32, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "c1349a9744444d516240237138990d3954de626f": {"00000000": {"type": "FUNCTION", "size": 32, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "a165645c68744f7b2ed0b10040c218e12c9655d1": {"00000000": {"type": "FUNCTION", "size": 32, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.1.4"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}, "4b312946741b40e50bd812d225a7def03b14db7e": {"00000000": {"type": "FUNCTION", "size": 32, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "95071c30c761e223f788d596a52a031d6e79b320": {"00000000": {"type": "FUNCTION", "size": 32, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.1.4"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}, "3e6a19e2b30d092f048da937925ded9b63b77c75": {"00000000": {"type": "FUNCTION", "size": 32, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "b3875d7b7c53d40a83c7029d54a0d53a46a03140": {"00000000": {"type": "FUNCTION", "size": 32, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocation)PS2SDB", 8192}, + std::string_view{R"PS2SDB(s": {}}}, "fb489a802932416034bece6da66739dc88c6e292": {"00000000": {"type": "FUNCTION", "size": 32, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.6.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "021cfce8250571061e25d5fc4f68a2af842c2d18": {"00000000": {"type": "FUNCTION", "size": 32, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "8dbe5d59ffbc0e565bccee426a5403b21f743d0d": {"00000000": {"type": "FUNCTION", "size": 32, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "843867f2800592829218607e22f4922adfb1f6fa": {"00000000": {"type": "FUNCTION", "size": 32, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "a813dc906520be7d2e45d3feca7e77ae0961ae1b": {"00000000": {"type": "FUNCTION", "size": 32, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.4"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "58d790f466e5d564c7f95e3c3ca97f99cea734b2": {"00000000": {"type": "FUNCTION", "size": 32, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "9fbe52a9d2571a32a42794f2bcfcd84066958316": {"00000000": {"type": "FUNCTION", "size": 32, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "0945eab22ac80d7c10a3ea1b10fb4d9c8729b55d": {"00000000": {"type": "FUNCTION", "size": 32, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.3.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "a8d13354901b6d656abe2f20fed7408ef36f7ff4": {"00000000": {"type": "FUNCTION", "size": 32, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "f94576b0bc1ae5f0fded1f8ea2733567c0e5f837": {"00000000": {"type": "FUNCTION", "size": 32, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "b82f949f9446915d2baba5873e7536dc47e09a49": {"00000000": {"type": "FUNCTION", "size": 32, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "bb0bd6ef42fe561d41c15d87813815edc750cf67": {"00000000": {"type": "FUNCTION", "size": 32, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "a06d65173ee9a8c9e6ef1b8cb550ca1e3e60060f": {"00000000": {"type": "FUNCTION", "size": 32, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "359e82559db26b25360e327929032dcdf583b455": {"00000000": {"type": "FUNCTION", "size": 32, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "9ece84a61ed1ade5a3bbf5a869fa79f16c685ee7": {"00000000": {"type": "FUNCTION", "size": 32, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "ef4b3635e7c603d825c561b0c5cb134f4691f829": {"00000000": {"type": "FUNCTION", "size": 32, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.4"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}, "43979538115f99dbc89e851aeafac1b80a648d42": {"00000000": {"type": "FUNCTION", "size": 32, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}, "7dd5d7ef3a6efd38c97840332e99ecbba3948afe": {"00000000": {"type": "FUNCTION", "size": 32, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "2479755d71ad40a4f4a4d4e3ea81ce81b2b89584": {"00000000": {"type": "FUNCTION", "size": 32, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "a665ba9619b2e906766a71c6efbefc17a36944e8": {"00000000": {"type": "FUNCTION", "size": 32, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}, "9eecf558663e52e562b4fe2e2d609122e26ab911": {"00000000": {"type": "FUNCTION", "size": 32, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}, "0d38df1dedd3d1ab2a6769ace547b2fa826ae836": {"00000000": {"type": "FUNCTION", "size": 32, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}, "4be28ac7902efe50be433dd5f66600e01ab990db": {"00000000": {"type": "FUNCTION", "size": 32, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}, "b5af021eb118ae0d5180de0da3dc0d14a4d8e915": {"00000000": {"type": "FUNCTION", "size": 32, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "d8d890f2423d60f69d810907873c3846aaf7ffa2": {"00000000": {"type": "FUNCTION", "size": 32, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "b01ef812036615fe0b18acec7aeeacf39ebcaba5": {"00000000": {"type": "FUNCTION", "size": 32, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "bfe73dbfa99863908fab5cfa0fcdf6486dbf047d": {"00000000": {"type": "FUNCTION", "size": 32, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "__SetupFrameInfo__FP12ThrowContextP13ExceptionInfo": {"811f6e4b0716815ee42fb9e692695c5a09ebbded": {"41776628": {"type": "FUNCTION", "size": 180, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "136": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}}}}, "a889aaea04d28959ba144339eaabcc172fe5b9b9": {"41776628": {"type": "FUNCTION", "size": 176, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "2.0.2", "2.1.0", "2.3.2", "2.3.4", "2.4.0", "2.4.1", "2.4.2", "2.4.3"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "136": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}}}}, "131db3742f1c1106b8fa88ae4522203fd676829d": {"41776628": {"type": "FUNCTION", "size": 176, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.0.7", "2.1.4", "2.4.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "rel)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ocations": {"68": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "136": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}}}}, "55bdfa077972ff0d89fd72d531a88d8b4a60a0a3": {"41776628": {"type": "FUNCTION", "size": 176, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "136": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}}}}, "649dc15f918fe9a70e37cddda8d6fb24ee8ca355": {"41776628": {"type": "FUNCTION", "size": 176, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.3", "2.5.0", "2.5.2", "2.5.4", "2.6.0", "2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "136": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}}}}, "4123b8d5c32f3044be6faa604db6770ecdf51795": {"41776628": {"type": "FUNCTION", "size": 176, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.3", "2.5.4", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "136": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}}}}, "77d2e0e316ff554b0a3fc5dfef3f720f64a385a5": {"41776628": {"type": "FUNCTION", "size": 164, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}, "136": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi", "scope": "LIBRARY"}}}}}, "__PopStackFrame__FP12ThrowContextP13ExceptionInfo": {"6e5cca2b841c9380dcb36f458a67ff01d57ad2e6": {"00000000": {"type": "FUNCTION", "size": 696, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.5", "2.7.0", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "e613d70dc37aa38dafaf2cb7d396e13a1be3a679": {"00000000": {"type": "FUNCTION", "size": 680, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "85bbef6da6150f8f4cf6a9073a72af614009ab76": {"00000000": {"type": "FUNCTION", "size": 360, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.4", "2.0.2", "2.1.0", "2.4.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "438754a9f7181cc6e886f0ca79b8f1ef6e401d01": {"00000000": {"type": "FUNCTION", "size": 360, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.0.2", "2.3.2", "2.3.4", "2.4.0", "2.4.2", "2.4.3"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "98a6087039ceb0f8f3fa7151f075eadd2289df7d": {"00000000": {"type": "FUNCTION", "size": 360, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.6.5", "2.0.7", "2.1.4", "2.4.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "825a4778092d6e8c26c67665e63f11446a2cb60f": {"00000000": {"type": "FUNCTION", "size": 656, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.3", "2.5.0", "2.5.2", "2.5.4", "2.6.0", "2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "5f6694a7d3c1b79f089d35be62d9fb911693e14f": {"00000000": {"type": "FUNCTION", "size": 624, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.3", "2.5.4", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "3d9d1e4f4464706e53271f95b799f05df96cb6fb": {"00000000": {"type": "FUNCTION", "size": 728, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.5", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "41f700b62a8d968a5858b160555feac3d5108cd6": {"00000000": {"type": "FUNCTION", "size": 376, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "be33baf16a383d46417f6fde0e6306a9b21c1e4f": {"00000000": {"type": "FUNCTION", "size": 608, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "e898662525ed372d3cdfc6eb16127076cf98955a": {"00000000": {"type": "FUNCTION", "size": 356, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}}, "__dt__26__partial_array_destructorFv": {"234ff2aebe1ae42a0a89f81aede6328d50c4cf42": {"dda324cd": {"type": "FUNCTION", "size": 188, "library": "mslgcc_ps2", "scope": "EE_GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.5", "2.7.1", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"152": {"type": "MIPS_26", "symbol": "__dl__FPv", "scope": "LIBRARY"}}}}, "30b64cc7f87b3ef4289b99d644936b6d32ccafd1": {"dda324cd": {"type": "FUNCTION", "size": 188, "library": "mslgcc_ps2", "scope": "EE_GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2", "2.3.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"152": {"type": "MIPS_26", "symbol": "__dl__FPv", "scope": "LIBRARY"}}}}, "054f8cc9c0f21ac01d1cc3cc6a6b78af10110bc0": {"dda324cd": {"type": "FUNCTION", "size": 188, "library": "mslgcc_ps2", "scope": "EE_GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"152": {"type": "MIPS_26", "symbol": "__dl__FPv", "scope": "LIBRARY"}}}}, "3334aca8fbc9fbafe0537740817f0c9d56885c83": {"d8d19337": {"type": "FUNCTION", "size": 240, "library": "mslgcc_ps2", "scope": "EE_GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"208": {"type": "MIPS_26", "symbol": "__dl__FPv", "scope": "LIBRARY"}}}}, "3b228cdfecab729a8d0505b62e391f4abc318c89": {"122ae84a": {"type": "FUNCTION", "size": 180, "library": "mslgcc_ps2", "scope": "EE_GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"144": {"type": "MIPS_26", "symbol": "__dl__FPv", "scope": "LIBRARY"}}}}}, "__dynamic_cast": {"0c559f8732588fcf61306d98ce88bf2bd495f606": {"7118c76f": {"type": "FUNCTION", "size": 572, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.5", "2.7.0", "2.8.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"508": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std8bad_cast"}, "512": {"type": "MIPS_HI16", "symbol": "", "original": "@445"}, "516": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std8bad_cast"}, "520": {"type": "MIPS_HI16", "symbol": "__dt__Q23std8bad_castFv"}, "524": {"type": "MIPS_LO16", "symbol": "", "original": "@445"}, "536": {"type": "MIPS_26", "symbol": "__throw"}, "540": {"type": "MIPS_LO16", "symbol": "__dt__Q23std8bad_castFv"}}}}, "8e250189a3bf5c5bb5a7219ac96f27033c485e73": {"55967e88": {"type": "FUNCTION", "size": 572, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4"],)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "compiler_versions": ["2.4.1.01"], "relocations": {"512": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std8bad_cast"}, "516": {"type": "MIPS_HI16", "symbol": "", "original": "@166"}, "520": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std8bad_cast"}, "524": {"type": "MIPS_HI16", "symbol": "__dt__Q23std8bad_castFv"}, "528": {"type": "MIPS_LO16", "symbol": "", "original": "@166"}, "540": {"type": "MIPS_26", "symbol": "__throw"}, "544": {"type": "MIPS_LO16", "symbol": "__dt__Q23std8bad_castFv"}}}}, "40c5905c1be5134e159a8cac14a87e9b219c5e97": {"55967e88": {"type": "FUNCTION", "size": 572, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"512": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std8bad_cast"}, "516": {"type": "MIPS_HI16", "symbol": "", "original": "@445"}, "520": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std8bad_cast"}, "524": {"type": "MIPS_HI16", "symbol": "__dt__Q23std8bad_castFv"}, "528": {"type": "MIPS_LO16", "symbol": "", "original": "@445"}, "540": {"type": "MIPS_26", "symbol": "__throw"}, "544": {"type": "MIPS_LO16", "symbol": "__dt__Q23std8bad_castFv"}}}}, "1df794fb7a0dcec143103b7299dbaa91d80238d2": {"dd0865ee": {"type": "FUNCTION", "size": 572, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"512": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std8bad_cast"}, "516": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std8bad_cast"}, "524": {"type": "MIPS_HI16", "symbol": "", "original": "@170"}, "528": {"type": "MIPS_LO16", "symbol": "", "original": "@170"}, "532": {"type": "MIPS_HI16", "symbol": "__dt__Q23std8bad_castFv"}, "540": {"type": "MIPS_26", "symbol": "__throw"}, "544": {"type": "MIPS_LO16", "symbol": "__dt__Q23std8bad_castFv"}}}}}, "__dt__Q23std8bad_castFv": {"c7b225fab89e266e0bb9aaaf5d5f30540582f778": {"828d0547": {"type": "FUNCTION", "size": 92, "library": "mslgcc_ps2", "scope": "EE_GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.5", "2.7.0", "2.8.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std8bad_cast"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std8bad_cast"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std9exception"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std9exception"}, "64": {"type": "MIPS_26", "symbol": "__dl__FPv", "scope": "LIBRARY"}}}}, "6787ac379a45bfddc362834a7fa2de10c7ac8b7e": {"7e9347d3": {"type": "FUNCTION", "size": 96, "library": "mslgcc_ps2", "scope": "EE_GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std8bad_cast"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std8bad_cast"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std9exception"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std9exception"}, "68": {"type": "MIPS_26", "symbol": "__dl__FPv", "scope": "LIBRARY"}}}}, "40aabba9c8c96bd86af467a6ea4f72a0496a89d4": {"7e9347d3": {"type": "FUNCTION", "size": 96, "library": "mslgcc_ps2", "scope": "EE_GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std8bad_cast"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std8bad_cast"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std9exception"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std9exception"}, "68": {"type": "MIPS_26", "symbol": "__dl__FPv", "scope": "LIBRARY"}}}}, "0a652c21200e91e6492bd54f54ed07f3be5e0f4b": {"7e9347d3": {"type": "FUNCTION", "size": 96, "library": "mslgcc_ps2", "scope": "EE_GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std8bad_cast"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std8bad_cast"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std9exception"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std9exception"}, "68": {"type": "MIPS_26", "symbol": "__dl__FPv", "scope": "LIBRARY"}}}}}, "__get_typeid": {"e54187ce7a4de509cafa8ce75624c680b201b107": {"57704d27": {"type": "FUNCTION", "size": 148, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std10bad_typeid"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": "@463"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std10bad_typeid"}, "48": {"type": "MIPS_HI16", "symbol": "__dt__Q23std10bad_typeidFv"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": "@463"}, "64": {"type": "MIPS_26", "symbol": "__throw"}, "68": {"type": "MIPS_LO16", "symbol": "__dt__Q23std10bad_typeidFv"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": "unknown_type"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": "unknown_type"}}}}, "ad806e65e81e87ecef0d08f8c948d7dce9c3587a": {"3e76d378": {"type": "FUNCTION", "size": 136, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std10bad_typeid"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": "@182"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std10bad_typeid"}, "48": {"type": "MIPS_HI16", "symbol": "__dt__Q23std10bad_typeidFv"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": "@182"}, "64": {"type": "MIPS_26", "symbol": "__throw"}, "68": {"type": "MIPS_LO16", "symbol": "__dt__Q23std10bad_typeidFv"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": "unknown_type"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": "unknown_type"}}}}, "7eafd95c564e9aad809c90e06767dd79096c5848": {"4f40159c": {"type": "FUNCTION", "size": 136, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std10bad_typeid"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std10bad_typeid"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": "@186"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": "@186"}, "56": {"type": "MIPS_HI16", "symbol": "__dt__Q23std10bad_typeidFv"}, "64": {"type": "MIPS_26", "symbol": "__throw"}, "68": {"type": "MIPS_LO16", "symbol": "__dt__Q23std10bad_typeidFv"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": "unknown_type"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": "unknown_type"}}}}, "c33489b22f77d23956c269e8aed8b78e33dac6cd": {"4c462ee3": {"type": "FUNCTION", "size": 144, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std10bad_typeid"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std10bad_typeid"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": "@192"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": "@192"}, "56": {"type": "MIPS_HI16", "symbol": "__dt__Q23std10bad_typeidFv"}, "64": {"type": "MIPS_26", "symbol": "__throw"}, "68": {"type": "MIPS_LO16", "symbol":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "__dt__Q23std10bad_typeidFv"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": "unknown_type"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": "unknown_type"}}}}}, "__dt__Q23std10bad_typeidFv": {"c7b225fab89e266e0bb9aaaf5d5f30540582f778": {"828d0547": {"type": "FUNCTION", "size": 92, "library": "mslgcc_ps2", "scope": "EE_GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std10bad_typeid"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std10bad_typeid"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std9exception"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std9exception"}, "64": {"type": "MIPS_26", "symbol": "__dl__FPv", "scope": "LIBRARY"}}}}, "6787ac379a45bfddc362834a7fa2de10c7ac8b7e": {"7e9347d3": {"type": "FUNCTION", "size": 96, "library": "mslgcc_ps2", "scope": "EE_GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std10bad_typeid"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std10bad_typeid"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std9exception"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std9exception"}, "68": {"type": "MIPS_26", "symbol": "__dl__FPv", "scope": "LIBRARY"}}}}, "0a652c21200e91e6492bd54f54ed07f3be5e0f4b": {"7e9347d3": {"type": "FUNCTION", "size": 96, "library": "mslgcc_ps2", "scope": "EE_GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std10bad_typeid"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std10bad_typeid"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std9exception"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std9exception"}, "68": {"type": "MIPS_26", "symbol": "__dl__FPv", "scope": "LIBRARY"}}}}, "4cf24ed6d870a05f7731f0f2eca98d8f990698c7": {"7e9347d3": {"type": "FUNCTION", "size": 96, "library": "mslgcc_ps2", "scope": "EE_GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std10bad_typeid"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std10bad_typeid"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": "__vt__Q23std9exception"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "__vt__Q23std9exception"}, "68": {"type": "MIPS_26", "symbol": "__dl__FPv", "scope": "LIBRARY"}}}}}, "what__Q23std10bad_typeidCFv": {"2a51c093207f3b6546ea5ac91d4ae4a6999eaed5": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "mslgcc_ps2", "scope": "EE_GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.4.2", "2.5.4", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "@STRING@what__Q23std10bad_typeidCFv"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "@STRING@what__Q23std10bad_typeidCFv"}}}}}, "what__Q23std8bad_castCFv": {"2a51c093207f3b6546ea5ac91d4ae4a6999eaed5": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "mslgcc_ps2", "scope": "EE_GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.1", "2.5.4", "2.5.5", "2.7.0", "2.8.0", "3.0.1", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "@STRING@what__Q23std8bad_castCFv"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "@STRING@what__Q23std8bad_castCFv"}}}}}, "mwOverlayInit": {"b4d287070061542893f6a2efc729076de68aa821": {"c4232ce4": {"type": "FUNCTION", "size": 140, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.1", "1.6.5", "2.3.2", "2.5.5"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "FlushCache"}, "76": {"type": "MIPS_26", "symbol": "memset"}, "100": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "5c147e9dc2e20ad72a06d5766b8f44698f0c9e45": {"2fee2001": {"type": "FUNCTION", "size": 124, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.1", "2.4.3", "2.5.0", "2.5.5", "2.6.0", "2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "FlushCache"}, "68": {"type": "MIPS_26", "symbol": "memset"}, "88": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "2e59140dcad7086ab2c3e33146a94c0160c8d3df": {"2fee2001": {"type": "FUNCTION", "size": 124, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.0.2", "2.1.3", "2.1.4", "2.2.4", "2.3.0", "2.3.4", "2.4.3", "2.6.0"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "FlushCache"}, "68": {"type": "MIPS_26", "symbol": "memset"}, "88": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "066961830fb9ec0db1c76ca406682c1ffd91ec6f": {"e2fd6336": {"type": "FUNCTION", "size": 140, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.1", "2.0.2", "2.0.7"], "compiler_versions": ["2.3.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "FlushCache"}, "80": {"type": "MIPS_26", "symbol": "memset"}, "104": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "a918fea54dc8cea6f4c6b36bd9123dba4a2029b6": {"2fee2001": {"type": "FUNCTION", "size": 124, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.2", "2.5.4", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "FlushCache"}, "68": {"type": "MIPS_26", "symbol": "memset"}, "88": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "6f30da9679f4789159c0085682f9ff398fdbdd1e": {"e2fd6336": {"type": "FUNCTION", "size": 140, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.1.4", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "FlushCache"}, "80": {"type": "MIPS_26", "symbol": "memset"}, "104": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "148949dd472c77bd57bdbc6341da418cf977d9c3": {"057ab6df": {"type": "FUNCTION", "size": 128, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.4", "2.5.5", "2.7.1", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "FlushCache"}, "68": {"type": "MIPS_26", "symbol": "memset"}, "92": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "96e601823afcc424deee25b53bb1d3dbaf4a2633": {"3a798e42": {"type": "FUNCTION", "size": 116, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "FlushCache"}, "40": {"type": "MIPS_26", "symbol": "FlushCache"}, "64": {"type": "MIPS_26", "symbol": "memset"}, "84": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "8439a07f48f0c317e6669c8f85fbb2451378fcd0": {"c4232ce4": {"type": "FUNCTION", "size": 140, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "FlushCache"}, "76": {"type": "MIPS_26", "symbol": "memset"}, "100": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "bd90ce329ce03f41745132cc8272396b0e42cb44": {"3bd112fe": {"type": "FUNCTION", "size": 36, "library": "mslgcc_ps2", "scop)PS2SDB", 8192}, + std::string_view{R"PS2SDB(e": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "FlushCache"}}}}, "f642738f463744aa14df16f1d2fead219ab5b371": {"366fe248": {"type": "FUNCTION", "size": 104, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "FlushCache"}, "52": {"type": "MIPS_26", "symbol": "memset"}, "72": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "024e7d10fca719541e3087ff733922096b70e328": {"42c2cbc0": {"type": "FUNCTION", "size": 112, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "FlushCache"}, "40": {"type": "MIPS_26", "symbol": "FlushCache"}, "60": {"type": "MIPS_26", "symbol": "memset"}, "80": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "0408add2eb0bfc768104b98febedb253ace5ac1b": {"e2fd6336": {"type": "FUNCTION", "size": 140, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.1", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "FlushCache"}, "80": {"type": "MIPS_26", "symbol": "memset"}, "104": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "3f1ac81dba37f9d5bce0bcfd9128b66ddef13974": {"e2fd6336": {"type": "FUNCTION", "size": 140, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "FlushCache"}, "80": {"type": "MIPS_26", "symbol": "memset"}, "104": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}}, "__copy": {"b06ee60d71eeaec31a2e6903a8e4e876243abc2c": {"00000000": {"type": "FUNCTION", "size": 60, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.0", "2.3.2", "2.3.4", "2.4.2", "2.4.3", "2.5.5", "2.6.0", "2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "df4a27d5368ff7ba5c5cd5fb1ac7bc5418e1e204": {"00000000": {"type": "FUNCTION", "size": 60, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.1.3", "2.2.4", "2.3.4", "2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "__ptmf_cmpr": {"3162a5646393b07c48d29a14dc8d03cfc7c24368": {"00000000": {"type": "FUNCTION", "size": 76, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.5", "2.2.4", "2.3.2", "2.4.1", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "99a49eaecccd7c2d1e5f5d175df8c0c3d81f327c": {"00000000": {"type": "FUNCTION", "size": 76, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "__ptmf_test": {"420d309727bfc1b9f6f9dfb24c46e711f53dbc6d": {"00000000": {"type": "FUNCTION", "size": 28, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.1", "2.1.4", "2.2.4", "2.3.0", "2.3.2", "2.3.4", "2.4.1", "2.4.2", "2.5.2", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "be5804f5ade99f3920bb7185e9da7d942052ff2f": {"00000000": {"type": "FUNCTION", "size": 28, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "d3e1c512dfa739c9aa6be480f31539a9364c4695": {"00000000": {"type": "FUNCTION", "size": 96, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "__do_global_dtors": {"a639a8a356321edbeccee089cae462e9fca431ea": {"15781ce2": {"type": "FUNCTION", "size": 8, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.7", "2.4.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_26", "symbol": "mwExit", "scope": "LIBRARY"}}}}, "b4cc0155d72a4c374ab63f5efb12464ff183c80f": {"41090a66": {"type": "FUNCTION", "size": 32, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "mwInit", "scope": "LIBRARY"}}}, "13746a1c": {"type": "FUNCTION", "size": 32, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.4.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "mwExit", "scope": "LIBRARY"}}}}}, "mwBload": {"a34d38c54377a4e6799766447a8323db2595cb16": {"c215a81e": {"type": "FUNCTION", "size": 196, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "sceOpen"}, "80": {"type": "MIPS_26", "symbol": "sceLseek"}, "104": {"type": "MIPS_26", "symbol": "sceLseek"}, "132": {"type": "MIPS_26", "symbol": "sceRead"}, "156": {"type": "MIPS_26", "symbol": "sceClose"}}}}, "2ec844c3d6fb7e762d12422010d222fbc9b14011": {"3d787c7d": {"type": "FUNCTION", "size": 180, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.5.1", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "sceOpen"}, "64": {"type": "MIPS_26", "symbol": "sceLseek"}, "88": {"type": "MIPS_26", "symbol": "sceLseek"}, "116": {"type": "MIPS_26", "symbol": "sceRead"}, "140": {"type": "MIPS_26", "symbol": "sceClose"}}}}, "cc3efc57fc375586dfe22edc62769c8a3d1382e9": {"3a5d7758": {"type": "FUNCTION", "size": 256, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "sceOpen"}, "68": {"type": "MIPS_26", "symbol": "sceLseek"}, "92": {"type": "MIPS_26", "symbol": "sceLseek"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": "@698"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": "@698"}, "148": {"type": "MIPS_26", "symbol": "sceDevctl"}, "168": {"type": "MIPS_26", "symbol": "sceRead"}, "212": {"type": "MIPS_26", "symbol": "sceClose"}}}}, "3c5374f134e842f2d0b9c9b7834c302874e767bd": {"fa07b9bb": {"type": "FUNCTION", "size": 212, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "sceOpen"}, "68": {"type": "MIPS_26", "symbol": "sceLseek"}, "92": {"type": "MIPS_26", "symbol": "sceLseek"}, "124": {"type": "MIPS_26", "symbol": "sceRead"}, "168": {"type": "MIPS_26", "symbol": "sceClose"}}}}, "74c9ae690494caa85b52c1f494d89cae207f8a28": {"3a5d7758": {"type": "FUNCTION", "size": 256, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "sceOpen"}, "68": {"type": "MIPS_26", "symbol": "sceLseek"}, "92": {"type": "MIPS_26", "symbol": "sceLseek"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": "@698"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": "@698"}, "148": {"type": "MIPS_26", "symbol": "sceDevctl"}, "168": {"type": "MIPS_26", "symbol": "sceRead"}, "212": {"type": "MIPS_26", "symbol": "sceClose"}}}}, "92325930f8ea052909ef7a25a246428b3d8fc53e": {"cd616a32": {"type": "FUNCTION", "size": 148, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "sceOpen"}, "52": {"type": "MIPS_26", "symbol": "sceLseek"}, "72": {"type": "MIPS_26", "s)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ymbol": "sceLseek"}, "92": {"type": "MIPS_26", "symbol": "sceRead"}, "112": {"type": "MIPS_26", "symbol": "sceClose"}}}}, "c0797c3d917a1dd054363f2795d14cad6f43e23c": {"8bf943f6": {"type": "FUNCTION", "size": 156, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.1.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "sceOpen"}, "56": {"type": "MIPS_26", "symbol": "sceLseek"}, "76": {"type": "MIPS_26", "symbol": "sceLseek"}, "100": {"type": "MIPS_26", "symbol": "sceRead"}, "120": {"type": "MIPS_26", "symbol": "sceClose"}}}}, "c615796a3aa3f63d695c59427beb03b36039c691": {"c215a81e": {"type": "FUNCTION", "size": 196, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.0.7"], "compiler_versions": ["2.3.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "sceOpen"}, "80": {"type": "MIPS_26", "symbol": "sceLseek"}, "104": {"type": "MIPS_26", "symbol": "sceLseek"}, "132": {"type": "MIPS_26", "symbol": "sceRead"}, "156": {"type": "MIPS_26", "symbol": "sceClose"}}}}, "e98e9d35b5a4e0cdbad4b43fdfdcfabb0205f8f0": {"8f8678dc": {"type": "FUNCTION", "size": 232, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "sceOpen"}, "84": {"type": "MIPS_26", "symbol": "sceLseek"}, "108": {"type": "MIPS_26", "symbol": "sceLseek"}, "136": {"type": "MIPS_26", "symbol": "sceRead"}, "156": {"type": "MIPS_26", "symbol": "sceClose"}, "188": {"type": "MIPS_26", "symbol": "sceClose"}}}}}, "mwLoadOverlay": {"91d6e1787a5f013f5c5e42a785f4ed7c0c281a9f": {"3ee5e44f": {"type": "FUNCTION", "size": 108, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "mwBload", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "mwOverlayInit", "scope": "LIBRARY"}}}}, "3b5380b9e11c6f7cee744dba1d31ec4509237e65": {"7b95a802": {"type": "FUNCTION", "size": 168, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "mwBload", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "FlushCache"}, "96": {"type": "MIPS_26", "symbol": "memset"}, "120": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "0c26d376ec1f6cacf6f45ff10b3ebe08bea27cf8": {"7b95a802": {"type": "FUNCTION", "size": 168, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "mwBload", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "FlushCache"}, "96": {"type": "MIPS_26", "symbol": "memset"}, "120": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "3d47cfdb91d5e8fb190732454328bd1ecc2ced0a": {"e01ce336": {"type": "FUNCTION", "size": 72, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.2", "2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "mwBload", "scope": "LIBRARY"}, "36": {"type": "MIPS_26", "symbol": "mwOverlayInit", "scope": "LIBRARY"}}}}, "19fe842594cb0a61e71049e62d9ff933088a4419": {"00d5f351": {"type": "FUNCTION", "size": 76, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.1.3"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "mwBload", "scope": "LIBRARY"}, "40": {"type": "MIPS_26", "symbol": "mwOverlayInit", "scope": "LIBRARY"}}}}, "b609121055997278bdb6b870a0af3fc2b99c9a37": {"25643238": {"type": "FUNCTION", "size": 236, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "sceOpen"}, "60": {"type": "MIPS_26", "symbol": "sceLseek"}, "80": {"type": "MIPS_26", "symbol": "sceLseek"}, "100": {"type": "MIPS_26", "symbol": "sceRead"}, "120": {"type": "MIPS_26", "symbol": "sceClose"}, "144": {"type": "MIPS_26", "symbol": "FlushCache"}, "172": {"type": "MIPS_26", "symbol": "memset"}, "192": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}, "7d5c4901eda80bf9bb9ebf8b9f07735385e763ba": {"0ff0a4e6": {"type": "FUNCTION", "size": 240, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "sceOpen"}, "60": {"type": "MIPS_26", "symbol": "sceLseek"}, "80": {"type": "MIPS_26", "symbol": "sceLseek"}, "100": {"type": "MIPS_26", "symbol": "sceRead"}, "120": {"type": "MIPS_26", "symbol": "sceClose"}, "144": {"type": "MIPS_26", "symbol": "FlushCache"}, "172": {"type": "MIPS_26", "symbol": "memset"}, "196": {"type": "MIPS_26", "symbol": "__initialize_cpp_rts", "scope": "LIBRARY"}}}}}, "__destroy_new_array2": {"1754ce2c621b70a8aed49c888c68ddf8ed016c8a": {"00000000": {"type": "FUNCTION", "size": 160, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.0.2"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}}, "__call_static_initializers__FPPFv_vPPFv_v": {"2dd2faa3fd62ddada1d5f834042f5e1ab5ddd0a4": {"00000000": {"type": "FUNCTION", "size": 92, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.4.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "cc4269e885b35d908a01705151a4ad3f04a4a001": {"00000000": {"type": "FUNCTION", "size": 100, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.2.2"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}, "7b24eedc8085ea69eabed09a024cfe69003ae336": {"00000000": {"type": "FUNCTION", "size": 100, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "34e43aaa4c645e5479dd53aeaea7e2579ed914f8": {"00000000": {"type": "FUNCTION", "size": 92, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.3.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "__destroy_new_array3": {"254cd72a0d0b8b4648b8d807d46d97b7797ac17e": {"00000000": {"type": "FUNCTION", "size": 236, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.0", "2.3.4"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "e24d8f2f38cc7ea833982ec06390129949d77acf": {"00000000": {"type": "FUNCTION", "size": 236, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.3.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "c2ac3ca8c13e15f62a838474b848db84810379d4": {"00000000": {"type": "FUNCTION", "size": 236, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "__ptmf_scall4": {"d48e72f7e78ba8a97a6cc5c78defb24da014a791": {"00000000": {"type": "FUNCTION", "size": 52, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.4", "2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_RegisterExceptionTables": {"0a5385cf4a659d302a43046ea0269e2b17a3ef1d": {"00000000": {"type": "FUNCTION", "size": 8, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "__ptmf_cast": {"4d234ce3d92b66859a006c09f01291b4d615ea9a": {"00000000": {"type": "FUNCTION", "size": 72, "library": "mslgcc_ps2", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "5dfa79a8555886f666f5c08e7394c230f0022bbf": {"00000000": {"type": "FUNCTION", "size": 60, "library": "mslgcc_ps2", "scope": "GL)PS2SDB", 8192}, + std::string_view{R"PS2SDB(OBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "IsInSpecification__FPcP16ex_specification": {"d48827e78c883f3a3a50764908accc9887a3e94c": {"a90317bc": {"type": "FUNCTION", "size": 216, "library": "mslgcc_ps2", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.3.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"136": {"type": "MIPS_26", "symbol": "__throw_catch_compare", "scope": "LIBRARY"}}}}}}, "libspu2m": {"sceSpu2MemInit": {"3ae1a450916ccaa39c0715037f9da0dd409d3359": {"d8292065": {"type": "FUNCTION", "size": 252, "library": "libspu2m", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.0", "2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.4.2", "2.4.3", "2.5.0", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_26", "symbol": "bzero"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceSpu2MemQuit": {"372b3c2063954a42ff45a28d038b1df9ae1f8b20": {"f8ed48fb": {"type": "FUNCTION", "size": 72, "library": "libspu2m", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.0", "2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.4.2", "2.4.3", "2.5.0", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_26", "symbol": "bzero"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceSpu2MemAllocate": {"0f581687220012edddbfec13e6166074491a0cc6": {"444351f8": {"type": "FUNCTION", "size": 528, "library": "libspu2m", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.0", "2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.4.2", "2.4.3", "2.5.0", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_spu2mem_alloc_info"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_spu2mem_alloc_info"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_spu2mem_alloc_rest"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_spu2mem_alloc_max"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_spu2mem_alloc_max"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_spu2mem_alloc_info"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_spu2mem_alloc_max"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_spu2mem_alloc_info"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_spu2mem_alloc_info"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_spu2mem_alloc_rest"}, "300": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_spu2mem_alloc_max"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_spu2mem_alloc_max"}, "328": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_spu2mem_alloc_info"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_spu2mem_alloc_max"}, "376": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_spu2mem_alloc_info"}, "412": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_spu2mem_alloc_info"}, "420": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_spu2mem_alloc_rest"}, "484": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_spu2mem_alloc_rest"}, "496": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_spu2mem_alloc_rest"}, "500": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_spu2mem_end_ptr"}, "504": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_spu2mem_alloc_rest"}, "508": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_spu2mem_end_ptr"}}}}}, "sceSpu2MemFree": {"d28eaa04b998b10ac33b0f8a01a714921cfb8009": {"447300e9": {"type": "FUNCTION", "size": 320, "library": "libspu2m", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.0", "2.5.0", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.4.2", "2.4.3", "2.5.0", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_spu2mem_alloc_info"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_spu2mem_alloc_info"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_spu2mem_alloc_info"}, "200": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_spu2mem_alloc_rest"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_spu2mem_alloc_rest"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_spu2mem_alloc_rest"}, "232": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_spu2mem_end_ptr"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_spu2mem_end_ptr"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_spu2mem_alloc_rest"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_spu2mem_alloc_info"}, "284": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_spu2mem_rest_size"}, "288": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_spu2mem_alloc_rest"}, "292": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_spu2mem_rest_size"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_spu2mem_alloc_rest"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_spu2mem_alloc_rest"}}}}}}, "libgp": {"sceGpInitChain": {"4f736957d7c3298f783f837c299512674076c136": {"8fb3546a": {"type": "FUNCTION", "size": 64, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.5.3", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.5.2", "2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "sceGpResetChain", "scope": "LIBRARY",)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "original": ".text"}}}}}, "sceGpResetChain": {"a82e1826569eb198f6cc2c3c7755481da12af368": {"00000000": {"type": "FUNCTION", "size": 328, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.5.3", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.5.2", "2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceGpResetChainRev": {"47750c5f2a0b4a2b2c3acc328ecbd6b30839080c": {"00000000": {"type": "FUNCTION", "size": 284, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.5.3", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.5.2", "2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceGpKickChain": {"d4fcd8538811522f0be586de0d3f3f1024e69f74": {"00000000": {"type": "FUNCTION", "size": 156, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.5.3", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.5.2", "2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceGpKickChain2": {"76b7f82db755daa64bb66ac6b35e971cc13f38bf": {"00000000": {"type": "FUNCTION", "size": 108, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.5.3", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.5.2", "2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceGpAddPacket": {"f8c95fe34fc32ba562e4ef2dda6baee023a1c88e": {"00000000": {"type": "FUNCTION", "size": 104, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.5.3", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.5.2", "2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceGpSetPacketMode": {"31162bea61f7b146c63182a526cdd25401321de8": {"00000000": {"type": "FUNCTION", "size": 92, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.5.3", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.5.2", "2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceGpKickPacket": {"6c5eaa1cca540929b851e5233b48581f77b57f09": {"00000000": {"type": "FUNCTION", "size": 148, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.5.3", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.5.2", "2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceGpKickPacket2": {"9020cf9ff8539abf5b89f3e550e91a75720c591d": {"00000000": {"type": "FUNCTION", "size": 100, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.5.3", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.5.2", "2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceGpSyncPacket": {"943daeef833309e3442b2cefd945239f9f74368a": {"1876598b": {"type": "FUNCTION", "size": 32, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.5.3", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.5.2", "2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "SyncDCache"}}}}}, "sceGpSyncPacketI": {"943daeef833309e3442b2cefd945239f9f74368a": {"eb5afeaa": {"type": "FUNCTION", "size": 32, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.5.3", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.5.2", "2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "iSyncDCache"}}}}}, "sceGpAddPacket2": {"8852e0f7d048e0e0e448db10b68fb088421a779a": {"00000000": {"type": "FUNCTION", "size": 88, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.5.3", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.5.2", "2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceGpAddChain2": {"d7627e46c8e76fcd377c17239baa36482d4fc43b": {"00000000": {"type": "FUNCTION", "size": 68, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.5.3", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.5.2", "2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceGpCallChain2": {"e62affd94223f9b5a4925f7f09e8357a06fec962": {"71ac7f12": {"type": "FUNCTION", "size": 156, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.5.3", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.5.2", "2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "sceGpInitCall", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "sceGpSetCall", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "sceGpAddPacket2", "scope": "LIBRARY", "original": ".text"}}}}}, "sceGpGetTailChain": {"1010b62d13f28a93a4a5382a8a5023062dba6411": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.5.3", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.5.2", "2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceGpGetTail": {"765606056b667cf385500e3177e905981afc3f2a": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.5.3", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.5.2", "2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceGpSearchTailToRemove": {"20828068770807f0c04fce70828d652de1bfa7f4": {"a739106f": {"type": "FUNCTION", "size": 116, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"72": {"type": "MIPS_26", "symbol": "sceGpGetNextDmatag", "scope": "LIBRARY", "original": ".text"}}}, "37ddce84": {"type": "FUNCTION", "size": 116, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.5.3", "2.6.0", "2.7.0"], "sdk": ["2.5.2", "2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"72": {"type": "MIPS_26", "symbol": "", "original": ".text"}}}}}, "sceGpRemoveNextPacket": {"8e18e492cdf778eb14e3f238121e2966f620d481": {"e8e37485": {"type": "FUNCTION", "size": 64, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceGpGetNextDmatag", "scope": "LIBRARY", "original": ".text"}}}, "04b8420b": {"type": "FUNCTION", "size": 64, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.5.3", "2.6.0", "2.7.0"], "sdk": ["2.5.2", "2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "", "original": ".text"}}}}}, "sceGpRemoveNextChain": {"fe88633bbc544e82aa6a33c9e024961658760654": {"00000000": {"type": "FUNCTION", "size": 60, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", )PS2SDB", 8192}, + std::string_view{R"PS2SDB("2.5.3", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.5.2", "2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceGpCopyPacket": {"fe4331dfb4c31b981118996096446a0aa4e7784b": {"27566057": {"type": "FUNCTION", "size": 68, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.5.3", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.5.2", "2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "memcpy"}}}}}, "sceGpAddChain": {"b2257595f7f99ee76bc41f72d02306931d06701e": {"00000000": {"type": "FUNCTION", "size": 120, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.5.3", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.5.2", "2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceGpCallChain": {"cb3087831e0c9f3dc5c71a66117649130e64494a": {"b391bf0d": {"type": "FUNCTION", "size": 168, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.5.3", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.5.2", "2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "sceGpInitCall", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "sceGpSetCall", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "sceGpAddPacket", "scope": "LIBRARY", "original": ".text"}}}}}, "sceGpTermChain": {"99b04ad622799dfa2c9477411765668d69df0cde": {"00000000": {"type": "FUNCTION", "size": 108, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.5.3", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.5.2", "2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceGpSetStartLevel": {"e3465ae2e3ae5b6185a7042336431ba30d151c5e": {"00000000": {"type": "FUNCTION", "size": 72, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.5.3", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.5.2", "2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceGpSetEndLevel": {"7ce3d64a4b607e1025f9d5842a0295ccc462d81e": {"00000000": {"type": "FUNCTION", "size": 160, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.5.3", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.5.2", "2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceGpGetNextDmatag": {"36928949ca2bb8b2e543625b0b20b763bfdfb996": {"4456bebd": {"type": "FUNCTION", "size": 372, "library": "libgp", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "3.0.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"208": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "244": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "308": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "312": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "328": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "336": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "340": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "348": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceGpGetNextPacket": {"2f56c0e548f91e94835588edc8fd1cd9de8d1982": {"26529c2f": {"type": "FUNCTION", "size": 200, "library": "libgp", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "3.0.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "sceGpGetNextDmatag", "scope": "LIBRARY", "original": ".text"}, "112": {"type": "MIPS_26", "symbol": "sceGpGetNextDmatag", "scope": "LIBRARY", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "sceGpGetNextDmatag", "scope": "LIBRARY", "original": ".text"}}}}}, "sceGpPrintChain": {"d904da07437aec0b9c1bc701951aec42644a2442": {"191bbe74": {"type": "FUNCTION", "size": 848, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"84": {"type": "MIPS_26", "symbol": "memset"}, "112": {"type": "MIPS_26", "symbol": "memset"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "188": {"type": "MIPS_26", "symbol": "scePrintf"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "208": {"type": "MIPS_26", "symbol": "scePrintf"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "220": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "228": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "248": {"type": "MIPS_26", "symbol": "sceGpGetNextPacket", "scope": "LIBRARY", "original": ".text"}, "344": {"type": "MIPS_26", "symbol": "sceGpPrintPacketKind", "scope": "LIBRARY", "original": ".text"}, "384": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "396": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "484": {"type": "MIPS_26", "symbol": "sceGpGetNextDmatag", "scope": "LIBRARY", "original": ".text"}, "516": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "520": {"type": "MIPS_26", "symbol": "scePrintf"}, "524": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "528": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "532": {"type": "MIPS_26", "symbol": "scePrintf"}, "536": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "564": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "580": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "588": {"type": "MIPS_26", "symbol": "scePrintf"}, "592": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "596": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "600": {"type": "MIPS_26", "symbol": "scePrintf"}, "604": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "608": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "620": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "628": {"type": "MIPS_26", "symbol": "scePrintf"}, "636": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "644": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "656": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "664": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "676": {"type": "MIPS_26", "symbol": "scePrintf"}, "692": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "700": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "704": {"type": "MIPS_26", "symbol": "scePrintf"}, "712": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "724": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "732": {"type": "MIPS_26", "symbol": "scePrintf"}, "740": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "744": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "752": {")PS2SDB", 8192}, + std::string_view{R"PS2SDB(type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "760": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "772": {"type": "MIPS_26", "symbol": "scePrintf"}, "788": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "792": {"type": "MIPS_26", "symbol": "scePrintf"}, "796": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}, "05bd7b75": {"type": "FUNCTION", "size": 848, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.6.0", "2.7.0"], "sdk": ["2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"84": {"type": "MIPS_26", "symbol": "memset"}, "112": {"type": "MIPS_26", "symbol": "memset"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "188": {"type": "MIPS_26", "symbol": "scePrintf"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "208": {"type": "MIPS_26", "symbol": "scePrintf"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "220": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "228": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "248": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "344": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "384": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "396": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "484": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "516": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "520": {"type": "MIPS_26", "symbol": "scePrintf"}, "524": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "528": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "532": {"type": "MIPS_26", "symbol": "scePrintf"}, "536": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "564": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "580": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "588": {"type": "MIPS_26", "symbol": "scePrintf"}, "592": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "596": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "600": {"type": "MIPS_26", "symbol": "scePrintf"}, "604": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "608": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "620": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "628": {"type": "MIPS_26", "symbol": "scePrintf"}, "636": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "644": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "656": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "664": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "676": {"type": "MIPS_26", "symbol": "scePrintf"}, "692": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "700": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "704": {"type": "MIPS_26", "symbol": "scePrintf"}, "712": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "724": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "732": {"type": "MIPS_26", "symbol": "scePrintf"}, "740": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "744": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "752": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "760": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "772": {"type": "MIPS_26", "symbol": "scePrintf"}, "788": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "792": {"type": "MIPS_26", "symbol": "scePrintf"}, "796": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "87ba1b397f8fd8b06a9d81b386d4a68b6123dc93": {"07628898": {"type": "FUNCTION", "size": 2272, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0"], "sdk": ["2.5.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"72": {"type": "MIPS_26", "symbol": "memset"}, "100": {"type": "MIPS_26", "symbol": "memset"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "196": {"type": "MIPS_26", "symbol": "scePrintf"}, "212": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "216": {"type": "MIPS_26", "symbol": "scePrintf"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "228": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "240": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "500": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "516": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "524": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "572": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "588": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "808": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "824": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "832": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "888": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "904": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1100": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1116": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1180": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1196": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1408": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "1492": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1764": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1780": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1788": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1792": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "1800": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "1860": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1876": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1884": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1888": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "1896": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "1932": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1936": {"type": "MIPS_26", "symbol": "scePrintf"}, "1940": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1944": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1948": {"type": "MIPS_26", "symbol": "scePrintf"}, "1952": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2008": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2016": {"type": "MIPS_26", "symbol": "scePrintf"}, "2020": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2024": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2028": {"type": "MIPS_26", "symbol": "scePrintf"}, "2032": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2036": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2048": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2056": {"type": "MIPS_26", "symbol": "scePrintf"}, "2064": {"ty)PS2SDB", 8192}, + std::string_view{R"PS2SDB(pe": "MIPS_HI16", "symbol": "", "original": ".data"}, "2072": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "2080": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2088": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2100": {"type": "MIPS_26", "symbol": "scePrintf"}, "2116": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2124": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2128": {"type": "MIPS_26", "symbol": "scePrintf"}, "2136": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2148": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2156": {"type": "MIPS_26", "symbol": "scePrintf"}, "2164": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "2168": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "2176": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2184": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2196": {"type": "MIPS_26", "symbol": "scePrintf"}, "2212": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2216": {"type": "MIPS_26", "symbol": "scePrintf"}, "2220": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sceGpInsertPacket": {"d80a93837aa61b6691ff8738d51719de16528947": {"00000000": {"type": "FUNCTION", "size": 92, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.5.3", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.5.2", "2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceGpPrintPacketKind": {"22b8441f3e0f0ce8715425c3d319087e714be2d9": {"0e50b9be": {"type": "FUNCTION", "size": 344, "library": "libgp", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "3.0.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "200": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "212": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "232": {"type": "MIPS_26", "symbol": "scePrintf"}, "244": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "252": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "256": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "276": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "292": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "296": {"type": "MIPS_26", "symbol": "scePrintf"}, "304": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "312": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "_Tim2_GetPictureHeader": {"dec98f6d608e8b02c7f69ac70313edfeac3aa4b8": {"3d9ef41b": {"type": "FUNCTION", "size": 108, "library": "libgp", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "3.0.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "28": {"type": "MIPS_26", "symbol": "scePrintf"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "_Tim2_GetImage": {"29ddfc38eb5217974a5a94be061e8a351a05f4d0": {"00000000": {"type": "FUNCTION", "size": 96, "library": "libgp", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "3.0.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_Tim2_GetClut": {"631466d4a3cd40d12062c5ac93a76654b276ebb7": {"00000000": {"type": "FUNCTION", "size": 36, "library": "libgp", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "3.0.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceGpSetDefaultFog": {"2b3cac92eff2e6bff469022f40f0e8e24fce8bb6": {"b0f52bf1": {"type": "FUNCTION", "size": 20, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.5.3", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.5.2", "2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceGpSetDefaultAbe": {"a66f755ea35be92d8ed3f73eb74a4934b4bac7a0": {"b0f52bf1": {"type": "FUNCTION", "size": 20, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.5.3", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.5.2", "2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceGpSetDefaultAa1": {"95c3bdb9a5e11053810bbe02e7ca9422c747c250": {"b0f52bf1": {"type": "FUNCTION", "size": 20, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.5.3", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.5.2", "2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceGpSetDefaultCtxt": {"0b22c8065fe8381dece8d9168915044b2cd20216": {"b0f52bf1": {"type": "FUNCTION", "size": 20, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.5.3", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.5.2", "2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceGpSetDefaultDirectHL": {"1ed15cc4d7e1ed9e506f8ec5614c5ccfccf0563b": {"61fe2c30": {"type": "FUNCTION", "size": 24, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.5.3", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.5.2", "2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceGpSetDefaultZ32": {"f5b8aa362045e28453373eb9bc6a1e7d7cee8ac1": {"61fe2c30": {"type": "FUNCTION", "size": 24, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.5.3", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.5.2", "2.5.4", "2.6.0")PS2SDB", 8192}, + std::string_view{R"PS2SDB(, "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceGpSetZ32": {"a9c35f48d8f76c41126aa07c259613f46d47f531": {"00000000": {"type": "FUNCTION", "size": 144, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "e15c48888f992d82dff51747faa0fbc309f73909": {"00000000": {"type": "FUNCTION", "size": 144, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.5.3", "2.6.0", "2.7.0"], "sdk": ["2.5.2", "2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceGpChkNumVtoP": {"d930f92e3ef5465706a5cae2a6ff0082fc8026d1": {"184136d3": {"type": "FUNCTION", "size": 64, "library": "libgp", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "3.0.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceGpChkPacketSize": {"74707b8680e9d6bae5254bac915518d9c0ea8bc1": {"b1b10261": {"type": "FUNCTION", "size": 324, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "220": {"type": "MIPS_26", "symbol": "sceGpIndexXyzf", "scope": "LIBRARY", "original": ".text"}, "244": {"type": "MIPS_26", "symbol": "sceGpIndexXyzf", "scope": "LIBRARY", "original": ".text"}}}}, "ecdc311a39f7e70310135b393aead6ec23bd7abd": {"e0b3f320": {"type": "FUNCTION", "size": 624, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0"], "sdk": ["2.5.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "288": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "300": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "320": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "328": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "468": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "480": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "500": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "508": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sceGpInitPacket": {"bbe9a76a92bc9c3643e593b55731eea2173163f0": {"3dbb76e4": {"type": "FUNCTION", "size": 328, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.5.3", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.5.2", "2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"164": {"type": "MIPS_26", "symbol": "sceGpInitPrimR", "scope": "LIBRARY", "original": ".text"}, "180": {"type": "MIPS_26", "symbol": "sceGpInitPrimP", "scope": "LIBRARY", "original": ".text"}, "196": {"type": "MIPS_26", "symbol": "sceGpInitAlphaEnv", "scope": "LIBRARY", "original": ".text"}, "212": {"type": "MIPS_26", "symbol": "sceGpInitTexEnv", "scope": "LIBRARY", "original": ".text"}, "228": {"type": "MIPS_26", "symbol": "sceGpInitTexEnvMipmap", "scope": "LIBRARY", "original": ".text"}, "244": {"type": "MIPS_26", "symbol": "sceGpInitLoadImage", "scope": "LIBRARY", "original": ".text"}, "260": {"type": "MIPS_26", "symbol": "sceGpInitLoadTexelClut", "scope": "LIBRARY", "original": ".text"}, "276": {"type": "MIPS_26", "symbol": "sceGpInitAd", "scope": "LIBRARY", "original": ".text"}, "292": {"type": "MIPS_26", "symbol": "sceGpInitRef", "scope": "LIBRARY", "original": ".text"}, "308": {"type": "MIPS_26", "symbol": "sceGpInitCall", "scope": "LIBRARY", "original": ".text"}}}}}, "sceGpInitPrimR": {"10c99c227aa1b7791dbd2fbecb5fe5a2a4c78021": {"79d77239": {"type": "FUNCTION", "size": 28, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceGpInitPrim", "scope": "LIBRARY", "original": ".text"}}}, "07be7974": {"type": "FUNCTION", "size": 28, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.5.3", "2.6.0", "2.7.0"], "sdk": ["2.5.2", "2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "", "original": ".text"}}}}}, "sceGpInitPrimP": {"402d905172c95959be52f0667c58bbb19061893d": {"79d77239": {"type": "FUNCTION", "size": 28, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceGpInitPrim", "scope": "LIBRARY", "original": ".text"}}}, "07be7974": {"type": "FUNCTION", "size": 28, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.5.3", "2.6.0", "2.7.0"], "sdk": ["2.5.2", "2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "", "original": ".text"}}}}}, "sceGpInitPrim": {"ab0e0e8c6931292cbc059beb31c4ea4f2a8e6a02": {"75959fbb": {"type": "FUNCTION", "size": 1312, "library": "libgp", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "3.0.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_26", "symbol": "sceGpChkPacketSize", "scope": "LIBRARY", "original": ".text"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "216": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "388": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "412": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "476": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "492": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "544": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "568": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "604": {"type")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: "MIPS_LO16", "symbol": "", "original": ".data"}, "608": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "676": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "696": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "704": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "804": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "820": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "836": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "884": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "908": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "948": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "968": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "996": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1060": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1084": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1088": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1144": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1152": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1192": {"type": "MIPS_26", "symbol": "sceGpChkNumVtoP", "scope": "LIBRARY", "original": ".text"}, "1200": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceGpInitLoadImage": {"a4856575611b7617f3bb9530b851eefc31a88128": {"00000000": {"type": "FUNCTION", "size": 208, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "99224e1d3cb232325bef1805d853b46556159ef1": {"2e247ad5": {"type": "FUNCTION", "size": 192, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.6.0", "2.7.0"], "sdk": ["2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "fe2aaecc6b58664bec832217820bdc236d83f1a9": {"d74efa18": {"type": "FUNCTION", "size": 284, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0"], "sdk": ["2.5.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceGpInitLoadTexelClut": {"082d8c1fc389677ddb899081a0965aad34358327": {"00000000": {"type": "FUNCTION", "size": 272, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "921627813e9314cca092e217d9069087c829e1fa": {"5a3a08f0": {"type": "FUNCTION", "size": 280, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.6.0", "2.7.0"], "sdk": ["2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "e68b97426f2d3e120af0e9f16552b475ecee8dbe": {"16d5d227": {"type": "FUNCTION", "size": 444, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0"], "sdk": ["2.5.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "328": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceGpInitTexEnv": {"8efafe8ae8135040003d74fd9e4c99e6e074ff33": {"b1b7c7e8": {"type": "FUNCTION", "size": 120, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "8193b533905bc5c325cf7ca572a171ef90e69a3b": {"b0f52bf1": {"type": "FUNCTION", "size": 156, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0"], "sdk": ["2.5.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceGpInitTexEnvMipmap": {"baf761744ad7a4eedc7dc152b7d56bfff0b1c688": {"b1b7c7e8": {"type": "FUNCTION", "size": 144, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "2c095b227fc0eae413db594e453e2ebaaac79446": {"b0f52bf1": {"type": "FUNCTION", "size": 188, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0"], "sdk": ["2.5.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceGpInitAlphaEnv": {"c4b273b462074cacf56340b0ddd33b01e712d45e": {"b1b7c7e8": {"type": "FUNCTION", "size": 132, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "5450681af07a2732c705e9a96904609b6d95f2a8": {"b1b7c7e8": {"type": "FUNCTION", "size": 132, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.6.0", "2.7.0"], "sdk": ["2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "ce97fb118d3d6d1a8c9c94434625245c34be5ab4": {"b0f52bf1": {"type": "FUNCTION", "size": 156, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0"], "sdk": ["2.5.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceGpInitAd": {"af2397106d99f922ffe179a4a51be50b8522f4fc": {"76d1214b": {"type": "FUNCTION", "size": 80, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "5c4c2a40970beee0dbcd73c7dfc403b900e3cf8b": {"62f8174f": {"type": "FUNCTION", "size": 124, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0"], ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(sdk": ["2.5.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceGpInitRef": {"25637eee0b05a32ff4d9f05331c929c9998134dc": {"00000000": {"type": "FUNCTION", "size": 36, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "8ab174ca666797c3df7f1bbe12bf7a1a0d5476b5": {"00000000": {"type": "FUNCTION", "size": 36, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "5b1a408926a514b0d91f3dc31e894b50509f946d": {"00000000": {"type": "FUNCTION", "size": 68, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0"], "sdk": ["2.5.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceGpInitCall": {"33e5428deeb45f9bb4c597d39595a285a9e45ddd": {"00000000": {"type": "FUNCTION", "size": 36, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "3a5275c70afab39699f0f80368149494b0c6fed7": {"00000000": {"type": "FUNCTION", "size": 68, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0"], "sdk": ["2.5.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceGpSetLoadImage": {"68029ececc1356d2c1e82916acc4cfd0414e8b04": {"be240213": {"type": "FUNCTION", "size": 364, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "GetImageQWSize", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_26", "symbol": "sceGpSetLoadTexel", "scope": "LIBRARY", "original": ".text"}, "100": {"type": "MIPS_26", "symbol": "GetClutQWSize", "scope": "LIBRARY", "original": ".text"}, "116": {"type": "MIPS_26", "symbol": "sceGpSetLoadClut", "scope": "LIBRARY", "original": ".text"}}}}, "d8e4d43e0582d90c0de646cf1d388aacefda16c8": {"d8615d3b": {"type": "FUNCTION", "size": 372, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.5.3", "2.6.0", "2.7.0"], "sdk": ["2.5.2", "2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "64": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "100": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "116": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "304": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "312": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceGpSetLoadTexelClut": {"0c974170e3b41af4914df7bd68cca59260ae669b": {"00c79841": {"type": "FUNCTION", "size": 420, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "GetImageQWSize", "scope": "LIBRARY", "original": ".text"}, "72": {"type": "MIPS_26", "symbol": "GetClutQWSize", "scope": "LIBRARY", "original": ".text"}, "88": {"type": "MIPS_26", "symbol": "sceGpSetLoadTexel", "scope": "LIBRARY", "original": ".text"}, "192": {"type": "MIPS_26", "symbol": "sceGpSetLoadClut", "scope": "LIBRARY", "original": ".text"}}}}, "9a8d41b23faa9c14df8d2224fd49f4d900acf61a": {"6de0593f": {"type": "FUNCTION", "size": 424, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.5.3", "2.6.0", "2.7.0"], "sdk": ["2.5.2", "2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "72": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "88": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "196": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "300": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceGpSetLoadTexel": {"37696f502d8553fbc1c1fd69dd25475f40431f7d": {"00000000": {"type": "FUNCTION", "size": 88, "library": "libgp", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "3.0.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceGpSetLoadClut": {"813c1afeb4eeaffd976d0d72ba0b649781efe3a6": {"00000000": {"type": "FUNCTION", "size": 124, "library": "libgp", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "3.0.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "GetImageQWSize": {"70d68ba6f94dd8b93b621d4554e5b40260281e46": {"ca94194d": {"type": "FUNCTION", "size": 124, "library": "libgp", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "3.0.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "GetClutQWSize": {"4ac14dc47f4687db961c520ad116a5a566e92960": {"00000000": {"type": "FUNCTION", "size": 40, "library": "libgp", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "3.0.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceGpSetTexEnv": {"8f9e17c1c3de8cd86acdb1043e5732f1bad59b00": {"00000000": {"type": "FUNCTION", "size": 516, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.5.3", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.5.2", "2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceGpSetTexEnvByTim2": {"f5488e4ae2c9958d16c2342750b5981ec31a5fb5": {"7d9ffa9c": {"type": "FUNCTION", "size": 444, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "_Tim2_GetPictureHeader", "scope": "LIBRARY", "original": ".text"}, "128": {"type": "MIPS_26", "symbol": "conv_Tim2_ImageToPsm", "scope": "LIBRARY", "original": ".text"}, "168": {"type": "MIPS_26", "symbol": "conv_Tim2_ClutToPsm", "scope": "LIBRARY", "original": ".text"}}}, "40f2cbff": {"type": "FUNCTION", "size": 444, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.5.3", "2.6.0", "2.7.0"], "sdk": ["2.5.2", "2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "128": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "168": {"type": "MIPS_26", "symbol": "", "original": ".text"}}}}}, "sceGpSetTexEnvByArgTim2": {"f55c2da08ec0628fb6b7fb139fc25116591dc945": {"f4ad7cf9": {"type": "FUNCTION", "size": 960, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "_Tim2_GetPictureHeader", "scope": "LIBRARY", "original": ".text"}, "272": {"type": "MIPS_26", "symbol": "conv_Tim2_I)PS2SDB", 8192}, + std::string_view{R"PS2SDB(mageToPsm", "scope": "LIBRARY", "original": ".text"}, "460": {"type": "MIPS_26", "symbol": "conv_Tim2_ClutToPsm", "scope": "LIBRARY", "original": ".text"}}}, "4b79ca72": {"type": "FUNCTION", "size": 960, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.5.3", "2.6.0", "2.7.0"], "sdk": ["2.5.2", "2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "272": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "460": {"type": "MIPS_26", "symbol": "", "original": ".text"}}}}}, "sceGpSetTexEnvByDrawEnv": {"a4272c65c0ef44ee5e3199afdfb379120a15e2e0": {"00000000": {"type": "FUNCTION", "size": 984, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "dbcde9cd3cd0688c2b0784a6bd0d022324172dc2": {"00000000": {"type": "FUNCTION", "size": 984, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0"], "sdk": ["2.5.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceGpSetAlphaEnv": {"04ef4222b3531e277791321afc49f09b1f461412": {"0571e550": {"type": "FUNCTION", "size": 60, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.5.3", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.5.2", "2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceGpSetAlphaEnvFunc", "scope": "LIBRARY", "original": ".text"}}}}}, "sceGpSetAd": {"7389859e688a23c4b553e67135a1c1de9797cf4b": {"00000000": {"type": "FUNCTION", "size": 24, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.5.3", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.5.2", "2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceGpSetRef": {"c961902ff184a50c21b3b7b480620051a907fc9a": {"c65e5896": {"type": "FUNCTION", "size": 92, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "4d37f446c4c6bb7ed6f15bb09f069db2609ca287": {"64f461b1": {"type": "FUNCTION", "size": 96, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0"], "sdk": ["2.5.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceGpSetCall": {"e7c3c0d59516db6aa71e6a0d3caed89d60293460": {"00000000": {"type": "FUNCTION", "size": 56, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.5.3", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.5.2", "2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceGpSetAlphaEnvFunc": {"6dc76bca547dd63ab79fdb90020f9d400600e8e5": {"bb9f13ee": {"type": "FUNCTION", "size": 116, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_26", "symbol": "scePrintf"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "0ff91cd14be523f5ac36760f634fda1761cce45e": {"c879e4aa": {"type": "FUNCTION", "size": 428, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0"], "sdk": ["2.5.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "416": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "420": {"type": "MIPS_26", "symbol": "scePrintf"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sceGpSetLoadTexelClutByTim2": {"e65e4daaae3ad3de52bfe18953f68684e4e04e5d": {"cb216e87": {"type": "FUNCTION", "size": 616, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "_Tim2_GetPictureHeader", "scope": "LIBRARY", "original": ".text"}, "80": {"type": "MIPS_26", "symbol": "_Tim2_GetImage", "scope": "LIBRARY", "original": ".text"}, "140": {"type": "MIPS_26", "symbol": "conv_Tim2_ImageToPsm", "scope": "LIBRARY", "original": ".text"}, "176": {"type": "MIPS_26", "symbol": "conv_Tim2_ClutToPsm", "scope": "LIBRARY", "original": ".text"}, "224": {"type": "MIPS_26", "symbol": "_Tim2_GetClut", "scope": "LIBRARY", "original": ".text"}, "252": {"type": "MIPS_26", "symbol": "sceGpSetLoadTexel", "scope": "LIBRARY", "original": ".text"}, "268": {"type": "MIPS_26", "symbol": "GetImageQWSize", "scope": "LIBRARY", "original": ".text"}, "284": {"type": "MIPS_26", "symbol": "GetClutQWSize", "scope": "LIBRARY", "original": ".text"}, "392": {"type": "MIPS_26", "symbol": "sceGpSetLoadClut", "scope": "LIBRARY", "original": ".text"}}}}, "31fd3850537b82705657efa58547f571e1b6833b": {"902f1c56": {"type": "FUNCTION", "size": 620, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.5.3", "2.6.0", "2.7.0"], "sdk": ["2.5.2", "2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "80": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "140": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "176": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "224": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "252": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "268": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "284": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "372": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "380": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "396": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "500": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceGpSetLoadImageByTim2": {"565e0c50992e3d03fbd5967af94b2ef5285c297f": {"ab60710e": {"type": "FUNCTION", "size": 488, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "_Tim2_GetPictureHeader", "scope": "LIBRARY", "original": ".text"}, "84": {"type": "MIPS_26", "symbol": "_Tim2_GetImage", "scope": "LIBRARY", "original": ".text"}, "176": {"type": "MIPS_26", "symbol": "sceGpSetLoadTexel", "scope": "LIBRARY", "original": ".text"}, "192": {"type": "MIPS_26", "symbol": "GetImageQWSize", "scope": "LIBRARY", "original": ".text"}, "208": {"type": "MIPS_26", "symbol": "conv_Tim2_ClutToPsm", "scope": "LIBRARY", "original": ".text"}, "256": {"type": "MIPS_26", "symbol": "_Tim2_GetClut", "scope": "LIBRARY", "original": ".text"}, "280": {"type": "MIPS_26", "symbol": "sceGpSetLoadClut", "scope": "LIBRARY", "original": )PS2SDB", 8192}, + std::string_view{R"PS2SDB(".text"}, "292": {"type": "MIPS_26", "symbol": "GetClutQWSize", "scope": "LIBRARY", "original": ".text"}}}}, "31ece5747d9936319d6c2c331724cbaa92bc59da": {"de190152": {"type": "FUNCTION", "size": 492, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.5.3", "2.6.0", "2.7.0"], "sdk": ["2.5.2", "2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "84": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "176": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "192": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "208": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "256": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "280": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "292": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "320": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "332": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceGpSetLoadTexelClutByArgTim2": {"324b19a3b46fcc6bf1ee9367ae5b502689c225f0": {"cc34b57d": {"type": "FUNCTION", "size": 692, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "_Tim2_GetPictureHeader", "scope": "LIBRARY", "original": ".text"}, "84": {"type": "MIPS_26", "symbol": "_Tim2_GetImage", "scope": "LIBRARY", "original": ".text"}, "144": {"type": "MIPS_26", "symbol": "conv_Tim2_ImageToPsm", "scope": "LIBRARY", "original": ".text"}, "168": {"type": "MIPS_26", "symbol": "conv_Tim2_ClutToPsm", "scope": "LIBRARY", "original": ".text"}, "276": {"type": "MIPS_26", "symbol": "conv_Tim2_ClutToPsm", "scope": "LIBRARY", "original": ".text"}, "304": {"type": "MIPS_26", "symbol": "_Tim2_GetClut", "scope": "LIBRARY", "original": ".text"}, "328": {"type": "MIPS_26", "symbol": "sceGpSetLoadTexel", "scope": "LIBRARY", "original": ".text"}, "344": {"type": "MIPS_26", "symbol": "GetImageQWSize", "scope": "LIBRARY", "original": ".text"}, "452": {"type": "MIPS_26", "symbol": "sceGpSetLoadClut", "scope": "LIBRARY", "original": ".text"}, "464": {"type": "MIPS_26", "symbol": "GetClutQWSize", "scope": "LIBRARY", "original": ".text"}}}}, "8277bd3522d672ad9e3e3b81b2362c96af744961": {"aa93ff29": {"type": "FUNCTION", "size": 696, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.5.3", "2.6.0", "2.7.0"], "sdk": ["2.5.2", "2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "84": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "144": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "168": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "276": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "304": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "328": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "344": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "436": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "440": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "456": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "468": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "576": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceGpSetLoadImageByArgTim2": {"22fdbfe42c2f970857f6c9cd5dd302fd085d81c5": {"45b5d71b": {"type": "FUNCTION", "size": 692, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "_Tim2_GetPictureHeader", "scope": "LIBRARY", "original": ".text"}, "128": {"type": "MIPS_26", "symbol": "_Tim2_GetImage", "scope": "LIBRARY", "original": ".text"}, "156": {"type": "MIPS_26", "symbol": "conv_Tim2_ImageToPsm", "scope": "LIBRARY", "original": ".text"}, "180": {"type": "MIPS_26", "symbol": "conv_Tim2_ClutToPsm", "scope": "LIBRARY", "original": ".text"}, "364": {"type": "MIPS_26", "symbol": "sceGpSetLoadTexel", "scope": "LIBRARY", "original": ".text"}, "380": {"type": "MIPS_26", "symbol": "GetImageQWSize", "scope": "LIBRARY", "original": ".text"}, "500": {"type": "MIPS_26", "symbol": "_Tim2_GetClut", "scope": "LIBRARY", "original": ".text"}, "516": {"type": "MIPS_26", "symbol": "GetClutQWSize", "scope": "LIBRARY", "original": ".text"}, "532": {"type": "MIPS_26", "symbol": "sceGpSetLoadClut", "scope": "LIBRARY", "original": ".text"}}}}, "b4ece0821ea63b17c197e5eff9b0e098024bf64f": {"35ff5a38": {"type": "FUNCTION", "size": 700, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.5.3", "2.6.0", "2.7.0"], "sdk": ["2.5.2", "2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "128": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "156": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "180": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "364": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "380": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "468": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "476": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "504": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "520": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "536": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "620": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "628": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "conv_Tim2_ImageToPsm": {"66943e2816b8e4f1ebcf7b55487e1fbb9a4911a9": {"61fe2c30": {"type": "FUNCTION", "size": 88, "library": "libgp", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "3.0.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "conv_Tim2_ClutToPsm": {"d3cc8f91d4113c81f4989e8bc1bdea1922d3f3f1": {"00000000": {"type": "FUNCTION", "size": 80, "library": "libgp", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "3.0.0"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceGpIndexUv": {"e6fc1ec1e9ab94e9da6404cad2e2eba465d98c40": {"871909b2": {"type": "FUNCTION", "size": 104, "library": "libgp", "scope": "GLOBAL", "is_interface": false, "versions": ["2.5.3", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sceGpIndexRgba": {"ea09ee5325c6509b8d957c1273460c86a4732f07": {"30da38c8": {"type": "FUNCTION", "size": 196, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_LO16",)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "symbol": "", "original": ".rodata"}}}}}, "sceGpIndexXyzf": {"a68f43788ff8c2622d5f27946b739c8561dd88f9": {"b154e9b9": {"type": "FUNCTION", "size": 212, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"96": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sceGpChkNumPtoV": {"ee2f1c2b49bd2c693f1958819c12b4b7daf377b5": {"184136d3": {"type": "FUNCTION", "size": 48, "library": "libgp", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.5.3", "2.6.0", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.5.2", "2.5.4", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}}, "libvib": {"sceVibGetProfile": {"ca832a75589b36833aceaaa82a2fa4f08a9c7752": {"187af168": {"type": "FUNCTION", "size": 128, "library": "libvib", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"100": {"type": "MIPS_26", "symbol": "sceDbcReceiveData"}}}}}, "sceVibSetActParam": {"e230adc43ccadadad03ce4368ee1968d88c088b4": {"afc279f1": {"type": "FUNCTION", "size": 236, "library": "libvib", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"152": {"type": "MIPS_26", "symbol": "memcpy"}, "176": {"type": "MIPS_26", "symbol": "memcpy"}, "196": {"type": "MIPS_26", "symbol": "sceDbcSendData2"}}}}}}, "libpad2": {"scePad2Init": {"bd70df5fb05add49d7a11ad2c866351f9da54796": {"8b36fba9": {"type": "FUNCTION", "size": 60, "library": "libpad2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0"], "sdk": ["2.5.0", "2.5.2", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "26f7668af254060f2956a4a4696ce6f33323b383": {"8b36fba9": {"type": "FUNCTION", "size": 64, "library": "libpad2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0"], "sdk": ["2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "scePad2End": {"a0e0b87920cfb64b198c0c7c89447496c82e237e": {"93ae3b6d": {"type": "FUNCTION", "size": 104, "library": "libpad2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0"], "sdk": ["2.5.0", "2.5.2", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_26", "symbol": "scePad2DeleteSocket", "scope": "LIBRARY", "original": ".text"}}}}, "8c2005fd3ece01e1c9d1f9ae2a3e3808fc87e8cb": {"93ae3b6d": {"type": "FUNCTION", "size": 104, "library": "libpad2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0"], "sdk": ["2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_26", "symbol": "scePad2DeleteSocket", "scope": "LIBRARY", "original": ".text"}}}}}, "scePad2CreateSocket": {"c8ac77c9734c81552db0c3fcf805698128ae53ee": {"81c8f40a": {"type": "FUNCTION", "size": 328, "library": "libpad2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0"], "sdk": ["2.5.0", "2.5.2", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"176": {"type": "MIPS_26", "symbol": "sceDbcCreateSocket"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "276": {"type": "MIPS_26", "symbol": "memset"}}}}, "a07e40773988c0a88ad50ea4ab302aa2858805a6": {"9700745b": {"type": "FUNCTION", "size": 336, "library": "libpad2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.6.0", "2.7.0"], "sdk": ["2.6.0", "2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "48": {"type": "MIPS_26", "symbol": "scePrintf"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "188": {"type": "MIPS_26", "symbol": "sceDbcCreateSocket"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "284": {"type": "MIPS_26", "symbol": "memset"}}}}, "8f1f355689c26eed84de5b6bcf2898ffdce0cf34": {"cbbd5f34": {"type": "FUNCTION", "size": 264, "library": "libpad2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.1", "2.8.0", "3.0.0"], "sdk": ["2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_26", "symbol": "scePrintf"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "180": {"type": "MIPS_26", "symbol": "sceDbcCreateSocket"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "228": {"type": "MIPS_26", "symbol": "scePad2InitDmaDBuff", "scope": "LIBRARY", "original": ".text"}}}}}, "scePad2DeleteSocket": {"6ba24c3057d1d426928632c828b87c35afe0f608": {"d7158dbe": {"type": "FUNCTION", "size": 84, "library": "libpad2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0"], "sdk": ["2.5.0", "2.5.2", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceDbcDeleteSocket"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "8829e81e49f8120dd40a9e5a8649f9292d850e17": {"d7158dbe": {"type": "FUNCTION", "size": 84, "library": "libpad2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0"], "sdk": ["2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceDbcDeleteSocket"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "scePad2Read": {"be91a078dd54433ce8286d6c92bb7894ba14ada0": {"37901e45": {"type": "FUNCTION", "size": 212, "library": "libpad2", "scope": "GLOBAL", "is_interface": true, )PS2SDB", 8192}, + std::string_view{R"PS2SDB("versions": ["2.5.0"], "sdk": ["2.5.0", "2.5.2", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_26", "symbol": "scePad2LinkDriver", "scope": "LIBRARY", "original": ".text"}, "92": {"type": "MIPS_26", "symbol": "scePad2GetSide", "scope": "LIBRARY", "original": ".text"}, "128": {"type": "MIPS_26", "symbol": "memcpy"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_26", "symbol": "scePad2SetButtonOrder", "scope": "LIBRARY", "original": ".text"}}}}, "7b0f61a6e7ddda5a112ef2ad570124dff218ff5b": {"37901e45": {"type": "FUNCTION", "size": 212, "library": "libpad2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.6.0", "2.7.0", "2.7.1", "2.8.0"], "sdk": ["2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_26", "symbol": "scePad2LinkDriver", "scope": "LIBRARY", "original": ".text"}, "92": {"type": "MIPS_26", "symbol": "scePad2GetSide", "scope": "LIBRARY", "original": ".text"}, "128": {"type": "MIPS_26", "symbol": "memcpy"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_26", "symbol": "scePad2SetButtonOrder", "scope": "LIBRARY", "original": ".text"}}}}, "d0a766c16b8389ab3ea3a2c113e8ef3068f33fca": {"37901e45": {"type": "FUNCTION", "size": 212, "library": "libpad2", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0"], "sdk": ["3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_26", "symbol": "scePad2LinkDriver", "scope": "LIBRARY", "original": ".text"}, "92": {"type": "MIPS_26", "symbol": "scePad2GetSide", "scope": "LIBRARY", "original": ".text"}, "128": {"type": "MIPS_26", "symbol": "memcpy"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_26", "symbol": "scePad2SetButtonOrder", "scope": "LIBRARY", "original": ".text"}}}}}, "scePad2GetButtonProfile": {"a41ab762b583d62aaf4578a14109ccd15125f168": {"4a3143fe": {"type": "FUNCTION", "size": 240, "library": "libpad2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0"], "sdk": ["2.5.0", "2.5.2", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "scePad2LinkDriver", "scope": "LIBRARY", "original": ".text"}, "172": {"type": "MIPS_26", "symbol": "sceDbcReceiveData"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "204": {"type": "MIPS_26", "symbol": "scePad2SetButtonOrder", "scope": "LIBRARY", "original": ".text"}}}}, "b31594ea8f1fbb14c7db986ee82e9468550178b7": {"1a33b6b4": {"type": "FUNCTION", "size": 200, "library": "libpad2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.6.0", "2.7.0"], "sdk": ["2.6.0", "2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "scePad2LinkDriver", "scope": "LIBRARY", "original": ".text"}, "72": {"type": "MIPS_26", "symbol": "scePad2GetSide", "scope": "LIBRARY", "original": ".text"}, "116": {"type": "MIPS_26", "symbol": "memcpy"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_26", "symbol": "scePad2SetButtonOrder", "scope": "LIBRARY", "original": ".text"}}}}, "9a2c604928f00518ab5e5a2f2751656521cfeda2": {"8beccdad": {"type": "FUNCTION", "size": 208, "library": "libpad2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.1", "2.8.0"], "sdk": ["2.7.1", "2.7.2-3", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "scePad2GetState", "scope": "LIBRARY", "original": ".text"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_26", "symbol": "scePad2LinkDriver", "scope": "LIBRARY", "original": ".text"}, "80": {"type": "MIPS_26", "symbol": "scePad2GetSide2", "scope": "LIBRARY", "original": ".text"}, "124": {"type": "MIPS_26", "symbol": "memcpy"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "scePad2SetButtonOrder", "scope": "LIBRARY", "original": ".text"}}}}, "c0d9d23a025220651f1388a689eb73d4def1a559": {"c72f1f2a": {"type": "FUNCTION", "size": 204, "library": "libpad2", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0"], "sdk": ["3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "scePad2GetState", "scope": "LIBRARY", "original": ".text"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_26", "symbol": "scePad2LinkDriver", "scope": "LIBRARY", "original": ".text"}, "80": {"type": "MIPS_26", "symbol": "scePad2GetSide2", "scope": "LIBRARY", "original": ".text"}, "120": {"type": "MIPS_26", "symbol": "memcpy"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_26", "symbol": "scePad2SetButtonOrder", "scope": "LIBRARY", "original": ".text"}}}}}, "scePad2GetState": {"5711a71c114b4ba36a87bd4c7029079c9775a6b2": {"86adc475": {"type": "FUNCTION", "size": 316, "library": "libpad2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0"], "sdk": ["2.5.0", "2.5.2", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "scePad2LinkDriver", "scope": "LIBRARY", "original": ".text"}, "72": {"type": "MIPS_26", "symbol": "scePad2CheckDma", "scope": "LIBRARY", "original": ".text"}, "88": {"type": "MIPS_26", "symbol": "scePad2GetSide", "scope": "LIBRARY", "original": ".text"}, "112": {"type": "MIPS_26", "symbol": "scePad2LinkDriver", "scope": "LIBRARY", "original": ".text"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "264": {"type": "MIPS_26", "symbol": "sceDbcReceiveData"}}}}, "0d98ca1bd8b8398d084be8854611fd1498683b3f": {"99ea068a": {"type": "FUNCTION", "size": 312, "library": "libpad2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.6.0", "2.7.0"], "sdk": ["2.6.0", "2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "scePad2LinkDriver", "scope": "LIBRARY", "original": ".text"}, "72": {"type": "MIPS_26", "symbol": "scePad2CheckDma", "scope": "LIBRARY", "original": ".text"}, "88": {"type": "MIPS_26", "symbol": "scePad2GetSide", "scope": "LIBRARY", "original": ".text"}, "112": {"type": "MIPS_26", "symbol": "scePad2LinkDriver", "scope": "LIBRARY", "original": ".text"}, "240": {"type": "MIPS_26", "symbol": "sceDbcReceiveData"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "8e1a66a78c8b996e8810fe721f1c32d6)PS2SDB", 8192}, + std::string_view{R"PS2SDB(484edee3": {"56fe0eb2": {"type": "FUNCTION", "size": 320, "library": "libpad2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.1", "2.8.0", "3.0.0"], "sdk": ["2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "scePad2LinkDriver", "scope": "LIBRARY", "original": ".text"}, "72": {"type": "MIPS_26", "symbol": "scePad2CheckDma", "scope": "LIBRARY", "original": ".text"}, "88": {"type": "MIPS_26", "symbol": "scePad2GetSide2", "scope": "LIBRARY", "original": ".text"}, "112": {"type": "MIPS_26", "symbol": "scePad2LinkDriver", "scope": "LIBRARY", "original": ".text"}, "240": {"type": "MIPS_26", "symbol": "sceDbcReceiveData"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "276": {"type": "MIPS_26", "symbol": "scePad2InitDmaDBuff", "scope": "LIBRARY", "original": ".text"}}}}}, "scePad2GetButtonInfo": {"ddb6815c0857124f9b56bd2a898b5354afae7e50": {"62f8174f": {"type": "FUNCTION", "size": 224, "library": "libpad2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0"], "sdk": ["2.5.0", "2.5.2", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "40d132dd03791ab27b0fbf2b64bd9a6d05fe4dac": {"62f8174f": {"type": "FUNCTION", "size": 224, "library": "libpad2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0"], "sdk": ["2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "scePad2LinkDriver": {"5e24872113c509765edf547048bc0631ff665a3d": {"9ba8c22a": {"type": "FUNCTION", "size": 84, "library": "libpad2", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.0"], "sdk": ["2.5.0", "2.5.2", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceDbcGetDepNumber"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "c7d72d222ae06bae5437c5431aa75746916e0198": {"9ba8c22a": {"type": "FUNCTION", "size": 84, "library": "libpad2", "scope": "LOCAL", "is_interface": false, "versions": ["2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0"], "sdk": ["2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceDbcGetDepNumber"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "scePad2GetSide": {"b0fc434e6415c49b23419e2cb613207c4504a26c": {"319065dc": {"type": "FUNCTION", "size": 100, "library": "libpad2", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.0"], "sdk": ["2.5.0", "2.5.2", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_26", "symbol": "SyncDCache"}}}}, "409378773efa9d77c2b0a1f4df623a88cc69ba72": {"319065dc": {"type": "FUNCTION", "size": 100, "library": "libpad2", "scope": "LOCAL", "is_interface": false, "versions": ["2.6.0", "2.7.0"], "sdk": ["2.6.0", "2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_26", "symbol": "SyncDCache"}}}}, "ae2e14c81a6729993862f985f1af60bfd31f2618": {"319065dc": {"type": "FUNCTION", "size": 100, "library": "libpad2", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.1", "2.8.0", "3.0.0"], "sdk": ["2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_26", "symbol": "SyncDCache"}}}}}, "scePad2CheckDma": {"4e7a1e0cfe619af5f269c7147257c965f9d0e2cb": {"7bc9728e": {"type": "FUNCTION", "size": 128, "library": "libpad2", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.0"], "sdk": ["2.5.0", "2.5.2", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "74fa9703cad9eade9d7c59927c1c4edc80f89121": {"e160e584": {"type": "FUNCTION", "size": 92, "library": "libpad2", "scope": "LOCAL", "is_interface": false, "versions": ["2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0"], "sdk": ["2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "scePad2GetSide", "scope": "LIBRARY", "original": ".text"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "scePad2SetButtonOrder": {"22d025ca6d58a42f9940a9b7405b603d514de691": {"00000000": {"type": "FUNCTION", "size": 176, "library": "libpad2", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.0", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0"], "sdk": ["2.5.0", "2.5.2", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "scePad2StateIntToStr": {"812e39510582e688715d57d5186b034d9b34cae0": {"98f3bd05": {"type": "FUNCTION", "size": 52, "library": "libpad2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0", "2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0"], "sdk": ["2.5.0", "2.5.2", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_26", "symbol": "strcpy"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "scePad2InitDmaDBuff": {"2293b8c3f31339b7002cae8d7b773a424074e7d4": {"8e069722": {"type": "FUNCTION", "size": 120, "library": "libpad2", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.1", "2.8.0", "3.0.0"], "sdk": ["2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "memset"}}}}}, "scePad2GetSide2": {"409378773efa9d77c2b0a1f4df623a88cc69ba72": {"319065dc": {"type": "FUNCTION", "size": 100, "library": "libpad2", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.1", "2.8.0", "3.0.0"], "sdk": ["2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_26", "symbol": "SyncDCache"}}}}}}, "libdbc": {"sceDbcGetModVersion": {"6c5f16002083e0df1c83c2d24d97a3038fb8bfff": {"0f8b9573": {"type": "FUNCTION", "size": 84, "library": "libdbc", "scope": "LOCAL", "is_interface": false, "versions":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( [], "sdk": ["2.5.0", "2.5.2", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "cce0002458e72002593c1e1818d248fc5363ea2d": {"0f8b9573": {"type": "FUNCTION", "size": 84, "library": "libdbc", "scope": "LOCAL", "is_interface": false, "versions": ["2.6.0", "2.7.0", "2.7.1", "2.8.0"], "sdk": ["2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "a753cffea0028178417202eb5f037f8db7ce35dc": {"0f8b9573": {"type": "FUNCTION", "size": 84, "library": "libdbc", "scope": "LOCAL", "is_interface": false, "versions": ["3.0.0"], "sdk": ["3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceDbcInit": {"d8c5ef89374aa37f7ee4ad03bd6875acca7617c9": {"839ddbb0": {"type": "FUNCTION", "size": 404, "library": "libdbc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "112": {"type": "MIPS_26", "symbol": "exit"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "208": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "216": {"type": "MIPS_26", "symbol": "exit"}, "232": {"type": "MIPS_26", "symbol": "sceDbcGetModVersion", "scope": "LIBRARY", "original": ".text"}, "256": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "260": {"type": "MIPS_26", "symbol": "scePrintf"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "268": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "288": {"type": "MIPS_26", "symbol": "scePrintf"}, "304": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "312": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "348": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "352": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "356": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "360": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "364": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "372": {"type": "MIPS_26", "symbol": "sceDbcSetWorkAddr", "scope": "LIBRARY", "original": ".text"}}}}, "b4db30f7c19c4ffdee2cb84b33dd631730a23ca7": {"894fa5f0": {"type": "FUNCTION", "size": 572, "library": "libdbc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.6.0", "2.7.0", "2.7.1", "2.8.0"], "sdk": ["2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "212": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "244": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "300": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "312": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "328": {"type": "MIPS_26", "symbol": "sceDbcGetModVersion", "scope": "LIBRARY", "original": ".text"}, "352": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "356": {"type": "MIPS_26", "symbol": "scePrintf"}, "360": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "364": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "372": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "384": {"type": "MIPS_26", "symbol": "scePrintf"}, "416": {"type": "MIPS_26", "symbol": "CreateSema"}, "428": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "440": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "444": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "456": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "464": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "500": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "504": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "508": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "512": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "516": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "524": {"type": "MIPS_26", "symbol": "sceDbcSetWorkAddr", "scope": "LIBRARY", "original": ".text"}, "540": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "a80887e4e91e35836b16aa334baa5575ed33a008": {"15148328": {"type": "FUNCTION", "size": 672, "library": "libdbc", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0"], "sdk": ["3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "176": {"type": "MIPS_26", "symbol": "sceDbcGetModVersion", "scope": "LIBRARY", "original": ".text"}, "200": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "204": {"type": "MIPS_26", "symbol": "scePrintf"}, "208": {"type": ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(MIPS_LO16", "symbol": "", "original": ".rodata"}, "212": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "232": {"type": "MIPS_26", "symbol": "scePrintf"}, "252": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "292": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "308": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "320": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "332": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "420": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "432": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "468": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "476": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "496": {"type": "MIPS_26", "symbol": "CreateSema"}, "508": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "520": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "524": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "536": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "544": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "580": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "584": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "588": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "592": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "596": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "604": {"type": "MIPS_26", "symbol": "sceDbcSetWorkAddr", "scope": "LIBRARY", "original": ".text"}, "620": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceDbcEnd": {"98ab17e54d84a098b4240053ee845921141318c1": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libdbc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "6f5bf332f8abfe5387af995baf34d53516575b58": {"4ee6c97f": {"type": "FUNCTION", "size": 72, "library": "libdbc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0"], "sdk": ["2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_26", "symbol": "DeleteSema"}}}}}, "sceDbcSetWorkAddr": {"ec90a2a1bb2ed6ba5b863083f272e5f2b7636c45": {"e443e654": {"type": "FUNCTION", "size": 108, "library": "libdbc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "2e4be906da0508dc1ccc8f877c232375d47858ec": {"e443e654": {"type": "FUNCTION", "size": 108, "library": "libdbc", "scope": "GLOBAL", "is_interface": false, "versions": ["2.6.0", "2.7.0", "2.7.1", "2.8.0"], "sdk": ["2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "e9dd05dd5e2f2ebc516d0172e18a2d2acdcbfc9b": {"e443e654": {"type": "FUNCTION", "size": 108, "library": "libdbc", "scope": "GLOBAL", "is_interface": false, "versions": ["3.0.0"], "sdk": ["3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sceDbcCreateSocket": {"a5144156e4f6a0b6e8a06ae80e0f24314b1d4ded": {"499901b5": {"type": "FUNCTION", "size": 200, "library": "libdbc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "172": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "3af14785db8ae4b240bad9e057d86084d10b3a3c": {"626472eb": {"type": "FUNCTION", "size": 216, "library": "libdbc", "scope": "GLOBAL", "is_interface": false, "versions": ["2.6.0", "2.7.0", "2.7.1", "2.8.0"], "sdk": ["2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "188": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "dfb5c723ec3569a8184c9bf140b2e795b0c705a6": {"626472eb": {"type": "FUNCTION", "size": 216, "library": "libdbc", "scope": "GLOBAL", "is_interface": false, "versions": ["3.0.0"], "sdk": ["3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "188": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sceDbcDeleteSocket": {"927ff644fcf20dce899de02ec4e0db2220ea36c1": {"1217ab45": {"type": "FUNCTION", "size": 112, "library": "libdbc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "4adb685bc09e0236a946224a5c7dc65ab967db59": {"b2f42aab": {"type": "FUNCTION", "size": 136, "library": "libdbc", "scope": "GLOBAL", "is_interface": false, "versions": ["2.6.0", "2.7.0", "2.7.1", "2.8.0"], "sdk": ["2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "108": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "2f06741ca02b95147962f03797bb8bb3469703f3": {"b2f42aab": {"type": "FUNCTION", "size": 136, "library": "libdbc", "scope": "GLOBAL", "is_interface": false, "versions": ["3.0.0"], "sdk": ["3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "108": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sceDbcGetDepNumber": {"b9907d7e5eafe46cf08883024060084b304b7f34": {"c73f02e9": {"type": "FUNCTION", "size": 328, "library": "libdbc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_26", "symbol": "SyncDCache"}, "40": {"type": "MIPS_26", "symbol": "DIntr"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_26", "symbol": "EIntr"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "220": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "272": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "288": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "292": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "ea1dc7aa471f17e8d2e65436985d90b0d87ba7b4": {"c73f02e9": {"type": "FUNCTION", "size": 328, "library": "libdbc", "scope": "GLOBAL", "is_interface": false, "versions": ["2.6.0", "2.7.0", "2.7.1", "2.8.0"], "sdk": ["2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_26", "symbol": "SyncDCache"}, "40": {"type": "MIPS_26", "symbol": "DIntr"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_26", "symbol": "EIntr"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "220": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "272": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "288": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "292": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "347189a0bda3fd8b3f211ca9c3ba9f74c3673bc2": {"c73f02e9": {"type": "FUNCTION", "size": 328, "library": "libdbc", "scope": "GLOBAL", "is_interface": false, "versions": ["3.0.0"], "sdk": ["3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_26", "symbol": "SyncDCache"}, "40": {"type": "MIPS_26", "symbol": "DIntr"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_26", "symbol": "EIntr"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "220": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "272": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "288": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "292": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sceDbcInitSocket": {"7daf46275484a301fd5461ddd353b5a714659c1b": {"1217ab45": {"type": "FUNCTION", "size": 112, "library": "libdbc", "scope": "GLOBAL", "is_interface": false, )PS2SDB", 8192}, + std::string_view{R"PS2SDB("versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "444cd9fa68d9f73c15a23386bb9e8125c7b80f6a": {"1217ab45": {"type": "FUNCTION", "size": 112, "library": "libdbc", "scope": "GLOBAL", "is_interface": false, "versions": ["2.6.0", "2.7.0", "2.7.1", "2.8.0"], "sdk": ["2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "55e109768723af673bd0284bbeff21325e25c627": {"1217ab45": {"type": "FUNCTION", "size": 112, "library": "libdbc", "scope": "GLOBAL", "is_interface": false, "versions": ["3.0.0"], "sdk": ["3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sceDbcResetSocket": {"13899508cd730ba83eed10e625f297660dd44a75": {"1217ab45": {"type": "FUNCTION", "size": 112, "library": "libdbc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "e102cd63b60eed28623106950f3173c15ac75462": {"1217ab45": {"type": "FUNCTION", "size": 112, "library": "libdbc", "scope": "GLOBAL", "is_interface": false, "versions": ["2.6.0", "2.7.0", "2.7.1", "2.8.0"], "sdk": ["2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "4fd717e859ec99f820a7adafc33bfdc339c6d0b0": {"1217ab45": {"type": "FUNCTION", "size": 112, "library": "libdbc", "scope": "GLOBAL", "is_interface": false, "versions": ["3.0.0"], "sdk": ["3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sceDbcGetDeviceStatus": {"229572559b5f33e05b767ec050b8b0f09e71dbc9": {"1217ab45": {"type": "FUNCTION", "size": 112, "library": "libdbc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "23b236a912a05f42a37f559ee6f17c794a9c3ad1": {"1217ab45": {"type": "FUNCTION", "size": 112, "library": "libdbc", "scope": "GLOBAL", "is_interface": false, "versions": ["2.6.0", "2.7.0", "2.7.1", "2.8.0"], "sdk": ["2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "e312e4d39f9423d366361d84dea62601a86eae8d": {"1217ab45": {"type": "FUNCTION", "size": 112, "library": "libdbc", "scope": "GLOBAL", "is_interface": false, "versions": ["3.0.0"], "sdk": ["3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sceDbcSRData": {"90418b89479b552f5bd0d13f6d61b97c8d52280c": {"da66e75e": {"type": "FUNCTION", "size": 328, "library": "libdbc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.5"], "compiler_versions": ["2.4.1.01")PS2SDB", 8192}, + std::string_view{R"PS2SDB(], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "176": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "196": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "036ce5483322094e58b7cd231c0fd1dfef7f8fdd": {"da66e75e": {"type": "FUNCTION", "size": 328, "library": "libdbc", "scope": "GLOBAL", "is_interface": false, "versions": ["2.6.0", "2.7.0", "2.7.1", "2.8.0"], "sdk": ["2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "176": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "196": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "7253309c6ea0543e888510ac21e619b70da173ce": {"da66e75e": {"type": "FUNCTION", "size": 328, "library": "libdbc", "scope": "GLOBAL", "is_interface": false, "versions": ["3.0.0"], "sdk": ["3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "176": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "196": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sceDbcSendData": {"60892a3ed634ebe62cf196e92edfbc0310df31ac": {"e64d582b": {"type": "FUNCTION", "size": 228, "library": "libdbc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "172": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "833f53026a07a241dd23b6f4a248bab57cfe9a96": {"a8e8ebe0": {"type": "FUNCTION", "size": 300, "library": "libdbc", "scope": "GLOBAL", "is_interface": false, "versions": ["2.6.0", "2.7.0", "2.7.1", "2.8.0"], "sdk": ["2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_26", "symbol": "WaitSema"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "192": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "208": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "212": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "220": {"type": "MIPS_26", "symbol": "SignalSema"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "252": {"type": "MIPS_26", "symbol": "SignalSema"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "3db5609da1487ae7b13d53ce89beb91eea4b348a": {"a8e8ebe0": {"type": "FUNCTION", "size": 300, "library": "libdbc", "scope": "GLOBAL", "is_interface": false, "versions": ["3.0.0"], "sdk": ["3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_26", "symbol": "WaitSema"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "192": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "208": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "212": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "220": {"type": "MIPS_26", "symbol": "SignalSema"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "252": {"type": "MIPS_26", "symbol": "SignalSema"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceDbcSendData2": {"6f7f4505263cbcdd704692e97c383f744d19cfa5": {"18f5f7a6": {"type": "FUNCTION", "size": 224, "library": "libdbc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_26", "symbol": "sceSifCheckStatRpc"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(172": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "192": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "419840708386dbed7aae5c4df6890d29e98a78ea": {"7cc1e537": {"type": "FUNCTION", "size": 348, "library": "libdbc", "scope": "GLOBAL", "is_interface": false, "versions": ["2.6.0", "2.7.0", "2.7.1", "2.8.0"], "sdk": ["2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_26", "symbol": "WaitSema"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "192": {"type": "MIPS_26", "symbol": "sceSifCheckStatRpc"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "212": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "256": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "268": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "276": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "284": {"type": "MIPS_26", "symbol": "SignalSema"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "300": {"type": "MIPS_26", "symbol": "SignalSema"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "213b43050666b4d9b2b2c94c9e8d85b0325411c1": {"2875e1ef": {"type": "FUNCTION", "size": 432, "library": "libdbc", "scope": "GLOBAL", "is_interface": false, "versions": ["3.0.0"], "sdk": ["3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_26", "symbol": "WaitSema"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "240": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "260": {"type": "MIPS_26", "symbol": "sceSifCheckStatRpc"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "280": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "336": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "348": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "356": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "364": {"type": "MIPS_26", "symbol": "SignalSema"}, "368": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "380": {"type": "MIPS_26", "symbol": "SignalSema"}, "384": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceDbcReceiveData": {"5781002d371617597f1cc97c465acbad0b1190db": {"b15c73ad": {"type": "FUNCTION", "size": 236, "library": "libdbc", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.5.0", "2.5.2", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "112": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "b530945a60804d736ea242ad4747263824da0e3a": {"b15c73ad": {"type": "FUNCTION", "size": 236, "library": "libdbc", "scope": "GLOBAL", "is_interface": false, "versions": ["2.6.0", "2.7.0", "2.7.1", "2.8.0"], "sdk": ["2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "112": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "8852037ded3acdda1e4eb59d100920f3009045df": {"b15c73ad": {"type": "FUNCTION", "size": 236, "library": "libdbc", "scope": "GLOBAL", "is_interface": false, "versions": ["3.0.0"], "sdk": ["3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "112": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "DPRINT": {"4653962c2d2bc4357cf1d8aac4b298ba8457a808": {"00000000": {"type": "FUNCTION", "size": 40, "library": "libdbc", "scope": "LOCAL", "is_interface": false, "versions": ["2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0"], "sdk": ["2.5.0", "2.5.2", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceDbcGetConnection": {"c0bee480cae189bfb72b89f325c2005d3a4a49d8": {"bc7b8420": {"type": "FUNCTION", "size": 244, "library": "libdbc", "scope": "GLOBAL", "is_interface": false, "versions": ["2.6.0", "2.7.0", "2.7.1", "2.8.0", "3.0.0"], "sdk": ["2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "origi)PS2SDB", 8192}, + std::string_view{R"PS2SDB(nal": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_26", "symbol": "SyncDCache"}, "40": {"type": "MIPS_26", "symbol": "DIntr"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_26", "symbol": "EIntr"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceDbcSendData3": {"befecf094e59e5127b667d714916201537778a01": {"4031f7fd": {"type": "FUNCTION", "size": 344, "library": "libdbc", "scope": "GLOBAL", "is_interface": false, "versions": ["2.6.0", "2.7.0", "2.7.1"], "sdk": ["2.6.0", "2.7.0", "2.7.1", "2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_26", "symbol": "WaitSema"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "192": {"type": "MIPS_26", "symbol": "sceSifCheckStatRpc"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "212": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "216": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "264": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "280": {"type": "MIPS_26", "symbol": "SignalSema"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "296": {"type": "MIPS_26", "symbol": "SignalSema"}, "300": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "5765bdf560da7947f7eadf89f4f608a1ec14586e": {"2994cab1": {"type": "FUNCTION", "size": 356, "library": "libdbc", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.0"], "sdk": ["2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_26", "symbol": "WaitSema"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "200": {"type": "MIPS_26", "symbol": "sceSifCheckStatRpc"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "220": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "224": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "272": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "288": {"type": "MIPS_26", "symbol": "SignalSema"}, "292": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "304": {"type": "MIPS_26", "symbol": "SignalSema"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "ef9a732d85c5ee7c229fc4bb3439ebc84ec8c95a": {"4ecb696a": {"type": "FUNCTION", "size": 356, "library": "libdbc", "scope": "GLOBAL", "is_interface": false, "versions": ["3.0.0"], "sdk": ["3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "76": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_26", "symbol": "WaitSema"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "200": {"type": "MIPS_26", "symbol": "sceSifCheckStatRpc"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "220": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "224": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "272": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "288": {"type": "MIPS_26", "symbol": "SignalSema"}, "292": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "304": {"type": "MIPS_26", "symbol": "SignalSema"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceDbcSearchPortSpecific": {"30049cdabd33b7074efea8d2f4f8d5f12b2ee610": {"62e28f37": {"type": "FUNCTION", "size": 136, "library": "libdbc", "scope": "GLOBAL", "is_interface": false, "versions": ["2.7.1", "2.8.0"], "sdk": ["2.7.1", "2.7.2-3", "2.7.2", "2.8.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "108": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "67252ce444fe87d3631e8b2bdde305a73cd7a7eb": {"62e28f37": {"type": "FUNCTION", "size": 136, "library": "libdbc", "scope": "GLOBAL", "is_interface": false, "versions": ["3.0.0"], "sdk": ["3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "108": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sceDbcGetIopDmabuff": {"ad70ddd7f854b152cdc15342d340d28334467674": {"46c02e91": {"type": "FUNCTION", "size": 96, "library": "libdbc", "scope": "LOCAL", "is_interface": false, "versions": ["3.0.0"], "sdk": ["3.0.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIP)PS2SDB", 8192}, + std::string_view{R"PS2SDB(S_26", "symbol": "sceSifCallRpc"}}}}}}, "libusbkb": {"sceUsbKbInit": {"e6497aee94b699992b8c1119634e5fa8ec6bbe23": {"478243f2": {"type": "FUNCTION", "size": 488, "library": "libusbkb", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0"], "sdk": ["2.5.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_26", "symbol": "CreateSema"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "168": {"type": "MIPS_26", "symbol": "scePrintf"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_26", "symbol": "sceUsbKbGetInfo", "scope": "LIBRARY", "original": ".text"}, "204": {"type": "MIPS_26", "symbol": "sceUsbKbSync", "scope": "LIBRARY", "original": ".text"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "248": {"type": "MIPS_26", "symbol": "malloc"}, "276": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "380": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "384": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "388": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "396": {"type": "MIPS_26", "symbol": "DisableIntc"}, "404": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "412": {"type": "MIPS_26", "symbol": "AddIntcHandler"}, "436": {"type": "MIPS_26", "symbol": "scePrintf"}, "440": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "452": {"type": "MIPS_26", "symbol": "EnableIntc"}}}, "39ea3e99": {"type": "FUNCTION", "size": 488, "library": "libusbkb", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.4"], "sdk": ["2.3.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_26", "symbol": "CreateSema"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "168": {"type": "MIPS_26", "symbol": "printf"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_26", "symbol": "sceUsbKbGetInfo", "scope": "LIBRARY", "original": ".text"}, "204": {"type": "MIPS_26", "symbol": "sceUsbKbSync", "scope": "LIBRARY", "original": ".text"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "248": {"type": "MIPS_26", "symbol": "malloc"}, "276": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "380": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "384": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "388": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "396": {"type": "MIPS_26", "symbol": "DisableIntc"}, "404": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "412": {"type": "MIPS_26", "symbol": "AddIntcHandler"}, "436": {"type": "MIPS_26", "symbol": "printf"}, "440": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "452": {"type": "MIPS_26", "symbol": "EnableIntc"}}}}, "8271bebf81285921a1d1de63e53c4cb524ccc6ca": {"5de2f7c2": {"type": "FUNCTION", "size": 472, "library": "libusbkb", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0"], "sdk": ["2.3.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_26", "symbol": "CreateSema"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "168": {"type": "MIPS_26", "symbol": "printf"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_26", "symbol": "sceUsbKbGetInfo", "scope": "LIBRARY", "original": ".text"}, "204": {"type": "MIPS_26", "symbol": "sceUsbKbSync", "scope": "LIBRARY", "original": ".text"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "248": {"type": "MIPS_26", "symbol": "malloc"}, "276": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "372": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "376": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "380": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "384": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "396": {"type": "MIPS_26", "symbol": "AddIntcHandler"}, "420": {"type": "MIPS_26", "symbol": "printf"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "436": {"type": "MIPS_26", "symbol": "EnableIntc"}}}}, "21d404a6048aea456279807f9d240c0a48e274a3": {"10759d24": {"type": "FUNCTION", "size": 504, "library": "libusbkb", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_26", "symbol": "CreateSema"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "164": {"type": "MIPS_26", "symbol": "scePrintf"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "180": {"type": "MIPS_26", "symbol": "sceUsbKbGetInfo", "scope": "LIBRARY", "original": ".text"}, "196": {"type": "MIPS_26", "symbol": "sceUsbKbSync", "scope": "LIBRARY", "original": ".text"}, "228": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "232": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "260": {"type": "MIPS_26", "symbol": "DeleteSema"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "288": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "388": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "392": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "396": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "400": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "412": {"type": "MIPS_26", "symbol": "AddIntcHandler"}, "428": {"type": "MIPS_26", "symbol": "DeleteSema"}, "432": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "4)PS2SDB", 8192}, + std::string_view{R"PS2SDB(48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "452": {"type": "MIPS_26", "symbol": "scePrintf"}, "456": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "468": {"type": "MIPS_26", "symbol": "EnableIntc"}}}}}, "sceUsbKbEnd": {"c848907639e35be070d241c09c2ae85c36b6f0cb": {"dbf2d407": {"type": "FUNCTION", "size": 164, "library": "libusbkb", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0"], "sdk": ["2.5.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "DisableIntc"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_26", "symbol": "RemoveIntcHandler"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_26", "symbol": "scePrintf"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_26", "symbol": "EnableIntc"}, "92": {"type": "MIPS_26", "symbol": "free"}, "100": {"type": "MIPS_26", "symbol": "DeleteSema"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "124": {"type": "MIPS_26", "symbol": "scePrintf"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}, "49ad63aa": {"type": "FUNCTION", "size": 164, "library": "libusbkb", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.4"], "sdk": ["2.3.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "DisableIntc"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_26", "symbol": "RemoveIntcHandler"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_26", "symbol": "printf"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_26", "symbol": "EnableIntc"}, "92": {"type": "MIPS_26", "symbol": "free"}, "100": {"type": "MIPS_26", "symbol": "DeleteSema"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "124": {"type": "MIPS_26", "symbol": "printf"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "f68bc74ab30332e886b62e2ea3c90b393a992196": {"75d0254c": {"type": "FUNCTION", "size": 108, "library": "libusbkb", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0"], "sdk": ["2.3.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "RemoveIntcHandler"}, "48": {"type": "MIPS_26", "symbol": "free"}, "56": {"type": "MIPS_26", "symbol": "DeleteSema"}}}}, "7eabddef79e2d9877d3c140239ae19215a2dd56c": {"6a0dbd8e": {"type": "FUNCTION", "size": 200, "library": "libusbkb", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "DIntr"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_26", "symbol": "RemoveIntcHandler"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_26", "symbol": "DisableIntc"}, "76": {"type": "MIPS_26", "symbol": "EIntr"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "100": {"type": "MIPS_26", "symbol": "scePrintf"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "152": {"type": "MIPS_26", "symbol": "scePrintf"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sceUsbKbGetInfo": {"3ea3ac321853e8615c26a04eff2da3ed5eaeb93a": {"5693ebef": {"type": "FUNCTION", "size": 156, "library": "libusbkb", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0"], "sdk": ["2.5.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_26", "symbol": "WaitSema"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_HI16", "symbol": "rpccall_end", "original": ".text"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "rpccall_end", "original": ".text"}, "84": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_26", "symbol": "scePrintf"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}, "1e671ba9": {"type": "FUNCTION", "size": 156, "library": "libusbkb", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0", "2.3.4"], "sdk": ["2.3.2", "2.3.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_26", "symbol": "WaitSema"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_HI16", "symbol": "rpccall_end", "original": ".text"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "rpccall_end", "original": ".text"}, "84": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_26", "symbol": "printf"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "e083b8b11e22edee3b3e0049c470e58d8bb7b3e3": {"ac398075": {"type": "FUNCTION", "size": 168, "library": "libusbkb", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_26", "symbol": "WaitSema"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_HI16", "symbol": "rpccall_end", "original": ".text"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "rpccall_end", "original": ".text"}, "92": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "112": {"type": "MIPS_26", "symbol": "scePrintf"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceUsbKbRead": {"48ab219bf4099951647099e36e064482a97569bf": {"9e6a9747": {"type": "FUNCTION", "size": 208, "library": "libusbkb", "scope": "GLOBAL", "is_interfa)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ce": true, "versions": ["2.5.0"], "sdk": ["2.5.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_26", "symbol": "WaitSema"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "rpccall_end", "original": ".text"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "rpccall_end", "original": ".text"}, "124": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_26", "symbol": "scePrintf"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}, "5d2a25c2": {"type": "FUNCTION", "size": 208, "library": "libusbkb", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0", "2.3.4"], "sdk": ["2.3.2", "2.3.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_26", "symbol": "WaitSema"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "rpccall_end", "original": ".text"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "rpccall_end", "original": ".text"}, "124": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_26", "symbol": "printf"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "d8486cf25ff5db02104a5b95b66e0e214799a920": {"a55e2091": {"type": "FUNCTION", "size": 220, "library": "libusbkb", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "WaitSema"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_HI16", "symbol": "rpccall_end", "original": ".text"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_LO16", "symbol": "rpccall_end", "original": ".text"}, "136": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "156": {"type": "MIPS_26", "symbol": "scePrintf"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sceUsbKbGetLocation": {"780a8ef1f2f26944f84a25d80bd523abfa0b588a": {"9e6a9747": {"type": "FUNCTION", "size": 208, "library": "libusbkb", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0"], "sdk": ["2.5.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_26", "symbol": "WaitSema"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "rpccall_end", "original": ".text"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "rpccall_end", "original": ".text"}, "124": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_26", "symbol": "scePrintf"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}, "5d2a25c2": {"type": "FUNCTION", "size": 208, "library": "libusbkb", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0", "2.3.4"], "sdk": ["2.3.2", "2.3.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_26", "symbol": "WaitSema"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "rpccall_end", "original": ".text"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "rpccall_end", "original": ".text"}, "124": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_26", "symbol": "printf"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "aad71364cc7a6015b19bd79022cabd000dae6644": {"a55e2091": {"type": "FUNCTION", "size": 220, "library": "libusbkb", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "WaitSema"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_HI16", "symbol": "rpccall_end", "original": ".text"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_LO16", "symbol": "rpccall_end", "original": ".)PS2SDB", 8192}, + std::string_view{R"PS2SDB(text"}, "136": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "156": {"type": "MIPS_26", "symbol": "scePrintf"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sceUsbKbSetLEDStatus": {"577269de54997bdf6d0b905dc0360e95d3df2579": {"2883e165": {"type": "FUNCTION", "size": 204, "library": "libusbkb", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0"], "sdk": ["2.5.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_26", "symbol": "WaitSema"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "rpccall_end", "original": ".text"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "rpccall_end", "original": ".text"}, "124": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_26", "symbol": "scePrintf"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}, "b29d2225": {"type": "FUNCTION", "size": 204, "library": "libusbkb", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0", "2.3.4"], "sdk": ["2.3.2", "2.3.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_26", "symbol": "WaitSema"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "rpccall_end", "original": ".text"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "rpccall_end", "original": ".text"}, "124": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_26", "symbol": "printf"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "112bf495a210406ef821b7f10217d7867f4fa237": {"e99bf1a9": {"type": "FUNCTION", "size": 216, "library": "libusbkb", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "WaitSema"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_HI16", "symbol": "rpccall_end", "original": ".text"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_LO16", "symbol": "rpccall_end", "original": ".text"}, "136": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "156": {"type": "MIPS_26", "symbol": "scePrintf"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sceUsbKbSetLEDMode": {"bc1e6cd2051336c8f500686b69b8893815576725": {"033c0d20": {"type": "FUNCTION", "size": 236, "library": "libusbkb", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0"], "sdk": ["2.5.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_26", "symbol": "WaitSema"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_HI16", "symbol": "rpccall_end", "original": ".text"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_LO16", "symbol": "rpccall_end", "original": ".text"}, "156": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "176": {"type": "MIPS_26", "symbol": "scePrintf"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}, "fd225f6b": {"type": "FUNCTION", "size": 236, "library": "libusbkb", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0", "2.3.4"], "sdk": ["2.3.2", "2.3.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_26", "symbol": "WaitSema"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_HI16", "symbol": "rpccall_end", "original": ".text"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_LO16", "symbol": "rpccall_end", "original": ".text"}, "156": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "176": {"type": "MIPS_26", "symbol": "printf"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "f9ba5f0b653802716253e880c926890c417738bf": {"05fa97ca": {"type": "FUNCTION", "size": 252, "library": "libusbkb", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_26",)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "symbol": "WaitSema"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_HI16", "symbol": "rpccall_end", "original": ".text"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "rpccall_end", "original": ".text"}, "172": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "192": {"type": "MIPS_26", "symbol": "scePrintf"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sceUsbKbSetRepeat": {"c15e0c1fa4450d6291253b4d9aff879866a26331": {"60bcc029": {"type": "FUNCTION", "size": 68, "library": "libusbkb", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0", "2.3.4", "2.5.0", "2.8.0"], "sdk": ["2.3.2", "2.3.4", "2.5.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceUsbKbSetCodeType": {"a920de4bbc01ef25a547dc515614afe9b7bc78d9": {"379e259f": {"type": "FUNCTION", "size": 76, "library": "libusbkb", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0", "2.3.4", "2.5.0", "2.8.0"], "sdk": ["2.3.2", "2.3.4", "2.5.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceUsbKbSetArrangement": {"6fa1ae3b3c5a6f271d52ebaf21edc962d0ca6a96": {"379e259f": {"type": "FUNCTION", "size": 76, "library": "libusbkb", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0", "2.3.4", "2.5.0", "2.8.0"], "sdk": ["2.3.2", "2.3.4", "2.5.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceUsbKbSync": {"af1c899877abdcd05c9e63956061cac697cc03a8": {"2306a219": {"type": "FUNCTION", "size": 144, "library": "libusbkb", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0", "2.3.4", "2.5.0"], "sdk": ["2.3.2", "2.3.4", "2.5.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_26", "symbol": "WaitSema"}, "60": {"type": "MIPS_26", "symbol": "SetResult", "scope": "LIBRARY", "original": ".text"}, "72": {"type": "MIPS_26", "symbol": "SignalSema"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_26", "symbol": "sceSifCheckStatRpc"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "SetResult", "scope": "LIBRARY", "original": ".text"}}}}, "1d715aa1ca03d4e00516c7bdf9b0b79dced959ec": {"92aeda0b": {"type": "FUNCTION", "size": 160, "library": "libusbkb", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_26", "symbol": "WaitSema"}, "76": {"type": "MIPS_26", "symbol": "SetResult", "scope": "LIBRARY", "original": ".text"}, "88": {"type": "MIPS_26", "symbol": "SignalSema"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "sceSifCheckStatRpc"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_26", "symbol": "SetResult", "scope": "LIBRARY", "original": ".text"}}}}}, "rpccall_end": {"3887f1de7e61e4ad19b4f8bb2aa8b864094372d9": {"c3092567": {"type": "FUNCTION", "size": 12, "library": "libusbkb", "scope": "LOCAL", "is_interface": false, "versions": ["2.3.0", "2.3.4", "2.5.0", "2.8.0"], "sdk": ["2.3.2", "2.3.4", "2.5.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "4": {"type": "MIPS_26", "symbol": "iSignalSema"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "SetResult": {"1a8f87419d257300576a3e3449db5ad1136c34ae": {"f380d673": {"type": "FUNCTION", "size": 100, "library": "libusbkb", "scope": "LOCAL", "is_interface": false, "versions": ["2.3.0", "2.3.4", "2.5.0", "2.8.0"], "sdk": ["2.3.2", "2.3.4", "2.5.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "SetResult_GetInfo": {"abcb713580b00f78432f83137080d0ce6ed20304": {"0acf4a34": {"type": "FUNCTION", "size": 88, "library": "libusbkb", "scope": "LOCAL", "is_interface": false, "versions": ["2.3.0", "2.3.4", "2.5.0", "2.8.0"], "sdk": ["2.3.2", "2.3.4", "2.5.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "SetResult_Read": {"1bc8d9272f53fbad79da060657701ea4435ac63e": {"21a15ff9": {"type": "FUNCTION", "size": 1396, "library": "libusbkb", "scope": "LOCAL", "is_interface": false, "versions": ["2.3.0", "2.3.4", "2.5.0", "2.8.0"], "sdk": ["2.3.2", "2.3.4", "2.5.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "272": {"type": "MIPS_26", "symbol": "cnv_keycode", "scope": "LIBRARY", "original": ".text"}, "344": {"type": "MIPS_26", "symbol": "clear_repbuf", "scope": "LIBRARY", "original": ".text"}, "368": {"type": "MIPS_26", "symbol": "push_repbuf", "scope": "LIBRARY", "original": ".text"}, "380": {"type": "MIPS_26", "symbol": "push_repbuf", "scope": "LIBRARY", "original": ".text"}, "408": {"type": "MIPS_26", "symbol": "push_repbuf", "scope": "LIBRARY", "original": ".text"}, "452": {"type": "MIPS_26", "symbol": "push_repbuf", "scope": "LIBRARY", "original": ".text"}, "480": {"type": "MIPS_26", "symbol": "push_repbuf", "scope": "LIBRARY", "original": ".text"}, "500": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "508": {"type": "MIPS_26", "symbol": "pop_repbuf", "scope": "LIBRARY", "original": ".text"}, "620": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "688": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "696": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "700": {"type": "MIPS_26", "symbol": "clear_repbuf", "scope": "LIBRARY", "original": ".text"}, "800": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "852": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "896": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "904": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "912": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "972": {"type": "MIPS_LO16")PS2SDB", 8192}, + std::string_view{R"PS2SDB(, "symbol": "", "original": ".bss"}, "1068": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "1104": {"type": "MIPS_26", "symbol": "cnv_keycode", "scope": "LIBRARY", "original": ".text"}, "1192": {"type": "MIPS_26", "symbol": "cnv_keycode", "scope": "LIBRARY", "original": ".text"}, "1268": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "1304": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "SetResult_GetLocation": {"4da1d4c630591ed6cabddbd3cb6e117b81bb9006": {"5f010440": {"type": "FUNCTION", "size": 76, "library": "libusbkb", "scope": "LOCAL", "is_interface": false, "versions": ["2.3.0", "2.3.4", "2.5.0", "2.8.0"], "sdk": ["2.3.2", "2.3.4", "2.5.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "SetResult_SetLEDStatus": {"5cfd7dc6fb775bcf2b59bf647dfb64e9a327476a": {"55159f42": {"type": "FUNCTION", "size": 32, "library": "libusbkb", "scope": "LOCAL", "is_interface": false, "versions": ["2.3.0", "2.3.4", "2.5.0", "2.8.0"], "sdk": ["2.3.2", "2.3.4", "2.5.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "SetResult_SetLEDMode": {"5cfd7dc6fb775bcf2b59bf647dfb64e9a327476a": {"55159f42": {"type": "FUNCTION", "size": 32, "library": "libusbkb", "scope": "LOCAL", "is_interface": false, "versions": ["2.3.0", "2.3.4", "2.5.0", "2.8.0"], "sdk": ["2.3.2", "2.3.4", "2.5.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "vblank_e_handler": {"c4bb1ede0ac2b7ae7a7db6e48cd224806d6e1e54": {"98bc67d7": {"type": "FUNCTION", "size": 132, "library": "libusbkb", "scope": "LOCAL", "is_interface": false, "versions": ["2.3.0", "2.3.4", "2.5.0", "2.8.0"], "sdk": ["2.3.2", "2.3.4", "2.5.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "clear_repbuf": {"32ad9956030682b576295b79619685bf1b282f52": {"b9e78b8c": {"type": "FUNCTION", "size": 48, "library": "libusbkb", "scope": "LOCAL", "is_interface": false, "versions": ["2.3.0", "2.3.4", "2.5.0", "2.8.0"], "sdk": ["2.3.2", "2.3.4", "2.5.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "push_repbuf": {"f361bb9d7639631fa70ecb7baf09a4512365fbbe": {"b9e78b8c": {"type": "FUNCTION", "size": 108, "library": "libusbkb", "scope": "LOCAL", "is_interface": false, "versions": ["2.3.0", "2.3.4", "2.5.0", "2.8.0"], "sdk": ["2.3.2", "2.3.4", "2.5.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "pop_repbuf": {"808b64f6922537897bc5929abea1041b4e2750a3": {"b9e78b8c": {"type": "FUNCTION", "size": 104, "library": "libusbkb", "scope": "LOCAL", "is_interface": false, "versions": ["2.3.0", "2.3.4", "2.5.0", "2.8.0"], "sdk": ["2.3.2", "2.3.4", "2.5.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "cnv_keycode": {"e2fa0707cc17aa8d89ba5c2f1d11897cbcf1d4e4": {"b9143a01": {"type": "FUNCTION", "size": 332, "library": "libusbkb", "scope": "LOCAL", "is_interface": false, "versions": ["2.3.0", "2.3.4", "2.5.0", "2.8.0"], "sdk": ["2.3.2", "2.3.4", "2.5.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "232": {"type": "MIPS_26", "symbol": "sceUsbKbCnvRawCode", "scope": "LIBRARY", "original": ".text"}}}}}, "sceUsbKbCnvRawCode": {"105bca6ad55bfd9e50912df90c562181f3ff13a3": {"da5d4a43": {"type": "FUNCTION", "size": 296, "library": "libusbkb", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0"], "sdk": ["2.5.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": "Keycode_table_101"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": "Keycode_table_101"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": "Keycode_table_106"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": "Keycode_table_106"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "Keycode_table_106_KANA"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": "Keycode_table_106_KANA"}, "152": {"type": "MIPS_26", "symbol": "scePrintf"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "212": {"type": "MIPS_26", "symbol": "cnv_keypad", "scope": "LIBRARY", "original": ".text"}}}, "641b5e60": {"type": "FUNCTION", "size": 296, "library": "libusbkb", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0", "2.3.4"], "sdk": ["2.3.2", "2.3.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": "Keycode_table_101"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": "Keycode_table_101"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": "Keycode_table_106"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": "Keycode_table_106"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "Keycode_table_106_KANA"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": "Keycode_table_106_KANA"}, "152": {"type": "MIPS_26", "symbol": "printf"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "212": {"type": "MIPS_26", "symbol": "cnv_keypad", "scope": "LIBRARY", "original": ".text"}}}}, "e5adb1bdb8d9ab4fffb34bce58dd88158773db88": {"485721e1": {"type": "FUNCTION", "size": 344, "library": "libusbkb", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": "Keycode_table_101"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": "Keycode_table_101"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": "Keycode_table_106"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": "Keycode_table_106"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": "Keycode_table_106_KANA"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": "Keycode_table_106_KANA"},)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "156": {"type": "MIPS_26", "symbol": "scePrintf"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "216": {"type": "MIPS_26", "symbol": "cnv_keypad", "scope": "LIBRARY", "original": ".text"}}}}}, "cnv_keypad": {"7315e302065ad0ef75648ce8c39c35317575f6a2": {"ee73d5a9": {"type": "FUNCTION", "size": 112, "library": "libusbkb", "scope": "LOCAL", "is_interface": false, "versions": ["2.3.0", "2.3.4", "2.5.0", "2.8.0"], "sdk": ["2.3.2", "2.3.4", "2.5.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": "Keypad_table"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "Keypad_table"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": "Keypad_table"}}}}}, "sceUsbKbSetReadMode": {"a7c0613e6caeeee599b9f5fb76ef407c8d842e7d": {"379e259f": {"type": "FUNCTION", "size": 108, "library": "libusbkb", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.0", "2.3.4", "2.5.0", "2.8.0"], "sdk": ["2.3.2", "2.3.4", "2.5.0", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceUsbKbClearRbuf": {"0a5c586a749837ef6f7d0db59ff904d428af455c": {"864e02cb": {"type": "FUNCTION", "size": 220, "library": "libusbkb", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.0"], "sdk": ["2.5.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_26", "symbol": "WaitSema"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_HI16", "symbol": "rpccall_end", "original": ".text"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "rpccall_end", "original": ".text"}, "116": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_26", "symbol": "scePrintf"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}, "ffa50583": {"type": "FUNCTION", "size": 220, "library": "libusbkb", "scope": "GLOBAL", "is_interface": true, "versions": ["2.3.4"], "sdk": ["2.3.4"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_26", "symbol": "WaitSema"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_HI16", "symbol": "rpccall_end", "original": ".text"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "rpccall_end", "original": ".text"}, "116": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_26", "symbol": "printf"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "faef0aa5633a43564d96beadc62138f9edf9a934": {"9528391f": {"type": "FUNCTION", "size": 232, "library": "libusbkb", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_26", "symbol": "WaitSema"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_HI16", "symbol": "rpccall_end", "original": ".text"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "rpccall_end", "original": ".text"}, "128": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_26", "symbol": "scePrintf"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}}, "libmtap": {"DPRINT": {"4653962c2d2bc4357cf1d8aac4b298ba8457a808": {"00000000": {"type": "FUNCTION", "size": 40, "library": "libmtap", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.6.1", "2.0.7", "2.1.0", "2.1.4", "2.2.4", "2.3.2", "2.4.2", "2.4.3", "2.5.2", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {}}}, "e021138472a567e627a0af2d1dead467d252a340": {"00000000": {"type": "FUNCTION", "size": 56, "library": "libmtap", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {}}}}, "sceMtapInit": {"e3c32a76081ce4174e3686a46fee97c66ab52591": {"1103aea9": {"type": "FUNCTION", "size": 640, "library": "libmtap", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.0.7", "2.1.0", "2.1.4", "2.2.4", "2.3.2", "2.4.2", "2.4.3"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "112": {"type": "MIPS_26", "symbol": "exit"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "208": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "216": {"type": "MIPS_26", "symbol": "exit"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "292": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "308": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "312": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "320": {"type": "MIPS_26", "symbol": "exit"}, "340": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "380": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "396": {"type": "MIPS_26", "symbol": "sceSi)PS2SDB", 8192}, + std::string_view{R"PS2SDB(fBindRpc"}, "412": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "416": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "420": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "424": {"type": "MIPS_26", "symbol": "exit"}, "444": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "484": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "500": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "516": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "520": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "524": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "528": {"type": "MIPS_26", "symbol": "exit"}, "544": {"type": "MIPS_26", "symbol": "sceMtapGetModVersion", "scope": "LIBRARY", "original": ".text"}, "568": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "572": {"type": "MIPS_26", "symbol": "printf"}, "576": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "580": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "588": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "600": {"type": "MIPS_26", "symbol": "printf"}}}, "69f49de8": {"type": "FUNCTION", "size": 640, "library": "libmtap", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.2", "2.5.4", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "112": {"type": "MIPS_26", "symbol": "exit"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "208": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "216": {"type": "MIPS_26", "symbol": "exit"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "292": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "308": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "312": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "320": {"type": "MIPS_26", "symbol": "exit"}, "340": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "380": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "396": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "412": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "416": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "420": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "424": {"type": "MIPS_26", "symbol": "exit"}, "444": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "484": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "500": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "516": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "520": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "524": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "528": {"type": "MIPS_26", "symbol": "exit"}, "544": {"type": "MIPS_26", "symbol": "sceMtapGetModVersion", "scope": "LIBRARY", "original": ".text"}, "568": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "572": {"type": "MIPS_26", "symbol": "scePrintf"}, "576": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "580": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "588": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "600": {"type": "MIPS_26", "symbol": "scePrintf"}}}}, "2d4a6f825fd6260c7c281d549d29de7f1d169aa8": {"0667aadb": {"type": "FUNCTION", "size": 576, "library": "libmtap", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.6.0", "2.7.0", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "172": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "260": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "272": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "292": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "332": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "348": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "360": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "380": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "420": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "436": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "448": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "464": {"type": "MIPS_26", "symbol": "sceMtapGetModVersion", "scope": "LIBRARY", "original": ".text"}, "488": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "492": {"type": "MIPS_26", "symbol": "scePrintf"}, "496": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "500": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "508": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "520": {"type": "MIPS_26", "symbol": "scePrintf"}, "536": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "540": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "cab2f713a98b4d801da2275ff38a090d3b3f7370": {"2f2f0de4": {"type": "FUNCTION", "size": 604, "library": "libmtap", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "112": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "120": {"type": "MIPS_26", "symbol": "exit"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "208": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "224": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "232": {"type": "MIPS_26", "symbol": "exit"}, "244": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "248": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "320": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "336": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"},)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "344": {"type": "MIPS_26", "symbol": "exit"}, "356": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "360": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "368": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "432": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "448": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "452": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "456": {"type": "MIPS_26", "symbol": "exit"}, "468": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "472": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "480": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "544": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "560": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "564": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "568": {"type": "MIPS_26", "symbol": "exit"}}}}, "614e79980480094567fe785f4c5923e459571353": {"06c7f015": {"type": "FUNCTION", "size": 256, "library": "libmtap", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "112": {"type": "MIPS_26", "symbol": "sceMtapGetModVersion", "scope": "LIBRARY", "original": ".text"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "140": {"type": "MIPS_26", "symbol": "scePrintf"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "168": {"type": "MIPS_26", "symbol": "scePrintf"}, "184": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "200": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "216": {"type": "MIPS_26", "symbol": "memset"}, "224": {"type": "MIPS_26", "symbol": "sceMtapSetWorkAddr", "scope": "LIBRARY", "original": ".text"}}}}, "f9fb7f38c795c550f38c2d931c0068aab7508948": {"6387458a": {"type": "FUNCTION", "size": 564, "library": "libmtap", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.6.1"], "compiler_versions": ["2.3.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "112": {"type": "MIPS_26", "symbol": "exit"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "192": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "208": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "216": {"type": "MIPS_26", "symbol": "exit"}, "228": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "232": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "296": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "312": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "320": {"type": "MIPS_26", "symbol": "exit"}, "332": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "336": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "344": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "400": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "416": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "420": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "424": {"type": "MIPS_26", "symbol": "exit"}, "436": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "440": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "448": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "504": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "520": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "524": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "528": {"type": "MIPS_26", "symbol": "exit"}}}}}, "sceMtapPortOpen": {"b3c3e39bd5dbacf481831edf5a59bbddcbbc5ff9": {"56481704": {"type": "FUNCTION", "size": 108, "library": "libmtap", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.6.1", "1.6.5", "2.0.7", "2.1.0", "2.1.4", "2.2.4", "2.3.2", "2.4.2", "2.4.3", "2.5.2", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.1", "3.0.2"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sceMtapPortClose": {"b3c3e39bd5dbacf481831edf5a59bbddcbbc5ff9": {"56481704": {"type": "FUNCTION", "size": 108, "library": "libmtap", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.6.1", "1.6.5", "2.0.7", "2.1.0", "2.1.4", "2.2.4", "2.3.2", "2.4.2", "2.4.3", "2.5.2", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "63168e5ae2a80ec3362bff6b97a7eeec464418d9": {"56481704": {"type": "FUNCTION", "size": 108, "library": "libmtap", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sceMtapGetConnection": {"b3c3e39bd5dbacf481831edf5a59bbddcbbc5ff9": {"56481704": {"type": "FUNCTION", "size": 108, "library": "libmtap", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.6.1", )PS2SDB", 8192}, + std::string_view{R"PS2SDB("1.6.5", "2.0.7", "2.1.0", "2.1.4", "2.2.4", "2.3.2", "2.4.2", "2.4.3", "2.5.2", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "ee2ff5297d99f5cd59b889e6b7060428551649fa": {"56481704": {"type": "FUNCTION", "size": 108, "library": "libmtap", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sceMtapChangeThreadPriority": {"4ab1503670b25fb4a3f81db6bc4e631e7788d49e": {"ebbeb8b6": {"type": "FUNCTION", "size": 112, "library": "libmtap", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.0.7", "2.1.0", "2.1.4", "2.2.4", "2.3.2", "2.4.2", "2.4.3", "2.5.2", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "38ca5f350c184051fa0577891a9da8d65453d124": {"ebbeb8b6": {"type": "FUNCTION", "size": 112, "library": "libmtap", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sceMtapGetModVersion": {"1491fddd0e7d1c3d395524e1e0c5abb1312b21dd": {"ac4fd92d": {"type": "FUNCTION", "size": 100, "library": "libmtap", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.0.7", "2.1.0", "2.1.4", "2.2.4", "2.3.2", "2.4.2", "2.4.3", "2.5.2", "2.5.4", "2.5.5", "2.6.0", "2.7.0", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "092c93afc5dabb17d4736901242c0d18783c853b": {"ac4fd92d": {"type": "FUNCTION", "size": 100, "library": "libmtap", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sceMtapGetSlotNumber": {"b3c3e39bd5dbacf481831edf5a59bbddcbbc5ff9": {"56481704": {"type": "FUNCTION", "size": 108, "library": "libmtap", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.6.1", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sceMtapChangeSlot": {"4ab1503670b25fb4a3f81db6bc4e631e7788d49e": {"ebbeb8b6": {"type": "FUNCTION", "size": 112, "library": "libmtap", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["1.4.2", "1.4.4", "1.6.1", "1.6.5"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_26", "symbol": "DPRINT", "original": ".text"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sceMtapSetWorkAddr": {"ed6d6381767476b41164b0fe479069ce6f14154a": {"eee9fbba": {"type": "FUNCTION", "size": 92, "library": "libmtap", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceMtapEnd": {"a7b635c3cb6395c55a8d768a05c68fd80a723e14": {"6f95976c": {"type": "FUNCTION", "size": 28, "library": "libmtap", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceMtapSetWorkAddr", "scope": "LIBRARY")PS2SDB", 8192}, + std::string_view{R"PS2SDB(, "original": ".text"}}}}}, "sceMtapGetInfo": {"2d1394da1c59a0b542fe12fd6a3ef63711010969": {"e55c8b2a": {"type": "FUNCTION", "size": 224, "library": "libmtap", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "SyncDCache"}, "64": {"type": "MIPS_26", "symbol": "DIntr"}, "128": {"type": "MIPS_26", "symbol": "EIntr"}}}}}}, "libssyn": {"sceSSyn_SetMasterVolume": {"c19c49cefcba74a385fb9b45c7a5e2729ec2c2a0": {"5370722e": {"type": "FUNCTION", "size": 80, "library": "libssyn", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.1.3", "2.7.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "sceSynthesizerSetMasterVolume", "scope": "LIBRARY"}}}}}, "sceSSyn_SetOutPortVolume": {"d81e96b66a210039364e0fdb5cc667037a239984": {"8f93bc01": {"type": "FUNCTION", "size": 108, "library": "libssyn", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.1.3", "2.7.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "ss_output"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": "ss_output"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "ss_output"}}}}}, "sceSSyn_SetOutputAssign": {"b24b5475a7589306f024da108b975bdf14c21f85": {"0949914f": {"type": "FUNCTION", "size": 324, "library": "libssyn", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.1.3", "2.7.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerNumberOfMidiPort"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerNumberOfMidiPort"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerChPartTbl"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerChPartTbl"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": "ss_output"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": "ss_output"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": "ss_output"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": "ss_output"}, "300": {"type": "MIPS_26", "symbol": "sceSynthesizerChangeOutAttrib", "scope": "LIBRARY"}}}}}, "sceSSyn_SetPortVolume": {"70e9d9b2bdea208c4d1621383e710a1a158e3944": {"8f39eef5": {"type": "FUNCTION", "size": 192, "library": "libssyn", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.1.3", "2.7.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerNumberOfMidiPort"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerNumberOfMidiPort"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerChPartTbl"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerChPartTbl"}, "140": {"type": "MIPS_26", "symbol": "sceSynthesizerChangeOutVol", "scope": "LIBRARY"}}}}}, "sceSSyn_SendShortMsg": {"eb4c4ee966dfecddec9917c32c4fbe0fc6e105ab": {"b8a84e53": {"type": "FUNCTION", "size": 64, "library": "libssyn", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.1.3", "2.7.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerNumberOfMidiPort"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerNumberOfMidiPort"}, "40": {"type": "MIPS_26", "symbol": "sceSynthesizerSendShortMessage", "scope": "LIBRARY"}}}}}, "sceSSyn_SendExcMsg": {"c0d1d51c2b24da22bb019b9e3739c0d39feac2ae": {"bae1b0f3": {"type": "FUNCTION", "size": 48, "library": "libssyn", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.1.3", "2.7.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerNumberOfMidiPort"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerNumberOfMidiPort"}}}}}, "sceSSyn_SendRpnMsg": {"bf7a27136368611d1b39f63a919dd334190cfb5a": {"4b74be38": {"type": "FUNCTION", "size": 128, "library": "libssyn", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.1.3", "2.7.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerNumberOfMidiPort"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerNumberOfMidiPort"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerChPartTbl"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerChPartTbl"}, "104": {"type": "MIPS_26", "symbol": "sceSynthesizerChangePartBendSens", "scope": "LIBRARY"}}}}}, "sceSSyn_SendNrpnMsg": {"3a0f8470a5ff00a902a60cac987024801e3be71e": {"bae1b0f3": {"type": "FUNCTION", "size": 56, "library": "libssyn", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.1.3", "2.7.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerNumberOfMidiPort"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerNumberOfMidiPort"}}}}}, "sceSSyn_SetChPriority": {"0a984b5f0f41280e93899cdaade8359442ac86d5": {"d73dc60c": {"type": "FUNCTION", "size": 100, "library": "libssyn", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.1.3", "2.7.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerNumberOfMidiPort"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerNumberOfMidiPort"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerChPartTbl"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerChPartTbl"}, "76": {"type": "MIPS_26", "symbol": "sceSynthesizerSetRVoice", "scope": "LIBRARY"}}}}}, "sceSSyn_SetPortMaxPoly": {"e0579a0a082473be0c5714c058a1e0c7de2d07f2": {"11a19402": {"type": "FUNCTION", "size": 60, "library": "libssyn", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.1.3", "2.7.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerNumberOfMidiPort"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerNumberOfMidiPort"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": "portVoiceLimit"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": "portVoiceLimit"}}}}}, "sceSSyn_ClearBreakAtick": {"606e9310fe1a97d8e306880f557e4b1a4d4e6133": {"b1bd1da6": {"type": "FUNCTION", "size": 36, "library": "libssyn", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.1.3", "2.7.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "atickBreak"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": "atickBreaked"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": "atickBreak"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "atickBreaked"}}}}}, "sceSSyn_BreakAtick": {"1cdf93fb10610befb1ea785530a6fe1383013b74": {"a59ef1ec": {"type": "FUNCTION", "size": 32, "library": "libssyn", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.1.3", "2.7.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": "atickBreak"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": "atickBreak"}}}}}, "sceSSyn_SetOutputMode": {"481bd3eeca04a66d1c4086261820cd2cf385ba0f": {"0e7ba8b4": {"type": "FUNCTION", "size": 48, "library": "libssyn", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.1.3", "2.7.1"], "compiler_versions": ["2.4.)PS2SDB", 8192}, + std::string_view{R"PS2SDB(1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerMonoOut"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerMonoOut"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerMonoOut"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerMonoOut"}}}}}, "sceSSyn_SetTvaEnvMode": {"f1041c4afbd28d261f08a769772805c9748d93af": {"0e7ba8b4": {"type": "FUNCTION", "size": 48, "library": "libssyn", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.1.3", "2.7.1"], "compiler_versions": ["2.4.1.01", "2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerTvaEnvReleaseMode"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerTvaEnvReleaseMode"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerTvaEnvReleaseMode"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerTvaEnvReleaseMode"}}}}}, "sceSynthesizerSendShortMessage": {"742f0f68d75babad0a801e96a8b16888f21bb597": {"6e2d80e3": {"type": "FUNCTION", "size": 316, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.1.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerNumberOfMidiPort"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerNumberOfMidiPort"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerChPartTbl"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerChPartTbl"}, "204": {"type": "MIPS_26", "symbol": "sceSynthesizerAssignNoteOn", "scope": "LIBRARY"}, "228": {"type": "MIPS_26", "symbol": "sceSynthesizerAssignNoteOff", "scope": "LIBRARY"}, "252": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "276": {"type": "MIPS_26", "symbol": "sceSynthesizerChangePartPitchBend", "scope": "LIBRARY"}, "296": {"type": "MIPS_26", "symbol": "sceSynthesizerSelectPatch", "scope": "LIBRARY"}}}, "dac6fdd1": {"type": "FUNCTION", "size": 316, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerNumberOfMidiPort"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerNumberOfMidiPort"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerChPartTbl"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerChPartTbl"}, "204": {"type": "MIPS_26", "symbol": "sceSynthesizerAssignNoteOn", "scope": "LIBRARY"}, "228": {"type": "MIPS_26", "symbol": "sceSynthesizerAssignNoteOff", "scope": "LIBRARY"}, "252": {"type": "MIPS_26", "symbol": "ControlChangeMessage", "scope": "LIBRARY", "original": ".text"}, "276": {"type": "MIPS_26", "symbol": "sceSynthesizerChangePartPitchBend", "scope": "LIBRARY"}, "296": {"type": "MIPS_26", "symbol": "sceSynthesizerSelectPatch", "scope": "LIBRARY"}}}}}, "ControlChangeMessage": {"5eda6a944c990d6dd272234ebe4ae41b939b5f39": {"74e798e8": {"type": "FUNCTION", "size": 1104, "library": "libssyn", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_26", "symbol": "sceSynthesizerChangePartModuration", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "sceSynthesizerChangePartVolume", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "sceSynthesizerChangePartExpression", "scope": "LIBRARY"}, "132": {"type": "MIPS_26", "symbol": "sceSynthesizerAssignHoldChange", "scope": "LIBRARY"}, "160": {"type": "MIPS_26", "symbol": "sceSynthesizerChangePortamentoTime", "scope": "LIBRARY"}, "188": {"type": "MIPS_26", "symbol": "sceSynthesizerChangePanpot", "scope": "LIBRARY"}, "208": {"type": "MIPS_26", "symbol": "sceSynthesizerChangePortamento", "scope": "LIBRARY"}, "496": {"type": "MIPS_26", "symbol": "sceSynthesizerChangePartBendSens", "scope": "LIBRARY"}, "696": {"type": "MIPS_26", "symbol": "sceSynthesizerChangeNrpnLfoRate", "scope": "LIBRARY"}, "720": {"type": "MIPS_26", "symbol": "sceSynthesizerChangeNrpnLfoDepth", "scope": "LIBRARY"}, "760": {"type": "MIPS_26", "symbol": "sceSynthesizerChangeNrpnCutOff", "scope": "LIBRARY"}, "952": {"type": "MIPS_26", "symbol": "sceSynthesizerChangePartModuration", "scope": "LIBRARY"}, "964": {"type": "MIPS_26", "symbol": "sceSynthesizerChangePartExpression", "scope": "LIBRARY"}, "976": {"type": "MIPS_26", "symbol": "sceSynthesizerAssignHoldChange", "scope": "LIBRARY"}, "988": {"type": "MIPS_26", "symbol": "sceSynthesizerChangePanpot", "scope": "LIBRARY"}, "1000": {"type": "MIPS_26", "symbol": "sceSynthesizerChangePortamento", "scope": "LIBRARY"}, "1012": {"type": "MIPS_26", "symbol": "sceSynthesizerChangePartPitchBend", "scope": "LIBRARY"}, "1032": {"type": "MIPS_26", "symbol": "_clr_nrpm_allmod", "scope": "LIBRARY"}, "1052": {"type": "MIPS_26", "symbol": "sceSynthesizerAssignAllNoteOff", "scope": "LIBRARY"}, "1080": {"type": "MIPS_26", "symbol": "sceSynthesizerAssignAllSoundOff", "scope": "LIBRARY"}}}}}, "sceSynthesizerSetMasterVolume": {"04e58d7100c34f24a072d3cf5ae997c368334216": {"64f461b1": {"type": "FUNCTION", "size": 28, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerMasterVolume"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerMasterVolume"}}}}}, "sceSynthesizerHsMessage": {"efd6e179dbba98464c0fb2a531f8809da96fca1f": {"eb5db340": {"type": "FUNCTION", "size": 456, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerNumberOfMidiPort"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerNumberOfMidiPort"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerChPartTbl"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerChPartTbl"}, "308": {"type": "MIPS_26", "symbol": "sceSynthesizerAssignNoteOn", "scope": "LIBRARY"}, "332": {"type": "MIPS_26", "symbol": "sceSynthesizerAssignNoteOff", "scope": "LIBRARY"}, "360": {"type": "MIPS_26", "symbol": "sceSynthesizerChangePartHsExpression", "scope": "LIBRARY"}, "392": {"type": "MIPS_26", "symbol": "sceSynthesizerChangeHsPanpot", "scope": "LIBRARY"}, "436": {"type": "MIPS_26", "symbol": "sceSynthesizerChangePartHsPitchBend", "scope": "LIBRARY"}}}}}, "sceSynthesizerTransposeMatrix": {"24cd173775297d504e6c50b889b6f84dd4652bf6": {"d3e72eac": {"type": "FUNCTION", "size": 120, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerMatrixes"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerMatrixes"}}}}}, "sceSynthesizerCopyOutput": {"6b0fadb6b9e661af8beea93b759cde939089455d": {"ed19ac92": {"type": "FUNCTION", "size": 200, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerOutProcCnt"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerOutProcCnt"}}}}}, "sceSynthesizerClearSpr": {"048e04c28fac35f1d3e66419cc865d34824c19cc": {"00000000": {"type": "FUNCTION", "size": 132, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceSynthesizerCent2PhaseInc": {"ed3bebe2d285fa)PS2SDB", 8192}, + std::string_view{R"PS2SDB(db3bb421846facb1cb88a16988": {"d7af8799": {"type": "FUNCTION", "size": 84, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "_sceSSyn_log2lin", "scope": "LIBRARY"}}}}}, "sceSynthesizerCalcPortamentPitch": {"fe47062097527a6e419c04ae91e9c010be7d6faf": {"00000000": {"type": "FUNCTION", "size": 56, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceSynthesizerReadNoise": {"7b64ff6ffc1b465c013bcd8b7423dd1cbb0ffdc6": {"00000000": {"type": "FUNCTION", "size": 100, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceSynthesizerReadNoiseAdd": {"63ac88ac7b14a61622da9cf86536d23760d417eb": {"00000000": {"type": "FUNCTION", "size": 108, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceSynthesizerReadSample16": {"21d677c2aed7e1fe9cdb28666bca39027edfad08": {"00000000": {"type": "FUNCTION", "size": 148, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceSynthesizerReadSample16Add": {"c51fadc23f747971e0466aa1d88d8fb4f45d980f": {"00000000": {"type": "FUNCTION", "size": 156, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceSynthesizerReadSample8": {"247dde5a34ca37c0e6c5ce3a5c51c72b49873897": {"00000000": {"type": "FUNCTION", "size": 144, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceSynthesizerReadSample8Add": {"1c9379b8b7047789bd67a231467599241f30142b": {"00000000": {"type": "FUNCTION", "size": 152, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceSynthesizerSetupNewNoise": {"80c451db860c0c660e812fd239409dbd735f8dbc": {"00000000": {"type": "FUNCTION", "size": 76, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceSynthesizerSetuptEnv": {"446bf2ab024e76e6668d51bd7f523350c7aac902": {"f8a0daa8": {"type": "FUNCTION", "size": 316, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"104": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerEnvDeltaCoef"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerEnvDeltaCoef"}}}}}, "sceSynthesizerCalcEnv": {"27f22cb1842bf7c9ae13ce337690b0699e1c734c": {"78c47ca5": {"type": "FUNCTION", "size": 124, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"72": {"type": "MIPS_26", "symbol": "sceSynthesizerSetuptEnv", "scope": "LIBRARY", "original": ".text"}}}}}, "sceSynthesizerSetupReleaseEnv": {"6ce5f824d9597e0a210e602f50852f6889b78734": {"b6e81821": {"type": "FUNCTION", "size": 256, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"80": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerTvaEnvReleaseMode"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerTvaEnvReleaseMode"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerEnvDeltaCoef"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerEnvDeltaCoef"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerEnvDeltaCoef"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerEnvDeltaCoef"}}}}}, "sceSynthesizerSetupTruncateTvaEnv": {"47ded579ae7aed01ea1e6854810510e8539c79d6": {"94ac0976": {"type": "FUNCTION", "size": 176, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"108": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerEnvDeltaCoef"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerEnvDeltaCoef"}}}}}, "sceSynthesizerSetupTruncateTvfPitchEnv": {"270f1f1b4e3707006adcd23ee443154dd9221b6c": {"00000000": {"type": "FUNCTION", "size": 12, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceSynthesizerAmpProcNI": {"8de3db76f5b55bb43ebc5219bf34a76a91e9edf1": {"bae1b0f3": {"type": "FUNCTION", "size": 172, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerSamples"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerSamples"}}}}}, "sceSynthesizerAmpProcI": {"cea269d0a53b233a3c2970c164b122413d7e8557": {"21dd4436": {"type": "FUNCTION", "size": 212, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerTvaDiv"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerTvaDiv"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerSamples"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerSamples"}}}}}, "sceSynthesizerLfoNone": {"59c4ad585725221cb608fd89e02c4e900ceeacc5": {"00000000": {"type": "FUNCTION", "size": 12, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceSynthesizerLfoSawUp": {"ed68714ea647b21329d3839a9c4c0bbf84d39443": {"00000000": {"type": "FUNCTION", "size": 20, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceSynthesizerLfoSawDown": {"c550ea9f576dd17afa133bd8e118b0764caae704": {"00000000": {"type": "FUNCTION", "size": 20, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceSynthSizerLfoTriangle": {"5d773a74477280815057a164013b1bf3bbdba350": {"00000000": {"type": "FUNCTION", "size": 76, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceSynthesizerLfoSquare": {"c0f647e13ffce4fe20e5350fa20879f74674f4b3": {"00000000": {"type": "FUNCTION", "size": 44, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceSynthsizerLfoNoise": {"6844e5768c5f1ecd25a8cd0bb2a16a30f13c714c": {"00000000": {"type": "FUNCTION", "size": 68, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceSynthesizerLfoProc": {"3092f878ecdee40e06724a73ce6a7ebd24b178e8": {"00000000": {"type": "FUNCTION", "size": 160, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceSynthesizerSetupLfo": {"81b2b3b429dbe51a52553060e9b3c08fa9abba32": {"5bf7451f": {"type": "FUNCTION", "size": 416, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: "MIPS_HI16", "symbol": "", "original": "sceSynthesizerFrameTime"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerFrameTime"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerFrameTime"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerFrameTimeDiv"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerFrameTimeDiv"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerFrameTime"}, "248": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "276": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "292": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "308": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "312": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "324": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "328": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "340": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "344": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "348": {"type": "MIPS_26", "symbol": "sceSynthesizerSetupNewNoise", "scope": "LIBRARY"}, "372": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "380": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}}}}}, "sceSynthesizerCalcTvfCoefAll": {"06eb8a3821906eed49625ed41252b55c58c9bf2f": {"af328c55": {"type": "FUNCTION", "size": 64, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerXcoef"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerXcoef"}, "56": {"type": "MIPS_26", "symbol": "sceSynthesizerCalcTvfCoefF0", "scope": "LIBRARY", "original": ".text"}}}}}, "sceSynthesizerCalcTvfCoefF0": {"b89f19b3ee918d8236236aac40148d9fe2eada28": {"0433ffa8": {"type": "FUNCTION", "size": 288, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerF0Limit"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerF0Limit"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerYcoef"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerYcoef"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerYcoef"}}}}}, "sceSynthesizerTvfProcNI": {"6d2aaf6d4fbb76c1667c245d4d53cfaaaf71f4c5": {"09ba5e76": {"type": "FUNCTION", "size": 260, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerSamples"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerSamples"}}}}}, "sceSynthesizerTvfProcI": {"6d7f38e494f705c7add78fe1fce08d3748ddd14d": {"7bf62b6e": {"type": "FUNCTION", "size": 408, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerTvfDiv"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerTvfDiv"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerSamples"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerSamples"}}}}}, "_sceSSyn_log2lin": {"8c2ca3fe8b52ab5967e5d9519156fa563a85e939": {"e4107a1a": {"type": "FUNCTION", "size": 308, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "_clrMem": {"f62b939d8b44d048ed05458c181020c83e9085c0": {"00000000": {"type": "FUNCTION", "size": 292, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "procVoiceStop": {"e5271637410d34632f9c358576e48909feae76a0": {"1a2197b2": {"type": "FUNCTION", "size": 216, "library": "libssyn", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerStartVoicesLink"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerStartVoicesLink"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerStartVoicesLink"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerStartVoicesLink"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerFreeVoicesLink"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerFreeVoicesLink"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerFreeVoicesLink"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerFreeVoicesLink"}, "132": {"type": "MIPS_26", "symbol": "_sceSSyn_popVoiceFromPLink", "scope": "LIBRARY"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": "_sceSSyn_portVoiceCount"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": "_sceSSyn_portVoiceCount"}}}}}, "phaseChange2Release": {"84e52360505608a174b753459e17209f7a5b3986": {"7a54c170": {"type": "FUNCTION", "size": 164, "library": "libssyn", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "sceSynthesizerSetupReleaseEnv", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "sceSynthesizerSetupReleaseEnv", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "sceSynthesizerSetupReleaseEnv", "scope": "LIBRARY"}, "136": {"type": "MIPS_26", "symbol": "procVoiceStop", "scope": "LIBRARY", "original": ".text"}}}}}, "breakVoice": {"9f9f6a1c22e050c4e6a02a2b57b0d15bf7d67061": {"1ff43ff0": {"type": "FUNCTION", "size": 84, "library": "libssyn", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "procVoiceStop", "scope": "LIBRARY", "original": ".text"}}}}}, "procParaVoices": {"e417bfc4268a409aa1cd45a5f86f80594eefabb9": {"ff4f01e9": {"type": "FUNCTION", "size": 1988, "library": "libssyn", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"],)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "compiler_versions": ["2.4.1.01"], "relocations": {"140": {"type": "MIPS_26", "symbol": "sceSynthesizerLfoProc", "scope": "LIBRARY"}, "160": {"type": "MIPS_26", "symbol": "sceSynthesizerLfoProc", "scope": "LIBRARY"}, "228": {"type": "MIPS_26", "symbol": "sceSynthesizerCalcEnv", "scope": "LIBRARY"}, "348": {"type": "MIPS_26", "symbol": "_sceSSyn_log2lin", "scope": "LIBRARY"}, "384": {"type": "MIPS_26", "symbol": "sceSynthesizerCalcTvfCoefF0", "scope": "LIBRARY"}, "624": {"type": "MIPS_26", "symbol": "sceSynthesizerCalcEnv", "scope": "LIBRARY"}, "716": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerMasterVolume"}, "724": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerMasterVolume"}, "792": {"type": "MIPS_26", "symbol": "sceSynthesizerCalcPortamentPitch", "scope": "LIBRARY"}, "856": {"type": "MIPS_26", "symbol": "sceSynthesizerCalcEnv", "scope": "LIBRARY"}, "984": {"type": "MIPS_26", "symbol": "sceSynthesizerCent2PhaseInc", "scope": "LIBRARY"}, "1000": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerSamples"}, "1008": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerSamples"}, "1036": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerSamples"}, "1200": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerSamples"}, "1208": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerSamples"}, "1212": {"type": "MIPS_26", "symbol": "sceSynthesizerReadNoiseAdd", "scope": "LIBRARY"}, "1228": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerSamples"}, "1236": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerSamples"}, "1240": {"type": "MIPS_26", "symbol": "sceSynthesizerReadNoise", "scope": "LIBRARY"}, "1316": {"type": "MIPS_26", "symbol": "sceSynthesizerTvfProcI", "scope": "LIBRARY"}, "1344": {"type": "MIPS_26", "symbol": "sceSynthesizerTvfProcNI", "scope": "LIBRARY"}, "1376": {"type": "MIPS_26", "symbol": "sceSynthesizerAmpProcI", "scope": "LIBRARY"}, "1400": {"type": "MIPS_26", "symbol": "sceSynthesizerAmpProcNI", "scope": "LIBRARY"}, "1412": {"type": "MIPS_26", "symbol": "sceSynthesizerTransposeMatrix", "scope": "LIBRARY"}, "1420": {"type": "MIPS_HI16", "symbol": "", "original": "pSceSynthesizerOutArray"}, "1424": {"type": "MIPS_LO16", "symbol": "", "original": "pSceSynthesizerOutArray"}, "1456": {"type": "MIPS_HI16", "symbol": "", "original": "pSceSynthesizerOutArray"}, "1468": {"type": "MIPS_LO16", "symbol": "", "original": "pSceSynthesizerOutArray"}, "1680": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerOutCache"}, "1688": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerOutCache"}, "1708": {"type": "MIPS_26", "symbol": "sceSynthesizerCopyOutput", "scope": "LIBRARY"}, "1728": {"type": "MIPS_HI16", "symbol": "", "original": "pSceSynthesizerOutArray"}, "1732": {"type": "MIPS_LO16", "symbol": "", "original": "pSceSynthesizerOutArray"}, "1740": {"type": "MIPS_26", "symbol": "sceSynthesizerWaitDmaFromSPR", "scope": "LIBRARY"}, "1748": {"type": "MIPS_HI16", "symbol": "", "original": "pSceSynthesizerOutArray"}, "1756": {"type": "MIPS_LO16", "symbol": "", "original": "pSceSynthesizerOutArray"}, "1760": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerOutCache"}, "1764": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerOutCache"}, "1780": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerSamples"}, "1784": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerSamples"}, "1788": {"type": "MIPS_26", "symbol": "sceSynthesizerDmaFromSPR", "scope": "LIBRARY"}, "1796": {"type": "MIPS_HI16", "symbol": "", "original": "pSceSynthesizerOutArray"}, "1804": {"type": "MIPS_LO16", "symbol": "", "original": "pSceSynthesizerOutArray"}, "1820": {"type": "MIPS_HI16", "symbol": "", "original": "pSceSynthesizerOutArray"}, "1872": {"type": "MIPS_26", "symbol": "procVoiceStop", "scope": "LIBRARY", "original": ".text"}, "1896": {"type": "MIPS_26", "symbol": "phaseChange2Release", "scope": "LIBRARY", "original": ".text"}}}}}, "clrSprWorkCurVoice": {"8de74712869dee086c9d70651713c7c6275bbfb2": {"00000000": {"type": "FUNCTION", "size": 52, "library": "libssyn", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "toneGeneratorProc": {"ac7eaa1d04c08ea9b6773969d43b4b88fa4649de": {"94d8eaa2": {"type": "FUNCTION", "size": 192, "library": "libssyn", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_HI16", "symbol": "", "original": "_atickBreak"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerCurrentActiveVoices"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": "_atickBreak"}, "100": {"type": "MIPS_26", "symbol": "breakVoice", "scope": "LIBRARY", "original": ".text"}, "116": {"type": "MIPS_26", "symbol": "procParaVoices", "scope": "LIBRARY", "original": ".text"}, "124": {"type": "MIPS_26", "symbol": "clrSprWorkCurVoice", "scope": "LIBRARY", "original": ".text"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerCurrentActiveVoices"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerCurrentActiveVoices"}}}}}, "sceSynthesizerTonegenerator": {"665ba371f1f1e17e27bc6b42a8616ac1a1d39f9a": {"789ab559": {"type": "FUNCTION", "size": 824, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "sceSynthesizerSetupDma", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": "_atickBreaked"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": "_atickBreaked"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": "pSceSynthesizerOutArray"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerCurrentActiveVoices"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerCurrentActiveVoices"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "pSceSynthesizerOutArray"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerStartVoicesLink"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": "pSceSynthesizerOutArray"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": "pSceSynthesizerOutArray"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerStartVoicesLink"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerStartVoicesLink"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerStartVoicesLink"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerStartVoicesLink"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": "_sceSSyn_portVoiceCount"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": "_sceSSyn_portVoiceCount"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerTvfVoicesLink"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerNoTvfVoicesLink"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerFreeVoicesLink"}, "236": {"type": "MIPS_26", "symbol": "setupStartVoice", "scope": "LIBRARY", "original": ".text"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerNoTvfVoicesLink"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerTvfVoicesLink"}, "292": {"type": "MIPS_26", "symbol": "_sceSSyn_popVoiceFromPLink", "scope": "LIBRARY"}, "360": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerFreeVoicesLink"}, "400": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerOutCache"}, "408": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerOutCache"}, "412": {"type": "MIPS_HI16", "symbol": "", "original": "sce)PS2SDB", 8192}, + std::string_view{R"PS2SDB(SynthesizerSamplesReal"}, "420": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerSamplesReal"}, "432": {"type": "MIPS_26", "symbol": "sceSynthesizerClearSpr", "scope": "LIBRARY"}, "444": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerSamplesReal"}, "448": {"type": "MIPS_HI16", "symbol": "", "original": "_atickBreaked"}, "452": {"type": "MIPS_LO16", "symbol": "", "original": "_atickBreaked"}, "464": {"type": "MIPS_26", "symbol": "clrSprWorkCurVoice", "scope": "LIBRARY", "original": ".text"}, "472": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerTvfVoicesLink"}, "480": {"type": "MIPS_26", "symbol": "toneGeneratorProc", "scope": "LIBRARY", "original": ".text"}, "484": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerTvfVoicesLink"}, "488": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerNoTvfVoicesLink"}, "496": {"type": "MIPS_26", "symbol": "toneGeneratorProc", "scope": "LIBRARY", "original": ".text"}, "500": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerNoTvfVoicesLink"}, "504": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerTruncateVoicesLink"}, "512": {"type": "MIPS_26", "symbol": "toneGeneratorProc", "scope": "LIBRARY", "original": ".text"}, "516": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerTruncateVoicesLink"}, "528": {"type": "MIPS_HI16", "symbol": "", "original": "_atickBreak"}, "532": {"type": "MIPS_LO16", "symbol": "", "original": "_atickBreak"}, "540": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerCurrentActiveVoices"}, "544": {"type": "MIPS_26", "symbol": "breakVoice", "scope": "LIBRARY", "original": ".text"}, "564": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerCurrentActiveVoices"}, "576": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerCurrentActiveVoices"}, "580": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerSamplesReal"}, "588": {"type": "MIPS_26", "symbol": "sceSynthesizerClearSpr", "scope": "LIBRARY"}, "592": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerSamplesReal"}, "604": {"type": "MIPS_26", "symbol": "sceSynthesizerClearSpr", "scope": "LIBRARY"}, "612": {"type": "MIPS_26", "symbol": "procParaVoices", "scope": "LIBRARY", "original": ".text"}, "628": {"type": "MIPS_LO16", "symbol": "", "original": "pSceSynthesizerOutArray"}, "640": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerOutCache"}, "644": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerSamples"}, "648": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerOutCache"}, "656": {"type": "MIPS_LO16", "symbol": "", "original": "pSceSynthesizerOutArray"}, "676": {"type": "MIPS_26", "symbol": "sceSynthesizerWaitDmaFromSPR", "scope": "LIBRARY"}, "684": {"type": "MIPS_LO16", "symbol": "", "original": "pSceSynthesizerOutArray"}, "696": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerSamples"}, "700": {"type": "MIPS_26", "symbol": "sceSynthesizerDmaFromSPR", "scope": "LIBRARY"}, "708": {"type": "MIPS_LO16", "symbol": "", "original": "pSceSynthesizerOutArray"}, "736": {"type": "MIPS_26", "symbol": "sceSynthesizerWaitDmaFromSPR", "scope": "LIBRARY"}, "744": {"type": "MIPS_26", "symbol": "sceSynthesizerRestorDma", "scope": "LIBRARY"}, "752": {"type": "MIPS_HI16", "symbol": "", "original": "_atickBreak"}, "756": {"type": "MIPS_LO16", "symbol": "", "original": "_atickBreak"}, "768": {"type": "MIPS_HI16", "symbol": "", "original": "_atickBreaked"}, "772": {"type": "MIPS_LO16", "symbol": "", "original": "_atickBreaked"}}}}}, "setupStartVoiceOutput": {"78f60c923a615a1aaf8ac60b54f82c936f4b656d": {"00000000": {"type": "FUNCTION", "size": 192, "library": "libssyn", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "setupStartVoiceNoise": {"d05b476cdcef6879db4318ec518f77e0c2f3fc2a": {"86e27200": {"type": "FUNCTION", "size": 144, "library": "libssyn", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"92": {"type": "MIPS_26", "symbol": "sceSynthesizerSetupNewNoise", "scope": "LIBRARY"}}}}}, "setupStartVoicePcm": {"886afdf37d6604891c9e8f4e1432ed8a66da770d": {"ab8983f4": {"type": "FUNCTION", "size": 716, "library": "libssyn", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"504": {"type": "MIPS_HI16", "symbol": "sceSynthesizerReadSample8"}, "508": {"type": "MIPS_HI16", "symbol": "sceSynthesizerReadSample8Add"}, "512": {"type": "MIPS_LO16", "symbol": "sceSynthesizerReadSample8"}, "520": {"type": "MIPS_LO16", "symbol": "sceSynthesizerReadSample8Add"}, "524": {"type": "MIPS_HI16", "symbol": "sceSynthesizerReadSample16"}, "528": {"type": "MIPS_HI16", "symbol": "sceSynthesizerReadSample16Add"}, "532": {"type": "MIPS_LO16", "symbol": "sceSynthesizerReadSample16"}, "536": {"type": "MIPS_LO16", "symbol": "sceSynthesizerReadSample16Add"}, "664": {"type": "MIPS_26", "symbol": "sceSynthesizerCent2PhaseInc", "scope": "LIBRARY"}}}}}, "setupStartVoiceEnv": {"298b588ea95846743a95f77a606c1f2013db97f6": {"7e377227": {"type": "FUNCTION", "size": 400, "library": "libssyn", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"380": {"type": "MIPS_26", "symbol": "sceSynthesizerSetuptEnv", "scope": "LIBRARY"}}}}}, "setupStartVoiceLfo": {"00d201783d8d6417a9088e62e2ba3e11f34f6b5a": {"a398064f": {"type": "FUNCTION", "size": 180, "library": "libssyn", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"160": {"type": "MIPS_26", "symbol": "sceSynthesizerSetupLfo", "scope": "LIBRARY"}}}}}, "setupStartVoiceTvf": {"bdec694b279eff627c0552ea66d6d61627c80513": {"2610a8cf": {"type": "FUNCTION", "size": 444, "library": "libssyn", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "_sceSSyn_getVelocityModify", "scope": "LIBRARY"}, "236": {"type": "MIPS_26", "symbol": "_sceSSyn_log2lin", "scope": "LIBRARY"}}}}}, "sceSynthesizerSetupMidiPanpot": {"f2f60019956f1f5db12f3dd9ece4092a98fce6dc": {"0bfe8910": {"type": "FUNCTION", "size": 128, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerMonoOut"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerMonoOut"}}}}}, "setupStartVoicePanpot": {"cbf48ab9561ecab72f64cd2b2239d55d0b849f3b": {"43348c47": {"type": "FUNCTION", "size": 308, "library": "libssyn", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "_sceSSyn_getVelocityModify", "scope": "LIBRARY"}, "300": {"type": "MIPS_26", "symbol": "sceSynthesizerSetupMidiPanpot", "scope": "LIBRARY", "original": ".text"}}}}}, "setupStartVoicePortamento": {"22a8396e9d3876cfd321d17ad2a51c5a53ed1cf9": {"7454f979": {"type": "FUNCTION", "size": 120, "library": "libssyn", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerEnvDeltaCoef"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerEnvDeltaCoef"}}}}}, "sceSynthesizerSetupMidiModuration": {"1837f71b6388148535bae6667d51cf664e7082b5": {"00000000": {"type": "FUNCTION", "size": 296, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "setupStartVoice": {"05f30382eb6b4b2c1a62490aa0f9ab5f766aab69": {"6)PS2SDB", 8192}, + std::string_view{R"PS2SDB(cdf257f": {"type": "FUNCTION", "size": 1028, "library": "libssyn", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "sceSynthesizerSetupNewNoise", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "setupStartVoiceOutput", "scope": "LIBRARY", "original": ".text"}, "120": {"type": "MIPS_26", "symbol": "setupStartVoiceNoise", "scope": "LIBRARY", "original": ".text"}, "136": {"type": "MIPS_26", "symbol": "_sceSSyn_getVelocityModify", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "setupStartVoicePcm", "scope": "LIBRARY", "original": ".text"}, "204": {"type": "MIPS_26", "symbol": "setupStartVoicePcm", "scope": "LIBRARY", "original": ".text"}, "256": {"type": "MIPS_26", "symbol": "_sceSSyn_getAmpVelocity", "scope": "LIBRARY"}, "284": {"type": "MIPS_26", "symbol": "setupStartVoiceEnv", "scope": "LIBRARY", "original": ".text"}, "348": {"type": "MIPS_26", "symbol": "sceSynthesizerGetPartOutLevel", "scope": "LIBRARY"}, "360": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerMasterVolume"}, "368": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerMasterVolume"}, "468": {"type": "MIPS_26", "symbol": "setupStartVoicePortamento", "scope": "LIBRARY", "original": ".text"}, "516": {"type": "MIPS_26", "symbol": "setupStartVoiceEnv", "scope": "LIBRARY", "original": ".text"}, "548": {"type": "MIPS_26", "symbol": "setupStartVoiceTvf", "scope": "LIBRARY", "original": ".text"}, "588": {"type": "MIPS_26", "symbol": "_sceSSyn_getVelocityModify", "scope": "LIBRARY"}, "616": {"type": "MIPS_26", "symbol": "setupStartVoiceEnv", "scope": "LIBRARY", "original": ".text"}, "688": {"type": "MIPS_26", "symbol": "_sceSSyn_log2lin", "scope": "LIBRARY"}, "716": {"type": "MIPS_26", "symbol": "sceSynthesizerCalcTvfCoefAll", "scope": "LIBRARY"}, "732": {"type": "MIPS_26", "symbol": "setupStartVoiceLfo", "scope": "LIBRARY", "original": ".text"}, "836": {"type": "MIPS_26", "symbol": "setupStartVoiceLfo", "scope": "LIBRARY", "original": ".text"}, "940": {"type": "MIPS_26", "symbol": "setupStartVoicePanpot", "scope": "LIBRARY", "original": ".text"}, "956": {"type": "MIPS_26", "symbol": "sceSynthesizerSetupMidiModuration", "scope": "LIBRARY", "original": ".text"}}}}}, "_sceSSyn_popVoiceFromLink": {"f176ef7b57ba362925cc8ee95f1d2f7850464e8d": {"00000000": {"type": "FUNCTION", "size": 28, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_sceSSyn_putVoiceToTop": {"adcd5f91de36fa46c960a9a5e6e2f94e4d8edd5a": {"00000000": {"type": "FUNCTION", "size": 24, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_sceSSyn_putVoiceToBottom": {"c9f756c9b8907819ff95032ace79caac3189a554": {"00000000": {"type": "FUNCTION", "size": 24, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceSynthesizerDmaSpr": {"363dad5e469176142b4aa433bde3ce31eaa28196": {"00000000": {"type": "FUNCTION", "size": 52, "library": "libssyn", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceSynthesizerDmaFromSPR": {"208c4d413b2a4db68e941e5cf994a6474d0bf89b": {"008b2d5e": {"type": "FUNCTION", "size": 148, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerFromSprCh"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerFromSprCh"}, "36": {"type": "MIPS_26", "symbol": "sceSynthesizerDmaSpr", "scope": "LIBRARY", "original": ".text"}}}}}, "sceSynthesizerDmaToSPR": {"a4732fdbdb7be6cfee25571e047a6c2f74c35879": {"bcd514c9": {"type": "FUNCTION", "size": 156, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerToSprCh"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerToSprCh"}, "44": {"type": "MIPS_26", "symbol": "sceSynthesizerDmaSpr", "scope": "LIBRARY", "original": ".text"}}}}}, "sceSynthesizerWaitDmaFromSPR": {"58f836fa9a32c8872367709e6e15aa0cb421f123": {"93b41045": {"type": "FUNCTION", "size": 20, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerFromSprCh"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerFromSprCh"}, "12": {"type": "MIPS_26", "symbol": "sceDmaSync"}}}}}, "sceSynthesizerWaitDmaToSPR": {"58f836fa9a32c8872367709e6e15aa0cb421f123": {"93b41045": {"type": "FUNCTION", "size": 20, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerToSprCh"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerToSprCh"}, "12": {"type": "MIPS_26", "symbol": "sceDmaSync"}}}}}, "sceSynthesizerSetupDma": {"0a5c3e6ca588c1d0e2036b3fb3da5fa28aa071f3": {"b6f95d0f": {"type": "FUNCTION", "size": 56, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceSynthesizerRestorDma": {"6b3dc3c15e746caa4241707335c86a600daff0df": {"d6ed632d": {"type": "FUNCTION", "size": 48, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "clr_nrpm_mod": {"738e2e1f9ae9fff243f9be7b5e938fbf2de93efe": {"0b567bc6": {"type": "FUNCTION", "size": 48, "library": "libssyn", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "_clr_drum_nrpn", "scope": "LIBRARY", "original": ".text"}}}}}, "_clr_nrpm_allmod": {"dcff8f2ec9ca30b01efe8996ca52ed689205eb23": {"9c7ed747": {"type": "FUNCTION", "size": 16, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "clr_nrpm_mod", "scope": "LIBRARY", "original": ".text"}}}}}, "sceSynthesizerResetPart": {"0b09e13fc3b4133fc5f29e1d51c249c057924dc6": {"5e2ec6b8": {"type": "FUNCTION", "size": 104, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"96": {"type": "MIPS_26", "symbol": "_clr_nrpm_allmod", "scope": "LIBRARY", "original": ".text"}}}}}, "sceSynthesizerClearKeyMap": {"79fce1a19743f271a2005f48b836ab29755429fc": {"c75a9deb": {"type": "FUNCTION", "size": 8, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_26", "symbol": "_clrMem", "scope": "LIBRARY"}}}}}, "fillkmap": {"57a701816b308728639b67978308a5df439c0f97": {"00000000": {"type": "FUNCTION", "size": 48, "library": "libssyn", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_clr_drum_nrpn": {"08796e14ac95d76702e1c673e20f86dadc81900c": {"5fd7a99a": {"type": "FUNCTION", "size": 60, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [],)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "fillkmap", "scope": "LIBRARY", "original": ".text"}, "24": {"type": "MIPS_26", "symbol": "fillkmap", "scope": "LIBRARY", "original": ".text"}, "32": {"type": "MIPS_26", "symbol": "fillkmap", "scope": "LIBRARY", "original": ".text"}, "52": {"type": "MIPS_26", "symbol": "fillkmap", "scope": "LIBRARY", "original": ".text"}}}}}, "sceSynthsizerGetMeloPatch": {"343faf09be73eed53054ee1cd97ed3727f043717": {"00000000": {"type": "FUNCTION", "size": 96, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceSynthsizerGetDrumPatch": {"11a60499e1305afbbf650d98164499f3771d712e": {"00000000": {"type": "FUNCTION", "size": 76, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceSynthesizerGetPartial": {"7e62a95772a91ce7c7e2556ce4b2b7be744d212b": {"00000000": {"type": "FUNCTION", "size": 44, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceSynthesizerGetSampleParam": {"4aa003788834cd9d12ca8958510aa2053ad16762": {"00000000": {"type": "FUNCTION", "size": 172, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceSynthesizerSelectPatch": {"dc552a06d700a65859345171714bd9894806a51e": {"76828f16": {"type": "FUNCTION", "size": 148, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerHdrTbl"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerHdrTbl"}, "56": {"type": "MIPS_26", "symbol": "clr_nrpm_mod", "scope": "LIBRARY", "original": ".text"}}}}}, "changeVoiceFloatStateOnMyPart": {"f27cd15e9fe5d3a14d68cc0571cc335387134562": {"00000000": {"type": "FUNCTION", "size": 264, "library": "libssyn", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_callback_sceSynthesizerChangePartPitchBend": {"c6f3bf8eb1d9d0e8aa87ad06ac75bcb696b58f7c": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libssyn", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "ChangePitchBendAndDepth": {"62264f112634e71e29239277af99f70de4347c79": {"d8038d2a": {"type": "FUNCTION", "size": 28, "library": "libssyn", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "_callback_sceSynthesizerChangePartPitchBend", "original": ".text"}, "16": {"type": "MIPS_LO16", "symbol": "_callback_sceSynthesizerChangePartPitchBend", "original": ".text"}, "20": {"type": "MIPS_26", "symbol": "changeVoiceFloatStateOnMyPart", "scope": "LIBRARY", "original": ".text"}}}}}, "sceSynthesizerChangePartPitchBend": {"ca24965eae1b7ae0d1d37254350509f69cf21a4d": {"2550a9c0": {"type": "FUNCTION", "size": 64, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "ChangePitchBendAndDepth", "scope": "LIBRARY", "original": ".text"}}}}}, "sceSynthesizerChangePartBendSens": {"1b202a42a5f6e4ee9fe04d88b3b2c25ed0341a18": {"5a2a83b6": {"type": "FUNCTION", "size": 60, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "ChangePitchBendAndDepth", "scope": "LIBRARY", "original": ".text"}}}}}, "_callback_sceSynthesizerChangePartVolumeExpression": {"66aa55392775c053eb62e9d882fea4abf7a901ec": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libssyn", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "ChangePartVolumeExpression": {"84f50a9c90fe6a683875a56ce672667b344b5dc1": {"485d97b5": {"type": "FUNCTION", "size": 104, "library": "libssyn", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"76": {"type": "MIPS_HI16", "symbol": "_callback_sceSynthesizerChangePartVolumeExpression", "original": ".text"}, "80": {"type": "MIPS_LO16", "symbol": "_callback_sceSynthesizerChangePartVolumeExpression", "original": ".text"}, "88": {"type": "MIPS_26", "symbol": "changeVoiceFloatStateOnMyPart", "scope": "LIBRARY", "original": ".text"}}}}}, "sceSynthesizerChangePartVolume": {"6abc093e88d700515c0c9885c4c57efe87297ab5": {"b434bd5b": {"type": "FUNCTION", "size": 32, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "ChangePartVolumeExpression", "scope": "LIBRARY", "original": ".text"}}}}}, "sceSynthesizerChangePartExpression": {"390a104a672111fece8e2e40d103ead03cb04e99": {"b434bd5b": {"type": "FUNCTION", "size": 32, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "ChangePartVolumeExpression", "scope": "LIBRARY", "original": ".text"}}}}}, "sceSynthesizerChangePartModuration": {"1d47e9207fa9c360083162cf1b09fb2ef4979ac5": {"0f1a1257": {"type": "FUNCTION", "size": 288, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"116": {"type": "MIPS_26", "symbol": "sceSynthesizerSetupMidiModuration", "scope": "LIBRARY"}, "184": {"type": "MIPS_26", "symbol": "sceSynthesizerSetupMidiModuration", "scope": "LIBRARY"}, "240": {"type": "MIPS_26", "symbol": "sceSynthesizerSetupMidiModuration", "scope": "LIBRARY"}}}}}, "sceSynthesizerChangePortamento": {"e9637167e99fb21fbc185959dd9a5ec441ee4919": {"00000000": {"type": "FUNCTION", "size": 52, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceSynthesizerChangePortamentoTime": {"0b0a8b1ab53182daa8cbcd1d205bbc92bfedf53b": {"00000000": {"type": "FUNCTION", "size": 20, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceSynthesizerChangePanpot": {"d3d9b88f9754ffec6bab618d527409d8edc43ce9": {"46fcf84d": {"type": "FUNCTION", "size": 72, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "sceSynthesizerSetupMidiPanpot"}, "48": {"type": "MIPS_LO16", "symbol": "sceSynthesizerSetupMidiPanpot"}, "56": {"type": "MIPS_26", "symbol": "changeVoiceFloatStateOnMyPart", "scope": "LIBRARY", "original": ".text"}}}}}, "_callback_sceSynthesizerChangeEffectSend0": {"0577f2547d42d593d2cceab3ceb2d6097e926386": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libssyn", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_callback_sceSynthesizerChangeEffectSend1": {"43eecbbe3ce5212c8749f17edc76b33332f61c5a": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libssyn", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_callback_sceSynthesizerChangeEffectSend2": {"cc5c4f3e5684058f00558595277077b444840d1a": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libssyn", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.)PS2SDB", 8192}, + std::string_view{R"PS2SDB(4.1.01"], "relocations": {}}}}, "_callback_sceSynthesizerChangeEffectSend3": {"bd28b7b1ce15dc07c1e6832c7b8723e94321eeb0": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libssyn", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceSynthesizerChangeEffectSend": {"00a9bb853e4aeb431d329237c07f0484eecf41a7": {"168c63da": {"type": "FUNCTION", "size": 168, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"84": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "120": {"type": "MIPS_26", "symbol": "changeVoiceFloatStateOnMyPart", "scope": "LIBRARY", "original": ".text"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "changeVoiceFloatStateOnMyPart", "scope": "LIBRARY", "original": ".text"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "144": {"type": "MIPS_26", "symbol": "changeVoiceFloatStateOnMyPart", "scope": "LIBRARY", "original": ".text"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "152": {"type": "MIPS_26", "symbol": "changeVoiceFloatStateOnMyPart", "scope": "LIBRARY", "original": ".text"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}}}}}, "sceSynthesizerChangeOutAttrib": {"2b69a3fa969f3e9423c4c56c1a72415e1755a707": {"00000000": {"type": "FUNCTION", "size": 24, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceSynthesizerChangeOutVol": {"e9d8319e8a338406af63e76def891d946f3d6ab7": {"a96dd3b2": {"type": "FUNCTION", "size": 8, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_26", "symbol": "ChangePartVolumeExpression", "scope": "LIBRARY", "original": ".text"}}}}}, "sceSynthesizerSetRVoice": {"3bd1bd485b429eedbc54feec5b9e0b50e857822f": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_callback_sceSynthesizerChangeNrpnCutOff": {"92d98a0b994050485ec0837f44fc0e0958cb62e5": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libssyn", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceSynthesizerChangeNrpnCutOff": {"6d6044dc8cf74b3e5efa4630e93effe9c512b2e2": {"cc181c24": {"type": "FUNCTION", "size": 76, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_HI16", "symbol": "_callback_sceSynthesizerChangeNrpnCutOff", "original": ".text"}, "52": {"type": "MIPS_LO16", "symbol": "_callback_sceSynthesizerChangeNrpnCutOff", "original": ".text"}, "60": {"type": "MIPS_26", "symbol": "changeVoiceFloatStateOnMyPart", "scope": "LIBRARY", "original": ".text"}}}}}, "sceSynthesizerChangeNrpnLfoRate": {"95129619007a85dbe15b01330359c05287a869b9": {"00000000": {"type": "FUNCTION", "size": 212, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_callback_sceSynthesizerChangeNrpnLfoDepth": {"b55b395956d8d221515ce94215b55bf114b0722d": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libssyn", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceSynthesizerChangeNrpnLfoDepth": {"cea82173ee69a1b5f48af8e88be73264dc34beec": {"858bb479": {"type": "FUNCTION", "size": 60, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "_callback_sceSynthesizerChangeNrpnLfoDepth", "original": ".text"}, "36": {"type": "MIPS_LO16", "symbol": "_callback_sceSynthesizerChangeNrpnLfoDepth", "original": ".text"}, "44": {"type": "MIPS_26", "symbol": "changeVoiceFloatStateOnMyPart", "scope": "LIBRARY", "original": ".text"}}}}}, "changeVoiceFloatHsStateOnMyPart": {"bbf0ac8954c5a4e54768a515ebaef904dd333c10": {"00000000": {"type": "FUNCTION", "size": 288, "library": "libssyn", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceSynthesizerChangeHsPanpot": {"4cb9ab7ad4c4f906994743fa41bb451dec4231ee": {"571f92da": {"type": "FUNCTION", "size": 56, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "sceSynthesizerSetupMidiPanpot"}, "40": {"type": "MIPS_LO16", "symbol": "sceSynthesizerSetupMidiPanpot"}, "48": {"type": "MIPS_26", "symbol": "changeVoiceFloatHsStateOnMyPart", "scope": "LIBRARY", "original": ".text"}}}}}, "sceSynthesizerGetPartOutLevel": {"199c9e7d894fe5b38db952f904a0627b441cb332": {"00000000": {"type": "FUNCTION", "size": 72, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceSynthesizerChangePartHsExpression": {"45a21fa171fb1eabe554343f69e8f3ab7c5d61ef": {"ebdb8a5c": {"type": "FUNCTION", "size": 100, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "_callback_sceSynthesizerChangePartVolumeExpression", "original": ".text"}, "44": {"type": "MIPS_26", "symbol": "sceSynthesizerGetPartOutLevel", "scope": "LIBRARY", "original": ".text"}, "48": {"type": "MIPS_LO16", "symbol": "_callback_sceSynthesizerChangePartVolumeExpression", "original": ".text"}, "92": {"type": "MIPS_26", "symbol": "changeVoiceFloatHsStateOnMyPart", "scope": "LIBRARY", "original": ".text"}}}}}, "sceSynthesizerChangePartHsPitchBend": {"d8167d690df97bb040e737971d2c8eedc92f4d6b": {"160ba6c7": {"type": "FUNCTION", "size": 60, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_HI16", "symbol": "_callback_sceSynthesizerChangePartPitchBend", "original": ".text"}, "44": {"type": "MIPS_LO16", "symbol": "_callback_sceSynthesizerChangePartPitchBend", "original": ".text"}, "52": {"type": "MIPS_26", "symbol": "changeVoiceFloatHsStateOnMyPart", "scope": "LIBRARY", "original": ".text"}}}}}, "_sceSSyn_popVoiceFromPLink": {"d7771795eac0ed21d898504014b8a24385d74ac3": {"00000000": {"type": "FUNCTION", "size": 52, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceSynthesizerAssignNoteOn": {"86cc25c1d7fb5f425a5a135139395f7a7a715f63": {"c78e1221": {"type": "FUNCTION", "size": 1208, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerHdrTbl"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerHdrTbl"}, "108": {"type": "MIPS_26", "symbol": "sceSynthsizerGetMeloPatch", "scope": "LIBRARY"}, "132": {"type": "MIPS_26", "symbol": "sceSynthsizerGetDrumPatch", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "sceSynthesizerGetPartial", "scope": "LIBRARY"}, "196": {"type": "MIPS_26", "symbol": "sceSynthesizerGetSampleParam", "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "sceSynthesizerGetSampleParam", "scope": ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(LIBRARY"}, "276": {"type": "MIPS_HI16", "symbol": "", "original": "_sceSSyn_portVoiceLimit"}, "280": {"type": "MIPS_HI16", "symbol": "", "original": "_sceSSyn_portVoiceCount"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": "_sceSSyn_portVoiceLimit"}, "292": {"type": "MIPS_LO16", "symbol": "", "original": "_sceSSyn_portVoiceCount"}, "328": {"type": "MIPS_26", "symbol": "getLowestPriorityVoice", "scope": "LIBRARY", "original": ".text"}, "360": {"type": "MIPS_26", "symbol": "turnOffExcGroup", "scope": "LIBRARY", "original": ".text"}, "372": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerFreeVoicesLink"}, "376": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerAssignMode"}, "384": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerAssignMode"}, "404": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerFreeVoicesLink"}, "412": {"type": "MIPS_26", "symbol": "turnOffSameKey", "scope": "LIBRARY", "original": ".text"}, "424": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerFreeVoicesLink"}, "428": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerAssignMode"}, "436": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerAssignMode"}, "456": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerFreeVoicesLink"}, "464": {"type": "MIPS_26", "symbol": "turnOffSameKey", "scope": "LIBRARY", "original": ".text"}, "472": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerFreeVoicesLink"}, "476": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerStartVoicesLink"}, "480": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerFreeVoicesLink"}, "492": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerStartVoicesLink"}, "496": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerTruncateVoicesLink"}, "500": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerTruncateVoicesLink"}, "524": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerStartVoicesLink"}, "528": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerStartVoicesLink"}, "532": {"type": "MIPS_26", "symbol": "getLowestPriorityVoice", "scope": "LIBRARY", "original": ".text"}, "628": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerTvfVoicesLink"}, "636": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerTvfVoicesLink"}, "640": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerNoTvfVoicesLink"}, "644": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerNoTvfVoicesLink"}, "648": {"type": "MIPS_26", "symbol": "_sceSSyn_popVoiceFromLink", "scope": "LIBRARY"}, "660": {"type": "MIPS_26", "symbol": "_sceSSyn_putVoiceToTop", "scope": "LIBRARY"}, "668": {"type": "MIPS_HI16", "symbol": "", "original": "_sceSSyn_portVoiceCount"}, "676": {"type": "MIPS_LO16", "symbol": "", "original": "_sceSSyn_portVoiceCount"}}}}}, "sceSynthesizerAssignNoteOff": {"ef1ae1fe1a0c94ab89838a3f19ff77c842668875": {"c4f3ac8e": {"type": "FUNCTION", "size": 584, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"124": {"type": "MIPS_HI16", "symbol": "", "original": "_sceSSyn_portVoiceCount"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": "_sceSSyn_portVoiceCount"}, "144": {"type": "MIPS_26", "symbol": "_sceSSyn_popVoiceFromPLink", "scope": "LIBRARY", "original": ".text"}, "164": {"type": "MIPS_26", "symbol": "turnOffVoice", "scope": "LIBRARY", "original": ".text"}, "356": {"type": "MIPS_26", "symbol": "_sceSSyn_popVoiceFromPLink", "scope": "LIBRARY", "original": ".text"}, "376": {"type": "MIPS_26", "symbol": "turnOffVoice", "scope": "LIBRARY", "original": ".text"}, "436": {"type": "MIPS_HI16", "symbol": "", "original": "_sceSSyn_portVoiceCount"}, "440": {"type": "MIPS_LO16", "symbol": "", "original": "_sceSSyn_portVoiceCount"}}}}}, "sceSynthesizerAssignHoldChange": {"8044d8657689c79e1d0143654d15e3d16d704758": {"eeaa9c4c": {"type": "FUNCTION", "size": 28, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "phaseChange2ReleaseAll", "scope": "LIBRARY", "original": ".text"}}}}}, "sceSynthesizerAssignAllNoteOff": {"dade7587d2bc5ad89a37fabbb97222082287e609": {"7348629c": {"type": "FUNCTION", "size": 92, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "phaseChange2ReleaseAll", "scope": "LIBRARY", "original": ".text"}, "40": {"type": "MIPS_26", "symbol": "phaseChange2ReleaseAll", "scope": "LIBRARY", "original": ".text"}, "56": {"type": "MIPS_26", "symbol": "phaseChange2HoldAll", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_26", "symbol": "sceSynthesizerClearKeyMap", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "sceSynthesizerClearKeyMap", "scope": "LIBRARY"}}}}}, "sceSynthesizerAssignAllSoundOff": {"0ae1bb81ea0ff920caeb3681b8b1e2ab5aacc1c0": {"bcb80328": {"type": "FUNCTION", "size": 136, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "phaseChange2TruncateAll", "scope": "LIBRARY", "original": ".text"}, "32": {"type": "MIPS_26", "symbol": "phaseChange2TruncateAll", "scope": "LIBRARY", "original": ".text"}, "44": {"type": "MIPS_26", "symbol": "phaseChange2TruncateAll", "scope": "LIBRARY", "original": ".text"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": "_sceSSyn_portVoiceCount"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": "_sceSSyn_portVoiceCount"}, "104": {"type": "MIPS_26", "symbol": "sceSynthesizerClearKeyMap", "scope": "LIBRARY"}, "128": {"type": "MIPS_26", "symbol": "sceSynthesizerClearKeyMap", "scope": "LIBRARY"}}}}}, "truncateVoice": {"3bfd780c30095941e13a5e58180631fec7a3ceac": {"2b5176e9": {"type": "FUNCTION", "size": 180, "library": "libssyn", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "_sceSSyn_popVoiceFromPLink", "scope": "LIBRARY", "original": ".text"}, "48": {"type": "MIPS_26", "symbol": "_sceSSyn_popVoiceFromLink", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "sceSynthesizerSetupTruncateTvaEnv", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "sceSynthesizerSetupTruncateTvfPitchEnv", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "sceSynthesizerSetupTruncateTvfPitchEnv", "scope": "LIBRARY"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerTruncateVoicesLink"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerTruncateVoicesLink"}, "140": {"type": "MIPS_26", "symbol": "_sceSSyn_putVoiceToTop", "scope": "LIBRARY"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerFreeVoicesLink"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerFreeVoicesLink"}, "172": {"type": "MIPS_26", "symbol": "_sceSSyn_putVoiceToTop", "scope": "LIBRARY"}}}}}, "turnOffVoice": {"545faa96b6098b8efaf2a29cd4243009fec08ea4": {"e375ff0f": {"type": "FUNCTION", "size": 176, "library": "libssyn", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "sceSynthesizerSetupReleaseEnv", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "sceSynthesizerSetupReleaseEnv", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "sceSynthesizerSetupReleaseEnv", "scope": "LIBRARY"}, "120": {"type": "MIPS_26", "symbol": "_sceSSyn_popVoiceFromLink", "scope": "LIBRARY"}, "128": {"type": "MIPS_HI16", "symbol": "", "orig)PS2SDB", 8192}, + std::string_view{R"PS2SDB(inal": "sceSynthesizerFreeVoicesLink"}, "136": {"type": "MIPS_26", "symbol": "_sceSSyn_putVoiceToTop", "scope": "LIBRARY"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerFreeVoicesLink"}}}}}, "mkAssPartInfo": {"82409d39524073ce22ec7118b91213c92676a51a": {"00000000": {"type": "FUNCTION", "size": 752, "library": "libssyn", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "getLowestPriorityVoice": {"96017c5aedfb1231f5b800c3eaa61d96510bda39": {"7b054361": {"type": "FUNCTION", "size": 452, "library": "libssyn", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerAssignMode"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerAssignMode"}, "172": {"type": "MIPS_26", "symbol": "truncateVoice", "scope": "LIBRARY", "original": ".text"}, "200": {"type": "MIPS_HI16", "symbol": "", "original": "_sceSSyn_portVoiceCount"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": "_sceSSyn_portVoiceCount"}, "240": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerNumberOfMidiPort"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerNumberOfMidiPort"}, "280": {"type": "MIPS_HI16", "symbol": "", "original": "sceSynthesizerChPartTbl"}, "292": {"type": "MIPS_LO16", "symbol": "", "original": "sceSynthesizerChPartTbl"}, "300": {"type": "MIPS_26", "symbol": "mkAssPartInfo", "scope": "LIBRARY", "original": ".text"}, "328": {"type": "MIPS_26", "symbol": "truncateVoice", "scope": "LIBRARY", "original": ".text"}, "360": {"type": "MIPS_HI16", "symbol": "", "original": "_sceSSyn_portVoiceCount"}, "364": {"type": "MIPS_LO16", "symbol": "", "original": "_sceSSyn_portVoiceCount"}}}}}, "turnOffSameKeyAList": {"b6683e776ca5f737a7ed12234ad1a6552224662f": {"f95e0f6e": {"type": "FUNCTION", "size": 156, "library": "libssyn", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"100": {"type": "MIPS_26", "symbol": "truncateVoice", "scope": "LIBRARY", "original": ".text"}}}}}, "turnOffSameKey": {"3a51b581b6317c759faede80e851b4621f7fc070": {"33d447e4": {"type": "FUNCTION", "size": 192, "library": "libssyn", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "turnOffSameKeyAList", "scope": "LIBRARY", "original": ".text"}, "68": {"type": "MIPS_26", "symbol": "turnOffSameKeyAList", "scope": "LIBRARY", "original": ".text"}, "88": {"type": "MIPS_26", "symbol": "turnOffSameKeyAList", "scope": "LIBRARY", "original": ".text"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": "_sceSSyn_portVoiceCount"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": "_sceSSyn_portVoiceCount"}}}}}, "turnOffExcGroupAList": {"857e77683c297a1079083cfb2f677cde5ca08ee8": {"f0ff12eb": {"type": "FUNCTION", "size": 164, "library": "libssyn", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"108": {"type": "MIPS_26", "symbol": "truncateVoice", "scope": "LIBRARY", "original": ".text"}}}}}, "turnOffExcGroup": {"987ca838dba4646d27fbaedb3ec4f1beb8798a41": {"e3fc556d": {"type": "FUNCTION", "size": 180, "library": "libssyn", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "turnOffExcGroupAList", "scope": "LIBRARY", "original": ".text"}, "56": {"type": "MIPS_26", "symbol": "turnOffExcGroupAList", "scope": "LIBRARY", "original": ".text"}, "76": {"type": "MIPS_26", "symbol": "turnOffExcGroupAList", "scope": "LIBRARY", "original": ".text"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": "_sceSSyn_portVoiceCount"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": "_sceSSyn_portVoiceCount"}}}}}, "phaseChange2ReleaseAll": {"690dd9e8e577932f5fb46b7bba8c6044a5ff144c": {"36cb4836": {"type": "FUNCTION", "size": 200, "library": "libssyn", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": "_sceSSyn_portVoiceCount"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": "_sceSSyn_portVoiceCount"}, "68": {"type": "MIPS_26", "symbol": "_sceSSyn_popVoiceFromPLink", "scope": "LIBRARY", "original": ".text"}, "76": {"type": "MIPS_26", "symbol": "turnOffVoice", "scope": "LIBRARY", "original": ".text"}}}}}, "phaseChange2HoldAll": {"c08ddef048e89275cb386f3a8226b9d8135e6b24": {"f817963b": {"type": "FUNCTION", "size": 108, "library": "libssyn", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "_sceSSyn_popVoiceFromPLink", "scope": "LIBRARY", "original": ".text"}}}}}, "phaseChange2TruncateAll": {"5bf4ce8dc98bc04aa6729588737c194d4b9878ec": {"bdf7fec3": {"type": "FUNCTION", "size": 88, "library": "libssyn", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "truncateVoice", "scope": "LIBRARY", "original": ".text"}}}}}, "velMod0": {"835d5dae953e2d9f50207b62283104fba4232d28": {"00000000": {"type": "FUNCTION", "size": 40, "library": "libssyn", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "velMod1": {"845dbb341c2dec13241ded5c8e9a4799b5e4958c": {"00000000": {"type": "FUNCTION", "size": 40, "library": "libssyn", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "velMod2": {"aa23a76fdda9ba75a36d153123db52ac6787a0cc": {"00000000": {"type": "FUNCTION", "size": 68, "library": "libssyn", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "velMod3": {"17f1309334cfbd7bf86cad0658f4fb9e4e3887e3": {"00000000": {"type": "FUNCTION", "size": 84, "library": "libssyn", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "velMod4": {"3be3e0af889a82044229e2d19075e4ea62f3cfeb": {"00000000": {"type": "FUNCTION", "size": 92, "library": "libssyn", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "velMod5": {"6075db4fbe571e880d027800d74d5d41832eba6e": {"00000000": {"type": "FUNCTION", "size": 84, "library": "libssyn", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "velMod6": {"e3bce1108a59d287e761afb17c8acf5adb4c8b15": {"00000000": {"type": "FUNCTION", "size": 88, "library": "libssyn", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "velMod7": {"564077bb3c4e4b380ef39b9e5b43e285c04d6a95": {"00000000": {"type": "FUNCTION", "size": 88, "library": "libssyn", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "velMod8": {"5813366822d23fd7f4c3bc23d4b5a1d7eb4c4979": {"00000000": {"type": "FUNCTION", "size": 116, "library": "libssyn", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "velMod9": {"cd40081a8873d6435126b87ee2fae29f8d2573a7": {"00000000": {"type": "FUNCTION", "size": 144, "library": "libssyn", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_sceSSyn_getVelocityModify": {"ac8bdf509bdee64341057b89cd83313756b2188c": {"dc)PS2SDB", 8192}, + std::string_view{R"PS2SDB(38f77b": {"type": "FUNCTION", "size": 100, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "velMod0Amp": {"74ab5f1ef0b1c6d15dddb2d24ab7066f92d0e617": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libssyn", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "velMod1Amp": {"636c49150500ece63037fbdd8fab9e3aa048b3f7": {"00000000": {"type": "FUNCTION", "size": 24, "library": "libssyn", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "velMod2Amp": {"6b897b321057081d9887c1926662da5dc9b698c4": {"00000000": {"type": "FUNCTION", "size": 36, "library": "libssyn", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "velMod3Amp": {"c38acf11cb23f395d82dd16632e34409d95b515a": {"eda9a015": {"type": "FUNCTION", "size": 40, "library": "libssyn", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "velMod2Amp", "scope": "LIBRARY", "original": ".text"}}}}}, "velMod4Amp": {"6a522327b7e3a77ed491af0747deadd5387fd9ac": {"acac4d43": {"type": "FUNCTION", "size": 52, "library": "libssyn", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "velMod2Amp", "scope": "LIBRARY", "original": ".text"}}}}}, "velMod5Amp": {"8c8d941a861ba72c60b1f119c0db39aaf82864cb": {"acac4d43": {"type": "FUNCTION", "size": 40, "library": "libssyn", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "velMod2Amp", "scope": "LIBRARY", "original": ".text"}}}}}, "_sceSSyn_getAmpVelocity": {"5e7c4c3ffb5800b0669df205a79e154d3465f62f": {"dc38f77b": {"type": "FUNCTION", "size": 128, "library": "libssyn", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}}, "libpc": {"scePcStart": {"8fdd9ca3620509f0fb206e9c10ee2553b057638b": {"00000000": {"type": "FUNCTION", "size": 112, "library": "libpc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.6.0", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "ac27023f06d9c0fb1b8d4ea4cfd6d09ac1acb080": {"00000000": {"type": "FUNCTION", "size": 100, "library": "libpc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.0", "2.4.3", "2.5.2", "2.5.4", "2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "9154806256392e47e822b8a5276f3e5dfc68b27b": {"00000000": {"type": "FUNCTION", "size": 120, "library": "libpc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "scePcStop": {"5ecaaac209faf0e07d5b6606b5aee6f9e35588f2": {"00000000": {"type": "FUNCTION", "size": 28, "library": "libpc", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.0", "2.4.3", "2.5.2", "2.5.4", "2.5.5", "2.6.0", "2.7.1", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "scePcGetCounter0": {"5bf7227bb3e41e58e2c892c3956819863bb2c50a": {"00000000": {"type": "FUNCTION", "size": 12, "library": "libpc", "scope": "EE_GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.0", "2.4.3"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "1e58db034e69e445e08dccb7c8d8539435275021": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libpc", "scope": "EE_GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.4"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "scePcGetCounter1": {"7c28b106d3c6a48ec706eb4762eafe7c503f9cf1": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libpc", "scope": "EE_GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}}, "librspu2": {"sceSpu2RemoteInit": {"75bbaf69f0e8cfbe17b9d45f2c3858ef0d05603c": {"7d175d3d": {"type": "FUNCTION", "size": 200, "library": "librspu2", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.0"], "sdk": ["2.0.2", "2.1.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "68": {"type": "MIPS_26", "symbol": "printf"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "152": {"type": "MIPS_26", "symbol": "FlushCache"}, "164": {"type": "MIPS_26", "symbol": "sceSpu2Remote", "scope": "LIBRARY", "original": ".text"}}}}, "300e2f32641f8a408f1d9a3697370754aff1fb09": {"6efd2d60": {"type": "FUNCTION", "size": 208, "library": "librspu2", "scope": "GLOBAL", "is_interface": true, "versions": ["1.5.0"], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".sdata"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "68": {"type": "MIPS_26", "symbol": "printf"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".sdata"}, "160": {"type": "MIPS_26", "symbol": "FlushCache"}, "172": {"type": "MIPS_26", "symbol": "sceSpu2Remote", "scope": "LIBRARY", "original": ".text"}}}}}, "sceSpu2RemoteCallBack": {"379568001121d67192b561489fbcf0e0086b0eb3": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "librspu2", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.0"], "sdk": ["2.0.2", "2.1.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "df64137a004d30a15c13927c9642063972d3d686": {"db022d9b": {"type": "FUNCTION", "size": 8, "library": "librspu2", "scope": "GLOBAL", "is_interface": true, "versions": ["1.5.0"], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"4": {"type": "MIPS_GPREL16", "symbol": ".sdata"}}}}}, "sceSpu2Remote": {"bda380d9a38b8fd74e03126c1574de5198018d0a": {"cc0ac614": {"type": "FUNCTION", "size": 636, "library": "librspu2", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.0"], "sdk": ["2.0.2", "2.1.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": "gStPrepareCB"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": "gStPrepareCB"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": "gStTransCB"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": "gStTransCB"}, "224": {"type": "MIPS_LO16", "symb)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ol": "", "original": ".bss"}, "228": {"type": "MIPS_HI16", "symbol": "", "original": "gStFinishCB"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": "gStFinishCB"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "260": {"type": "MIPS_HI16", "symbol": "", "original": "gDMA1CB"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": "gDMA1CB"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "288": {"type": "MIPS_HI16", "symbol": "", "original": "gDMA0CB"}, "300": {"type": "MIPS_LO16", "symbol": "", "original": "gDMA0CB"}, "312": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "316": {"type": "MIPS_HI16", "symbol": "", "original": "gIRQCB"}, "328": {"type": "MIPS_LO16", "symbol": "", "original": "gIRQCB"}, "344": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "372": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "376": {"type": "MIPS_26", "symbol": "printf"}, "380": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "384": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "388": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "396": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "404": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "444": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "448": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "456": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "480": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "500": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "504": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "508": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "516": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "524": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "544": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "560": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "568": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "592": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "600": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "a3524a9aca924aa0f3e1038b941f721aa6e383b5": {"faef52c5": {"type": "FUNCTION", "size": 632, "library": "librspu2", "scope": "GLOBAL", "is_interface": true, "versions": ["1.5.0"], "sdk": ["1.5.0", "1.5.1", "1.5.3"], "compiler_versions": ["2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "196": {"type": "MIPS_GPREL16", "symbol": "gStPrepareCB"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "224": {"type": "MIPS_GPREL16", "symbol": "gStTransCB"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "252": {"type": "MIPS_GPREL16", "symbol": "gStFinishCB"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "276": {"type": "MIPS_GPREL16", "symbol": "gDMA1CB"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "300": {"type": "MIPS_GPREL16", "symbol": "gDMA0CB"}, "312": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "324": {"type": "MIPS_GPREL16", "symbol": "gIRQCB"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "368": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "372": {"type": "MIPS_26", "symbol": "printf"}, "376": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "380": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "384": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "392": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "400": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "440": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "444": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "452": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "476": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "496": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "500": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "504": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "512": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "520": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "540": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "556": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "564": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "588": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "596": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceSpu2CallbackInit": {"1b71c36dae3e3be5146d71a401166fef4518455f": {"6f69a0ff": {"type": "FUNCTION", "size": 128, "library": "librspu2", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.0"], "sdk": ["2.1.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "sceSpu2Remote", "scope": "LIBRARY"}, "28": {"type": "MIPS_HI16", "symbol": "_spuCBThread", "original": ".text"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "_spuCBThread", "original": ".text"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_26", "symbol": "CreateThread"}, "92": {"type": "MIPS_26", "symbol": "StartThread"}}}}, "6d1d9fda0115181df4b845ecceb980aeaf16cc90": {"a3b248c7": {"type": "FUNCTION", "size": 128, "library": "librspu2", "scope": "GLOBAL", "is_interface": true, "versions": ["1.5.0"], "sdk": ["1.5.1"], "compiler_versions": ["2.3.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "sceSpu2Remote", "scope": "LIBRARY"}, "28": {"type": "MIPS_HI16", "symbol": "_spuCBThread", "original": ".text"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "_spuCBThread", "original": ".text"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_26", "symbol": "CreateThread"}, "92": {"type": "MIPS_26", "symbol": "StartThread"}}}}}, "_spuCBThread": {"f994ac3f0aa5f58be25c301c10f4ec35f44ceef9": {"82475695": {"type": "FUNCTION", "size": 100, "library": "librspu2", "scope": "LOCAL", "is_interface": false, "versions": ["1.5.0", "1.6.0"], "sdk": ["1.5.1", "2.1.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "16": {"type": "MIPS_26", "symbol": "GetThreadId"}, "28": {"type": "MIPS_26", "symbol": "sceSifSetRpcQueue"}, "36": {"type": "MIPS_HI16", "symbol": "_spuCB", "original": ".text"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "_spuCB", "original": ".text"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_26", "symbol": "sceSifRegisterRpc"}, "80": {"type": "MIPS_26", "symbol": "sceSifRpcLoop"}}}}}, "_spuCB": {"7d7883f2ce4e9c1cad70aaadf9b86b103bc1b992": {"69dfaf7f": {"type": "FUNCTION", "size": 204, "library": "librspu2", "scope": "LOCAL", "is_interface": false, "versions": ["1.6.0"], "sdk": ["2.1.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "455bb36c60b3dbeb072c637c9f55a16a001e675c": {"6c03f394": {"type": "FUNCTION", "size": 180, "library": "librspu2", "scope": "LOCAL", "is_interface": false, "versions": ["1.5.0"], "sdk": ["1.5.1"], "compiler_versions": ["2.3.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "68": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "92": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "112": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "132": {"type": "MIPS_GPREL16", "symbol": ".sdata"}, "152": {"type": "MIPS_GPREL16", "symbol": ".sdata"}}}}}, "sceSpu2StreamEnvInit": {"615c156ce19421956146f45ca90563b9f68945c5": {"70e0ffe1": {"type": "FUNCTION", "size": 116, "library": "librspu2", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.0"], "sdk": ["2.1.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "sceSpu2Remote", "scope": "LIBRARY"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceSpu2StreamEnvSet": {"a5f6c775618c070deb72f07001afc88ce82cfe31": {"a610eaa9": {"type": "FUNCTION", "size": 100, "library": "librspu2", "scope": "GLOBAL", "is_interface": true, "versions": ["1.6.0"], "sdk": ["2.1.4"], "compiler_versions": ["2.3.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_26", "symbol": "sceSifSetDma"}, "64": {"type": "MIPS_26", "symbol": "sceSifDmaStat"}}}}}}, "libsk": {"sceSkInit": {"0a5385cf4a659d302a43046ea0269e2b17a3ef1d": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libsk", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.0", "2.5.3", "2.5.4", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceSkSsInit": {"24fecf03b10c2bf49040aabf05b2a480561dc02f": {"b95c06a2": {"type": "FUNCTION", "size": 44, "library": "libsk", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.0", "2.5.3", "2.5.4", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceSdRemoteInit"}, "20": {"type": "MIPS_26", "symbol": "sceSdRemoteCallbackInit"}}}}, "e77f54253206ecf7cf3eda5b1e863f7c2c377121": {"6d0a40a0": {"type": "FUNCTION", "size": 132, "library": "libsk", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceSdRemoteInit"}, "20": {"type": "MIPS_26", "symbol": "sceSdRemoteCallbackInit"}, "44": {"type": "MIPS_26", "symbol": "sceSdRemote"}, "64": {"type": "MIPS_26", "symbol": "sceSdRemote"}, "84": {"type": "MIPS_26", "symbol": "sceSdRemote"}, "104": {"type": "MIPS_26", "symbol": "sceSdRemote"}}}}}, "sceSkSsSOUND_Control": {"50df529946c6168a8aa45fd1748f4cf2dae771ec": {"a38579c5": {"type": "FUNCTION", "size": 188, "library": "libsk", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.3", "2.5.4", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sk_sound_buffer"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_sound_buffer"}, "72": {"type": "MIPS_26", "symbol": "memset"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_sound_buffer"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_sound_buffer"}, "156": {"type": "MIPS_26", "symbol": "sceSdRemote"}}}}, "9320e3048bd778d34f58d96fb7da81f004170870": {"ffbe9644": {"type": "FUNCTION", "size": 200, "library": "libsk", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sk_sound_buffer"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_sound_buffer"}, "80": {"type": "MIPS_26", "symbol": "memset"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_sound_buffer"}, "164": {"type": "MIPS_26", "symbol": "sceSdRemote"}}}}}, "sceSkSsSOUND_Send": {"183f80adaa01550e245e80898b84986228955936": {"369d1194": {"type": "FUNCTION", "size": 176, "library": "libsk", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.3", "2.5.4", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sk_sound_buffer"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_sound_buffer"}, "72": {"type": "MIPS_26", "symbol": "memset"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_sound_buffer"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_sound_buffer"}, "144": {"type": "MIPS_26", "symbol": "sceSdRemote"}}}}, "eb0b07f572a1224db3273f2f62bdcbca95f02e3e": {"53545592": {"type": "FUNCTION", "size": 188, "library": "libsk", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sk_sound_buffer"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_sound_buffer"}, "80": {"type": "MIPS_26", "symbol": "memset"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_sound_buffer"}, "152": {"type": "MIPS_26", "symbol": "sceSdRemote"}}}}}, "sceSkSsHSYNTH_Bind": {"75867768ef02834a49a0a3a74c13e664c2658ee9": {"65137c1a": {"type": "FUNCTION", "size": 212, "library": "libsk", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.0", "2.5.3", "2.5.4", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sk_hsynth_buffer"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_hsynth_buffer"}, "80": {"type": "MIPS_26", "symbol": "memset"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_hsynth_buffer"}, "176": {"type": "MIPS_26", "symbol": "sceSdRemote"}}}}}, "sceSkSsHSYNTH_Unbind": {"f5c847b75f745f2221ff7d737344543feb6b8858": {"2fe9f052": {"type": "FUNCTION", "size": 168, "library": "libsk", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.0", "2.5.3", "2.5.4", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sk_hsynth_buffer"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_hsynth_buffer"}, "80": {"type": "MIPS_26", "symbol": "memset"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_hsynth_buffer"}, "132": {"type": "MIPS_26", "symbol": "sceSdRemote"}}}}}, "sceSkSsHSYNTH_Control": {"8fe84b8f9d8496e2bc2956ca84df698512599de9": {"dea826b1": {"type": "FUNCTION", "size": 192, "library": "libsk", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.0", "2.5.3", "2.5.4", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1)PS2SDB", 8192}, + std::string_view{R"PS2SDB(", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sk_hsynth_buffer"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_hsynth_buffer"}, "80": {"type": "MIPS_26", "symbol": "memset"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_hsynth_buffer"}, "156": {"type": "MIPS_26", "symbol": "sceSdRemote"}}}}}, "sceSkSsMIDI_Bind": {"fbeb9b962164dcb6fc4b0af1a7fd9a1ff2dfed13": {"1be58d98": {"type": "FUNCTION", "size": 176, "library": "libsk", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.3", "2.5.4", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sk_midi_buffer"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_midi_buffer"}, "72": {"type": "MIPS_26", "symbol": "memset"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_midi_buffer"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_midi_buffer"}, "144": {"type": "MIPS_26", "symbol": "sceSdRemote"}}}}, "d9c0a83f228c7cab588d48ee0ff39daf8e4c369e": {"ada0017e": {"type": "FUNCTION", "size": 188, "library": "libsk", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sk_midi_buffer"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_midi_buffer"}, "80": {"type": "MIPS_26", "symbol": "memset"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_midi_buffer"}, "152": {"type": "MIPS_26", "symbol": "sceSdRemote"}}}}}, "sceSkSsMIDI_Unbind": {"25a6749bf1a73cbdc7c3cfbeb1992250a63947d2": {"4794792f": {"type": "FUNCTION", "size": 156, "library": "libsk", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.3", "2.5.4", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sk_midi_buffer"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_midi_buffer"}, "72": {"type": "MIPS_26", "symbol": "memset"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_midi_buffer"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_midi_buffer"}, "124": {"type": "MIPS_26", "symbol": "sceSdRemote"}}}}, "638ff5dcef97cb8dbc4f47a110285c5c3874dd49": {"2fe9f052": {"type": "FUNCTION", "size": 168, "library": "libsk", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sk_midi_buffer"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_midi_buffer"}, "80": {"type": "MIPS_26", "symbol": "memset"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_midi_buffer"}, "132": {"type": "MIPS_26", "symbol": "sceSdRemote"}}}}}, "sceSkSsMIDI_Control": {"da855369fce1aba8b4e75d5272ff590d7cf0a026": {"68edaa57": {"type": "FUNCTION", "size": 180, "library": "libsk", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.3", "2.5.4", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sk_midi_buffer"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_midi_buffer"}, "72": {"type": "MIPS_26", "symbol": "memset"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_midi_buffer"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_midi_buffer"}, "148": {"type": "MIPS_26", "symbol": "sceSdRemote"}}}}, "1418f1eff50282fc8008f406f39faf5ad97c09fe": {"dea826b1": {"type": "FUNCTION", "size": 192, "library": "libsk", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sk_midi_buffer"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_midi_buffer"}, "80": {"type": "MIPS_26", "symbol": "memset"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_midi_buffer"}, "156": {"type": "MIPS_26", "symbol": "sceSdRemote"}}}}}, "sceSkSsMSIN_Bind": {"bf55605967c927a8bca970e65fc8453f537ade98": {"c9f9bfcc": {"type": "FUNCTION", "size": 176, "library": "libsk", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.0", "2.5.3", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sk_msin_buffer"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_msin_buffer"}, "80": {"type": "MIPS_26", "symbol": "memset"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_msin_buffer"}, "140": {"type": "MIPS_26", "symbol": "sceSdRemote"}}}}}, "sceSkSsMSIN_Unbind": {"063590b1179257d471753f9c2813ed94d0aa8e1d": {"2fe9f052": {"type": "FUNCTION", "size": 168, "library": "libsk", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.0", "2.5.3", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sk_msin_buffer"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_msin_buffer"}, "80": {"type": "MIPS_26", "symbol": "memset"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_msin_buffer"}, "132": {"type": "MIPS_26", "symbol": "sceSdRemote"}}}}}, "sceSkSsMSIN_Control": {"597c204b29b2fb299bd57fa7304810fdac32b1dc": {"f0e6648a": {"type": "FUNCTION", "size": 252, "library": "libsk", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.0", "2.5.3", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sk_msin_buffer"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_msin_buffer"}, "80": {"type": "MIPS_26", "symbol": "memset"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_msin_buffer"}, "216": {"type": "MIPS_26", "symbol": "sceSdRemote"}}}}}, "sceSkSsMIDI_Status": {"1194d55a4dcb165862bf17670135a30ee8ca3b16": {"4794792f": {"type": "FUNCTION", "size": 156, "library": "libsk", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.3", "2.5.4", "2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sk_midi_buffer"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_midi_buffer"}, "72": {"type": "MIPS_26", "symbol": "memset"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_midi_buffer"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_midi_buffer"}, "124": {"type": "MIPS_26", "symbol": "sceSdRemote"}}}}}, "sceSkSsSESQ_Bind": {"2cd20f3b2fe7a43a169f92c06039c894ec47354e": {"ada0017e": {"type": "FUNCTION", "size": 188, "library": "libsk", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sk_sesq_buffer"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_sesq_buffer"}, "80": {"type": "MIPS_26", "symbol": "memset"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_sesq_buffer"}, "152": {"type": "MIPS_26", "symbol": "sceSdRemote"}}}}}, "sceSkSsSESQ_Unbind": {"a4c7408992f543d22caf26556381c99ea7a1e5f9": {"2fe9f052": {"type": "FUNCTION", "size": 168, "library": "libsk", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.0", "2.7.1", "2.)PS2SDB", 8192}, + std::string_view{R"PS2SDB(8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sk_sesq_buffer"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_sesq_buffer"}, "80": {"type": "MIPS_26", "symbol": "memset"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_sesq_buffer"}, "132": {"type": "MIPS_26", "symbol": "sceSdRemote"}}}}}, "sceSkSsSESQ_Control": {"f3d8bb2b3614d03112fb1520e390fd54a8ad4042": {"9452aaf9": {"type": "FUNCTION", "size": 204, "library": "libsk", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.0", "2.7.1", "2.7.2", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sk_sesq_buffer"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_sesq_buffer"}, "80": {"type": "MIPS_26", "symbol": "memset"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_sesq_buffer"}, "168": {"type": "MIPS_26", "symbol": "sceSdRemote"}}}}}, "sceSkSsSESQ_Status": {"981b24369c7a365e146f59dd044a8fbec2ebe340": {"4bb04ee0": {"type": "FUNCTION", "size": 180, "library": "libsk", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sk_sesq_buffer"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_sesq_buffer"}, "80": {"type": "MIPS_26", "symbol": "memset"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_sesq_buffer"}, "144": {"type": "MIPS_26", "symbol": "sceSdRemote"}}}}}, "sceSkSsSTRADPCM_Bind": {"9cb98bd998e54c7afcbe8dd50786ce88d974d52e": {"c9f9bfcc": {"type": "FUNCTION", "size": 176, "library": "libsk", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.0", "2.7.2", "2.8.0", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sk_stradpcm_buffer"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_stradpcm_buffer"}, "80": {"type": "MIPS_26", "symbol": "memset"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_stradpcm_buffer"}, "140": {"type": "MIPS_26", "symbol": "sceSdRemote"}}}}}, "_PsceSkSsStrAdpcmInitEnv": {"4cb63fc45e8f17a64ceabfd59056580baa2ebe7e": {"00000000": {"type": "FUNCTION", "size": 288, "library": "libsk", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.0", "2.7.2", "2.8.0", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_PsceSkSsSTRADPCM_Append": {"1f03eb4b24b473e2c0d98202c73ecd7f0d2d7e4f": {"720c3363": {"type": "FUNCTION", "size": 308, "library": "libsk", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.0", "2.7.2", "2.8.0", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "_PsceSkSsSTRADPCM_ATick1": {"d376795064ed46289cdc77248581b48a94286ee7": {"656afbc8": {"type": "FUNCTION", "size": 132, "library": "libsk", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.0", "2.7.2", "2.8.0", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sk_stradpcm_status"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_stradpcm_status"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "_PsceSkSsSTRADPCM_ATick2": {"0c263b15880d3ffb6d74c2a7a282c18e37d2141e": {"9573e70a": {"type": "FUNCTION", "size": 236, "library": "libsk", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.0", "2.7.2", "2.8.0", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sk_stradpcm_status"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_stradpcm_status"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_26", "symbol": "_PsceSkSsSTRADPCM_Append", "scope": "LIBRARY", "original": ".text"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_26", "symbol": "sceSifSetDma"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "_PsceSkSsClearValidsize": {"1aac36a5e414ae0560ec9cc0fd79e6ff58bcc65b": {"b9e78b8c": {"type": "FUNCTION", "size": 156, "library": "libsk", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.0", "2.7.2", "2.8.0", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sk_stradpcm_Ienv"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_stradpcm_Ienv"}}}}}, "_PsceSkSsSetValidsize": {"084e8503b458d61ec1eb3fa2e262798536369834": {"00000000": {"type": "FUNCTION", "size": 76, "library": "libsk", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.0", "2.7.2", "2.8.0", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_PsceSkSsSTRADPCM_Sync1": {"9f4d6adf18da8d63fb1a54790d39ece66a57c702": {"8f551636": {"type": "FUNCTION", "size": 284, "library": "libsk", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.0", "2.7.2", "2.8.0", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sk_stradpcm_status"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_stradpcm_status"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_26", "symbol": "sceSifDmaStat"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "200": {"type": "MIPS_26", "symbol": "sceSifDmaStat"}, "232": {"type": "MIPS_26", "symbol": "_PsceSkSsClearValidsize", "scope": "LIBRARY", "original": ".text"}}}}}, "_PsceSkSsSTRADPCM_Sync2": {"08779f2a7937c33097db737682979f70b574f349": {"13978afb": {"type": "FUNCTION", "size": 244, "library": "libsk", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.0", "2.7.2", "2.8.0", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sk_stradpcm_status"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_stradpcm_status"}, "68": {"type": "MIPS_26", "symbol": "_PsceSkSsSetValidsize", "scope": "LIBRARY", "original": ".text"}, "104": {"type": "MIPS_26", "symbol": "_PsceSkSsClearValidsize", "scope": "LIBRARY", "original": ".text"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_stradpcm_status"}, "164": {"type": "MIPS_HI16", "symbol": ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(", "original": "_sce_sk_stradpcm_Ienv"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_stradpcm_Ienv"}}}}}, "sceSkSsSTRADPCM_Control": {"cca36f2b3483eb18efef2963ca640d860be48961": {"2ef5cd06": {"type": "FUNCTION", "size": 1424, "library": "libsk", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.0", "2.7.2", "2.8.0", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"308": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sk_stradpcm_Ienv"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_stradpcm_Ienv"}, "384": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sk_stradpcm_Ienv"}, "484": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sk_stradpcm_Ienv"}, "524": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sk_stradpcm_Ienv"}, "528": {"type": "MIPS_26", "symbol": "_PsceSkSsStrAdpcmInitEnv", "scope": "LIBRARY", "original": ".text"}, "548": {"type": "MIPS_26", "symbol": "_PsceSkSsSTRADPCM_ATick1", "scope": "LIBRARY", "original": ".text"}, "564": {"type": "MIPS_26", "symbol": "_PsceSkSsSTRADPCM_Sync1", "scope": "LIBRARY", "original": ".text"}, "592": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sk_stradpcm_status"}, "604": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_stradpcm_status"}, "724": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_stradpcm_status"}, "764": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sk_stradpcm_status"}, "772": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_stradpcm_status"}, "808": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sk_stradpcm_status"}, "816": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_stradpcm_status"}, "856": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sk_stradpcm_Ienv"}, "864": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_stradpcm_Ienv"}, "916": {"type": "MIPS_26", "symbol": "_sceSkSsSTRADPCM_RPC", "scope": "LIBRARY"}, "940": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "948": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "972": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_stradpcm_Ienv"}, "1164": {"type": "MIPS_26", "symbol": "_PsceSkSsSTRADPCM_ATick2", "scope": "LIBRARY", "original": ".text"}, "1192": {"type": "MIPS_26", "symbol": "_PsceSkSsSTRADPCM_Sync2", "scope": "LIBRARY", "original": ".text"}, "1220": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sk_stradpcm_Ienv"}, "1228": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_stradpcm_Ienv"}, "1240": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sk_stradpcm_status"}, "1288": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_stradpcm_status"}, "1344": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sk_stradpcm_status"}, "1352": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_stradpcm_status"}}}}, "4760edd3b9fa836bcd8bfdc9bfb3eb167a4e8bb2": {"24427537": {"type": "FUNCTION", "size": 1424, "library": "libsk", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"308": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sk_stradpcm_Ienv"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_stradpcm_Ienv"}, "384": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sk_stradpcm_Ienv"}, "484": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sk_stradpcm_Ienv"}, "524": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sk_stradpcm_Ienv"}, "528": {"type": "MIPS_26", "symbol": "_PsceSkSsStrAdpcmInitEnv", "scope": "LIBRARY", "original": ".text"}, "548": {"type": "MIPS_26", "symbol": "_PsceSkSsSTRADPCM_ATick1", "scope": "LIBRARY", "original": ".text"}, "564": {"type": "MIPS_26", "symbol": "_PsceSkSsSTRADPCM_Sync1", "scope": "LIBRARY", "original": ".text"}, "592": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sk_stradpcm_status"}, "604": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_stradpcm_status"}, "724": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_stradpcm_status"}, "764": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sk_stradpcm_status"}, "772": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_stradpcm_status"}, "808": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sk_stradpcm_status"}, "816": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_stradpcm_status"}, "856": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sk_stradpcm_Ienv"}, "864": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_stradpcm_Ienv"}, "916": {"type": "MIPS_26", "symbol": "_sceSkSsSTRADPCM_RPC", "scope": "LIBRARY"}, "940": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "948": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "972": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_stradpcm_Ienv"}, "1168": {"type": "MIPS_26", "symbol": "_PsceSkSsSTRADPCM_ATick2", "scope": "LIBRARY", "original": ".text"}, "1196": {"type": "MIPS_26", "symbol": "_PsceSkSsSTRADPCM_Sync2", "scope": "LIBRARY", "original": ".text"}, "1224": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sk_stradpcm_Ienv"}, "1232": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_stradpcm_Ienv"}, "1244": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sk_stradpcm_status"}, "1288": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_stradpcm_status"}, "1344": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sk_stradpcm_status"}, "1352": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_stradpcm_status"}}}}}, "_sceSkSsSTRADPCM_InitVariables": {"71b8e4e6139eede80e4bae2f58c2c3a2ee88eae6": {"55159f42": {"type": "FUNCTION", "size": 72, "library": "libsk", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.0", "2.7.2", "2.8.0", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sk_stradpcm_status"}, "4": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sk_stradpcm_Ienv"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_stradpcm_status"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_stradpcm_Ienv"}}}}}, "sceSkSsSTRADPCM_Init": {"62f531ccd55fb53c4ee0bab781663225cb741cd3": {"e265a617": {"type": "FUNCTION", "size": 104, "library": "libsk", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.0", "2.7.2", "2.8.0", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "76": {"type": "MIPS_26", "symbol": "_sceSkSsSTRADPCM_InitVariables", "scope": "LIBRARY", "original": ".text"}}}}}, "sceSkSsSTRADPCM_Quit": {"72189fb91ec1833884c999f2eeaddae7154dc2c6": {"7fa7ca79": {"type": "FUNCTION", "size": 36, "library": "libsk", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.0", "2.7.2", "2.8.0", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceSkSsSTRADPCM_Control", "scope": "LIBRARY"}}}}}, "_sceSkSsSTRADPCM_RPC": {"8cd5e40c9dcd8c3207e6c454ce638a7b595362a1": {"ce080998": {"type": "FUNCTION", "size": 72, "library": "libsk", "scope": "GLOBAL", "is_interface": false, "versions": [], "sdk": ["2.7.0", "2.7.2", "2.8.0", "3.0.0", "3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}}}}}, "sceSkSsHSYNTH_Status": {"571de54b4525ca)PS2SDB", 8192}, + std::string_view{R"PS2SDB(746c948c80d0cda6bbce8e6a4f": {"4bb04ee0": {"type": "FUNCTION", "size": 180, "library": "libsk", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sk_hsynth_buffer"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_hsynth_buffer"}, "80": {"type": "MIPS_26", "symbol": "memset"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_hsynth_buffer"}, "144": {"type": "MIPS_26", "symbol": "sceSdRemote"}}}}}, "sceSkSsMSIN_Status": {"dbbde8544e96dd13429d4f56b06f56291046e412": {"4bb04ee0": {"type": "FUNCTION", "size": 180, "library": "libsk", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sk_msin_buffer"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_msin_buffer"}, "80": {"type": "MIPS_26", "symbol": "memset"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_msin_buffer"}, "144": {"type": "MIPS_26", "symbol": "sceSdRemote"}}}}}, "sceSkSsSTRADPCM_Unbind": {"b74572a3e61bff31c61c12dc98f16756ef59eac7": {"2fe9f052": {"type": "FUNCTION", "size": 168, "library": "libsk", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.0", "3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sk_stradpcm_buffer"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_stradpcm_buffer"}, "80": {"type": "MIPS_26", "symbol": "memset"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_stradpcm_buffer"}, "132": {"type": "MIPS_26", "symbol": "sceSdRemote"}}}}}, "sceSkSsSTRADPCM_Status": {"b9f8c073e3cd8242b2c4d9c90caf5740a00d6e78": {"435f91e0": {"type": "FUNCTION", "size": 252, "library": "libsk", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"152": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sk_stradpcm_Ienv"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sk_stradpcm_Ienv"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_stradpcm_Ienv"}, "224": {"type": "MIPS_26", "symbol": "_sceSkSsSTRADPCM_RPC", "scope": "LIBRARY"}}}}, "33248fe9c7cfab64fb5862009278490c0d1acb08": {"7be9525e": {"type": "FUNCTION", "size": 256, "library": "libsk", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"168": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_sk_stradpcm_Ienv"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_sk_stradpcm_Ienv"}, "228": {"type": "MIPS_26", "symbol": "_sceSkSsSTRADPCM_RPC", "scope": "LIBRARY"}}}}}, "sceSkQuit": {"0a5385cf4a659d302a43046ea0269e2b17a3ef1d": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libsk", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceSkSsQuit": {"ddd8e32f9e36739a53671a300121ec6445eb7bd6": {"a811811a": {"type": "FUNCTION", "size": 32, "library": "libsk", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["3.0.1", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceSdRemoteCallbackQuit"}}}}}}, "libpfont": {"scePFontRelease": {"1133d07d046d3e4fc7f81a461977813680f86276": {"6f4fcff7": {"type": "FUNCTION", "size": 12, "library": "libpfont", "scope": "GLOBAL", "is_interface": true, "versions": ["1.0.0", "1.1.0"], "sdk": ["2.6.0", "2.7.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_26", "symbol": "memset"}}}}, "9779a23e5f48771bcc7fec82c711b2afc0735339": {"6943b909": {"type": "FUNCTION", "size": 32, "library": "libpfont", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "memset"}}}}}, "scePFontSetTexMem": {"674cd350060abb9bde24700561fcef2822e934c5": {"58b8f805": {"type": "FUNCTION", "size": 20, "library": "libpfont", "scope": "GLOBAL", "is_interface": true, "versions": ["1.0.0", "1.1.0"], "sdk": ["2.6.0", "2.7.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "_scePFontFlushTex", "scope": "LIBRARY", "original": ".text"}}}}}, "scePFontFlush": {"2770634a4b9aa7734eb723fe716d8bc43d9edfea": {"5ee56be1": {"type": "FUNCTION", "size": 132, "library": "libpfont", "scope": "GLOBAL", "is_interface": true, "versions": ["1.0.0"], "sdk": ["2.6.0", "2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"124": {"type": "MIPS_26", "symbol": "_scePFontFlushTex", "scope": "LIBRARY", "original": ".text"}}}}, "337fa62c70bd4b9fb4b46489f4edd4a14004fca7": {"5ee56be1": {"type": "FUNCTION", "size": 132, "library": "libpfont", "scope": "GLOBAL", "is_interface": true, "versions": ["1.1.0"], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"124": {"type": "MIPS_26", "symbol": "_scePFontFlushTex", "scope": "LIBRARY", "original": ".text"}}}}}, "scePFontGetGlyph": {"86517518f678e0fe5947d583155e218f0b9ccc7d": {"56a17704": {"type": "FUNCTION", "size": 464, "library": "libpfont", "scope": "GLOBAL", "is_interface": true, "versions": ["1.0.0", "1.1.0"], "sdk": ["2.6.0", "2.7.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"236": {"type": "MIPS_26", "symbol": "_scePFontGetColorDepth", "scope": "LIBRARY", "original": ".text"}}}}}, "scePFontSetScreenMatrix": {"a639a8a356321edbeccee089cae462e9fca431ea": {"d9f22220": {"type": "FUNCTION", "size": 8, "library": "libpfont", "scope": "GLOBAL", "is_interface": true, "versions": ["1.0.0", "1.1.0"], "sdk": ["2.6.0", "2.7.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_26", "symbol": "sceVu0CopyMatrix"}}}}, "7ba17f652620d1a8770717ffc05543c774ba24f8": {"60b10420": {"type": "FUNCTION", "size": 28, "library": "libpfont", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceVu0CopyMatrix"}}}}}, "scePFontGetScreenMatrix": {"65016b91adae57405a6cd9168df54273b13ca7f6": {"60b10420": {"type": "FUNCTION", "size": 16, "library": "libpfont", "scope": "GLOBAL", "is_interface": true, "versions": ["1.0.0", "1.1.0"], "sdk": ["2.6.0", "2.7.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceVu0CopyMatrix"}}}}}, "scePFontSetFontMatrix": {"b7618e72f28203b142447b93bc42b098ade5f753": {"d9f22220": {"type": "FUNCTION", "size": 8, "library": "libpfont", "scope": "GLOBAL", "is_interface": true, "versions": ["1.0.0", "1.1.0"], "sdk": ["2.6.0", "2.7.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_26", "symbol": "sceVu0CopyMatrix"}}}}, "4b560c2a3eabb22a18811429072d9117d5c477c0": {"60b10420": {"type": "FUNCTION", "size": 28, "library": "libpfont", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceVu0CopyMatrix"}}}}}, "scePFontGetFontMatrix": {"b3e62a88ef22348861312d3c4afde4bdc77d4ec8": {"60b10420": {"type": "FUNCTION", "size": 16, "library": "libpfont", "scope": "GLOBAL", "is_interface": true, "versions": ["1.0.0", "1.1.0"], "sdk": ["2.6.0", "2.7.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceVu0CopyMatrix"}}}}}, "scePFontSetLocate": {"4609b447f127111a66e11b84045d8cf4cbd174d2": {"3aaf2bb4": {"type": "FUNCTION", "size": 8, "library": "libpfont", "scope": "GLOBAL", "is_interface": true, "versions": ["1.0.0", "1.1.0"], "sdk": ["2.6.0", "2.7.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_26", "symbol": "sceVu0CopyVector"}}}}, "2236da5df6f73e426855b3293cfd6f82c9906)PS2SDB", 8192}, + std::string_view{R"PS2SDB(194": {"83ec0db4": {"type": "FUNCTION", "size": 28, "library": "libpfont", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceVu0CopyVector"}}}}}, "scePFontGetLocate": {"b247812dc90aa78c737dbe87f2857b85bcd1276c": {"83ec0db4": {"type": "FUNCTION", "size": 16, "library": "libpfont", "scope": "GLOBAL", "is_interface": true, "versions": ["1.0.0", "1.1.0"], "sdk": ["2.6.0", "2.7.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceVu0CopyVector"}}}}, "0621a3ede7ed05eb48523e38f412424ccda8bd9a": {"935861f5": {"type": "FUNCTION", "size": 36, "library": "libpfont", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "sceVu0CopyVector"}}}}}, "scePFontSetColor": {"ba1ffdef24538e39d82bde719201208aa3ad5c6a": {"3aaf2bb4": {"type": "FUNCTION", "size": 8, "library": "libpfont", "scope": "GLOBAL", "is_interface": true, "versions": ["1.0.0", "1.1.0"], "sdk": ["2.6.0", "2.7.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_26", "symbol": "sceVu0CopyVector"}}}}, "036664bdb4a2ed8f66b8247f0cb8537e23c09ab0": {"83ec0db4": {"type": "FUNCTION", "size": 28, "library": "libpfont", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceVu0CopyVector"}}}}}, "scePFontGetColor": {"6036709251707f2ae4f8209c78b9698834320a14": {"83ec0db4": {"type": "FUNCTION", "size": 16, "library": "libpfont", "scope": "GLOBAL", "is_interface": true, "versions": ["1.0.0", "1.1.0"], "sdk": ["2.6.0", "2.7.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceVu0CopyVector"}}}}}, "_scePFontRefLoadImage": {"a5ebb2113d65f44d051b56b11f995f763c2fcf80": {"00000000": {"type": "FUNCTION", "size": 884, "library": "libpfont", "scope": "LOCAL", "is_interface": false, "versions": ["1.0.0", "1.1.0"], "sdk": ["2.6.0", "2.7.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_scePFontSetupTexCache": {"14b76582db57eacc3a20af2f27a02752d417c9af": {"148c734b": {"type": "FUNCTION", "size": 996, "library": "libpfont", "scope": "LOCAL", "is_interface": false, "versions": ["1.0.0"], "sdk": ["2.6.0", "2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "272": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "276": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "332": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "840": {"type": "MIPS_26", "symbol": "_scePFontRefLoadImage", "scope": "LIBRARY", "original": ".text"}, "920": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "924": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "928": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "932": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "936": {"type": "MIPS_26", "symbol": "__assert"}}}}, "89abca637136db9bdbd7de14df89be0ae22eb6fd": {"846211b7": {"type": "FUNCTION", "size": 932, "library": "libpfont", "scope": "LOCAL", "is_interface": false, "versions": ["1.1.0"], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "268": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "272": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "328": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "840": {"type": "MIPS_26", "symbol": "_scePFontRefLoadImage", "scope": "LIBRARY", "original": ".text"}}}}}, "_scePFontUpdateTex": {"ac751e0b182e639e507c4feb68c1ce6af791bc49": {"3c483518": {"type": "FUNCTION", "size": 1796, "library": "libpfont", "scope": "LOCAL", "is_interface": false, "versions": ["1.0.0"], "sdk": ["2.6.0", "2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "_scePFontSetupTexCache", "scope": "LIBRARY", "original": ".text"}, "1720": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1724": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1728": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1732": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1736": {"type": "MIPS_26", "symbol": "__assert"}}}}, "7b4ff314eca09c27f452f4c1d3bb1d46f460de0f": {"3d424231": {"type": "FUNCTION", "size": 1724, "library": "libpfont", "scope": "LOCAL", "is_interface": false, "versions": ["1.1.0"], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "_scePFontSetupTexCache", "scope": "LIBRARY", "original": ".text"}}}}}, "_scePFontSetupTexEnv": {"10d9d335ba056a6438372624cf670a0fca6fcaeb": {"6bac25ec": {"type": "FUNCTION", "size": 688, "library": "libpfont", "scope": "LOCAL", "is_interface": false, "versions": ["1.0.0"], "sdk": ["2.6.0", "2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"648": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "652": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "656": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "660": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "664": {"type": "MIPS_26", "symbol": "__assert"}}}}, "2d876a961ced8e508349f842ac5de95407001f44": {"00000000": {"type": "FUNCTION", "size": 644, "library": "libpfont", "scope": "LOCAL", "is_interface": false, "versions": ["1.1.0"], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_scePFont_Putc": {"2dadd3ba788d9215c9b4c37a809f2c30cd61a0bd": {"dbcd3da6": {"type": "FUNCTION", "size": 3208, "library": "libpfont", "scope": "LOCAL", "is_interface": false, "versions": ["1.0.0"], "sdk": ["2.6.0", "2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"280": {"type": "MIPS_26", "symbol": "scePFontGetGlyph", "scope": "LIBRARY", "original": ".text"}, "344": {"type": "MIPS_26", "symbol": "_scePFontUpdateTex", "scope": "LIBRARY", "original": ".text"}, "384": {"type": "MIPS_26", "symbol": "_scePFontSetupTexEnv", "scope": "LIBRARY", "original": ".text"}, "1244": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1248": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1252": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1256": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1260": {"type": "MIPS_26", "symbol": "__assert"}}}}, "9be64058153b7802d1dfd181682f5df3ad573de3": {"8329f49a": {"type": "FUNCTION", "size": 3176, "library": "libpfont", "scope": "LOCAL", "is_interface": false, "versions": ["1.1.0"], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"260": {"type": "MIPS_26", "symbol": "scePFontGetGlyph", "scope": "LIBRARY", "original": ".text"}, "320": {"type": "MIPS_26", "symbol": "_scePFontUpdateTex", "scope": "LIBRARY", "original": ".text"}, "360": {"type": "MIPS_26", "symbol": "_scePFontSetupTexEnv", "scope": "LIBRARY")PS2SDB", 8192}, + std::string_view{R"PS2SDB(, "original": ".text"}}}}}, "scePFontCalcCacheSize": {"726e278237adeca7be6fc50f48bfba1a7d715de5": {"00000000": {"type": "FUNCTION", "size": 12, "library": "libpfont", "scope": "GLOBAL", "is_interface": true, "versions": ["1.0.0", "1.1.0"], "sdk": ["2.6.0", "2.7.0", "2.7.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "scePFontInit": {"9df6b0d7cdd6e20d117abc9b9872acb9e08cf677": {"9d96ae3a": {"type": "FUNCTION", "size": 208, "library": "libpfont", "scope": "GLOBAL", "is_interface": true, "versions": ["1.0.0"], "sdk": ["2.6.0", "2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "memset"}, "40": {"type": "MIPS_HI16", "symbol": "_scePFontDefaultFilter", "original": ".text"}, "48": {"type": "MIPS_LO16", "symbol": "_scePFontDefaultFilter", "original": ".text"}, "176": {"type": "MIPS_26", "symbol": "scePFontFlush", "scope": "LIBRARY", "original": ".text"}}}}, "13c84bccf83819ec678cae3a6645d75838d64b94": {"9d96ae3a": {"type": "FUNCTION", "size": 208, "library": "libpfont", "scope": "GLOBAL", "is_interface": true, "versions": ["1.1.0"], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "memset"}, "40": {"type": "MIPS_HI16", "symbol": "_scePFontDefaultFilter", "original": ".text"}, "48": {"type": "MIPS_LO16", "symbol": "_scePFontDefaultFilter", "original": ".text"}, "176": {"type": "MIPS_26", "symbol": "scePFontFlush", "scope": "LIBRARY", "original": ".text"}}}}}, "scePFontAttachData": {"2ceb14c4e3160a3a131c9b84771492750f596819": {"0386f939": {"type": "FUNCTION", "size": 60, "library": "libpfont", "scope": "GLOBAL", "is_interface": true, "versions": ["1.0.0", "1.1.0"], "sdk": ["2.6.0", "2.7.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "scePFontFlush", "scope": "LIBRARY", "original": ".text"}}}}, "75d8072987fa97e5f9c6093a6981936ace6c33c1": {"e34fe95e": {"type": "FUNCTION", "size": 68, "library": "libpfont", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "scePFontFlush", "scope": "LIBRARY"}}}}}, "scePFontGetFontInfo": {"de0dccdffc51774dea6155a91962a8f33967b38e": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libpfont", "scope": "GLOBAL", "is_interface": true, "versions": ["1.0.0", "1.1.0"], "sdk": ["2.6.0", "2.7.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "scePFontGetBlock": {"643b29ebd293b43b02a662548631b6ad53d524aa": {"00000000": {"type": "FUNCTION", "size": 48, "library": "libpfont", "scope": "GLOBAL", "is_interface": true, "versions": ["1.0.0", "1.1.0"], "sdk": ["2.6.0", "2.7.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "5773ac441cc2a6993634e26809e149239e4d7205": {"00000000": {"type": "FUNCTION", "size": 72, "library": "libpfont", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "scePFontSetPitch": {"03f8b712f573f1b5be1aa12872c1a1fee47e43fe": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libpfont", "scope": "GLOBAL", "is_interface": true, "versions": ["1.0.0", "1.1.0"], "sdk": ["2.6.0", "2.7.0", "2.7.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "scePFontGetPitch": {"4be264f6db3dcf25111668e6e16703767d800de1": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libpfont", "scope": "GLOBAL", "is_interface": true, "versions": ["1.0.0", "1.1.0"], "sdk": ["2.6.0", "2.7.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "scePFontSetWidth": {"17e3bd577793b2c8f0c4848dca3a3efd6606e598": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libpfont", "scope": "GLOBAL", "is_interface": true, "versions": ["1.0.0", "1.1.0"], "sdk": ["2.6.0", "2.7.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "scePFontGetWidth": {"627c63b62962aa8a0277561209e3fa79465b142d": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libpfont", "scope": "GLOBAL", "is_interface": true, "versions": ["1.0.0", "1.1.0"], "sdk": ["2.6.0", "2.7.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "scePFontPutc": {"3f2d9325205586def01f14d9c2d61a6a61fbecde": {"6deac055": {"type": "FUNCTION", "size": 56, "library": "libpfont", "scope": "GLOBAL", "is_interface": true, "versions": ["1.0.0"], "sdk": ["2.6.0", "2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "_scePFont_Putc", "scope": "LIBRARY", "original": ".text"}}}}, "2f1b505c8e894250ee939fff960f5296f50183a7": {"6deac055": {"type": "FUNCTION", "size": 56, "library": "libpfont", "scope": "GLOBAL", "is_interface": true, "versions": ["1.1.0"], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "_scePFont_Putc", "scope": "LIBRARY", "original": ".text"}}}}}, "scePFontPuts": {"4b1099be72ee93d998d654bea6191b27cb3e07ac": {"c168feae": {"type": "FUNCTION", "size": 52, "library": "libpfont", "scope": "GLOBAL", "is_interface": true, "versions": ["1.0.0"], "sdk": ["2.6.0", "2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "scePFontPutsContinue", "scope": "LIBRARY", "original": ".text"}}}}, "e999033190087578974b246e419299ad6e601cd7": {"c168feae": {"type": "FUNCTION", "size": 52, "library": "libpfont", "scope": "GLOBAL", "is_interface": true, "versions": ["1.1.0"], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "scePFontPutsContinue", "scope": "LIBRARY", "original": ".text"}}}}, "ef81600732a26d13db1b4cc526ca17099aaf91a8": {"9b52ae05": {"type": "FUNCTION", "size": 48, "library": "libpfont", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "scePFontPutsContinue", "scope": "LIBRARY"}}}}}, "scePFontPutsContinue": {"e5915640ca1ab36b5426e9425af024d3a35c9c8c": {"3918e6d2": {"type": "FUNCTION", "size": 72, "library": "libpfont", "scope": "GLOBAL", "is_interface": true, "versions": ["1.0.0"], "sdk": ["2.6.0", "2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "0cba75a2cfc3afab41424ffb37516936ae3e51e0": {"3918e6d2": {"type": "FUNCTION", "size": 72, "library": "libpfont", "scope": "GLOBAL", "is_interface": true, "versions": ["1.1.0"], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "8db5329055a22511fb88da10a57027ecdbf41770": {"eb15da6c": {"type": "FUNCTION", "size": 76, "library": "libpfont", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_HI16", "symbol": "", "original": "s_scePFontControl"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": "s_scePFontControl"}}}}}, "scePFontCalcRect": {"816c42017b7a1a12fdcf257ce9a2a2df8ae2b816": {"170fecfa": {"type": "FUNCTION", "size": 384, "library": "libpfont", "scope": "GLOBAL", "is_interface": true, "versions": ["1.0.0"], "sdk": ["2.6.0", "2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"144": {"type": "MIPS_26", "symbol": "_scePFontResetArea", "scope": "LIBRARY", "original": ".text"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "eb7cedccef18944cadbc58ec72a77c55cb951bfa": {"170fecfa": {"type": "FUNCTION", "size": 384, "library": "libpfont", "scope": "GLOBAL", "is_interface": true, "versions": ["1.1.0"], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"144": {"type": "MIPS_26", "symbol": "_scePFontResetArea", "scope": "LIBRARY", "original": ".text"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, )PS2SDB", 8192}, + std::string_view{R"PS2SDB("172": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "scePFontSetFilter": {"406800e16001ad4fc73486aeeb1c8cde9c5a5928": {"00553cb9": {"type": "FUNCTION", "size": 20, "library": "libpfont", "scope": "GLOBAL", "is_interface": true, "versions": ["1.0.0"], "sdk": ["2.6.0", "2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "_scePFontDefaultFilter", "original": ".text"}, "8": {"type": "MIPS_LO16", "symbol": "_scePFontDefaultFilter", "original": ".text"}}}}, "debbe5fd1aaa2c538f546e817aa664199e61537a": {"00553cb9": {"type": "FUNCTION", "size": 20, "library": "libpfont", "scope": "GLOBAL", "is_interface": true, "versions": ["1.1.0"], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "_scePFontDefaultFilter", "original": ".text"}, "8": {"type": "MIPS_LO16", "symbol": "_scePFontDefaultFilter", "original": ".text"}}}}}, "_scePFontDefaultFilter": {"2f05b50cb22384657456a6b74ef31f283973cd49": {"00000000": {"type": "FUNCTION", "size": 140, "library": "libpfont", "scope": "LOCAL", "is_interface": false, "versions": ["1.0.0", "1.1.0"], "sdk": ["2.6.0", "2.7.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_scePFontGetColorDepth": {"bafb2606736cf872cf399a00fd5baec92d363b9f": {"00000000": {"type": "FUNCTION", "size": 24, "library": "libpfont", "scope": "LOCAL", "is_interface": false, "versions": ["1.0.0", "1.1.0"], "sdk": ["2.6.0", "2.7.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_scePFontFlushTex": {"f840d009874437be51fae61a4c98178610771396": {"00000000": {"type": "FUNCTION", "size": 44, "library": "libpfont", "scope": "LOCAL", "is_interface": false, "versions": ["1.0.0", "1.1.0"], "sdk": ["2.6.0", "2.7.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_scePFontResetArea": {"e00b515627613844a1397c8786766e89c3c0490f": {"00000000": {"type": "FUNCTION", "size": 64, "library": "libpfont", "scope": "LOCAL", "is_interface": false, "versions": ["1.0.0", "1.1.0"], "sdk": ["2.6.0", "2.7.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_scePFont_Getc": {"55d869c365d4284431eb61c338c4e8a944c5230d": {"00000000": {"type": "FUNCTION", "size": 160, "library": "libpfont", "scope": "LOCAL", "is_interface": false, "versions": ["1.0.0"], "sdk": ["2.6.0", "2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "bc0c269674f8538582f70125bf367c227ac368ea": {"00000000": {"type": "FUNCTION", "size": 160, "library": "libpfont", "scope": "LOCAL", "is_interface": false, "versions": ["1.1.0"], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_scePFont_Ungetc": {"8a52e5aa277ada39ab41ba4e62d6d2a298c32c2a": {"00000000": {"type": "FUNCTION", "size": 76, "library": "libpfont", "scope": "LOCAL", "is_interface": false, "versions": ["1.0.0"], "sdk": ["2.6.0", "2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "1e5302ce5990072cff635d178beb449314354395": {"00000000": {"type": "FUNCTION", "size": 76, "library": "libpfont", "scope": "LOCAL", "is_interface": false, "versions": ["1.1.0"], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_scePFont_Putcx": {"638e547212d44328d3c8f9a6d1dc329650686ee2": {"44e60690": {"type": "FUNCTION", "size": 56, "library": "libpfont", "scope": "LOCAL", "is_interface": false, "versions": ["1.0.0", "1.1.0"], "sdk": ["2.6.0", "2.7.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "_scePFont_Putc", "scope": "LIBRARY", "original": ".text"}}}}}, "_scePFont_Calc": {"cf6ec286956872a340e8ba61c0b3db69c290b274": {"b4c4a6d6": {"type": "FUNCTION", "size": 400, "library": "libpfont", "scope": "LOCAL", "is_interface": false, "versions": ["1.0.0", "1.1.0"], "sdk": ["2.6.0", "2.7.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"204": {"type": "MIPS_26", "symbol": "_scePFont_Putc", "scope": "LIBRARY", "original": ".text"}}}}}, "scePFontSetGsCtxt": {"e7597de90dfbb4df65bec0d24702f35e652e4a3c": {"00000000": {"type": "FUNCTION", "size": 12, "library": "libpfont", "scope": "GLOBAL", "is_interface": true, "versions": ["1.1.0"], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}}, "libmc2": {"sceMc2Init": {"707894eb3afe31f529a328d0f5ede721b0701f15": {"514d685d": {"type": "FUNCTION", "size": 364, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2"], "sdk": ["2.7.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_26", "symbol": "CreateSema"}, "124": {"type": "MIPS_26", "symbol": "CreateSema"}, "148": {"type": "MIPS_26", "symbol": "CreateSema"}, "164": {"type": "MIPS_26", "symbol": "sceMc2End", "scope": "LIBRARY", "original": ".text"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_26", "symbol": "GetThreadId"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "200": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "212": {"type": "MIPS_HI16", "symbol": "basic_thread", "original": ".text"}, "216": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "224": {"type": "MIPS_LO16", "symbol": "basic_thread", "original": ".text"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "260": {"type": "MIPS_26", "symbol": "CreateThread"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "276": {"type": "MIPS_26", "symbol": "sceMc2End", "scope": "LIBRARY", "original": ".text"}, "300": {"type": "MIPS_26", "symbol": "StartThread"}, "308": {"type": "MIPS_26", "symbol": "_sceMcCoreInit", "scope": "LIBRARY"}, "316": {"type": "MIPS_26", "symbol": "_sceMcpInit", "scope": "LIBRARY"}, "324": {"type": "MIPS_26", "symbol": "_sceMcFatInit", "scope": "LIBRARY"}}}}, "5379c201cafbdfbad7fa76762985cc6a85ff1a75": {"514d685d": {"type": "FUNCTION", "size": 364, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2"], "sdk": ["2.7.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_26", "symbol": "CreateSema"}, "124": {"type": "MIPS_26", "symbol": "CreateSema"}, "148": {"type": "MIPS_26", "symbol": "CreateSema"}, "164": {"type": "MIPS_26", "symbol": "sceMc2End", "scope": "LIBRARY", "original": ".text"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_26", "symbol": "GetThreadId"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "200": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "212": {"type": "MIPS_HI16", "symbol": "basic_thread", "original": ".text"}, "216": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "224": {"type": "MIPS_LO16", "symbol": "basic_thread", "original": ".text"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "260": {"type": "MIPS_26", "symbol": "CreateThread"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "276": {"type": "MIPS_26", "symbol": "sceMc2End", "scope": "LIBRARY", "original": ".text"}, "300": {"type": "MIPS_26", "symbol": "StartThread"}, "308": {"type": "MIPS_26", "symbol": "_sceMcCoreInit", "scope": "LIBRARY"}, "316": {"type": "MIPS_26", "symbol": "_sceMcpInit", "scope": "LIBRARY"}, "324": {"type": "MIPS_26", "symbol": "_sceMcFatInit",)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "scope": "LIBRARY"}}}}, "7c58078eeb0772007773abb6a4254d2a47a4d023": {"1f0565ca": {"type": "FUNCTION", "size": 316, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0"], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_26", "symbol": "CreateSema"}, "120": {"type": "MIPS_26", "symbol": "CreateSema"}, "136": {"type": "MIPS_26", "symbol": "sceMc2End", "scope": "LIBRARY", "original": ".text"}, "156": {"type": "MIPS_HI16", "symbol": "basic_thread", "original": ".text"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_LO16", "symbol": "basic_thread", "original": ".text"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "212": {"type": "MIPS_26", "symbol": "CreateThread"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "228": {"type": "MIPS_26", "symbol": "sceMc2End", "scope": "LIBRARY", "original": ".text"}, "248": {"type": "MIPS_26", "symbol": "_sceMcCoreInit", "scope": "LIBRARY"}, "256": {"type": "MIPS_26", "symbol": "_sceMcpInit", "scope": "LIBRARY"}, "264": {"type": "MIPS_26", "symbol": "_sceMcFatInit", "scope": "LIBRARY"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "276": {"type": "MIPS_26", "symbol": "StartThread"}}}}, "d2ffa5f90046956b028536b55af7575f96208bf6": {"1f0565ca": {"type": "FUNCTION", "size": 316, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0"], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_26", "symbol": "CreateSema"}, "120": {"type": "MIPS_26", "symbol": "CreateSema"}, "136": {"type": "MIPS_26", "symbol": "sceMc2End", "scope": "LIBRARY", "original": ".text"}, "156": {"type": "MIPS_HI16", "symbol": "basic_thread", "original": ".text"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_LO16", "symbol": "basic_thread", "original": ".text"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "212": {"type": "MIPS_26", "symbol": "CreateThread"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "228": {"type": "MIPS_26", "symbol": "sceMc2End", "scope": "LIBRARY", "original": ".text"}, "248": {"type": "MIPS_26", "symbol": "_sceMcCoreInit", "scope": "LIBRARY"}, "256": {"type": "MIPS_26", "symbol": "_sceMcpInit", "scope": "LIBRARY"}, "264": {"type": "MIPS_26", "symbol": "_sceMcFatInit", "scope": "LIBRARY"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "276": {"type": "MIPS_26", "symbol": "StartThread"}}}}, "fce5772d49c60660badfbef0e3369cde8e0897a2": {"bf990b02": {"type": "FUNCTION", "size": 352, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.0"], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "CreateSema"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_26", "symbol": "CreateSema"}, "160": {"type": "MIPS_26", "symbol": "sceMc2End", "scope": "LIBRARY", "original": ".text"}, "180": {"type": "MIPS_HI16", "symbol": "basic_thread", "original": ".text"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": "_gp"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "196": {"type": "MIPS_LO16", "symbol": "basic_thread", "original": ".text"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": "_gp"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "212": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "248": {"type": "MIPS_26", "symbol": "CreateThread"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "264": {"type": "MIPS_26", "symbol": "sceMc2End", "scope": "LIBRARY", "original": ".text"}, "284": {"type": "MIPS_26", "symbol": "_sceMcCoreInit", "scope": "LIBRARY"}, "292": {"type": "MIPS_26", "symbol": "_sceMcpInit", "scope": "LIBRARY"}, "300": {"type": "MIPS_26", "symbol": "_sceMcFatInit", "scope": "LIBRARY"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "312": {"type": "MIPS_26", "symbol": "StartThread"}}}}, "5bee0087636a3720a4a876bd7dfc9f85117c9b48": {"a4949c4a": {"type": "FUNCTION", "size": 316, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0"], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_26", "symbol": "CreateSema"}, "120": {"type": "MIPS_26", "symbol": "CreateSema"}, "136": {"type": "MIPS_26", "symbol": "sceMc2End", "scope": "LIBRARY", "original": ".text"}, "156": {"type": "MIPS_HI16", "symbol": "basic_thread", "original": ".text"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": "_gp"}, "168": {"type": "MIPS_LO16", "symbol": "basic_thread", "original": ".text"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": "_gp"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "212": {"type": "MIPS_26", "symbol": "CreateThread"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "228": {"type": "MIPS_26", "symbol": "sceMc2End", "scope": "LIBRARY", "original": ".text"}, "248": {"type": "MIPS_26", "symbol": "_sceMcCoreInit", "scope": "LIBRARY"}, "256": {"type": "MIPS_26", "symbol": "_sceMcpInit", "scope": "LIBRARY"}, "264": {"type": "MIPS_26", "symbol": "_sceMcFatInit", "scope": "LIBRARY"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "276": {"type": "MIPS_26", "symbol": "StartThread"}}}}, "ca5829c3e4bf04ef1ac2a6a90c83c)PS2SDB", 8192}, + std::string_view{R"PS2SDB(d3c1744ea1f": {"514d685d": {"type": "FUNCTION", "size": 364, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2"], "sdk": ["2.7.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_26", "symbol": "CreateSema"}, "124": {"type": "MIPS_26", "symbol": "CreateSema"}, "148": {"type": "MIPS_26", "symbol": "CreateSema"}, "164": {"type": "MIPS_26", "symbol": "sceMc2End", "scope": "LIBRARY", "original": ".text"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_26", "symbol": "GetThreadId"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "200": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "212": {"type": "MIPS_HI16", "symbol": "basic_thread", "original": ".text"}, "216": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "224": {"type": "MIPS_LO16", "symbol": "basic_thread", "original": ".text"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "260": {"type": "MIPS_26", "symbol": "CreateThread"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "276": {"type": "MIPS_26", "symbol": "sceMc2End", "scope": "LIBRARY", "original": ".text"}, "300": {"type": "MIPS_26", "symbol": "StartThread"}, "308": {"type": "MIPS_26", "symbol": "_sceMcCoreInit", "scope": "LIBRARY"}, "316": {"type": "MIPS_26", "symbol": "_sceMcpInit", "scope": "LIBRARY"}, "324": {"type": "MIPS_26", "symbol": "_sceMcFatInit", "scope": "LIBRARY"}}}}, "10be7bddb77bdbc10c39220b8523b22ec8419f06": {"726f2e37": {"type": "FUNCTION", "size": 376, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_26", "symbol": "CreateSema"}, "136": {"type": "MIPS_26", "symbol": "CreateSema"}, "160": {"type": "MIPS_26", "symbol": "CreateSema"}, "176": {"type": "MIPS_26", "symbol": "sceMc2End", "scope": "LIBRARY", "original": ".text"}, "200": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "204": {"type": "MIPS_26", "symbol": "GetThreadId"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "216": {"type": "MIPS_26", "symbol": "ReferThreadStatus"}, "224": {"type": "MIPS_HI16", "symbol": "basic_thread", "original": ".text"}, "232": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": "_gp"}, "240": {"type": "MIPS_LO16", "symbol": "basic_thread", "original": ".text"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": "_gp"}, "276": {"type": "MIPS_26", "symbol": "CreateThread"}, "292": {"type": "MIPS_26", "symbol": "sceMc2End", "scope": "LIBRARY", "original": ".text"}, "316": {"type": "MIPS_26", "symbol": "StartThread"}, "324": {"type": "MIPS_26", "symbol": "_sceMcCoreInit", "scope": "LIBRARY"}, "332": {"type": "MIPS_26", "symbol": "_sceMcpInit", "scope": "LIBRARY"}, "340": {"type": "MIPS_26", "symbol": "_sceMcFatInit", "scope": "LIBRARY"}}}}}, "sceMc2End": {"1be6f84eb9363c75fffa74bc0562dbab5f1ecd1b": {"80689b5b": {"type": "FUNCTION", "size": 220, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2"], "sdk": ["2.7.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_26", "symbol": "DeleteSema"}, "108": {"type": "MIPS_26", "symbol": "DeleteSema"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_26", "symbol": "DeleteSema"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_26", "symbol": "TerminateThread"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "164": {"type": "MIPS_26", "symbol": "scePrintf"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "172": {"type": "MIPS_26", "symbol": "DeleteThread"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "180": {"type": "MIPS_26", "symbol": "_sceMcCoreEnd", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "bccd3b3af5dfd04207b441f30cd1774dd0f49fc6": {"2b2bae08": {"type": "FUNCTION", "size": 200, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0"], "sdk": ["2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_26", "symbol": "DeleteSema"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "DeleteSema"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_26", "symbol": "TerminateThread"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_26", "symbol": "scePrintf"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "152": {"type": "MIPS_26", "symbol": "DeleteThread"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "_sceMcCoreEnd", "scope": "LIBRARY"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "bfc3482b40cd94c5f568fccc7d933b450e73f8a2": {"d85e326c": {"type": "FUNCTION", "size": 208, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_26", "symbol": "DeleteSema"}, "96": {"type": "MIPS_26", "symbol": "DeleteSema"}, "116": {"type": "MIPS_26", "symbol": "DeleteSema"}, "136": {"type": "MIPS_26", "symbol": "TerminateThread"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "156": {"type": "MIPS_26", "symbol": "scePrintf"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "164": {"type": "MIPS_26", "symbol": "DeleteThread"}, "172": {"type": "MIPS_26", "symbol": "_sceMcCoreEnd", "scope": "LIBRARY"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceMc2CreateSocket": {"a955544d846387c6c688014decbd5f25e803a6aa": {"b0b3c19d": {"type": "FUNCTION", "size": 152, "library": "libmc2", "scope": "GLOBAL", "is_interfa)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ce": true, "versions": ["2.7.2", "2.8.0", "3.0.0"], "sdk": ["2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_26", "symbol": "_sceMcCoreCreateSocket", "scope": "LIBRARY"}}}}, "8fae063dd27e049e909608c501012a9809459a41": {"a0940cd1": {"type": "FUNCTION", "size": 148, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_26", "symbol": "_sceMcCoreCreateSocket", "scope": "LIBRARY"}}}}}, "sceMc2DeleteSocket": {"7868d89f1cd79ea147500ae08f1ec522ce838b3d": {"aa92064b": {"type": "FUNCTION", "size": 96, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2", "2.8.0", "3.0.0"], "sdk": ["2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_26", "symbol": "_sceMcCoreDeleteSocket", "scope": "LIBRARY"}}}}, "ed945ee9d96d4569997308f849f4af5bd58dfffd": {"5ba260f7": {"type": "FUNCTION", "size": 84, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_26", "symbol": "_sceMcCoreDeleteSocket", "scope": "LIBRARY"}}}}}, "sceMc2SearchSocket": {"7cad2deef981e342d7d867b4918dd6ad79654858": {"07cca028": {"type": "FUNCTION", "size": 112, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2", "2.8.0", "3.0.0"], "sdk": ["2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_26", "symbol": "sceDbcSearchPortSpecific"}, "92": {"type": "MIPS_26", "symbol": "_sceMcCoreChangeSocketTypeDbc2Mc", "scope": "LIBRARY"}}}}, "0e7bfac862302211e29af69e23372f3a19712a41": {"cac38e3c": {"type": "FUNCTION", "size": 108, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_26", "symbol": "sceDbcSearchPortSpecific"}, "88": {"type": "MIPS_26", "symbol": "_sceMcCoreChangeSocketTypeDbc2Mc", "scope": "LIBRARY"}}}}}, "sceMc2FormatAsync": {"e4384878eec2e9a7cf7b0932e9d0f2dc3a14a0e0": {"1596c0df": {"type": "FUNCTION", "size": 128, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2"], "sdk": ["2.7.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "_sceMcCoreCheckSocket", "scope": "LIBRARY"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_26", "symbol": "_sceMcCoreSetAlaram", "scope": "LIBRARY"}}}, "86cd0eac": {"type": "FUNCTION", "size": 128, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0"], "sdk": ["2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "_sceMcCoreCheckSocket", "scope": "LIBRARY"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_26", "symbol": "_sceMcCoreExecSubs", "scope": "LIBRARY"}}}}, "9935948ddc022af2ecff302152fb474992a03ef3": {"6f3bc475": {"type": "FUNCTION", "size": 124, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_26", "symbol": "_sceMcCoreCheckSocket", "scope": "LIBRARY"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_26", "symbol": "_sceMcCoreSetAlaram", "scope": "LIBRARY"}}}}}, "sceMc2UnformatAsync": {"8c7dd89c721f00c95c857d52f9e54a75752468da": {"1596c0df": {"type": "FUNCTION", "size": 128, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2"], "sdk": ["2.7.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "_sceMcCoreCheckSocket", "scope": "LIBRARY"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_26", "symbol": "_sceMcCoreSetAlaram", "scope": "LIBRARY"}}}, "86cd0eac": {"type": "FUNCTION", "size": 128, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0"], "sdk": ["2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "_sceMcCoreCheckSocket", "scope": "LIBRARY"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_26", "symbol": "_sceMcCoreExecSubs", "scope": "LIBRARY"}}}}, "7c29d73cedcd6bf22318793d6629eee1892b4be0": {"6f3bc475": {"type": "FUNCTION", "size": 124, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_26", "symbol": "_sceMcCoreCheckSocket", "scope": "LIBRARY"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_26", "symbol": "_sceMcCoreSetAlaram", "scope": "LIBRARY"}}}}}, "sceMc2GetInfoAsync": {"32e528d95169d41bd5ad79ac646e299760993d6c": {"b42f7d75": {"type": "FUNCTION", "size": 144, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2"], "sdk": ["2.7.2"], "compiler_versions": ["2.4.1.01"],)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_26", "symbol": "_sceMcCoreCheckSocket", "scope": "LIBRARY"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_26", "symbol": "_sceMcCoreSetAlaram", "scope": "LIBRARY"}}}, "eee3da0d": {"type": "FUNCTION", "size": 144, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0"], "sdk": ["2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_26", "symbol": "_sceMcCoreCheckSocket", "scope": "LIBRARY"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_26", "symbol": "_sceMcCoreExecSubs", "scope": "LIBRARY"}}}}, "db7fc67c9f57dfcd2095c88ab1031733aba92da6": {"f4409d52": {"type": "FUNCTION", "size": 140, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_26", "symbol": "_sceMcCoreCheckSocket", "scope": "LIBRARY"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "_sceMcCoreSetAlaram", "scope": "LIBRARY"}}}}}, "sceMc2SearchFileAsync": {"e1d3811b32ce838803f10d40a91702f8736d3875": {"31924b3c": {"type": "FUNCTION", "size": 216, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2"], "sdk": ["2.7.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_26", "symbol": "_sceMcCoreCheckSocket", "scope": "LIBRARY"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_26", "symbol": "strlen"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_26", "symbol": "strcpy"}, "172": {"type": "MIPS_26", "symbol": "_sceMcCoreSetAlaram", "scope": "LIBRARY"}}}, "36e54b5f": {"type": "FUNCTION", "size": 216, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0"], "sdk": ["2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_26", "symbol": "_sceMcCoreCheckSocket", "scope": "LIBRARY"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_26", "symbol": "strlen"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_26", "symbol": "strcpy"}, "172": {"type": "MIPS_26", "symbol": "_sceMcCoreExecSubs", "scope": "LIBRARY"}}}}, "1f1c3c756d7b9e15a1d03b3a5875e8b43505e892": {"6da7e0f4": {"type": "FUNCTION", "size": 192, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "_sceMcCoreCheckSocket", "scope": "LIBRARY"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_26", "symbol": "strlen"}, "144": {"type": "MIPS_26", "symbol": "strcpy"}, "152": {"type": "MIPS_26", "symbol": "_sceMcCoreSetAlaram", "scope": "LIBRARY"}}}}}, "sceMc2GetDirAll": {"d3b829e09b0ad124a8f66cf72ea5e0892a58760f": {"1596c0df": {"type": "FUNCTION", "size": 128, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.7.2"], "sdk": ["2.7.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "_sceMcCoreCheckSocket", "scope": "LIBRARY"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_26", "symbol": "_sceMcCoreSetAlaram", "scope": "LIBRARY"}}}, "86cd0eac": {"type": "FUNCTION", "size": 128, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.0"], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "_sceMcCoreCheckSocket", "scope": "LIBRARY"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_26", "symbol": "_sceMcCoreExecSubs", "scope": "LIBRARY"}}}}, "4957386222d638385d884797aff50bfe3d6aea9e": {"f7c2453a": {"type": "FUNCTION", "size": 60, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["3.0.0"], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceMc2GetDirAllAsync", "scope": "LIBRARY", "original": ".text"}, "36": {"type": "MIPS_26", "symbol": "sceMc2Sync2", "scope": "LIBRARY", "original": ".text"}}}}, "7180055beca3f4160e7ef81fb0b138be2b3eda6e": {"6f3bc475": {"type": "FUNCTION", "size": 124, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_26", "symbol": "_sceMcCoreCheckSocket", "scope": "LIBRARY"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_26", "symbol": "_sceMcCoreSetAlaram", "scope": "LIBRARY"}}}}}, "sceMc2ReadFileAsync": {"62e03fd136291f25e457068f5c55b38ead77fff8": {"cc930599": {"type": "FUNCTION", "size": 248, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2"], "sdk": ["2.7.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_26", "symbol": "_sceMcCoreCheckSocket", "scope": "LIBRARY"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_26", "symbol": "strlen"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "180": {"type": "MIPS_26", "symbol": "strcpy"}, "196": {"type": "MIPS_26", "symbol": "_sceMcCoreSetAlaram", "scope": "LIBRARY"}}}, "55529445": {"type": "FUNCTION", "size": 248, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0"], "sdk": ["2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "sym)PS2SDB", 8192}, + std::string_view{R"PS2SDB(bol": "", "original": ".data"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_26", "symbol": "_sceMcCoreCheckSocket", "scope": "LIBRARY"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_26", "symbol": "strlen"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "180": {"type": "MIPS_26", "symbol": "strcpy"}, "196": {"type": "MIPS_26", "symbol": "_sceMcCoreExecSubs", "scope": "LIBRARY"}}}}, "29009e3ebc4edf95e2e868d166240ae46ec0634d": {"8efc6854": {"type": "FUNCTION", "size": 224, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_26", "symbol": "_sceMcCoreCheckSocket", "scope": "LIBRARY"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_26", "symbol": "strlen"}, "160": {"type": "MIPS_26", "symbol": "strcpy"}, "176": {"type": "MIPS_26", "symbol": "_sceMcCoreSetAlaram", "scope": "LIBRARY"}}}}}, "sceMc2WriteFileAsync": {"ea949d01a8f9d1ec6da2b7b027f177bd14d539f7": {"cc930599": {"type": "FUNCTION", "size": 248, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2"], "sdk": ["2.7.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_26", "symbol": "_sceMcCoreCheckSocket", "scope": "LIBRARY"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_26", "symbol": "strlen"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "180": {"type": "MIPS_26", "symbol": "strcpy"}, "196": {"type": "MIPS_26", "symbol": "_sceMcCoreSetAlaram", "scope": "LIBRARY"}}}, "55529445": {"type": "FUNCTION", "size": 248, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0"], "sdk": ["2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_26", "symbol": "_sceMcCoreCheckSocket", "scope": "LIBRARY"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_26", "symbol": "strlen"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "180": {"type": "MIPS_26", "symbol": "strcpy"}, "196": {"type": "MIPS_26", "symbol": "_sceMcCoreExecSubs", "scope": "LIBRARY"}}}}, "23a488987111e0972ca9f016ebc965ae945a4b3b": {"8efc6854": {"type": "FUNCTION", "size": 224, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_26", "symbol": "_sceMcCoreCheckSocket", "scope": "LIBRARY"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_26", "symbol": "strlen"}, "160": {"type": "MIPS_26", "symbol": "strcpy"}, "176": {"type": "MIPS_26", "symbol": "_sceMcCoreSetAlaram", "scope": "LIBRARY"}}}}}, "sceMc2CreateFileAsync": {"bae0f0f8b8ca3d81b8118b82aec8134bb1428ab4": {"6caa2329": {"type": "FUNCTION", "size": 208, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2"], "sdk": ["2.7.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "_sceMcCoreCheckSocket", "scope": "LIBRARY"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_26", "symbol": "strlen"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_26", "symbol": "strcpy"}, "168": {"type": "MIPS_26", "symbol": "_sceMcCoreSetAlaram", "scope": "LIBRARY"}}}, "66965ca5": {"type": "FUNCTION", "size": 208, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0"], "sdk": ["2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "_sceMcCoreCheckSocket", "scope": "LIBRARY"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_26", "symbol": "strlen"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_26", "symbol": "strcpy"}, "168": {"type": "MIPS_26", "symbol": "_sceMcCoreExecSubs", "scope": "LIBRARY"}}}}, "c9d122a22ceae6c449a1a7ad69c8a74f9875a86c": {"9b99c81f": {"type": "FUNCTION", "size": 184, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_26", "symbol": "_sceMcCoreCheckSocket", "scope": "LIBRARY"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_26", "symbol": "strlen"}, "136": {"type": "MIPS_26", "symbol": "strcpy"}, "148": {"type": "MIPS_26", "symbol": "_sceMcCoreSetAlaram", "scope": "LIBRARY"}}}}}, "sceMc2DeleteAsync": {"e220383f6ba5fe75c6a425856d63d8d99a199ee8": {"bb1cfa65": {"type": "FUNCTION", "size": 204, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2"], "sdk": ["2.7.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "_sceMcCoreCheckSocket", "scope": "LIBRARY"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_26", "symbol": "strlen"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_26", "symbol": "strcpy"}, "164": {"type": "MIPS_26", "symbol": "_sceMcCoreSetAlaram", "scope": "LIBRARY"}}}, "dd9dfe44": {"type": "FUNCTION", "size": 204, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0"], "sdk": ["2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "_sceMcCoreCheckSocket", "scope": "LIBRARY"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_26", "symbol": "strlen"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_26", "symbol": "strcpy"}, "164": {"type": "MIPS_26", "symbol": "_sceMcCoreExecSubs", "scope": "LIBRARY"}}}}, "8863411913e670fa236eedd7f0cdebcc2f67c901": {"602482e4": {"type": "FUNCTION", "size": 180, "library": "libmc2", "scope": "GLOBAL", "is_inte)PS2SDB", 8192}, + std::string_view{R"PS2SDB(rface": true, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_26", "symbol": "_sceMcCoreCheckSocket", "scope": "LIBRARY"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_26", "symbol": "strlen"}, "136": {"type": "MIPS_26", "symbol": "strcpy"}, "144": {"type": "MIPS_26", "symbol": "_sceMcCoreSetAlaram", "scope": "LIBRARY"}}}}}, "sceMc2GetDirAsync": {"48c0c609ed2072d801b8830d0874323c44e0e9c5": {"ec5283fc": {"type": "FUNCTION", "size": 264, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2"], "sdk": ["2.7.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_26", "symbol": "_sceMcCoreCheckSocket", "scope": "LIBRARY"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_26", "symbol": "strlen"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_26", "symbol": "strcpy"}, "208": {"type": "MIPS_26", "symbol": "_sceMcCoreSetAlaram", "scope": "LIBRARY"}}}, "fb514230": {"type": "FUNCTION", "size": 264, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0"], "sdk": ["2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_26", "symbol": "_sceMcCoreCheckSocket", "scope": "LIBRARY"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_26", "symbol": "strlen"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_26", "symbol": "strcpy"}, "208": {"type": "MIPS_26", "symbol": "_sceMcCoreExecSubs", "scope": "LIBRARY"}}}}, "f6b6c6f5b341764f3a5cd80d1f1a6ee27bb41306": {"ea44130a": {"type": "FUNCTION", "size": 240, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_26", "symbol": "_sceMcCoreCheckSocket", "scope": "LIBRARY"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_26", "symbol": "strlen"}, "168": {"type": "MIPS_26", "symbol": "strcpy"}, "188": {"type": "MIPS_26", "symbol": "_sceMcCoreSetAlaram", "scope": "LIBRARY"}}}}}, "sceMc2MkdirAsync": {"624627259f2c80edd2d878401c8686b4975173c5": {"6caa2329": {"type": "FUNCTION", "size": 208, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2"], "sdk": ["2.7.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "_sceMcCoreCheckSocket", "scope": "LIBRARY"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_26", "symbol": "strlen"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_26", "symbol": "strcpy"}, "168": {"type": "MIPS_26", "symbol": "_sceMcCoreSetAlaram", "scope": "LIBRARY"}}}, "66965ca5": {"type": "FUNCTION", "size": 208, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0"], "sdk": ["2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "_sceMcCoreCheckSocket", "scope": "LIBRARY"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_26", "symbol": "strlen"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_26", "symbol": "strcpy"}, "168": {"type": "MIPS_26", "symbol": "_sceMcCoreExecSubs", "scope": "LIBRARY"}}}}, "002e3dec5d9693b6a98e410996d647ccdf5cdcbf": {"9b99c81f": {"type": "FUNCTION", "size": 184, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_26", "symbol": "_sceMcCoreCheckSocket", "scope": "LIBRARY"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_26", "symbol": "strlen"}, "136": {"type": "MIPS_26", "symbol": "strcpy"}, "148": {"type": "MIPS_26", "symbol": "_sceMcCoreSetAlaram", "scope": "LIBRARY"}}}}}, "sceMc2ChdirAsync": {"4ed57749d87822a91a85d2bd2026f6ef6b2224ef": {"31924b3c": {"type": "FUNCTION", "size": 216, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2"], "sdk": ["2.7.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_26", "symbol": "_sceMcCoreCheckSocket", "scope": "LIBRARY"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_26", "symbol": "strlen"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_26", "symbol": "strcpy"}, "172": {"type": "MIPS_26", "symbol": "_sceMcCoreSetAlaram", "scope": "LIBRARY"}}}, "36e54b5f": {"type": "FUNCTION", "size": 216, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0"], "sdk": ["2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_26", "symbol": "_sceMcCoreCheckSocket", "scope": "LIBRARY"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_26", "symbol": "strlen"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_26", "symbol": "strcpy"}, "172": {"type": "MIPS_26", "symbol": "_sceMcCoreExecSubs", "scope": "LIBRARY"}}}}, "d18b85d386b47b276ddfe75438135e5b62549c9f": {"6da7e0f4": {"type": "FUNCTION", "size": 192, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "_sceMcCoreCheckSocket", "scope": "LIBRARY"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_26", "symbol": "strlen"}, "144": {"type": "MIPS_26", "symbol": "strcpy"}, "152": {"type": "MIPS_26", "symbol": "_sceMcCoreSetAlaram", "scope": "LIBRARY"}}}}}, "sceMc2ChmodAsync": {"9fe2779b40827c95de979898de7e26e043affbe1": {"31924b3c")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: {"type": "FUNCTION", "size": 216, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2"], "sdk": ["2.7.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_26", "symbol": "_sceMcCoreCheckSocket", "scope": "LIBRARY"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_26", "symbol": "strlen"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_26", "symbol": "strcpy"}, "172": {"type": "MIPS_26", "symbol": "_sceMcCoreSetAlaram", "scope": "LIBRARY"}}}, "36e54b5f": {"type": "FUNCTION", "size": 216, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0"], "sdk": ["2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_26", "symbol": "_sceMcCoreCheckSocket", "scope": "LIBRARY"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_26", "symbol": "strlen"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_26", "symbol": "strcpy"}, "172": {"type": "MIPS_26", "symbol": "_sceMcCoreExecSubs", "scope": "LIBRARY"}}}}, "6723541539ef6ebc6177bfea1c7ebcaebdc2e051": {"6da7e0f4": {"type": "FUNCTION", "size": 192, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "_sceMcCoreCheckSocket", "scope": "LIBRARY"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_26", "symbol": "strlen"}, "144": {"type": "MIPS_26", "symbol": "strcpy"}, "152": {"type": "MIPS_26", "symbol": "_sceMcCoreSetAlaram", "scope": "LIBRARY"}}}}}, "sceMc2RenameAsync": {"d817cef3b5c2b65fc97669addd0b020b289cb703": {"d85282fa": {"type": "FUNCTION", "size": 248, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2"], "sdk": ["2.7.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_26", "symbol": "_sceMcCoreCheckSocket", "scope": "LIBRARY"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_26", "symbol": "strlen"}, "140": {"type": "MIPS_26", "symbol": "strlen"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "184": {"type": "MIPS_26", "symbol": "strcpy"}, "196": {"type": "MIPS_26", "symbol": "strcpy"}, "204": {"type": "MIPS_26", "symbol": "_sceMcCoreSetAlaram", "scope": "LIBRARY"}}}, "9589b859": {"type": "FUNCTION", "size": 248, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0"], "sdk": ["2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_26", "symbol": "_sceMcCoreCheckSocket", "scope": "LIBRARY"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_26", "symbol": "strlen"}, "140": {"type": "MIPS_26", "symbol": "strlen"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "184": {"type": "MIPS_26", "symbol": "strcpy"}, "196": {"type": "MIPS_26", "symbol": "strcpy"}, "204": {"type": "MIPS_26", "symbol": "_sceMcCoreExecSubs", "scope": "LIBRARY"}}}}, "be85724b8fcdd96f990d431c50acad8d62408de4": {"d68ef695": {"type": "FUNCTION", "size": 232, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "_sceMcCoreCheckSocket", "scope": "LIBRARY"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_26", "symbol": "strlen"}, "132": {"type": "MIPS_26", "symbol": "strlen"}, "172": {"type": "MIPS_26", "symbol": "strcpy"}, "184": {"type": "MIPS_26", "symbol": "strcpy"}, "192": {"type": "MIPS_26", "symbol": "_sceMcCoreSetAlaram", "scope": "LIBRARY"}}}}}, "sceMc2GetEntSpaceAsync": {"894635674e4c0768d8ac338a380ca54911c35650": {"bb1cfa65": {"type": "FUNCTION", "size": 204, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2"], "sdk": ["2.7.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "_sceMcCoreCheckSocket", "scope": "LIBRARY"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_26", "symbol": "strlen"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_26", "symbol": "strcpy"}, "164": {"type": "MIPS_26", "symbol": "_sceMcCoreSetAlaram", "scope": "LIBRARY"}}}, "dd9dfe44": {"type": "FUNCTION", "size": 204, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0"], "sdk": ["2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "_sceMcCoreCheckSocket", "scope": "LIBRARY"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_26", "symbol": "strlen"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_26", "symbol": "strcpy"}, "164": {"type": "MIPS_26", "symbol": "_sceMcCoreExecSubs", "scope": "LIBRARY"}}}}, "39d9e89428b96e1256ae8c9e98b16a4d7a3d7109": {"602482e4": {"type": "FUNCTION", "size": 180, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_26", "symbol": "_sceMcCoreCheckSocket", "scope": "LIBRARY"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_26", "symbol": "strlen"}, "136": {"type": "MIPS_26", "symbol": "strcpy"}, "144": {"type": "MIPS_26", "symbol": "_sceMcCoreSetAlaram", "scope": "LIBRARY"}}}}}, "basic_thread": {"79f6f6f7572a5489297670787b5c84cceda0be4d": {"acf8257b": {"type": "FUNCTION", "size": 700, "library": "libmc2", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.2", "2.8.0", "3.0.0"], "sdk": ["2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "4)PS2SDB", 8192}, + std::string_view{R"PS2SDB(8": {"type": "MIPS_26", "symbol": "_sceMcCoreWaitSubs", "scope": "LIBRARY"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "_sceMcFatGetInfo", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_26", "symbol": "_sceMcFatReadFile", "scope": "LIBRARY"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "180": {"type": "MIPS_26", "symbol": "_sceMcFatWriteFile", "scope": "LIBRARY"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "200": {"type": "MIPS_26", "symbol": "_sceMcFatFormat", "scope": "LIBRARY"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "228": {"type": "MIPS_26", "symbol": "_sceMcFatCreateFile", "scope": "LIBRARY"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "252": {"type": "MIPS_26", "symbol": "_sceMcFatDeleteFile", "scope": "LIBRARY"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "280": {"type": "MIPS_26", "symbol": "_sceMcFatCreateFile", "scope": "LIBRARY"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "300": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "308": {"type": "MIPS_26", "symbol": "_sceMcFatChDir", "scope": "LIBRARY"}, "324": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "328": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "348": {"type": "MIPS_26", "symbol": "_sceMcFatGetDir", "scope": "LIBRARY"}, "364": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "368": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "376": {"type": "MIPS_26", "symbol": "_sceMcFatSetAttr", "scope": "LIBRARY"}, "392": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "396": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "404": {"type": "MIPS_26", "symbol": "_sceMcFatRename", "scope": "LIBRARY"}, "420": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "424": {"type": "MIPS_26", "symbol": "_sceMcFatUnFormat", "scope": "LIBRARY"}, "428": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "440": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "444": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "460": {"type": "MIPS_26", "symbol": "_sceMcFatSearchFile", "scope": "LIBRARY"}, "532": {"type": "MIPS_26", "symbol": "strcpy"}, "592": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "596": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "600": {"type": "MIPS_26", "symbol": "_sceMcFatGetEntSpace", "scope": "LIBRARY"}, "616": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "620": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "636": {"type": "MIPS_26", "symbol": "_sceMcCoreReadPage2", "scope": "LIBRARY"}, "652": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "656": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "668": {"type": "MIPS_26", "symbol": "_sceMcCoreWritePage", "scope": "LIBRARY"}, "680": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "684": {"type": "MIPS_26", "symbol": "SignalSema"}}}}, "eb04c53cf9df39e83d5d9a89035416ccd22ae2af": {"9670413d": {"type": "FUNCTION", "size": 768, "library": "libmc2", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_26", "symbol": "_sceMcCoreWaitSubs", "scope": "LIBRARY"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_26", "symbol": "_sceMcFatGetInfo", "scope": "LIBRARY"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_26", "symbol": "_sceMcFatReadFile", "scope": "LIBRARY"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "204": {"type": "MIPS_26", "symbol": "_sceMcFatWriteFile", "scope": "LIBRARY"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "228": {"type": "MIPS_26", "symbol": "_sceMcFatFormat", "scope": "LIBRARY"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "260": {"type": "MIPS_26", "symbol": "_sceMcFatCreateFile", "scope": "LIBRARY"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "288": {"type": "MIPS_26", "symbol": "_sceMcFatDeleteFile", "scope": "LIBRARY"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "316": {"type": "MIPS_26", "symbol": "_sceMcFatCreateFile", "scope": "LIBRARY"}, "336": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "348": {"type": "MIPS_26", "symbol": "_sceMcFatChDir", "scope": "LIBRARY"}, "368": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "392": {"type": "MIPS_26", "symbol": "_sceMcFatGetDir", "scope": "LIBRARY"}, "408": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "420": {"type": "MIPS_26", "symbol": "_sceMcFatSetAttr", "scope": "LIBRARY"}, "440": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "452": {"type": "MIPS_26", "symbol": "_sceMcFatRename", "scope": "LIBRARY"}, "472": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "476": {"type": "MIPS_26", "symbol": "_sceMcFatUnFormat", "scope": "LIBRARY"}, "496": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "516": {"type": "MIPS_26", "symbol": "_sceMcFatSearchFile", "scope": "LIBRARY"}, "584": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "592": {"type": "MIPS_26", "symbol": "strcpy"}, "656": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "664": {"type": "MIPS_26", "symbol": "_sceMcFatGetEntSpace", "scope": "LIBRARY"}, "680": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "700": {"type": "MIPS_26", "symbol": "_sceMcCoreReadPage2", "scope": "LIBRARY"}, "720": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "736": {"type": "MIPS_26", "symbol": "_sceMcCoreWritePage", "scope": "LIBRARY"}, "748": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "752": {"type": "MIPS_26", "symbol": "SignalSema"}}}}}, "mcHearAlarm": {"ad849324198c2b60157a3e8d2eb2ba064fa172c0": {"1e160fd9": {"type": "FUNCTION", "size": 36, "library": "libmc2", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.2-3", "2.7.2"], "sdk": ["2.7.2-3", "2.7.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "iSignalSema"}}}}}, "mcDelayThread": {"921586b30aced4b8203395ffb70de5cd0cd51927": {"f4f96166": {"type": "FUNCTION", "size": 60, "library": "libmc2", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.2"], "sdk": ["2.7.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "mcHearAlarm", "original": ".text"}, "12": {"type": "MIPS_LO16", "symbol": "mcHearAlarm", "original": ".text"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_26")PS2SDB", 8192}, + std::string_view{R"PS2SDB(, "symbol": "SetAlarm"}, "52": {"type": "MIPS_26", "symbol": "WaitSema"}}}}, "83bdcdd66afff1259728ace47a1752db05f09a0f": {"492f3b3c": {"type": "FUNCTION", "size": 60, "library": "libmc2", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "mcHearAlarm", "original": ".text"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "mcHearAlarm", "original": ".text"}, "32": {"type": "MIPS_26", "symbol": "SetAlarm"}, "52": {"type": "MIPS_26", "symbol": "WaitSema"}}}}}, "sceMc2Sync2": {"8f310da5942fffe1dd230dc6b95cd56a9efa98fa": {"94b46608": {"type": "FUNCTION", "size": 260, "library": "libmc2", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.2"], "sdk": ["2.7.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "_sceMcCoreIdle", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "mcDelayThread", "original": ".text"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_26", "symbol": "PollSema"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_26", "symbol": "_sceMcCoreIdle", "scope": "LIBRARY"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "176": {"type": "MIPS_26", "symbol": "PollSema"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "b5204805ba3a0d9b3f21cdfe3c1bb2ecd695183a": {"4f0c9856": {"type": "FUNCTION", "size": 164, "library": "libmc2", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "3.0.0"], "sdk": ["2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_26", "symbol": "WaitSema"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "PollSema"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "f7de9b4dc1dfc47cf34aa3c2345a23323bf191f9": {"c81c6fd2": {"type": "FUNCTION", "size": 264, "library": "libmc2", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "_sceMcCoreIdle", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "mcDelayThread", "original": ".text"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_26", "symbol": "PollSema"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_26", "symbol": "_sceMcCoreIdle", "scope": "LIBRARY"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "180": {"type": "MIPS_26", "symbol": "PollSema"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceMc2CheckAsync": {"bb693496fc2cc4f1fcc812b43a42491f53c839c9": {"b95dbf1d": {"type": "FUNCTION", "size": 36, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2", "2.8.0", "3.0.0"], "sdk": ["2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "sceMc2Sync2", "scope": "LIBRARY", "original": ".text"}}}}, "05eb9ea394d42a2eed3402147baa4b8145ff4b18": {"2c45d74c": {"type": "FUNCTION", "size": 36, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "sceMc2Sync2", "scope": "LIBRARY", "original": ".text"}}}}}, "sceMc2Sync": {"174c3b1a5ec67185ede817d2ea879312961fc4af": {"b95dbf1d": {"type": "FUNCTION", "size": 36, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2", "2.8.0", "3.0.0"], "sdk": ["2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "sceMc2Sync2", "scope": "LIBRARY", "original": ".text"}}}}, "523e91bd1442143ba80bc4b29955f5fc4cf0e3a3": {"2c45d74c": {"type": "FUNCTION", "size": 36, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "sceMc2Sync2", "scope": "LIBRARY", "original": ".text"}}}}}, "sceMc2GetInfo": {"4957386222d638385d884797aff50bfe3d6aea9e": {"39b83d94": {"type": "FUNCTION", "size": 60, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2", "2.8.0", "3.0.0"], "sdk": ["2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceMc2GetInfoAsync", "scope": "LIBRARY", "original": ".text"}, "36": {"type": "MIPS_26", "symbol": "sceMc2Sync2", "scope": "LIBRARY", "original": ".text"}}}}, "0717ed2cb975e90bb4906d3ff18cca05ee173e9a": {"39b83d94": {"type": "FUNCTION", "size": 60, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceMc2GetInfoAsync", "scope": "LIBRARY", "original": ".text"}, "36": {"type": "MIPS_26", "symbol": "sceMc2Sync2", "scope": "LIBRARY", "original": ".text"}}}}}, "sceMc2Format": {"4957386222d638385d884797aff50bfe3d6aea9e": {"b0d453b7": {"type": "FUNCTION", "size": 60, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2", "2.8.0", "3.0.0"], "sdk": ["2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceMc2FormatAsync", "scope": "LIBRARY", "original": ".text"}, "36": {"type": "MIPS_26", "symbol": "sceMc2Sync2", "scope": "LIBRARY", "original": ".text"}}}}, "0717ed2cb975e90bb4906d3ff18cca05ee173e9a": {"b0d453b7": {"type": "FUNCTION", "size": 60, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceMc2FormatAsync", "scope": "LIBRARY", "original": ".text"}, "36": {"type": "MIPS_26", "symbol": "sceMc2Sync2", "scope": "LIBRARY", "original": ".text"}}}}}, "sceMc2Unformat": {"4957386222d638385d884797aff50bfe3d6aea9e": {"69ec6fe7": {"type": "FUNCTION", "size": 60, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2", "2.8.0", "3.0.0"], "sdk": ["2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceMc2UnformatAsync", "scope": "LIBRARY", "original": ".text"}, "36": {"type": "MIPS_26", "symbol": "sceMc2Sync2", "scope": "LIBRARY", "original": ".text"}}}}, "0717ed2cb975e90bb4906d3ff18cca05ee173e9a": {"69ec6fe7": {"type": "FUNCTION", "size": 60, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceMc2UnformatAsync", "scope": "LIBRARY", "original": ".text"}, "36": {"type": "MIPS_26", "symbol": "sceMc2Sync2", "scope": "LIBRARY", "original": ".te)PS2SDB", 8192}, + std::string_view{R"PS2SDB(xt"}}}}}, "sceMc2ReadFile": {"4957386222d638385d884797aff50bfe3d6aea9e": {"f684fcb9": {"type": "FUNCTION", "size": 60, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2", "2.8.0", "3.0.0"], "sdk": ["2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceMc2ReadFileAsync", "scope": "LIBRARY", "original": ".text"}, "36": {"type": "MIPS_26", "symbol": "sceMc2Sync2", "scope": "LIBRARY", "original": ".text"}}}}, "0717ed2cb975e90bb4906d3ff18cca05ee173e9a": {"f684fcb9": {"type": "FUNCTION", "size": 60, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceMc2ReadFileAsync", "scope": "LIBRARY", "original": ".text"}, "36": {"type": "MIPS_26", "symbol": "sceMc2Sync2", "scope": "LIBRARY", "original": ".text"}}}}}, "sceMc2WriteFile": {"4957386222d638385d884797aff50bfe3d6aea9e": {"46d06873": {"type": "FUNCTION", "size": 60, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2", "2.8.0", "3.0.0"], "sdk": ["2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceMc2WriteFileAsync", "scope": "LIBRARY", "original": ".text"}, "36": {"type": "MIPS_26", "symbol": "sceMc2Sync2", "scope": "LIBRARY", "original": ".text"}}}}, "0717ed2cb975e90bb4906d3ff18cca05ee173e9a": {"46d06873": {"type": "FUNCTION", "size": 60, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceMc2WriteFileAsync", "scope": "LIBRARY", "original": ".text"}, "36": {"type": "MIPS_26", "symbol": "sceMc2Sync2", "scope": "LIBRARY", "original": ".text"}}}}}, "sceMc2CreateFile": {"4957386222d638385d884797aff50bfe3d6aea9e": {"7589214b": {"type": "FUNCTION", "size": 60, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2", "2.8.0", "3.0.0"], "sdk": ["2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceMc2CreateFileAsync", "scope": "LIBRARY", "original": ".text"}, "36": {"type": "MIPS_26", "symbol": "sceMc2Sync2", "scope": "LIBRARY", "original": ".text"}}}}, "0717ed2cb975e90bb4906d3ff18cca05ee173e9a": {"7589214b": {"type": "FUNCTION", "size": 60, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceMc2CreateFileAsync", "scope": "LIBRARY", "original": ".text"}, "36": {"type": "MIPS_26", "symbol": "sceMc2Sync2", "scope": "LIBRARY", "original": ".text"}}}}}, "sceMc2Delete": {"4957386222d638385d884797aff50bfe3d6aea9e": {"4dc2999a": {"type": "FUNCTION", "size": 60, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2", "2.8.0", "3.0.0"], "sdk": ["2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceMc2DeleteAsync", "scope": "LIBRARY", "original": ".text"}, "36": {"type": "MIPS_26", "symbol": "sceMc2Sync2", "scope": "LIBRARY", "original": ".text"}}}}, "0717ed2cb975e90bb4906d3ff18cca05ee173e9a": {"4dc2999a": {"type": "FUNCTION", "size": 60, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceMc2DeleteAsync", "scope": "LIBRARY", "original": ".text"}, "36": {"type": "MIPS_26", "symbol": "sceMc2Sync2", "scope": "LIBRARY", "original": ".text"}}}}}, "sceMc2Rename": {"4957386222d638385d884797aff50bfe3d6aea9e": {"91956134": {"type": "FUNCTION", "size": 60, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2", "2.8.0", "3.0.0"], "sdk": ["2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceMc2RenameAsync", "scope": "LIBRARY", "original": ".text"}, "36": {"type": "MIPS_26", "symbol": "sceMc2Sync2", "scope": "LIBRARY", "original": ".text"}}}}, "0717ed2cb975e90bb4906d3ff18cca05ee173e9a": {"91956134": {"type": "FUNCTION", "size": 60, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceMc2RenameAsync", "scope": "LIBRARY", "original": ".text"}, "36": {"type": "MIPS_26", "symbol": "sceMc2Sync2", "scope": "LIBRARY", "original": ".text"}}}}}, "sceMc2Mkdir": {"4957386222d638385d884797aff50bfe3d6aea9e": {"3511ccb1": {"type": "FUNCTION", "size": 60, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2", "2.8.0", "3.0.0"], "sdk": ["2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceMc2MkdirAsync", "scope": "LIBRARY", "original": ".text"}, "36": {"type": "MIPS_26", "symbol": "sceMc2Sync2", "scope": "LIBRARY", "original": ".text"}}}}, "0717ed2cb975e90bb4906d3ff18cca05ee173e9a": {"3511ccb1": {"type": "FUNCTION", "size": 60, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceMc2MkdirAsync", "scope": "LIBRARY", "original": ".text"}, "36": {"type": "MIPS_26", "symbol": "sceMc2Sync2", "scope": "LIBRARY", "original": ".text"}}}}}, "sceMc2Chdir": {"4957386222d638385d884797aff50bfe3d6aea9e": {"b99daa04": {"type": "FUNCTION", "size": 60, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2", "2.8.0", "3.0.0"], "sdk": ["2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceMc2ChdirAsync", "scope": "LIBRARY", "original": ".text"}, "36": {"type": "MIPS_26", "symbol": "sceMc2Sync2", "scope": "LIBRARY", "original": ".text"}}}}, "0717ed2cb975e90bb4906d3ff18cca05ee173e9a": {"b99daa04": {"type": "FUNCTION", "size": 60, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceMc2ChdirAsync", "scope": "LIBRARY", "original": ".text"}, "36": {"type": "MIPS_26", "symbol": "sceMc2Sync2", "scope": "LIBRARY", "original": ".text"}}}}}, "sceMc2GetDir": {"4957386222d638385d884797aff50bfe3d6aea9e": {"974c90b2": {"type": "FUNCTION", "size": 60, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2", "2.8.0", "3.0.0"], "sdk": ["2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceMc2GetDirAsync", "scope": "LIBRARY", "original": ".text"}, "36": {"type": "MIPS_26", "symbol": "sceMc2Sync2", "scope": "LIBRARY", "original": ".text"}}}}, "0717ed2cb975e90bb4906d3ff18cca05ee173e9a": {"974c90b2": {"type": "FUNCTION", "size": 60, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceMc2GetDirAsync", "scope": "LIBRARY", "original": ".text"}, "36": {"type": "MIPS_26", "symbol": "sceMc2Sync2", "scope": "LIBRARY", "original": ".text"}}}}}, "sceMc2Chmod": {"6bed9a821b06284d94a3c7e9981745271659f69d": {"6c980fdb": {"type": "FUNCTION", "size": 60, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2", "2.8.0", "3.0.0"], "sdk": ["2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceMc2ChmodAsync", "scope": "LIBRARY", "original": ".text"}, "36": {"type": "MIPS_26", "symbol": "sceMc2Sync2", "scope": "LIBRARY", "original": ".text"}}}}, "9effbe7c5cda53444824361f3202fde93f4d85b7": {"6c980fdb": {"type": "FUNCTION", "size": 60, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "co)PS2SDB", 8192}, + std::string_view{R"PS2SDB(mpiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceMc2ChmodAsync", "scope": "LIBRARY", "original": ".text"}, "36": {"type": "MIPS_26", "symbol": "sceMc2Sync2", "scope": "LIBRARY", "original": ".text"}}}}}, "sceMc2SearchFile": {"4957386222d638385d884797aff50bfe3d6aea9e": {"ae43b6c1": {"type": "FUNCTION", "size": 60, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2", "2.8.0", "3.0.0"], "sdk": ["2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceMc2SearchFileAsync", "scope": "LIBRARY", "original": ".text"}, "36": {"type": "MIPS_26", "symbol": "sceMc2Sync2", "scope": "LIBRARY", "original": ".text"}}}}, "0717ed2cb975e90bb4906d3ff18cca05ee173e9a": {"ae43b6c1": {"type": "FUNCTION", "size": 60, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceMc2SearchFileAsync", "scope": "LIBRARY", "original": ".text"}, "36": {"type": "MIPS_26", "symbol": "sceMc2Sync2", "scope": "LIBRARY", "original": ".text"}}}}}, "sceMc2GetEntSpace": {"4957386222d638385d884797aff50bfe3d6aea9e": {"a1634a0a": {"type": "FUNCTION", "size": 60, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2", "2.8.0", "3.0.0"], "sdk": ["2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceMc2GetEntSpaceAsync", "scope": "LIBRARY", "original": ".text"}, "36": {"type": "MIPS_26", "symbol": "sceMc2Sync2", "scope": "LIBRARY", "original": ".text"}}}}, "0717ed2cb975e90bb4906d3ff18cca05ee173e9a": {"a1634a0a": {"type": "FUNCTION", "size": 60, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceMc2GetEntSpaceAsync", "scope": "LIBRARY", "original": ".text"}, "36": {"type": "MIPS_26", "symbol": "sceMc2Sync2", "scope": "LIBRARY", "original": ".text"}}}}}, "instr": {"119469724857b7e3cb3fd31ee2c0e503e79750d7": {"00000000": {"type": "FUNCTION", "size": 92, "library": "libmc2", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.2", "2.8.0", "3.0.0"], "sdk": ["2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "f6b12148823631c326250df2f4ccde1fc007575d": {"00000000": {"type": "FUNCTION", "size": 104, "library": "libmc2", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "isCorrNameSize": {"806057472d55dd790d1957aedafb2aed517c2cc6": {"6dc39e3c": {"type": "FUNCTION", "size": 108, "library": "libmc2", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.2", "2.8.0", "3.0.0"], "sdk": ["2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "strchr"}, "32": {"type": "MIPS_26", "symbol": "strrchr"}, "40": {"type": "MIPS_26", "symbol": "strlen"}, "68": {"type": "MIPS_26", "symbol": "strlen"}}}}, "f1c7824999c67b96540d97c47a2c0fb3074d2a08": {"6f9c1b5d": {"type": "FUNCTION", "size": 112, "library": "libmc2", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "strchr"}, "36": {"type": "MIPS_26", "symbol": "strrchr"}, "44": {"type": "MIPS_26", "symbol": "strlen"}, "72": {"type": "MIPS_26", "symbol": "strlen"}}}}}, "isCorrFname": {"89aa5134124b8969289b60972d168472b940e8a8": {"00000000": {"type": "FUNCTION", "size": 84, "library": "libmc2", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.2", "2.8.0", "3.0.0"], "sdk": ["2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "dea301e86e09492db2cb8bd49aec2f3bc200ef71": {"00000000": {"type": "FUNCTION", "size": 84, "library": "libmc2", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "isPathCurParent": {"69380d0dfd2499825016f177d2cba1dc8cc70d18": {"6f34a3ea": {"type": "FUNCTION", "size": 180, "library": "libmc2", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.2", "2.8.0", "3.0.0"], "sdk": ["2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "strchr"}, "32": {"type": "MIPS_26", "symbol": "strrchr"}, "40": {"type": "MIPS_26", "symbol": "strlen"}, "60": {"type": "MIPS_26", "symbol": "strrchr"}, "72": {"type": "MIPS_26", "symbol": "strcpy"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_26", "symbol": "strlen"}, "108": {"type": "MIPS_26", "symbol": "strcpy"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "124": {"type": "MIPS_26", "symbol": "strcmp"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_26", "symbol": "strcmp"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "e9a8ec2df17a53a5244fbc1fa4bc9fd675f4c27c": {"3ed51cf1": {"type": "FUNCTION", "size": 208, "library": "libmc2", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "strchr"}, "36": {"type": "MIPS_26", "symbol": "strrchr"}, "44": {"type": "MIPS_26", "symbol": "strlen"}, "72": {"type": "MIPS_26", "symbol": "strrchr"}, "84": {"type": "MIPS_26", "symbol": "strcpy"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_26", "symbol": "strlen"}, "132": {"type": "MIPS_26", "symbol": "strcpy"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_26", "symbol": "strcmp"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "172": {"type": "MIPS_26", "symbol": "strcmp"}}}}}, "isWildFit": {"10a42595a7b9c93d899fae87e8bd66a62a509225": {"5170cb6a": {"type": "FUNCTION", "size": 384, "library": "libmc2", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.2", "2.8.0", "3.0.0"], "sdk": ["2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"72": {"type": "MIPS_26", "symbol": "strncmp"}, "236": {"type": "MIPS_26", "symbol": "isWildFit", "scope": "LIBRARY", "original": ".text"}, "272": {"type": "MIPS_26", "symbol": "instr", "scope": "LIBRARY", "original": ".text"}, "304": {"type": "MIPS_26", "symbol": "instr", "scope": "LIBRARY", "original": ".text"}, "320": {"type": "MIPS_26", "symbol": "instr", "scope": "LIBRARY", "original": ".text"}, "344": {"type": "MIPS_26", "symbol": "strcmp"}}}}, "3e70c1eff00e20ac834e956625d777bbb7e66ea2": {"f9ac2ca9": {"type": "FUNCTION", "size": 392, "library": "libmc2", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_26", "symbol": "strncmp"}, "244": {"type": "MIPS_26", "symbol": "isWildFit", "scope": "LIBRARY", "original": ".text"}, "272": {"type": "MIPS_26", "symbol": "instr", "scope": "LIBRARY", "original": ".text"}, "308": {"type": "MIPS_26", "symbol": "instr", "scope": "LIBRARY", "original": ".text"}, "324": {"type": "MIPS_26", "symbol": "instr", "scope": "LIBRARY", "original": ".text"}, "352": {"type": "MIPS_26", "symbol": "strcmp"}}}}}, "_strtok": {"71fbec7ca84db7a45940cc91b4827eb7f8338a53": {"af081ce2": {"type": "FUNCTION", "size": 288, "library": "libmc2", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.2", "2.8.0", "3.0.0"], "sdk": ["2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": ".bss"}, "52": {"type": "MIPS_26", "symbol": "strcpy"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_26", "symbol": "strchr"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "180": {"type": "MIPS_26", "symbol": "strchr"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "220": {"type": "MIPS_26", "symbol": "strchr"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "c3b11956ea2210312715113fb4fa0647a477d802": {"8866e5a0": {"type": "FUNCTION", "size": 284, "library": "libmc2", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_26", "symbol": "strcpy"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_26", "symbol": "strchr"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "176": {"type": "MIPS_26", "symbol": "strchr"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "208": {"type": "MIPS_26", "symbol": "strchr"}, "232": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "_get_dir_nest": {"13c6f35e670af9874eb9d43e86d81c027cd05a00": {"00000000": {"type": "FUNCTION", "size": 68, "library": "libmc2", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.2", "2.8.0", "3.0.0"], "sdk": ["2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "4e30ed7a6c30b989f66ccc6ac8f3de69a03d9efe": {"00000000": {"type": "FUNCTION", "size": 68, "library": "libmc2", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_make_path": {"076e2014b59ea0d4dd50c5e7a0cc7542ed449d4c": {"7ecae345": {"type": "FUNCTION", "size": 388, "library": "libmc2", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.2", "2.8.0", "3.0.0"], "sdk": ["2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "strlen"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "strcpy"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_26", "symbol": "_strtok", "scope": "LIBRARY", "original": ".text"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_26", "symbol": "_strtok", "scope": "LIBRARY", "original": ".text"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "176": {"type": "MIPS_26", "symbol": "strcmp"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "208": {"type": "MIPS_26", "symbol": "strcmp"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "224": {"type": "MIPS_26", "symbol": "strlen"}, "244": {"type": "MIPS_26", "symbol": "strrchr"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "272": {"type": "MIPS_26", "symbol": "strcat"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "288": {"type": "MIPS_26", "symbol": "strcat"}, "304": {"type": "MIPS_26", "symbol": "_strtok", "scope": "LIBRARY", "original": ".text"}, "324": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "328": {"type": "MIPS_26", "symbol": "strcmp"}, "344": {"type": "MIPS_26", "symbol": "strrchr"}}}}, "8a57feae78bab47cdc7a65fac652b23e9e6b7330": {"3dba4f80": {"type": "FUNCTION", "size": 404, "library": "libmc2", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "strlen"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "strcpy"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_26", "symbol": "_strtok", "scope": "LIBRARY", "original": ".text"}, "148": {"type": "MIPS_26", "symbol": "_strtok", "scope": "LIBRARY", "original": ".text"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_26", "symbol": "strcmp"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "204": {"type": "MIPS_26", "symbol": "strcmp"}, "224": {"type": "MIPS_26", "symbol": "strlen"}, "244": {"type": "MIPS_26", "symbol": "strrchr"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "280": {"type": "MIPS_26", "symbol": "strcat"}, "292": {"type": "MIPS_26", "symbol": "strcat"}, "304": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "312": {"type": "MIPS_26", "symbol": "_strtok", "scope": "LIBRARY", "original": ".text"}, "332": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "336": {"type": "MIPS_26", "symbol": "strcmp"}, "352": {"type": "MIPS_26", "symbol": "strrchr"}}}}}, "_sceMcFatInit": {"79e6a3649aca5e1fcd9332d22ae4a0b922d5a647": {"ab1ad856": {"type": "FUNCTION", "size": 96, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.7.2", "2.8.0", "3.0.0"], "sdk": ["2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "d390aa5e5779756ce4a68e8ef521e3f92719df97": {"55159f42": {"type": "FUNCTION", "size": 92, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "4": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "_sceMcFatInit2": {"e9a3c3ff09c5c640b5843c5aacbb0b2725b4eb6f": {"ffc65d25": {"type": "FUNCTION", "size": 92, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.7.2", "2.8.0"], "sdk": ["2.7.2", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_LO16", "sy)PS2SDB", 8192}, + std::string_view{R"PS2SDB(mbol": "", "original": ".rodata"}}}}, "8aa89bc37d6d27dc950fe2e12259663b9b6f830f": {"93ca8efb": {"type": "FUNCTION", "size": 104, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "_sceMcFatGetFatClustNum": {"70d0d5b44982d84d9f98e8727a899bccfe45b7c7": {"695e60f2": {"type": "FUNCTION", "size": 284, "library": "libmc2", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.2", "2.8.0", "3.0.0"], "sdk": ["2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": "gSceMc2SysInfo"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": "gSceMc2SysInfo"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "_sceMcpReadClust", "scope": "LIBRARY"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "6d202cc607ab601fff18b5875f4317240385dd91": {"6f72851c": {"type": "FUNCTION", "size": 292, "library": "libmc2", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": "gSceMc2SysInfo"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "gSceMc2SysInfo"}, "172": {"type": "MIPS_26", "symbol": "_sceMcpReadClust", "scope": "LIBRARY"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "_sceMcFatFlushFatCache": {"d4f93192a3cd6c3727838bc517ee9b3ebb0421a8": {"2f64198a": {"type": "FUNCTION", "size": 144, "library": "libmc2", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.2", "2.8.0", "3.0.0"], "sdk": ["2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_26", "symbol": "_sceMcpWriteClust", "scope": "LIBRARY"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "5903098420a17c61694b2fd3fcb7377a41d52c14": {"29686f74": {"type": "FUNCTION", "size": 136, "library": "libmc2", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_26", "symbol": "_sceMcpWriteClust", "scope": "LIBRARY"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "_sceMcFatReadFatData": {"7f7d690b2d47f7a1735f68863f37467ad07e5fc4": {"1e1385f6": {"type": "FUNCTION", "size": 360, "library": "libmc2", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.2", "2.8.0", "3.0.0"], "sdk": ["2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"76": {"type": "MIPS_26", "symbol": "_sceMcFatGetFatClustNum", "scope": "LIBRARY", "original": ".text"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_26", "symbol": "_sceMcFatFlushFatCache", "scope": "LIBRARY", "original": ".text"}, "196": {"type": "MIPS_26", "symbol": "_sceMcpWriteClust", "scope": "LIBRARY"}, "216": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "240": {"type": "MIPS_26", "symbol": "_sceMcpReadClust", "scope": "LIBRARY"}, "292": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "c522a60afcb57b4d3a1f9fd1d79d1ae68fa9912b": {"efbcb6c6": {"type": "FUNCTION", "size": 364, "library": "libmc2", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"76": {"type": "MIPS_26", "symbol": "_sceMcFatGetFatClustNum", "scope": "LIBRARY", "original": ".text"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_26", "symbol": "_sceMcFatFlushFatCache", "scope": "LIBRARY", "original": ".text"}, "200": {"type": "MIPS_26", "symbol": "_sceMcpWriteClust", "scope": "LIBRARY"}, "220": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "244": {"type": "MIPS_26", "symbol": "_sceMcpReadClust", "scope": "LIBRARY"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "_sceMcFatGetNextClust": {"436709ff111b006c0b964d8087a89a781b96647f": {"81eb33c6": {"type": "FUNCTION", "size": 68, "library": "libmc2", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.2", "2.8.0", "3.0.0"], "sdk": ["2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "_sceMcFatReadFatData", "scope": "LIBRARY", "original": ".text"}}}}, "51a1c23ef55d04ecd52318e3d35ed3eb8a2a6ecd": {"81eb33c6": {"type": "FUNCTION", "size": 60, "library": "libmc2", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "_sceMcFatReadFatData", "scope": "LIBRARY", "original": ".text"}}}}}, "_sceMcFatWriteFatData": {"c6e8b2df38608cef95b39810b1a2a1cb2b8a01ad": {"152e2d2d": {"type": "FUNCTION", "size": 304, "library": "libmc2", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.2", "2.8.0", "3.0.0"], "sdk": ["2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"84": {"type": "MIPS_26", "symbol": "_sceMcFatGetFatClustNum", "scope": "LIBRARY", "original": ".text"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_26", "symbol": "_sceMcFatFlushFatCache", "scope": "LIBRARY", "original": ".text"}, "172": {"type": "MIPS_26", "symbol": "_sceMcpReadClust", "scope": "LIBRARY"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "4b83a0fe8b4ea66116397237637b50eb7b8c2da4": {"7a3a7007": {"type": "FUNCTION", "size": 324, "library": "libmc2", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"88": {"type": "MIPS_26", "symbol": "_sceMcFatGetFatClustNum", "scope": "LIBRARY", "original": ".text"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_26", "symbol": "_sceMcFatFlushFatCache", "scope": "LIBRARY", "original": ".text"}, "184": {"type": "MIPS_26", "symbol": "_sceMcpReadClust", "scope": "LIBRARY"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "_sceMcFatGetFreeClust": {"a96d6264497985bf210da70748c9e0bb6246a757": {"b1cc0d8a": {"type": "FUNCTION", "size": 300, "library": "libmc2", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.2", "2.8.0", "3.0.0"], "sdk": ["2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": "gSceMc2SysInfo"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": "gSceMc2SysInfo"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_LO16", ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(symbol": "", "original": ".bss"}, "148": {"type": "MIPS_26", "symbol": "_sceMcFatReadFatData", "scope": "LIBRARY", "original": ".text"}}}}, "7e7a1342c1c65c9beed0cd83176845bf469e552b": {"76efbae1": {"type": "FUNCTION", "size": 324, "library": "libmc2", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": "gSceMc2SysInfo"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": "gSceMc2SysInfo"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "172": {"type": "MIPS_26", "symbol": "_sceMcFatReadFatData", "scope": "LIBRARY", "original": ".text"}}}}}, "_sceMcFatGetFreeClustSize": {"c59f895cc56f28440f455c50687605703f0328fb": {"eea45d21": {"type": "FUNCTION", "size": 212, "library": "libmc2", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.2", "2.8.0", "3.0.0"], "sdk": ["2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": "gSceMc2SysInfo"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": "gSceMc2SysInfo"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_26", "symbol": "_sceMcFatReadFatData", "scope": "LIBRARY", "original": ".text"}}}}, "522f6cc6bf213a218581d29e779457ebff941164": {"767804b5": {"type": "FUNCTION", "size": 216, "library": "libmc2", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_HI16", "symbol": "", "original": "gSceMc2SysInfo"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": "gSceMc2SysInfo"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_26", "symbol": "_sceMcFatReadFatData", "scope": "LIBRARY", "original": ".text"}}}}}, "_GetEntryByPos": {"9081f37378727cba2091b7c9347b53de7cb0a4d5": {"f11ca131": {"type": "FUNCTION", "size": 400, "library": "libmc2", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.2", "2.8.0", "3.0.0"], "sdk": ["2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_26", "symbol": "_sceMcpReadUserClust", "scope": "LIBRARY"}, "312": {"type": "MIPS_26", "symbol": "_sceMcFatGetNextClust", "scope": "LIBRARY", "original": ".text"}}}}, "d2e2a7539e71ae7869d1e870dfd25a5047078842": {"73a02151": {"type": "FUNCTION", "size": 404, "library": "libmc2", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_26", "symbol": "_sceMcpReadUserClust", "scope": "LIBRARY"}, "320": {"type": "MIPS_26", "symbol": "_sceMcFatGetNextClust", "scope": "LIBRARY", "original": ".text"}}}}}, "_reset_problem_patch": {"6c07b3f2c7ec02f77889d822940723be7d474c2b": {"2f9d39c0": {"type": "FUNCTION", "size": 88, "library": "libmc2", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.2", "2.8.0", "3.0.0"], "sdk": ["2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "_sceMcCoreSetCardSpec", "scope": "LIBRARY"}}}}, "61abdf4265bf22cfb2aeb0b959d70ab212d0350f": {"4edc5285": {"type": "FUNCTION", "size": 84, "library": "libmc2", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_26", "symbol": "_sceMcCoreSetCardSpec", "scope": "LIBRARY"}}}}}, "_sceMcFatGetInfo": {"f308ba509a583c502790c08d1d3998148f1229d6": {"22a69fde": {"type": "FUNCTION", "size": 768, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.7.2"], "sdk": ["2.7.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": "gSceMc2SysInfo"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "gSceMc2SysInfo"}, "60": {"type": "MIPS_26", "symbol": "_sceMcCoreGetConnection", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "_sceMcCoreCheckNewCard", "scope": "LIBRARY"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "192": {"type": "MIPS_26", "symbol": "_sceMcpGetCardSpec", "scope": "LIBRARY"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "276": {"type": "MIPS_26", "symbol": "_sceMcpReadSysInfo", "scope": "LIBRARY"}, "312": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "324": {"type": "MIPS_26", "symbol": "strncmp"}, "404": {"type": "MIPS_26", "symbol": "_reset_problem_patch", "scope": "LIBRARY", "original": ".text"}, "412": {"type": "MIPS_26", "symbol": "_sceMcCoreWriteBack", "scope": "LIBRARY"}, "440": {"type": "MIPS_26", "symbol": "_GetEntryByPos", "scope": "LIBRARY", "original": ".text"}, "476": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "480": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "484": {"type": "MIPS_26", "symbol": "strcmp"}, "508": {"type": "MIPS_26", "symbol": "_GetEntryByPos", "scope": "LIBRARY", "original": ".text"}, "540": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "548": {"type": "MIPS_26", "symbol": "strcmp"}, "552": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "560": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "588": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "636": {"type": "MIPS_26", "symbol": "_sceMcFatGetFreeClustSize", "scope": "LIBRARY", "original": ".text"}, "688": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "bf5f6bb7a090985161b5548d42ac229ca35d3f0d": {"ce6dd140": {"type": "FUNCTION", "size": 908, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.0"], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": "gSceMc2SysInfo"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "gSceMc2SysInfo"}, "68": {"type": "MIPS_26", "symbol": "_sceMcCoreGetConnection", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "_sceMcCoreCheckNewCard", "scope": "LIBRARY"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "200": {"type": "MIPS_26", "symbol": "_sceMcpGetCardSpec", "scope": "LIBRARY"}, "244": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "284": {"type": "MIPS_26", "symbol": "_sceMcpReadSysInfo", "scope": "LIBRARY"}, "320": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "328": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "332": {"type": "MIPS_26", "symbol": "strncmp"}, "412": {"type": "MIPS_26", "symbol": "_reset_problem_patch", "scope": "LIBRARY", "original": ".text"}, "428": {"type": "MIPS_26", "symbol": "_sceMcCoreWriteBack", "scope": "LIBRARY"}, "508": {"type": "MIPS_26", "symbol": "_sceMcpIsSpeckOutClust", "scope": "LIBRARY"}, "572": {"type": "MIPS_)PS2SDB", 8192}, + std::string_view{R"PS2SDB(26", "symbol": "_GetEntryByPos", "scope": "LIBRARY", "original": ".text"}, "608": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "612": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "616": {"type": "MIPS_26", "symbol": "strcmp"}, "640": {"type": "MIPS_26", "symbol": "_GetEntryByPos", "scope": "LIBRARY", "original": ".text"}, "672": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "680": {"type": "MIPS_26", "symbol": "strcmp"}, "684": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "692": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "720": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "768": {"type": "MIPS_26", "symbol": "_sceMcFatGetFreeClustSize", "scope": "LIBRARY", "original": ".text"}, "820": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "e35c43ff6fd7961744b3b93e35b9ab573987e404": {"867cd207": {"type": "FUNCTION", "size": 896, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["3.0.0"], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": "gSceMc2SysInfo"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": "gSceMc2SysInfo"}, "68": {"type": "MIPS_26", "symbol": "_sceMcCoreGetConnection", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "_sceMcpCheckNewCard", "scope": "LIBRARY"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "192": {"type": "MIPS_26", "symbol": "_sceMcpGetCardSpec", "scope": "LIBRARY"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "276": {"type": "MIPS_26", "symbol": "_sceMcpReadSysInfo", "scope": "LIBRARY"}, "312": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "324": {"type": "MIPS_26", "symbol": "strncmp"}, "404": {"type": "MIPS_26", "symbol": "_reset_problem_patch", "scope": "LIBRARY", "original": ".text"}, "420": {"type": "MIPS_26", "symbol": "_sceMcCoreWriteBack", "scope": "LIBRARY"}, "500": {"type": "MIPS_26", "symbol": "_sceMcpIsSpeckOutClust", "scope": "LIBRARY"}, "560": {"type": "MIPS_26", "symbol": "_GetEntryByPos", "scope": "LIBRARY", "original": ".text"}, "596": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "600": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "604": {"type": "MIPS_26", "symbol": "strcmp"}, "628": {"type": "MIPS_26", "symbol": "_GetEntryByPos", "scope": "LIBRARY", "original": ".text"}, "660": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "668": {"type": "MIPS_26", "symbol": "strcmp"}, "672": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "680": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "708": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "756": {"type": "MIPS_26", "symbol": "_sceMcFatGetFreeClustSize", "scope": "LIBRARY", "original": ".text"}, "808": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "d05920c3e9b449813b1f2494cbb84364724264da": {"251dfb33": {"type": "FUNCTION", "size": 972, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_HI16", "symbol": "", "original": "gSceMc2SysInfo"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": "gSceMc2SysInfo"}, "76": {"type": "MIPS_26", "symbol": "_sceMcCoreGetConnection", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "_sceMcCoreCheckNewCard", "scope": "LIBRARY"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "216": {"type": "MIPS_26", "symbol": "_sceMcpGetCardSpec", "scope": "LIBRARY"}, "288": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "328": {"type": "MIPS_26", "symbol": "_sceMcpReadSysInfo", "scope": "LIBRARY"}, "368": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "376": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "380": {"type": "MIPS_26", "symbol": "strncmp"}, "460": {"type": "MIPS_26", "symbol": "_reset_problem_patch", "scope": "LIBRARY", "original": ".text"}, "468": {"type": "MIPS_26", "symbol": "_sceMcCoreWriteBack", "scope": "LIBRARY"}, "580": {"type": "MIPS_26", "symbol": "_sceMcpIsSpeckOutClust", "scope": "LIBRARY"}, "628": {"type": "MIPS_26", "symbol": "_GetEntryByPos", "scope": "LIBRARY", "original": ".text"}, "668": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "672": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "676": {"type": "MIPS_26", "symbol": "strcmp"}, "700": {"type": "MIPS_26", "symbol": "_GetEntryByPos", "scope": "LIBRARY", "original": ".text"}, "736": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "744": {"type": "MIPS_26", "symbol": "strcmp"}, "748": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "776": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "800": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "840": {"type": "MIPS_26", "symbol": "_sceMcFatGetFreeClustSize", "scope": "LIBRARY", "original": ".text"}, "888": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "_sceMcFatFormat": {"c8dc6a0823e305cd926e45f69c4d428329e3f37b": {"f90b938b": {"type": "FUNCTION", "size": 2296, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.7.2", "2.8.0"], "sdk": ["2.7.2", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": "gSceMc2SysInfo"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": "gSceMc2SysInfo"}, "64": {"type": "MIPS_26", "symbol": "_sceMcCoreGetConnection", "scope": "LIBRARY"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "176": {"type": "MIPS_26", "symbol": "_sceMcpGetCardSpec", "scope": "LIBRARY"}, "192": {"type": "MIPS_26", "symbol": "_sceMcpReadSysInfo", "scope": "LIBRARY"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "216": {"type": "MIPS_26", "symbol": "strncmp"}, "280": {"type": "MIPS_26", "symbol": "_sceMcpMakeSpecoutBlock", "scope": "LIBRARY"}, "304": {"type": "MIPS_26", "symbol": "memset"}, "312": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "380": {"type": "MIPS_26", "symbol": "strcat"}, "384": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "604": {"type": "MIPS_26", "symbol": "_sceMcpIsSpeckOutBlock", "scope": "LIBRARY"}, "636": {"type": "MIPS_26", "symbol": "_sceMcpIsSpeckOutBlock", "scope": "LIBRARY"}, "776": {"type": "MIPS_26", "symbol": "memset"}, "812": {"type": "MIPS_26", "symbol": "_sceMcpIsSpeckOutClust", "scope": "LIBRARY"}, "884": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "892": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "952": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "960": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "1024": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "1036": {"type": "MIPS_26", "symbol": "_sceMcpIsSpeckOutClust", "scope": "LIBRARY"}, "1056": {"type": "MIPS_LO16")PS2SDB", 8192}, + std::string_view{R"PS2SDB(, "symbol": "", "original": ".bss"}, "1076": {"type": "MIPS_26", "symbol": "_sceMcpWriteClust", "scope": "LIBRARY"}, "1160": {"type": "MIPS_26", "symbol": "_sceMcpWriteClust", "scope": "LIBRARY"}, "1348": {"type": "MIPS_26", "symbol": "_sceMcpIsSpeckOutClust", "scope": "LIBRARY"}, "1376": {"type": "MIPS_26", "symbol": "_sceMcFatWriteFatData", "scope": "LIBRARY", "original": ".text"}, "1428": {"type": "MIPS_26", "symbol": "_sceMcFatWriteFatData", "scope": "LIBRARY", "original": ".text"}, "1524": {"type": "MIPS_26", "symbol": "_sceMcFatGetFreeClust", "scope": "LIBRARY", "original": ".text"}, "1560": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1564": {"type": "MIPS_26", "symbol": "scePrintf"}, "1568": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1584": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "1596": {"type": "MIPS_26", "symbol": "_sceMcCoreReadClock", "scope": "LIBRARY"}, "1600": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "1616": {"type": "MIPS_26", "symbol": "memset"}, "1732": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "1764": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1836": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1860": {"type": "MIPS_26", "symbol": "memset"}, "1880": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2008": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "2080": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2108": {"type": "MIPS_26", "symbol": "_sceMcpWriteUserClust", "scope": "LIBRARY"}, "2132": {"type": "MIPS_26", "symbol": "_sceMcFatWriteFatData", "scope": "LIBRARY", "original": ".text"}, "2152": {"type": "MIPS_26", "symbol": "_sceMcpFlushCache", "scope": "LIBRARY"}, "2168": {"type": "MIPS_26", "symbol": "_sceMcFatFlushFatCache", "scope": "LIBRARY", "original": ".text"}, "2184": {"type": "MIPS_26", "symbol": "_sceMcpWriteSysInfo", "scope": "LIBRARY"}, "2212": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "2220": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "a2dd96684089483628f38f90e1973a5e04a0ebb9": {"f90b938b": {"type": "FUNCTION", "size": 2296, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["3.0.0"], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": "gSceMc2SysInfo"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": "gSceMc2SysInfo"}, "64": {"type": "MIPS_26", "symbol": "_sceMcCoreGetConnection", "scope": "LIBRARY"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "176": {"type": "MIPS_26", "symbol": "_sceMcpGetCardSpec", "scope": "LIBRARY"}, "192": {"type": "MIPS_26", "symbol": "_sceMcpReadSysInfo", "scope": "LIBRARY"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "216": {"type": "MIPS_26", "symbol": "strncmp"}, "280": {"type": "MIPS_26", "symbol": "_sceMcpMakeSpecoutBlock", "scope": "LIBRARY"}, "304": {"type": "MIPS_26", "symbol": "memset"}, "312": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "380": {"type": "MIPS_26", "symbol": "strcat"}, "384": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "604": {"type": "MIPS_26", "symbol": "_sceMcpIsSpeckOutBlock", "scope": "LIBRARY"}, "636": {"type": "MIPS_26", "symbol": "_sceMcpIsSpeckOutBlock", "scope": "LIBRARY"}, "776": {"type": "MIPS_26", "symbol": "memset"}, "812": {"type": "MIPS_26", "symbol": "_sceMcpIsSpeckOutClust", "scope": "LIBRARY"}, "884": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "892": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "952": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "960": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "1024": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "1036": {"type": "MIPS_26", "symbol": "_sceMcpIsSpeckOutClust", "scope": "LIBRARY"}, "1056": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "1076": {"type": "MIPS_26", "symbol": "_sceMcpWriteClust", "scope": "LIBRARY"}, "1160": {"type": "MIPS_26", "symbol": "_sceMcpWriteClust", "scope": "LIBRARY"}, "1348": {"type": "MIPS_26", "symbol": "_sceMcpIsSpeckOutClust", "scope": "LIBRARY"}, "1376": {"type": "MIPS_26", "symbol": "_sceMcFatWriteFatData", "scope": "LIBRARY", "original": ".text"}, "1428": {"type": "MIPS_26", "symbol": "_sceMcFatWriteFatData", "scope": "LIBRARY", "original": ".text"}, "1524": {"type": "MIPS_26", "symbol": "_sceMcFatGetFreeClust", "scope": "LIBRARY", "original": ".text"}, "1560": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1564": {"type": "MIPS_26", "symbol": "scePrintf"}, "1568": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1584": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "1596": {"type": "MIPS_26", "symbol": "_sceMcCoreReadClock", "scope": "LIBRARY"}, "1600": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "1616": {"type": "MIPS_26", "symbol": "memset"}, "1732": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "1764": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1836": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1860": {"type": "MIPS_26", "symbol": "memset"}, "1880": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2008": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "2080": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2108": {"type": "MIPS_26", "symbol": "_sceMcpWriteUserClust", "scope": "LIBRARY"}, "2132": {"type": "MIPS_26", "symbol": "_sceMcFatWriteFatData", "scope": "LIBRARY", "original": ".text"}, "2152": {"type": "MIPS_26", "symbol": "_sceMcpFlushCache", "scope": "LIBRARY"}, "2168": {"type": "MIPS_26", "symbol": "_sceMcFatFlushFatCache", "scope": "LIBRARY", "original": ".text"}, "2184": {"type": "MIPS_26", "symbol": "_sceMcpWriteSysInfo", "scope": "LIBRARY"}, "2212": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "2220": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "e3798304aa1dd8af1e84a673b7cbaa058b3674b3": {"9ff10a77": {"type": "FUNCTION", "size": 2392, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": "gSceMc2SysInfo"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": "gSceMc2SysInfo"}, "80": {"type": "MIPS_26", "symbol": "_sceMcCoreGetConnection", "scope": "LIBRARY"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "208": {"type": "MIPS_26", "symbol": "_sceMcpGetCardSpec", "scope": "LIBRARY"}, "224": {"type": "MIPS_26", "symbol": "_sceMcpReadSysInfo", "scope": "LIBRARY"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "248": {"type": "MIPS_26", "symbol": "strncmp"}, "308": {"type": "MIPS_26", "symbol": "_sceMcpMakeSpecoutBlock", "scope": "LIBRARY"}, "332": {"type": "MIPS_26", "symbol": "memset"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "400": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "408": {"type": "MIPS_26", "symbol": "strcat"}, "412": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "620": {"type": "MIPS_26", "symbol")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: "_sceMcpIsSpeckOutBlock", "scope": "LIBRARY"}, "652": {"type": "MIPS_26", "symbol": "_sceMcpIsSpeckOutBlock", "scope": "LIBRARY"}, "792": {"type": "MIPS_26", "symbol": "memset"}, "820": {"type": "MIPS_26", "symbol": "_sceMcpIsSpeckOutClust", "scope": "LIBRARY"}, "892": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "896": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "948": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "952": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "1024": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "1028": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "1052": {"type": "MIPS_26", "symbol": "_sceMcpIsSpeckOutClust", "scope": "LIBRARY"}, "1072": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "1076": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "1092": {"type": "MIPS_26", "symbol": "_sceMcpWriteClust", "scope": "LIBRARY"}, "1168": {"type": "MIPS_26", "symbol": "_sceMcpWriteClust", "scope": "LIBRARY"}, "1372": {"type": "MIPS_26", "symbol": "_sceMcpIsSpeckOutClust", "scope": "LIBRARY"}, "1404": {"type": "MIPS_26", "symbol": "_sceMcFatWriteFatData", "scope": "LIBRARY", "original": ".text"}, "1448": {"type": "MIPS_26", "symbol": "_sceMcFatWriteFatData", "scope": "LIBRARY", "original": ".text"}, "1540": {"type": "MIPS_26", "symbol": "_sceMcFatGetFreeClust", "scope": "LIBRARY", "original": ".text"}, "1572": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1576": {"type": "MIPS_26", "symbol": "scePrintf"}, "1580": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1600": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "1608": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "1612": {"type": "MIPS_26", "symbol": "_sceMcCoreReadClock", "scope": "LIBRARY"}, "1628": {"type": "MIPS_26", "symbol": "memset"}, "1644": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1868": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1896": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1920": {"type": "MIPS_26", "symbol": "memset"}, "2180": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2200": {"type": "MIPS_26", "symbol": "_sceMcpWriteUserClust", "scope": "LIBRARY"}, "2224": {"type": "MIPS_26", "symbol": "_sceMcFatWriteFatData", "scope": "LIBRARY", "original": ".text"}, "2244": {"type": "MIPS_26", "symbol": "_sceMcpFlushCache", "scope": "LIBRARY"}, "2260": {"type": "MIPS_26", "symbol": "_sceMcFatFlushFatCache", "scope": "LIBRARY", "original": ".text"}, "2276": {"type": "MIPS_26", "symbol": "_sceMcpWriteSysInfo", "scope": "LIBRARY"}, "2304": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "2312": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "_sceMcFatUnFormat": {"e68e48ae4af120f119df9290cc4bae7bb4a67bbb": {"fb7d88a2": {"type": "FUNCTION", "size": 256, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.7.2", "2.8.0", "3.0.0"], "sdk": ["2.7.2", "2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "_sceMcCoreGetConnection", "scope": "LIBRARY"}, "48": {"type": "MIPS_26", "symbol": "_sceMcpGetCardSpec", "scope": "LIBRARY"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "200": {"type": "MIPS_26", "symbol": "_sceMcCoreBlockErase", "scope": "LIBRARY"}}}}, "5b2e1e2cffcbf74a63914db30573993a4a4848c5": {"b8b4dae2": {"type": "FUNCTION", "size": 280, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "_sceMcCoreGetConnection", "scope": "LIBRARY"}, "48": {"type": "MIPS_26", "symbol": "_sceMcpGetCardSpec", "scope": "LIBRARY"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "228": {"type": "MIPS_26", "symbol": "_sceMcCoreBlockErase", "scope": "LIBRARY"}}}}}, "_SearchEntry": {"c1a00af61785d967a185698853afb3de2cddabf7": {"37ad974b": {"type": "FUNCTION", "size": 628, "library": "libmc2", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.2", "2.8.0"], "sdk": ["2.7.2", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"92": {"type": "MIPS_26", "symbol": "strcmp"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "108": {"type": "MIPS_26", "symbol": "strlen"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "132": {"type": "MIPS_26", "symbol": "strcmp"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "176": {"type": "MIPS_26", "symbol": "strcmp"}, "432": {"type": "MIPS_26", "symbol": "_sceMcFatGetNextClust", "scope": "LIBRARY", "original": ".text"}, "496": {"type": "MIPS_26", "symbol": "_sceMcpReadUserClust", "scope": "LIBRARY"}, "540": {"type": "MIPS_26", "symbol": "strlen"}, "556": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}}}}, "9da7522960bca429aeff8168e42e0edd616ecca1": {"d06dd5b8": {"type": "FUNCTION", "size": 640, "library": "libmc2", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"92": {"type": "MIPS_26", "symbol": "strcmp"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "108": {"type": "MIPS_26", "symbol": "strlen"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "140": {"type": "MIPS_26", "symbol": "strcmp"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_26", "symbol": "strcmp"}, "452": {"type": "MIPS_26", "symbol": "_sceMcFatGetNextClust", "scope": "LIBRARY", "original": ".text"}, "508": {"type": "MIPS_26", "symbol": "_sceMcpReadUserClust", "scope": "LIBRARY"}, "552": {"type": "MIPS_26", "symbol": "strlen"}, "568": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}}}}}, "_sceMcFatSearchFile": {"21a2cd8a51b489000463629200f25f3c2e8729db": {"61282259": {"type": "FUNCTION", "size": 1208, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.7.2", "2.8.0"], "sdk": ["2.7.2", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": "gSceMc2SysInfo"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": "gSceMc2SysInfo"}, "80": {"type": "MIPS_26", "symbol": "_sceMcCoreGetConnection", "scope": "LIBRARY"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_26", "symbol": "_make_path", "scope": "LIBRARY", "original": ".text"}, "172": {"type": "MIPS_26", "symbol": "isCorrFname", "scope": "LIBRARY", "original": ".text"}, "200": {"type": "MIPS_26", "symbol": "isCorrNameSize", "scope": "LIBRARY", "original": ".text"}, "236": {"type": "MIPS_26", "symbol": "_GetEntryByPos", "scope": "LIBRARY", "original": ".text"}, "260": {"type": "MIPS_26", "symbol": "strlen"}, "276": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "284": {"type": "MIPS_26", "symbol": "strcmp"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "296": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "320": {"type": "MIPS_26", "symbol": "strcmp"}, "512": {"type": "MIPS_26", "symbol": "_strtok", "scope": "LIBRARY", "original": ".text"}, "568": {"type": "MIPS_26", "symbol": "strcpy"}, "576": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "584": {")PS2SDB", 8192}, + std::string_view{R"PS2SDB(type": "MIPS_26", "symbol": "_strtok", "scope": "LIBRARY", "original": ".text"}, "588": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "684": {"type": "MIPS_26", "symbol": "_SearchEntry", "scope": "LIBRARY", "original": ".text"}}}}, "c8c3010337734c339ecfcde8ea7f032b5e9c26a3": {"d8b1c23c": {"type": "FUNCTION", "size": 1220, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"72": {"type": "MIPS_HI16", "symbol": "", "original": "gSceMc2SysInfo"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "gSceMc2SysInfo"}, "92": {"type": "MIPS_26", "symbol": "_sceMcCoreGetConnection", "scope": "LIBRARY"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "_make_path", "scope": "LIBRARY", "original": ".text"}, "176": {"type": "MIPS_26", "symbol": "isCorrFname", "scope": "LIBRARY", "original": ".text"}, "208": {"type": "MIPS_26", "symbol": "isCorrNameSize", "scope": "LIBRARY", "original": ".text"}, "252": {"type": "MIPS_26", "symbol": "_GetEntryByPos", "scope": "LIBRARY", "original": ".text"}, "272": {"type": "MIPS_26", "symbol": "strlen"}, "296": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "304": {"type": "MIPS_26", "symbol": "strcmp"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "316": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "344": {"type": "MIPS_26", "symbol": "strcmp"}, "536": {"type": "MIPS_26", "symbol": "_strtok", "scope": "LIBRARY", "original": ".text"}, "580": {"type": "MIPS_26", "symbol": "strcpy"}, "592": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "596": {"type": "MIPS_26", "symbol": "_strtok", "scope": "LIBRARY", "original": ".text"}, "600": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "696": {"type": "MIPS_26", "symbol": "_SearchEntry", "scope": "LIBRARY", "original": ".text"}}}}}, "_sceMcFatReadFile": {"f1adae1986c7b1ae20ba8b9ca43bfbbc308228a9": {"6f80c9e0": {"type": "FUNCTION", "size": 588, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.7.2"], "sdk": ["2.7.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "_sceMcCoreGetConnection", "scope": "LIBRARY"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_26", "symbol": "_make_path", "scope": "LIBRARY", "original": ".text"}, "140": {"type": "MIPS_26", "symbol": "isCorrFname", "scope": "LIBRARY", "original": ".text"}, "156": {"type": "MIPS_26", "symbol": "isCorrNameSize", "scope": "LIBRARY", "original": ".text"}, "196": {"type": "MIPS_26", "symbol": "_sceMcFatSearchFile", "scope": "LIBRARY", "original": ".text"}, "324": {"type": "MIPS_26", "symbol": "memcpy"}, "400": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "408": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "420": {"type": "MIPS_26", "symbol": "_sceMcpReadUserClust", "scope": "LIBRARY"}, "456": {"type": "MIPS_26", "symbol": "memcpy"}, "492": {"type": "MIPS_26", "symbol": "_sceMcFatGetNextClust", "scope": "LIBRARY", "original": ".text"}}}}, "4f283d58da7c3837df95ae2ff3f7f09298e0c268": {"0bec45f1": {"type": "FUNCTION", "size": 612, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.0"], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "_sceMcCoreGetConnection", "scope": "LIBRARY"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_26", "symbol": "_make_path", "scope": "LIBRARY", "original": ".text"}, "140": {"type": "MIPS_26", "symbol": "isCorrFname", "scope": "LIBRARY", "original": ".text"}, "156": {"type": "MIPS_26", "symbol": "isCorrNameSize", "scope": "LIBRARY", "original": ".text"}, "196": {"type": "MIPS_26", "symbol": "_sceMcFatSearchFile", "scope": "LIBRARY", "original": ".text"}, "364": {"type": "MIPS_26", "symbol": "memcpy"}, "424": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "432": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "444": {"type": "MIPS_26", "symbol": "_sceMcpReadUserClust", "scope": "LIBRARY"}, "480": {"type": "MIPS_26", "symbol": "memcpy"}, "516": {"type": "MIPS_26", "symbol": "_sceMcFatGetNextClust", "scope": "LIBRARY", "original": ".text"}}}}, "136d3afa6653be569ca6e4f72ea6b6d8e876896b": {"0f5db5d2": {"type": "FUNCTION", "size": 616, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "_sceMcCoreGetConnection", "scope": "LIBRARY"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_26", "symbol": "_make_path", "scope": "LIBRARY", "original": ".text"}, "144": {"type": "MIPS_26", "symbol": "isCorrFname", "scope": "LIBRARY", "original": ".text"}, "160": {"type": "MIPS_26", "symbol": "isCorrNameSize", "scope": "LIBRARY", "original": ".text"}, "204": {"type": "MIPS_26", "symbol": "_sceMcFatSearchFile", "scope": "LIBRARY", "original": ".text"}, "396": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "404": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "416": {"type": "MIPS_26", "symbol": "_sceMcpReadUserClust", "scope": "LIBRARY"}, "460": {"type": "MIPS_26", "symbol": "memcpy"}, "488": {"type": "MIPS_26", "symbol": "memcpy"}, "512": {"type": "MIPS_26", "symbol": "_sceMcFatGetNextClust", "scope": "LIBRARY", "original": ".text"}}}}}, "_SetEntryByPos": {"4e04bfe7f463edf4f7234d8b075fff8890bab51d": {"ae28a8ef": {"type": "FUNCTION", "size": 420, "library": "libmc2", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.2", "2.8.0"], "sdk": ["2.7.2", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"92": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "_sceMcpReadUserClust", "scope": "LIBRARY"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "304": {"type": "MIPS_26", "symbol": "_sceMcpWriteUserClust", "scope": "LIBRARY"}, "328": {"type": "MIPS_26", "symbol": "_sceMcFatGetNextClust", "scope": "LIBRARY", "original": ".text"}}}}, "7c5a2fb3790a173fd26b9656dbbc93010f2d4cb2": {"b71e90fd": {"type": "FUNCTION", "size": 448, "library": "libmc2", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"92": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_26", "symbol": "_sceMcpReadUserClust", "scope": "LIBRARY"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "328": {"type": "MIPS_26", "symbol": "_sceMcpWriteUserClust", "scope": "LIBRARY"}, "356": {"type": "MIPS_26", "symbol": "_sceMcFatGetNextClust", "scope": "LIBRARY", "original": ".text"}}}}}, "_GetFreeEntrySize": {"ed5852f14def4fa4db7c6713a2aadcf60ba1be93": {"f616b9c8": {"type": "FUNCTION", "size": 300, "library": "libmc2", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.2", "2.8.0"], "sdk": ["2.7.2", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_26", "symbol": "_sceMcpReadUserClust", "scope": "LIBRARY"}, "192": {"type": "MIPS_26", "symbol": "_sceMcFatGetNextClust", "scope": "LIBRARY", "original": ".text"}}}}, "aef60265812fdb23f482f27d7b6a1a5fe5861b10": {"3d)PS2SDB", 8192}, + std::string_view{R"PS2SDB(6783f1": {"type": "FUNCTION", "size": 296, "library": "libmc2", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "_sceMcpReadUserClust", "scope": "LIBRARY"}, "208": {"type": "MIPS_26", "symbol": "_sceMcFatGetNextClust", "scope": "LIBRARY", "original": ".text"}}}}}, "_CreateEntry": {"d30d416f2efae3add41247151287f0d6aef24af3": {"aa49a412": {"type": "FUNCTION", "size": 1304, "library": "libmc2", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.2", "2.8.0"], "sdk": ["2.7.2", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"100": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_26", "symbol": "_sceMcpReadUserClust", "scope": "LIBRARY"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "164": {"type": "MIPS_26", "symbol": "strcmp"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "484": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "544": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "552": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "560": {"type": "MIPS_26", "symbol": "_sceMcpWriteUserClust", "scope": "LIBRARY"}, "604": {"type": "MIPS_26", "symbol": "_GetEntryByPos", "scope": "LIBRARY", "original": ".text"}, "640": {"type": "MIPS_26", "symbol": "_SetEntryByPos", "scope": "LIBRARY", "original": ".text"}, "748": {"type": "MIPS_26", "symbol": "_sceMcFatGetNextClust", "scope": "LIBRARY", "original": ".text"}, "792": {"type": "MIPS_26", "symbol": "_sceMcFatGetFreeClust", "scope": "LIBRARY", "original": ".text"}, "828": {"type": "MIPS_26", "symbol": "_sceMcFatWriteFatData", "scope": "LIBRARY", "original": ".text"}, "860": {"type": "MIPS_26", "symbol": "_sceMcFatWriteFatData", "scope": "LIBRARY", "original": ".text"}, "880": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "888": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "1076": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "1084": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "1088": {"type": "MIPS_26", "symbol": "_sceMcpWriteUserClust", "scope": "LIBRARY"}, "1132": {"type": "MIPS_26", "symbol": "_GetEntryByPos", "scope": "LIBRARY", "original": ".text"}, "1176": {"type": "MIPS_26", "symbol": "_SetEntryByPos", "scope": "LIBRARY", "original": ".text"}}}}, "21dc1533315028ce05fde9dedf9ac31740335667": {"370be959": {"type": "FUNCTION", "size": 1272, "library": "libmc2", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"100": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_26", "symbol": "_sceMcpReadUserClust", "scope": "LIBRARY"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_26", "symbol": "strcmp"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "504": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "568": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "576": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "584": {"type": "MIPS_26", "symbol": "_sceMcpWriteUserClust", "scope": "LIBRARY"}, "744": {"type": "MIPS_26", "symbol": "_sceMcFatGetNextClust", "scope": "LIBRARY", "original": ".text"}, "784": {"type": "MIPS_26", "symbol": "_sceMcFatGetFreeClust", "scope": "LIBRARY", "original": ".text"}, "824": {"type": "MIPS_26", "symbol": "_sceMcFatWriteFatData", "scope": "LIBRARY", "original": ".text"}, "856": {"type": "MIPS_26", "symbol": "_sceMcFatWriteFatData", "scope": "LIBRARY", "original": ".text"}, "876": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "884": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "996": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "1056": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "1064": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "1076": {"type": "MIPS_26", "symbol": "_sceMcpWriteUserClust", "scope": "LIBRARY"}, "1128": {"type": "MIPS_26", "symbol": "_GetEntryByPos", "scope": "LIBRARY", "original": ".text"}, "1168": {"type": "MIPS_26", "symbol": "_SetEntryByPos", "scope": "LIBRARY", "original": ".text"}}}}}, "_sceMcFatCreateFile": {"87d7be7b0edaa6c5577439bb9c83c66851b5a6b8": {"20c869fd": {"type": "FUNCTION", "size": 1440, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.7.2"], "sdk": ["2.7.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "_sceMcCoreGetConnection", "scope": "LIBRARY"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_26", "symbol": "_make_path", "scope": "LIBRARY", "original": ".text"}, "144": {"type": "MIPS_26", "symbol": "isCorrFname", "scope": "LIBRARY", "original": ".text"}, "172": {"type": "MIPS_26", "symbol": "isCorrNameSize", "scope": "LIBRARY", "original": ".text"}, "208": {"type": "MIPS_26", "symbol": "_get_dir_nest", "scope": "LIBRARY", "original": ".text"}, "240": {"type": "MIPS_26", "symbol": "_get_dir_nest", "scope": "LIBRARY", "original": ".text"}, "272": {"type": "MIPS_26", "symbol": "_sceMcFatSearchFile", "scope": "LIBRARY", "original": ".text"}, "344": {"type": "MIPS_26", "symbol": "_sceMcFatGetFreeClustSize", "scope": "LIBRARY", "original": ".text"}, "376": {"type": "MIPS_26", "symbol": "_GetFreeEntrySize", "scope": "LIBRARY", "original": ".text"}, "436": {"type": "MIPS_26", "symbol": "_sceMcFatGetFreeClust", "scope": "LIBRARY", "original": ".text"}, "472": {"type": "MIPS_26", "symbol": "_sceMcFatWriteFatData", "scope": "LIBRARY", "original": ".text"}, "496": {"type": "MIPS_26", "symbol": "_sceMcCoreReadClock", "scope": "LIBRARY"}, "520": {"type": "MIPS_26", "symbol": "memset"}, "732": {"type": "MIPS_26", "symbol": "strrchr"}, "820": {"type": "MIPS_26", "symbol": "_CreateEntry", "scope": "LIBRARY", "original": ".text"}, "844": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "852": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "864": {"type": "MIPS_26", "symbol": "memset"}, "876": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "980": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "1068": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1092": {"type": "MIPS_26", "symbol": "memset"}, "1104": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1112": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "1308": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1336": {"type": "MIPS_26", "symbol": "_sceMcpWriteUserClust", "scope": "LIBRARY"}, "1352": {"type": "MIPS_26", "symbol": "_sceMcFatFlushFatCache", "scope": "LIBRARY", "original": ".text"}, "1368": {"type": "MIPS_26", "symbol": "_sceMcpFlushCache", "scope": "LIBRARY"}}}}, "02adcc896523b31668781f8f3036f2703f417d49": {"33f8cad7": {"type": "FUNCTION", "size": 1472, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.0"], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "_sceMcCoreGetConnection", "scope": "LIBRARY"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_26", "symbo)PS2SDB", 8192}, + std::string_view{R"PS2SDB(l": "_make_path", "scope": "LIBRARY", "original": ".text"}, "144": {"type": "MIPS_26", "symbol": "isCorrFname", "scope": "LIBRARY", "original": ".text"}, "172": {"type": "MIPS_26", "symbol": "isCorrNameSize", "scope": "LIBRARY", "original": ".text"}, "208": {"type": "MIPS_26", "symbol": "_get_dir_nest", "scope": "LIBRARY", "original": ".text"}, "240": {"type": "MIPS_26", "symbol": "_get_dir_nest", "scope": "LIBRARY", "original": ".text"}, "272": {"type": "MIPS_26", "symbol": "_sceMcFatSearchFile", "scope": "LIBRARY", "original": ".text"}, "344": {"type": "MIPS_26", "symbol": "_sceMcFatGetFreeClustSize", "scope": "LIBRARY", "original": ".text"}, "376": {"type": "MIPS_26", "symbol": "_GetFreeEntrySize", "scope": "LIBRARY", "original": ".text"}, "456": {"type": "MIPS_26", "symbol": "_sceMcFatGetFreeClust", "scope": "LIBRARY", "original": ".text"}, "492": {"type": "MIPS_26", "symbol": "_sceMcFatWriteFatData", "scope": "LIBRARY", "original": ".text"}, "516": {"type": "MIPS_26", "symbol": "_sceMcCoreReadClock", "scope": "LIBRARY"}, "540": {"type": "MIPS_26", "symbol": "memset"}, "764": {"type": "MIPS_26", "symbol": "strrchr"}, "852": {"type": "MIPS_26", "symbol": "_CreateEntry", "scope": "LIBRARY", "original": ".text"}, "876": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "884": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "896": {"type": "MIPS_26", "symbol": "memset"}, "908": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1012": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "1100": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1124": {"type": "MIPS_26", "symbol": "memset"}, "1136": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1144": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "1340": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1368": {"type": "MIPS_26", "symbol": "_sceMcpWriteUserClust", "scope": "LIBRARY"}, "1384": {"type": "MIPS_26", "symbol": "_sceMcFatFlushFatCache", "scope": "LIBRARY", "original": ".text"}, "1400": {"type": "MIPS_26", "symbol": "_sceMcpFlushCache", "scope": "LIBRARY"}}}}, "b76cd2b241a2047674dcb0c9fe6383f2c24668c0": {"1f3e767f": {"type": "FUNCTION", "size": 1608, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "_sceMcCoreGetConnection", "scope": "LIBRARY"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_26", "symbol": "_make_path", "scope": "LIBRARY", "original": ".text"}, "152": {"type": "MIPS_26", "symbol": "isCorrFname", "scope": "LIBRARY", "original": ".text"}, "184": {"type": "MIPS_26", "symbol": "isCorrNameSize", "scope": "LIBRARY", "original": ".text"}, "224": {"type": "MIPS_26", "symbol": "_get_dir_nest", "scope": "LIBRARY", "original": ".text"}, "248": {"type": "MIPS_26", "symbol": "_get_dir_nest", "scope": "LIBRARY", "original": ".text"}, "280": {"type": "MIPS_26", "symbol": "_sceMcFatSearchFile", "scope": "LIBRARY", "original": ".text"}, "340": {"type": "MIPS_26", "symbol": "_sceMcFatGetFreeClustSize", "scope": "LIBRARY", "original": ".text"}, "376": {"type": "MIPS_26", "symbol": "_GetFreeEntrySize", "scope": "LIBRARY", "original": ".text"}, "448": {"type": "MIPS_26", "symbol": "_sceMcFatGetFreeClust", "scope": "LIBRARY", "original": ".text"}, "484": {"type": "MIPS_26", "symbol": "_sceMcFatWriteFatData", "scope": "LIBRARY", "original": ".text"}, "508": {"type": "MIPS_26", "symbol": "_sceMcCoreReadClock", "scope": "LIBRARY"}, "532": {"type": "MIPS_26", "symbol": "memset"}, "796": {"type": "MIPS_26", "symbol": "strrchr"}, "888": {"type": "MIPS_26", "symbol": "_CreateEntry", "scope": "LIBRARY", "original": ".text"}, "912": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "920": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "932": {"type": "MIPS_26", "symbol": "memset"}, "944": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1160": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1200": {"type": "MIPS_26", "symbol": "memset"}, "1216": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1464": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1484": {"type": "MIPS_26", "symbol": "_sceMcpWriteUserClust", "scope": "LIBRARY"}, "1500": {"type": "MIPS_26", "symbol": "_sceMcFatFlushFatCache", "scope": "LIBRARY", "original": ".text"}, "1528": {"type": "MIPS_26", "symbol": "_sceMcpFlushCache", "scope": "LIBRARY"}}}}}, "_sceMcFatWriteFile": {"57461eea89f4b6fa7464223388e558da2c0a40e8": {"4c777104": {"type": "FUNCTION", "size": 1236, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.7.2"], "sdk": ["2.7.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "_sceMcCoreGetConnection", "scope": "LIBRARY"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_26", "symbol": "_make_path", "scope": "LIBRARY", "original": ".text"}, "140": {"type": "MIPS_26", "symbol": "isCorrFname", "scope": "LIBRARY", "original": ".text"}, "156": {"type": "MIPS_26", "symbol": "isCorrNameSize", "scope": "LIBRARY", "original": ".text"}, "196": {"type": "MIPS_26", "symbol": "_sceMcFatSearchFile", "scope": "LIBRARY", "original": ".text"}, "432": {"type": "MIPS_26", "symbol": "_sceMcFatGetFreeClustSize", "scope": "LIBRARY", "original": ".text"}, "484": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "496": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "544": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "552": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "560": {"type": "MIPS_26", "symbol": "_sceMcpReadUserClust", "scope": "LIBRARY"}, "600": {"type": "MIPS_26", "symbol": "memcpy"}, "620": {"type": "MIPS_26", "symbol": "_sceMcpWriteUserClust", "scope": "LIBRARY"}, "640": {"type": "MIPS_26", "symbol": "_sceMcpFlushCache", "scope": "LIBRARY"}, "664": {"type": "MIPS_26", "symbol": "memcpy"}, "684": {"type": "MIPS_26", "symbol": "_sceMcpWriteUserClust", "scope": "LIBRARY"}, "740": {"type": "MIPS_26", "symbol": "_sceMcFatGetNextClust", "scope": "LIBRARY", "original": ".text"}, "784": {"type": "MIPS_26", "symbol": "_sceMcFatGetFreeClust", "scope": "LIBRARY", "original": ".text"}, "816": {"type": "MIPS_26", "symbol": "_sceMcFatWriteFatData", "scope": "LIBRARY", "original": ".text"}, "848": {"type": "MIPS_26", "symbol": "_sceMcFatWriteFatData", "scope": "LIBRARY", "original": ".text"}, "892": {"type": "MIPS_26", "symbol": "_sceMcFatFlushFatCache", "scope": "LIBRARY", "original": ".text"}, "912": {"type": "MIPS_26", "symbol": "_sceMcCoreReadClock", "scope": "LIBRARY"}, "1112": {"type": "MIPS_26", "symbol": "_SetEntryByPos", "scope": "LIBRARY", "original": ".text"}, "1156": {"type": "MIPS_26", "symbol": "_sceMcpFlushCache", "scope": "LIBRARY"}}}}, "2e551d3d7ff37bb0d3b251b6435244389be20b9b": {"f2b15a0a": {"type": "FUNCTION", "size": 1308, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.0"], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "_sceMcCoreGetConnection", "scope": "LIBRARY"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_26", "symbol": "_make_path", "scope": "LIBRARY", "original": ".text"}, "140": {"type": "MIPS_26", "symbol": "isCorrFname", "scope": "LIBRARY", "original": ".text"}, "156": {"type": "MIPS_26", "symbol": "isCorrNameSize", "scope": "LIBRARY", "original": ".text"}, "196": {"type": "MIPS_26", "symbol": "_sceMcFatSearchFile", "scope": "LIBRARY", "original": ".text"}, "420": {"type": "MIPS_26", "symbol": "_sceMcFatGetFreeClustSize", "scope": "LIBRARY", "original": ".text"}, "488": {"type": "MIPS_HI16", ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(symbol": "", "original": ".bss"}, "500": {"type": "MIPS_26", "symbol": "_sceMcFatGetFreeClust", "scope": "LIBRARY", "original": ".text"}, "540": {"type": "MIPS_26", "symbol": "_sceMcFatWriteFatData", "scope": "LIBRARY", "original": ".text"}, "568": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "580": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "624": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "632": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "640": {"type": "MIPS_26", "symbol": "_sceMcpReadUserClust", "scope": "LIBRARY"}, "680": {"type": "MIPS_26", "symbol": "memcpy"}, "700": {"type": "MIPS_26", "symbol": "_sceMcpWriteUserClust", "scope": "LIBRARY"}, "720": {"type": "MIPS_26", "symbol": "_sceMcpFlushCache", "scope": "LIBRARY"}, "744": {"type": "MIPS_26", "symbol": "memcpy"}, "764": {"type": "MIPS_26", "symbol": "_sceMcpWriteUserClust", "scope": "LIBRARY"}, "820": {"type": "MIPS_26", "symbol": "_sceMcFatGetNextClust", "scope": "LIBRARY", "original": ".text"}, "864": {"type": "MIPS_26", "symbol": "_sceMcFatGetFreeClust", "scope": "LIBRARY", "original": ".text"}, "896": {"type": "MIPS_26", "symbol": "_sceMcFatWriteFatData", "scope": "LIBRARY", "original": ".text"}, "928": {"type": "MIPS_26", "symbol": "_sceMcFatWriteFatData", "scope": "LIBRARY", "original": ".text"}, "972": {"type": "MIPS_26", "symbol": "_sceMcFatFlushFatCache", "scope": "LIBRARY", "original": ".text"}, "992": {"type": "MIPS_26", "symbol": "_sceMcCoreReadClock", "scope": "LIBRARY"}, "1192": {"type": "MIPS_26", "symbol": "_SetEntryByPos", "scope": "LIBRARY", "original": ".text"}, "1228": {"type": "MIPS_26", "symbol": "_sceMcpFlushCache", "scope": "LIBRARY"}}}}, "6ef730d2b7ccd3f345a33fdcefc1ce35ece2e386": {"c19c4b0c": {"type": "FUNCTION", "size": 1400, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "_sceMcCoreGetConnection", "scope": "LIBRARY"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_26", "symbol": "_make_path", "scope": "LIBRARY", "original": ".text"}, "144": {"type": "MIPS_26", "symbol": "isCorrFname", "scope": "LIBRARY", "original": ".text"}, "176": {"type": "MIPS_26", "symbol": "isCorrNameSize", "scope": "LIBRARY", "original": ".text"}, "220": {"type": "MIPS_26", "symbol": "_sceMcFatSearchFile", "scope": "LIBRARY", "original": ".text"}, "404": {"type": "MIPS_26", "symbol": "_fat_chain_trace", "scope": "LIBRARY", "original": ".text"}, "440": {"type": "MIPS_26", "symbol": "_sceMcFatGetFreeClustSize", "scope": "LIBRARY", "original": ".text"}, "496": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "504": {"type": "MIPS_26", "symbol": "_sceMcFatGetFreeClust", "scope": "LIBRARY", "original": ".text"}, "540": {"type": "MIPS_26", "symbol": "_sceMcFatWriteFatData", "scope": "LIBRARY", "original": ".text"}, "568": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "588": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "636": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "644": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "652": {"type": "MIPS_26", "symbol": "_sceMcpReadUserClust", "scope": "LIBRARY"}, "692": {"type": "MIPS_26", "symbol": "memcpy"}, "712": {"type": "MIPS_26", "symbol": "_sceMcpWriteUserClust", "scope": "LIBRARY"}, "756": {"type": "MIPS_26", "symbol": "memcpy"}, "776": {"type": "MIPS_26", "symbol": "_sceMcpWriteUserClust", "scope": "LIBRARY"}, "812": {"type": "MIPS_26", "symbol": "_sceMcFatGetNextClust", "scope": "LIBRARY", "original": ".text"}, "852": {"type": "MIPS_26", "symbol": "_sceMcFatGetFreeClust", "scope": "LIBRARY", "original": ".text"}, "888": {"type": "MIPS_26", "symbol": "_sceMcFatWriteFatData", "scope": "LIBRARY", "original": ".text"}, "924": {"type": "MIPS_26", "symbol": "_sceMcFatWriteFatData", "scope": "LIBRARY", "original": ".text"}, "972": {"type": "MIPS_26", "symbol": "_sceMcpFlushCache", "scope": "LIBRARY"}, "1000": {"type": "MIPS_26", "symbol": "_sceMcFatFlushFatCache", "scope": "LIBRARY", "original": ".text"}, "1032": {"type": "MIPS_26", "symbol": "_sceMcCoreReadClock", "scope": "LIBRARY"}, "1276": {"type": "MIPS_26", "symbol": "_SetEntryByPos", "scope": "LIBRARY", "original": ".text"}, "1320": {"type": "MIPS_26", "symbol": "_sceMcpFlushCache", "scope": "LIBRARY"}}}}}, "_sceMcFatDeleteFile": {"32998d0226e0c4717bcd9730299ae5c05923a7d6": {"9249766c": {"type": "FUNCTION", "size": 604, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.7.2"], "sdk": ["2.7.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "_sceMcCoreGetConnection", "scope": "LIBRARY"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_26", "symbol": "_make_path", "scope": "LIBRARY", "original": ".text"}, "112": {"type": "MIPS_26", "symbol": "isCorrFname", "scope": "LIBRARY", "original": ".text"}, "140": {"type": "MIPS_26", "symbol": "isCorrNameSize", "scope": "LIBRARY", "original": ".text"}, "180": {"type": "MIPS_26", "symbol": "_sceMcFatSearchFile", "scope": "LIBRARY", "original": ".text"}, "248": {"type": "MIPS_26", "symbol": "strcpy"}, "256": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "264": {"type": "MIPS_26", "symbol": "strcat"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "292": {"type": "MIPS_26", "symbol": "_sceMcFatGetDir", "scope": "LIBRARY", "original": ".text"}, "356": {"type": "MIPS_26", "symbol": "_SetEntryByPos", "scope": "LIBRARY", "original": ".text"}, "428": {"type": "MIPS_26", "symbol": "_sceMcFatGetNextClust", "scope": "LIBRARY", "original": ".text"}, "464": {"type": "MIPS_26", "symbol": "_sceMcFatWriteFatData", "scope": "LIBRARY", "original": ".text"}, "500": {"type": "MIPS_26", "symbol": "_sceMcpFlushCache", "scope": "LIBRARY"}, "516": {"type": "MIPS_26", "symbol": "_sceMcFatFlushFatCache", "scope": "LIBRARY", "original": ".text"}, "552": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "95e196ab2a5a1ce746cc5714c0ec32a3500cc7bb": {"a962096a": {"type": "FUNCTION", "size": 620, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.0"], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "_sceMcCoreGetConnection", "scope": "LIBRARY"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_26", "symbol": "_make_path", "scope": "LIBRARY", "original": ".text"}, "112": {"type": "MIPS_26", "symbol": "isCorrFname", "scope": "LIBRARY", "original": ".text"}, "140": {"type": "MIPS_26", "symbol": "isCorrNameSize", "scope": "LIBRARY", "original": ".text"}, "180": {"type": "MIPS_26", "symbol": "_sceMcFatSearchFile", "scope": "LIBRARY", "original": ".text"}, "248": {"type": "MIPS_26", "symbol": "strcpy"}, "256": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "264": {"type": "MIPS_26", "symbol": "strcat"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "292": {"type": "MIPS_26", "symbol": "_sceMcFatGetDir", "scope": "LIBRARY", "original": ".text"}, "356": {"type": "MIPS_26", "symbol": "_SetEntryByPos", "scope": "LIBRARY", "original": ".text"}, "396": {"type": "MIPS_26", "symbol": "_sceMcpFlushCache", "scope": "LIBRARY"}, "452": {"type": "MIPS_26", "symbol": "_sceMcFatGetNextClust", "scope": "LIBRARY", "original": ".text"}, "488": {"type": "MIPS_26", "symbol": "_sceMcFatWriteFatData", "scope": "LIBRARY", "original": ".text"}, "524": {"type": "MIPS_26", "symbol": "_sceMcpFlushCache", "scope": "LIBRARY"}, "540": {"type": "MIPS_26", "symbol": "_sceMcFatFlushFatCache", "scope": "LIBRARY", "original": ".text"}, "568": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "02d40d9817)PS2SDB", 8192}, + std::string_view{R"PS2SDB(bff2e80763119528da49064a8cd6fd": {"cd5682bc": {"type": "FUNCTION", "size": 612, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "_sceMcCoreGetConnection", "scope": "LIBRARY"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_26", "symbol": "_make_path", "scope": "LIBRARY", "original": ".text"}, "120": {"type": "MIPS_26", "symbol": "isCorrFname", "scope": "LIBRARY", "original": ".text"}, "152": {"type": "MIPS_26", "symbol": "isCorrNameSize", "scope": "LIBRARY", "original": ".text"}, "196": {"type": "MIPS_26", "symbol": "_sceMcFatSearchFile", "scope": "LIBRARY", "original": ".text"}, "256": {"type": "MIPS_26", "symbol": "strcpy"}, "264": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "272": {"type": "MIPS_26", "symbol": "strcat"}, "300": {"type": "MIPS_26", "symbol": "_sceMcFatGetDir", "scope": "LIBRARY", "original": ".text"}, "356": {"type": "MIPS_26", "symbol": "_SetEntryByPos", "scope": "LIBRARY", "original": ".text"}, "388": {"type": "MIPS_26", "symbol": "_sceMcpFlushCache", "scope": "LIBRARY"}, "444": {"type": "MIPS_26", "symbol": "_sceMcFatGetNextClust", "scope": "LIBRARY", "original": ".text"}, "480": {"type": "MIPS_26", "symbol": "_sceMcFatWriteFatData", "scope": "LIBRARY", "original": ".text"}, "508": {"type": "MIPS_26", "symbol": "_sceMcpFlushCache", "scope": "LIBRARY"}, "524": {"type": "MIPS_26", "symbol": "_sceMcFatFlushFatCache", "scope": "LIBRARY", "original": ".text"}, "552": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "560": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "_sceMcFatChDir": {"9e8cd5e2ed486526f5bd345b0163454849dbd6b0": {"a7a588f3": {"type": "FUNCTION", "size": 388, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.7.2", "2.8.0"], "sdk": ["2.7.2", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "_sceMcCoreGetConnection", "scope": "LIBRARY"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_26", "symbol": "_make_path", "scope": "LIBRARY", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "isCorrFname", "scope": "LIBRARY", "original": ".text"}, "160": {"type": "MIPS_26", "symbol": "isCorrNameSize", "scope": "LIBRARY", "original": ".text"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "196": {"type": "MIPS_26", "symbol": "strcmp"}, "220": {"type": "MIPS_26", "symbol": "strcpy"}, "248": {"type": "MIPS_26", "symbol": "_sceMcFatSearchFile", "scope": "LIBRARY", "original": ".text"}, "312": {"type": "MIPS_26", "symbol": "strcpy"}, "324": {"type": "MIPS_26", "symbol": "strcat"}, "340": {"type": "MIPS_26", "symbol": "strcpy"}}}}, "1f6974e4493ac75584d3c7e0699afe68fea5f223": {"87ca5114": {"type": "FUNCTION", "size": 384, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "_sceMcCoreGetConnection", "scope": "LIBRARY"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_26", "symbol": "_make_path", "scope": "LIBRARY", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "isCorrFname", "scope": "LIBRARY", "original": ".text"}, "160": {"type": "MIPS_26", "symbol": "isCorrNameSize", "scope": "LIBRARY", "original": ".text"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "200": {"type": "MIPS_26", "symbol": "strcmp"}, "224": {"type": "MIPS_26", "symbol": "strcpy"}, "252": {"type": "MIPS_26", "symbol": "_sceMcFatSearchFile", "scope": "LIBRARY", "original": ".text"}, "308": {"type": "MIPS_26", "symbol": "strcpy"}, "320": {"type": "MIPS_26", "symbol": "strcat"}, "336": {"type": "MIPS_26", "symbol": "strcpy"}}}}}, "_sceMcFatGetDir": {"fa449abed9c06ec978f88f755753f6f5fdfb18da": {"f0413c9b": {"type": "FUNCTION", "size": 1136, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.7.2", "2.8.0"], "sdk": ["2.7.2", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "_sceMcCoreGetConnection", "scope": "LIBRARY"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_26", "symbol": "_make_path", "scope": "LIBRARY", "original": ".text"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "152": {"type": "MIPS_26", "symbol": "strcmp"}, "184": {"type": "MIPS_26", "symbol": "strcpy"}, "196": {"type": "MIPS_26", "symbol": "strrchr"}, "216": {"type": "MIPS_26", "symbol": "strlen"}, "232": {"type": "MIPS_26", "symbol": "strcpy"}, "240": {"type": "MIPS_26", "symbol": "strlen"}, "272": {"type": "MIPS_26", "symbol": "_sceMcFatSearchFile", "scope": "LIBRARY", "original": ".text"}, "344": {"type": "MIPS_26", "symbol": "_GetEntryByPos", "scope": "LIBRARY", "original": ".text"}, "380": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "384": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "388": {"type": "MIPS_26", "symbol": "strcmp"}, "412": {"type": "MIPS_26", "symbol": "_GetEntryByPos", "scope": "LIBRARY", "original": ".text"}, "480": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "488": {"type": "MIPS_26", "symbol": "strcmp"}, "492": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "584": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "592": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "600": {"type": "MIPS_26", "symbol": "_sceMcpReadUserClust", "scope": "LIBRARY"}, "616": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "624": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "840": {"type": "MIPS_26", "symbol": "isWildFit", "scope": "LIBRARY", "original": ".text"}, "920": {"type": "MIPS_26", "symbol": "strcpy"}, "996": {"type": "MIPS_26", "symbol": "_sceMcFatGetNextClust", "scope": "LIBRARY", "original": ".text"}}}}, "c77b48f831bbba414ebc578e964e49a1d2709fd8": {"a34e60ea": {"type": "FUNCTION", "size": 1188, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "_sceMcCoreGetConnection", "scope": "LIBRARY"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_26", "symbol": "_make_path", "scope": "LIBRARY", "original": ".text"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "156": {"type": "MIPS_26", "symbol": "strcmp"}, "188": {"type": "MIPS_26", "symbol": "strcpy"}, "200": {"type": "MIPS_26", "symbol": "strrchr"}, "212": {"type": "MIPS_26", "symbol": "strlen"}, "232": {"type": "MIPS_26", "symbol": "strcpy"}, "240": {"type": "MIPS_26", "symbol": "strlen"}, "272": {"type": "MIPS_26", "symbol": "_sceMcFatSearchFile", "scope": "LIBRARY", "original": ".text"}, "316": {"type": "MIPS_26", "symbol": "_sceMcFatSearchFile", "scope": "LIBRARY", "original": ".text"}, "376": {"type": "MIPS_26", "symbol": "_GetEntryByPos", "scope": "LIBRARY", "original": ".text"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "424": {"type": "MIPS_LO16", "symbol": "", "original")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: ".rodata"}, "428": {"type": "MIPS_26", "symbol": "strcmp"}, "456": {"type": "MIPS_26", "symbol": "_GetEntryByPos", "scope": "LIBRARY", "original": ".text"}, "532": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "540": {"type": "MIPS_26", "symbol": "strcmp"}, "544": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "636": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "644": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "652": {"type": "MIPS_26", "symbol": "_sceMcpReadUserClust", "scope": "LIBRARY"}, "668": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "676": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "900": {"type": "MIPS_26", "symbol": "isWildFit", "scope": "LIBRARY", "original": ".text"}, "988": {"type": "MIPS_26", "symbol": "strcpy"}, "1056": {"type": "MIPS_26", "symbol": "_sceMcFatGetNextClust", "scope": "LIBRARY", "original": ".text"}}}}}, "_sceMcFatSetAttr": {"1f15dcceb8552df4b2757b4b49787d0ba1d3693b": {"c9720b67": {"type": "FUNCTION", "size": 280, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.7.2", "2.8.0"], "sdk": ["2.7.2", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "_sceMcCoreGetConnection", "scope": "LIBRARY"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_26", "symbol": "_make_path", "scope": "LIBRARY", "original": ".text"}, "116": {"type": "MIPS_26", "symbol": "isCorrFname", "scope": "LIBRARY", "original": ".text"}, "144": {"type": "MIPS_26", "symbol": "isCorrNameSize", "scope": "LIBRARY", "original": ".text"}, "188": {"type": "MIPS_26", "symbol": "_sceMcFatSearchFile", "scope": "LIBRARY", "original": ".text"}, "248": {"type": "MIPS_26", "symbol": "_SetEntryByPos", "scope": "LIBRARY", "original": ".text"}}}}, "1d4634b5a9021bc93db4279677452e00b67f6fd5": {"15333d88": {"type": "FUNCTION", "size": 272, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "_sceMcCoreGetConnection", "scope": "LIBRARY"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_26", "symbol": "_make_path", "scope": "LIBRARY", "original": ".text"}, "108": {"type": "MIPS_26", "symbol": "isCorrFname", "scope": "LIBRARY", "original": ".text"}, "136": {"type": "MIPS_26", "symbol": "isCorrNameSize", "scope": "LIBRARY", "original": ".text"}, "184": {"type": "MIPS_26", "symbol": "_sceMcFatSearchFile", "scope": "LIBRARY", "original": ".text"}, "240": {"type": "MIPS_26", "symbol": "_SetEntryByPos", "scope": "LIBRARY", "original": ".text"}}}}}, "_sceMcFatRename": {"6fdea548fa76c6d6715362051652387a97823104": {"882f684d": {"type": "FUNCTION", "size": 460, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.7.2", "2.8.0"], "sdk": ["2.7.2", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "_sceMcCoreGetConnection", "scope": "LIBRARY"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_26", "symbol": "_make_path", "scope": "LIBRARY", "original": ".text"}, "136": {"type": "MIPS_26", "symbol": "strchr"}, "156": {"type": "MIPS_26", "symbol": "strcpy"}, "168": {"type": "MIPS_26", "symbol": "strrchr"}, "180": {"type": "MIPS_26", "symbol": "strcpy"}, "188": {"type": "MIPS_26", "symbol": "isCorrFname", "scope": "LIBRARY", "original": ".text"}, "204": {"type": "MIPS_26", "symbol": "isCorrFname", "scope": "LIBRARY", "original": ".text"}, "232": {"type": "MIPS_26", "symbol": "isCorrNameSize", "scope": "LIBRARY", "original": ".text"}, "248": {"type": "MIPS_26", "symbol": "isCorrNameSize", "scope": "LIBRARY", "original": ".text"}, "296": {"type": "MIPS_26", "symbol": "_sceMcFatSearchFile", "scope": "LIBRARY", "original": ".text"}, "336": {"type": "MIPS_26", "symbol": "_sceMcFatSearchFile", "scope": "LIBRARY", "original": ".text"}, "364": {"type": "MIPS_26", "symbol": "strcpy"}, "384": {"type": "MIPS_26", "symbol": "_SetEntryByPos", "scope": "LIBRARY", "original": ".text"}, "400": {"type": "MIPS_26", "symbol": "_sceMcpFlushCache", "scope": "LIBRARY"}}}}, "a98e9e5d5a7ba79b8788d976bfe752fbfa0e08c9": {"24b86682": {"type": "FUNCTION", "size": 444, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "_sceMcCoreGetConnection", "scope": "LIBRARY"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_26", "symbol": "_make_path", "scope": "LIBRARY", "original": ".text"}, "124": {"type": "MIPS_26", "symbol": "strchr"}, "144": {"type": "MIPS_26", "symbol": "strcpy"}, "156": {"type": "MIPS_26", "symbol": "strrchr"}, "168": {"type": "MIPS_26", "symbol": "strcpy"}, "176": {"type": "MIPS_26", "symbol": "isCorrFname", "scope": "LIBRARY", "original": ".text"}, "192": {"type": "MIPS_26", "symbol": "isCorrFname", "scope": "LIBRARY", "original": ".text"}, "224": {"type": "MIPS_26", "symbol": "isCorrNameSize", "scope": "LIBRARY", "original": ".text"}, "240": {"type": "MIPS_26", "symbol": "isCorrNameSize", "scope": "LIBRARY", "original": ".text"}, "284": {"type": "MIPS_26", "symbol": "_sceMcFatSearchFile", "scope": "LIBRARY", "original": ".text"}, "324": {"type": "MIPS_26", "symbol": "_sceMcFatSearchFile", "scope": "LIBRARY", "original": ".text"}, "352": {"type": "MIPS_26", "symbol": "strcpy"}, "372": {"type": "MIPS_26", "symbol": "_SetEntryByPos", "scope": "LIBRARY", "original": ".text"}, "388": {"type": "MIPS_26", "symbol": "_sceMcpFlushCache", "scope": "LIBRARY"}}}}}, "_sceMcFatGetEntSpace": {"9a6e08089bdf0c7b7b4d4fb395e6b0f2570fd9ce": {"8a997341": {"type": "FUNCTION", "size": 288, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.7.2", "2.8.0"], "sdk": ["2.7.2", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "_sceMcCoreGetConnection", "scope": "LIBRARY"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_26", "symbol": "_make_path", "scope": "LIBRARY", "original": ".text"}, "116": {"type": "MIPS_26", "symbol": "isCorrFname", "scope": "LIBRARY", "original": ".text"}, "144": {"type": "MIPS_26", "symbol": "isCorrNameSize", "scope": "LIBRARY", "original": ".text"}, "184": {"type": "MIPS_26", "symbol": "_sceMcFatSearchFile", "scope": "LIBRARY", "original": ".text"}, "248": {"type": "MIPS_26", "symbol": "_GetFreeEntrySize", "scope": "LIBRARY", "original": ".text"}}}}, "c899eecdd997d0459aba538c7c97432230c8c3df": {"8d35ac42": {"type": "FUNCTION", "size": 284, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "_sceMcCoreGetConnection", "scope": "LIBRARY"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_26", "symbol": "_make_path", "scope": "LIBRARY", "original": ".text"}, "112": {"type": "MIPS_26", "symbol": "isCorrFname", "scope": "LIBRARY", "original": ".text"}, "144": {"type": "MIPS_26", "symbol": "isCorrNameSize", "scope": "LIBRARY", "original": ".text"}, "188": {"type": "MIPS_26", "symbol": "_sceMcFatSearchFile", "scope": "LIBRARY", "original": ".text"}, "244": {"type": "MIPS_26", "symbol": "_GetFreeEntrySize", "scope": "LIBRARY", "original": ".text"}}}}}, "_sceMcpInit": {"75a83566bed4761f79e8de20d65a7693ca51e418": {"d3e72eac": {"type": "FUNCTION", "size": 52, "library": "libmc2", "scope": "GL)PS2SDB", 8192}, + std::string_view{R"PS2SDB(OBAL", "is_interface": false, "versions": ["2.7.2", "2.8.0"], "sdk": ["2.7.2", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "d5e27ae59c075d5eefa4eee07a0d503c6b904857": {"d3e72eac": {"type": "FUNCTION", "size": 52, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "_sceMcpGetCardSpec": {"7ba17f652620d1a8770717ffc05543c774ba24f8": {"30d29853": {"type": "FUNCTION", "size": 28, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.7.2", "2.8.0"], "sdk": ["2.7.2", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "_sceMcCoreGetCardSpec", "scope": "LIBRARY"}}}}, "c0a5a6b6b96e3534f1ce618782a40e20574c6678": {"5193f316": {"type": "FUNCTION", "size": 20, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "_sceMcCoreGetCardSpec", "scope": "LIBRARY"}}}}}, "_sceMcpCheckNewCard": {"7ba17f652620d1a8770717ffc05543c774ba24f8": {"5fd0d31b": {"type": "FUNCTION", "size": 28, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.7.2", "2.8.0"], "sdk": ["2.7.2", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "_sceMcCoreCheckNewCard", "scope": "LIBRARY"}}}}, "c0a5a6b6b96e3534f1ce618782a40e20574c6678": {"5907276f": {"type": "FUNCTION", "size": 20, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "_sceMcCoreCheckNewCard", "scope": "LIBRARY"}}}}}, "_sceMcpReadSysInfo": {"36c46e04a734f2a3746a3d2ea61778234cce39ad": {"41015e0d": {"type": "FUNCTION", "size": 276, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.7.2", "2.8.0"], "sdk": ["2.7.2", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_26", "symbol": "_sceMcCoreReadPage2", "scope": "LIBRARY"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": "gSceMc2SysInfo"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "gSceMc2SysInfo"}}}}, "2744c1b5332129da0156fe7f46d564d9bba5f6e4": {"1986c860": {"type": "FUNCTION", "size": 284, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_26", "symbol": "_sceMcCoreReadPage2", "scope": "LIBRARY"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": "gSceMc2SysInfo"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": "gSceMc2SysInfo"}}}}}, "_sceMcpWriteSysInfo": {"9c0c5195eba4f2a4b77b8e5bc34c5e69bc7ccee8": {"893e84c7": {"type": "FUNCTION", "size": 248, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.7.2"], "sdk": ["2.7.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "gSceMc2SysInfo"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "gSceMc2SysInfo"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "224": {"type": "MIPS_26", "symbol": "_sceMcCoreWritePage", "scope": "LIBRARY"}}}}, "0560ea6bc3d27df43ccaaa98fdb251face9316de": {"8358e5ca": {"type": "FUNCTION", "size": 284, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.0"], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_26", "symbol": "memset"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": "gSceMc2SysInfo"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": "gSceMc2SysInfo"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "248": {"type": "MIPS_26", "symbol": "_sceMcCoreWritePage", "scope": "LIBRARY"}}}}, "31b57c9cb68a36cfe28a510d8329a5212cb9a373": {"de3268b9": {"type": "FUNCTION", "size": 256, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": "gSceMc2SysInfo"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": "gSceMc2SysInfo"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "232": {"type": "MIPS_26", "symbol": "_sceMcCoreWritePage", "scope": "LIBRARY"}}}}}, "_sceMcpReadClust": {"7af1ae1621605d41becc4f8705672dd8be706b2b": {"5d811bcc": {"type": "FUNCTION", "size": 64, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.7.2", "2.8.0"], "sdk": ["2.7.2", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": "gSceMc2SysInfo"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": "gSceMc2SysInfo"}, "44": {"type": "MIPS_26", "symbol": "_sceMcCoreReadPage", "scope": "LIBRARY"}}}}, "a57365f3d8ab91cb3cabbf0fb898b67852a330f2": {"5b954e4c": {"type": "FUNCTION", "size": 72, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": "gSceMc2SysInfo"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "gSceMc2SysInfo"}, "64": {"type": "MIPS_26", "symbol": "_sceMcCoreReadPage", "scope": "LIBRARY"}}}}}, "_sceMcpWriteClust": {"7af1ae1621605d41becc4f8705672dd8be706b2b": {"6668f259": {"type": "FUNCTION", "size": 64, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.7.2", "2.8.0"], "sdk": ["2.7.2", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": "gSceMc2SysInfo"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": "gSceMc2SysInfo"}, "44": {"type": "MIPS_26", "symbol": "_sceMcCoreWritePage", "scope": "LIBRARY"}}}}, "a57365f3d8ab91cb3cabbf0fb898b67852a330f2": {"8bd6652c": {"type": "FUNCTION", "size": 72, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": "gSceMc2SysInfo"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "gSceMc2SysInfo"}, "64": {"type": "MIPS_26", "symbol": "_sceMcCoreWritePage", "scope": "LIBRARY"}}}}}, "_sceMcpFlushCache": {"4dc37ad9715b1e46f89313a3378a0a54760dbac7": {"6c0e1d37": {"type": "FUNCTION", "size": 112, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.7.2", "2.8.0"], "sdk": ["2.7.2", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_26", "symbol": "_sceMcpWriteClust", "scope": "LIBRARY", "original": ".text"}}}}, "77d3a16e2c94512f076269a1b2cd8e785080ccbd": {"1350f388": {"type": "FUNCTION", "size": 120, "librar)PS2SDB", 8192}, + std::string_view{R"PS2SDB(y": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "_sceMcpWriteClust", "scope": "LIBRARY", "original": ".text"}}}}}, "_sceMcpWriteUserClustOnCache": {"5afeaa80fc090bb0a2e96cd749e231414115140e": {"a405d692": {"type": "FUNCTION", "size": 916, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.7.2", "2.8.0"], "sdk": ["2.7.2", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": "gSceMc2SysInfo"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": "gSceMc2SysInfo"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "332": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "596": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "616": {"type": "MIPS_26", "symbol": "_sceMcpFlushCache", "scope": "LIBRARY", "original": ".text"}, "628": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "852": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "9432024666666e489f63de9b17f18245d02db344": {"13fd7575": {"type": "FUNCTION", "size": 968, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": "gSceMc2SysInfo"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": "gSceMc2SysInfo"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "356": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "636": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "664": {"type": "MIPS_26", "symbol": "_sceMcpFlushCache", "scope": "LIBRARY", "original": ".text"}, "672": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "900": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "_sceMcpReadUserClustOnCache": {"dac7a4748054902404c706907933b48190aea77a": {"7f5fb022": {"type": "FUNCTION", "size": 320, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.7.2", "2.8.0"], "sdk": ["2.7.2", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": "gSceMc2SysInfo"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": "gSceMc2SysInfo"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "300": {"type": "MIPS_26", "symbol": "_sceMcpReadClust", "scope": "LIBRARY", "original": ".text"}}}}, "33d09a497eaf9302b148f92fcc392faa06cd47b2": {"ba49bbcc": {"type": "FUNCTION", "size": 328, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": "gSceMc2SysInfo"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": "gSceMc2SysInfo"}, "320": {"type": "MIPS_26", "symbol": "_sceMcpReadClust", "scope": "LIBRARY", "original": ".text"}}}}}, "_sceMcpReadUserClust": {"7ba17f652620d1a8770717ffc05543c774ba24f8": {"6289bdb2": {"type": "FUNCTION", "size": 28, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.7.2", "2.8.0"], "sdk": ["2.7.2", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "_sceMcpReadUserClustOnCache", "scope": "LIBRARY", "original": ".text"}}}}, "c0a5a6b6b96e3534f1ce618782a40e20574c6678": {"b943fe7e": {"type": "FUNCTION", "size": 20, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "_sceMcpReadUserClustOnCache", "scope": "LIBRARY", "original": ".text"}}}}}, "_sceMcpWriteUserClust": {"7ba17f652620d1a8770717ffc05543c774ba24f8": {"d7ed570d": {"type": "FUNCTION", "size": 28, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.7.2", "2.8.0"], "sdk": ["2.7.2", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "_sceMcpWriteUserClustOnCache", "scope": "LIBRARY", "original": ".text"}}}}, "c0a5a6b6b96e3534f1ce618782a40e20574c6678": {"45e413d5": {"type": "FUNCTION", "size": 20, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "_sceMcpWriteUserClustOnCache", "scope": "LIBRARY", "original": ".text"}}}}}, "_sceMcpIsSpeckOutClust": {"5438168b23869c930e8594a998b3cc747aa82dbb": {"b9e78b8c": {"type": "FUNCTION", "size": 96, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.7.2", "2.8.0"], "sdk": ["2.7.2", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "gSceMc2SysInfo"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "gSceMc2SysInfo"}}}}, "0fec99edd4bb8ad954a9a219903894cd5dba64f9": {"719fbbac": {"type": "FUNCTION", "size": 120, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": "gSceMc2SysInfo"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": "gSceMc2SysInfo"}}}}}, "_sceMcpIsSpeckOutBlock": {"de564159e74598978c6e38c4332e331fc22bb13e": {"b9e78b8c": {"type": "FUNCTION", "size": 72, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.7.2", "2.8.0"], "sdk": ["2.7.2", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "gSceMc2SysInfo"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "gSceMc2SysInfo"}}}}, "120449ccf1cee396fb2fa8a22e35abc372e2a41a": {"719fbbac": {"type": "FUNCTION", "size": 88, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": "gSceMc2SysInfo"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": "gSceMc2SysInfo"}}}}}, "_sceMcpMakeSpecoutBlock": {"f1cbe02ca536df443abac1af60a82c6647777607": {"c1fa1567": {"type": "FUNCTION", "size": 336, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.7.2", "2.8.0"], "sdk": ["2.7.2", "2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_26", "symbol": "_sceMcCoreReadPage2", "scope": "LIBRARY"}}}}, "f63d5c07bc2be1894f3e8801bb9223abf4616998": {"9e7e2e2d": {"type": "FUNCTION", "size": 340, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_26", "symbol": "_sceMcCoreReadPage2", "scope": "LIBRARY"}}}}}, "sceMc2ChangeThreadPriority": {"c16e92f14acd2e9d735afedd6192c6fd786185e6": {"e383439d": {"type": "FUNCTION", "size": 56, "library": "libmc2", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0", "3.0.0"], "sdk": ["2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI1)PS2SDB", 8192}, + std::string_view{R"PS2SDB(6", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceMc2iChangeThreadPriority": {"c16e92f14acd2e9d735afedd6192c6fd786185e6": {"7bce21da": {"type": "FUNCTION", "size": 56, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.0", "3.0.0"], "sdk": ["2.8.0", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_26", "symbol": "iChangeThreadPriority"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "_fat_chain_trace": {"32e7aa3952c0eba47888de1a10dd6d7b73ed58d2": {"ca2e6cb2": {"type": "FUNCTION", "size": 164, "library": "libmc2", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0"], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"72": {"type": "MIPS_26", "symbol": "_sceMcFatGetNextClust", "scope": "LIBRARY", "original": ".text"}}}}, "24e1c2e0f70da38115a7126794b83077b179adb0": {"08acba38": {"type": "FUNCTION", "size": 144, "library": "libmc2", "scope": "LOCAL", "is_interface": false, "versions": ["3.0.0"], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_26", "symbol": "_sceMcFatGetNextClust", "scope": "LIBRARY", "original": ".text"}}}}, "6f9131055fadd3d88a3c130a6a153ed6ef694660": {"56d8116d": {"type": "FUNCTION", "size": 168, "library": "libmc2", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.2-3"], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"80": {"type": "MIPS_26", "symbol": "_sceMcFatGetNextClust", "scope": "LIBRARY", "original": ".text"}}}}}, "SyncDma": {"ab16bb5cb22c962e54ca9f29cd919d0e538c85e3": {"23faca9b": {"type": "FUNCTION", "size": 232, "library": "libmc2", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0"], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "68": {"type": "MIPS_26", "symbol": "SyncDCache"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_26", "symbol": "sceDbcGetConnection"}}}}}, "SyncDmaForRead": {"d6fbe3bc90b0886efce675f71efa63217380080c": {"ec316316": {"type": "FUNCTION", "size": 116, "library": "libmc2", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0"], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_26", "symbol": "SyncDCache"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_26", "symbol": "sceDbcGetConnection"}}}}}, "sceMc2SifCallback": {"10031d2e07154789fe0129bc2b111d1dd5e010ca": {"967c7e49": {"type": "FUNCTION", "size": 44, "library": "libmc2", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0"], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_26", "symbol": "iSignalSema"}}}}}, "_sceMcCoreInit": {"6e13886437090fbc77d5cb6789f5e8171b15fd03": {"c769752e": {"type": "FUNCTION", "size": 168, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.0"], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_26", "symbol": "CreateSema"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "_sceMcCoreEnd": {"8a209fc99352f0091c2d3c1a8a2cfc2d79fa8724": {"218e436a": {"type": "FUNCTION", "size": 76, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.0"], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_26", "symbol": "DeleteSema"}, "48": {"type": "MIPS_26", "symbol": "DeleteSema"}}}}}, "_get_free_slot": {"82523fcfac7c3257b768adac87c04d05e911a1f6": {"d3e72eac": {"type": "FUNCTION", "size": 56, "library": "libmc2", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0"], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "_sceMcCoreCreateSocket": {"b20a15a9aa3a8717ea535a08d6bd397fb11d4179": {"1506f98c": {"type": "FUNCTION", "size": 204, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.0"], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "_get_free_slot", "scope": "LIBRARY", "original": ".text"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_26", "symbol": "memset"}, "120": {"type": "MIPS_26", "symbol": "sceDbcCreateSocket"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "_sceMcCoreCheckSocket": {"1853d65aa69bb979a7fa01f9e2261373b2a42fb0": {"ca94194d": {"type": "FUNCTION", "size": 48, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.0"], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "_sceMcCoreDeleteSocket": {"445a37684808f0657ede27724a7030baf2c6f25c": {"d87e01cd": {"type": "FUNCTION", "size": 104, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.0"], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "_sceMcCoreCheckSocket", "scope": "LIBRARY", "original": ".text"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_26", "symbol": "sceDbcDeleteSocket"}}}}}, "_sceMcCoreChangeSocketTypeDbc2Mc": {"3c7486cb0b621d7f18a044e32a8ef7edf7843191": {"d3e72eac": {"type": "FUNCTION", "size": 68, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.0"], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "_sceMcCoreSetCardSpec": {"5edfd6598c9b04da4be9bf44805c0e40fdc9cdae": {"b9e78b8c": {"type": "FUNCTION", "size)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": 60, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.0"], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "_sceMcCoreGetCardSpec": {"e430e4ca2851d5ecf7594822b4d0b690be74239e": {"84a8ab19": {"type": "FUNCTION", "size": 472, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.0"], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "sceDbcGetConnection"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_HI16", "symbol": "sceMc2SifCallback", "original": ".text"}, "168": {"type": "MIPS_26", "symbol": "memset"}, "180": {"type": "MIPS_26", "symbol": "SyncDCache"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "212": {"type": "MIPS_26", "symbol": "sceDbcSendData3"}, "216": {"type": "MIPS_LO16", "symbol": "sceMc2SifCallback", "original": ".text"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "244": {"type": "MIPS_26", "symbol": "SyncDma", "scope": "LIBRARY", "original": ".text"}}}}}, "_sceMcCoreCheckNewCard": {"e82a105641999fb2b86c42af99b42166f70e1910": {"6f23c4d0": {"type": "FUNCTION", "size": 240, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.0"], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_26", "symbol": "sceDbcGetConnection"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "memset"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_HI16", "symbol": "sceMc2SifCallback", "original": ".text"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_26", "symbol": "sceDbcSendData3"}, "160": {"type": "MIPS_LO16", "symbol": "sceMc2SifCallback", "original": ".text"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_26", "symbol": "SyncDma", "scope": "LIBRARY", "original": ".text"}}}}}, "_sceMcCoreWriteBack": {"67900949a5721be09bc15739cd1ee60939529c8a": {"7eec29d0": {"type": "FUNCTION", "size": 360, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.0"], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_26", "symbol": "sceDbcGetConnection"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "120": {"type": "MIPS_26", "symbol": "scePrintf"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "204": {"type": "MIPS_HI16", "symbol": "sceMc2SifCallback", "original": ".text"}, "240": {"type": "MIPS_26", "symbol": "memset"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "276": {"type": "MIPS_26", "symbol": "sceDbcSendData3"}, "280": {"type": "MIPS_LO16", "symbol": "sceMc2SifCallback", "original": ".text"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "308": {"type": "MIPS_26", "symbol": "SyncDma", "scope": "LIBRARY", "original": ".text"}}}}}, "_sceMcCoreReadClock": {"2b69b4099c9f9e5a5c6599b15c61f8322f80b8f9": {"090ae2c6": {"type": "FUNCTION", "size": 284, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.0"], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_26", "symbol": "sceDbcGetConnection"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "memset"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_HI16", "symbol": "sceMc2SifCallback", "original": ".text"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_26", "symbol": "sceDbcSendData3"}, "160": {"type": "MIPS_LO16", "symbol": "sceMc2SifCallback", "original": ".text"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_26", "symbol": "SyncDma", "scope": "LIBRARY", "original": ".text"}}}}}, "_sceMcCoreReadPage2": {"b40169e6fe1adec6e358e04921977237bd3a618f": {"73daf901": {"type": "FUNCTION", "size": 464, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.0"], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "sceDbcGetConnection"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "220": {"type": "MIPS_26", "symbol": "memset"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "240": {"type": "MIPS_HI16", "symbol": "sceMc2SifCallback", "original": ".text"}, "248": {"type": "MIPS_26", "symbol": "scePrintf"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "288": {"type": "MIPS_LO16", "symbol": "sceMc2SifCallback", "original": ".text"}, "296": {"type": "MIPS_26", "symbol": "sceDbcSendData3"}, "312": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "316": {"type": "MIPS_26", "symbol": "SyncDmaForRead", "scope": "LIBRARY", "original": ".text"}, "332": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "372": {"type": "MIPS_26", "symbol": "SyncDCache"}, "388": {"type": "MIPS_26", "symbol": "memcpy"}}}}}, "_sceMcCoreReadPage": {"8ff0263b0d832b6a8940902931b8b002d3d7a93f": {"5315d755": {"type": "FUNCTION", "size": 28, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.0"], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_26", "symbol": "_sceMcCoreReadPage2", "scope": "LIBRARY", "original": ".text"}}}}}, "_sceMcCoreWritePage": {"e0ae2df0c52a0734082ae4979ea59823dad57153": {"f797d110": {"type": "FUNCTION", "size": 440, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.0"], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "sceDbcGetConnection"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_26", "symbol": "scePrintf"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "208": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "220": {"type": "MIPS_HI16", "symbol": "sceMc2SifCallback", "original": ".text"}, "260": {"type": "MIPS_26", "symbol": "memcpy"}, "268": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "292": {"type": "MIPS_26", "symbol": "memset"}, "304": {"type": "MIPS_26", "symbol": "SyncDCache"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "332": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "336": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "340": {"type": "MIPS_26", "symbol": "sceDbcSendData3"}, "344": {"type": "MIPS_LO16", "symbol": "sceMc2SifCallback", "original": ".text"}, "360": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "372": {"type": "MIPS_26", "symbol": "SyncDma", "scope": "LIBRARY", "original": ".text"}}}}}, "_sceMcCoreWriteSameData": {"b9c9594c6b5c070334ea7d666513b2e5112bd0b5": {"6b81c75b": {"type": "FUNCTION", "size": 372, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.0"], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_26", "symbol": "sceDbcGetConnection"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "200": {"type": "MIPS_HI16", "symbol": "sceMc2SifCallback", "original": ".text"}, "240": {"type": "MIPS_26", "symbol": "memset"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "276": {"type": "MIPS_26", "symbol": "sceDbcSendData3"}, "280": {"type": "MIPS_LO16", "symbol": "sceMc2SifCallback", "original": ".text"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "308": {"type": "MIPS_26", "symbol": "SyncDma", "scope": "LIBRARY", "original": ".text"}}}}}, "_sceMcCoreBlockErase": {"4ec930ca6a5bf9650e65c98f7e6de889493e7bdd": {"d06da8d9": {"type": "FUNCTION", "size": 336, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.0"], "sdk": ["2.8.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_26", "symbol": "sceDbcGetConnection"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_26", "symbol": "memset"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "196": {"type": "MIPS_HI16", "symbol": "sceMc2SifCallback", "original": ".text"}, "208": {"type": "MIPS_26", "symbol": "SyncDCache"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "244": {"type": "MIPS_26", "symbol": "sceDbcSendData3"}, "248": {"type": "MIPS_LO16", "symbol": "sceMc2SifCallback", "original": ".text"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "276": {"type": "MIPS_26", "symbol": "SyncDma", "scope": "LIBRARY", "original": ".text"}}}}}, "sceMc2GetDirAllAsync": {"d3b829e09b0ad124a8f66cf72ea5e0892a58760f": {"86cd0eac": {"type": "FUNCTION", "size": 128, "library": "libmc2", "scope": "GLOBAL", "is_interface": false, "versions": ["3.0.0"], "sdk": ["3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "_sceMcCoreCheckSocket", "scope": "LIBRARY"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_26", "symbol": "_sceMcCoreExecSubs", "scope": "LIBRARY"}}}}}}, "libmrpc": {"sceSifMInitRpc": {"9fcf991eabf3efa710db2bd100f2ab82f6066f37": {"c700dc58": {"type": "FUNCTION", "size": 196, "library": "libmrpc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0"], "sdk": ["2.5.5", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_26", "symbol": "DIntr"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": "_request_end", "original": ".text"}, "88": {"type": "MIPS_LO16", "symbol": "_request_end", "original": ".text"}, "104": {"type": "MIPS_26", "symbol": "sceSifAddCmdHandler"}, "112": {"type": "MIPS_26", "symbol": "EIntr"}, "152": {"type": "MIPS_26", "symbol": "sceSifSendCmd"}, "160": {"type": "MIPS_26", "symbol": "sceSifGetSreg"}}}}, "3031e4dbfd034a899c92ff7a10922ec6132caa7a": {"dea5548c": {"type": "FUNCTION", "size": 232, "library": "libmrpc", "scope": "GLOBAL", "is_interface": true, "versions": ["3.1.0"], "sdk": ["3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_26", "symbol": "DIntr"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_HI16", "symbol": "")PS2SDB", 8192}, + std::string_view{R"PS2SDB(, "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "104": {"type": "MIPS_26", "symbol": "sceSifAddCmdHandler"}, "112": {"type": "MIPS_26", "symbol": "EIntr"}, "152": {"type": "MIPS_26", "symbol": "sceSifSendCmd"}, "160": {"type": "MIPS_26", "symbol": "sceSifGetSreg"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "204": {"type": "MIPS_26", "symbol": "sceSifAddRebootNotifyHandler"}}}}}, "sceSifMExitRpc": {"ad519239883ac4b9a4f922906bdcfe8b22f333cd": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libmrpc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0"], "sdk": ["2.5.5", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "fd6c4bc69486c8e22dbc1d32cf96208e60c2d70e": {"270bc7f1": {"type": "FUNCTION", "size": 48, "library": "libmrpc", "scope": "GLOBAL", "is_interface": true, "versions": ["3.1.0"], "sdk": ["3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_26", "symbol": "sceSifRemoveCmdHandler"}, "40": {"type": "MIPS_26", "symbol": "sceSifRemoveRebootNotifyHandler"}}}}}, "_sceRpcGetPacket": {"c8b68a71f6b89c126a6d5ec29f856e07bb2978a0": {"2cd9207a": {"type": "FUNCTION", "size": 168, "library": "libmrpc", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0", "3.1.0"], "sdk": ["2.5.5", "2.7.1", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "DIntr"}, "108": {"type": "MIPS_26", "symbol": "EIntr"}, "136": {"type": "MIPS_26", "symbol": "EIntr"}}}}}, "_sceRpcFreePacket": {"9eb531b872c12ccaf70f9dc9561072fd9b5c90b4": {"00000000": {"type": "FUNCTION", "size": 28, "library": "libmrpc", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0", "3.1.0"], "sdk": ["2.5.5", "2.7.1", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_request_end": {"d7d155bc62d2ea3976d7e4ce8d3ef7e2717286ed": {"6f1441d4": {"type": "FUNCTION", "size": 264, "library": "libmrpc", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0"], "sdk": ["2.5.5", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"136": {"type": "MIPS_26", "symbol": "iSignalSema"}, "176": {"type": "MIPS_26", "symbol": "iSignalSema"}, "200": {"type": "MIPS_26", "symbol": "iSignalSema"}, "224": {"type": "MIPS_26", "symbol": "iSignalSema"}, "232": {"type": "MIPS_26", "symbol": "_sceRpcFreePacket", "original": ".text"}}}}, "85c3970cdc58252033091f86f8c4fea3a78fd331": {"17c5d917": {"type": "FUNCTION", "size": 288, "library": "libmrpc", "scope": "LOCAL", "is_interface": false, "versions": ["3.1.0"], "sdk": ["3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"164": {"type": "MIPS_26", "symbol": "iSignalSema"}, "196": {"type": "MIPS_26", "symbol": "iSignalSema"}, "220": {"type": "MIPS_26", "symbol": "iSignalSema"}, "244": {"type": "MIPS_26", "symbol": "iSignalSema"}, "252": {"type": "MIPS_26", "symbol": "_sceRpcFreePacket", "original": ".text"}}}}}, "sceSifMBindRpc": {"e29c1db97fd54b99b92a9ecc691e39688063bb70": {"46ae2768": {"type": "FUNCTION", "size": 36, "library": "libmrpc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0", "3.1.0"], "sdk": ["2.5.5", "2.7.1", "3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "sceSifMBindRpcParam", "scope": "LIBRARY", "original": ".text"}}}}}, "sceSifMBindRpcParam": {"e918761fa02c707b03c2b30a8eaa5d93029df0cc": {"2a6cf4cf": {"type": "FUNCTION", "size": 428, "library": "libmrpc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0"], "sdk": ["2.5.5", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_26", "symbol": "scePrintf"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_26", "symbol": "CreateSema"}, "120": {"type": "MIPS_26", "symbol": "WaitSema"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_26", "symbol": "_sceRpcGetPacket", "original": ".text"}, "172": {"type": "MIPS_26", "symbol": "DeleteSema"}, "232": {"type": "MIPS_26", "symbol": "CreateSema"}, "252": {"type": "MIPS_26", "symbol": "_sceRpcFreePacket", "original": ".text"}, "260": {"type": "MIPS_26", "symbol": "DeleteSema"}, "300": {"type": "MIPS_26", "symbol": "sceSifSendCmd"}, "316": {"type": "MIPS_26", "symbol": "_sceRpcFreePacket", "original": ".text"}, "324": {"type": "MIPS_26", "symbol": "DeleteSema"}, "332": {"type": "MIPS_26", "symbol": "DeleteSema"}, "348": {"type": "MIPS_26", "symbol": "WaitSema"}, "356": {"type": "MIPS_26", "symbol": "DeleteSema"}, "376": {"type": "MIPS_26", "symbol": "DeleteSema"}}}}, "4ac8f3b8a062bb07621b356d5412c64bf6e5a4b0": {"e7929a25": {"type": "FUNCTION", "size": 464, "library": "libmrpc", "scope": "GLOBAL", "is_interface": true, "versions": ["3.1.0"], "sdk": ["3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_26", "symbol": "scePrintf"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_26", "symbol": "CreateSema"}, "132": {"type": "MIPS_26", "symbol": "WaitSema"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_26", "symbol": "_sceRpcGetPacket", "original": ".text"}, "188": {"type": "MIPS_26", "symbol": "DeleteSema"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "256": {"type": "MIPS_26", "symbol": "CreateSema"}, "280": {"type": "MIPS_26", "symbol": "_sceRpcFreePacket", "original": ".text"}, "292": {"type": "MIPS_26", "symbol": "DeleteSema"}, "328": {"type": "MIPS_26", "symbol": "sceSifSendCmd"}, "344": {"type": "MIPS_26", "symbol": "_sceRpcFreePacket", "original": ".text"}, "352": {"type": "MIPS_26", "symbol": "DeleteSema"}, "364": {"type": "MIPS_26", "symbol": "DeleteSema"}, "380": {"type": "MIPS_26", "symbol": "WaitSema"}, "388": {"type": "MIPS_26", "symbol": "DeleteSema"}, "412": {"type": "MIPS_26", "symbol": "DeleteSema"}}}}}, "sceSifMUnBindRpc": {"ad75e22385d294bd1b1aa5d767caa1f1caf2b885": {"a178a956": {"type": "FUNCTION", "size": 284, "library": "libmrpc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0"], "sdk": ["2.5.5", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_26", "symbol": "scePrintf"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "48": {"type": "MIPS_26", "symbol": "WaitSema"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_26", "symbol": "_sceRpcGetPacket", "original": ".text"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_26", "symbol": "CreateSema"}, "152": {"type": "MIPS_26", "symbol": "_sceRpcFreePacket", "original": ".text"}, "192": {"type": "MIPS_26", "symbol": "sceSifSendCmd"}, "208": {"type": "MIPS_26", "symbol": "_sceRpc)PS2SDB", 8192}, + std::string_view{R"PS2SDB(FreePacket", "original": ".text"}, "216": {"type": "MIPS_26", "symbol": "DeleteSema"}, "232": {"type": "MIPS_26", "symbol": "WaitSema"}, "240": {"type": "MIPS_26", "symbol": "DeleteSema"}, "248": {"type": "MIPS_26", "symbol": "DeleteSema"}}}}, "3ace0478d993b09acf986d71b7fd0a20fbcd3f46": {"d76f97b6": {"type": "FUNCTION", "size": 316, "library": "libmrpc", "scope": "GLOBAL", "is_interface": true, "versions": ["3.1.0"], "sdk": ["3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_26", "symbol": "scePrintf"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "56": {"type": "MIPS_26", "symbol": "WaitSema"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_26", "symbol": "_sceRpcGetPacket", "original": ".text"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_26", "symbol": "CreateSema"}, "172": {"type": "MIPS_26", "symbol": "_sceRpcFreePacket", "original": ".text"}, "208": {"type": "MIPS_26", "symbol": "sceSifSendCmd"}, "224": {"type": "MIPS_26", "symbol": "_sceRpcFreePacket", "original": ".text"}, "232": {"type": "MIPS_26", "symbol": "DeleteSema"}, "248": {"type": "MIPS_26", "symbol": "WaitSema"}, "256": {"type": "MIPS_26", "symbol": "DeleteSema"}, "276": {"type": "MIPS_26", "symbol": "DeleteSema"}}}}}, "sceSifMCallRpc": {"1a07599d40de14573c7d774548dc94d830e6da0d": {"4a39e1fc": {"type": "FUNCTION", "size": 612, "library": "libmrpc", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0"], "sdk": ["2.5.5", "2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"80": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_26", "symbol": "scePrintf"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "100": {"type": "MIPS_26", "symbol": "WaitSema"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "168": {"type": "MIPS_26", "symbol": "scePrintf"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_26", "symbol": "_sceRpcGetPacket", "original": ".text"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "284": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "308": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "324": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "396": {"type": "MIPS_26", "symbol": "sceSifSendCmd"}, "412": {"type": "MIPS_26", "symbol": "_sceRpcFreePacket", "original": ".text"}, "440": {"type": "MIPS_26", "symbol": "CreateSema"}, "460": {"type": "MIPS_26", "symbol": "_sceRpcFreePacket", "original": ".text"}, "504": {"type": "MIPS_26", "symbol": "sceSifSendCmd"}, "520": {"type": "MIPS_26", "symbol": "_sceRpcFreePacket", "original": ".text"}, "528": {"type": "MIPS_26", "symbol": "DeleteSema"}, "544": {"type": "MIPS_26", "symbol": "WaitSema"}, "552": {"type": "MIPS_26", "symbol": "DeleteSema"}}}}, "ab166c1e4d33ef9e610e34fb021ade2625ae9ac4": {"7ceef56a": {"type": "FUNCTION", "size": 624, "library": "libmrpc", "scope": "GLOBAL", "is_interface": true, "versions": ["3.1.0"], "sdk": ["3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"80": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_26", "symbol": "scePrintf"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "100": {"type": "MIPS_26", "symbol": "WaitSema"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "168": {"type": "MIPS_26", "symbol": "scePrintf"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_26", "symbol": "_sceRpcGetPacket", "original": ".text"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "288": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "312": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "328": {"type": "MIPS_26", "symbol": "sceSifWriteBackDCache"}, "344": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "400": {"type": "MIPS_26", "symbol": "sceSifSendCmd"}, "416": {"type": "MIPS_26", "symbol": "_sceRpcFreePacket", "original": ".text"}, "436": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "452": {"type": "MIPS_26", "symbol": "CreateSema"}, "472": {"type": "MIPS_26", "symbol": "_sceRpcFreePacket", "original": ".text"}, "516": {"type": "MIPS_26", "symbol": "sceSifSendCmd"}, "532": {"type": "MIPS_26", "symbol": "_sceRpcFreePacket", "original": ".text"}, "540": {"type": "MIPS_26", "symbol": "DeleteSema"}, "556": {"type": "MIPS_26", "symbol": "WaitSema"}, "564": {"type": "MIPS_26", "symbol": "DeleteSema"}}}}}, "_iopnotify": {"21ba83308cf87059ab54d0100492a439fbb08180": {"796d03a3": {"type": "FUNCTION", "size": 36, "library": "libmrpc", "scope": "LOCAL", "is_interface": false, "versions": ["3.1.0"], "sdk": ["3.1.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_26", "symbol": "sceSifSetSreg"}}}}}}, "libinsck": {"sceInsockInetAddr": {"e27816bf983669b2bf774deb23e6ac0ea5935f3f": {"238480be": {"type": "FUNCTION", "size": 44, "library": "libinsck", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceInsockInetAton", "scope": "LIBRARY", "original": ".text"}}}}}, "sceInsockInetAton": {"f3045f9a72854eaf5989eba2622305735152252f": {"e1d8f693": {"type": "FUNCTION", "size": 528, "library": "libinsck", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.4.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"80": {"type": "MIPS_26", "symbol": "__errno"}, "100": {"type": "MIPS_26", "symbol": "strtoul"}, "112": {"type": "MIPS_26", "symbol": "__errno"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "460": {"type": "MIPS_26", "symbol": "sceInsockHtonl", "scope": "LIBRARY"}}}}}}, "libatok": {"sceAtokExit": {"d31bc39500318b2cead7314cd419f84294ae1015": {"19e6e84c": {"type": "FUNCTION", "size": 160, "library": "libatok", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.7"], "sdk": ["2.5.7"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_26", "symbol": "sceClose"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceAtokGetConfig": {"af0942d5bbaaddd00eff622b96f47f9d50c97392": {"8a08c98e": {"type": "FUNCTION", "size": 1)PS2SDB", 8192}, + std::string_view{R"PS2SDB(040, "library": "libatok", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.7"], "sdk": ["2.5.7"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_26", "symbol": "sceAtokCmd", "scope": "LIBRARY", "original": ".text"}, "144": {"type": "MIPS_26", "symbol": "sceAtokCmd", "scope": "LIBRARY", "original": ".text"}, "176": {"type": "MIPS_26", "symbol": "sceAtokCmd", "scope": "LIBRARY", "original": ".text"}, "208": {"type": "MIPS_26", "symbol": "sceAtokCmd", "scope": "LIBRARY", "original": ".text"}, "240": {"type": "MIPS_26", "symbol": "sceAtokCmd", "scope": "LIBRARY", "original": ".text"}, "284": {"type": "MIPS_26", "symbol": "sceAtokCmd", "scope": "LIBRARY", "original": ".text"}, "296": {"type": "MIPS_26", "symbol": "strcpy"}, "336": {"type": "MIPS_26", "symbol": "sceAtokCmd", "scope": "LIBRARY", "original": ".text"}, "348": {"type": "MIPS_26", "symbol": "strcpy"}, "376": {"type": "MIPS_26", "symbol": "sceAtokCmd", "scope": "LIBRARY", "original": ".text"}, "428": {"type": "MIPS_26", "symbol": "sceAtokCmd", "scope": "LIBRARY", "original": ".text"}, "460": {"type": "MIPS_26", "symbol": "sceAtokCmd", "scope": "LIBRARY", "original": ".text"}, "496": {"type": "MIPS_26", "symbol": "sceAtokCmd", "scope": "LIBRARY", "original": ".text"}, "532": {"type": "MIPS_26", "symbol": "sceAtokCmd", "scope": "LIBRARY", "original": ".text"}, "568": {"type": "MIPS_26", "symbol": "sceAtokCmd", "scope": "LIBRARY", "original": ".text"}, "604": {"type": "MIPS_26", "symbol": "sceAtokCmd", "scope": "LIBRARY", "original": ".text"}, "640": {"type": "MIPS_26", "symbol": "sceAtokCmd", "scope": "LIBRARY", "original": ".text"}, "676": {"type": "MIPS_26", "symbol": "sceAtokCmd", "scope": "LIBRARY", "original": ".text"}, "712": {"type": "MIPS_26", "symbol": "sceAtokCmd", "scope": "LIBRARY", "original": ".text"}, "748": {"type": "MIPS_26", "symbol": "sceAtokCmd", "scope": "LIBRARY", "original": ".text"}, "784": {"type": "MIPS_26", "symbol": "sceAtokCmd", "scope": "LIBRARY", "original": ".text"}, "820": {"type": "MIPS_26", "symbol": "sceAtokCmd", "scope": "LIBRARY", "original": ".text"}, "856": {"type": "MIPS_26", "symbol": "sceAtokCmd", "scope": "LIBRARY", "original": ".text"}, "892": {"type": "MIPS_26", "symbol": "sceAtokCmd", "scope": "LIBRARY", "original": ".text"}, "928": {"type": "MIPS_26", "symbol": "sceAtokCmd", "scope": "LIBRARY", "original": ".text"}, "964": {"type": "MIPS_26", "symbol": "sceAtokCmd", "scope": "LIBRARY", "original": ".text"}, "1000": {"type": "MIPS_26", "symbol": "sceAtokCmd", "scope": "LIBRARY", "original": ".text"}}}}}, "sceAtokSetConfig": {"52492322df745fe87ec469101fff7906c960fd25": {"da7fc732": {"type": "FUNCTION", "size": 992, "library": "libatok", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.7"], "sdk": ["2.5.7"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_26", "symbol": "sceAtokCmd", "scope": "LIBRARY", "original": ".text"}, "140": {"type": "MIPS_26", "symbol": "sceAtokCmd", "scope": "LIBRARY", "original": ".text"}, "168": {"type": "MIPS_26", "symbol": "sceAtokCmd", "scope": "LIBRARY", "original": ".text"}, "196": {"type": "MIPS_26", "symbol": "sceAtokCmd", "scope": "LIBRARY", "original": ".text"}, "224": {"type": "MIPS_26", "symbol": "sceAtokCmd", "scope": "LIBRARY", "original": ".text"}, "260": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "280": {"type": "MIPS_26", "symbol": "sceAtokCmd", "scope": "LIBRARY", "original": ".text"}, "316": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "336": {"type": "MIPS_26", "symbol": "sceAtokCmd", "scope": "LIBRARY", "original": ".text"}, "364": {"type": "MIPS_26", "symbol": "sceAtokCmd", "scope": "LIBRARY", "original": ".text"}, "420": {"type": "MIPS_26", "symbol": "sceAtokCmd", "scope": "LIBRARY", "original": ".text"}, "448": {"type": "MIPS_26", "symbol": "sceAtokCmd", "scope": "LIBRARY", "original": ".text"}, "476": {"type": "MIPS_26", "symbol": "sceAtokCmd", "scope": "LIBRARY", "original": ".text"}, "508": {"type": "MIPS_26", "symbol": "sceAtokCmd", "scope": "LIBRARY", "original": ".text"}, "540": {"type": "MIPS_26", "symbol": "sceAtokCmd", "scope": "LIBRARY", "original": ".text"}, "572": {"type": "MIPS_26", "symbol": "sceAtokCmd", "scope": "LIBRARY", "original": ".text"}, "604": {"type": "MIPS_26", "symbol": "sceAtokCmd", "scope": "LIBRARY", "original": ".text"}, "636": {"type": "MIPS_26", "symbol": "sceAtokCmd", "scope": "LIBRARY", "original": ".text"}, "668": {"type": "MIPS_26", "symbol": "sceAtokCmd", "scope": "LIBRARY", "original": ".text"}, "700": {"type": "MIPS_26", "symbol": "sceAtokCmd", "scope": "LIBRARY", "original": ".text"}, "732": {"type": "MIPS_26", "symbol": "sceAtokCmd", "scope": "LIBRARY", "original": ".text"}, "764": {"type": "MIPS_26", "symbol": "sceAtokCmd", "scope": "LIBRARY", "original": ".text"}, "796": {"type": "MIPS_26", "symbol": "sceAtokCmd", "scope": "LIBRARY", "original": ".text"}, "828": {"type": "MIPS_26", "symbol": "sceAtokCmd", "scope": "LIBRARY", "original": ".text"}, "860": {"type": "MIPS_26", "symbol": "sceAtokCmd", "scope": "LIBRARY", "original": ".text"}, "892": {"type": "MIPS_26", "symbol": "sceAtokCmd", "scope": "LIBRARY", "original": ".text"}, "924": {"type": "MIPS_26", "symbol": "sceAtokCmd", "scope": "LIBRARY", "original": ".text"}, "956": {"type": "MIPS_26", "symbol": "sceAtokCmd", "scope": "LIBRARY", "original": ".text"}}}}}, "sceAtokCmd": {"74920cec284a9191941e8b80fdb50bf2c460ae34": {"b3f3108e": {"type": "FUNCTION", "size": 64, "library": "libatok", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.7"], "sdk": ["2.5.7"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceAtokEditConv": {"ed3f48a25e4fbc36b5cd8cb57ca237c9d051504d": {"3cf607b4": {"type": "FUNCTION", "size": 316, "library": "libatok", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.7"], "sdk": ["2.5.7"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_26", "symbol": "sceAtokCmd", "scope": "LIBRARY", "original": ".text"}, "140": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "176": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "200": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceAtokKanjiOn": {"7d31a0c43398d6a5832a2d38d7e6bba905fbcec5": {"c13eceb7": {"type": "FUNCTION", "size": 64, "library": "libatok", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.7"], "sdk": ["2.5.7"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_26", "symbol": "sceAtokCmd", "scope": "LIBRARY", "original": ".text"}}}}}, "sceAtokKanjiOff": {"ead3883d2226e1d127a7cb31af7c5b4dd5faca9d": {"c13eceb7": {"type": "FUNCTION", "size": 64, "library": "libatok", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.7"], "sdk": ["2.5.7"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_26", "symbol": "sceAtokCmd", "scope": "LIBRARY", "original": ".text"}}}}}, "sceAtokUndoClear": {"266cb90b6739fc90d8934805816d9c7930a41f09": {"c13eceb7": {"type": "FUNCTION", "size": 64, "library": "libatok", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.7"], "sdk": ["2.5.7"], "compiler_versions": ["2.4.1.01")PS2SDB", 8192}, + std::string_view{R"PS2SDB(], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_26", "symbol": "sceAtokCmd", "scope": "LIBRARY", "original": ".text"}}}}}, "sceAtokReset": {"dcd10f0cf38078d33433eb1e9b6367b89a23893d": {"c13eceb7": {"type": "FUNCTION", "size": 64, "library": "libatok", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.7"], "sdk": ["2.5.7"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_26", "symbol": "sceAtokCmd", "scope": "LIBRARY", "original": ".text"}}}}}, "sceAtokConvAll": {"255b965199e27c366e8322065e9b7a3c7f0ce2b8": {"f18ff778": {"type": "FUNCTION", "size": 168, "library": "libatok", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.7"], "sdk": ["2.5.7"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "116": {"type": "MIPS_26", "symbol": "strcpy"}, "136": {"type": "MIPS_26", "symbol": "sceAtokCmd", "scope": "LIBRARY", "original": ".text"}}}}}, "sceAtokLearningLoad": {"90edda2cdd93d01642a213dc788316104eeebe56": {"c13eceb7": {"type": "FUNCTION", "size": 64, "library": "libatok", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.7"], "sdk": ["2.5.7"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_26", "symbol": "sceAtokCmd", "scope": "LIBRARY", "original": ".text"}}}}}, "sceAtokLearningSave": {"ff26ab25c0002b74d84f0b09c7f166e535af2ca6": {"c13eceb7": {"type": "FUNCTION", "size": 64, "library": "libatok", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.7"], "sdk": ["2.5.7"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_26", "symbol": "sceAtokCmd", "scope": "LIBRARY", "original": ".text"}}}}}, "sceAtokDicInfo": {"3492fb34eaa79d412f29b31d1c678dfc601fa1b3": {"74c649c4": {"type": "FUNCTION", "size": 260, "library": "libatok", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.7"], "sdk": ["2.5.7"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_26", "symbol": "sceAtokCmd", "scope": "LIBRARY", "original": ".text"}, "216": {"type": "MIPS_26", "symbol": "strcpy"}}}}}, "sceAtokDefDicNo": {"a99c7ca9009d903bfbbb1ca58e21f7dc61330dee": {"c13eceb7": {"type": "FUNCTION", "size": 64, "library": "libatok", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.7"], "sdk": ["2.5.7"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_26", "symbol": "sceAtokCmd", "scope": "LIBRARY", "original": ".text"}}}}}, "sceAtokDicDelWord": {"aa235a23be8eca59069c708a9aa18e6e46918459": {"5654baf3": {"type": "FUNCTION", "size": 256, "library": "libatok", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.7"], "sdk": ["2.5.7"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_26", "symbol": "strlen"}, "116": {"type": "MIPS_26", "symbol": "strcpy"}, "132": {"type": "MIPS_26", "symbol": "strlen"}, "168": {"type": "MIPS_26", "symbol": "strcpy"}, "212": {"type": "MIPS_26", "symbol": "sceAtokCmd", "scope": "LIBRARY", "original": ".text"}}}}}, "sceAtokDicRegWord": {"255aca06b0939d3b1f50beda5437b4541158c04c": {"acf584b5": {"type": "FUNCTION", "size": 208, "library": "libatok", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.7"], "sdk": ["2.5.7"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_26", "symbol": "strlen"}, "100": {"type": "MIPS_26", "symbol": "strcpy"}, "116": {"type": "MIPS_26", "symbol": "strlen"}, "152": {"type": "MIPS_26", "symbol": "strcpy"}, "172": {"type": "MIPS_26", "symbol": "sceAtokCmd", "scope": "LIBRARY", "original": ".text"}}}}}, "sceAtokGetKanjiState": {"09cac337f0973fa8b084ed591a866a472a4b26f7": {"b0f52bf1": {"type": "FUNCTION", "size": 44, "library": "libatok", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.7"], "sdk": ["2.5.7"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceAtokGetInputState": {"a55a0ebcf2fdfdfc7afad2a163913403f81ca4ac": {"b0f52bf1": {"type": "FUNCTION", "size": 44, "library": "libatok", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.7"], "sdk": ["2.5.7"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceAtokGetErrorInfo": {"4da4c5fbc556097c15d30c1c2f438ee1fcde6c82": {"b0f52bf1": {"type": "FUNCTION", "size": 44, "library": "libatok", "scope": "GLOBAL", "is_interface": false, "versions": ["2.5.7"], "sdk": ["2.5.7"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceAtokGetFocusClauseTop": {"6500d878cd31a77ee2acd02e738515e2a0060993": {"b0f52bf1": {"type": "FUNCTION", "size": 44, "library": "libatok", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.7"], "sdk": ["2.5.7"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceAtokGetFocusClauseLen": {"5f3016ddb3cd6f569b247bef831439db096df807": {"b0f52bf1": {"type": "FUNCTION", "size": 44, "library": "libatok", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.7"], "sdk": ["2.5.7"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceAtokGetFocusClauseIndex": {"4499fdba766e7edf8ed5ef214a867f58d49cd449": {"b0f52bf1": {"type": "FUNCTION", "size": 128, "library": "libatok", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.7"], "sdk": ["2.5.7"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceAtokGetCandidateCount": {"54c6ed7c15ba74001bf5211d7faae966d1a20571": {"b0f52bf1": {"type": "FUNCTION", "size": 44, "library": "libatok", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.7"], "sdk": ["2.5.7"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceAtokGetCurrentCandidateIndex": {"b43e8a9869bb2ef9bfb3f4f6075e25b144e0bb0a": {"b0f52bf1": {"type": "FUNCTION", "size": 44, "library": "libatok", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.7"], "sdk": ["2.5.7"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceAtokFlushConverted": {"3e4f4da)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ec2da9cd11dfbb81f9fdb9d6deb61c2e1": {"b0f52bf1": {"type": "FUNCTION", "size": 48, "library": "libatok", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.7"], "sdk": ["2.5.7"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceAtokGetConvertedStr": {"57c0980e2fc22556b15b89ee764278f9e7534466": {"1694af00": {"type": "FUNCTION", "size": 124, "library": "libatok", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.7"], "sdk": ["2.5.7"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_26", "symbol": "strncpy"}}}}}, "sceAtokGetConvertedReadStr": {"e082362e25b85011d92fa2cfc2aeb257f5ed9d61": {"1694af00": {"type": "FUNCTION", "size": 124, "library": "libatok", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.7"], "sdk": ["2.5.7"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_26", "symbol": "strncpy"}}}}}, "sceAtokGetConvertingStr": {"2661a5a4301b0602a1c76f864067ea29782338bb": {"1694af00": {"type": "FUNCTION", "size": 124, "library": "libatok", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.7"], "sdk": ["2.5.7"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_26", "symbol": "strncpy"}}}}}, "sceAtokGetConvertingReadStr": {"9253c26f09a487db316f431ca65db96ca5ec0e86": {"1694af00": {"type": "FUNCTION", "size": 124, "library": "libatok", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.7"], "sdk": ["2.5.7"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_26", "symbol": "strncpy"}}}}}, "sceAtokGetConvertingClauseCount": {"d9ca7cbc4dbcdac4a363b0b4ece65ef23cadffa5": {"b0f52bf1": {"type": "FUNCTION", "size": 44, "library": "libatok", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.7"], "sdk": ["2.5.7"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceAtokGetConvertingClause": {"b1c9bcad2d2c6c986ff3e77c59589873c1ace9ad": {"e99d6668": {"type": "FUNCTION", "size": 184, "library": "libatok", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.7"], "sdk": ["2.5.7"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "strncpy"}}}}}, "sceAtokGetCandidateListSize": {"d5f6e0ecf108f697a5c7b85c5542826b73909d87": {"50c5993e": {"type": "FUNCTION", "size": 88, "library": "libatok", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.7"], "sdk": ["2.5.7"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_26", "symbol": "sceAtokCmd", "scope": "LIBRARY", "original": ".text"}}}}}, "sceAtokGetCandidateList": {"8ba640a7c88ccf4d8cecef8a4769e2a7ff17f48a": {"d8b519a1": {"type": "FUNCTION", "size": 160, "library": "libatok", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.7"], "sdk": ["2.5.7"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_26", "symbol": "sceAtokCmd", "scope": "LIBRARY", "original": ".text"}, "124": {"type": "MIPS_26", "symbol": "sceAtokCmd", "scope": "LIBRARY", "original": ".text"}}}}}}, "liblout": {"initZeroBuf": {"10ce5bf8a60150b2a8ec8cc96e5dd81351a86b2b": {"d6ed632d": {"type": "FUNCTION", "size": 60, "library": "liblout", "scope": "LOCAL", "is_interface": false, "versions": ["2.4.0"], "sdk": ["2.4.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "clrIopBuf": {"efcf5fe9e0b7b7eb262cc917d06011ab73642a60": {"5efc450e": {"type": "FUNCTION", "size": 192, "library": "liblout", "scope": "LOCAL", "is_interface": false, "versions": ["2.4.0"], "sdk": ["2.4.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "FlushCache"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_26", "symbol": "sceSifSetDma"}, "128": {"type": "MIPS_26", "symbol": "sceSifDmaStat"}}}}}, "sceLout_Init": {"2b7149c0bfdca902089951391b7e480714cb2c59": {"71c73711": {"type": "FUNCTION", "size": 460, "library": "liblout", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.0"], "sdk": ["2.4.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"184": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "208": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "300": {"type": "MIPS_26", "symbol": "initZeroBuf", "scope": "LIBRARY", "original": ".text"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "320": {"type": "MIPS_26", "symbol": "clrIopBuf", "scope": "LIBRARY", "original": ".text"}, "332": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "344": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "348": {"type": "MIPS_26", "symbol": "clrIopBuf", "scope": "LIBRARY", "original": ".text"}, "360": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "376": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "396": {"type": "MIPS_26", "symbol": "sceSdRemote"}, "428": {"type": "MIPS_26", "symbol": "sceSdRemote"}}}}}, "setupDma": {"bd0bd2cba226b9a88b1b5be14933efa933c78a4a": {"00000000": {"type": "FUNCTION", "size": 72, "library": "liblout", "scope": "LOCAL", "is_interface": false, "versions": ["2.4.0"], "sdk": ["2.4.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceLout_ATick": {"c93011eccfa76e94684a45b97548a75042a725e2": {"9e72c7ab": {"type": "FUNCTION", "size": 900, "library": "liblout", "scope": "GLOBAL", "is_interface": true, "versions": ["2.4.0"], "sdk": ["2.4.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_26", "symbol": "sceSdRemote"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "256": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "260": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "284": {"type": "MIPS_26", "symbol": "sceSifD)PS2SDB", 8192}, + std::string_view{R"PS2SDB(maStat"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "320": {"type": "MIPS_26", "symbol": "FlushCache"}, "328": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "364": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "368": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "448": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "460": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "536": {"type": "MIPS_26", "symbol": "sceSifSetDma"}, "544": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "552": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "560": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "568": {"type": "MIPS_26", "symbol": "sceSifDmaStat"}, "572": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "580": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "584": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "592": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "604": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "612": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "628": {"type": "MIPS_26", "symbol": "setupDma", "scope": "LIBRARY", "original": ".text"}, "700": {"type": "MIPS_26", "symbol": "sceSifSetDma"}, "708": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "716": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "800": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "804": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "816": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "824": {"type": "MIPS_26", "symbol": "sceSifDmaStat"}, "828": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "836": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "840": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "844": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}}, "libhip": {"_hip_micro_err": {"1ace9adbfe680831d3937760b248141e983b67a7": {"273b4da8": {"type": "FUNCTION", "size": 48, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": "sceHiErrState"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "sceHiErrState"}}}}, "ed9f0d68511b07924d73902bdb45ff58f7ec8844": {"81376de0": {"type": "FUNCTION", "size": 76, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceHiGetErrStatePtr"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "MicroMakeCODEPacket": {"e921dc1fc3a76e4beb9e9453d3a8f18541504a87": {"72c093a0": {"type": "FUNCTION", "size": 148, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "sceHiDMAMake_ChainStart"}, "44": {"type": "MIPS_26", "symbol": "sceHiDMAMake_CallPtr"}, "64": {"type": "MIPS_26", "symbol": "sceHiDMAMake_LoadPtr"}, "84": {"type": "MIPS_26", "symbol": "sceHiDMAInit_DBuf"}, "100": {"type": "MIPS_26", "symbol": "sceHiDMAMake_ChainEnd"}}}}}, "MicroMakeDATAPacket": {"c2a878d079469971346ce61d00a8941cd2767363": {"ad825aad": {"type": "FUNCTION", "size": 88, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceHiDMAMake_ChainStart"}, "32": {"type": "MIPS_26", "symbol": "sceHiDMAMake_LoadPtr"}, "48": {"type": "MIPS_26", "symbol": "sceHiDMAMake_ChainEnd"}}}}}, "micro_set_data": {"949beb0788c1955390f294d8f88a618e80ddb188": {"8c6ff423": {"type": "FUNCTION", "size": 280, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "sceHiGsGeneralStatus"}}}}}, "sceHiPlugMicro": {"7cd776a17478a39873914dc90d3eb8673fdcaf18": {"5ff24845": {"type": "FUNCTION", "size": 864, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"100": {"type": "MIPS_26", "symbol": "sceHiPlugMicroGetData", "scope": "LIBRARY"}, "120": {"type": "MIPS_26", "symbol": "sceHiMemAlign"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "188": {"type": "MIPS_26", "symbol": "sceHiMemAlloc"}, "208": {"type": "MIPS_26", "symbol": "sceHiMemAlloc"}, "224": {"type": "MIPS_26", "symbol": "_hip_micro_err", "scope": "LIBRARY", "original": ".text"}, "344": {"type": "MIPS_26", "symbol": "MicroMakeCODEPacket", "scope": "LIBRARY", "original": ".text"}, "392": {"type": "MIPS_26", "symbol": "MicroMakeDATAPacket", "scope": "LIBRARY", "original": ".text"}, "416": {"type": "MIPS_26", "symbol": "_hip_micro_err", "scope": "LIBRARY", "original": ".text"}, "480": {"type": "MIPS_26", "symbol": "sceHiPlugMicroGetData", "scope": "LIBRARY"}, "500": {"type": "MIPS_26", "symbol": "_hip_micro_err", "scope": "LIBRARY", "original": ".text"}, "560": {"type": "MIPS_26", "symbol": "micro_set_data", "scope": "LIBRARY", "original": ".text"}, "608": {"type": "MIPS_26", "symbol": "_hip_micro_err", "scope": "LIBRARY", "original": ".text"}, "656": {"type": "MIPS_26", "symbol": "sceHiDMARegist"}, "664": {"type": "MIPS_26", "symbol": "sceHiDMARegist"}, "692": {"type": "MIPS_26", "symbol": "_hip_micro_err", "scope": "LIBRARY", "original": ".text"}, "708": {"type": "MIPS_26", "symbol": "_hip_micro_err", "scope": "LIBRARY", "original": ".text"}, "748": {"type": "MIPS_26", "symbol": "sceHiDMADel_Chain"}, "780": {"type": "MIPS_26", "symbol": "sceHiDMADel_Chain"}, "792": {"type": "MIPS_26", "symbol": "sceHiMemFree"}, "804": {"type": "MIPS_26", "symbol": "sceHiMemFree"}, "812": {"type": "MIPS_26", "symbol": "sceHiMemFree"}}}}}, "_hip_tex2d_err": {"1ace9adbfe680831d3937760b248141e983b67a7": {"273b4da8": {"type": "FUNCTION", "size": 48, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": "sceHiErrState"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "sceHiErrState"}}}}, "ed9f0d68511b07924d73902bdb45ff58f7ec8844": {"81376de0": {"type": "FUNCTION", "size": 76, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "3.0.0", "3.0.2"], "sdk":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( ["2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceHiGetErrStatePtr"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "getPackedData": {"8ecd7761be5090c77a4c3af6957929dc0b67cbca": {"00000000": {"type": "FUNCTION", "size": 80, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "Vu1TexInit": {"74bd78b75f0fb9e006dbc3b6dadf06f53492ec02": {"0995af28": {"type": "FUNCTION", "size": 1884, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"72": {"type": "MIPS_26", "symbol": "memset"}, "104": {"type": "MIPS_26", "symbol": "sceHiMemAlign"}, "132": {"type": "MIPS_26", "symbol": "_hip_tex2d_err", "scope": "LIBRARY", "original": ".text"}, "180": {"type": "MIPS_26", "symbol": "_hip_tex2d_err", "scope": "LIBRARY", "original": ".text"}, "196": {"type": "MIPS_26", "symbol": "_hip_tex2d_err", "scope": "LIBRARY", "original": ".text"}, "240": {"type": "MIPS_26", "symbol": "sceHiPlugTex2DGetData", "scope": "LIBRARY"}, "292": {"type": "MIPS_26", "symbol": "sceHiPlugTex2DGetEnv", "scope": "LIBRARY"}, "432": {"type": "MIPS_26", "symbol": "sceHiGsPageSize"}, "604": {"type": "MIPS_26", "symbol": "sceHiGsBlockSize"}, "748": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "756": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "780": {"type": "MIPS_26", "symbol": "getPackedData", "original": ".text"}, "952": {"type": "MIPS_26", "symbol": "getPackedData", "original": ".text"}, "1032": {"type": "MIPS_26", "symbol": "getPackedData", "original": ".text"}, "1160": {"type": "MIPS_26", "symbol": "getPackedData", "original": ".text"}, "1240": {"type": "MIPS_26", "symbol": "getPackedData", "original": ".text"}, "1360": {"type": "MIPS_26", "symbol": "getPackedData", "original": ".text"}}}}}, "Vu1ResidentTextureMakePacket": {"f186ab228660326989d95382c24e4e593b6aabd0": {"fe7b5a3d": {"type": "FUNCTION", "size": 320, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "sceHiDMAMake_ChainStart"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_26", "symbol": "sceHiPlugTex2DGetData", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "_hip_tex2d_err", "scope": "LIBRARY", "original": ".text"}, "124": {"type": "MIPS_26", "symbol": "sceHiPlugTex2DGetTexel", "scope": "LIBRARY"}, "136": {"type": "MIPS_26", "symbol": "sceHiPlugTex2DGetClut", "scope": "LIBRARY"}, "144": {"type": "MIPS_26", "symbol": "sceHiDMAMake_WaitMicro"}, "156": {"type": "MIPS_26", "symbol": "sceHiDMAMake_LoadGS"}, "168": {"type": "MIPS_26", "symbol": "sceHiDMAMake_LoadGS"}, "180": {"type": "MIPS_26", "symbol": "sceHiDMAMake_LoadGS"}, "200": {"type": "MIPS_26", "symbol": "sceHiDMAMake_LoadGS"}, "212": {"type": "MIPS_26", "symbol": "sceHiDMAMake_LoadGS"}, "224": {"type": "MIPS_26", "symbol": "sceHiDMAMake_LoadGS"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "236": {"type": "MIPS_26", "symbol": "sceHiDMAMake_LoadGS"}, "264": {"type": "MIPS_26", "symbol": "sceHiDMAMake_ChainEnd"}}}}}, "sceHiPlugTex2D": {"c5b08228fb62a9c615b21e62933188d2d8fe2468": {"9780a9b7": {"type": "FUNCTION", "size": 532, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"92": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "100": {"type": "MIPS_26", "symbol": "sceHiPlugTex2DGetHead", "scope": "LIBRARY"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "120": {"type": "MIPS_26", "symbol": "sceHiPlugTex2DGetHead", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_26", "symbol": "sceHiMemAlign"}, "156": {"type": "MIPS_26", "symbol": "_hip_tex2d_err", "scope": "LIBRARY", "original": ".text"}, "232": {"type": "MIPS_26", "symbol": "sceHiPlugTex2DSize", "scope": "LIBRARY", "original": ".text"}, "244": {"type": "MIPS_26", "symbol": "sceHiGsMemAlloc"}, "264": {"type": "MIPS_26", "symbol": "_hip_tex2d_err", "scope": "LIBRARY", "original": ".text"}, "292": {"type": "MIPS_26", "symbol": "Vu1TexInit", "scope": "LIBRARY", "original": ".text"}, "312": {"type": "MIPS_26", "symbol": "Vu1ResidentTextureMakePacket", "scope": "LIBRARY", "original": ".text"}, "360": {"type": "MIPS_26", "symbol": "sceHiDMARegist"}, "388": {"type": "MIPS_26", "symbol": "sceHiDMARegist"}, "416": {"type": "MIPS_26", "symbol": "_hip_tex2d_err", "scope": "LIBRARY", "original": ".text"}, "432": {"type": "MIPS_26", "symbol": "sceHiDMADel_Chain"}, "452": {"type": "MIPS_26", "symbol": "sceHiGsMemFree"}, "472": {"type": "MIPS_26", "symbol": "sceHiMemFree"}, "480": {"type": "MIPS_26", "symbol": "sceHiMemFree"}}}}}, "sceHiPlugTex2DSize": {"382581885cc69f920d7ccd07e09dc82595fda65b": {"2dd41445": {"type": "FUNCTION", "size": 272, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_26", "symbol": "sceHiPlugTex2DGetHead", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "_hip_tex2d_err", "scope": "LIBRARY", "original": ".text"}, "68": {"type": "MIPS_26", "symbol": "_hip_tex2d_err", "scope": "LIBRARY", "original": ".text"}, "104": {"type": "MIPS_26", "symbol": "sceHiPlugTex2DGetData", "scope": "LIBRARY"}, "160": {"type": "MIPS_26", "symbol": "sceHiGsPageSize"}, "208": {"type": "MIPS_26", "symbol": "sceHiGsBlockSize"}}}}}, "_hip_shape_err": {"1ace9adbfe680831d3937760b248141e983b67a7": {"273b4da8": {"type": "FUNCTION", "size": 48, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": "sceHiErrState"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "sceHiErrState"}}}}, "ed9f0d68511b07924d73902bdb45ff58f7ec8844": {"81376de0": {"type": "FUNCTION", "size": 76, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceHiGetErrStatePtr"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "Vumem1SetParam": {"6769e22ebd361b7f91466cb08a13c77dfc9430)PS2SDB", 8192}, + std::string_view{R"PS2SDB(57": {"a0932298": {"type": "FUNCTION", "size": 36, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_26", "symbol": "Vumem1Reset", "scope": "LIBRARY", "original": ".text"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "Vumem1Reset": {"36234343c6dee63844a36d687f9598eec45cec5a": {"0198c55d": {"type": "FUNCTION", "size": 68, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "Vumem1CheckRest": {"003e7077028e5037f9ac361dbb933c8cf79b1236": {"92dd7448": {"type": "FUNCTION", "size": 40, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "Vumem1Rest": {"28bef4ce6cc9df7f6864133ea3da3b82b2e4e2f0": {"d28fd339": {"type": "FUNCTION", "size": 60, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "Vumem1ISize": {"ceaacd8dbc6550567edb1845aa0d5c1d3047b02c": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "Vumem1GetIptr": {"e1b792b4a67f229891bdfa1d4f4314ad49b9bb14": {"7eecb0df": {"type": "FUNCTION", "size": 116, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "Vumem1CheckRest", "scope": "LIBRARY", "original": ".text"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "Vumem1GetOptr": {"055d62faba46f1f499bff76d2922f515931279ff": {"85e113e1": {"type": "FUNCTION", "size": 120, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_26", "symbol": "Vumem1CheckRest", "scope": "LIBRARY", "original": ".text"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "ShapeGetGiftag": {"c552d165dbc6ab051db8d6cb1ad7ca90d6a1787d": {"03ba4492": {"type": "FUNCTION", "size": 228, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "sceHiGsGeneralStatus"}}}}}, "ShapeMakeVertexPacket": {"dbb81c91d32af3d625484b8f0bb7f99689f7cb39": {"fb6594c5": {"type": "FUNCTION", "size": 404, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "sceHiPlugShapeGetGeometryVertex", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "sceHiPlugShapeGetGeometryNormal", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "sceHiPlugShapeGetGeometryST", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "sceHiPlugShapeGetGeometryColor", "scope": "LIBRARY"}, "136": {"type": "MIPS_26", "symbol": "_hip_shape_err", "scope": "LIBRARY", "original": ".text"}, "152": {"type": "MIPS_26", "symbol": "Vumem1GetIptr", "scope": "LIBRARY", "original": ".text"}, "180": {"type": "MIPS_26", "symbol": "_hip_shape_err", "scope": "LIBRARY", "original": ".text"}, "208": {"type": "MIPS_26", "symbol": "sceHiDMAMake_LoadStep"}, "244": {"type": "MIPS_26", "symbol": "sceHiDMAMake_LoadStep"}, "280": {"type": "MIPS_26", "symbol": "sceHiDMAMake_LoadStep"}, "316": {"type": "MIPS_26", "symbol": "sceHiDMAMake_LoadStep"}, "344": {"type": "MIPS_26", "symbol": "sceHiDMAMake_ContinueMicro"}}}}}, "ShapeMakeVertexGiftag": {"4cd8bbca9b50fee5b55ac4c56a22053cd0271c04": {"154fe971": {"type": "FUNCTION", "size": 168, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.)PS2SDB", 8192}, + std::string_view{R"PS2SDB(2"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "ShapeGetGiftag", "scope": "LIBRARY", "original": ".text"}, "52": {"type": "MIPS_26", "symbol": "Vumem1GetIptr", "scope": "LIBRARY", "original": ".text"}, "80": {"type": "MIPS_26", "symbol": "_hip_shape_err", "scope": "LIBRARY", "original": ".text"}, "96": {"type": "MIPS_26", "symbol": "sceHiDMAMake_LumpStart"}, "112": {"type": "MIPS_26", "symbol": "sceHiDMAMake_Lump"}, "128": {"type": "MIPS_26", "symbol": "sceHiDMAMake_Lump"}, "144": {"type": "MIPS_26", "symbol": "sceHiDMAMake_LumpEnd"}}}}}, "ShapeMakeExceptionTriFan": {"51c998d4b2f33305bc0eafab88c17c909ebb6346": {"8bd01027": {"type": "FUNCTION", "size": 296, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "sceHiPlugShapeGetGeometryVertex", "scope": "LIBRARY"}, "48": {"type": "MIPS_26", "symbol": "sceHiPlugShapeGetGeometryNormal", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "sceHiPlugShapeGetGeometryST", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "sceHiPlugShapeGetGeometryColor", "scope": "LIBRARY"}, "120": {"type": "MIPS_26", "symbol": "_hip_shape_err", "scope": "LIBRARY", "original": ".text"}, "136": {"type": "MIPS_26", "symbol": "Vumem1GetIptr", "scope": "LIBRARY", "original": ".text"}, "164": {"type": "MIPS_26", "symbol": "_hip_shape_err", "scope": "LIBRARY", "original": ".text"}, "184": {"type": "MIPS_26", "symbol": "sceHiDMAMake_LoadPtr"}, "208": {"type": "MIPS_26", "symbol": "sceHiDMAMake_LoadPtr"}, "232": {"type": "MIPS_26", "symbol": "sceHiDMAMake_LoadPtr"}, "256": {"type": "MIPS_26", "symbol": "sceHiDMAMake_LoadPtr"}}}}}, "ShapeMakeGeometryPacket": {"0d4b1f97babf4b028ee58256c8b30350ad909e68": {"61dabf51": {"type": "FUNCTION", "size": 680, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"76": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "120": {"type": "MIPS_26", "symbol": "_hip_shape_err", "scope": "LIBRARY", "original": ".text"}, "192": {"type": "MIPS_26", "symbol": "Vumem1Rest", "scope": "LIBRARY", "original": ".text"}, "268": {"type": "MIPS_26", "symbol": "Vumem1Rest", "scope": "LIBRARY", "original": ".text"}, "340": {"type": "MIPS_26", "symbol": "sceHiDMAMake_DBufStart"}, "364": {"type": "MIPS_26", "symbol": "ShapeMakeVertexGiftag", "scope": "LIBRARY", "original": ".text"}, "388": {"type": "MIPS_26", "symbol": "Vumem1GetOptr", "scope": "LIBRARY", "original": ".text"}, "424": {"type": "MIPS_26", "symbol": "ShapeMakeExceptionTriFan", "scope": "LIBRARY", "original": ".text"}, "444": {"type": "MIPS_26", "symbol": "Vumem1GetOptr", "scope": "LIBRARY", "original": ".text"}, "472": {"type": "MIPS_26", "symbol": "ShapeMakeVertexPacket", "scope": "LIBRARY", "original": ".text"}, "484": {"type": "MIPS_26", "symbol": "Vumem1GetOptr", "scope": "LIBRARY", "original": ".text"}, "516": {"type": "MIPS_26", "symbol": "sceHiDMAMake_DBufEnd"}, "552": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "560": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "612": {"type": "MIPS_26", "symbol": "Vumem1Reset", "scope": "LIBRARY", "original": ".text"}}}}}, "ShapeMakeMaterialPacket": {"6f760a6b0df243ccdb3dbf56619147da0e9d24e8": {"be146213": {"type": "FUNCTION", "size": 572, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "sceHiPlugShapeGetDataHead", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "sceHiPlugShapeGetMaterialHead", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "sceHiPlugShapeGetMaterialAttrib", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "_hip_shape_err", "scope": "LIBRARY", "original": ".text"}, "128": {"type": "MIPS_26", "symbol": "sceHiPlugTex2DGetEnv", "scope": "LIBRARY"}, "148": {"type": "MIPS_26", "symbol": "sceHiPlugShapeGetMaterialGiftag", "scope": "LIBRARY"}, "156": {"type": "MIPS_26", "symbol": "sceHiDMAMake_WaitMicro"}, "204": {"type": "MIPS_26", "symbol": "sceHiDMAMake_LoadGS"}, "244": {"type": "MIPS_26", "symbol": "sceHiDMAMake_LoadGS"}, "300": {"type": "MIPS_26", "symbol": "sceHiPlugTex2DGetData", "scope": "LIBRARY"}, "320": {"type": "MIPS_26", "symbol": "sceHiDMAMake_WaitMicro"}, "336": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "344": {"type": "MIPS_26", "symbol": "sceHiDMAMake_LoadGS"}, "348": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "380": {"type": "MIPS_26", "symbol": "sceHiDMAMake_WaitMicro"}, "404": {"type": "MIPS_26", "symbol": "sceHiDMAMake_LoadPtr"}, "428": {"type": "MIPS_26", "symbol": "_hip_shape_err", "scope": "LIBRARY", "original": ".text"}, "444": {"type": "MIPS_26", "symbol": "Vumem1Reset", "scope": "LIBRARY", "original": ".text"}, "472": {"type": "MIPS_26", "symbol": "sceHiPlugShapeGetGeometryHead", "scope": "LIBRARY"}, "500": {"type": "MIPS_26", "symbol": "ShapeMakeGeometryPacket", "scope": "LIBRARY", "original": ".text"}}}}}, "ShapeMakeShapePacket": {"f6f59d6b33355d315017ebe822302fdf02755149": {"3618f451": {"type": "FUNCTION", "size": 272, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "sceHiDMAMake_ChainStart"}, "60": {"type": "MIPS_26", "symbol": "sceHiDMAMake_LoadPtr"}, "80": {"type": "MIPS_26", "symbol": "sceHiDMAMake_ExecMicro"}, "100": {"type": "MIPS_26", "symbol": "sceHiDMAMake_ContinueMicro"}, "124": {"type": "MIPS_26", "symbol": "sceHiPlugShapeGetDataHead", "scope": "LIBRARY"}, "144": {"type": "MIPS_26", "symbol": "_hip_shape_err", "scope": "LIBRARY", "original": ".text"}, "188": {"type": "MIPS_26", "symbol": "ShapeMakeMaterialPacket", "scope": "LIBRARY", "original": ".text"}, "232": {"type": "MIPS_26", "symbol": "sceHiDMAMake_ChainEnd"}}}}}, "ShapeFrameMakeSubPacket": {"bb7b32104b002194f3b2fa30ff94e8b3506243b2": {"2fa1f277": {"type": "FUNCTION", "size": 148, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "sceHiMemAlign"}, "48": {"type": "MIPS_26", "symbol": "_hip_shape_err", "scope": "LIBRARY", "original": ".text"}, "88": {"type": "MIPS_26", "symbol": "ShapeMakeShapePacket", "scope": "LIBRARY", "original": ".text"}}}}}, "ShapeFrameMakePacket": {"29b395402564b6be1412e51a59823ff33bba2247": {"7636daa6": {"type": "FUNCTION", "size": 448, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "sceHiDMAMake_DynamicChainStart"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_26", "symbol": "sceHiDMAMake_LoadGS"}, "144": {"type": "MIPS_26", "symbol": "sceHiPlugShapeGetMatrix", "scope": "LIBRARY"}, "204": {"type": "MIPS_26", "symbol": "sceHiDMAMake_CallID"}, "240": {"type": "MIPS_26", "symbol": "sceHiDMAMake_LoadPtr"}, "276": {"type": "MIPS_26", "symbol": "sceHi)PS2SDB", 8192}, + std::string_view{R"PS2SDB(DMAMake_CallID"}, "320": {"type": "MIPS_26", "symbol": "sceHiDMAMake_WaitMicro"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "388": {"type": "MIPS_26", "symbol": "sceHiDMAMake_LoadGS"}, "408": {"type": "MIPS_26", "symbol": "sceHiDMAMake_DynamicChainEnd"}}}}}, "ShapeFrameMakePacketInStatic": {"8ca7c4fd27b1cb7c117bc011b99163d37271c16b": {"83f44bb2": {"type": "FUNCTION", "size": 448, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "sceHiDMAMake_ChainStart"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_26", "symbol": "sceHiDMAMake_LoadGS"}, "144": {"type": "MIPS_26", "symbol": "sceHiPlugShapeGetMatrix", "scope": "LIBRARY"}, "204": {"type": "MIPS_26", "symbol": "sceHiDMAMake_CallID"}, "240": {"type": "MIPS_26", "symbol": "sceHiDMAMake_LoadPtr"}, "276": {"type": "MIPS_26", "symbol": "sceHiDMAMake_CallID"}, "320": {"type": "MIPS_26", "symbol": "sceHiDMAMake_WaitMicro"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "388": {"type": "MIPS_26", "symbol": "sceHiDMAMake_LoadGS"}, "408": {"type": "MIPS_26", "symbol": "sceHiDMAMake_ChainEnd"}}}}}, "set_skin_id": {"dd2fb09033522ca2e8f2eed6660d3b353fd202a2": {"b6488065": {"type": "FUNCTION", "size": 464, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "sceHiMemAlloc"}, "68": {"type": "MIPS_26", "symbol": "_hip_shape_err", "scope": "LIBRARY", "original": ".text"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "164": {"type": "MIPS_26", "symbol": "sceHiPlugSkinGetHead", "scope": "LIBRARY"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "188": {"type": "MIPS_26", "symbol": "sceHiPlugSkinGetHead", "scope": "LIBRARY"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "208": {"type": "MIPS_26", "symbol": "sceHiPlugSkinGetLW", "scope": "LIBRARY"}, "224": {"type": "MIPS_26", "symbol": "sceHiPlugSkinGetBW", "scope": "LIBRARY"}, "248": {"type": "MIPS_26", "symbol": "_hip_shape_err", "scope": "LIBRARY", "original": ".text"}, "316": {"type": "MIPS_26", "symbol": "sceHiDMAMake_ChainStart"}, "332": {"type": "MIPS_26", "symbol": "sceHiDMAMake_WaitMicro"}, "352": {"type": "MIPS_26", "symbol": "sceHiDMAMake_LoadPtr"}, "368": {"type": "MIPS_26", "symbol": "sceHiDMAMake_ChainEnd"}}}}}, "free_skin_packet": {"1a853170b8b8392111e855b43708e898a8dd30cd": {"9f0f5d32": {"type": "FUNCTION", "size": 136, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "sceHiDMADel_Chain"}}}}}, "sceHiPlugShape": {"b2f6b345785b18dabd77e8b349eb9723884f0af4": {"b6f47876": {"type": "FUNCTION", "size": 676, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"92": {"type": "MIPS_26", "symbol": "sceHiMemAlign"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "112": {"type": "MIPS_26", "symbol": "_hip_shape_err", "scope": "LIBRARY", "original": ".text"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_26", "symbol": "sceHiPlugShapeGetHead", "scope": "LIBRARY"}, "152": {"type": "MIPS_26", "symbol": "_hip_shape_err", "scope": "LIBRARY", "original": ".text"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "176": {"type": "MIPS_26", "symbol": "sceHiPlugTex2DGetHead", "scope": "LIBRARY"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "196": {"type": "MIPS_26", "symbol": "sceHiPlugTex2DGetHead", "scope": "LIBRARY"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "216": {"type": "MIPS_26", "symbol": "sceHiPlugShapeGetHead", "scope": "LIBRARY"}, "248": {"type": "MIPS_26", "symbol": "Vumem1SetParam", "scope": "LIBRARY", "original": ".text"}, "256": {"type": "MIPS_26", "symbol": "Vumem1ISize", "scope": "LIBRARY", "original": ".text"}, "272": {"type": "MIPS_26", "symbol": "set_skin_id", "scope": "LIBRARY", "original": ".text"}, "292": {"type": "MIPS_26", "symbol": "ShapeFrameMakeSubPacket", "scope": "LIBRARY", "original": ".text"}, "328": {"type": "MIPS_26", "symbol": "ShapeFrameMakePacketInStatic", "scope": "LIBRARY", "original": ".text"}, "384": {"type": "MIPS_26", "symbol": "ShapeFrameMakePacket", "scope": "LIBRARY", "original": ".text"}, "400": {"type": "MIPS_26", "symbol": "sceHiDMARegist"}, "440": {"type": "MIPS_26", "symbol": "_hip_shape_err", "scope": "LIBRARY", "original": ".text"}, "456": {"type": "MIPS_26", "symbol": "free_skin_packet", "scope": "LIBRARY", "original": ".text"}, "492": {"type": "MIPS_26", "symbol": "sceHiDMADel_Chain"}, "560": {"type": "MIPS_26", "symbol": "sceHiDMADel_Chain"}, "612": {"type": "MIPS_26", "symbol": "sceHiMemFree"}, "624": {"type": "MIPS_26", "symbol": "sceHiMemFree"}, "632": {"type": "MIPS_26", "symbol": "sceHiMemFree"}}}}}, "sceHiPlugShapeInvisible": {"576f70d1a4cdc65c7d5728ae74750711b44f30f7": {"90f103c7": {"type": "FUNCTION", "size": 208, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "_hip_shape_err", "scope": "LIBRARY", "original": ".text"}, "56": {"type": "MIPS_26", "symbol": "sceHiPlugShapeGetMatrix", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "_hip_shape_err", "scope": "LIBRARY", "original": ".text"}, "140": {"type": "MIPS_26", "symbol": "sceHiDMADel_Chain"}, "160": {"type": "MIPS_26", "symbol": "ShapeFrameMakePacketInStatic", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHiPlugShapeMasterChainSetting": {"aecbf25ce4f6de4251145ae93ff63b9e1914bc34": {"deedc243": {"type": "FUNCTION", "size": 140, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "_hip_shape_err", "scope": "LIBRARY", "original": ".text"}, "72": {"type": "MIPS_26", "symbol": "ShapeFrameMakePacketInStatic", "scope": "LIBRARY", "original": ".text"}, "96": {"type": "MIPS_26", "symbol": "sceHiDMADel_Chain"}}}}}, "_hip_hrchy_err": {"1ace9adbfe680831d3937760b248141e983b67a7": {"273b4da8": {"type": "FUNCTION", "size": 48, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "12": {"type": "M)PS2SDB", 8192}, + std::string_view{R"PS2SDB(IPS_HI16", "symbol": "", "original": ".rodata"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": "sceHiErrState"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "sceHiErrState"}}}}, "ed9f0d68511b07924d73902bdb45ff58f7ec8844": {"81376de0": {"type": "FUNCTION", "size": 76, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceHiGetErrStatePtr"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "SetHierarchyMatrix": {"c2fce8a34e46d35e858cfc1d4582b503eefad53d": {"24c14f80": {"type": "FUNCTION", "size": 1952, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "sceHiPlugHrchyGetData", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "sceHiPlugShapeGetMatrix", "scope": "LIBRARY"}, "140": {"type": "MIPS_26", "symbol": "sceVu0CopyVector"}, "164": {"type": "MIPS_26", "symbol": "sceVu0ScaleVectorXYZ"}, "396": {"type": "MIPS_26", "symbol": "fptodp"}, "412": {"type": "MIPS_26", "symbol": "dpmul"}, "420": {"type": "MIPS_26", "symbol": "dptofp"}, "468": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "472": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1476": {"type": "MIPS_26", "symbol": "sceHiPlugHrchyGetPivot", "scope": "LIBRARY"}, "1556": {"type": "MIPS_26", "symbol": "sceVu0CopyMatrix"}, "1824": {"type": "MIPS_26", "symbol": "sceHiPlugHrchyGetData", "scope": "LIBRARY"}, "1864": {"type": "MIPS_26", "symbol": "SetHierarchyMatrix", "scope": "LIBRARY", "original": ".text"}}}}, "3c5245394ea58ab8908c652601ccc7378340684c": {"918098d3": {"type": "FUNCTION", "size": 1096, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "sceHiPlugHrchyGetData", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "sceHiPlugShapeGetMatrix", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "sceVu0CopyVector"}, "148": {"type": "MIPS_26", "symbol": "sceVu0ScaleVectorXYZ"}, "280": {"type": "MIPS_26", "symbol": "DIntr"}, "308": {"type": "MIPS_26", "symbol": "EIntr"}, "448": {"type": "MIPS_26", "symbol": "set_euler_quat", "scope": "LIBRARY", "original": ".text"}, "568": {"type": "MIPS_26", "symbol": "set_rot_quat", "scope": "LIBRARY", "original": ".text"}, "620": {"type": "MIPS_26", "symbol": "set_rot_quat", "scope": "LIBRARY", "original": ".text"}, "644": {"type": "MIPS_26", "symbol": "set_rot_quat", "scope": "LIBRARY", "original": ".text"}, "672": {"type": "MIPS_26", "symbol": "set_rot_quat", "scope": "LIBRARY", "original": ".text"}, "872": {"type": "MIPS_26", "symbol": "sceHiPlugHrchyGetPivot", "scope": "LIBRARY"}, "888": {"type": "MIPS_26", "symbol": "set_pivot_matrix", "scope": "LIBRARY", "original": ".text"}, "908": {"type": "MIPS_26", "symbol": "sceVu0CopyMatrix"}, "936": {"type": "MIPS_26", "symbol": "set_local_world", "scope": "LIBRARY", "original": ".text"}, "952": {"type": "MIPS_26", "symbol": "set_light_rot", "scope": "LIBRARY", "original": ".text"}, "976": {"type": "MIPS_26", "symbol": "sceHiPlugHrchyGetData", "scope": "LIBRARY"}, "1016": {"type": "MIPS_26", "symbol": "SetHierarchyMatrix", "scope": "LIBRARY", "original": ".text"}}}}, "ab976c3a7f1785dfd3ae0256dc0a75ade40a09bf": {"91c4d471": {"type": "FUNCTION", "size": 1872, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.0"], "sdk": ["2.7.0", "2.7.1", "2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "sceHiPlugHrchyGetData", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "sceHiPlugShapeGetMatrix", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "sceVu0CopyVector"}, "136": {"type": "MIPS_26", "symbol": "sceVu0ScaleVectorXYZ"}, "416": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "420": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1424": {"type": "MIPS_26", "symbol": "sceHiPlugHrchyGetPivot", "scope": "LIBRARY"}, "1500": {"type": "MIPS_26", "symbol": "sceVu0CopyMatrix"}, "1752": {"type": "MIPS_26", "symbol": "sceHiPlugHrchyGetData", "scope": "LIBRARY"}, "1792": {"type": "MIPS_26", "symbol": "SetHierarchyMatrix", "scope": "LIBRARY", "original": ".text"}}}}}, "SetHierarchy": {"1d5f079d19f6c4aa8e3f57b6b9eb4e78c9e827aa": {"e5cedb37": {"type": "FUNCTION", "size": 212, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "sceHiPlugHrchyGetData", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "sceVu0CopyMatrix"}, "100": {"type": "MIPS_26", "symbol": "sceVu0CopyMatrix"}, "120": {"type": "MIPS_26", "symbol": "sceVu0UnitMatrix"}, "128": {"type": "MIPS_26", "symbol": "sceVu0UnitMatrix"}, "148": {"type": "MIPS_26", "symbol": "SetHierarchyMatrix", "scope": "LIBRARY", "original": ".text"}}}}, "18456fb31fda99a72c54c2f952914b7691bfd7dd": {"c230e3cd": {"type": "FUNCTION", "size": 216, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "sceHiPlugHrchyGetData", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "sceVu0CopyMatrix"}, "100": {"type": "MIPS_26", "symbol": "sceVu0CopyMatrix"}, "108": {"type": "MIPS_26", "symbol": "_nullifyTranspose", "scope": "LIBRARY", "original": ".text"}, "124": {"type": "MIPS_26", "symbol": "sceVu0UnitMatrix"}, "132": {"type": "MIPS_26", "symbol": "sceVu0UnitMatrix"}, "152": {"type": "MIPS_26", "symbol": "SetHierarchyMatrix", "scope": "LIBRARY", "original": ".text"}}}}}, "HrchyInit": {"495b8d8fb197f3ceee85ea755e7270a3e18bf15e": {"e7fb3190": {"type": "FUNCTION", "size": 140, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_26", "symbol": "sceHiPlugHrchyGetHead", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "56": {"type": "MIPS_26", "symbol": "sceHiPlugHrchyGetHead", "scope": "LIBRARY"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "76": {"type": "MIPS_26", "symbol": "sceHiPlugShapeGetHead", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "_hip_hrchy_err", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHiPlugHrchy": {"c055243e2ad7b9883932f954a15a286ddc02f72d": {"5856e704": {"type": "FUNCTION", "size": 268, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"88": {"type": "MIPS_26", "symbol": "sceHiMemAlign"}, "108": {"type": "MIPS_26", "symbol": "_hip_hrchy_err", "scope": "LIBRARY", "original": ".text"}, "124": {"type": "MIPS_26", "symbol": "HrchyInit", "scope": "LIBRARY", "original": ".text"}, "180": {"type": "MIPS_26",)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "symbol": "SetHierarchy", "scope": "LIBRARY", "original": ".text"}, "208": {"type": "MIPS_26", "symbol": "_hip_hrchy_err", "scope": "LIBRARY", "original": ".text"}, "228": {"type": "MIPS_26", "symbol": "sceHiMemFree"}}}}}, "_hip_anime_err": {"1ace9adbfe680831d3937760b248141e983b67a7": {"273b4da8": {"type": "FUNCTION", "size": 48, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": "sceHiErrState"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "sceHiErrState"}}}}, "ed9f0d68511b07924d73902bdb45ff58f7ec8844": {"81376de0": {"type": "FUNCTION", "size": 76, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceHiGetErrStatePtr"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "anime_init": {"38d90795907e7d45701e53e2909583ccfc6e73c2": {"d826e08e": {"type": "FUNCTION", "size": 456, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_26", "symbol": "sceHiPlugAnimeGetHead", "scope": "LIBRARY"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_26", "symbol": "sceHiPlugHrchyGetHead", "scope": "LIBRARY"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_26", "symbol": "sceHiPlugAnimeGetHead", "scope": "LIBRARY"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "112": {"type": "MIPS_26", "symbol": "sceHiPlugAnimeGetHead", "scope": "LIBRARY"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "132": {"type": "MIPS_26", "symbol": "_hip_anime_err", "scope": "LIBRARY", "original": ".text"}, "148": {"type": "MIPS_26", "symbol": "sceHiMemAlloc"}, "164": {"type": "MIPS_26", "symbol": "sceHiMemAlloc"}, "200": {"type": "MIPS_26", "symbol": "sceHiPlugAnimeGetKeyHead", "scope": "LIBRARY"}, "236": {"type": "MIPS_26", "symbol": "sceHiPlugAnimeGetFrame", "scope": "LIBRARY"}, "284": {"type": "MIPS_26", "symbol": "sceHiMemAlloc"}, "300": {"type": "MIPS_26", "symbol": "_hip_anime_err", "scope": "LIBRARY", "original": ".text"}, "316": {"type": "MIPS_26", "symbol": "_hip_anime_err", "scope": "LIBRARY", "original": ".text"}, "352": {"type": "MIPS_26", "symbol": "sceHiPlugAnimeGetKeyHead", "scope": "LIBRARY"}, "372": {"type": "MIPS_26", "symbol": "sceHiPlugAnimeGetValue", "scope": "LIBRARY"}}}}}, "anime_set": {"8945714e34441030b4fac236211707f910793627": {"d8232159": {"type": "FUNCTION", "size": 592, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_26", "symbol": "sceHiPlugAnimeGetData", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "sceHiPlugHrchyGetData", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "_hip_anime_err", "scope": "LIBRARY", "original": ".text"}, "240": {"type": "MIPS_26", "symbol": "keypoint", "original": ".text"}, "264": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "296": {"type": "MIPS_26", "symbol": "Constant", "scope": "LIBRARY", "original": ".text"}, "368": {"type": "MIPS_26", "symbol": "Hermite", "scope": "LIBRARY", "original": ".text"}, "440": {"type": "MIPS_26", "symbol": "Bezier", "scope": "LIBRARY", "original": ".text"}, "512": {"type": "MIPS_26", "symbol": "Linear", "original": ".text"}}}}, "bb2dc6091bf0e3cdc00d61e871cb40d225f172f1": {"e49e8bf6": {"type": "FUNCTION", "size": 820, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_26", "symbol": "sceHiPlugAnimeGetData", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "sceHiPlugHrchyGetData", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "_hip_anime_err", "scope": "LIBRARY", "original": ".text"}, "240": {"type": "MIPS_26", "symbol": "keypoint", "original": ".text"}, "264": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "296": {"type": "MIPS_26", "symbol": "Constant", "scope": "LIBRARY", "original": ".text"}, "444": {"type": "MIPS_26", "symbol": "Hermite", "scope": "LIBRARY", "original": ".text"}, "592": {"type": "MIPS_26", "symbol": "Bezier", "scope": "LIBRARY", "original": ".text"}, "740": {"type": "MIPS_26", "symbol": "Linear", "original": ".text"}}}}}, "keypoint": {"71711c6882d456e9646f880181946a1261455f5a": {"00000000": {"type": "FUNCTION", "size": 108, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}, "6c9fd89ceccf3f74180384f9d4d9d5d89c2614af": {"00000000": {"type": "FUNCTION", "size": 108, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "spline": {"3c5e1f576bfb3b7f0902c4956750abc551b2f54c": {"eeb1314b": {"type": "FUNCTION", "size": 88, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "sceVu0ApplyMatrix"}}}}}, "Hermite": {"8d73ed2fa296a6ec3ec68614b6e454ee1ac3f06b": {"2dbd9cd7": {"type": "FUNCTION", "size": 372, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"136": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_26", "symbol": "spline", "scope": "LIBRARY", "original": ".text"}, "200": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "228": {"type": "MIPS_26", "symbol": "spline", "scope": "LIBRARY", "original": ".text"}, "280": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "300": {"type": "MIPS_26", "symbol": "spline", "scope": "LIBRARY", "original": ".text"}}}}}, "Bezier": {"8d73ed2fa296a6ec3ec68614b6e454ee1ac3f06b": {"2dbd9cd7": {"type": "FUNCTION", "size": 372, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"136": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_26", "symbol": "spline", "scope": "LIBRARY", "original": ".text"}, "200": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "228": {"type": "MIPS_26", "symbol": "spline", "scope": "LIBRARY", "original": ".text"}, "280": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "300": {"type": "MIPS_26", "symbol": "spline", "scope": "LIBRARY", "original": ".text"}}}}}, "linear": {"0db4665b508f39df44f5bab588602d0e403189ea": {"00000000": {"type": "FUNCTION", "size": 28, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "Linear": {"50b381e8d208dae862a8090ec6ed61e9ba2e15d7": {"a8d33571": {"type": "FUNCTION", "size": 456, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"196": {"type": "MIPS_26", "symbol": "linear", "original": ".text"}, "292": {"type": "MIPS_26", "symbol": "linear", "original": ".text"}, "380": {"type": "MIPS_26", "symbol": "linear", "original": ".text"}}}}, "061013f5f03048164f2a514e546e50cd9c5be4f7": {"b848bc88": {"type": "FUNCTION", "size": 1412, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"992": {"type": "MIPS_26", "symbol": "sceVu0ScaleVector"}, "1052": {"type": "MIPS_26", "symbol": "linear", "original": ".text"}, "1340": {"type": "MIPS_26", "symbol": "linear", "original": ".text"}}}}}, "Constant": {"4b95fd3508808cf91dfc06adf10ad642f2ac4b9b": {"bf3e4ee9": {"type": "FUNCTION", "size": 224, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"112": {"type": "MIPS_26", "symbol": "sceVu0CopyVector"}, "140": {"type": "MIPS_26", "symbol": "sceVu0CopyVector"}, "192": {"type": "MIPS_26", "symbol": "sceVu0CopyVector"}}}}}, "sceHiPlugAnime": {"51539fda6b4a04b9c2f349e5929925a81cb85aeb": {"9a5a2f4f": {"type": "FUNCTION", "size": 384, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"92": {"type": "MIPS_26", "symbol": "sceHiMemAlign"}, "112": {"type": "MIPS_26", "symbol": "_hip_anime_err", "scope": "LIBRARY", "original": ".text"}, "128": {"type": "MIPS_26", "symbol": "anime_init", "scope": "LIBRARY", "original": ".text"}, "232": {"type": "MIPS_26", "symbol": "anime_set", "scope": "LIBRARY", "original": ".text"}, "268": {"type": "MIPS_26", "symbol": "_hip_anime_err", "scope": "LIBRARY", "original": ".text"}, "292": {"type": "MIPS_26", "symbol": "sceHiMemFree"}, "304": {"type": "MIPS_26", "symbol": "sceHiMemFree"}, "316": {"type": "MIPS_26", "symbol": "sceHiMemFree"}}}}, "3142d1135efde19aae473cd191b8ad3b1c3abc37": {"1ee42ed9": {"type": "FUNCTION", "size": 372, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"92": {"type": "MIPS_26", "symbol": "sceHiMemAlign"}, "112": {"type": "MIPS_26", "symbol": "_hip_anime_err", "scope": "LIBRARY", "original": ".text"}, "128": {"type": "MIPS_26", "symbol": "anime_init", "scope": "LIBRARY", "original": ".text"}, "212": {"type": "MIPS_26", "symbol": "anime_set", "scope": "LIBRARY", "original": ".text"}, "256": {"type": "MIPS_26", "symbol": "_hip_anime_err", "scope": "LIBRARY", "original": ".text"}, "280": {"type": "MIPS_26", "symbol": "sceHiMemFree"}, "292": {"type": "MIPS_26", "symbol": "sceHiMemFree"}, "304": {"type": "MIPS_26", "symbol": "sceHiMemFree"}}}}, "490a9c3363681c4deeab455ccd95f795849925c2": {"d229339e": {"type": "FUNCTION", "size": 380, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.2"], "sdk": ["3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"92": {"type": "MIPS_26", "symbol": "sceHiMemAlign"}, "112": {"type": "MIPS_26", "symbol": "_hip_anime_err", "scope": "LIBRARY", "original": ".text"}, "128": {"type": "MIPS_26", "symbol": "anime_init", "scope": "LIBRARY", "original": ".text"}, "212": {"type": "MIPS_26", "symbol": "anime_set", "scope": "LIBRARY", "original": ".text"}, "256": {"type": "MIPS_26", "symbol": "_hip_anime_err", "scope": "LIBRARY", "original": ".text"}, "280": {"type": "MIPS_26", "symbol": "sceHiMemFree"}, "292": {"type": "MIPS_26", "symbol": "sceHiMemFree"}, "304": {"type": "MIPS_26", "symbol": "sceHiMemFree"}, "336": {"type": "MIPS_26", "symbol": "sceHiMemFree"}}}}}, "_hip_share_err": {"1ace9adbfe680831d3937760b248141e983b67a7": {"273b4da8": {"type": "FUNCTION", "size": 48, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": "sceHiErrState"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "sceHiErrState"}}}}, "ed9f0d68511b07924d73902bdb45ff58f7ec8844": {"81376de0": {"type": "FUNCTION", "size": 76, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceHiGetErrStatePtr"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "SetVector": {"be80e0a62fa3e7b075ec42423eb979d2d943325b": {"82273c76": {"type": "FUNCTION", "size": 440, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "sceHiPlugShareGetShare", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "_hip_share_err", "scope": "LIBRARY", "original": ".text"}, "92": {"type": "MIPS_26", "symbol": "sceHiPlugShapeGetMatrix", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "_hip_share_err", "scope": "LIBRARY", "original": ".text"}, "160": {"type": "MIPS_26", "symbol": "sceHiPlugShareGetDst", "scope": "LIBRARY"}, "176": {"type": "MIPS_26", "symbol": "sceHiPlugShareGetSrc", "scope": "LIBRARY"}, "208": {"type": "MIPS_26", "symbol": "sceVu0ApplyMatrix"}, "280": {"type": "MIPS_26", "symbol": "sceHiPlugShareGetDst", "scope": "LIBRARY"}, "296": {"type": "MIPS_26", "symbol": "sceHiPlugShareGetSrc", "scope": "LIBRARY"}, "320": {"type": "MIPS_26", "symbol": "_hip_share_err", "scope": "LIBRARY", "original": ".text"}, "344": {"type": "MIPS_26", "symbol": "sceVu0ApplyMatrix"}}}}}, "MakeShare": {"0ac0e1c8e9b4940248f97f996e3f2f1ef330e7e2": {"40755852": {"type": "FUNCTION", "size": 172, "library": "libhip", "scope": "LOCAL", "is_int)PS2SDB", 8192}, + std::string_view{R"PS2SDB(erface": false, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "sceHiPlugShareGetIndex", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "sceHiPlugShareGetDst", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "sceVu0CopyVector"}}}}}, "SetShare": {"ac2d0770da9ef112825e1e3e97869e8e0cd8bc7b": {"ca45bbff": {"type": "FUNCTION", "size": 188, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "sceHiPlugShareGetShare", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "MakeShare", "scope": "LIBRARY", "original": ".text"}, "112": {"type": "MIPS_26", "symbol": "sceHiPlugShareGetShare", "scope": "LIBRARY"}, "136": {"type": "MIPS_26", "symbol": "MakeShare", "scope": "LIBRARY", "original": ".text"}}}}}, "GeomInit": {"81b54d3f286a153e4de33638f48c8bb94113ea02": {"8556bc9f": {"type": "FUNCTION", "size": 424, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "sceHiPlugShapeGetDataHead", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "_hip_share_err", "scope": "LIBRARY", "original": ".text"}, "92": {"type": "MIPS_26", "symbol": "_hip_share_err", "scope": "LIBRARY", "original": ".text"}, "124": {"type": "MIPS_26", "symbol": "sceHiPlugShapeGetMaterialHead", "scope": "LIBRARY"}, "176": {"type": "MIPS_26", "symbol": "sceHiMemAlign"}, "196": {"type": "MIPS_26", "symbol": "sceHiMemAlign"}, "224": {"type": "MIPS_26", "symbol": "sceHiPlugShapeGetMaterialHead", "scope": "LIBRARY"}, "260": {"type": "MIPS_26", "symbol": "sceHiPlugShapeGetGeometryHead", "scope": "LIBRARY"}, "280": {"type": "MIPS_26", "symbol": "sceHiPlugShapeGetGeometryVertex", "scope": "LIBRARY"}, "312": {"type": "MIPS_26", "symbol": "sceHiPlugShapeGetGeometryNormal", "scope": "LIBRARY"}}}}}, "ShareInit": {"726a130b4b570c7f45e22fb3691ab4f5d312fb26": {"a2a20815": {"type": "FUNCTION", "size": 412, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_26", "symbol": "sceHiPlugShareGetHead", "scope": "LIBRARY"}, "48": {"type": "MIPS_26", "symbol": "_hip_share_err", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_26", "symbol": "sceHiPlugShareGetHead", "scope": "LIBRARY"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_26", "symbol": "_hip_share_err", "scope": "LIBRARY", "original": ".text"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "112": {"type": "MIPS_26", "symbol": "sceHiPlugShareGetHead", "scope": "LIBRARY"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_26", "symbol": "_hip_share_err", "scope": "LIBRARY", "original": ".text"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "152": {"type": "MIPS_26", "symbol": "sceHiPlugShareGetHead", "scope": "LIBRARY"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "168": {"type": "MIPS_26", "symbol": "_hip_share_err", "scope": "LIBRARY", "original": ".text"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "192": {"type": "MIPS_26", "symbol": "sceHiPlugShareGetHead", "scope": "LIBRARY"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "208": {"type": "MIPS_26", "symbol": "_hip_share_err", "scope": "LIBRARY", "original": ".text"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "232": {"type": "MIPS_26", "symbol": "sceHiPlugShareGetHead", "scope": "LIBRARY"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "248": {"type": "MIPS_26", "symbol": "_hip_share_err", "scope": "LIBRARY", "original": ".text"}, "264": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "272": {"type": "MIPS_26", "symbol": "sceHiPlugShareGetHead", "scope": "LIBRARY"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "288": {"type": "MIPS_26", "symbol": "_hip_share_err", "scope": "LIBRARY", "original": ".text"}, "304": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "312": {"type": "MIPS_26", "symbol": "sceHiPlugShapeGetHead", "scope": "LIBRARY"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "328": {"type": "MIPS_26", "symbol": "_hip_share_err", "scope": "LIBRARY", "original": ".text"}, "344": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "352": {"type": "MIPS_26", "symbol": "sceHiPlugShapeGetHead", "scope": "LIBRARY"}, "356": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "368": {"type": "MIPS_26", "symbol": "_hip_share_err", "scope": "LIBRARY", "original": ".text"}, "384": {"type": "MIPS_26", "symbol": "GeomInit", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHiPlugShare": {"cd007262fea5e426de5916cae87e47aca3880912": {"e3441878": {"type": "FUNCTION", "size": 304, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"92": {"type": "MIPS_26", "symbol": "sceHiMemAlign"}, "112": {"type": "MIPS_26", "symbol": "_hip_share_err", "scope": "LIBRARY", "original": ".text"}, "128": {"type": "MIPS_26", "symbol": "ShareInit", "scope": "LIBRARY", "original": ".text"}, "164": {"type": "MIPS_26", "symbol": "SetVector", "scope": "LIBRARY", "original": ".text"}, "180": {"type": "MIPS_26", "symbol": "SetShare", "scope": "LIBRARY", "original": ".text"}, "216": {"type": "MIPS_26", "symbol": "_hip_share_err", "scope": "LIBRARY", "original": ".text"}, "240": {"type": "MIPS_26", "symbol": "sceHiMemFree"}, "252": {"type": "MIPS_26", "symbol": "sceHiMemFree"}, "260": {"type": "MIPS_26", "symbol": "sceHiMemFree"}}}}}, "_hip_tim2_err": {"1ace9adbfe680831d3937760b248141e983b67a7": {"273b4da8": {"type": "FUNCTION", "size": 48, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": "sceHiErrState"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "sceHiErrState"}}}}, "ed9f0d68511b07924d73902bdb45ff58f7ec8844": {"81376de0": {"type": "FUNCTION", "size": 76, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceHiGetErrStatePtr"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "CheckTim2Header": {"cc69e7cc5203131028fef851dca4ce6956045417": {"c)PS2SDB", 8192}, + std::string_view{R"PS2SDB(88c6e7e": {"type": "FUNCTION", "size": 120, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "_hip_tim2_err", "scope": "LIBRARY", "original": ".text"}, "88": {"type": "MIPS_26", "symbol": "_hip_tim2_err", "scope": "LIBRARY", "original": ".text"}}}}}, "GetTim2PictureHeader": {"5106a0d0f485ba9a423c1da74eaf35bae1a46728": {"a67c2ea5": {"type": "FUNCTION", "size": 188, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "CheckTim2Header", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_26", "symbol": "_hip_tim2_err", "scope": "LIBRARY", "original": ".text"}, "92": {"type": "MIPS_26", "symbol": "_hip_tim2_err", "scope": "LIBRARY", "original": ".text"}}}}}, "MakeTim2TexturePacket": {"bac0c81937345473af95b0aee78e6dcbfba05cac": {"5a0c3635": {"type": "FUNCTION", "size": 484, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "336": {"type": "MIPS_26", "symbol": "sceHiDMAMake_WaitMicro"}, "356": {"type": "MIPS_26", "symbol": "sceHiDMAMake_LoadGSLump"}, "376": {"type": "MIPS_26", "symbol": "sceHiDMAMake_LoadGSLump"}, "392": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "396": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "400": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "404": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "416": {"type": "MIPS_26", "symbol": "sceHiDMAGet_BufferPtr"}, "436": {"type": "MIPS_26", "symbol": "sceHiDMAMake_LoadGS"}, "456": {"type": "MIPS_26", "symbol": "sceHiDMAMake_LoadGSLump"}}}}, "c0646d647ce72288ab6b8b19a84b4878ab85b025": {"618ca578": {"type": "FUNCTION", "size": 500, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["3.0.2"], "sdk": ["3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "336": {"type": "MIPS_26", "symbol": "sceHiDMAMake_WaitMicro"}, "356": {"type": "MIPS_26", "symbol": "sceHiDMAMake_LoadGSLump"}, "376": {"type": "MIPS_26", "symbol": "sceHiDMAMake_LoadGSLump"}, "392": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "396": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "400": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "404": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "408": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "412": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "432": {"type": "MIPS_26", "symbol": "sceHiDMAGet_BufferPtr"}, "452": {"type": "MIPS_26", "symbol": "sceHiDMAMake_LoadGS"}, "472": {"type": "MIPS_26", "symbol": "sceHiDMAMake_LoadGSLump"}}}}}, "getLog2": {"d38321a7e1ef7d1f3be8ee910e61c170602d4864": {"00000000": {"type": "FUNCTION", "size": 60, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "resetTbp": {"03164edaf899d1b61854dbd03292c5117e7045c7": {"5c073f3f": {"type": "FUNCTION", "size": 20, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "resetCbp": {"03164edaf899d1b61854dbd03292c5117e7045c7": {"5c073f3f": {"type": "FUNCTION", "size": 20, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "getTbp": {"39cbb73993770213c2bba8ad270be761e1aeed99": {"f54a2f1b": {"type": "FUNCTION", "size": 44, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "ceaacd8dbc6550567edb1845aa0d5c1d3047b02c": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "getCbp": {"3c7f9b43ce848202aec9d38f4a774d4e2100dbe6": {"4a084bf9": {"type": "FUNCTION", "size": 44, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "ceaacd8dbc6550567edb1845aa0d5c1d3047b02c": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "DecodeTim2Image": {"fd381c46c5f0e76daceb3d2ce62e9cbcc849585d": {"34e54353": {"type": "FUNCTION", "size": 1512, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "memset"}, "88": {"type": "MIPS_26", "symbol": "_hip_tim2_err", "scope": "LIBRARY", "original": ".text"}, "116": {"type": "MIPS_26", "symbol": "getPackedData", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "getPackedData", "original": ".text"}, "148": {"type": "MIPS_26", "symbol": "getPackedDa)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ta", "original": ".text"}, "164": {"type": "MIPS_26", "symbol": "getPackedData", "original": ".text"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "364": {"type": "MIPS_26", "symbol": "sceHiGsPageSize"}, "372": {"type": "MIPS_26", "symbol": "getTbp", "scope": "LIBRARY", "original": ".text"}, "380": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "388": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "420": {"type": "MIPS_26", "symbol": "MakeTim2TexturePacket", "scope": "LIBRARY", "original": ".text"}, "516": {"type": "MIPS_26", "symbol": "getLog2", "scope": "LIBRARY", "original": ".text"}, "556": {"type": "MIPS_26", "symbol": "getLog2", "scope": "LIBRARY", "original": ".text"}, "824": {"type": "MIPS_26", "symbol": "sceHiGsPageSize"}, "832": {"type": "MIPS_26", "symbol": "getTbp", "scope": "LIBRARY", "original": ".text"}, "844": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "864": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "884": {"type": "MIPS_26", "symbol": "MakeTim2TexturePacket", "scope": "LIBRARY", "original": ".text"}, "908": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "916": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}, "8613de418eebc42db94638c868a3a0f009266453": {"62b3f42c": {"type": "FUNCTION", "size": 1512, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "memset"}, "88": {"type": "MIPS_26", "symbol": "_hip_tim2_err", "scope": "LIBRARY", "original": ".text"}, "116": {"type": "MIPS_26", "symbol": "getPackedData", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "getPackedData", "original": ".text"}, "148": {"type": "MIPS_26", "symbol": "getPackedData", "original": ".text"}, "164": {"type": "MIPS_26", "symbol": "getPackedData", "original": ".text"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "364": {"type": "MIPS_26", "symbol": "sceHiGsPageSize"}, "372": {"type": "MIPS_26", "symbol": "getLocalTbp", "scope": "LIBRARY", "original": ".text"}, "380": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "388": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "420": {"type": "MIPS_26", "symbol": "MakeTim2TexturePacket", "scope": "LIBRARY", "original": ".text"}, "516": {"type": "MIPS_26", "symbol": "getLog2", "scope": "LIBRARY", "original": ".text"}, "556": {"type": "MIPS_26", "symbol": "getLog2", "scope": "LIBRARY", "original": ".text"}, "824": {"type": "MIPS_26", "symbol": "sceHiGsPageSize"}, "832": {"type": "MIPS_26", "symbol": "getTbp", "scope": "LIBRARY", "original": ".text"}, "844": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "864": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "884": {"type": "MIPS_26", "symbol": "MakeTim2TexturePacket", "scope": "LIBRARY", "original": ".text"}, "908": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "916": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "DecodeTim2Clut": {"fee91a3d7ea115dfd23e3b45eda1582c4cd2a6f4": {"099c149b": {"type": "FUNCTION", "size": 928, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "memset"}, "152": {"type": "MIPS_26", "symbol": "_hip_tim2_err", "scope": "LIBRARY", "original": ".text"}, "192": {"type": "MIPS_26", "symbol": "sceHiGsBlockSize"}, "200": {"type": "MIPS_26", "symbol": "getCbp", "scope": "LIBRARY", "original": ".text"}, "484": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "496": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "524": {"type": "MIPS_26", "symbol": "MakeTim2TexturePacket", "scope": "LIBRARY", "original": ".text"}, "564": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "584": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "616": {"type": "MIPS_26", "symbol": "MakeTim2TexturePacket", "scope": "LIBRARY", "original": ".text"}, "708": {"type": "MIPS_26", "symbol": "getPackedData", "original": ".text"}}}}, "35069b660a2ea3c7dba628ebebad477eca2ffac9": {"dc291b28": {"type": "FUNCTION", "size": 928, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "memset"}, "152": {"type": "MIPS_26", "symbol": "_hip_tim2_err", "scope": "LIBRARY", "original": ".text"}, "192": {"type": "MIPS_26", "symbol": "sceHiGsBlockSize"}, "200": {"type": "MIPS_26", "symbol": "getLocalCbp", "scope": "LIBRARY", "original": ".text"}, "484": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "496": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "524": {"type": "MIPS_26", "symbol": "MakeTim2TexturePacket", "scope": "LIBRARY", "original": ".text"}, "564": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "584": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "616": {"type": "MIPS_26", "symbol": "MakeTim2TexturePacket", "scope": "LIBRARY", "original": ".text"}, "708": {"type": "MIPS_26", "symbol": "getPackedData", "original": ".text"}}}}}, "DecodeTim2": {"dd15470a2024a7307e984ed24cae19cb056de70c": {"222db4c9": {"type": "FUNCTION", "size": 388, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_26", "symbol": "resetTbp", "scope": "LIBRARY", "original": ".text"}, "80": {"type": "MIPS_26", "symbol": "resetCbp", "scope": "LIBRARY", "original": ".text"}, "96": {"type": "MIPS_26", "symbol": "resetTbp", "scope": "LIBRARY", "original": ".text"}, "104": {"type": "MIPS_26", "symbol": "resetCbp", "scope": "LIBRARY", "original": ".text"}, "112": {"type": "MIPS_26", "symbol": "sceHiDMAMake_ChainStart"}, "140": {"type": "MIPS_26", "symbol": "_hip_tim2_err", "scope": "LIBRARY", "original": ".text"}, "156": {"type": "MIPS_26", "symbol": "_hip_tim2_err", "scope": "LIBRARY", "original": ".text"}, "172": {"type": "MIPS_26", "symbol": "_hip_tim2_err", "scope": "LIBRARY", "original": ".text"}, "216": {"type": "MIPS_26", "symbol": "sceHiPlugTim2GetData", "scope": "LIBRARY"}, "248": {"type": "MIPS_26", "symbol": "GetTim2PictureHeader", "scope": "LIBRARY", "original": ".text"}, "272": {"type": "MIPS_26", "symbol": "sceHiPlugTex2DGetEnv", "scope": "LIBRARY"}, "292": {"type": "MIPS_26", "symbol": "DecodeTim2Image", "scope": "LIBRARY", "original": ".text"}, "312": {"type": "MIPS_26", "symbol": "DecodeTim2Clut", "scope": "LIBRARY", "original": ".text"}, "348": {"type": "MIPS_26", "symbol": "sceHiDMAMake_ChainEnd"}}}}, "3bc97cbd8938f09b126f76ea546ac6147c2eb312": {"e092b377": {"type": "FUNCTION", "size": 364, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "resetTbp", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_26", "symbol": "resetCbp", "scope": "LIBRARY", "original": ".text"}, "72": {"type": "MIPS_26", "symbol": "sceHiDMAMake_ChainStart"}, "100": {"type": "MIPS_26", "symbol": "_hip_tim2_err", "scope": "LIBRARY", "original": ".text"}, "116": {"type": "MIPS_26", "symbol": "_hip_tim2_err", "scope": "LIBRARY", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "_hip_tim2_)PS2SDB", 8192}, + std::string_view{R"PS2SDB(err", "scope": "LIBRARY", "original": ".text"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_26", "symbol": "sceHiPlugTim2GetData", "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "GetTim2PictureHeader", "scope": "LIBRARY", "original": ".text"}, "244": {"type": "MIPS_26", "symbol": "sceHiPlugTex2DGetEnv", "scope": "LIBRARY"}, "264": {"type": "MIPS_26", "symbol": "DecodeTim2Image", "scope": "LIBRARY", "original": ".text"}, "284": {"type": "MIPS_26", "symbol": "DecodeTim2Clut", "scope": "LIBRARY", "original": ".text"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "320": {"type": "MIPS_26", "symbol": "sceHiDMAMake_ChainEnd"}}}}, "5d11a92f72bef065bd9e5b100f019c2da970e3a9": {"16b621bc": {"type": "FUNCTION", "size": 432, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["3.0.2"], "sdk": ["3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_26", "symbol": "resetTbp", "scope": "LIBRARY", "original": ".text"}, "88": {"type": "MIPS_26", "symbol": "resetCbp", "scope": "LIBRARY", "original": ".text"}, "104": {"type": "MIPS_26", "symbol": "resetTbp", "scope": "LIBRARY", "original": ".text"}, "112": {"type": "MIPS_26", "symbol": "resetCbp", "scope": "LIBRARY", "original": ".text"}, "120": {"type": "MIPS_26", "symbol": "sceHiDMAMake_ChainStart"}, "148": {"type": "MIPS_26", "symbol": "_hip_tim2_err", "scope": "LIBRARY", "original": ".text"}, "164": {"type": "MIPS_26", "symbol": "_hip_tim2_err", "scope": "LIBRARY", "original": ".text"}, "180": {"type": "MIPS_26", "symbol": "_hip_tim2_err", "scope": "LIBRARY", "original": ".text"}, "212": {"type": "MIPS_26", "symbol": "sceHiMemAlloc"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "252": {"type": "MIPS_26", "symbol": "sceHiPlugTim2GetData", "scope": "LIBRARY"}, "284": {"type": "MIPS_26", "symbol": "GetTim2PictureHeader", "scope": "LIBRARY", "original": ".text"}, "308": {"type": "MIPS_26", "symbol": "sceHiPlugTex2DGetEnv", "scope": "LIBRARY"}, "328": {"type": "MIPS_26", "symbol": "DecodeTim2Image", "scope": "LIBRARY", "original": ".text"}, "348": {"type": "MIPS_26", "symbol": "DecodeTim2Clut", "scope": "LIBRARY", "original": ".text"}, "380": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "384": {"type": "MIPS_26", "symbol": "sceHiDMAMake_ChainEnd"}}}}}, "sceHiPlugTim2": {"1cfe22533765cd0991b8573f6c400ca1da910115": {"557b466d": {"type": "FUNCTION", "size": 452, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"104": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "112": {"type": "MIPS_26", "symbol": "sceHiPlugTim2GetHead", "scope": "LIBRARY"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "132": {"type": "MIPS_26", "symbol": "sceHiPlugTex2DGetHead", "scope": "LIBRARY"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_26", "symbol": "sceHiMemAlign"}, "168": {"type": "MIPS_26", "symbol": "_hip_tim2_err", "scope": "LIBRARY", "original": ".text"}, "232": {"type": "MIPS_26", "symbol": "DecodeTim2", "scope": "LIBRARY", "original": ".text"}, "284": {"type": "MIPS_26", "symbol": "sceHiDMARegist"}, "320": {"type": "MIPS_26", "symbol": "sceHiDMARegist"}, "356": {"type": "MIPS_26", "symbol": "_hip_tim2_err", "scope": "LIBRARY", "original": ".text"}, "372": {"type": "MIPS_26", "symbol": "sceHiDMADel_Chain"}, "396": {"type": "MIPS_26", "symbol": "sceHiMemFree"}}}}, "61c1e74807f0b863c75df1678ec998b69f20595d": {"706ad36f": {"type": "FUNCTION", "size": 472, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.2"], "sdk": ["3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"104": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "112": {"type": "MIPS_26", "symbol": "sceHiPlugTim2GetHead", "scope": "LIBRARY"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "132": {"type": "MIPS_26", "symbol": "sceHiPlugTex2DGetHead", "scope": "LIBRARY"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_26", "symbol": "sceHiMemAlign"}, "168": {"type": "MIPS_26", "symbol": "_hip_tim2_err", "scope": "LIBRARY", "original": ".text"}, "232": {"type": "MIPS_26", "symbol": "DecodeTim2", "scope": "LIBRARY", "original": ".text"}, "284": {"type": "MIPS_26", "symbol": "sceHiDMARegist"}, "320": {"type": "MIPS_26", "symbol": "sceHiDMARegist"}, "356": {"type": "MIPS_26", "symbol": "_hip_tim2_err", "scope": "LIBRARY", "original": ".text"}, "384": {"type": "MIPS_26", "symbol": "sceHiMemFree"}, "392": {"type": "MIPS_26", "symbol": "sceHiDMADel_Chain"}, "416": {"type": "MIPS_26", "symbol": "sceHiMemFree"}}}}}, "sceHiPlugTim2Num": {"f4b3513a1d10ed02e5f28c38eb3f60e21c3fb3f5": {"8a714a25": {"type": "FUNCTION", "size": 48, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "16": {"type": "MIPS_26", "symbol": "sceHiPlugTim2GetHead", "scope": "LIBRARY"}}}}}, "sceHiPlugTim2GetName": {"2279e334d21955b26d4380216df68e4a241528f3": {"0b9c3279": {"type": "FUNCTION", "size": 72, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "20": {"type": "MIPS_26", "symbol": "sceHiPlugTim2GetHead", "scope": "LIBRARY"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_26", "symbol": "sceHiPlugTim2GetData", "scope": "LIBRARY"}}}}}, "sceHiPlugTim2SetData": {"723977d06fc1c740003f317ac1af8a34be651758": {"40f45ed4": {"type": "FUNCTION", "size": 76, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "28": {"type": "MIPS_26", "symbol": "sceHiPlugTim2GetHead", "scope": "LIBRARY"}, "40": {"type": "MIPS_26", "symbol": "sceHiPlugTim2GetData", "scope": "LIBRARY"}}}}, "c52fc85b1261b92cd26636b937c40f1bd5caaa8f": {"f7002dc8": {"type": "FUNCTION", "size": 140, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_26", "symbol": "sceHiPlugTim2GetHead", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "sceHiPlugTim2GetData", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "setLocalTbp", "scope": "LIBRARY", "original": ".text"}, "96": {"type": "MIPS_26", "symbol": "setLocalCbp", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHiPlugTim2GetNPictures": {"ee96b949df81f215aafc52d6751f80b3c488a343": {"f1553eef": {"type": "FUNCTION", "size": 104, "library": "libhip", "sc)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "28": {"type": "MIPS_26", "symbol": "sceHiPlugTim2GetHead", "scope": "LIBRARY"}, "40": {"type": "MIPS_26", "symbol": "sceHiPlugTim2GetData", "scope": "LIBRARY"}, "60": {"type": "MIPS_26", "symbol": "_hip_tim2_err", "scope": "LIBRARY", "original": ".text"}}}}}, "_calc_image_size": {"ac318023af729727b26c4f880741c66ba7266d15": {"0bfe8910": {"type": "FUNCTION", "size": 112, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sceHiPlugTim2SetPicture": {"0603a48d75eff3e74e9a3f421ff593b616481adf": {"bacbe9e9": {"type": "FUNCTION", "size": 1032, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "_hip_tim2_err", "scope": "LIBRARY", "original": ".text"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "76": {"type": "MIPS_26", "symbol": "sceHiPlugTim2GetHead", "scope": "LIBRARY"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_26", "symbol": "sceHiPlugTim2GetData", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "sceHiDMAGet_BufferPtr"}, "124": {"type": "MIPS_26", "symbol": "GetTim2PictureHeader", "scope": "LIBRARY", "original": ".text"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "188": {"type": "MIPS_26", "symbol": "sceHiDMASet_BufferPtr"}, "212": {"type": "MIPS_26", "symbol": "_calc_image_size", "scope": "LIBRARY", "original": ".text"}, "224": {"type": "MIPS_26", "symbol": "sceHiDMAMake_LoadGS"}, "328": {"type": "MIPS_26", "symbol": "sceHiDMASet_BufferPtr"}, "348": {"type": "MIPS_26", "symbol": "_calc_image_size", "scope": "LIBRARY", "original": ".text"}, "360": {"type": "MIPS_26", "symbol": "sceHiDMAMake_LoadGS"}, "484": {"type": "MIPS_26", "symbol": "_hip_tim2_err", "scope": "LIBRARY", "original": ".text"}, "784": {"type": "MIPS_26", "symbol": "sceHiDMASet_BufferPtr"}, "808": {"type": "MIPS_26", "symbol": "_calc_image_size", "scope": "LIBRARY", "original": ".text"}, "820": {"type": "MIPS_26", "symbol": "sceHiDMAMake_LoadGS"}, "872": {"type": "MIPS_26", "symbol": "sceHiDMASet_BufferPtr"}, "892": {"type": "MIPS_26", "symbol": "_calc_image_size", "scope": "LIBRARY", "original": ".text"}, "904": {"type": "MIPS_26", "symbol": "sceHiDMAMake_LoadGS"}, "980": {"type": "MIPS_26", "symbol": "sceHiDMASet_BufferPtr"}}}}, "dd0166f1c5bc8107c240ceab6b5b36c8feeca850": {"d40117bf": {"type": "FUNCTION", "size": 1092, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["3.0.2"], "sdk": ["3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "_hip_tim2_err", "scope": "LIBRARY", "original": ".text"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_26", "symbol": "sceHiPlugTim2GetHead", "scope": "LIBRARY"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_26", "symbol": "sceHiPlugTim2GetData", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "sceHiDMAGet_BufferPtr"}, "128": {"type": "MIPS_26", "symbol": "GetTim2PictureHeader", "scope": "LIBRARY", "original": ".text"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "212": {"type": "MIPS_26", "symbol": "sceHiDMASet_BufferPtr"}, "236": {"type": "MIPS_26", "symbol": "_calc_image_size", "scope": "LIBRARY", "original": ".text"}, "248": {"type": "MIPS_26", "symbol": "sceHiDMAMake_LoadGS"}, "360": {"type": "MIPS_26", "symbol": "sceHiDMASet_BufferPtr"}, "380": {"type": "MIPS_26", "symbol": "_calc_image_size", "scope": "LIBRARY", "original": ".text"}, "392": {"type": "MIPS_26", "symbol": "sceHiDMAMake_LoadGS"}, "516": {"type": "MIPS_26", "symbol": "_hip_tim2_err", "scope": "LIBRARY", "original": ".text"}, "828": {"type": "MIPS_26", "symbol": "sceHiDMASet_BufferPtr"}, "852": {"type": "MIPS_26", "symbol": "_calc_image_size", "scope": "LIBRARY", "original": ".text"}, "864": {"type": "MIPS_26", "symbol": "sceHiDMAMake_LoadGS"}, "928": {"type": "MIPS_26", "symbol": "sceHiDMASet_BufferPtr"}, "948": {"type": "MIPS_26", "symbol": "_calc_image_size", "scope": "LIBRARY", "original": ".text"}, "960": {"type": "MIPS_26", "symbol": "sceHiDMAMake_LoadGS"}, "1036": {"type": "MIPS_26", "symbol": "sceHiDMASet_BufferPtr"}}}}}, "_hip_clutbump_err": {"1ace9adbfe680831d3937760b248141e983b67a7": {"273b4da8": {"type": "FUNCTION", "size": 48, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0"], "sdk": ["2.5.5", "2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": "sceHiErrState"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "sceHiErrState"}}}}, "ed9f0d68511b07924d73902bdb45ff58f7ec8844": {"81376de0": {"type": "FUNCTION", "size": 76, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceHiGetErrStatePtr"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "calc_clut": {"b05132b02eb100b05b9d33a47eafe998ecf85f02": {"fbbf29f8": {"type": "FUNCTION", "size": 620, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_26", "symbol": "memset"}, "104": {"type": "MIPS_26", "symbol": "sceVu0CopyVector"}, "116": {"type": "MIPS_26", "symbol": "sceVu0CopyVector"}, "176": {"type": "MIPS_26", "symbol": "sceVu0TransposeMatrix"}, "192": {"type": "MIPS_26", "symbol": "sceVu0ApplyMatrix"}, "204": {"type": "MIPS_26", "symbol": "sceVu0Normalize"}, "224": {"type": "MIPS_26", "symbol": "sceVu0ScaleVector"}, "252": {"type": "MIPS_26", "symbol": "sceVu0InnerProduct"}}}}}, "ClutBumpInit": {"63b6fe327e514394967e44b310222fd639f29461": {"5b858f5b": {"type": "FUNCTION", "size": 740, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "60": {"type": "MIPS_26", "symbol": "sceHiPlugClutBumpGetHead", "scope": "LIBRARY"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_26", "symbol": "sceHiPlugClutBumpGetHead", "scope": "LIBRARY"}, "88": {"type": "MIPS_LO16", "symbol")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: "", "original": ".rodata"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_26", "symbol": "_hip_clutbump_err", "scope": "LIBRARY", "original": ".text"}, "124": {"type": "MIPS_26", "symbol": "sceHiPlugShapeGetHead", "scope": "LIBRARY"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_26", "symbol": "_hip_clutbump_err", "scope": "LIBRARY", "original": ".text"}, "164": {"type": "MIPS_26", "symbol": "sceHiPlugTex2DGetHead", "scope": "LIBRARY"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_26", "symbol": "_hip_clutbump_err", "scope": "LIBRARY", "original": ".text"}, "208": {"type": "MIPS_26", "symbol": "_hip_clutbump_err", "scope": "LIBRARY", "original": ".text"}, "228": {"type": "MIPS_26", "symbol": "sceHiMemAlign"}, "244": {"type": "MIPS_26", "symbol": "_hip_clutbump_err", "scope": "LIBRARY", "original": ".text"}, "260": {"type": "MIPS_26", "symbol": "_hip_clutbump_err", "scope": "LIBRARY", "original": ".text"}, "276": {"type": "MIPS_26", "symbol": "_hip_clutbump_err", "scope": "LIBRARY", "original": ".text"}, "292": {"type": "MIPS_26", "symbol": "_hip_clutbump_err", "scope": "LIBRARY", "original": ".text"}, "308": {"type": "MIPS_26", "symbol": "_hip_clutbump_err", "scope": "LIBRARY", "original": ".text"}, "344": {"type": "MIPS_26", "symbol": "sceHiPlugClutBumpGetData", "scope": "LIBRARY"}, "384": {"type": "MIPS_26", "symbol": "sceHiPlugShapeGetMatrix", "scope": "LIBRARY"}, "480": {"type": "MIPS_26", "symbol": "sceHiPlugClutBumpGetData", "scope": "LIBRARY"}, "520": {"type": "MIPS_26", "symbol": "sceHiPlugTex2DGetData", "scope": "LIBRARY"}, "536": {"type": "MIPS_26", "symbol": "sceHiPlugTex2DGetClut", "scope": "LIBRARY"}, "600": {"type": "MIPS_26", "symbol": "sceHiPlugClutBumpGetData", "scope": "LIBRARY"}, "640": {"type": "MIPS_26", "symbol": "sceHiPlugClutBumpGetNormal", "scope": "LIBRARY"}}}}}, "sceHiPlugClutBump": {"9e8b0da77f7a2def38246f3ddf2813feb427e16b": {"bc386985": {"type": "FUNCTION", "size": 316, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"92": {"type": "MIPS_26", "symbol": "sceHiMemAlign"}, "112": {"type": "MIPS_26", "symbol": "_hip_clutbump_err", "scope": "LIBRARY", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "ClutBumpInit", "scope": "LIBRARY", "original": ".text"}, "168": {"type": "MIPS_26", "symbol": "sceHiMemFree"}, "184": {"type": "MIPS_26", "symbol": "sceHiMemFree"}, "224": {"type": "MIPS_26", "symbol": "calc_clut", "scope": "LIBRARY", "original": ".text"}, "252": {"type": "MIPS_26", "symbol": "_hip_clutbump_err", "scope": "LIBRARY", "original": ".text"}, "272": {"type": "MIPS_26", "symbol": "sceHiMemFree"}}}}}, "_hip_err": {"1ace9adbfe680831d3937760b248141e983b67a7": {"273b4da8": {"type": "FUNCTION", "size": 48, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0"], "sdk": ["2.5.5", "2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": "sceHiErrState"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "sceHiErrState"}}}}, "ed9f0d68511b07924d73902bdb45ff58f7ec8844": {"81376de0": {"type": "FUNCTION", "size": 76, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceHiGetErrStatePtr"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "shadowmap_view": {"f5e7d040bb88a4eef6ba943f9b9d0ecd271fd6e5": {"d8f5c892": {"type": "FUNCTION", "size": 1240, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"104": {"type": "MIPS_26", "symbol": "sceVu0ScaleVector"}, "176": {"type": "MIPS_26", "symbol": "sceVu0CopyVector"}, "200": {"type": "MIPS_26", "symbol": "sceVu0SubVector"}, "216": {"type": "MIPS_26", "symbol": "sceVu0AddVector"}, "248": {"type": "MIPS_26", "symbol": "sceVu0DivVector"}, "260": {"type": "MIPS_26", "symbol": "sceVu0Normalize"}, "564": {"type": "MIPS_26", "symbol": "sceVu0OuterProduct"}, "580": {"type": "MIPS_26", "symbol": "sceVu0Normalize"}, "612": {"type": "MIPS_26", "symbol": "sceVu0OuterProduct"}, "636": {"type": "MIPS_26", "symbol": "sceVu0CameraMatrix"}, "648": {"type": "MIPS_26", "symbol": "sceVu0CopyVector"}, "664": {"type": "MIPS_26", "symbol": "sceVu0ApplyMatrix"}, "932": {"type": "MIPS_26", "symbol": "sceVu0UnitMatrix"}, "1048": {"type": "MIPS_26", "symbol": "sceVu0MulMatrix"}, "1056": {"type": "MIPS_26", "symbol": "sceVu0UnitMatrix"}, "1136": {"type": "MIPS_26", "symbol": "sceVu0MulMatrix"}, "1148": {"type": "MIPS_26", "symbol": "sceVu0CopyMatrix"}, "1160": {"type": "MIPS_26", "symbol": "sceVu0CopyMatrix"}, "1172": {"type": "MIPS_26", "symbol": "sceVu0CopyVector"}}}}}, "shadowmap_init": {"2b2b0a9d6ab6bb54c95ce675a0c73b499c7eacb7": {"438c808f": {"type": "FUNCTION", "size": 196, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_26", "symbol": "sceHiGetInsPlug"}, "52": {"type": "MIPS_26", "symbol": "_hip_err", "original": ".text"}, "68": {"type": "MIPS_26", "symbol": "sceHiPlugMicroGetData", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "sceHiPlugMicroGetData", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "_hip_err", "original": ".text"}, "136": {"type": "MIPS_26", "symbol": "_hip_err", "original": ".text"}}}}, "cf36416da1b638a0eacb0c17388c552bc12cfc54": {"1aef264c": {"type": "FUNCTION", "size": 224, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.7.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_26", "symbol": "sceHiGetInsPlug"}, "52": {"type": "MIPS_26", "symbol": "_hip_err", "original": ".text"}, "68": {"type": "MIPS_26", "symbol": "sceHiPlugMicroGetData", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "sceHiPlugMicroGetData", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "_hip_err", "original": ".text"}, "168": {"type": "MIPS_26", "symbol": "sceHiPlugShadowBoxGetData", "scope": "LIBRARY"}, "184": {"type": "MIPS_26", "symbol": "_hip_err", "original": ".text"}}}}}, "sceHiPlugShadowMap": {"d246c6f380cf500ee1d66725b104c4c2e6371278": {"7659767d": {"type": "FUNCTION", "size": 284, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"92": {"type": "MIPS_26", "symbol": "sceHiMemAlign"}, "112": {"type": "MIPS_26", "symbol": "_hip_err", "original": ".text"}, "128": {"type": "MIPS_26", "symbol": "shadowmap_init", "scope": "LIBRARY", "original": ".text"}, "152": {"type": "MIPS_26)PS2SDB", 8192}, + std::string_view{R"PS2SDB(", "symbol": "sceHiMemFree"}, "192": {"type": "MIPS_26", "symbol": "shadowmap_view", "scope": "LIBRARY", "original": ".text"}, "220": {"type": "MIPS_26", "symbol": "_hip_err", "original": ".text"}, "240": {"type": "MIPS_26", "symbol": "sceHiMemFree"}}}}}, "shadowbox_calc": {"6f8c09a5ea95cf4ab57546289f2adba26d0c9159": {"fc0fed28": {"type": "FUNCTION", "size": 388, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"348": {"type": "MIPS_26", "symbol": "sceVu0ApplyMatrix"}}}}}, "sceHiPlugShadowBox": {"5bcf2eebd37658635b7ba23a12ca9f7a0107714f": {"eb152ff6": {"type": "FUNCTION", "size": 340, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"84": {"type": "MIPS_26", "symbol": "sceHiPlugShadowBoxGetData", "scope": "LIBRARY"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_26", "symbol": "_hip_err", "original": ".text"}, "124": {"type": "MIPS_26", "symbol": "sceHiPlugShapeGetHead", "scope": "LIBRARY"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_26", "symbol": "sceHiMemAlign"}, "164": {"type": "MIPS_26", "symbol": "_hip_err", "original": ".text"}, "180": {"type": "MIPS_26", "symbol": "sceHiPlugShapeGetMatrix", "scope": "LIBRARY"}, "196": {"type": "MIPS_26", "symbol": "_hip_err", "original": ".text"}, "244": {"type": "MIPS_26", "symbol": "shadowbox_calc", "scope": "LIBRARY", "original": ".text"}, "272": {"type": "MIPS_26", "symbol": "_hip_err", "original": ".text"}, "292": {"type": "MIPS_26", "symbol": "sceHiMemFree"}}}}}, "lightmap_view": {"b787dd34cf783b498afc8ce8a37a0fc4f242f55f": {"f529941e": {"type": "FUNCTION", "size": 636, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "memset"}, "108": {"type": "MIPS_26", "symbol": "sqrtf"}, "116": {"type": "MIPS_26", "symbol": "acosf"}, "280": {"type": "MIPS_26", "symbol": "sceVu0ScaleVector"}, "296": {"type": "MIPS_26", "symbol": "sceVu0CopyVector"}, "304": {"type": "MIPS_26", "symbol": "sceVu0UnitMatrix"}, "404": {"type": "MIPS_26", "symbol": "sceVu0OuterProduct"}, "416": {"type": "MIPS_26", "symbol": "sceVu0Normalize"}, "432": {"type": "MIPS_26", "symbol": "sceVu0OuterProduct"}, "456": {"type": "MIPS_26", "symbol": "sceVu0CameraMatrix"}, "464": {"type": "MIPS_26", "symbol": "sceVu0UnitMatrix"}, "472": {"type": "MIPS_26", "symbol": "tanf"}, "500": {"type": "MIPS_26", "symbol": "tanf"}, "568": {"type": "MIPS_26", "symbol": "sceVu0MulMatrix"}, "584": {"type": "MIPS_26", "symbol": "sceVu0CopyMatrix"}}}}}, "sceHiPlugLightMap": {"d101050877f401720cbca32b18c47bc9336a2b5b": {"6eaf8503": {"type": "FUNCTION", "size": 380, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"84": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_26", "symbol": "sceHiGetInsPlug"}, "112": {"type": "MIPS_26", "symbol": "_hip_err", "original": ".text"}, "128": {"type": "MIPS_26", "symbol": "sceHiMemAlign"}, "148": {"type": "MIPS_26", "symbol": "_hip_err", "original": ".text"}, "164": {"type": "MIPS_26", "symbol": "sceHiPlugMicroGetData", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "_hip_err", "original": ".text"}, "216": {"type": "MIPS_26", "symbol": "sceHiMemFree"}, "224": {"type": "MIPS_26", "symbol": "_hip_err", "original": ".text"}, "292": {"type": "MIPS_26", "symbol": "lightmap_view", "scope": "LIBRARY", "original": ".text"}, "320": {"type": "MIPS_26", "symbol": "_hip_err", "original": ".text"}, "340": {"type": "MIPS_26", "symbol": "sceHiMemFree"}}}}}, "_hip_fish_err": {"1ace9adbfe680831d3937760b248141e983b67a7": {"273b4da8": {"type": "FUNCTION", "size": 48, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0"], "sdk": ["2.5.5", "2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": "sceHiErrState"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "sceHiErrState"}}}}, "ed9f0d68511b07924d73902bdb45ff58f7ec8844": {"81376de0": {"type": "FUNCTION", "size": 76, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceHiGetErrStatePtr"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "FishEyeCalc": {"2e8a9ab093fca41e6f17da855a6456675adb71ee": {"08526062": {"type": "FUNCTION", "size": 132, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "sceVu0CameraMatrix"}, "64": {"type": "MIPS_26", "symbol": "sceVu0CopyMatrix"}, "80": {"type": "MIPS_26", "symbol": "sceVu0CopyVector"}}}}}, "FishEyeInit": {"df51fb05f132407ca52255dc94a999f925a4555d": {"e0d832b6": {"type": "FUNCTION", "size": 336, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_26", "symbol": "sceHiGetInsPlug"}, "52": {"type": "MIPS_26", "symbol": "sceHiPlugMicroGetData", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "_hip_fish_err", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHiPlugFishEye": {"17a827ce5759f289903a1d8530cd72d23e155523": {"40729fdf": {"type": "FUNCTION", "size": 296, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"92": {"type": "MIPS_26", "symbol": "sceHiMemAlign"}, "112": {"type": "MIPS_26", "symbol": "_hip_fish_err", "scope": "LIBRARY", "original": ".text"}, "128": {"type": "MIPS_26", "symbol": "FishEyeInit", "scope": "LIBRARY", "original": ".text"}, "152": {"type": "MIPS_26", "symbol": "sceHiMemFree"}, "204": {"type": "MIPS_26", "symbol": "FishEyeCalc", "scope": "LIBRARY", "original": ".text"}, "232": {"type": "MIPS_26", "symbol": "_hip_fish_err", "scope": "LIBRARY", "original": ".text"}, "252": {"type": "MIPS_26", "symbol": "sceHiMemFree"}}}}}, "_hip_refle_err": {"1ace9adbfe680831d3937760b248141e983b67a7": {"273b4da8": {"type": "FUNCTION", "size": 48, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0"], "sdk": ["2.5.5", "2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "sy)PS2SDB", 8192}, + std::string_view{R"PS2SDB(mbol": "", "original": ".rodata"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": "sceHiErrState"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "sceHiErrState"}}}}, "ed9f0d68511b07924d73902bdb45ff58f7ec8844": {"81376de0": {"type": "FUNCTION", "size": 76, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceHiGetErrStatePtr"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "ReflectCalc": {"447bbbb291086c3d0989b2f7e13b86f3c832cfb5": {"8010dfa4": {"type": "FUNCTION", "size": 148, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "sceVu0ScaleVector"}, "76": {"type": "MIPS_26", "symbol": "sceVu0CameraMatrix"}, "92": {"type": "MIPS_26", "symbol": "sceVu0CopyMatrix"}}}}}, "ReflectInit": {"3df4fe4c9788bd1f516baa719a7ecdee90318028": {"f6ac36e7": {"type": "FUNCTION", "size": 112, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "28": {"type": "MIPS_26", "symbol": "sceHiGetInsPlug"}, "44": {"type": "MIPS_26", "symbol": "_hip_refle_err", "original": ".text"}, "60": {"type": "MIPS_26", "symbol": "sceHiPlugMicroGetData", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "_hip_refle_err", "original": ".text"}}}}}, "sceHiPlugReflect": {"5132ce7f6d9606f054184e62ad78ef1a33ad1a2e": {"146eb8ab": {"type": "FUNCTION", "size": 296, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"92": {"type": "MIPS_26", "symbol": "sceHiMemAlign"}, "112": {"type": "MIPS_26", "symbol": "_hip_refle_err", "original": ".text"}, "128": {"type": "MIPS_26", "symbol": "ReflectInit", "scope": "LIBRARY", "original": ".text"}, "152": {"type": "MIPS_26", "symbol": "sceHiMemFree"}, "204": {"type": "MIPS_26", "symbol": "ReflectCalc", "scope": "LIBRARY", "original": ".text"}, "232": {"type": "MIPS_26", "symbol": "_hip_refle_err", "original": ".text"}, "252": {"type": "MIPS_26", "symbol": "sceHiMemFree"}}}}}, "RefractCalc": {"0460a1c1998d4f3ce84a2ff42ade9935f574036b": {"8010dfa4": {"type": "FUNCTION", "size": 156, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "sceVu0ScaleVector"}, "76": {"type": "MIPS_26", "symbol": "sceVu0CameraMatrix"}, "92": {"type": "MIPS_26", "symbol": "sceVu0CopyMatrix"}}}}}, "RefractInit": {"3df4fe4c9788bd1f516baa719a7ecdee90318028": {"f6ac36e7": {"type": "FUNCTION", "size": 112, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "28": {"type": "MIPS_26", "symbol": "sceHiGetInsPlug"}, "44": {"type": "MIPS_26", "symbol": "_hip_refle_err", "original": ".text"}, "60": {"type": "MIPS_26", "symbol": "sceHiPlugMicroGetData", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "_hip_refle_err", "original": ".text"}}}}}, "sceHiPlugRefract": {"5132ce7f6d9606f054184e62ad78ef1a33ad1a2e": {"80bcee0d": {"type": "FUNCTION", "size": 296, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"92": {"type": "MIPS_26", "symbol": "sceHiMemAlign"}, "112": {"type": "MIPS_26", "symbol": "_hip_refle_err", "original": ".text"}, "128": {"type": "MIPS_26", "symbol": "RefractInit", "scope": "LIBRARY", "original": ".text"}, "152": {"type": "MIPS_26", "symbol": "sceHiMemFree"}, "204": {"type": "MIPS_26", "symbol": "RefractCalc", "scope": "LIBRARY", "original": ".text"}, "232": {"type": "MIPS_26", "symbol": "_hip_refle_err", "original": ".text"}, "252": {"type": "MIPS_26", "symbol": "sceHiMemFree"}}}}}, "sceHiPlugShapeGetHead": {"182d34a2e8cf2caf1ca77538838f73c027a3a1ea": {"7302a31d": {"type": "FUNCTION", "size": 40, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "sceHiGetData"}}}}}, "sceHiPlugShapeGetDataHead": {"b7e2530e372f92f85c1186df759ef7c32464754d": {"00000000": {"type": "FUNCTION", "size": 44, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiPlugShapeGetMaterialHead": {"6764900c828bf08d449d178e73bf4cba7e9eae53": {"00000000": {"type": "FUNCTION", "size": 132, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiPlugShapeGetGeometryHead": {"5b5bd7bbe20174dde005f2d9c73ac648b03c5a52": {"00000000": {"type": "FUNCTION", "size": 76, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiPlugShapeGetMaterialGiftag": {"4cb3f4b58eee295cab3b6549fd179b63044263ad": {"00000000": {"type": "FUNCTION", "size": 32, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiPlugShapeGetMaterialAttrib": {"f932aab05b121e1be7682a621ccd2d5e75d453c3": {"00000000": {"type": "FUNCTION", "size": 44, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiPlugShapeGetGeometryVertex": {"f48b9788cfa768e618a32caf24f23a26e662a14b": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiPlugShapeGetGeometryNormal": {"fb97a8d08cd5f8a2741a3e1dd715088c7bd66410": {"00000000": {"type": "FUNCTION", "size": 28, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8)PS2SDB", 8192}, + std::string_view{R"PS2SDB(.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiPlugShapeGetGeometryST": {"5c5cf27bd96e505cc3a317dd1693d45683732cc9": {"00000000": {"type": "FUNCTION", "size": 28, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiPlugShapeGetGeometryColor": {"e777908b9276b7b8e50907fd09bcea2c330fd45e": {"00000000": {"type": "FUNCTION", "size": 32, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiPlugShapeGetMatrix": {"ea8dd0f00af4d5749cb1e668a05229668c46ff84": {"00000000": {"type": "FUNCTION", "size": 20, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiPlugHrchyGetHead": {"182d34a2e8cf2caf1ca77538838f73c027a3a1ea": {"7302a31d": {"type": "FUNCTION", "size": 40, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "sceHiGetData"}}}}}, "sceHiPlugHrchyGetData": {"c78c587944774e198e36bfcee49def38852610ed": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiPlugHrchyGetPivot": {"f48b9788cfa768e618a32caf24f23a26e662a14b": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiPlugTex2DGetHead": {"182d34a2e8cf2caf1ca77538838f73c027a3a1ea": {"7302a31d": {"type": "FUNCTION", "size": 40, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "sceHiGetData"}}}}}, "sceHiPlugTex2DGetData": {"d275047ec81b9352c25d134acb23b10f8f448729": {"00000000": {"type": "FUNCTION", "size": 48, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiPlugTex2DGetTexel": {"54230f79524bce78f3e55702a8a739716d177cae": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiPlugTex2DGetClut": {"34afd0d4f3c3a2969803b1d647732a828aca8757": {"00000000": {"type": "FUNCTION", "size": 20, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiPlugTex2DGetEnv": {"5315234e2472bcafe4463097f21d98a22de75cb1": {"00000000": {"type": "FUNCTION", "size": 52, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiPlugMicroGetData": {"9a58778c7b069eb3a0829bcb562a01575b4ceecc": {"b1df7f3a": {"type": "FUNCTION", "size": 44, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_26", "symbol": "sceHiGetData"}}}}}, "sceHiPlugShadowBoxGetData": {"9a58778c7b069eb3a0829bcb562a01575b4ceecc": {"b1df7f3a": {"type": "FUNCTION", "size": 44, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_26", "symbol": "sceHiGetData"}}}}}, "sceHiPlugClutBumpGetHead": {"182d34a2e8cf2caf1ca77538838f73c027a3a1ea": {"7302a31d": {"type": "FUNCTION", "size": 40, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "sceHiGetData"}}}}}, "sceHiPlugClutBumpGetData": {"f48b9788cfa768e618a32caf24f23a26e662a14b": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiPlugClutBumpGetNormal": {"96dccfaa65a7dc261be7f7675cbfe1b4c8e51481": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiPlugTim2GetHead": {"182d34a2e8cf2caf1ca77538838f73c027a3a1ea": {"7302a31d": {"type": "FUNCTION", "size": 40, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "sceHiGetData"}}}}}, "sceHiPlugTim2GetData": {"8a398bd3f073844dac8a3e74da94e0cb35a73d89": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiPlugAnimeGetHead": {"182d34a2e8cf2caf1ca77538838f73c027a3a1ea": {"7302a31d": {"type": "FUNCTION", "size": 40, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "sceHiGetData"}}}}}, "sceHiPlugAnimeGetData": {"f48b9788cfa768e618a32caf24f23a26e662a14b": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7)PS2SDB", 8192}, + std::string_view{R"PS2SDB(.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiPlugAnimeGetKeyHead": {"f57361c3afe600584d2807f798e8e4aca862a72a": {"00000000": {"type": "FUNCTION", "size": 44, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiPlugAnimeGetFrame": {"c7f474dcb71d9e04700ed13ad5b3ec30c130f31a": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiPlugAnimeGetValue": {"e86d873604656c1ccb9fc0d3672e78fb8481bb79": {"00000000": {"type": "FUNCTION", "size": 48, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiPlugShareGetHead": {"182d34a2e8cf2caf1ca77538838f73c027a3a1ea": {"7302a31d": {"type": "FUNCTION", "size": 40, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "sceHiGetData"}}}}}, "sceHiPlugShareGetData": {"f48b9788cfa768e618a32caf24f23a26e662a14b": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiPlugShareGetShare": {"f48b9788cfa768e618a32caf24f23a26e662a14b": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiPlugShareGetIndex": {"c7f474dcb71d9e04700ed13ad5b3ec30c130f31a": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiPlugShareGetSrc": {"f48b9788cfa768e618a32caf24f23a26e662a14b": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiPlugShareGetDst": {"fb97a8d08cd5f8a2741a3e1dd715088c7bd66410": {"00000000": {"type": "FUNCTION", "size": 28, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiPlugSkinGetHead": {"182d34a2e8cf2caf1ca77538838f73c027a3a1ea": {"7302a31d": {"type": "FUNCTION", "size": 40, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "sceHiGetData"}}}}}, "sceHiPlugSkinGetData": {"083caa9f57e421b58d45be9595d87a30d300db72": {"00000000": {"type": "FUNCTION", "size": 20, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiPlugSkinGetLB": {"c78c587944774e198e36bfcee49def38852610ed": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiPlugSkinGetLW": {"c78c587944774e198e36bfcee49def38852610ed": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiPlugSkinGetBW": {"c7f474dcb71d9e04700ed13ad5b3ec30c130f31a": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiPlugClipGetHead": {"182d34a2e8cf2caf1ca77538838f73c027a3a1ea": {"7302a31d": {"type": "FUNCTION", "size": 40, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "sceHiGetData"}}}}}, "sceHiPlugClipGetData": {"8a398bd3f073844dac8a3e74da94e0cb35a73d89": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.5.5", "2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHiPlugCameraGetData": {"790f6e2692a308b90521638032a8bac21173c929": {"0b4f9033": {"type": "FUNCTION", "size": 60, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "sceHiGetData"}}}}, "9a58778c7b069eb3a0829bcb562a01575b4ceecc": {"b1df7f3a": {"type": "FUNCTION", "size": 44, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "20": {"type": "MIPS_26", "symbol": "sceHiGetData"}}}}}, "set_euler_quat": {"e8deab05e97bd694f13dec524ce73cd3a340b69b": {"115d9701": {"type": "FUNCTION", "size": 264, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "DIntr"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "228": {"type": "MIPS_26", "symbol": "EIntr"}}}}}, "set_rot_quat": {"7cbe99ae4588b2865b8226bb665d5d28eb33607c": {"6ea5b7ba": {"type": "FUNCTION", "size": 188, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "DIntr"}, "156": {"type": "MIPS_26", "symbol": "EIntr"}}}}}, "_nullifyTranspose": {"23b3d731d505ca2ca6a56ac44ce32e2b33dec2c7": {"ba319cbf": {"type": "FUNCTION", "size": 56,)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "DIntr"}, "36": {"type": "MIPS_26", "symbol": "EIntr"}}}}}, "set_pivot_matrix": {"dd29be63e5a7df39aea76b780fa23fc61307e79a": {"dba17858": {"type": "FUNCTION", "size": 140, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "DIntr"}, "112": {"type": "MIPS_26", "symbol": "EIntr"}}}}}, "set_local_world": {"018cef2ae37ac0a34126a5c14d49728e0235419f": {"b177fbd7": {"type": "FUNCTION", "size": 252, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "DIntr"}, "216": {"type": "MIPS_26", "symbol": "EIntr"}}}}}, "set_light_rot": {"ee798a59833a61e26cdf51b707ce08e96b778aa5": {"e2bb6cb6": {"type": "FUNCTION", "size": 160, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "DIntr"}, "132": {"type": "MIPS_26", "symbol": "EIntr"}}}}}, "sceHiPlugHrchyGetMatrix": {"083caa9f57e421b58d45be9595d87a30d300db72": {"00000000": {"type": "FUNCTION", "size": 20, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.7.0", "2.7.1", "2.7.2-3", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "clip_calc": {"69d06a3236d651c2e49fc0bdcc2bf84d8a3b13b8": {"141c8498": {"type": "FUNCTION", "size": 540, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.7.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"212": {"type": "MIPS_26", "symbol": "sceVu0MulMatrix"}, "468": {"type": "MIPS_26", "symbol": "sceVu0ClipAll"}}}}}, "clip_init": {"75f5de4aeaa08910d7d0bbc5eec05504fd99848a": {"99d6de0d": {"type": "FUNCTION", "size": 376, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.7.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"176": {"type": "MIPS_26", "symbol": "sceHiPlugClipGetHead", "scope": "LIBRARY"}, "200": {"type": "MIPS_26", "symbol": "sceHiPlugClipGetData", "scope": "LIBRARY"}, "216": {"type": "MIPS_26", "symbol": "_hip_err", "original": ".text"}, "260": {"type": "MIPS_26", "symbol": "sceHiPlugShapeGetHead", "scope": "LIBRARY"}, "276": {"type": "MIPS_26", "symbol": "sceHiPlugShapeGetMatrix", "scope": "LIBRARY"}, "292": {"type": "MIPS_26", "symbol": "_hip_err", "original": ".text"}, "308": {"type": "MIPS_26", "symbol": "sceHiPlugMicroGetData", "scope": "LIBRARY"}, "324": {"type": "MIPS_26", "symbol": "_hip_err", "original": ".text"}}}}}, "sceHiPlugClip": {"505d9030ec9e0feab729729b7a8be8b4f3c44c93": {"108ba4c9": {"type": "FUNCTION", "size": 284, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.7.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"92": {"type": "MIPS_26", "symbol": "sceHiMemAlign"}, "112": {"type": "MIPS_26", "symbol": "_hip_err", "original": ".text"}, "128": {"type": "MIPS_26", "symbol": "clip_init", "scope": "LIBRARY", "original": ".text"}, "152": {"type": "MIPS_26", "symbol": "sceHiMemFree"}, "192": {"type": "MIPS_26", "symbol": "clip_calc", "scope": "LIBRARY", "original": ".text"}, "220": {"type": "MIPS_26", "symbol": "_hip_err", "original": ".text"}, "240": {"type": "MIPS_26", "symbol": "sceHiMemFree"}}}}}, "Vu0InverseMatrixRT": {"f4dfddd4d2457ebee480a27fb765a1afcacbe57b": {"eb213934": {"type": "FUNCTION", "size": 152, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "DIntr"}, "128": {"type": "MIPS_26", "symbol": "EIntr"}}}}, "08279d7cb1448624408beb1a9bd1530c5b4d7ac8": {"00000000": {"type": "FUNCTION", "size": 88, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.0"], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "Vu0InverseMatrix34": {"8811d514cea3a5425c8747c2dd4027778f03d28e": {"87aac19e": {"type": "FUNCTION", "size": 224, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "DIntr"}, "200": {"type": "MIPS_26", "symbol": "EIntr"}}}}, "4ce811812e678f70dc7398350628686ba5e240ee": {"00000000": {"type": "FUNCTION", "size": 160, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.0"], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "Vu0SetInit": {"722063dc91fefeb639f86c7703476545767ee5b5": {"7439a5e6": {"type": "FUNCTION", "size": 44, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "DIntr"}, "28": {"type": "MIPS_26", "symbol": "EIntr"}}}}, "ea3a2883567599465007d14e56f3eb6c56821d07": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.0"], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "load_ibm": {"2d8b6c14796650728b2c2d9334e2c66d65858713": {"a41e2bf6": {"type": "FUNCTION", "size": 68, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "DIntr"}, "48": {"type": "MIPS_26", "symbol": "EIntr"}}}}, "e88d3150ef704175482b6df09064d7bcbc8f30dc": {"00000000": {"type": "FUNCTION", "size": 20, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.0"], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "getgeomptr": {"26b0367ac994742472b0a306f664924f5550070f": {"21b92d00": {"type": "FUNCTION", "size": 140, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.7.0", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "sceHiPlugShapeGetDataHead", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "sceHiPlugShapeGetMaterialHead", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "sceHiPlugShapeGetGeometryHead", "scope": "LIBRARY"}}}}}, "searchbasemat": {"c543e3f86117fc1f465894291271aba688f3a1dd": {"00000000": {"type": "FUNCTION", "size": 64, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.7.0", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "find_and_load_ibm": {"3e6ab48a6bca99525a134af9afb59c8d5734c1e9": {"03061323": {"type": "FUNCTION", "size": 132, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "searchbasemat", "scope": "LIBRARY", "original": ".text"}, "52": {"type": "MIPS_26", "symbol": "Vu0InverseMatrixRT", "scope": "LIBRARY", "original": ".text"}, "68": {"type": "MIPS_26", "symbol": "Vu0InverseMatrix34", "scope": "LIBRARY", "original)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": ".text"}, "84": {"type": "MIPS_26", "symbol": "Vu0UnitMatrix", "scope": "LIBRARY", "original": ".text"}, "100": {"type": "MIPS_26", "symbol": "Vu0UnitMatrix", "scope": "LIBRARY", "original": ".text"}, "108": {"type": "MIPS_26", "symbol": "load_ibm", "scope": "LIBRARY", "original": ".text"}}}}, "279ad0f3e13de4d206acc7b87eac8fbcb3d4d15b": {"2582708e": {"type": "FUNCTION", "size": 144, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.0"], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "searchbasemat", "scope": "LIBRARY", "original": ".text"}, "52": {"type": "MIPS_26", "symbol": "Vu0InverseMatrixRT", "scope": "LIBRARY", "original": ".text"}, "68": {"type": "MIPS_26", "symbol": "Vu0InverseMatrix34", "scope": "LIBRARY", "original": ".text"}, "120": {"type": "MIPS_26", "symbol": "load_ibm", "scope": "LIBRARY", "original": ".text"}}}}}, "Vu0Weight_Rigid": {"481dbee849e24d94ff4ee58d218498bc5bd4c7e1": {"4cd56e61": {"type": "FUNCTION", "size": 192, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "DIntr"}, "160": {"type": "MIPS_26", "symbol": "EIntr"}}}}, "0408eeb6a92fcb5bd02f5e64b81220c922074aab": {"00000000": {"type": "FUNCTION", "size": 96, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.0"], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "Vu0Weight": {"d452511422f8fbdf8536c4d7af4d00f4c4c077a5": {"a5d2b866": {"type": "FUNCTION", "size": 408, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "DIntr"}, "372": {"type": "MIPS_26", "symbol": "EIntr"}}}}, "904be826dae26067005c9d3e9cc97f3ae32af1fc": {"00000000": {"type": "FUNCTION", "size": 296, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.0"], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "Vu0WeightNormal_Normalize": {"529d8471e9447cb948eb5cf1297889ad18f92e56": {"dd64c561": {"type": "FUNCTION", "size": 188, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "DIntr"}, "164": {"type": "MIPS_26", "symbol": "EIntr"}}}}, "6817794449cf2171a7c55655b488a325d94b006a": {"00000000": {"type": "FUNCTION", "size": 124, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.0"], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "Vu0WeightNormal": {"83ff99c9d06a73cad4997585478cf3348ac17752": {"5ebd30ca": {"type": "FUNCTION", "size": 112, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "DIntr"}, "88": {"type": "MIPS_26", "symbol": "EIntr"}}}}, "d63fab2b84fdd713f1fad71ab2840307a27cf6bc": {"00000000": {"type": "FUNCTION", "size": 48, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.0"], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "vu0_skin": {"f240c7ab2b50ccad7b0ca551c85fdb34851f6ff6": {"8ce2d143": {"type": "FUNCTION", "size": 492, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"168": {"type": "MIPS_26", "symbol": "_hip_err", "original": ".text"}, "184": {"type": "MIPS_26", "symbol": "DIntr"}, "196": {"type": "MIPS_26", "symbol": "Vu0SetInit", "scope": "LIBRARY", "original": ".text"}, "252": {"type": "MIPS_26", "symbol": "find_and_load_ibm", "scope": "LIBRARY", "original": ".text"}, "304": {"type": "MIPS_26", "symbol": "Vu0Weight_Rigid", "scope": "LIBRARY", "original": ".text"}, "332": {"type": "MIPS_26", "symbol": "Vu0Weight", "scope": "LIBRARY", "original": ".text"}, "368": {"type": "MIPS_26", "symbol": "Vu0WeightNormal", "scope": "LIBRARY", "original": ".text"}, "384": {"type": "MIPS_26", "symbol": "Vu0WeightNormal_Normalize", "scope": "LIBRARY", "original": ".text"}, "404": {"type": "MIPS_26", "symbol": "EIntr"}}}}, "46ede61613469b431d9ee3ad8a7213a7c204b2e4": {"37001a5e": {"type": "FUNCTION", "size": 456, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.0"], "sdk": ["2.7.0"], "compiler_versions": ["2.4.1.01"], "relocations": {"160": {"type": "MIPS_26", "symbol": "_hip_err", "original": ".text"}, "176": {"type": "MIPS_26", "symbol": "Vu0SetInit", "scope": "LIBRARY", "original": ".text"}, "240": {"type": "MIPS_26", "symbol": "find_and_load_ibm", "scope": "LIBRARY", "original": ".text"}, "292": {"type": "MIPS_26", "symbol": "Vu0Weight_Rigid", "scope": "LIBRARY", "original": ".text"}, "320": {"type": "MIPS_26", "symbol": "Vu0Weight", "scope": "LIBRARY", "original": ".text"}, "352": {"type": "MIPS_26", "symbol": "Vu0WeightNormal", "scope": "LIBRARY", "original": ".text"}, "368": {"type": "MIPS_26", "symbol": "Vu0WeightNormal_Normalize", "scope": "LIBRARY", "original": ".text"}}}}}, "skin_calc": {"9cd8f89243c3c564468216fba7bd4ab093c8ffd8": {"315fbf27": {"type": "FUNCTION", "size": 196, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.7.0", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"84": {"type": "MIPS_26", "symbol": "sceHiPlugShapeGetMatrix", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "sceVu0MulMatrix"}, "156": {"type": "MIPS_26", "symbol": "vu0_skin", "scope": "LIBRARY", "original": ".text"}}}}}, "vu0_skin_init": {"31a7df45a563ad845e9f9b76d1aadb9983bd2a4a": {"afa81d2f": {"type": "FUNCTION", "size": 204, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.7.0", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_26", "symbol": "sceHiGetData"}, "60": {"type": "MIPS_26", "symbol": "_hip_err", "original": ".text"}, "100": {"type": "MIPS_26", "symbol": "getgeomptr", "scope": "LIBRARY", "original": ".text"}, "124": {"type": "MIPS_26", "symbol": "sceHiPlugShapeGetGeometryVertex", "scope": "LIBRARY"}, "140": {"type": "MIPS_26", "symbol": "sceHiPlugShapeGetGeometryNormal", "scope": "LIBRARY"}}}}}, "skin_init": {"78b8e7a1ee3ceff9a471b1077b46bbb9d52d902a": {"ec1c6d63": {"type": "FUNCTION", "size": 288, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.7.0", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "76": {"type": "MIPS_26", "symbol": "sceHiPlugSkinGetHead", "scope": "LIBRARY"}, "136": {"type": "MIPS_26", "symbol": "sceHiPlugSkinGetHead", "scope": "LIBRARY"}, "172": {"type": "MIPS_26", "symbol": "sceHiPlugShapeGetHead", "scope": "LIBRARY"}, "188": {"type": "MIPS_26", "symbol": "_hip_err", "original": ".text"}, "216": {"type": "MIPS_26", "symbol": "vu0_skin_init", "scope": "LIBRARY", "original": ".text"}, "232": {"type": "MIPS_26", "symbol": "_hip_err", "original": ".text"}}}}}, "sceHiPlugSkin": {"3cae3e1ed4825a7254bd9681f8bc9f91c8cc86a4": {"7dca9b49": {"type": "FUNCTION", "size": 288, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.7.0", "2.8.0", "2.8.1", "3.0.0", "3.0.2"], )PS2SDB", 8192}, + std::string_view{R"PS2SDB("compiler_versions": ["2.4.1.01"], "relocations": {"88": {"type": "MIPS_26", "symbol": "sceHiMemAlloc"}, "108": {"type": "MIPS_26", "symbol": "_hip_err", "original": ".text"}, "124": {"type": "MIPS_26", "symbol": "skin_init", "scope": "LIBRARY", "original": ".text"}, "168": {"type": "MIPS_26", "symbol": "skin_calc", "scope": "LIBRARY", "original": ".text"}, "196": {"type": "MIPS_26", "symbol": "sceHiMemFree"}, "224": {"type": "MIPS_26", "symbol": "_hip_err", "original": ".text"}, "244": {"type": "MIPS_26", "symbol": "sceHiMemFree"}}}}}, "Vu0UnitMatrix": {"63ce2dd353cb7d50c6da453ba7b04199b8107f20": {"eae50a87": {"type": "FUNCTION", "size": 88, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.8.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "DIntr"}, "68": {"type": "MIPS_26", "symbol": "EIntr"}}}}}, "camera_calc": {"a3fbc279a93239a6800c03dc226de30047887189": {"dc45770f": {"type": "FUNCTION", "size": 240, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.7.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "sceVu0UnitMatrix"}, "52": {"type": "MIPS_26", "symbol": "sceVu0RotMatrix"}, "76": {"type": "MIPS_26", "symbol": "sceVu0ApplyMatrix"}, "100": {"type": "MIPS_26", "symbol": "sceVu0ApplyMatrix"}, "120": {"type": "MIPS_26", "symbol": "sceVu0ApplyMatrix"}, "136": {"type": "MIPS_26", "symbol": "sceVu0SubVector"}, "156": {"type": "MIPS_26", "symbol": "sceVu0CameraMatrix"}, "172": {"type": "MIPS_26", "symbol": "sceVu0MulMatrix"}, "188": {"type": "MIPS_26", "symbol": "sceVu0CopyMatrix"}, "204": {"type": "MIPS_26", "symbol": "sceVu0CopyVectorXYZ"}}}}}, "camera_init": {"5781fdd3db021563c9d1c3a7a8764b1eb2152859": {"796d6672": {"type": "FUNCTION", "size": 308, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.7.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "sceHiPlugCameraGetData", "scope": "LIBRARY"}, "36": {"type": "MIPS_26", "symbol": "_hip_err", "original": ".text"}, "52": {"type": "MIPS_26", "symbol": "sceHiPlugMicroGetData", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "_hip_err", "original": ".text"}, "128": {"type": "MIPS_26", "symbol": "sceVu0ViewScreenMatrix"}, "276": {"type": "MIPS_26", "symbol": "sceVu0CopyVector"}}}}}, "sceHiPlugCamera": {"0293b493979103a7ecb1274f9d7d301aaf770cd6": {"7af3c247": {"type": "FUNCTION", "size": 284, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.7.0", "2.8.0", "3.0.0", "3.0.2"], "sdk": ["2.7.0", "2.8.1", "3.0.0", "3.0.2"], "compiler_versions": ["2.4.1.01"], "relocations": {"92": {"type": "MIPS_26", "symbol": "sceHiMemAlign"}, "112": {"type": "MIPS_26", "symbol": "_hip_err", "original": ".text"}, "128": {"type": "MIPS_26", "symbol": "camera_init", "scope": "LIBRARY", "original": ".text"}, "152": {"type": "MIPS_26", "symbol": "sceHiMemFree"}, "192": {"type": "MIPS_26", "symbol": "camera_calc", "scope": "LIBRARY", "original": ".text"}, "220": {"type": "MIPS_26", "symbol": "_hip_err", "original": ".text"}, "240": {"type": "MIPS_26", "symbol": "sceHiMemFree"}}}}}, "sub_func": {"a4ce254844b024bf5d2374549155793fd05124c9": {"a573e457": {"type": "FUNCTION", "size": 208, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"76": {"type": "MIPS_26", "symbol": "sceVu0MulMatrix"}, "92": {"type": "MIPS_26", "symbol": "sceVu0CopyMatrix"}, "148": {"type": "MIPS_26", "symbol": "sub_func", "scope": "LIBRARY", "original": ".text"}}}}}, "pre_func": {"4920fa55c276929cdb443e388a3c8d7d1864e105": {"ffedab9a": {"type": "FUNCTION", "size": 168, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"80": {"type": "MIPS_26", "symbol": "sceVu0CopyMatrix"}, "96": {"type": "MIPS_26", "symbol": "sceVu0UnitMatrix"}, "112": {"type": "MIPS_26", "symbol": "sub_func", "scope": "LIBRARY", "original": ".text"}}}}, "ce870b4439ce6a235a653bd4881e0f38a712e5ea": {"1395a870": {"type": "FUNCTION", "size": 436, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "sceHiPlugAnimeGetData", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "sceHiPlugHrchyGetMatrix", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "sceHiPlugAnimeGetKeyHead", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "sceHiPlugAnimeGetKeyHead", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "sceHiPlugAnimeGetFrame", "scope": "LIBRARY"}, "172": {"type": "MIPS_26", "symbol": "sceHiPlugAnimeGetFrame", "scope": "LIBRARY"}, "188": {"type": "MIPS_26", "symbol": "sceHiPlugAnimeGetValue", "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "keypoint", "original": ".text"}, "368": {"type": "MIPS_26", "symbol": "Linear", "original": ".text"}}}}}, "init_func": {"7724303e5a40463b80f4f08502caa8671a3d5954": {"729f1280": {"type": "FUNCTION", "size": 188, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "sceHiPlugHrchyGetHead", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "_hip_err", "original": ".text"}, "84": {"type": "MIPS_26", "symbol": "sceHiPlugHrchyGetMatrix", "scope": "LIBRARY"}, "120": {"type": "MIPS_26", "symbol": "sceHiPlugShapeGetHead", "scope": "LIBRARY"}, "136": {"type": "MIPS_26", "symbol": "_hip_err", "original": ".text"}, "152": {"type": "MIPS_26", "symbol": "sceHiPlugShapeGetMatrix", "scope": "LIBRARY"}}}}, "52f32d131a9c7f2c61531d72bc7986cac1a38cdc": {"2d9fdf58": {"type": "FUNCTION", "size": 272, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.0"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "sceHiPlugHrchyGetHead", "scope": "LIBRARY"}, "60": {"type": "MIPS_26", "symbol": "_hip_err", "original": ".text"}, "100": {"type": "MIPS_26", "symbol": "sceHiPlugAnimeGetHead", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "_hip_err", "original": ".text"}, "156": {"type": "MIPS_26", "symbol": "sceHiPlugAnimeGetHead", "scope": "LIBRARY"}, "172": {"type": "MIPS_26", "symbol": "_hip_err", "original": ".text"}, "212": {"type": "MIPS_26", "symbol": "sceHiPlugAnimeGetHead", "scope": "LIBRARY"}, "228": {"type": "MIPS_26", "symbol": "_hip_err", "original": ".text"}}}}}, "sceHiPlugMatrix": {"1c59fa8b41840f5475827ac3472d6b005d8c99fa": {"1994c327": {"type": "FUNCTION", "size": 300, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"92": {"type": "MIPS_26", "symbol": "sceHiMemAlign"}, "112": {"type": "MIPS_26", "symbol": "_hip_err", "original": ".text"}, "128": {"type": "MIPS_26", "symbol": "init_func", "original": ".text"}, "152": {"type": "MIPS_26", "symbol": "sceHiMemFree"}, "208": {"type": "MIPS_26", "symbol": "pre_func", "original": ".text"}, "236": {"type": "MIPS_26", "symbol": "_hip_err", "original": ".text"}, "256": {"type": "MIPS_26", "symbol": "sceHiMemFree"}}}}}, "sceHiPlugManime": {"a12d22660aeedd606c2c789e99ff9b026f951d3d": {"bd7f8be0": {"type": "FUNCTION", "size": 328, "library": "libhip", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.0"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"92": {"type": "MIPS_26", "symbol": "sceHiMemAlign"}, "112": {"type": "MIPS_26", "symbol": "_hip_err", "original": ".text"}, "128": {"type": "MIPS_26", "symbol": "init_func", "original": ".text"}, "152": {"type": "MIPS_26", "symbol": "sceHiMemFree"}, "228": {"type": "MIPS_26", "symbol": "pre_)PS2SDB", 8192}, + std::string_view{R"PS2SDB(func", "original": ".text"}, "264": {"type": "MIPS_26", "symbol": "_hip_err", "original": ".text"}, "284": {"type": "MIPS_26", "symbol": "sceHiMemFree"}}}}}, "setLocalTbp": {"56ae8e4ebe3a3f5ef58789cbbcf30ace1bcd4d68": {"d3e72eac": {"type": "FUNCTION", "size": 24, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "setLocalCbp": {"56ae8e4ebe3a3f5ef58789cbbcf30ace1bcd4d68": {"d3e72eac": {"type": "FUNCTION", "size": 24, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "getLocalTbp": {"ab426885fc62f3c7306a686a1280b5c9342d389b": {"55159f42": {"type": "FUNCTION", "size": 32, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "getLocalCbp": {"ab426885fc62f3c7306a686a1280b5c9342d389b": {"55159f42": {"type": "FUNCTION", "size": 32, "library": "libhip", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.7.2-3"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}}, "libcheck": {"sceChk01": {"23d68be7ab4322b8587c3054c4d3fc61abb8a017": {"9774173e": {"type": "FUNCTION", "size": 244, "library": "libcheck", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.7.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "ck_obj"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": "ck_obj_end"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "ck_obj"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": "ck_obj_end"}, "76": {"type": "MIPS_26", "symbol": "sceSifAllocIopHeap"}, "120": {"type": "MIPS_26", "symbol": "sceSifSetDma"}, "144": {"type": "MIPS_26", "symbol": "sceSifDmaStat"}, "168": {"type": "MIPS_26", "symbol": "sceSifLoadStartModuleBuffer"}, "200": {"type": "MIPS_26", "symbol": "sceSifFreeIopHeap"}}}}}}, "netglue_insck": {"__sceNetGlueErrnoLoc": {"5f75a52930f2f4a5c4f06dd1a84919a155b76250": {"62f8174f": {"type": "FUNCTION", "size": 40, "library": "netglue_insck", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__sceNetGlueHErrnoLoc": {"5f75a52930f2f4a5c4f06dd1a84919a155b76250": {"62f8174f": {"type": "FUNCTION", "size": 40, "library": "netglue_insck", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceNetGlueAbort": {"804b7eb3e8a23e1743f5d813aafe377c2f73c405": {"70463dc0": {"type": "FUNCTION", "size": 156, "library": "netglue_insck", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_26", "symbol": "", "original": ".text"}}}}}, "sceNetGlueAbortResolver": {"03e376b2c37fd978db47c522383654985826aadc": {"fe4ca348": {"type": "FUNCTION", "size": 120, "library": "netglue_insck", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_26", "symbol": "", "original": ".text"}}}}}, "sceNetGlueThreadInit": {"2cd67210935cf6e9782733d442556df7cc412ed6": {"00000000": {"type": "FUNCTION", "size": 40, "library": "netglue_insck", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceNetGlueThreadTerminate": {"2cd67210935cf6e9782733d442556df7cc412ed6": {"00000000": {"type": "FUNCTION", "size": 40, "library": "netglue_insck", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceNetGlueGethostbyaddr": {"edd33585aa76957a31a04e925bc81aa8c691cc88": {"ce4d9090": {"type": "FUNCTION", "size": 72, "library": "netglue_insck", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_26", "symbol": "", "original": ".text"}}}}}, "sceNetGlueGethostbyname": {"1e33bddbfcf8f084c5a2cdc386edc6ce4624278c": {"bb3919ec": {"type": "FUNCTION", "size": 508, "library": "netglue_insck", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "204": {"type": "MIPS_26", "symbol": "strncpy"}, "212": {"type": "MIPS_26", "symbol": "GetThreadId"}, "272": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "280": {"type": "MIPS_26", "symbol": "SleepThread"}, "340": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "344": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "356": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "360": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "376": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "380": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "472": {"type": "MIPS_26", "symbol": "", "original": ".text"}}}}}, "sceNetGlueInetAddr": {"9a54f1624b7830ec86fdf3e1609c7e006704289f": {"ff78dcbd": {"type": "FUNCTION", "size": 64, "library": "netglue_insck", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"])PS2SDB", 8192}, + std::string_view{R"PS2SDB(, "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "28": {"type": "MIPS_26", "symbol": "", "original": ".text"}}}}}, "sceNetGlueInetAton": {"ac578437c35dd0ce3aaed28357f852847612f945": {"0f667c9a": {"type": "FUNCTION", "size": 476, "library": "netglue_insck", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"240": {"type": "MIPS_26", "symbol": "strchr"}, "316": {"type": "MIPS_26", "symbol": "atoi"}}}}}, "sceNetGlueInetLnaof": {"9a54f1624b7830ec86fdf3e1609c7e006704289f": {"ff78dcbd": {"type": "FUNCTION", "size": 64, "library": "netglue_insck", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "28": {"type": "MIPS_26", "symbol": "", "original": ".text"}}}}}, "sceNetGlueInetMakeaddr": {"f02b2cc59a431b6498fded456bfed6d2bd629313": {"cfadd0de": {"type": "FUNCTION", "size": 68, "library": "netglue_insck", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_26", "symbol": "", "original": ".text"}}}}}, "sceNetGlueInetNetof": {"9a54f1624b7830ec86fdf3e1609c7e006704289f": {"ff78dcbd": {"type": "FUNCTION", "size": 64, "library": "netglue_insck", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "28": {"type": "MIPS_26", "symbol": "", "original": ".text"}}}}}, "sceNetGlueInetNetwork": {"9a54f1624b7830ec86fdf3e1609c7e006704289f": {"ff78dcbd": {"type": "FUNCTION", "size": 64, "library": "netglue_insck", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "28": {"type": "MIPS_26", "symbol": "", "original": ".text"}}}}}, "sceNetGlueInetNtoa": {"9f6bc21deddd8c54395a34bc944256936d7cdea1": {"98ac7dbe": {"type": "FUNCTION", "size": 132, "library": "netglue_insck", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"72": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_26", "symbol": "sprintf"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceNetGlueHtonl": {"9a54f1624b7830ec86fdf3e1609c7e006704289f": {"ff78dcbd": {"type": "FUNCTION", "size": 64, "library": "netglue_insck", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "28": {"type": "MIPS_26", "symbol": "", "original": ".text"}}}}}, "sceNetGlueHtons": {"575fc39ac28b58068c56749fa6866e7d8b63539f": {"00000000": {"type": "FUNCTION", "size": 72, "library": "netglue_insck", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceNetGlueNtohl": {"9a54f1624b7830ec86fdf3e1609c7e006704289f": {"ff78dcbd": {"type": "FUNCTION", "size": 64, "library": "netglue_insck", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "28": {"type": "MIPS_26", "symbol": "", "original": ".text"}}}}}, "sceNetGlueNtohs": {"842c4f61d36348510e1130befa07db2a54ba9394": {"cfadd0de": {"type": "FUNCTION", "size": 68, "library": "netglue_insck", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_26", "symbol": "", "original": ".text"}}}}}, "sceNetGlueAccept": {"170f1ca8b44fd122b15a7e2e5a728e11e1adbb1b": {"12030a52": {"type": "FUNCTION", "size": 76, "library": "netglue_insck", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_26", "symbol": "", "original": ".text"}}}}}, "sceNetGlueBind": {"170f1ca8b44fd122b15a7e2e5a728e11e1adbb1b": {"12030a52": {"type": "FUNCTION", "size": 76, "library": "netglue_insck", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_26", "symbol": "", "original": ".text"}}}}}, "sceNetGlueConnect": {"c6160c21952dd617ea6a8f84f1572e682d9c1fd6": {"9904268c": {"type": "FUNCTION", "size": 376, "library": "netglue_insck", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "176": {"type": "MIPS_26", "symbol": "GetThreadId"}, "260": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "268": {"type": "MIPS_26", "symbol": "SleepThread"}, "292": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "320": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "324": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "340": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "344": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceNetGlueGetpeername": {"170f1ca8b44fd122b15a7e2e5a728e11e1adbb1b": {"12030a52": {"type": "FUNCTION", "size": 76, "library": "netglue_insck", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_26", "symbol": "", "original": ".text"}}}}}, "sceNetGlueGetsockname": {"170f1ca8b44fd122b15a7e2e5a728e11e1adbb1b": {"12030a52": {"type": "FUNCTION", "size": 76, "library": "netglue_insck", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_26", "symbol": "", "original": ".text"}}}}}, "sceNetGlueGetsockopt": {"ea7ff2745a0f9e72f09f4649af33f6cf2982cfc9": {"baba1cc0": )PS2SDB", 8192}, + std::string_view{R"PS2SDB({"type": "FUNCTION", "size": 84, "library": "netglue_insck", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "48": {"type": "MIPS_26", "symbol": "", "original": ".text"}}}}}, "sceNetGlueListen": {"0c16592c044878f0462ba232903953b0acd0550d": {"ce4d9090": {"type": "FUNCTION", "size": 72, "library": "netglue_insck", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_26", "symbol": "", "original": ".text"}}}}}, "sceNetGlueRecv": {"f5eec932913aed08d7538c8a1fa37cfe2b2bc8e6": {"b0c604e1": {"type": "FUNCTION", "size": 356, "library": "netglue_insck", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"80": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "GetThreadId"}, "244": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "252": {"type": "MIPS_26", "symbol": "SleepThread"}, "292": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "308": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "312": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "320": {"type": "MIPS_26", "symbol": "", "original": ".text"}}}}}, "sceNetGlueRecvfrom": {"16d6416d241a8133ffe8af04cb5d4fb6e1ce936d": {"458ca2f4": {"type": "FUNCTION", "size": 88, "library": "netglue_insck", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "52": {"type": "MIPS_26", "symbol": "", "original": ".text"}}}}}, "sceNetGlueSend": {"0937be96bf7ce9671faf90942d8bf20a10bece96": {"b0c604e1": {"type": "FUNCTION", "size": 356, "library": "netglue_insck", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"80": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "GetThreadId"}, "244": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "252": {"type": "MIPS_26", "symbol": "SleepThread"}, "292": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "308": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "312": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "320": {"type": "MIPS_26", "symbol": "", "original": ".text"}}}}}, "sceNetGlueSendto": {"16d6416d241a8133ffe8af04cb5d4fb6e1ce936d": {"458ca2f4": {"type": "FUNCTION", "size": 88, "library": "netglue_insck", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "52": {"type": "MIPS_26", "symbol": "", "original": ".text"}}}}}, "sceNetGlueSetsockopt": {"ea7ff2745a0f9e72f09f4649af33f6cf2982cfc9": {"baba1cc0": {"type": "FUNCTION", "size": 84, "library": "netglue_insck", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "48": {"type": "MIPS_26", "symbol": "", "original": ".text"}}}}}, "sceNetGlueShutdown": {"bc6fd5075fbfe2f86fc8f3e9b3a80740225a909d": {"49cb4684": {"type": "FUNCTION", "size": 260, "library": "netglue_insck", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_26", "symbol": "GetThreadId"}, "132": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "140": {"type": "MIPS_26", "symbol": "SleepThread"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "212": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "224": {"type": "MIPS_26", "symbol": "", "original": ".text"}}}}}, "sceNetGlueSocket": {"d33f297360c20b3b52b11851328539f00493e8cf": {"dff816cc": {"type": "FUNCTION", "size": 252, "library": "netglue_insck", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"116": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_26", "symbol": "", "original": ".text"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}}, "netcnfif": {"sceNetcnfifSetup": {"c218bccf181621b466d571f9fc773902d67207e9": {"06db2f10": {"type": "FUNCTION", "size": 168, "library": "netcnfif", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "112": {"type": "MIPS_26", "symbol": "sceSifCheckStatRpc"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "e08a29fc37344e283786bdad4a0fc1a923dfd070": {"8ed37c72": {"type": "FUNCTION", "size": 160, "library": "netcnfif", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "120": {"type": "MIPS_26", "symbol": "sceSifCheckStatRpc"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceNetcnfifInit": {"fab141812ebd652c2fa591d91e0683a1186bcd30": {"cf6e5047": {"type": "FUNCTION", "size": 64, "library": "netcnfif", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceNetcnfifSetup", "scope": "LIBR)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ARY", "original": ".text"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "memset"}}}}, "a868ca567b294602642490193fef5083317f2d94": {"cc2e7437": {"type": "FUNCTION", "size": 16, "library": "netcnfif", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_26", "symbol": "bzero"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceNetcnfifCreateCallbackThread": {"87830824cf87f47d2e0dbfbbb9617fe88e517d05": {"3e2f11f1": {"type": "FUNCTION", "size": 196, "library": "netcnfif", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "sce_create_callback_thread", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "sceNetcnfifInit", "scope": "LIBRARY", "original": ".text"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}, "144": {"type": "MIPS_26", "symbol": "sce_delete_callback_thread", "scope": "LIBRARY"}, "160": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}}}}, "sceNetcnfifDeleteCallbackThread": {"7e868002bfb0ff280644f9848fa4f21f37db4fd5": {"b856ef9f": {"type": "FUNCTION", "size": 96, "library": "netcnfif", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sce_delete_callback_thread", "scope": "LIBRARY"}, "16": {"type": "MIPS_26", "symbol": "sceNetcnfifInit", "scope": "LIBRARY", "original": ".text"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}}}}}, "sceNetcnfifSync": {"a639a8a356321edbeccee089cae462e9fca431ea": {"afc4f523": {"type": "FUNCTION", "size": 8, "library": "netcnfif", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_26", "symbol": "sce_sync", "scope": "LIBRARY"}}}}}, "sceNetcnfifCheck": {"cd214a811aa1d3236114d66613d96c2bdf0f217a": {"afc4f523": {"type": "FUNCTION", "size": 8, "library": "netcnfif", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_26", "symbol": "sce_sync", "scope": "LIBRARY"}}}}, "ed6151bbbeff5232b7833637d4af198d7a497396": {"6d0f9513": {"type": "FUNCTION", "size": 32, "library": "netcnfif", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_26", "symbol": "sceSifCheckStatRpc"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceNetcnfifGetResult": {"962c2d22f17ea78e930f10e1516fa2ded148e973": {"d6ed632d": {"type": "FUNCTION", "size": 208, "library": "netcnfif", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}, "679a9ca7d5d578139f9346c6d526e67ded0882ba": {"d6ed632d": {"type": "FUNCTION", "size": 204, "library": "netcnfif", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceNetcnfifSetFNoDecode": {"91a00cf99e86fad5d436769a2a61b51e29e4a0be": {"d0e115d3": {"type": "FUNCTION", "size": 16, "library": "netcnfif", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}, "379568001121d67192b561489fbcf0e0086b0eb3": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "netcnfif", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceNetcnfifGetCount": {"7f861279e073747e7f44f597b6a7750d448b8dc9": {"4f9cc2d4": {"type": "FUNCTION", "size": 100, "library": "netcnfif", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "sceNetcnfifInit", "scope": "LIBRARY", "original": ".text"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_26", "symbol": "strcpy"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_26", "symbol": "sce_call_rpc", "scope": "LIBRARY"}}}}, "e1eb10f1ec74fed2dccf206bb697c3e4299e6bc3": {"62ea8482": {"type": "FUNCTION", "size": 124, "library": "netcnfif", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "sceNetcnfifInit", "scope": "LIBRARY", "original": ".text"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_26", "symbol": "strcpy"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}}}}}, "sceNetcnfifGetList": {"dbc15236ef048048f6ec854b0d2efd69b6ecbf63": {"dbfa10a5": {"type": "FUNCTION", "size": 140, "library": "netcnfif", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_26", "symbol": "sceNetcnfifInit", "scope": "LIBRARY", "original": ".text"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_26", "symbol": "strcpy"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_26", "symbol": "sce_call_rpc", "scope": "LIBRARY"}}}}, "9fbb8d2ab20f4fc3667394ff658723f8bec91419": {"d4fa7a88": {"type": "FUNCTION", "size": 164, "library": "netcnfif", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_26", "symbol": "sceNetcnfifInit", "scope": "LIBRARY", "original": ".text"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_26", "symbol": "strcpy"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {)PS2SDB", 8192}, + std::string_view{R"PS2SDB("type": "MIPS_26", "symbol": "sceSifCallRpc"}}}}}, "sceNetcnfifLoadEntry": {"1d805bad1de3c4d91cab1f8d81a4ebab9427d25e": {"14805e07": {"type": "FUNCTION", "size": 152, "library": "netcnfif", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "sceNetcnfifInit", "scope": "LIBRARY", "original": ".text"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_26", "symbol": "strcpy"}, "76": {"type": "MIPS_26", "symbol": "strcpy"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_26", "symbol": "sce_call_rpc", "scope": "LIBRARY"}}}}, "bc2e1f32b9345b6a9b8558919a2a8cdd4fce265b": {"8baa6da1": {"type": "FUNCTION", "size": 176, "library": "netcnfif", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "sceNetcnfifInit", "scope": "LIBRARY", "original": ".text"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_26", "symbol": "strcpy"}, "76": {"type": "MIPS_26", "symbol": "strcpy"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}}}}}, "sceNetcnfifLoadEntryAuto": {"3809ada5982823ec73f0fb819a7ab9a591eb4db9": {"ae6a1e27": {"type": "FUNCTION", "size": 964, "library": "netcnfif", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"96": {"type": "MIPS_26", "symbol": "free"}, "104": {"type": "MIPS_26", "symbol": "free"}, "136": {"type": "MIPS_26", "symbol": "sceNetcnfifGetCount", "scope": "LIBRARY", "original": ".text"}, "144": {"type": "MIPS_26", "symbol": "sceNetcnfifSync", "scope": "LIBRARY", "original": ".text"}, "160": {"type": "MIPS_26", "symbol": "sceNetcnfifGetResult", "scope": "LIBRARY", "original": ".text"}, "180": {"type": "MIPS_26", "symbol": "free"}, "208": {"type": "MIPS_26", "symbol": "memalign"}, "228": {"type": "MIPS_26", "symbol": "FlushCache"}, "248": {"type": "MIPS_26", "symbol": "sceNetcnfifGetList", "scope": "LIBRARY", "original": ".text"}, "256": {"type": "MIPS_26", "symbol": "sceNetcnfifSync", "scope": "LIBRARY", "original": ".text"}, "272": {"type": "MIPS_26", "symbol": "sceNetcnfifGetResult", "scope": "LIBRARY", "original": ".text"}, "292": {"type": "MIPS_26", "symbol": "free"}, "336": {"type": "MIPS_26", "symbol": "strcmp"}, "368": {"type": "MIPS_26", "symbol": "free"}, "384": {"type": "MIPS_26", "symbol": "sceNetcnfifGetCount", "scope": "LIBRARY", "original": ".text"}, "392": {"type": "MIPS_26", "symbol": "sceNetcnfifSync", "scope": "LIBRARY", "original": ".text"}, "408": {"type": "MIPS_26", "symbol": "sceNetcnfifGetResult", "scope": "LIBRARY", "original": ".text"}, "428": {"type": "MIPS_26", "symbol": "free"}, "452": {"type": "MIPS_26", "symbol": "memalign"}, "476": {"type": "MIPS_26", "symbol": "free"}, "484": {"type": "MIPS_26", "symbol": "free"}, "500": {"type": "MIPS_26", "symbol": "FlushCache"}, "520": {"type": "MIPS_26", "symbol": "sceNetcnfifGetList", "scope": "LIBRARY", "original": ".text"}, "528": {"type": "MIPS_26", "symbol": "sceNetcnfifSync", "scope": "LIBRARY", "original": ".text"}, "544": {"type": "MIPS_26", "symbol": "sceNetcnfifGetResult", "scope": "LIBRARY", "original": ".text"}, "576": {"type": "MIPS_26", "symbol": "FlushCache"}, "596": {"type": "MIPS_26", "symbol": "sceNetcnfifLoadEntry", "scope": "LIBRARY", "original": ".text"}, "608": {"type": "MIPS_26", "symbol": "sceNetcnfifSync", "scope": "LIBRARY", "original": ".text"}, "624": {"type": "MIPS_26", "symbol": "sceNetcnfifGetResult", "scope": "LIBRARY", "original": ".text"}, "680": {"type": "MIPS_26", "symbol": "strcmp"}, "728": {"type": "MIPS_26", "symbol": "free"}, "740": {"type": "MIPS_26", "symbol": "free"}, "756": {"type": "MIPS_26", "symbol": "FlushCache"}, "776": {"type": "MIPS_26", "symbol": "sceNetcnfifLoadEntry", "scope": "LIBRARY", "original": ".text"}, "784": {"type": "MIPS_26", "symbol": "sceNetcnfifSync", "scope": "LIBRARY", "original": ".text"}, "800": {"type": "MIPS_26", "symbol": "sceNetcnfifGetResult", "scope": "LIBRARY", "original": ".text"}, "820": {"type": "MIPS_26", "symbol": "free"}, "832": {"type": "MIPS_26", "symbol": "free"}, "848": {"type": "MIPS_26", "symbol": "free"}, "856": {"type": "MIPS_26", "symbol": "free"}, "872": {"type": "MIPS_26", "symbol": "free"}, "880": {"type": "MIPS_26", "symbol": "free"}, "896": {"type": "MIPS_26", "symbol": "free"}, "904": {"type": "MIPS_26", "symbol": "free"}}}}}, "sceNetcnfifAddEntry": {"599d53f50ce0894f3890d6547283c1f3c1d0fb82": {"77053578": {"type": "FUNCTION", "size": 136, "library": "netcnfif", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "sceNetcnfifInit", "scope": "LIBRARY", "original": ".text"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_26", "symbol": "strcpy"}, "68": {"type": "MIPS_26", "symbol": "strcpy"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_26", "symbol": "sce_call_rpc", "scope": "LIBRARY"}}}}, "90c5eae50c81b6351b253cb691074ccd1e319cd0": {"3ae63aad": {"type": "FUNCTION", "size": 160, "library": "netcnfif", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "sceNetcnfifInit", "scope": "LIBRARY", "original": ".text"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_26", "symbol": "strcpy"}, "68": {"type": "MIPS_26", "symbol": "strcpy"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}}}}}, "sceNetcnfifEditEntry": {"24379c4daab3dfdcdad27983be4065cff04dfccf": {"a70d1b6e": {"type": "FUNCTION", "size": 160, "library": "netcnfif", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "sceNetcnfifInit", "scope": "LIBRARY", "original": ".text"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_26", "symbol": "strcpy"}, "76": {"type": "MIPS_26", "symbol": "strcpy"}, "88": {"type": "MIPS_26", "symbol": "strcpy"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_26", "symbol": "sce_call_rpc", "scope": "LIBRARY"}}}}, "48ddda815c20ba936d836d7a772b5b95e68c3e4e": {"2c900a97": {"type": ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(FUNCTION", "size": 184, "library": "netcnfif", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "sceNetcnfifInit", "scope": "LIBRARY", "original": ".text"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_26", "symbol": "strcpy"}, "76": {"type": "MIPS_26", "symbol": "strcpy"}, "88": {"type": "MIPS_26", "symbol": "strcpy"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}}}}}, "sceNetcnfifDeleteEntry": {"d8ae413292fc7ab2416c8fd9c9115ca2d42b99b1": {"8bc7deaf": {"type": "FUNCTION", "size": 124, "library": "netcnfif", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "sceNetcnfifInit", "scope": "LIBRARY", "original": ".text"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_26", "symbol": "strcpy"}, "68": {"type": "MIPS_26", "symbol": "strcpy"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_26", "symbol": "sce_call_rpc", "scope": "LIBRARY"}}}}, "23f635574baf4574cdaeb69b945a72efb319238a": {"c6873eeb": {"type": "FUNCTION", "size": 148, "library": "netcnfif", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "sceNetcnfifInit", "scope": "LIBRARY", "original": ".text"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_26", "symbol": "strcpy"}, "68": {"type": "MIPS_26", "symbol": "strcpy"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}}}}}, "sceNetcnfifSetLatestEntry": {"06c3177010087787eb31b2daf5a6adf0167dad1c": {"8bc7deaf": {"type": "FUNCTION", "size": 124, "library": "netcnfif", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "sceNetcnfifInit", "scope": "LIBRARY", "original": ".text"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_26", "symbol": "strcpy"}, "68": {"type": "MIPS_26", "symbol": "strcpy"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_26", "symbol": "sce_call_rpc", "scope": "LIBRARY"}}}}, "899824ab59aecdec395c8eaa4e12be2cd4554a90": {"c6873eeb": {"type": "FUNCTION", "size": 148, "library": "netcnfif", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "sceNetcnfifInit", "scope": "LIBRARY", "original": ".text"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_26", "symbol": "strcpy"}, "68": {"type": "MIPS_26", "symbol": "strcpy"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}}}}}, "sceNetcnfifDeleteAll": {"8ff1ca0e5c94f47934e1b26bfa2d8bbaefd9a7cd": {"253c20f9": {"type": "FUNCTION", "size": 84, "library": "netcnfif", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "sceNetcnfifInit", "scope": "LIBRARY", "original": ".text"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "strcpy"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "sce_call_rpc", "scope": "LIBRARY"}}}}, "ab205c522af0493952665fd0467a0040a99e3efe": {"0929ddfc": {"type": "FUNCTION", "size": 108, "library": "netcnfif", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "sceNetcnfifInit", "scope": "LIBRARY", "original": ".text"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "strcpy"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}}}}}, "sceNetcnfifCheckCapacity": {"a640d20581ce871269c021a9bf34d637638e888f": {"253c20f9": {"type": "FUNCTION", "size": 84, "library": "netcnfif", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "sceNetcnfifInit", "scope": "LIBRARY", "original": ".text"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "strcpy"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "sce_call_rpc", "scope": "LIBRARY"}}}}, "35cde34b1a245c1d3047705250362d77b7c820be": {"0929ddfc": {"type": "FUNCTION", "size": 108, "library": "netcnfif", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "sceNetcnfifInit", "scope": "LIBRARY", "original": ".text"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "strcpy"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}}}}}, "sceNetcnfifCheckAdditionalAT": {"88f5033b29e7c9523c53b67e908137b065a2c707": {"253c20f9": {"type": "FUNCTION", "size": 84, "library": "netcnfif", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "sceNetcnfifInit", "scope": "LIBRARY", "original": ".text"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "strcpy"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "sce_call_rpc", "scope": "LIBRARY"}}}}, "b111410adc8cf90c1453d204dbcb0afbacfe9aa2": {"0929ddfc": {"type": "FUNCTION", "size": 108, "library": "netcnfif", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "sceNetcnfifInit", "scope": "LIBRARY", "original": ".text"}, "24": )PS2SDB", 8192}, + std::string_view{R"PS2SDB({"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "strcpy"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}}}}}, "sceNetcnfifCheckSpecialProvider": {"3f94936ccb6f8b99405fb3150b15390153a96ed2": {"77053578": {"type": "FUNCTION", "size": 136, "library": "netcnfif", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "sceNetcnfifInit", "scope": "LIBRARY", "original": ".text"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_26", "symbol": "strcpy"}, "68": {"type": "MIPS_26", "symbol": "strcpy"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_26", "symbol": "sce_call_rpc", "scope": "LIBRARY"}}}}, "7d50448b54250e64da9f2397d376cea87a5e61b5": {"3ae63aad": {"type": "FUNCTION", "size": 160, "library": "netcnfif", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "sceNetcnfifInit", "scope": "LIBRARY", "original": ".text"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_26", "symbol": "strcpy"}, "68": {"type": "MIPS_26", "symbol": "strcpy"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}}}}}, "sceNetcnfifGetAddr": {"aa1028401e545d7b5062af104bf5de8bdf29ea57": {"c0c0ed65": {"type": "FUNCTION", "size": 52, "library": "netcnfif", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceNetcnfifInit", "scope": "LIBRARY", "original": ".text"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_26", "symbol": "sce_call_rpc", "scope": "LIBRARY"}}}}, "acda756b0ad98825abb8985cac5735ab2def543a": {"b09045e8": {"type": "FUNCTION", "size": 76, "library": "netcnfif", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceNetcnfifInit", "scope": "LIBRARY", "original": ".text"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}}}}}, "sceNetcnfifAllocWorkarea": {"f35b25379e11cb5bf56fb33b8f51deb92f13d923": {"e920de3c": {"type": "FUNCTION", "size": 64, "library": "netcnfif", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceNetcnfifInit", "scope": "LIBRARY", "original": ".text"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_26", "symbol": "sce_call_rpc", "scope": "LIBRARY"}}}}, "2e201278d85bc26589657a5f4e0465a9b97ba353": {"dac0edbd": {"type": "FUNCTION", "size": 88, "library": "netcnfif", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceNetcnfifInit", "scope": "LIBRARY", "original": ".text"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}}}}}, "sceNetcnfifFreeWorkarea": {"58de88511867c226308597f1b204c5bb2ebd1ff7": {"c0c0ed65": {"type": "FUNCTION", "size": 52, "library": "netcnfif", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceNetcnfifInit", "scope": "LIBRARY", "original": ".text"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_26", "symbol": "sce_call_rpc", "scope": "LIBRARY"}}}}, "5bfce674a025935ef922098b94eecf7b6cf17a1e": {"b09045e8": {"type": "FUNCTION", "size": 76, "library": "netcnfif", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceNetcnfifInit", "scope": "LIBRARY", "original": ".text"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}}}}}, "sceNetcnfifSetEnv": {"ad6844b912cda81dd730fc28b83adfa40f07790e": {"08529e5f": {"type": "FUNCTION", "size": 76, "library": "netcnfif", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceNetcnfifInit", "scope": "LIBRARY", "original": ".text"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_26", "symbol": "sce_call_rpc", "scope": "LIBRARY"}}}}, "dd451cf67798a1c9f0a77c0b1532bb573aa073d2": {"b8ebbba7": {"type": "FUNCTION", "size": 104, "library": "netcnfif", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3"], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceNetcnfifInit", "scope": "LIBRARY", "original": ".text"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( ".bss"}, "80": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}}}}}, "sceNetcnfifTerm": {"f6cb99035a555a178fc5c36b6992205e0e08838d": {"8e3c90f6": {"type": "FUNCTION", "size": 60, "library": "netcnfif", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceNetcnfifFreeWorkarea", "scope": "LIBRARY", "original": ".text"}, "24": {"type": "MIPS_26", "symbol": "sce_sync", "scope": "LIBRARY"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sce_callback": {"f99c433705c9263d8fd4cc0e3ca8913a249ca0fc": {"11c434b2": {"type": "FUNCTION", "size": 228, "library": "netcnfif", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sce_callback_function": {"d58d7e2b5cc105532155f846b2bc324f2a56d0ea": {"e24361c0": {"type": "FUNCTION", "size": 112, "library": "netcnfif", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_26", "symbol": "GetThreadId"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "sceSifSetRpcQueue"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_HI16", "symbol": "sce_callback", "original": ".text"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "sce_callback", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "sceSifRegisterRpc"}, "104": {"type": "MIPS_26", "symbol": "sceSifRpcLoop"}}}}}, "sce_create_callback_thread": {"6a4170c8f46a1e8167b9bb64c46b04f3da497900": {"f9a625a2": {"type": "FUNCTION", "size": 168, "library": "netcnfif", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "sce_callback_function", "original": ".text"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": "_gp"}, "16": {"type": "MIPS_LO16", "symbol": "sce_callback_function", "original": ".text"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": "_gp"}, "56": {"type": "MIPS_26", "symbol": "CreateThread"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_26", "symbol": "StartThread"}, "136": {"type": "MIPS_26", "symbol": "DeleteThread"}}}}, "eeeda3917c958c086dd1740c37520c39f8aa0360": {"9ddfe700": {"type": "FUNCTION", "size": 168, "library": "netcnfif", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "sce_callback_function", "original": ".text"}, "16": {"type": "MIPS_LO16", "symbol": "sce_callback_function", "original": ".text"}, "56": {"type": "MIPS_26", "symbol": "CreateThread"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_26", "symbol": "StartThread"}, "136": {"type": "MIPS_26", "symbol": "DeleteThread"}}}}, "6e824991a48265885e0e4c125baf0d648ca7bcbb": {"9ddfe700": {"type": "FUNCTION", "size": 168, "library": "netcnfif", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "sce_callback_function", "original": ".text"}, "16": {"type": "MIPS_LO16", "symbol": "sce_callback_function", "original": ".text"}, "56": {"type": "MIPS_26", "symbol": "CreateThread"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_26", "symbol": "StartThread"}, "136": {"type": "MIPS_26", "symbol": "DeleteThread"}}}}, "bf4dbf934cf5d948518d5f7b77df6d5e131bc978": {"9ddfe700": {"type": "FUNCTION", "size": 168, "library": "netcnfif", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "sce_callback_function", "original": ".text"}, "16": {"type": "MIPS_LO16", "symbol": "sce_callback_function", "original": ".text"}, "56": {"type": "MIPS_26", "symbol": "CreateThread"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_26", "symbol": "StartThread"}, "136": {"type": "MIPS_26", "symbol": "DeleteThread"}}}}, "e638680670d7f4d036707d169702bed2c623c3bb": {"9ddfe700": {"type": "FUNCTION", "size": 168, "library": "netcnfif", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "sce_callback_function", "original": ".text"}, "16": {"type": "MIPS_LO16", "symbol": "sce_callback_function", "original": ".text"}, "56": {"type": "MIPS_26", "symbol": "CreateThread"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_26", "symbol": "StartThread"}, "136": {"type": "MIPS_26", "symbol": "DeleteThread"}}}}, "0e11e1e26f26c7976e814d3643ad27917b6ad717": {"9ddfe700": {"type": "FUNCTION", "size": 168, "library": "netcnfif", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "sce_callback_function", "original": ".text"}, "16": {"type": "MIPS_LO16", "symbol": "sce_callback_function", "original": ".text"}, "56": {"type": "MIPS_26", "symbol": "CreateThread"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_26", "symbol": "StartThread"}, "136": {"type": "MIPS_26", "symbol": "DeleteThread"}}}}, "fb3fa62867986f9e8d9e22e0db9f13154d5f741b": {"9ddfe700": {"type": "FUNCTION", "size": 168, "library": "netcnfif", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "sce_callback_function", "original": ".text"}, "16": {"type": "MIPS_LO16", "symbol": "sce_callback_function", "original": ".text"}, "56": {"type": "MIPS_26", "symbol": "CreateThread"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_26", "symbol": "StartThread"}, "136": {"type": "MIPS_26", "symbol": "DeleteThread"}}}}}, "sce_delete_callback_thread": {"8d5743b5542c6dd8365e68be01d0be80409d4b06": {"d6b8d059": {"type": "FUNCTION", "size": 84, "library": "netcnfif", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "sceSifRemoveRpc"}, )PS2SDB", 8192}, + std::string_view{R"PS2SDB("40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_26", "symbol": "sceSifRemoveRpcQueue"}, "52": {"type": "MIPS_26", "symbol": "TerminateThread"}, "76": {"type": "MIPS_26", "symbol": "DeleteThread"}}}}}, "sce_cbfunc": {"3f0da5a63f64d287c34d04ebc64f19872541ff94": {"1e160fd9": {"type": "FUNCTION", "size": 36, "library": "netcnfif", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "iSignalSema"}}}}}, "sce_create_sema": {"244d4987a023a388ed856bf2ac959dc59f6ced91": {"934814d2": {"type": "FUNCTION", "size": 84, "library": "netcnfif", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "CreateSema"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sce_delete_sema": {"721bba3b5fd9b84760e60179cf388fd79509e1b6": {"3b4d75c4": {"type": "FUNCTION", "size": 84, "library": "netcnfif", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "DIntr"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "EIntr"}, "56": {"type": "MIPS_26", "symbol": "DeleteSema"}}}}}, "sce_call_rpc": {"4198663ea9c11dcfac4bee3aefc520452de7304c": {"e5138d30": {"type": "FUNCTION", "size": 144, "library": "netcnfif", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "sce_create_sema", "scope": "LIBRARY", "original": ".text"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "60": {"type": "MIPS_26", "symbol": "scePrintf"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "76": {"type": "MIPS_HI16", "symbol": "sce_cbfunc", "original": ".text"}, "92": {"type": "MIPS_LO16", "symbol": "sce_cbfunc", "original": ".text"}, "108": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}}}}}, "sce_sync": {"26331d20681b7f6d8b9751055b79013777398f4f": {"f091c441": {"type": "FUNCTION", "size": 140, "library": "netcnfif", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_26", "symbol": "WaitSema"}, "72": {"type": "MIPS_26", "symbol": "sce_delete_sema", "scope": "LIBRARY", "original": ".text"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_26", "symbol": "PollSema"}, "112": {"type": "MIPS_26", "symbol": "sce_delete_sema", "scope": "LIBRARY", "original": ".text"}}}}}, "sceNetcnfifSendIOP": {"185c79167e04a7f42f93fc6a6195b532d8c4cac8": {"3980388b": {"type": "FUNCTION", "size": 80, "library": "netcnfif", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.8.1"], "sdk": ["2.5.5", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "FlushCache"}, "60": {"type": "MIPS_26", "symbol": "sceSifSetDma"}}}}}, "sceNetcnfifDmaCheck": {"1383e3c487843c7935fdf98ccacc046f11a8b34f": {"087efbaf": {"type": "FUNCTION", "size": 36, "library": "netcnfif", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.8.1"], "sdk": ["2.5.5", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceSifDmaStat"}}}}}, "sceNetcnfifDataInit": {"5e948e63d2832a30a23ee9017abaf6dd0f771066": {"930a8832": {"type": "FUNCTION", "size": 116, "library": "netcnfif", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.8.1"], "sdk": ["2.5.5", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "bzero"}}}}}, "sceNetcnfifDataDump": {"abb3f2d3c49e5f645f4d6daaed6cc8d56386429b": {"1b30ba53": {"type": "FUNCTION", "size": 620, "library": "netcnfif", "scope": "GLOBAL", "is_interface": true, "versions": ["2.5.3", "2.8.1"], "sdk": ["2.5.5", "2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "28": {"type": "MIPS_26", "symbol": "scePrintf"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "44": {"type": "MIPS_26", "symbol": "scePrintf"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "60": {"type": "MIPS_26", "symbol": "scePrintf"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "76": {"type": "MIPS_26", "symbol": "scePrintf"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_26", "symbol": "scePrintf"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "108": {"type": "MIPS_26", "symbol": "scePrintf"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "124": {"type": "MIPS_26", "symbol": "scePrintf"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "140": {"type": "MIPS_26", "symbol": "scePrintf"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "156": {"type": "MIPS_26", "symbol": "scePrintf"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "172": {"type": "MIPS_26", "symbol": "scePrintf"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "188": {"type": "MIPS_26", "symbol": "scePrintf"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "204": {"type": "MIPS_26", "symbol": "scePrintf"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "212": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "220": {"type": "MIPS_26", "symbol": "scePrintf"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "228": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "236": {"type": "MIPS_26", "symbol": "scePrintf"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "244": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "252": {"type": "MIPS_26", "symbol": "scePrintf"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "260": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "268": {"type": "MIPS_26", "symbol": "scePrintf"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "276": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "284": {"type": "MIPS_26", "symbol": "scePrintf"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "292": {"type": "MIPS_HI16", "symbol":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "", "original": ".rodata"}, "300": {"type": "MIPS_26", "symbol": "scePrintf"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "308": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "316": {"type": "MIPS_26", "symbol": "scePrintf"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "324": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "332": {"type": "MIPS_26", "symbol": "scePrintf"}, "336": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "344": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "348": {"type": "MIPS_26", "symbol": "scePrintf"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "360": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "364": {"type": "MIPS_26", "symbol": "scePrintf"}, "368": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "376": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "380": {"type": "MIPS_26", "symbol": "scePrintf"}, "384": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "392": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "396": {"type": "MIPS_26", "symbol": "scePrintf"}, "400": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "408": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "412": {"type": "MIPS_26", "symbol": "scePrintf"}, "416": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "424": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "428": {"type": "MIPS_26", "symbol": "scePrintf"}, "432": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "440": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "444": {"type": "MIPS_26", "symbol": "scePrintf"}, "448": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "456": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "460": {"type": "MIPS_26", "symbol": "scePrintf"}, "464": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "472": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "476": {"type": "MIPS_26", "symbol": "scePrintf"}, "480": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "488": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "492": {"type": "MIPS_26", "symbol": "scePrintf"}, "496": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "504": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "508": {"type": "MIPS_26", "symbol": "scePrintf"}, "512": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "520": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "524": {"type": "MIPS_26", "symbol": "scePrintf"}, "528": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "536": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "540": {"type": "MIPS_26", "symbol": "scePrintf"}, "544": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "552": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "556": {"type": "MIPS_26", "symbol": "scePrintf"}, "560": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "568": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "572": {"type": "MIPS_26", "symbol": "scePrintf"}, "576": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "584": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "588": {"type": "MIPS_26", "symbol": "scePrintf"}, "592": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "612": {"type": "MIPS_26", "symbol": "scePrintf"}}}}}}, "ent_smap": {"set_recv_dma_ok_reg": {"80e9237312305c89f6423b195c094150d306a7a7": {"3ee8f792": {"type": "FUNCTION", "size": 68, "library": "ent_smap", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "sceEENetSifSendCmd"}}}}}, "sceEENetDeviceSMAPReg": {"8ee7639941523ca877084b5801f0d041e2331c46": {"c3b359a6": {"type": "FUNCTION", "size": 212, "library": "ent_smap", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "80": {"type": "MIPS_26", "symbol": "__sceEENetget_tpl"}, "96": {"type": "MIPS_26", "symbol": "__sceEENetget_tpl"}, "112": {"type": "MIPS_26", "symbol": "sceEENetRegDriver"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_26", "symbol": "sceEENetNotifyEEDriverIsReady"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "176": {"type": "MIPS_26", "symbol": "__sceEENetlog"}}}}}, "sceEENetDeviceSMAPUnreg": {"265873a87e8f3cb4b554fb751012c23c3af97517": {"ac2cc2b8": {"type": "FUNCTION", "size": 108, "library": "ent_smap", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceEENetNotifyEEDriverIsTerminated"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "48": {"type": "MIPS_26", "symbol": "sceEENetUnregDriver"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_26", "symbol": "__sceEENetlog"}}}}}, "smap_attach": {"cadb9715b8d2cb27db3bd5890a3f8e4f15b21081": {"52cda278": {"type": "FUNCTION", "size": 364, "library": "ent_smap", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "CreateSema"}, "64": {"type": "MIPS_26", "symbol": "CreateSema"}, "84": {"type": "MIPS_26", "symbol": "CreateSema"}, "104": {"type": "MIPS_26", "symbol": "CreateSema"}, "124": {"type": "MIPS_26", "symbol": "CreateSema"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "152": {"type": "MIPS_26", "symbol": "sceEENetSifAddCmdHandler"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "172": {"type": "MIPS_26", "symbol": "sceEENetSifAddCmdHandler"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "188": {"type": "MIPS_26", "symbol": "sceEENetSifBindRpc"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "200": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "216": {"type": "MIPS_26", "symbol": "__sceEENetifmedia_init"}, "224": {"type": "MIPS_26", "symbol": "smap_probemedia", "scope": "LIBRARY", "original": ".text"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "248": {"type": "MIPS_26", "symbol": "strncpy"}, "256": {"type": "MIPS_HI16", "symbol": "", "original)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": ".text"}, "260": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "296": {"type": "MIPS_26", "symbol": "__sceEENetif_attach"}, "308": {"type": "MIPS_26", "symbol": "__sceEENetether_ifattach"}, "328": {"type": "MIPS_26", "symbol": "__sceEENetbpfattach"}}}}}, "smap_detach": {"be3d1ae2fdd10751e0d5c0acefeee7ecab68ca67": {"0c957986": {"type": "FUNCTION", "size": 136, "library": "ent_smap", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "__sceEENetbpfdetach"}, "32": {"type": "MIPS_26", "symbol": "__sceEENetifmedia_delete_instance"}, "40": {"type": "MIPS_26", "symbol": "__sceEENetether_ifdetach"}, "48": {"type": "MIPS_26", "symbol": "__sceEENetif_detach"}, "56": {"type": "MIPS_26", "symbol": "sceEENetSifRemoveCmdHandler"}, "64": {"type": "MIPS_26", "symbol": "sceEENetSifRemoveCmdHandler"}, "72": {"type": "MIPS_26", "symbol": "DeleteSema"}, "80": {"type": "MIPS_26", "symbol": "DeleteSema"}, "88": {"type": "MIPS_26", "symbol": "DeleteSema"}, "96": {"type": "MIPS_26", "symbol": "DeleteSema"}, "104": {"type": "MIPS_26", "symbol": "DeleteSema"}}}}}, "smap_start": {"e5512ac2245bedf080f2f55692d3aab1f6c3b520": {"4b46044f": {"type": "FUNCTION", "size": 312, "library": "ent_smap", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_26", "symbol": "PollSema"}, "148": {"type": "MIPS_26", "symbol": "sceEENetMCopydata"}, "176": {"type": "MIPS_26", "symbol": "SignalSema"}, "192": {"type": "MIPS_26", "symbol": "__sceEENetbpf_mtap"}, "200": {"type": "MIPS_26", "symbol": "sceEENetMFreem"}, "208": {"type": "MIPS_26", "symbol": "FlushCache"}, "244": {"type": "MIPS_26", "symbol": "sceEENetSifSendCmd"}}}}}, "smap_intr": {"621d9dae788ab5656a63685ddfbb66aa631fa2a1": {"07e4f621": {"type": "FUNCTION", "size": 56, "library": "ent_smap", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "iSignalSema"}, "24": {"type": "MIPS_26", "symbol": "iSignalSema"}}}}}, "smap_input": {"ceb590c3c15bfaf2997aa10f6bdd23d908a4df03": {"8ec634b3": {"type": "FUNCTION", "size": 504, "library": "ent_smap", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "InvalidDCache"}, "48": {"type": "MIPS_26", "symbol": "__sceEENetspllock"}, "60": {"type": "MIPS_26", "symbol": "sceEENetMalloc"}, "72": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock"}, "88": {"type": "MIPS_26", "symbol": "__sceEENetMRetryhdr"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "120": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "188": {"type": "MIPS_26", "symbol": "__sceEENetspllock"}, "200": {"type": "MIPS_26", "symbol": "sceEENetMalloc"}, "216": {"type": "MIPS_26", "symbol": "__sceEENetMReclaim"}, "224": {"type": "MIPS_26", "symbol": "sceEENetMalloc"}, "240": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock"}, "312": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "320": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "324": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "328": {"type": "MIPS_26", "symbol": "sceEENetMFree"}, "364": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy"}, "384": {"type": "MIPS_26", "symbol": "set_recv_dma_ok_reg", "scope": "LIBRARY", "original": ".text"}, "412": {"type": "MIPS_26", "symbol": "__sceEENetbpf_mtap"}, "448": {"type": "MIPS_26", "symbol": "set_recv_dma_ok_reg", "scope": "LIBRARY", "original": ".text"}}}}}, "device_ready": {"07e1075e456ab9eb79256ef9756112a4ea165c95": {"09dce3d9": {"type": "FUNCTION", "size": 88, "library": "ent_smap", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "iSignalSema"}, "32": {"type": "MIPS_26", "symbol": "iSignalSema"}, "40": {"type": "MIPS_26", "symbol": "iSignalSema"}, "56": {"type": "MIPS_26", "symbol": "iPollSema"}}}}}, "smap_main": {"ae8e9cdaa840c907dcc175ae04200e0cec9bcf43": {"ceea3ac6": {"type": "FUNCTION", "size": 348, "library": "ent_smap", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "memset"}, "72": {"type": "MIPS_26", "symbol": "strncpy"}, "88": {"type": "MIPS_26", "symbol": "strncpy"}, "104": {"type": "MIPS_26", "symbol": "strncpy"}, "132": {"type": "MIPS_26", "symbol": "smap_attach", "scope": "LIBRARY", "original": ".text"}, "148": {"type": "MIPS_26", "symbol": "SignalSema"}, "164": {"type": "MIPS_26", "symbol": "set_recv_dma_ok_reg", "scope": "LIBRARY", "original": ".text"}, "172": {"type": "MIPS_26", "symbol": "WaitSema"}, "196": {"type": "MIPS_26", "symbol": "__sceEENetspllock"}, "208": {"type": "MIPS_26", "symbol": "PollSema"}, "228": {"type": "MIPS_26", "symbol": "smap_input", "scope": "LIBRARY", "original": ".text"}, "236": {"type": "MIPS_26", "symbol": "PollSema"}, "256": {"type": "MIPS_26", "symbol": "smap_start", "scope": "LIBRARY", "original": ".text"}, "264": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock"}, "280": {"type": "MIPS_26", "symbol": "smap_detach", "scope": "LIBRARY", "original": ".text"}, "312": {"type": "MIPS_26", "symbol": "SignalSema"}}}}}, "smap_term": {"bbfc999669785b6a4edbe0c5ec7473444ff5b7d8": {"5d49e24d": {"type": "FUNCTION", "size": 44, "library": "ent_smap", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "SignalSema"}}}}}, "smap_probemedia": {"f6482282ffbc8c5369552e8b98bae6c5cdf43b43": {"4d380fa6": {"type": "FUNCTION", "size": 152, "library": "ent_smap", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_26", "symbol": "__sceEENetifmedia_add"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_26", "symbol": "__sceEENetifmedia_add"}, "116": {"type": "MIPS_26", "symbol": "__sceEENetifmedia_set"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "smap_media_chg": {"aec64e1fdf9b552a6d1bef660faf6cbd4db3d733": {"84f0cb93": {"type": "FUNCTION", "size": 32, "library": "ent_smap", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "smap_set_media", "scope": "LIBRARY", "original": ".text"}}}}}, "smap_media_stat": {"6801d4e3b0ab091e3d203ddac8b1f314e895c292": {"00000000": {"type": "FUNCTION", "size": 64, "library": "ent_smap", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "smap_stop": {"5549065257ef872cbd907344aa8e3d89d38a856b": {"00000000": {"type": "FUNCTION", "size": 16, "library": "ent_smap", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "smap_set_mc": {"6ff9e3d598a2766590ca27816e147155f406588b": {"eba490c5": {"type": "FUNCTION", "size": 388, "library": "ent_smap", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"128": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy"}, "160": {"type": )PS2SDB", 8192}, + std::string_view{R"PS2SDB("MIPS_26", "symbol": "memcmp"}, "244": {"type": "MIPS_26", "symbol": "WaitSema"}, "296": {"type": "MIPS_26", "symbol": "sceEENetSifCallRpc"}, "340": {"type": "MIPS_26", "symbol": "SignalSema"}}}}}, "smap_init": {"104217bcb409b4f6ae1abfe5dbeb3a6b736d2dc5": {"d25e7e44": {"type": "FUNCTION", "size": 64, "library": "ent_smap", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "smap_set_media", "scope": "LIBRARY", "original": ".text"}, "20": {"type": "MIPS_26", "symbol": "smap_set_mc", "scope": "LIBRARY", "original": ".text"}, "56": {"type": "MIPS_26", "symbol": "smap_start", "scope": "LIBRARY", "original": ".text"}}}}}, "smap_ioctl": {"b0a15e1490dc5943ae089332b78871062c3e110c": {"755ded10": {"type": "FUNCTION", "size": 868, "library": "ent_smap", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "__sceEENetspllock"}, "284": {"type": "MIPS_26", "symbol": "WaitSema"}, "324": {"type": "MIPS_26", "symbol": "sceEENetSifCallRpc"}, "332": {"type": "MIPS_26", "symbol": "SignalSema"}, "424": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy"}, "440": {"type": "MIPS_26", "symbol": "smap_init", "scope": "LIBRARY", "original": ".text"}, "452": {"type": "MIPS_26", "symbol": "__sceEENetarp_ifinit"}, "488": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy"}, "512": {"type": "MIPS_26", "symbol": "__sceEENetifmedia_ioctl"}, "548": {"type": "MIPS_26", "symbol": "smap_stop", "scope": "LIBRARY", "original": ".text"}, "592": {"type": "MIPS_26", "symbol": "WaitSema"}, "632": {"type": "MIPS_26", "symbol": "sceEENetSifCallRpc"}, "640": {"type": "MIPS_26", "symbol": "SignalSema"}, "648": {"type": "MIPS_26", "symbol": "smap_init", "scope": "LIBRARY", "original": ".text"}, "664": {"type": "MIPS_26", "symbol": "WaitSema"}, "704": {"type": "MIPS_26", "symbol": "sceEENetSifCallRpc"}, "712": {"type": "MIPS_26", "symbol": "SignalSema"}, "720": {"type": "MIPS_26", "symbol": "smap_set_mc", "scope": "LIBRARY", "original": ".text"}, "740": {"type": "MIPS_26", "symbol": "__sceEENetether_addmulti"}, "760": {"type": "MIPS_26", "symbol": "__sceEENetether_delmulti"}, "784": {"type": "MIPS_26", "symbol": "smap_set_mc", "scope": "LIBRARY", "original": ".text"}, "820": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock"}}}}}, "smap_rpc_server_func": {"bab9caab38a8c24b10233cea3dbd115c27c65cc6": {"1fc82495": {"type": "FUNCTION", "size": 232, "library": "ent_smap", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "__sceEENetspllock"}, "92": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "164": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "192": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock"}}}}}, "smap_rpc_server": {"576652d6137abd304d31ecb6da004b3a1b112180": {"ea440ac6": {"type": "FUNCTION", "size": 220, "library": "ent_smap", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "sceEENetMemalign"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_26", "symbol": "memset"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_26", "symbol": "GetThreadId"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_26", "symbol": "sceSifSetRpcQueue"}, "132": {"type": "MIPS_HI16", "symbol": "smap_rpc_server_func", "original": ".text"}, "156": {"type": "MIPS_LO16", "symbol": "smap_rpc_server_func", "original": ".text"}, "160": {"type": "MIPS_26", "symbol": "sceSifRegisterRpc"}, "168": {"type": "MIPS_26", "symbol": "SignalSema"}, "176": {"type": "MIPS_26", "symbol": "sceSifRpcLoop"}}}}}, "smap_set_media": {"6bd7887607c83b0ac0ec94c148ac390b6c06e21c": {"7cb7a0f6": {"type": "FUNCTION", "size": 184, "library": "ent_smap", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "100": {"type": "MIPS_26", "symbol": "WaitSema"}, "140": {"type": "MIPS_26", "symbol": "sceEENetSifCallRpc"}, "160": {"type": "MIPS_26", "symbol": "SignalSema"}}}}}}, "libeenet": {"__sceEENetcallout_startup": {"24efcca210c734d2411cf2e14cd13a5ed1b76827": {"56836678": {"type": "FUNCTION", "size": 132, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_26", "symbol": "memset"}, "88": {"type": "MIPS_26", "symbol": "CreateSema"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__sceEENetcallout_term": {"3887f1de7e61e4ad19b4f8bb2aa8b864094372d9": {"2ffc74e1": {"type": "FUNCTION", "size": 12, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "4": {"type": "MIPS_26", "symbol": "DeleteSema"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__sceEENetcallout_init": {"dee740cfcb645b6ecc399ec83b0731c1da9e99c1": {"6f4fcff7": {"type": "FUNCTION", "size": 12, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_26", "symbol": "memset"}}}}}, "__sceEENetcallout_reset": {"5e5df4802f5b8a3ab5a4a98c8e423c73f6c4aa4c": {"36ca0a31": {"type": "FUNCTION", "size": 208, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "WaitSema"}, "80": {"type": "MIPS_26", "symbol": "__callout_stop", "scope": "LIBRARY", "original": ".text"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetsoftclock_ticks"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetsoftclock_ticks"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "200": {"type": "MIPS_26", "symbol": "SignalSema"}}}}}, "__sceEENetcallout_stop": {"5b7985d7990655afa4ff57ef5f75fb3c394daef7": {"3ee2b897": {"type": "FUNCTION", "size": 8, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(relocations": {"0": {"type": "MIPS_26", "symbol": "__callout_stop", "scope": "LIBRARY", "original": ".text"}}}}}, "__callout_stop": {"5410ef552e8559188aa157f1602c2de63f47a7c1": {"d2bf9736": {"type": "FUNCTION", "size": 248, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_26", "symbol": "WaitSema"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_26", "symbol": "SignalSema"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "216": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "220": {"type": "MIPS_26", "symbol": "SignalSema"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__sceEENetdomaininit": {"cf745e9ee4c7591fc135ef90922eda0b42f60475": {"315c5806": {"type": "FUNCTION", "size": 424, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetinetdomain"}, "8": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetarpdomain"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetinetdomain"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetarpdomain"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetroutedomain"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetroutedomain"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetmax_linkhdr"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetmax_protohdr"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetmax_datalen"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetmax_linkhdr"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetmax_linkhdr"}, "240": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetmax_protohdr"}, "244": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetmax_datalen"}, "248": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "252": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "256": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "260": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetmax_linkhdr"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetmax_linkhdr"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetmax_protohdr"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "300": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetmax_hdr"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetmax_datalen"}, "324": {"type": "MIPS_26", "symbol": "__sceEENetcallout_init", "scope": "LIBRARY"}, "328": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetmax_hdr"}, "332": {"type": "MIPS_26", "symbol": "__sceEENetcallout_init", "scope": "LIBRARY"}, "344": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "352": {"type": "MIPS_26", "symbol": "__sceEENetcallout_reset", "scope": "LIBRARY"}, "364": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "416": {"type": "MIPS_26", "symbol": "__sceEENetcallout_reset", "scope": "LIBRARY"}}}}}, "__sceEENetpffinddomain": {"52ceabe1b50ae8135803081de105a4790bf74ffe": {"d6ed632d": {"type": "FUNCTION", "size": 56, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__sceEENetpffindtype": {"0e3248cabc274731a1208f988ac8b962f2a4b83c": {"b1283a55": {"type": "FUNCTION", "size": 108, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "__sceEENetpffinddomain", "scope": "LIBRARY", "original": ".text"}}}}}, "__sceEENetpffindproto": {"fcb5071ae3c937c5ee04154cb7a0a0afcbd64afa": {"8a38711d": {"type": "FUNCTION", "size": 184, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "__sceEENetpffinddomain", "scope": "LIBRARY", "original": ".text"}}}}}, "__sceEENetnet_sysctl": {"5d7090b0d38498f9e11fd2a3e5da5e82c2b615c8": {"caa7442d": {"type": "FUNCTION", "size": 256, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"84": {"type": "MIPS_26", "symbol": "__sceEENetpffinddomain", "scope": "LIBRARY", "original": ".text"}}}}}, "__sceEENetpfctlinput": {"29cd92c0370fe15c27d7124a9a1497133a43466e": {"b6f95d0f": {"type": "FUNCTION", "size": 152, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__sceEENetpfslowtimo": {"eb788a19bc249df46a1e3d74e3cbe6ff52dbb07c": {"ba3a1e7d": {"type": "FUNCTION", "size": 192, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "184": {"type": "MIPS_26", "symbol": "__sceEENetcallout_reset", "scope": "LIBRARY"}}}}}, "__sceEENetpffasttimo": {"1c83d4c2b0d95a5591ca48d3dcb9c47a93249587": {"ba3a1e7d": {"type": "FUNCTION", "size": 192, "library": "libeenet", "scope": "GLOBAL", "is_interface": fa)PS2SDB", 8192}, + std::string_view{R"PS2SDB(lse, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "184": {"type": "MIPS_26", "symbol": "__sceEENetcallout_reset", "scope": "LIBRARY"}}}}}, "sceEENetHtonl": {"8158b9dba9ef3e3a2af0dcc960d8e3b7fdee2a0e": {"00000000": {"type": "FUNCTION", "size": 56, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceEENetHtons": {"fecd08d33720e493b1559c6e25d0fc7b244c244b": {"00000000": {"type": "FUNCTION", "size": 32, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "__sceEENetintoa": {"74c63fd768ef2d12549ee854d5bf3c0485445ea0": {"d7771b29": {"type": "FUNCTION", "size": 200, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceEENetNtohl", "scope": "LIBRARY"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "wrterror": {"e14211388ec153ff237c08b0a311ac5610ee98f0": {"df14533f": {"type": "FUNCTION", "size": 92, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "44": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "wrtwarning": {"4c2d77c62d5443cee56234815c7c4fc8e3690e28": {"eded5774": {"type": "FUNCTION", "size": 104, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_26", "symbol": "wrterror", "scope": "LIBRARY", "original": ".text"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}}}}}, "map_pages": {"32591edd44a352ec18682791244a2a6c2695b14c": {"3f30748d": {"type": "FUNCTION", "size": 116, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "malloc_pages": {"955236db18b2e4dd87e392026afa014abcc69f50": {"d415ab3d": {"type": "FUNCTION", "size": 520, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "176": {"type": "MIPS_26", "symbol": "map_pages", "scope": "LIBRARY", "original": ".text"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "200": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "208": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "260": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "264": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "268": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "272": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "276": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "324": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "328": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "332": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "336": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "340": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "344": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "356": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "364": {"type": "MIPS_26", "symbol": "memset"}, "372": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "376": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "392": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "396": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "400": {"type": "MIPS_HI16", "symbo)PS2SDB", 8192}, + std::string_view{R"PS2SDB(l": "", "original": ".bss"}, "404": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "412": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "416": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "420": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "432": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "440": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "444": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "460": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "464": {"type": "MIPS_26", "symbol": "ifree", "scope": "LIBRARY", "original": ".text"}}}}}, "malloc_bytes": {"599d9438cb13cbfc70949ff3696b975b52809853": {"da50c032": {"type": "FUNCTION", "size": 948, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_26", "symbol": "malloc_pages", "scope": "LIBRARY", "original": ".text"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "228": {"type": "MIPS_26", "symbol": "imalloc", "scope": "LIBRARY", "original": ".text"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "248": {"type": "MIPS_26", "symbol": "ifree", "scope": "LIBRARY", "original": ".text"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "320": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "324": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "328": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "384": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "388": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "392": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "472": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "568": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "576": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "580": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "592": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "636": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "660": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "664": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "712": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "716": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "812": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "844": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "876": {"type": "MIPS_26", "symbol": "memset"}, "888": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "900": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "imalloc": {"946b8f8e7a4f41e73e4b17fd894813d5cec5acd9": {"aacbcdf2": {"type": "FUNCTION", "size": 224, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_26", "symbol": "malloc_bytes", "scope": "LIBRARY", "original": ".text"}, "116": {"type": "MIPS_26", "symbol": "malloc_pages", "scope": "LIBRARY", "original": ".text"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "156": {"type": "MIPS_26", "symbol": "wrterror", "scope": "LIBRARY", "original": ".text"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "192": {"type": "MIPS_26", "symbol": "memset"}}}}}, "irealloc": {"e2e088a07da5b3d5d0b9fdc92cce9e56a7dc16ea": {"a4d963a7": {"type": "FUNCTION", "size": 640, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "208": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "244": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "292": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "312": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "344": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "364": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "372": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "376": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "384": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "428": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "436": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "440": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "444": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "500": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "504": {"type": "MIPS_26", "symbol": "wrtwarning", "scope": "LIBRARY", "original": ".text"}, "520": {"type": "MIPS_26", "symbol": "imalloc", "scope": "LIBRARY", "original": ".text"}, "568": {"type": "MIPS_26", "symbol": "__sce)PS2SDB", 8192}, + std::string_view{R"PS2SDB(EENetmemcpy", "scope": "LIBRARY"}, "592": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "600": {"type": "MIPS_26", "symbol": "ifree", "scope": "LIBRARY", "original": ".text"}}}}}, "ifree": {"2b08f7301f58d5d969a2f46c97da006cdb7589c7": {"54239ef8": {"type": "FUNCTION", "size": 184, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "28": {"type": "MIPS_26", "symbol": "wrtwarning", "scope": "LIBRARY", "original": ".text"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_26", "symbol": "wrtwarning", "scope": "LIBRARY", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "124": {"type": "MIPS_26", "symbol": "wrtwarning", "scope": "LIBRARY", "original": ".text"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "free_pages", "scope": "LIBRARY", "original": ".text"}, "168": {"type": "MIPS_26", "symbol": "free_bytes", "scope": "LIBRARY", "original": ".text"}}}}}, "__sceEENeteenet_malloc_init": {"8f9bfe6dc672c91997c29927b754a73934460f46": {"e22f1681": {"type": "FUNCTION", "size": 632, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_26", "symbol": "memset"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_26", "symbol": "memset"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "208": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "216": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "252": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "268": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "320": {"type": "MIPS_26", "symbol": "memset"}, "328": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "332": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "344": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "348": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "356": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "376": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "384": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "396": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "400": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "404": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "412": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "436": {"type": "MIPS_26", "symbol": "imalloc", "scope": "LIBRARY", "original": ".text"}, "440": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "444": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "452": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "460": {"type": "MIPS_26", "symbol": "memset"}, "480": {"type": "MIPS_26", "symbol": "CreateSema"}, "488": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "496": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "508": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "512": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "516": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "520": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "524": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "528": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "536": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "540": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "544": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "548": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "552": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "560": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "564": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "568": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "572": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "576": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "580": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "__sceEENeteenet_malloc_term": {"83d90b2ccc12dc6ef16e237b81e76390a62a5af2": {"52eb4b71": {"type": "FUNCTION", "size": 60, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "__sceEENetuser_mem_func_term", "scope": "LIBRARY"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", )PS2SDB", 8192}, + std::string_view{R"PS2SDB("original": ".bss"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_26", "symbol": "DeleteSema"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceEENetMallocStat": {"3af36872329d46bc55bf01f70bb83bed7a19ac1b": {"962d686d": {"type": "FUNCTION", "size": 100, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "__sceEENeteenet_malloc_internal": {"e0095761ffdd1e7f35de3f920443aa24aafcfc91": {"fa00174f": {"type": "FUNCTION", "size": 336, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "WaitSema"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_26", "symbol": "wrtwarning", "scope": "LIBRARY", "original": ".text"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_26", "symbol": "wrtwarning", "scope": "LIBRARY", "original": ".text"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "184": {"type": "MIPS_26", "symbol": "imalloc", "scope": "LIBRARY", "original": ".text"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "208": {"type": "MIPS_26", "symbol": "SignalSema"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "228": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "244": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "256": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "260": {"type": "MIPS_26", "symbol": "wrterror", "scope": "LIBRARY", "original": ".text"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "268": {"type": "MIPS_26", "symbol": "__sceEENetThreadErrno", "scope": "LIBRARY"}, "292": {"type": "MIPS_26", "symbol": "SignalSema"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "__sceEENeteenet_free_internal": {"35cf1bbee002ffba3f161180d05e9c8b3d280943": {"ecfa8217": {"type": "FUNCTION", "size": 164, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_26", "symbol": "WaitSema"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_26", "symbol": "wrtwarning", "scope": "LIBRARY", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_26", "symbol": "ifree", "scope": "LIBRARY", "original": ".text"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_26", "symbol": "SignalSema"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "__sceEENeteenet_realloc_internal": {"c0e8670aa62bafbe9d848c7c86edf04722fd8858": {"b792f488": {"type": "FUNCTION", "size": 424, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_26", "symbol": "WaitSema"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "108": {"type": "MIPS_26", "symbol": "wrtwarning", "scope": "LIBRARY", "original": ".text"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": "MIPS_HI16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "164": {"type": "MIPS_26", "symbol": "wrtwarning", "scope": "LIBRARY", "original": ".text"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "196": {"type": "MIPS_26", "symbol": "wrtwarning", "scope": "LIBRARY", "original": ".text"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "232": {"type": "MIPS_26", "symbol": "ifree", "scope": "LIBRARY", "original": ".text"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "256": {"type": "MIPS_26", "symbol": "imalloc", "scope": "LIBRARY", "original": ".text"}, "272": {"type": "MIPS_26", "symbol": "irealloc", "scope": "LIBRARY", "original": ".text"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "292": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "296": {"type": "MIPS_26", "symbol": "SignalSema"}, "300": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "316": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "332": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "336": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "344": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "348": {"type": "MIPS_26", "symbol": "wrterror", "scope": "LIBRARY", "original": ".text"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "356": {"type": "MIPS_26", "symbol": "__sceEENetThreadErrno", "scope": "LIBRARY"}, "380": {"type": "MIPS_26", "symbol": "SignalSema"}, "384": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "__sceEENeteenet_memalign_internal": {"9568f68b702056a09ef9c14a3c4dc292e663b4d2": {"13b1be47": {"type": "FUNCTION", "size": 128, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}}}}}, "free_pages": {"77ae4e401dc98ce53acd02a963d45a1393702418": {"ad1de736": {"type": "FUNCTION", "size": 876, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_26", "symbol": "wrtwarning", "scope": "LIBRARY", "original": ".text"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "156": {"type": "MIPS_26", "symbol": "wrtwarning", "scope": "LIBRARY", "original": ".text"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "232": {"type": "MIPS_26", "symbol": "wrtwarning", "scope": "LIBRARY", "original": ".text"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "288": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "292": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "296": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "300": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "304": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "308": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "312": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "372": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "380": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "384": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "388": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "392": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "396": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "400": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "404": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "408": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "412": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "416": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "428": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "436": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "444": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "456": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "468": {"type": "MIPS_26", "symbol": "memset"}, "480": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "492": {"type": "MIPS_26", "symbol": "imalloc", "scope": "LIBRARY", "original": ".text"}, "500": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "516": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "524": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "536": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "544": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "628": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "660": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "784": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "788": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "808": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "812": {"type": "MIPS_26", "symbol": "wrterror", "scope": "LIBRARY", "original": ".text"}, "816": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "828": {"type": "MIPS_26", "symbol": "ifree", "scope": "LIBRARY", "original": ".text"}}}}}, "free_bytes": {"4804e8d601a0fa87b726967c3481729c42af5f54": {"42efd69d": {"type": "FUNCTION", "size": 616, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "120": {"type": "MIPS_26", "symbol": "wrtwarning", "scope": "LIBRARY", "original": ".text"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "200": {"type": "MIPS_26", "symbol": "wrtwarning", "scope": "LIBRARY", "original": ".text"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "224": {"type)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": "MIPS_26", "symbol": "memset"}, "240": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "256": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "440": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "488": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "500": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "520": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "524": {"type": "MIPS_26", "symbol": "ifree", "scope": "LIBRARY", "original": ".text"}, "532": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "540": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "556": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "576": {"type": "MIPS_26", "symbol": "ifree", "scope": "LIBRARY", "original": ".text"}}}}}, "__sceEENetmbinit": {"4a802f31bc07382aa8d2a80d7d95649edd0d2ec9": {"0daaaba0": {"type": "FUNCTION", "size": 36, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__sceEENetMRetry": {"b6c0474ea4588e9d03fd5e29057e732333230ba4": {"5eabe04b": {"type": "FUNCTION", "size": 116, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "__sceEENetMReclaim", "scope": "LIBRARY", "original": ".text"}, "28": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "40": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "__sceEENetMRetryhdr": {"a1c6165732588f4cc429386adea5640accddfb19": {"5eabe04b": {"type": "FUNCTION", "size": 124, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "__sceEENetMReclaim", "scope": "LIBRARY", "original": ".text"}, "28": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "40": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "__sceEENetMReclaim": {"81818656b9cddf9e9225ddd5996e262a93c493a8": {"91e7e28f": {"type": "FUNCTION", "size": 212, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetdomains"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetdomains"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetifnetlst"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetifnetlst"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetifnetlst"}, "204": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "sceEENetMGet": {"5be2463acaef83ff8d2f9ad08c1483670d828e2e": {"373c82a5": {"type": "FUNCTION", "size": 144, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "40": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "__sceEENetMRetry", "scope": "LIBRARY", "original": ".text"}}}}}, "sceEENetMGethdr": {"6f8edef30f6fd626ad56ec56909e4d46faa81d49": {"d37d777c": {"type": "FUNCTION", "size": 152, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "40": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "__sceEENetMRetryhdr", "scope": "LIBRARY", "original": ".text"}}}}}, "sceEENetMGetclr": {"9ff0d8e8628440440bad4ef6583517af35a7148c": {"b0a528d5": {"type": "FUNCTION", "size": 168, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "40": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "__sceEENetMRetry", "scope": "LIBRARY", "original": ".text"}, "128": {"type": "MIPS_26", "symbol": "memset"}}}}}, "sceEENetMFree": {"839ee012528618c681102f76654112d1a79213dd": {"151b1973": {"type": "FUNCTION", "size": 252, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY", "original": ".text"}, "136": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "184": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "212": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "sceEENetMFreem": {"fa59123b95a22274f406896d083e1fcdb17734c9": {"999ecc29": {"type": "FUNCTION", "size": 276, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY", "original": ".text"}, "152": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "200": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "228": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "236": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "sceEENetMPrepend": {"c3bce223a85d865e654186e6cd7131e0f90f8aab": {"fe40cf3e": {"type": "FUNCTION", "size": 304, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "48": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "60": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "__sceEENetMRetry", "scope": "LIBRARY", "original": ".text"}, "104": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY", "original": ".text"}}}}}, "sceEENetMCopym": {"e42893914e3fe33789b75ad07b93d1cefcb84f0a": {"26eda0d2": {"type": "FUNCTION", "size": 28, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2)PS2SDB", 8192}, + std::string_view{R"PS2SDB(.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "m_copym0", "scope": "LIBRARY", "original": ".text"}}}}}, "sceEENetMDup": {"d46fcf192006027b6d884174312f53d43003fa9b": {"26eda0d2": {"type": "FUNCTION", "size": 28, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "m_copym0", "scope": "LIBRARY", "original": ".text"}}}}}, "m_copym0": {"825d2b3714393124520821bf8dec5940477eedfd": {"fb17a8ca": {"type": "FUNCTION", "size": 964, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"84": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_26", "symbol": "__sceEENetpanic", "scope": "LIBRARY"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "160": {"type": "MIPS_26", "symbol": "__sceEENetpanic", "scope": "LIBRARY"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "228": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "240": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "252": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "272": {"type": "MIPS_26", "symbol": "__sceEENetMRetry", "scope": "LIBRARY", "original": ".text"}, "492": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "544": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "560": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "572": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "588": {"type": "MIPS_26", "symbol": "__sceEENetMReclaim", "scope": "LIBRARY", "original": ".text"}, "596": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "608": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "752": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "776": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "840": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "844": {"type": "MIPS_26", "symbol": "__sceEENetpanic", "scope": "LIBRARY"}, "848": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "864": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "868": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "876": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "888": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY", "original": ".text"}, "896": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "904": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "912": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceEENetMCopypacket": {"6dc9aa749746da0d82ce45512e9c0ea44b6c7305": {"e4736274": {"type": "FUNCTION", "size": 692, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "48": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "60": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "__sceEENetMRetry", "scope": "LIBRARY", "original": ".text"}, "240": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "324": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "344": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "356": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "368": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "388": {"type": "MIPS_26", "symbol": "__sceEENetMRetry", "scope": "LIBRARY", "original": ".text"}, "496": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "552": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "600": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "628": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY", "original": ".text"}, "636": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "644": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "652": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceEENetMCopydata": {"13911db1deb87da87e7ccf71080f6eaec419af89": {"7baf5dbf": {"type": "FUNCTION", "size": 244, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_26", "symbol": "__sceEENetpanic", "scope": "LIBRARY"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "100": {"type": "MIPS_26", "symbol": "__sceEENetpanic", "scope": "LIBRARY"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_26", "symbol": "__sceEENetpanic", "scope": "LIBRARY"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "188": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}}}}}, "sceEENetMCat": {"99000293248a6b019d03e9bb75cbe7d62c37121b": {"0b39e7ff": {"type": "FUNCTION", "size": 200, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"132": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "156": {"type": "MIPS_26", "symbol": "sceEENetMFree", "scope": "LIBRARY", "original": ".text"}}}}}, "sceEENetMAdj": {"319a58468d5122137777b01883a185be7b7d90df": {"00000000": {"type": "FUNCTION", "size": 388, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceEENetMPullup": {"d58ada1d979dd2a6ba21d6f6d4edefeb21d7d67a": {"3bf09430": {"type": "FUNCTION", "size": 576, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"168": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "192": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "212": {"type": "MIPS_26", "symbol": "__sceEENetMRetry", "scope": "LIBRARY", "original": ".text"}, "340": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "360": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "412": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "468": {"type": "MIPS_26", "symbol": "sceEENetMFree", "scope": "LIBRARY", "original": ".text"}, "504": {"type": "MIPS_26", "symbol": "sceEENetMFree", "scope": "LIBRARY", "original": ".text"}, "512": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY", "original": ".text"}, "520": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "528": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "536": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceEENetMSplit": {"39896f39eb9fd3fe435f57b3d67b1d47e70f81c6": {"e27283cb": {"type": "FUNCTION", "size": 716, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"156": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: "sceEENetMalloc", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "200": {"type": "MIPS_26", "symbol": "__sceEENetMRetryhdr", "scope": "LIBRARY", "original": ".text"}, "296": {"type": "MIPS_26", "symbol": "sceEENetMSplit", "scope": "LIBRARY", "original": ".text"}, "312": {"type": "MIPS_26", "symbol": "sceEENetMFree", "scope": "LIBRARY", "original": ".text"}, "388": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "400": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "412": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "432": {"type": "MIPS_26", "symbol": "__sceEENetMRetry", "scope": "LIBRARY", "original": ".text"}, "552": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "604": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "640": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}}}}}, "sceEENetMDevget": {"957cf035c3b80c4c481676d6d066cb7a5ad0852d": {"82cd7ad2": {"type": "FUNCTION", "size": 712, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"92": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "132": {"type": "MIPS_26", "symbol": "__sceEENetMRetryhdr", "scope": "LIBRARY", "original": ".text"}, "200": {"type": "MIPS_26", "symbol": "sceEENetMFree", "scope": "LIBRARY", "original": ".text"}, "244": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "256": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "268": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "284": {"type": "MIPS_26", "symbol": "__sceEENetMRetry", "scope": "LIBRARY", "original": ".text"}, "304": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY", "original": ".text"}, "384": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "396": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "412": {"type": "MIPS_26", "symbol": "__sceEENetMReclaim", "scope": "LIBRARY", "original": ".text"}, "420": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "432": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "544": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "548": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "624": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}}}}}, "sceEENetMCopyback": {"22e901f027e16665a4cb8f0cbe614c6131c7926b": {"d4047f7b": {"type": "FUNCTION", "size": 380, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"104": {"type": "MIPS_26", "symbol": "sceEENetMGetclr", "scope": "LIBRARY", "original": ".text"}, "192": {"type": "MIPS_26", "symbol": "sceEENetMGet", "scope": "LIBRARY", "original": ".text"}, "280": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}}}}}, "__sceEENetm_pulldown": {"40d480323ebccf7e4d5b46cd4a288d9a6fa15ae6": {"1a47e3bb": {"type": "FUNCTION", "size": 1092, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_26", "symbol": "__sceEENetpanic", "scope": "LIBRARY"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "212": {"type": "MIPS_26", "symbol": "sceEENetMCopym", "scope": "LIBRARY"}, "464": {"type": "MIPS_26", "symbol": "sceEENetMCopydata", "scope": "LIBRARY"}, "488": {"type": "MIPS_26", "symbol": "sceEENetMAdj", "scope": "LIBRARY"}, "636": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "696": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "708": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "720": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "740": {"type": "MIPS_26", "symbol": "__sceEENetMRetry", "scope": "LIBRARY"}, "760": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "784": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "796": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "812": {"type": "MIPS_26", "symbol": "__sceEENetMReclaim", "scope": "LIBRARY"}, "820": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "832": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "904": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "912": {"type": "MIPS_26", "symbol": "sceEENetMFree", "scope": "LIBRARY"}, "940": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "984": {"type": "MIPS_26", "symbol": "sceEENetMCopydata", "scope": "LIBRARY"}, "1008": {"type": "MIPS_26", "symbol": "sceEENetMAdj", "scope": "LIBRARY"}}}}}, "Encode": {"97593dd12d026445db1bdf00ec173646852bf182": {"00000000": {"type": "FUNCTION", "size": 80, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "Decode": {"7058490dd6c692123d07cf401f9aa9c930e83481": {"00000000": {"type": "FUNCTION", "size": 96, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "__sceEENetMD5Init": {"0dbc33e0c1a0a7552c355e92e320840f43da3cb5": {"00000000": {"type": "FUNCTION", "size": 60, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "__sceEENetMD5Update": {"e74a9b665665bf4948b93ee1ba53d7135bf09426": {"e34f5a7a": {"type": "FUNCTION", "size": 236, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"124": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "136": {"type": "MIPS_26", "symbol": "MD5Transform", "original": ".text"}, "152": {"type": "MIPS_26", "symbol": "MD5Transform", "original": ".text"}, "228": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}}}}}, "__sceEENetMD5Final": {"5119b30416d9e04ea51301c9ce294db7f4d07307": {"ea5bc02f": {"type": "FUNCTION", "size": 156, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "Encode", "original": ".text"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_26", "symbol": "__sceEENetMD5Update", "scope": "LIBRARY", "original": ".text"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_26", "symbol": "__sceEENetMD5Update", "scope": "LIBRARY", "original": ".text"}, "112": {"type": "MIPS_26", "symbol": "Encode", "original": ".text"}, "128": {"type": "MIPS_26", "symbol": "memset"}}}}}, "MD5Transform": {"fcd5b366d84682d9d997f9e3e91fdb5eb0c43855": {"cf31b6d6": {"type": "FUNCTION", "size": 4112, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"76": {"type": "MIPS_26", "symbol": "Decode", "original": ".text"}, "4056": {"type": "MIPS_26", "symbol": "memset"}}}}}, "__sceEENetbcopy": {"daa93a5986cd40f4d8ad710dd274c4c84d9e749b": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "__sceEENetmemmove": {"6e5b17009c1cd67a9145b17d249f2c40aaf100cb":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( {"00000000": {"type": "FUNCTION", "size": 228, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "__sceEENetmemcpy": {"4f4d6aeb1b55ff1922cc81c3771a57046cbd207e": {"00000000": {"type": "FUNCTION", "size": 464, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "__sceEENetlog": {"77d35c256f0e92ab0c059dec5d0a7e3c8a63da44": {"c4b2c886": {"type": "FUNCTION", "size": 204, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetlog_level"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetlog_level"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "vsnprintf"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetlog_fd"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetlog_fd"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_26", "symbol": "scePrintf"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "132": {"type": "MIPS_26", "symbol": "strlen"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetlog_sema"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetlog_sema"}, "144": {"type": "MIPS_26", "symbol": "WaitSema"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetlog_fd"}, "160": {"type": "MIPS_26", "symbol": "sceWrite"}, "168": {"type": "MIPS_26", "symbol": "SignalSema"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetlog_sema"}}}}}, "__sceEENetpanic": {"c6568ece131fe3f095de384a19286787f8d8bfd1": {"e5000d4c": {"type": "FUNCTION", "size": 116, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_26", "symbol": "vsnprintf"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "76": {"type": "MIPS_26", "symbol": "scePrintf"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sceEENetNtohl": {"8158b9dba9ef3e3a2af0dcc960d8e3b7fdee2a0e": {"00000000": {"type": "FUNCTION", "size": 56, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceEENetNtohs": {"fecd08d33720e493b1559c6e25d0fc7b244c244b": {"00000000": {"type": "FUNCTION", "size": 32, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "__sceEENetrandom": {"f9e73f1454f550113972e651e3b155df17fc5c23": {"735a0ae2": {"type": "FUNCTION", "size": 96, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__sceEENetsrandom": {"379568001121d67192b561489fbcf0e0086b0eb3": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__sceEENeteenet_slpque_init": {"aae573fa548e1a7873bbabbe4eb8cbce1b52b78c": {"cfc36569": {"type": "FUNCTION", "size": 124, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_26", "symbol": "memset"}, "80": {"type": "MIPS_26", "symbol": "CreateSema"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "__sceEENeteenet_slpque_term": {"3887f1de7e61e4ad19b4f8bb2aa8b864094372d9": {"2ffc74e1": {"type": "FUNCTION", "size": 12, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "4": {"type": "MIPS_26", "symbol": "DeleteSema"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "__sceEENeteenet_tsleep": {"34f6621f8a6e6a7df02cf0a2b7866d7917cffda0": {"16efc7f7": {"type": "FUNCTION", "size": 504, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "GetThreadId"}, "60": {"type": "MIPS_26", "symbol": "__sceEENetget_threadinfo", "scope": "LIBRARY"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_26", "symbol": "__sceEENetpanic", "scope": "LIBRARY"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_26", "symbol": "WaitSema"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "236": {"type": "MIPS_26", "symbol": "SignalSema"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "248": {"type": "MIPS_HI16", "symbol": "__sceEENeteenet_endtsleep", "original": ".text"}, "256": {"type": "MIPS_LO16", "symbol": "__sceEENeteenet_endtsleep", "original": ".text"}, "264": {"type": "MIPS_26", "symbol": "__sceEENetcallout_reset", "scope": "LIBRARY"}, "272": {"type": "MIPS_26", "symbol": "__sceEENetspllock_owner", "scope": "LIBRARY"}, "280": {"type": "MIPS_26", "symbol": "GetThreadId"}, "300": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "308": {"type": "MIPS_26", "symbol": "WaitSema"}, "324": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "340": {"type": "MIPS_26", "symbol": "__sceEENetcallout_stop", "scope": "LIBRARY"}, "348": {"type": "MIPS_26", "symbol": "WaitSema"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "448": {"type": "MIPS_26", "symbol": "SignalSema"}, "452": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "__sceEENeteenet_endtsleep": {"49bc496f107fd969adc102344ac711affdbde02e": {"dbc96fdc": {"type": "FUNCTION", "size": 84, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_26", "symbol": "WaitSema"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_26", "symbol": "SignalSema"}}}}}, "__sceEENeteenet_wakeup": {"dfcb3c8660dab123639f07aa30208995a1bf22da": {"ae7da6a4": {"type": "FUNCTION", "size": 12, "library": "libeenet", "scope": "GLOBAL)PS2SDB", 8192}, + std::string_view{R"PS2SDB(", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_26", "symbol": "__sceEENeteenet_tiwakeup", "scope": "LIBRARY", "original": ".text"}}}}}, "__sceEENeteenet_tiwakeup": {"544b9c090696a0505b98ec1b46f4fca0b85d9c45": {"6bc9c343": {"type": "FUNCTION", "size": 156, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_26", "symbol": "WaitSema"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_26", "symbol": "SignalSema"}}}}}, "__sceEENeteenet_tabort": {"d06648a29477f9daecd44296e2a34c977831b045": {"1a8f64ff": {"type": "FUNCTION", "size": 88, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_26", "symbol": "WaitSema"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "SignalSema"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "SignalSema"}}}}}, "__sceEENeteenet_sabort": {"b12eba3ff268cd3099ee5115296ff83033cd3996": {"d1162176": {"type": "FUNCTION", "size": 128, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_26", "symbol": "WaitSema"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "SignalSema"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_26", "symbol": "SignalSema"}}}}}, "__sceEENetselrecord": {"a20a971525b322006c0cce3687fbd74b6d2446a9": {"00000000": {"type": "FUNCTION", "size": 12, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "__sceEENetselwakeup": {"fa6a38f91473b6573fa79e99393a806a13032bfd": {"b45feced": {"type": "FUNCTION", "size": 60, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_26", "symbol": "__sceEENeteenet_tiwakeup", "scope": "LIBRARY"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__sceEENetsoinit": {"e3feeb8160c7ae8404b042aea23104cb196cbd45": {"82a767c8": {"type": "FUNCTION", "size": 32, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__sceEENetsocreate": {"2852fef11c68fc649bf962c5a1a6408b5a39d808": {"8ac1fc3a": {"type": "FUNCTION", "size": 412, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_26", "symbol": "__sceEENetpffindproto", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "__sceEENetpffindtype", "scope": "LIBRARY"}, "128": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "140": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "164": {"type": "MIPS_26", "symbol": "memset"}, "200": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "240": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "320": {"type": "MIPS_26", "symbol": "__sceEENetsofree", "scope": "LIBRARY", "original": ".text"}, "328": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "344": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "364": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "__sceEENetsobind": {"8fe08d7155b7271185c18cc5d97328b1f1673309": {"b09fbabb": {"type": "FUNCTION", "size": 108, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "__sceEENetsolisten": {"6c146218c90c6dd789af23bc14f84371509bc44f": {"23ec1b9b": {"type": "FUNCTION", "size": 188, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "__sceEENetsofree": {"12b6acff807e5f5b585fbfd1344e2d598c741ee3": {"8c8c3daf": {"type": "FUNCTION", "size": 164, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "__sceEENetsoqremque", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "__sceEENetsbrelease", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "__sceEENetsorflush", "scope": "LIBRARY", "original": ".text"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}}}}}, "__sceEENetsoclose": {"da4d3bf03043e6ce2ef643bf66d961101e90b11f": {"1f484133": {"type": "FUNCTION", "size": 432, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "__sceEENetsoqremque", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "__sceEENetsoabort", "scope": "LIBRARY", "original": ".text"}, "112": {"type": "MIPS_26", "symbol": "__sceEENetsoqremque", "scope": "LIBRARY"}, "120": {"type": "MIPS_26", "symbol": "__sceEENetsoabort", "scope": "LIBRARY", "original": ".text"}, "176": {"type": "MIPS_26", "symbol": "__sceEENetsodisconnect", "scope": "LIBRARY", "original": ".text"}, "272": {"type": "MIPS_26", "symbol": "__sceEENeteenet_tsleep", "scope": "LIBRARY"}, "352": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "356": {"type": "MIPS_26", "symbol": "__sceEENetpanic", "scope": "LIBRARY"}, "360": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "384": {"t)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ype": "MIPS_26", "symbol": "__sceEENetsofree", "scope": "LIBRARY", "original": ".text"}, "392": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "__sceEENetsoabort": {"abeef119c849b08a0ae74cc8522d1150cc09fff9": {"00000000": {"type": "FUNCTION", "size": 48, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "__sceEENetsoaccept": {"7444169e209e9817602b597d5baf8df57e1ef8f7": {"62556388": {"type": "FUNCTION", "size": 164, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "56": {"type": "MIPS_26", "symbol": "__sceEENetpanic", "scope": "LIBRARY"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "__sceEENetsoconnect": {"0b86d9d762381d607370f5cc084fb924648d4c1f": {"f902cf0a": {"type": "FUNCTION", "size": 184, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "__sceEENetsodisconnect", "scope": "LIBRARY", "original": ".text"}, "148": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "__sceEENetsoconnect2": {"5233099d1c4c3d071a94f42b295cf6206879aa76": {"b09fbabb": {"type": "FUNCTION", "size": 108, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "__sceEENetsodisconnect": {"6176ba7f0c285e15a73bf2c615469061ace4e260": {"e1f94d8a": {"type": "FUNCTION", "size": 132, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "__sceEENetsosend": {"4f5e09da371efa41cc2e1be1a74f598e73729fc8": {"2f06f0a0": {"type": "FUNCTION", "size": 1800, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"228": {"type": "MIPS_26", "symbol": "__sceEENetsb_lock", "scope": "LIBRARY"}, "252": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "272": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "288": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "316": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "336": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "432": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "568": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "680": {"type": "MIPS_26", "symbol": "__sceEENeteenet_wakeup", "scope": "LIBRARY"}, "688": {"type": "MIPS_26", "symbol": "__sceEENetsbwait", "scope": "LIBRARY"}, "700": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "728": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "868": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "880": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "892": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "908": {"type": "MIPS_26", "symbol": "__sceEENetMRetryhdr", "scope": "LIBRARY"}, "972": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "984": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "996": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "1012": {"type": "MIPS_26", "symbol": "__sceEENetMRetry", "scope": "LIBRARY"}, "1052": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "1064": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "1080": {"type": "MIPS_26", "symbol": "__sceEENetMReclaim", "scope": "LIBRARY"}, "1088": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "1104": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "1188": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetmax_hdr"}, "1200": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetmax_hdr"}, "1408": {"type": "MIPS_26", "symbol": "__sceEENetuiomove", "scope": "LIBRARY"}, "1484": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "1632": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "1700": {"type": "MIPS_26", "symbol": "__sceEENeteenet_wakeup", "scope": "LIBRARY"}, "1720": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "1740": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}}}}}, "__sceEENetsoreceive": {"e84069dabbfdc25215b39080b2b326d1fb25e617": {"155aec48": {"type": "FUNCTION", "size": 3140, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"148": {"type": "MIPS_26", "symbol": "sceEENetMGet", "scope": "LIBRARY"}, "228": {"type": "MIPS_26", "symbol": "__sceEENetuiomove", "scope": "LIBRARY"}, "240": {"type": "MIPS_26", "symbol": "sceEENetMFree", "scope": "LIBRARY"}, "284": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "384": {"type": "MIPS_26", "symbol": "__sceEENetsb_lock", "scope": "LIBRARY"}, "408": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "756": {"type": "MIPS_26", "symbol": "__sceEENeteenet_wakeup", "scope": "LIBRARY"}, "764": {"type": "MIPS_26", "symbol": "__sceEENetsbwait", "scope": "LIBRARY"}, "776": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "848": {"type": "MIPS_26", "symbol": "sceEENetMCopym", "scope": "LIBRARY"}, "960": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "1000": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "1080": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "1128": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "1160": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "1168": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "1232": {"type": "MIPS_26", "symbol": "sceEENetMCopym", "scope": "LIBRARY"}, "1400": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "1440": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "1520": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "1568": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "1600": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "1608": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "1812": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "1836": {"type": "MIPS_26", "symbol": "__sceEENetuiomove", "scope": "LIBRARY"}, "1844": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "1892": {"type": "MIPS_26", "symbol": "__sceEENetsbdroprecord", "scope": "LIBRARY"}, "2072": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "2112": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "2192": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "2240": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "2272": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "L)PS2SDB", 8192}, + std::string_view{R"PS2SDB(IBRARY"}, "2280": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "2348": {"type": "MIPS_26", "symbol": "sceEENetMCopym", "scope": "LIBRARY"}, "2560": {"type": "MIPS_26", "symbol": "__sceEENetsbwait", "scope": "LIBRARY"}, "2608": {"type": "MIPS_26", "symbol": "__sceEENeteenet_wakeup", "scope": "LIBRARY"}, "2616": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "2836": {"type": "MIPS_26", "symbol": "__sceEENetsbdroprecord", "scope": "LIBRARY"}, "2996": {"type": "MIPS_26", "symbol": "__sceEENeteenet_wakeup", "scope": "LIBRARY"}, "3004": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "3072": {"type": "MIPS_26", "symbol": "__sceEENeteenet_wakeup", "scope": "LIBRARY"}, "3080": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "__sceEENetsoshutdown": {"8dd24da3c55154ea72b67762ab856eff32ec8bd7": {"f5727dee": {"type": "FUNCTION", "size": 148, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_26", "symbol": "__sceEENetsorflush", "scope": "LIBRARY", "original": ".text"}}}}}, "__sceEENetsorflush": {"f4a86ebceb3a42aeb717dc0738a2ea7e873ad889": {"cc196b7e": {"type": "FUNCTION", "size": 292, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "__sceEENetsb_lock", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "__sceEENetsocantrcvmore", "scope": "LIBRARY"}, "128": {"type": "MIPS_26", "symbol": "__sceEENeteenet_wakeup", "scope": "LIBRARY"}, "200": {"type": "MIPS_26", "symbol": "memset"}, "208": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "256": {"type": "MIPS_26", "symbol": "__sceEENetsbrelease", "scope": "LIBRARY"}}}}}, "__sceEENetsosetopt": {"e378a38fa4db8d69ea6897d0ac90ccc50c90007d": {"0f072dbf": {"type": "FUNCTION", "size": 912, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"520": {"type": "MIPS_26", "symbol": "__sceEENetsbreserve", "scope": "LIBRARY"}, "620": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "656": {"type": "MIPS_26", "symbol": "__divdi3"}, "864": {"type": "MIPS_26", "symbol": "sceEENetMFree", "scope": "LIBRARY"}}}}}, "__sceEENetsogetopt": {"0c28f596f7082df20402e0672f2540477927478d": {"b142260e": {"type": "FUNCTION", "size": 680, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"104": {"type": "MIPS_26", "symbol": "sceEENetMGet", "scope": "LIBRARY"}, "592": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "628": {"type": "MIPS_26", "symbol": "sceEENetMFree", "scope": "LIBRARY"}}}}}, "__sceEENetsohasoutofband": {"c21dcee855f14337d570b8c260161d7341ed3ca3": {"bf57c5ec": {"type": "FUNCTION", "size": 8, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_26", "symbol": "__sceEENetselwakeup", "scope": "LIBRARY"}}}}}, "__sceEENetsoioctl": {"de4bebb9a9c08c1842a9ddf1e79c0309b5873ae8": {"28509aba": {"type": "FUNCTION", "size": 112, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__sceEENetifioctl", "scope": "LIBRARY"}, "60": {"type": "MIPS_26", "symbol": "__sceEENetrtioctl", "scope": "LIBRARY"}}}}}, "__sceEENetsopoll": {"45a2174c99557e78f1cfa561909c8505d9f5fcbc": {"5577ba37": {"type": "FUNCTION", "size": 428, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "332": {"type": "MIPS_26", "symbol": "__sceEENetselrecord", "scope": "LIBRARY"}, "360": {"type": "MIPS_26", "symbol": "__sceEENetselrecord", "scope": "LIBRARY"}, "380": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "__sceEENetsogetid": {"ce60871ad2d495d22c57aa0f1754d28fac9edaa7": {"12f5eb71": {"type": "FUNCTION", "size": 76, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetsohead"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetsohead"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetsohead"}}}}}, "__sceEENetsogetsock": {"ad33f5921f521ffa1d3b56022f253f1bac427a92": {"ac9e28e6": {"type": "FUNCTION", "size": 116, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetsohead"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetsohead"}, "84": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "__sceEENetsoisconnecting": {"9f14d1b4bc6dd8f2aaacd7d2abcffa6baecddf5f": {"00000000": {"type": "FUNCTION", "size": 20, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "__sceEENetsoisconnected": {"e57787f4d347e180d2e4abd67fca215c56f1b2b7": {"b21bedf5": {"type": "FUNCTION", "size": 204, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "__sceEENetsoqremque", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_26", "symbol": "__sceEENetsoqinsque", "scope": "LIBRARY", "original": ".text"}, "92": {"type": "MIPS_26", "symbol": "__sceEENetsowakeup", "scope": "LIBRARY", "original": ".text"}, "116": {"type": "MIPS_26", "symbol": "__sceEENeteenet_wakeup", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "__sceEENeteenet_wakeup", "scope": "LIBRARY"}, "148": {"type": "MIPS_26", "symbol": "__sceEENetsowakeup", "scope": "LIBRARY", "original": ".text"}, "176": {"type": "MIPS_26", "symbol": "__sceEENetsowakeup", "scope": "LIBRARY", "original": ".text"}}}}}, "__sceEENetsoisdisconnecting": {"e158308e203501de57fbd3a7098e955d3ca6a0f6": {"dd49122e": {"type": "FUNCTION", "size": 104, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "__sceEENeteenet_wakeup", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "__sceEENetsowakeup", "scope": "LIBRARY", "original": ".text"}, "80": {"type": "MIPS_26", "symbol": "__sceEENetsowakeup", "scope": "LIBRARY", "original": ".text"}}}}}, "__sceEENetsoisdisconnected": {"c76d0b0880d7faa65cd940d37e80ac3052286a3d": {"dd49122e": {"type": "FUNCTION", "size": 104, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "__sceEENeteenet_wakeup", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "__sceEENetsowakeup", "scope": "LIBRARY", "original": ".text"}, "80": {"type": "MIPS_26", "symbol": "__sceEENetsowakeup", "scope": "LIBRARY", "original": ".text"}}}}}, "__sceEENetsonewconn1": {"24977fd73b6d7670506b722ee9243098f422b187": {"8981224d": {"type": "FUNCTION", "size": 408, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4)PS2SDB", 8192}, + std::string_view{R"PS2SDB(.1.01"], "relocations": {"80": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "memset"}, "200": {"type": "MIPS_26", "symbol": "__sceEENetsoreserve", "scope": "LIBRARY", "original": ".text"}, "216": {"type": "MIPS_26", "symbol": "__sceEENetsoqinsque", "scope": "LIBRARY", "original": ".text"}, "264": {"type": "MIPS_26", "symbol": "__sceEENetsoqremque", "scope": "LIBRARY", "original": ".text"}, "272": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "312": {"type": "MIPS_26", "symbol": "__sceEENetsowakeup", "scope": "LIBRARY", "original": ".text"}, "320": {"type": "MIPS_26", "symbol": "__sceEENeteenet_wakeup", "scope": "LIBRARY"}, "344": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetsohead"}, "348": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetsohead"}}}}}, "__sceEENetsoqinsque": {"b17eff227100daecaf81d49702b593396dc46c07": {"00000000": {"type": "FUNCTION", "size": 92, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "__sceEENetsoqremque": {"78337cae735da80b32282677c5bcdf7ec41e22ce": {"00000000": {"type": "FUNCTION", "size": 132, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "__sceEENetsocantsendmore": {"f45f66025eb43cd2bf6b7efa80c830d563708ac2": {"62540ec4": {"type": "FUNCTION", "size": 56, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "__sceEENetsowakeup", "scope": "LIBRARY", "original": ".text"}}}}}, "__sceEENetsocantrcvmore": {"551aadbd21d98611cf7601302076def442ac3e50": {"62540ec4": {"type": "FUNCTION", "size": 56, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "__sceEENetsowakeup", "scope": "LIBRARY", "original": ".text"}}}}}, "__sceEENetsbwait": {"3f23c83f3efa0fb0ba760c2ccc5efd1771e0b318": {"5ccc4979": {"type": "FUNCTION", "size": 44, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "__sceEENeteenet_tsleep", "scope": "LIBRARY"}}}}}, "__sceEENetsb_lock": {"28b82d1a415fe58dfdf3b3730e8ca6e09205b11b": {"610bf645": {"type": "FUNCTION", "size": 116, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "__sceEENeteenet_tsleep", "scope": "LIBRARY"}}}}}, "__sceEENetsowakeup": {"444d3f9ea453bbfa8941daa02b3e7a74fd32f0f9": {"4f709c72": {"type": "FUNCTION", "size": 120, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "__sceEENetselwakeup", "scope": "LIBRARY"}, "60": {"type": "MIPS_26", "symbol": "__sceEENeteenet_wakeup", "scope": "LIBRARY"}}}}}, "__sceEENetsoreserve": {"dae853f74be839c7400d6ed5ab87699537a7129f": {"a0f77c22": {"type": "FUNCTION", "size": 168, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "__sceEENetsbreserve", "scope": "LIBRARY", "original": ".text"}, "48": {"type": "MIPS_26", "symbol": "__sceEENetsbreserve", "scope": "LIBRARY", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "__sceEENetsbrelease", "scope": "LIBRARY", "original": ".text"}}}}}, "__sceEENetsbreserve": {"64b8cc2c6935c9872f43a1a07670a009bcd31db0": {"00000000": {"type": "FUNCTION", "size": 96, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "__sceEENetsbrelease": {"5cb6e9ac7636a071b6cbb46b9bcd0bc925a23ef5": {"fe7706f1": {"type": "FUNCTION", "size": 44, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "__sceEENetsbflush", "scope": "LIBRARY", "original": ".text"}}}}}, "__sceEENetsbappend": {"e85f6df66408c7324d7c90420110327abd46cbf9": {"86fe686a": {"type": "FUNCTION", "size": 136, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"108": {"type": "MIPS_26", "symbol": "__sceEENetsbcompress", "scope": "LIBRARY", "original": ".text"}, "116": {"type": "MIPS_26", "symbol": "__sceEENetsbappendrecord", "scope": "LIBRARY", "original": ".text"}}}}}, "__sceEENetsbappendrecord": {"c6a41e1c1ee4601ce405c7e7273bc25ffee204b7": {"5755cd08": {"type": "FUNCTION", "size": 208, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"192": {"type": "MIPS_26", "symbol": "__sceEENetsbcompress", "scope": "LIBRARY", "original": ".text"}}}}}, "__sceEENetsbinsertoob": {"cbd4ef2b783d5bbe69dc7c7240fbf0c17b60ab49": {"9c9cd73c": {"type": "FUNCTION", "size": 196, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"180": {"type": "MIPS_26", "symbol": "__sceEENetsbcompress", "scope": "LIBRARY", "original": ".text"}}}}}, "__sceEENetsbappendaddr": {"6c857eaf936d8aa9a98ea58bedc8144e2807d5ae": {"d45fad9f": {"type": "FUNCTION", "size": 700, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"76": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_26", "symbol": "__sceEENetpanic", "scope": "LIBRARY"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "284": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "296": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "308": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "324": {"type": "MIPS_26", "symbol": "__sceEENetMRetry", "scope": "LIBRARY"}, "360": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "384": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetmbtypes"}, "392": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetmbtypes"}, "472": {"type": "MIPS_26", "symbol": "sceEENetMFree", "scope": "LIBRARY"}, "500": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}}}}}, "__sceEENetsbappendcontrol": {"35676e56944524d46d58697695cd2c6f58774b03": {"46d1dc3d": {"type": "FUNCTION", "size": 396, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_26", "symbol": "__sceEENetpanic", "scope": "LIBRARY"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "__sceEENetsbcompress": {"14317fac7bb01ca12ebdf06cd7214abe6ae564c1": {"0c7e03b5": {"type": "FUNCTION", "size": 516, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"264": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "308": {"type": "MIPS_26", "symbol": "sceEENetMFree", "scope": "LIBRARY"}, "440": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "472": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "484": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}}}}}, "__sc)PS2SDB", 8192}, + std::string_view{R"PS2SDB(eEENetsbflush": {"b8b2ad2d1cb5d13a0bffa46f1f2e1c2f1201948a": {"be9a2f21": {"type": "FUNCTION", "size": 132, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_26", "symbol": "__sceEENetpanic", "scope": "LIBRARY"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "56": {"type": "MIPS_26", "symbol": "__sceEENetsbdrop", "scope": "LIBRARY", "original": ".text"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "112": {"type": "MIPS_26", "symbol": "__sceEENetpanic", "scope": "LIBRARY"}}}}}, "__sceEENetsbdrop": {"bd92cbe226ac01a4ecec418f35c1d33fa7ec2ed0": {"d7c66ca4": {"type": "FUNCTION", "size": 756, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "120": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "160": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "240": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "288": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "316": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "324": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "356": {"type": "MIPS_26", "symbol": "__sceEENetpanic", "scope": "LIBRARY"}, "360": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "476": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "516": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "592": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "640": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "668": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "676": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "__sceEENetsbdroprecord": {"4411037a665163090dd3e148e8b8708ece6c5213": {"4c47c7ce": {"type": "FUNCTION", "size": 352, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"104": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "144": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "224": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "272": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "300": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "308": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "__sceEENetsbcreatecontrol": {"a62f5bf6d064c58b6438fb59306f6fd31410e9a4": {"c7266c6b": {"type": "FUNCTION", "size": 376, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"80": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "sceEENetMGet", "scope": "LIBRARY"}, "144": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "156": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "172": {"type": "MIPS_26", "symbol": "__sceEENetMReclaim", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "192": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "264": {"type": "MIPS_26", "symbol": "sceEENetMFree", "scope": "LIBRARY"}, "288": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}}}}}, "__sceEENeteenet_tplsid_init": {"ea297096adedcb239465dd163ca75fedd4821d44": {"fcf1f433": {"type": "FUNCTION", "size": 100, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_26", "symbol": "memset"}, "44": {"type": "MIPS_26", "symbol": "CreateSema"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "__sceEENeteenet_tplsid_term": {"3887f1de7e61e4ad19b4f8bb2aa8b864094372d9": {"2ffc74e1": {"type": "FUNCTION", "size": 12, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "4": {"type": "MIPS_26", "symbol": "DeleteSema"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "__sceEENetspllock": {"bfcbf415a786665e8c18c9f466a1127cc3285c69": {"e747a58a": {"type": "FUNCTION", "size": 84, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "GetThreadId"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_26", "symbol": "WaitSema"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "__sceEENetsplunlock": {"33da1ebcd4cf2ea9c69de3a5541c0d23053551f1": {"5b2f2690": {"type": "FUNCTION", "size": 36, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_26", "symbol": "SignalSema"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "__sceEENetspllock_owner": {"ceaacd8dbc6550567edb1845aa0d5c1d3047b02c": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "__sceEENetget_tpl": {"03ef93004f9914669fc3e930f250eac7bf37e5bc": {"a59ef1ec": {"type": "FUNCTION", "size": 36, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "__sceEENetuiomove": {"eb297f46d7e5642ca37d6d0df14e14cbbe50c064": {"bed78388": {"type": "FUNCTION", "size": 256, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"104": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "128": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}}}}}, "__sceEENethashinit": {"c5ef4a541ab8c866350f88162b15412c9deac075": {"a5d2ec6d": {"type": "FUNCTION", "size": 200, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"t)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ype": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_26", "symbol": "__sceEENetpanic", "scope": "LIBRARY"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}}}}}, "__sceEENethashdone": {"a639a8a356321edbeccee089cae462e9fca431ea": {"aae4c1b6": {"type": "FUNCTION", "size": 8, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}}}}}, "__sceEENetsysctl_int": {"59acb01e39ab7f8cc6a9b962dbac63d1deae0368": {"61b54054": {"type": "FUNCTION", "size": 152, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"100": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "120": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}}}}}, "__sceEENetsysctl_rdint": {"bc29908e999c3f822dfb353a79cdc966563c8a90": {"5bbf43bb": {"type": "FUNCTION", "size": 108, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"84": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}}}}}, "__sceEENetsysctl_quad": {"a744bfd1a9613b0103367156aedfb0144ca6e840": {"61b54054": {"type": "FUNCTION", "size": 152, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"100": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "120": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}}}}}, "__sceEENetsysctl_rdquad": {"5163e8b29ccb3a5db3c8627a251396ff19879540": {"5bbf43bb": {"type": "FUNCTION", "size": 108, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"84": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}}}}}, "__sceEENetsysctl_string": {"0e9a0a6648c73f923277f8a0f70033c27b43d8ef": {"60e6798a": {"type": "FUNCTION", "size": 232, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"88": {"type": "MIPS_26", "symbol": "strlen"}, "144": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "172": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}}}}}, "__sceEENetsysctl_rdstring": {"af2fb626cc410d1c7fe15403554fda4bdce45554": {"0351ce17": {"type": "FUNCTION", "size": 168, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "strlen"}, "124": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}}}}}, "__sceEENetsysctl_struct": {"b2c2a1c2e8f42da7642bfc43571d796c8ea6a6b6": {"7886c627": {"type": "FUNCTION", "size": 148, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"92": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}}}}}, "__sceEENetsysctl_rdstruct": {"17b1b263a118d902de87235500f8b4dd0492557e": {"27505c9a": {"type": "FUNCTION", "size": 96, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"72": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}}}}}, "__sceEENetmicrotime": {"5a6aabccbc2c6527627249a6e0ab7d4334c93b2e": {"e5f2083b": {"type": "FUNCTION", "size": 148, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "GetTimerSystemTime"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetcntbase"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetcntbase"}, "36": {"type": "MIPS_26", "symbol": "TimerBusClock2USec"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetbase_time"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetbase_time"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetbase_time"}}}}}, "__sceEENetcdclktotv": {"3ac923965864750c41f09c248ce3ec3e84e90e39": {"94f321e6": {"type": "FUNCTION", "size": 440, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"340": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "356": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "__sceEENettvtocdclk": {"eb71e67e15ca729fbc956be3864ddf21f7c0179c": {"07cb9e7c": {"type": "FUNCTION", "size": 720, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "__moddi3"}, "76": {"type": "MIPS_26", "symbol": "__divdi3"}, "92": {"type": "MIPS_26", "symbol": "__moddi3"}, "112": {"type": "MIPS_26", "symbol": "__divdi3"}, "128": {"type": "MIPS_26", "symbol": "__moddi3"}, "148": {"type": "MIPS_26", "symbol": "__divdi3"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "348": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "400": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "__sceEENetitimerfix": {"f354ee64cb97f2e82ae1837f6c13576b4f60c76f": {"00000000": {"type": "FUNCTION", "size": 100, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "bpf_movein": {"711955ce8d007487968ecb5a4a038a8f7e17a7aa": {"0d20fcf4": {"type": "FUNCTION", "size": 612, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"236": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "248": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "260": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "276": {"type": "MIPS_26", "symbol": "__sceEENetMRetryhdr", "scope": "LIBRARY"}, "320": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "332": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "348": {"type": "MIPS_26", "symbol": "__sceEENetMReclaim", "scope": "LIBRARY"}, "356": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "368": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "480": {"type": "MIPS_26", "symbol": "__sceEENetuiomove", "scope": "LIBRARY"}, "516": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "552": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}}}}}, "bpf_attachd": {"498090fe74333df45f9d090ee2e493810336bc08": {"00000000": {"type": "FUNCTION", "size": 28, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "bpf_detachd": {"94116d08694bb6b65be8a6b3b8a1c43ef3b02bb8": {"a80c8be1": {"type": "FUNCTION", "size": 212, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "__sceEENetifpromisc", "scope": "LIBRARY", "original": ".text"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "76": {"type": "MIPS_26", "symbol": "__sceEENetpanic", "scope": "LIBRARY"}, "80": {"type": ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(MIPS_LO16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "120": {"type": "MIPS_26", "symbol": "__sceEENetpanic", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "__sceEENetbpfilterattach": {"936fc7bd94be4947d547f1cd30f9e09976c93f16": {"6aef4590": {"type": "FUNCTION", "size": 76, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__sceEENetbpfopen": {"fb318539445c21ad0c1e91d78401063b7f94ec17": {"63c1bbaf": {"type": "FUNCTION", "size": 108, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_26", "symbol": "memset"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__sceEENetbpfclose": {"e5f7884c5a28a9a0dd4297da0d3582b844749456": {"f58e8584": {"type": "FUNCTION", "size": 104, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "bpf_detachd", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "bpf_freed", "scope": "LIBRARY", "original": ".text"}}}}}, "__sceEENetbpfread": {"0d8dc2ea6cc182353ba255def6763b0f367c44ee": {"5f40e51a": {"type": "FUNCTION", "size": 380, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "156": {"type": "MIPS_26", "symbol": "__sceEENeteenet_tsleep", "scope": "LIBRARY"}, "280": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "296": {"type": "MIPS_26", "symbol": "__sceEENetuiomove", "scope": "LIBRARY"}, "304": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "332": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "__sceEENetbpfwrite": {"c8f83b69aaba5e32abcbde49094a33c9e8fe22c2": {"df848fbc": {"type": "FUNCTION", "size": 244, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_26", "symbol": "bpf_movein", "scope": "LIBRARY", "original": ".text"}, "164": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "204": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "reset_d": {"8c4cc9a32e22f46c1d35229659c032dc01731629": {"00000000": {"type": "FUNCTION", "size": 40, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "__sceEENetbpfioctl": {"0c3db92b51e9af53a782bed495195617abbaa133": {"2fd50f22": {"type": "FUNCTION", "size": 1048, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "476": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "508": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "596": {"type": "MIPS_26", "symbol": "__sceEENetbpf_setf", "scope": "LIBRARY", "original": ".text"}, "612": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "624": {"type": "MIPS_26", "symbol": "reset_d", "scope": "LIBRARY", "original": ".text"}, "652": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "680": {"type": "MIPS_26", "symbol": "__sceEENetifpromisc", "scope": "LIBRARY", "original": ".text"}, "704": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "760": {"type": "MIPS_26", "symbol": "bpf_ifname", "scope": "LIBRARY", "original": ".text"}, "776": {"type": "MIPS_26", "symbol": "bpf_setif", "scope": "LIBRARY", "original": ".text"}, "820": {"type": "MIPS_26", "symbol": "__divdi3"}, "864": {"type": "MIPS_26", "symbol": "__udivdi3"}, "880": {"type": "MIPS_26", "symbol": "__umoddi3"}}}}}, "__sceEENetbpf_setf": {"23d063d6aedfe47172ba2e992fa4a14d80baa44f": {"a660ec62": {"type": "FUNCTION", "size": 272, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "136": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "148": {"type": "MIPS_26", "symbol": "__sceEENetbpf_validate", "scope": "LIBRARY"}, "164": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "184": {"type": "MIPS_26", "symbol": "reset_d", "scope": "LIBRARY", "original": ".text"}, "192": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "208": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "224": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}}}}}, "bpf_setif": {"f671b4188d871adaabf2f086c36d7af307689fb8": {"909e4df0": {"type": "FUNCTION", "size": 360, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "200": {"type": "MIPS_26", "symbol": "strcmp"}, "228": {"type": "MIPS_26", "symbol": "bpf_allocbufs", "scope": "LIBRARY", "original": ".text"}, "244": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "276": {"type": "MIPS_26", "symbol": "bpf_detachd", "scope": "LIBRARY", "original": ".text"}, "288": {"type": "MIPS_26", "symbol": "bpf_attachd", "scope": "LIBRARY", "original": ".text"}, "296": {"type": "MIPS_26", "symbol": "reset_d", "scope": "LIBRARY", "original": ".text"}, "304": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "bpf_ifname": {"86bb6cde2490d9a132a0cd75e4a8299d9f2fa7bf": {"6674954a": {"type": "FUNCTION", "size": 20, "library": "libeenet", "scope": "LOCAL", "is_interface": f)PS2SDB", 8192}, + std::string_view{R"PS2SDB(alse, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}}}}}, "__sceEENetbpf_tap": {"752ec030c9bd1c70d378593db01f4a19620688a2": {"675556ae": {"type": "FUNCTION", "size": 144, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_HI16", "symbol": "__sceEENetmemcpy"}, "68": {"type": "MIPS_26", "symbol": "__sceEENetbpf_filter", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "catchpacket", "scope": "LIBRARY", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "__sceEENetmemcpy"}}}}}, "bpf_mcpy": {"ba1b127cf1d59f26f16143fc5102174a065e5c53": {"853d72e1": {"type": "FUNCTION", "size": 156, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_26", "symbol": "__sceEENetpanic", "scope": "LIBRARY"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}}}}}, "__sceEENetbpf_mtap": {"8db6b6792ffb8a2cf02b8fc2bb2eb62dbabe7249": {"e5e625db": {"type": "FUNCTION", "size": 200, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"96": {"type": "MIPS_HI16", "symbol": "bpf_mcpy", "original": ".text"}, "124": {"type": "MIPS_26", "symbol": "__sceEENetbpf_filter", "scope": "LIBRARY"}, "152": {"type": "MIPS_26", "symbol": "catchpacket", "scope": "LIBRARY", "original": ".text"}, "156": {"type": "MIPS_LO16", "symbol": "bpf_mcpy", "original": ".text"}}}}}, "catchpacket": {"54db6be2c32dcf9964458010e5de81153080c73c": {"88e6df36": {"type": "FUNCTION", "size": 336, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"200": {"type": "MIPS_26", "symbol": "__sceEENeteenet_wakeup", "scope": "LIBRARY"}, "208": {"type": "MIPS_26", "symbol": "__sceEENetselwakeup", "scope": "LIBRARY"}, "228": {"type": "MIPS_26", "symbol": "__sceEENetmicrotime", "scope": "LIBRARY"}}}}}, "bpf_allocbufs": {"102d281813824f4808d3474fc369a4cde698d5e3": {"74044980": {"type": "FUNCTION", "size": 100, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "40": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}}}}}, "bpf_freed": {"b73a86349ef6e741243fbeccda89947b62e1ba80": {"3a8bbc18": {"type": "FUNCTION", "size": 116, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "48": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}}}}}, "__sceEENetbpfattach": {"cc05932ae05cf565d6e97ee499a2a65ab41f3bd8": {"59f27292": {"type": "FUNCTION", "size": 168, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_26", "symbol": "__sceEENetpanic", "scope": "LIBRARY"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__sceEENetbpfdetach": {"be765c65d4842c08dd76054f798a43109ba5dfc9": {"5d458613": {"type": "FUNCTION", "size": 220, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "bpf_detachd", "scope": "LIBRARY", "original": ".text"}, "112": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "180": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}}}}}, "__sceEENetbpf_change_type": {"b0b10d4e541cee188598b33334c6044d424e020f": {"e44cda51": {"type": "FUNCTION", "size": 168, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "108": {"type": "MIPS_26", "symbol": "__sceEENetpanic", "scope": "LIBRARY"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "__sceEENetifpromisc": {"d6cd5c3a9d573c0365c4546adbeea427570b9382": {"4b054e03": {"type": "FUNCTION", "size": 200, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"116": {"type": "MIPS_26", "symbol": "memset"}}}}}, "m_xword": {"8ff24fa2031ab56d845056709414dfebc108ce90": {"00000000": {"type": "FUNCTION", "size": 292, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "m_xhalf": {"b0dc09f4fb4e6de7bc5b63f5ad2a0d9a4e86c034": {"00000000": {"type": "FUNCTION", "size": 136, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "__sceEENetbpf_filter": {"a7ada8ffc9dcad27f15f4ce52f2e4d729c858310": {"9f0afa39": {"type": "FUNCTION", "size": 1264, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"88": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "164": {"type": "MIPS_26", "symbol": "m_xword", "scope": "LIBRARY", "original": ".text"}, "224": {"type": "MIPS_26", "symbol": "m_xhalf", "scope": "LIBRARY", "original": ".text"}, "372": {"type": "MIPS_26", "symbol": "m_xword", "scope": "LIBRARY", "original": ".text"}, "468": {"type": "MIPS_26", "symbol": "m_xhalf", "scope": "LIBRARY", "original": ".text"}}}}}, "__sceEENetbpf_validate": {"8d5e8b3608402396c90cd5951b5b5ff6f737e5bd": {"00000000": {"type": "FUNCTION", "size": 240, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "__sceEENetifinit": {"4325f6c675d90b1a3e28883283687200b11f2c02": {"47763f5f": {"type": "FUNCTION", "size": 80, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"],)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_26", "symbol": "__sceEENetsppp_init", "scope": "LIBRARY"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "__sceEENetcallout_init", "scope": "LIBRARY"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_26", "symbol": "__sceEENetif_slowtimo", "scope": "LIBRARY", "original": ".text"}}}}}, "__sceEENetif_nulloutput": {"277ed00e9c420de34cb790f5852ed63e6d9980d5": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "__sceEENetif_nullinput": {"7678540574197b420f17571673856a74783eb9d5": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "__sceEENetif_nullstart": {"7678540574197b420f17571673856a74783eb9d5": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "__sceEENetif_nullioctl": {"277ed00e9c420de34cb790f5852ed63e6d9980d5": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "__sceEENetif_nullreset": {"277ed00e9c420de34cb790f5852ed63e6d9980d5": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "__sceEENetif_nullwatchdog": {"7678540574197b420f17571673856a74783eb9d5": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "__sceEENetif_nulldrain": {"7678540574197b420f17571673856a74783eb9d5": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "select_ifindex": {"e59ac9bfaa504e0f3dac47cc1d771c31300dd984": {"e3bb5b78": {"type": "FUNCTION", "size": 76, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__sceEENetif_attach": {"759b5f0b8ff4ee1749aa328031ef08a94e9b9f96": {"defed329": {"type": "FUNCTION", "size": 868, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_26", "symbol": "select_ifindex", "scope": "LIBRARY", "original": ".text"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "200": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "208": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "280": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "300": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "304": {"type": "MIPS_26", "symbol": "__sceEENetpanic", "scope": "LIBRARY"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "316": {"type": "MIPS_26", "symbol": "bzero"}, "324": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "336": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "344": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "348": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "356": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "364": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "384": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "388": {"type": "MIPS_26", "symbol": "__sceEENetpanic", "scope": "LIBRARY"}, "392": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "400": {"type": "MIPS_26", "symbol": "bzero"}, "408": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "420": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "428": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "432": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "436": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "444": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "460": {"type": "MIPS_26", "symbol": "strlen"}, "520": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "540": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "544": {"type": "MIPS_26", "symbol": "__sceEENetpanic", "scope": "LIBRARY"}, "548": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "556": {"type": "MIPS_26", "symbol": "bzero"}, "588": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "600": {"type": "MIPS_HI16", "symbol": "__sceEENetlink_rtrequest", "original": ".text"}, "604": {"type": "MIPS_LO16", "symbol": "__sceEENetlink_rtrequest", "original": ".text"}, "628": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "792": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "796": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "860": {"type": "MIPS_26", "symbol": "__sceEENetrt_ifannouncemsg", "scope": "LIBRARY"}}}}}, "__sceEENetif_deacti)PS2SDB", 8192}, + std::string_view{R"PS2SDB(vate": {"ad5911154654587fb1f3715913b48d85d2fe59c3": {"0c604ec7": {"type": "FUNCTION", "size": 128, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "120": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "__sceEENetif_detach": {"5084bcb571f3ac21192122e28e40185700d0d598": {"a998a972": {"type": "FUNCTION", "size": 560, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "memset"}, "52": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "__sceEENetif_down", "original": ".text"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_26", "symbol": "__sceEENetrtinit", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "__sceEENetifafree", "scope": "LIBRARY"}, "184": {"type": "MIPS_26", "symbol": "__sceEENetpffinddomain", "scope": "LIBRARY"}, "288": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "300": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "324": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetrt_tables"}, "328": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetrt_tables"}, "332": {"type": "MIPS_HI16", "symbol": "__sceEENetif_rt_walktree", "original": ".text"}, "336": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetrt_tables"}, "352": {"type": "MIPS_LO16", "symbol": "__sceEENetif_rt_walktree", "original": ".text"}, "384": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "428": {"type": "MIPS_26", "symbol": "__sceEENetifafree", "scope": "LIBRARY"}, "448": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "464": {"type": "MIPS_26", "symbol": "__sceEENetrt_ifannouncemsg", "scope": "LIBRARY"}, "496": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "500": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "516": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "__sceEENetif_rt_walktree": {"e6560bb7136d2cbd7b4692951f6f5429c19b323a": {"ab3dd1be": {"type": "FUNCTION", "size": 116, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "__sceEENetrtrequest", "scope": "LIBRARY"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}}}}}, "__sceEENetif_clone_create": {"b12610f0b6b7644de30def1d142f1b2a063d7536": {"77622580": {"type": "FUNCTION", "size": 92, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "__sceEENetif_clone_lookup", "scope": "LIBRARY", "original": ".text"}, "40": {"type": "MIPS_26", "symbol": "__sceEENetifunit", "scope": "LIBRARY", "original": ".text"}}}}}, "__sceEENetif_clone_destroy": {"2cba9c17b47c4d0b740e5bcb7e1ec973fd2b6287": {"67d649c1": {"type": "FUNCTION", "size": 120, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "__sceEENetif_clone_lookup", "scope": "LIBRARY", "original": ".text"}, "48": {"type": "MIPS_26", "symbol": "__sceEENetifunit", "scope": "LIBRARY", "original": ".text"}}}}}, "__sceEENetif_clone_lookup": {"e9cb540c6bd96c85202023e3536669e790907d65": {"d6ed632d": {"type": "FUNCTION", "size": 184, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__sceEENetif_clone_attach": {"ab9b1917cca3914cdf1f08d226e52ca4f4e68574": {"76c6a2f9": {"type": "FUNCTION", "size": 60, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__sceEENetif_clone_detach": {"f766329050b6986e6485386428b0cd0149251a56": {"a0d12c44": {"type": "FUNCTION", "size": 48, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__sceEENetif_clone_list": {"28a4f8bda6071a9a3412704c51f48d2fe52e711f": {"569b7d1f": {"type": "FUNCTION", "size": 180, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_26", "symbol": "strncpy"}, "124": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}}}}}, "__sceEENetifa_ifwithaddr": {"26c949cc106e977cf952af217be08a77a70a44ef": {"997769aa": {"type": "FUNCTION", "size": 236, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_HI16", "symbol": "__sceEENetif_nulloutput", "original": ".text"}, "48": {"type": "MIPS_LO16", "symbol": "__sceEENetif_nulloutput", "original": ".text"}, "100": {"type": "MIPS_26", "symbol": "bcmp"}, "156": {"type": "MIPS_26", "symbol": "bcmp"}}}}}, "__sceEENetifa_ifwithdstaddr": {"aad44b2999d1cb9dab64684e30ea75372617df47": {"eb430633": {"type": "FUNCTION", "size": 204, "library": "libeenet)PS2SDB", 8192}, + std::string_view{R"PS2SDB(", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_HI16", "symbol": "__sceEENetif_nulloutput", "original": ".text"}, "48": {"type": "MIPS_LO16", "symbol": "__sceEENetif_nulloutput", "original": ".text"}, "128": {"type": "MIPS_26", "symbol": "bcmp"}}}}}, "__sceEENetifa_ifwithnet": {"d686e1fc641827184df3bf0f7f5d428c03b032d4": {"fbf2883f": {"type": "FUNCTION", "size": 388, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "304": {"type": "MIPS_26", "symbol": "__sceEENetrn_refines", "scope": "LIBRARY"}}}}}, "__sceEENetifa_ifwithladdr": {"4ccfbc3997659fda56ebb31ad207f2168a4c2b60": {"de5bee81": {"type": "FUNCTION", "size": 76, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "__sceEENetifa_ifwithaddr", "scope": "LIBRARY", "original": ".text"}, "28": {"type": "MIPS_26", "symbol": "__sceEENetifa_ifwithdstaddr", "scope": "LIBRARY", "original": ".text"}, "44": {"type": "MIPS_26", "symbol": "__sceEENetifa_ifwithnet", "scope": "LIBRARY", "original": ".text"}}}}}, "__sceEENetifa_ifwithaf": {"46624923271dd7e0a07af972043620fd2f07a09c": {"ba367d66": {"type": "FUNCTION", "size": 104, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "__sceEENetif_nulloutput", "original": ".text"}, "24": {"type": "MIPS_LO16", "symbol": "__sceEENetif_nulloutput", "original": ".text"}}}}}, "__sceEENetifaof_ifpforaddr": {"225e51afa7fbc5dea3dbe6d229e773293861a705": {"9a9abc04": {"type": "FUNCTION", "size": 324, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "__sceEENetif_nulloutput", "original": ".text"}, "12": {"type": "MIPS_LO16", "symbol": "__sceEENetif_nulloutput", "original": ".text"}, "120": {"type": "MIPS_26", "symbol": "bcmp"}, "152": {"type": "MIPS_26", "symbol": "bcmp"}}}}}, "__sceEENetlink_rtrequest": {"9efbed4e95d8e807bf08250729cc22b5ed5c5fba": {"4df4a321": {"type": "FUNCTION", "size": 196, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"72": {"type": "MIPS_26", "symbol": "__sceEENetifaof_ifpforaddr", "scope": "LIBRARY", "original": ".text"}, "112": {"type": "MIPS_26", "symbol": "__sceEENetifafree", "scope": "LIBRARY"}, "144": {"type": "MIPS_HI16", "symbol": "__sceEENetlink_rtrequest", "original": ".text"}, "148": {"type": "MIPS_LO16", "symbol": "__sceEENetlink_rtrequest", "original": ".text"}}}}}, "__sceEENetif_down": {"6fa0b3e0b676edd4df18ef22e240b23bb2645187": {"3a0a7e6a": {"type": "FUNCTION", "size": 124, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "__sceEENetpfctlinput", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "__sceEENetif_qflush", "scope": "LIBRARY", "original": ".text"}, "116": {"type": "MIPS_26", "symbol": "__sceEENetrt_ifmsg", "scope": "LIBRARY"}}}}}, "__sceEENetif_up": {"b33ec7ac18b833d79fd99c2a4d8ab7073df4d218": {"15836314": {"type": "FUNCTION", "size": 20, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "__sceEENetrt_ifmsg", "scope": "LIBRARY"}}}}}, "__sceEENetif_qflush": {"63051137ff7a8015af6407124cff1892820b2be2": {"ddf810ac": {"type": "FUNCTION", "size": 80, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}}}}}, "__sceEENetif_slowtimo": {"b8bf22d702f630dcee5acf592f9724d39eb09b9c": {"52322eef": {"type": "FUNCTION", "size": 176, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "124": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "168": {"type": "MIPS_26", "symbol": "__sceEENetcallout_reset", "scope": "LIBRARY"}}}}}, "__sceEENetifunit": {"f659f6012c0e7b1d86b374ec855cfc74a55bf80e": {"b978a730": {"type": "FUNCTION", "size": 124, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "__sceEENetif_nulloutput", "original": ".text"}, "48": {"type": "MIPS_LO16", "symbol": "__sceEENetif_nulloutput", "original": ".text"}, "60": {"type": "MIPS_26", "symbol": "strcmp"}}}}}, "__sceEENetifioctl": {"a26fdc21ff291d71870dd3446975bd6bc9d2fd5b": {"b89759ed": {"type": "FUNCTION", "size": 1472, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"88": {"type": "MIPS_26", "symbol": "__sceEENetifconf", "scope": "LIBRARY", "original": ".text"}, "188": {"type": "MIPS_26", "symbol": "__sceEENetif_clone_create", "scope": "LIBRARY", "original": ".text"}, "204": {"type": "MIPS_26", "symbol": "__sceEENetif_clone_destroy", "scope": "LIBRARY", "original": ".text"}, "220": {"type": "MIPS_26", "symbol": "__sceEENetif_clone_list", "scope": "LIBRARY", "original": ".text"}, "236": {"type": "MIPS_26", "symbol": "__sceEENetifunit", "scope": "LIBRARY", "original": ".text"}, "740": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "752": {"type": "MIPS_26", "symbol": "__sceEENetif_down", "original": ".text"}, "760": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "796": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "808": {"type": "MIPS_26", "symbo)PS2SDB", 8192}, + std::string_view{R"PS2SDB(l": "__sceEENetif_up", "scope": "LIBRARY", "original": ".text"}, "816": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "928": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}}}}}, "__sceEENetifconf": {"47562fcfcc7d69050389f0f2b0ba61bdc69f1c2a": {"23fd9df2": {"type": "FUNCTION", "size": 468, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "bzero"}, "132": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "300": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "348": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "364": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}}}}}, "ether_output": {"d648969a55d3deb720a418508dcef64c6c023317": {"e533cfca": {"type": "FUNCTION", "size": 1500, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"96": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetkern_time"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetkern_time"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetkern_time"}, "148": {"type": "MIPS_26", "symbol": "__sceEENetrtalloc1", "scope": "LIBRARY"}, "280": {"type": "MIPS_26", "symbol": "__sceEENetrtfree", "scope": "LIBRARY"}, "296": {"type": "MIPS_26", "symbol": "__sceEENetrtalloc1", "scope": "LIBRARY"}, "396": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetkern_time"}, "460": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "484": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "508": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "516": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "520": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "564": {"type": "MIPS_26", "symbol": "__sceEENetarpresolve", "scope": "LIBRARY"}, "672": {"type": "MIPS_26", "symbol": "sceEENetMCopym", "scope": "LIBRARY"}, "708": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "716": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "720": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "760": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "768": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "804": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "844": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "876": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "904": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "940": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "948": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "980": {"type": "MIPS_26", "symbol": "__sceEENetlooutput", "scope": "LIBRARY"}, "1000": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "1116": {"type": "MIPS_26", "symbol": "sceEENetMPrepend", "scope": "LIBRARY"}, "1176": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "1192": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "1212": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "1244": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "1252": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "1300": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "1416": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "1440": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}}}}}, "ether_input": {"f2376b69efa9f42e54ecd3fba0232d1fa3a7a5bc": {"1e3c7788": {"type": "FUNCTION", "size": 988, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"76": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetkern_time"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetkern_time"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "204": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "240": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetkern_time"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetkern_time"}, "296": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "308": {"type": "MIPS_26", "symbol": "bcmp"}, "384": {"type": "MIPS_26", "symbol": "memcmp"}, "428": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "472": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetppoeinq"}, "476": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetppoediscinq"}, "484": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetppoediscinq"}, "488": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetppoeinq"}, "492": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "536": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "584": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "592": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetnetisr"}, "600": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetnetisr"}, "632": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetnetisr"}, "636": {"type": "MIPS_26", "symbol": "__sceEENeteenet_netintr", "scope": "LIBRARY"}, "644": {"type": "MIPS_26", "symbol": "sceEENetMAdj", "scope": "LIBRARY"}, "668": {"type": "MIPS_26", "symbol": "sceEENetMAdj", "scope": "LIBRARY"}, "732": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetnetisr"}, "736": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetnetisr"}, "744": {"type": "MIPS_26", "symbol": "__sceEENeteenet_netintr", "scope": "LIBRARY"}, "748": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetnetisr"}, "752": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetipintrq"}, "760": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetipintrq"}, "764": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetnetisr"}, "772": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetnetisr"}, "780": {"type": "MIPS_26", "symbol": "__sceEENeteenet_netintr", "scope": "LIBRARY"}, "784": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetnetisr"}, "788": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetarpintrq"}, "796": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetarpintrq"}, "824": {"type": "MIPS_26", "symbol": "__sceEENetrevarpinput", "scope": "LIBRARY"}, "852": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "860": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "904": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "980": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "__sceEENetether_sprintf": {"05d43c2cfbdafa96db8d897efdcbb11c483a9e71": {"75ec374d": {"type": "FUNCTION", "size": 116, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2)PS2SDB", 8192}, + std::string_view{R"PS2SDB(.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "__sceEENetether_ifattach": {"3e1d0f848e90cc9c0c8ac4881120a18e2cfacd02": {"fcecf5ca": {"type": "FUNCTION", "size": 180, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "140": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__sceEENetether_ifdetach": {"fff4a64f5b5fb7ceeeb85076245c15db59e6a4a4": {"529493e9": {"type": "FUNCTION", "size": 164, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "memset"}}}}}, "__sceEENetether_multiaddr": {"aba4609627c75463154df366b9f44badcf05cd1c": {"fcb9b8a2": {"type": "FUNCTION", "size": 256, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"72": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "216": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}}}}}, "__sceEENetether_addmulti": {"4e860c86b95877cd4171ad54224f8bc8850d58f5": {"ac9b6a15": {"type": "FUNCTION", "size": 376, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "__sceEENetether_multiaddr", "scope": "LIBRARY", "original": ".text"}, "72": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "140": {"type": "MIPS_26", "symbol": "bcmp"}, "164": {"type": "MIPS_26", "symbol": "bcmp"}, "192": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "208": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "228": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "248": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "264": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "336": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "__sceEENetether_delmulti": {"f7ddbd2f2edc9b2c29b6079945919398c5557d0a": {"2fe340a4": {"type": "FUNCTION", "size": 288, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "__sceEENetether_multiaddr", "scope": "LIBRARY", "original": ".text"}, "72": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "bcmp"}, "124": {"type": "MIPS_26", "symbol": "bcmp"}, "164": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "228": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "248": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "__sceEENetloopattach": {"9ad75f3215ea49598f111a62f3250af08dd12220": {"5a43d473": {"type": "FUNCTION", "size": 236, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "108": {"type": "MIPS_26", "symbol": "sprintf"}, "148": {"type": "MIPS_26", "symbol": "__sceEENetif_attach", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "__sceEENetbpfattach", "scope": "LIBRARY"}}}}}, "__sceEENetlooutput": {"8284a007513061bdd0465b5b09c46c1c0fccbe26": {"0f3a23dc": {"type": "FUNCTION", "size": 496, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "60": {"type": "MIPS_26", "symbol": "__sceEENetpanic", "scope": "LIBRARY"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetkern_time"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetkern_time"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetkern_time"}, "144": {"type": "MIPS_26", "symbol": "__sceEENetbpf_mtap", "scope": "LIBRARY"}, "176": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "264": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "276": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "284": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "300": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "304": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetipintrq"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetipintrq"}, "348": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "356": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "384": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetipintrq"}, "392": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetnetisr"}, "396": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetnetisr"}, "416": {"type": "MIPS_26", "symbol": "__sceEENeteenet_netintr", "scope": "LIBRARY"}, "420": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetnetisr"}, "452": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "__sceEENetlortrequest": {"cee636f488efa88d91e4510a0b496b2dbeb94a45": {"00000000": {"type": "FUNCTION", "size": 20, "library": "libeenet", "scope": "GLOBAL", "is_in)PS2SDB", 8192}, + std::string_view{R"PS2SDB(terface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "__sceEENetloioctl": {"e060eb009fd1e2d3bd94d74b2de4d714d431993a": {"d877bac3": {"type": "FUNCTION", "size": 152, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"100": {"type": "MIPS_HI16", "symbol": "__sceEENetlortrequest", "original": ".text"}, "104": {"type": "MIPS_LO16", "symbol": "__sceEENetlortrequest", "original": ".text"}}}}}, "__sceEENetifmedia_init": {"80e30982d56b9c515c71c7695df2ea881f3279d7": {"00000000": {"type": "FUNCTION", "size": 36, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "__sceEENetifmedia_add": {"d32832a3180f71fa89549f8717135e0a44d97b06": {"ff11c630": {"type": "FUNCTION", "size": 144, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_26", "symbol": "__sceEENetpanic", "scope": "LIBRARY"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "__sceEENetifmedia_list_add": {"8b05cf29e52029f78227ae89e192293ea2895826": {"85ddacc8": {"type": "FUNCTION", "size": 96, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "__sceEENetifmedia_add", "scope": "LIBRARY", "original": ".text"}}}}}, "__sceEENetifmedia_set": {"4307268a94e204feec9d02d490f695ff3d891d9f": {"bc423ccf": {"type": "FUNCTION", "size": 116, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__sceEENetifmedia_match", "scope": "LIBRARY", "original": ".text"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_26", "symbol": "__sceEENetpanic", "scope": "LIBRARY"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "__sceEENetifmedia_ioctl": {"1dbee01f2ee9029ce4a2cb65a40835b4726a6364": {"3be5b96b": {"type": "FUNCTION", "size": 560, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"128": {"type": "MIPS_26", "symbol": "__sceEENetifmedia_match", "scope": "LIBRARY", "original": ".text"}, "300": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "484": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "504": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}}}}}, "__sceEENetifmedia_match": {"1e697aa7b393b5c376506079743b993904dcb484": {"00000000": {"type": "FUNCTION", "size": 60, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "__sceEENetifmedia_delete_instance": {"8afa437f23a3817ff12d3e19d3168a8c69336cba": {"682482f8": {"type": "FUNCTION", "size": 168, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"116": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}}}}}, "__sceEENetpppoeattach": {"db72cedb71416a6c1390ee1cb51c9538fda7a8ca": {"db55d601": {"type": "FUNCTION", "size": 60, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_26", "symbol": "__sceEENetif_clone_attach", "scope": "LIBRARY"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__sceEENetpppoe_clone_create": {"2844bda50cd9cd9b1776a2228fcdfbf8b1ccda9a": {"03a966d3": {"type": "FUNCTION", "size": 328, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "memset"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_26", "symbol": "sprintf"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetetherbroadcastaddr"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetetherbroadcastaddr"}, "160": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "__sceEENetcallout_init", "scope": "LIBRARY"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "220": {"type": "MIPS_26", "symbol": "__sceEENetif_attach", "scope": "LIBRARY"}, "228": {"type": "MIPS_26", "symbol": "__sceEENetsppp_attach", "scope": "LIBRARY"}, "256": {"type": "MIPS_26", "symbol": "__sceEENetbpfattach", "scope": "LIBRARY"}, "264": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__sceEENetpppoe_clone_destroy": {"ee1cd98fe442064404cf407833794a64d748aa56": {"43d6e4ea": {"type": "FUNCTION", "size": 168, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "__sceEENetcallout_stop", "scope": "LIBRARY"}, "60": {"type": "MIPS_26", "symbol": "__sceEENetbpfdetach", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "__sceEENetsppp_detach", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "__sceEENetif_detach", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "136": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "160": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}}}}}, "pppoe_find_softc_by_session": {"aa571c437602d51b586c17af7be0c15ebb7ebe66": {"a4dc1df5": {"type": "FUNCTION", "size": 88, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_LO16)PS2SDB", 8192}, + std::string_view{R"PS2SDB(", "symbol": "", "original": ".data"}}}}}, "pppoe_find_softc_by_hunique": {"08ef4bccc2d813008a2bbf23c5dd51655ddc8fd2": {"2de36768": {"type": "FUNCTION", "size": 236, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "164": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "196": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}}}}}, "pppoe_find_softc_by_deny_huniq": {"747d4cc25637613628d28bd54770549327327e3d": {"d6ed632d": {"type": "FUNCTION", "size": 36, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__sceEENetpppoeintr": {"a639a8a356321edbeccee089cae462e9fca431ea": {"c2092128": {"type": "FUNCTION", "size": 8, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_26", "symbol": "pppoe_input", "scope": "LIBRARY", "original": ".text"}}}}}, "pppoe_input": {"70cf67d4cb3306bed43f7010df3b8f5b02135d61": {"aee0946c": {"type": "FUNCTION", "size": 284, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_26", "symbol": "pppoe_disc_input", "scope": "LIBRARY", "original": ".text"}, "72": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_26", "symbol": "pppoe_data_input", "scope": "LIBRARY", "original": ".text"}, "160": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "212": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "232": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}}}}}, "pppoe_dispatch_disc_pkt": {"ea564c7cb8fb65dca6c574d0a7e6b767dd51a570": {"8df687e1": {"type": "FUNCTION", "size": 1560, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"92": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "224": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "300": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "312": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "356": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "540": {"type": "MIPS_26", "symbol": "pppoe_find_softc_by_hunique", "scope": "LIBRARY", "original": ".text"}, "648": {"type": "MIPS_26", "symbol": "pppoe_find_softc_by_session", "scope": "LIBRARY", "original": ".text"}, "668": {"type": "MIPS_26", "symbol": "pppoe_find_softc_by_deny_huniq", "scope": "LIBRARY", "original": ".text"}, "784": {"type": "MIPS_26", "symbol": "memset"}, "820": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "860": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "888": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "908": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "928": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "960": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "980": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "988": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1032": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1048": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "1080": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "1104": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "1112": {"type": "MIPS_26", "symbol": "__sceEENetcallout_stop", "scope": "LIBRARY"}, "1152": {"type": "MIPS_26", "symbol": "pppoe_send_padr", "scope": "LIBRARY", "original": ".text"}, "1164": {"type": "MIPS_HI16", "symbol": "pppoe_timeout", "original": ".text"}, "1172": {"type": "MIPS_LO16", "symbol": "pppoe_timeout", "original": ".text"}, "1180": {"type": "MIPS_26", "symbol": "__sceEENetcallout_reset", "scope": "LIBRARY"}, "1196": {"type": "MIPS_26", "symbol": "pppoe_abort_connect", "scope": "LIBRARY", "original": ".text"}, "1224": {"type": "MIPS_26", "symbol": "__sceEENetcallout_stop", "scope": "LIBRARY"}, "1232": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1240": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1248": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1316": {"type": "MIPS_26", "symbol": "__sceEENetcallout_stop", "scope": "LIBRARY"}, "1324": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1332": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1340": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1360": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetetherbroadcastaddr"}, "1368": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetetherbroadcastaddr"}, "1384": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "1404": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "1448": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1460": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1468": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1472": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1488": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1492": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1504": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}}}}}, "pppoe_disc_input": {"48620c83ef6911ee5b7cbfd61be738089dbf8b4e": {"adbb95ce": {"type": "FUNCTION", "size": 76, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "sceEENetMAdj", "sco)PS2SDB", 8192}, + std::string_view{R"PS2SDB(pe": "LIBRARY"}, "44": {"type": "MIPS_26", "symbol": "pppoe_dispatch_disc_pkt", "scope": "LIBRARY", "original": ".text"}, "68": {"type": "MIPS_26", "symbol": "sceEENetMFree", "scope": "LIBRARY"}}}}}, "pppoe_data_input": {"db340b592152cd26b310218d509f3c465d2350de": {"98838b76": {"type": "FUNCTION", "size": 436, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "sceEENetMAdj", "scope": "LIBRARY"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "112": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "160": {"type": "MIPS_26", "symbol": "pppoe_find_softc_by_session", "scope": "LIBRARY", "original": ".text"}, "204": {"type": "MIPS_26", "symbol": "__sceEENetbpf_mtap", "scope": "LIBRARY"}, "216": {"type": "MIPS_26", "symbol": "sceEENetMAdj", "scope": "LIBRARY"}, "228": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "248": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "260": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "264": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "276": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "300": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "304": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "312": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "388": {"type": "MIPS_26", "symbol": "__sceEENetsppp_input", "scope": "LIBRARY"}, "428": {"type": "MIPS_26", "symbol": "sceEENetMFree", "scope": "LIBRARY"}}}}}, "pppoe_output": {"2a3c48f810658dfebb9c33a12c2f960047afe1e3": {"6eeb9a87": {"type": "FUNCTION", "size": 324, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "memset"}, "108": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "136": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "156": {"type": "MIPS_26", "symbol": "__sceEENetether_sprintf", "scope": "LIBRARY"}, "192": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "256": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "276": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}}}}}, "pppoe_ioctl": {"d6c5dd4319bc36317fa609c7ad5312cf6ddf9dcd": {"a5e0b8bc": {"type": "FUNCTION", "size": 540, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"196": {"type": "MIPS_26", "symbol": "__sceEENetifunit", "scope": "LIBRARY"}, "236": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "260": {"type": "MIPS_26", "symbol": "strncpy"}, "280": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "308": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "340": {"type": "MIPS_26", "symbol": "strncpy"}, "360": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "392": {"type": "MIPS_26", "symbol": "memset"}, "416": {"type": "MIPS_26", "symbol": "strncpy"}, "480": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "496": {"type": "MIPS_26", "symbol": "__sceEENetsppp_ioctl", "scope": "LIBRARY"}}}}}, "pppoe_get_mbuf": {"ded6b1a99b1a67114e1a4f683116df6429ccaf0d": {"899ab7d4": {"type": "FUNCTION", "size": 528, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "32": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "44": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "60": {"type": "MIPS_26", "symbol": "__sceEENetMRetryhdr", "scope": "LIBRARY"}, "140": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "152": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "__sceEENetMReclaim", "scope": "LIBRARY"}, "176": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "192": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "264": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "304": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "384": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "432": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "456": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "464": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "pppoe_send_padi": {"9e2aaf3623285cd53d0bdcfbe508984f36286839": {"931af7fe": {"type": "FUNCTION", "size": 680, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_26", "symbol": "__sceEENetpanic", "scope": "LIBRARY"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_26", "symbol": "strlen"}, "136": {"type": "MIPS_26", "symbol": "strlen"}, "164": {"type": "MIPS_26", "symbol": "pppoe_get_mbuf", "scope": "LIBRARY", "original": ".text"}, "364": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "492": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "568": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "604": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "612": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "616": {"type": "MIPS_26", "symbol": "__sceEENetpanic", "scope": "LIBRARY"}, "632": {"type": "MIPS_26", "symbol": "pppoe_output", "scope": "LIBRARY", "original": ".text"}}}}}, "pppoe_timeout": {"ac9cade55ff152d534c532f3f075dd42accb0bf1": {"f1711eb9": {"type": "FUNCTION", "size": 428, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "pppoe_send_padi", "scope": "LIBRARY", "original": ".text"}, "148": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetetherbroadcastaddr"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetetherbroadcastaddr"}, "192": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "212": {"type": "MIPS_26", "symbol": "pppoe_send_padi", "scope": "LIBRARY", "original": ".text"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "260": {"type": "MIPS_26", "symbol": "__sceEENetcallout_reset", "scope)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": "LIBRARY"}, "276": {"type": "MIPS_26", "symbol": "pppoe_abort_connect", "scope": "LIBRARY", "original": ".text"}, "300": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "308": {"type": "MIPS_26", "symbol": "pppoe_send_padr", "scope": "LIBRARY", "original": ".text"}, "336": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "344": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "360": {"type": "MIPS_26", "symbol": "__sceEENetcallout_reset", "scope": "LIBRARY"}, "376": {"type": "MIPS_26", "symbol": "pppoe_abort_connect", "scope": "LIBRARY", "original": ".text"}, "384": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "400": {"type": "MIPS_26", "symbol": "pppoe_disconnect", "scope": "LIBRARY", "original": ".text"}}}}}, "pppoe_connect": {"16c3230099a76ca8362d84df337803d750e5bf57": {"cf4f65b3": {"type": "FUNCTION", "size": 176, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "pppoe_send_padi", "scope": "LIBRARY", "original": ".text"}, "100": {"type": "MIPS_HI16", "symbol": "pppoe_timeout", "original": ".text"}, "108": {"type": "MIPS_LO16", "symbol": "pppoe_timeout", "original": ".text"}, "116": {"type": "MIPS_26", "symbol": "__sceEENetcallout_reset", "scope": "LIBRARY"}, "132": {"type": "MIPS_26", "symbol": "pppoe_abort_connect", "scope": "LIBRARY", "original": ".text"}, "140": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "pppoe_disconnect": {"ee7c164296c6d570451919af0765ac8987dc2a6e": {"04402fca": {"type": "FUNCTION", "size": 172, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "60": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "pppoe_send_padt", "scope": "LIBRARY", "original": ".text"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetetherbroadcastaddr"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetetherbroadcastaddr"}, "96": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "136": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "pppoe_abort_connect": {"f8b22ad2f81feae53d72ae9a3fa34b01413cea0b": {"d42c9ca8": {"type": "FUNCTION", "size": 88, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "28": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetetherbroadcastaddr"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetetherbroadcastaddr"}, "52": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}}}}}, "pppoe_send_padr": {"e3aba7a3729fe191241d66dabbf5617c7e642b01": {"8f91ff03": {"type": "FUNCTION", "size": 600, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"88": {"type": "MIPS_26", "symbol": "strlen"}, "132": {"type": "MIPS_26", "symbol": "pppoe_get_mbuf", "scope": "LIBRARY", "original": ".text"}, "288": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "404": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "488": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "524": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "532": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "540": {"type": "MIPS_26", "symbol": "__sceEENetpanic", "scope": "LIBRARY"}, "556": {"type": "MIPS_26", "symbol": "pppoe_output", "scope": "LIBRARY", "original": ".text"}}}}}, "pppoe_send_padt": {"524d6a7568a9b49f638947581825907e1e5bb20a": {"16377fcb": {"type": "FUNCTION", "size": 164, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "44": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "pppoe_get_mbuf", "scope": "LIBRARY", "original": ".text"}, "140": {"type": "MIPS_26", "symbol": "pppoe_output", "scope": "LIBRARY", "original": ".text"}}}}}, "pppoe_tls": {"08400121f30233f97c25ab9812875b478c8ddfcf": {"839c4ff5": {"type": "FUNCTION", "size": 28, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "pppoe_connect", "scope": "LIBRARY", "original": ".text"}}}}}, "pppoe_tlf": {"f932965d415460b2761aaed08cae2f1d8567de95": {"d117dce0": {"type": "FUNCTION", "size": 52, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "pppoe_timeout", "original": ".text"}, "28": {"type": "MIPS_LO16", "symbol": "pppoe_timeout", "original": ".text"}, "36": {"type": "MIPS_26", "symbol": "__sceEENetcallout_reset", "scope": "LIBRARY"}}}}}, "pppoe_start": {"6147d3230920aa4668269f618dbc1456c12c9a35": {"2cd2a3e7": {"type": "FUNCTION", "size": 392, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "__sceEENetsppp_isempty", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "__sceEENetsppp_flush", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "sceEENetMFree", "scope": "LIBRARY"}, "204": {"type": "MIPS_26", "symbol": "sceEENetMPrepend", "scope": "LIBRARY"}, "328": {"type": "MIPS_26", "symbol": "__sceEENetbpf_mtap", "scope": "LIBRARY"}, "340": {"type": "MIPS_26", "symbol": "pppoe_output", "scope": "LIBRARY", "original": ".text"}, "348": {"type": "MIPS_26", "symbol": "__sceEENetsppp_dequeue", "scope": "LIBRARY"}}}}}, "__sceEENetsppp_init": {"ad519239883ac4b9a4f922906bdcfe8b22f333cd": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "__sceEENetsppp_input": {"792816a82987c98319016450208ad6a8969bbf64": {"51a3519f": {"type": "FUNCTION", "size": 1432, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"208": {"type": "MIPS_26", "symbol": "sceEENetMPrepend", "scope": "LIBRARY"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "284": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "292": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "296": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "360": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "384": {"type": "MIPS_26", "symbol": "sceEENetMPullup", "scope": "LIBRARY"}, "400": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "416": {"type": "MIPS_26", "symbol": "sppp_vjuncomp", "scope": "LIBRARY", "original": ".text"}, "444": {"type": "MIPS_26", "symbol": "sceEENetMAdj", "scope": "LIBRARY"}, "500": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "508": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "528": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "556": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "584": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "672": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "784": {"type": "MIPS_26", "symbol": "sceEENetMPrepend", "scope": "LIBRARY"}, "832": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "860": {"type": "MIPS_26", "symbol": "sceEENetMCopydata", "scope": "LIBRARY"}, "900": {"type": "MIPS_26", "symbol": "sppp_cp_send", "scope": "LIBRARY", "original": ".text"}, "908": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "916": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "924": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "932": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "956": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "968": {"type": "MIPS_26", "symbol": "sppp_cp_input", "scope": "LIBRARY", "original": ".text"}, "972": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1008": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "1036": {"type": "MIPS_26", "symbol": "sppp_pap_input", "scope": "LIBRARY", "original": ".text"}, "1076": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "1100": {"type": "MIPS_26", "symbol": "sppp_chap_input", "scope": "LIBRARY", "original": ".text"}, "1140": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "1160": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1168": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1172": {"type": "MIPS_26", "symbol": "sppp_cp_input", "scope": "LIBRARY", "original": ".text"}, "1212": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "1236": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetnetisr"}, "1240": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetnetisr"}, "1248": {"type": "MIPS_26", "symbol": "__sceEENeteenet_netintr", "scope": "LIBRARY"}, "1252": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetnetisr"}, "1256": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetipintrq"}, "1260": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetipintrq"}, "1288": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "1328": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "1336": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1344": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1348": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1424": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "sppp_output": {"2abb703fed8e93205d5171deb7fb3257fb7004f4": {"eae6a93c": {"type": "FUNCTION", "size": 1048, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "128": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "152": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "208": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "224": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "232": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "304": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "328": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "336": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "348": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "392": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "408": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "548": {"type": "MIPS_26", "symbol": "sceEENetMPrepend", "scope": "LIBRARY"}, "608": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "616": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "620": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "640": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "692": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "712": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "728": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "772": {"type": "MIPS_26", "symbol": "sppp_vjcomp", "scope": "LIBRARY", "original": ".text"}, "796": {"type": "MIPS_26", "symbol": "sceEENetMAdj", "scope": "LIBRARY"}, "844": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "920": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "992": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "__sceEENetsppp_attach": {"efe17ed636664444fe552d19338eaff0d0ea89af": {"25030d3d": {"type": "FUNCTION", "size": 300, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_26", "symbol": "__sceEENetcallout_init", "scope": "LIBRARY"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "72": {"type": "MIPS_26", "symbol": "__sceEENetcallout_reset", "scope": "LIBRARY"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "152": {"type": "MIPS_26", "symbol": "memset"}, "172": {"type": "MIPS_26", "symbol": "memset"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "208": {"type": "MIPS_26", "symbol": "sppp_lcp_init", "scope": "LIBRARY", "original": ".text"}, "216": {"type": "MIPS_26", "symbol": "sppp_ipcp_init", "scope": "LIBRARY", "original": ".text"}, "224": {"type": "MIPS_26", "symbol": "sppp_ipv6cp_init", "scope": "LIBRARY", "original": ".text"}, "232": {"type": "MIPS_26", "symbol": "sppp_pap_init", "scope": "LIBRARY", "original": ".text"}, "240": {"type": "MIPS_26", "symbol": "sppp_chap_init", "scope": "LIBRARY", "original": ".text"}, "252": {"type": "MIPS_26", "symbol": "__sceEENetcallout_init", "scope": "LIBRARY"}, "292": {"type": "MIPS_26", "symbol": "__sceEENetcallout_init", "scope": "LIBRARY"}}}}}, "__sceEENetsppp_detach": {"d9383eb527da8b9c67db64180e1d21e426e0aeee": {"5f931d7a": {"type": "FUNCTION", "size": 176, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO1)PS2SDB", 8192}, + std::string_view{R"PS2SDB(6", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_26", "symbol": "__sceEENetcallout_stop", "scope": "LIBRARY"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_26", "symbol": "__sceEENetcallout_stop", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "__sceEENetcallout_stop", "scope": "LIBRARY"}}}}}, "__sceEENetsppp_flush": {"c52d45359a79f3f5193b876d5dc282526e6ab46d": {"006e1c83": {"type": "FUNCTION", "size": 200, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "172": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}}}}}, "__sceEENetsppp_isempty": {"f7b3797a6ca85a5633bc008458641bd2e4e931b8": {"5cadfadd": {"type": "FUNCTION", "size": 96, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "__sceEENetsppp_dequeue": {"9053837cb99159ec47c5b2e23aa1d6d78880f852": {"371aac11": {"type": "FUNCTION", "size": 216, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "sppp_ncp_check", "scope": "LIBRARY", "original": ".text"}, "180": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "__sceEENetsppp_pick": {"a11483912b40d6bafc6ac26009489a06881dc3ec": {"aa6a49ad": {"type": "FUNCTION", "size": 96, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "__sceEENetsppp_ioctl": {"1a6bd4aa5c5d5d7d57d12ff134f85a2cbf9c7b53": {"a363e8f4": {"type": "FUNCTION", "size": 752, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "440": {"type": "MIPS_26", "symbol": "__sceEENetif_up", "scope": "LIBRARY"}, "524": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "536": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "560": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "568": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "604": {"type": "MIPS_26", "symbol": "__sceEENetsppp_flush", "scope": "LIBRARY", "original": ".text"}, "692": {"type": "MIPS_26", "symbol": "sppp_params", "scope": "LIBRARY", "original": ".text"}, "704": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "sppp_cp_send": {"8964aa7b8b5e976c5b968c679544cf93b50fc5f6": {"f4174d77": {"type": "FUNCTION", "size": 692, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"108": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "120": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "132": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "148": {"type": "MIPS_26", "symbol": "__sceEENetMRetryhdr", "scope": "LIBRARY"}, "200": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "284": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "316": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "348": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "356": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "364": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "368": {"type": "MIPS_26", "symbol": "sppp_proto_name", "scope": "LIBRARY", "original": ".text"}, "380": {"type": "MIPS_26", "symbol": "sppp_cp_type_name", "scope": "LIBRARY", "original": ".text"}, "412": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "444": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "460": {"type": "MIPS_26", "symbol": "sppp_print_bytes", "scope": "LIBRARY", "original": ".text"}, "468": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "476": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "480": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "528": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}}}}}, "sppp_cp_input": {"9bf0c7af0f4c83840f9291f27bf72a272864e725": {"c32fc086": {"type": "FUNCTION", "size": 3388, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "152": {"type": "MIPS_26", "symbol": "sppp_state_name", "scope": "LIBRARY", "original": ".text"}, "164": {"type": "MIPS_26", "symbol": "sppp_cp_type_name", "scope": "LIBRARY", "original": ".text"}, "196": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "232": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "260": {"type": "MIPS_26", "symbol": "sppp_print_bytes", "scope": "LIBRARY", "original": ".text"}, "272": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "276": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "284": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "308": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "348": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "356": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "384": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "392": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "404": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "536": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "544": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "604": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "608": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "616": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "620": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "684": {"type": "MIPS_26", "symbol": "sppp_cp_change_state", "scope": "LIBRARY", "original": ".text"}, "712": {"type": "MIPS_26", "symbol": "sppp_cp_change_state", "scope": "LIBRARY", "original": ".text"}, "720": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "728": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "736": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "756": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "760": {"type": "MIPS_26", "symbol": "sppp_cp_type_name", "scope": "LIBRARY", "original": ".text"}, "764": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "78)PS2SDB", 8192}, + std::string_view{R"PS2SDB(8": {"type": "MIPS_26", "symbol": "sppp_state_name", "scope": "LIBRARY", "original": ".text"}, "816": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "868": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "872": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "880": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "924": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "932": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "952": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "956": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "964": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "968": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1040": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1044": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1056": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1060": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1100": {"type": "MIPS_26", "symbol": "sppp_cp_change_state", "scope": "LIBRARY", "original": ".text"}, "1108": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1116": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1124": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1140": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1148": {"type": "MIPS_26", "symbol": "sppp_cp_type_name", "scope": "LIBRARY", "original": ".text"}, "1152": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1176": {"type": "MIPS_26", "symbol": "sppp_state_name", "scope": "LIBRARY", "original": ".text"}, "1204": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1244": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1256": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1268": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1376": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1384": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1404": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1408": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1420": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1424": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1484": {"type": "MIPS_26", "symbol": "sppp_cp_change_state", "scope": "LIBRARY", "original": ".text"}, "1504": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1508": {"type": "MIPS_26", "symbol": "sppp_cp_type_name", "scope": "LIBRARY", "original": ".text"}, "1512": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1536": {"type": "MIPS_26", "symbol": "sppp_state_name", "scope": "LIBRARY", "original": ".text"}, "1564": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1612": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1620": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1648": {"type": "MIPS_26", "symbol": "sppp_cp_change_state", "scope": "LIBRARY", "original": ".text"}, "1656": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1664": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1672": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1700": {"type": "MIPS_26", "symbol": "sppp_cp_send", "scope": "LIBRARY", "original": ".text"}, "1752": {"type": "MIPS_26", "symbol": "sppp_cp_change_state", "scope": "LIBRARY", "original": ".text"}, "1764": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1768": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1776": {"type": "MIPS_26", "symbol": "sppp_cp_type_name", "scope": "LIBRARY", "original": ".text"}, "1780": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1804": {"type": "MIPS_26", "symbol": "sppp_state_name", "scope": "LIBRARY", "original": ".text"}, "1832": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1880": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1888": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1960": {"type": "MIPS_26", "symbol": "sppp_cp_change_state", "scope": "LIBRARY", "original": ".text"}, "1968": {"type": "MIPS_26", "symbol": "sppp_lcp_check_and_close", "scope": "LIBRARY", "original": ".text"}, "2016": {"type": "MIPS_26", "symbol": "sppp_cp_change_state", "scope": "LIBRARY", "original": ".text"}, "2032": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2040": {"type": "MIPS_26", "symbol": "sppp_cp_type_name", "scope": "LIBRARY", "original": ".text"}, "2044": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2068": {"type": "MIPS_26", "symbol": "sppp_state_name", "scope": "LIBRARY", "original": ".text"}, "2096": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "2112": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2120": {"type": "MIPS_26", "symbol": "sppp_cp_type_name", "scope": "LIBRARY", "original": ".text"}, "2124": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2144": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "2184": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2192": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2216": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2220": {"type": "MIPS_26", "symbol": "sppp_cp_type_name", "scope": "LIBRARY", "original": ".text"}, "2224": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2248": {"type": "MIPS_26", "symbol": "sppp_state_name", "scope": "LIBRARY", "original": ".text"}, "2276": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "2292": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "2300": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "2340": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2344": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2360": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "2396": {"type": "MIPS_26", "symbol": "sppp_cp_type_name", "scope": "LIBRARY", "original": ".text"}, "2428": {"type": "MIPS_26", "symbol": "sppp_state_name", "scope": "LIBRARY", "original": ".text"}, "2444": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2448": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2460": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2480": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2484": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2508": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "2612": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2620": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2648": {"type": "MIPS_26", "symbol": "sppp_cp_change_state", "scope": "LIBRARY", "original": ".text"}, "2668": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2672": {"type": "MIPS_26", "symbol": "sppp_cp_type_name", "scope": "LIBRARY", "original": ".text"}, "2676": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2700": {"type": "MIPS_26", "symbol": "sppp_state_name", "scope": "LIBRARY", "original": ".text"}, "2728": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "2756": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2780": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2812": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2820": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2824": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "2848": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2860": {"type": "MIPS_LO16")PS2SDB", 8192}, + std::string_view{R"PS2SDB(, "symbol": "", "original": ".rodata"}, "2876": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "2884": {"type": "MIPS_26", "symbol": "sceEENetNtohl", "scope": "LIBRARY"}, "2900": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2908": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2912": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "2920": {"type": "MIPS_26", "symbol": "__sceEENetif_down"}, "2928": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2940": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2972": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "3020": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "3040": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "3048": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3056": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3060": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "3092": {"type": "MIPS_26", "symbol": "sppp_cp_send", "scope": "LIBRARY", "original": ".text"}, "3120": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3148": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3156": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3164": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "3180": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3188": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3192": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "3208": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "3216": {"type": "MIPS_26", "symbol": "sceEENetNtohl", "scope": "LIBRARY"}, "3244": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3252": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "3260": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "3320": {"type": "MIPS_26", "symbol": "sppp_cp_send", "scope": "LIBRARY", "original": ".text"}}}}}, "sppp_up_event": {"24c4abab21405cbe1644fe2b9855819d26ed9e69": {"1b0d5d88": {"type": "FUNCTION", "size": 364, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_26", "symbol": "sppp_state_name", "scope": "LIBRARY", "original": ".text"}, "96": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "180": {"type": "MIPS_26", "symbol": "sppp_cp_change_state", "scope": "LIBRARY", "original": ".text"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "284": {"type": "MIPS_26", "symbol": "sppp_cp_change_state", "scope": "LIBRARY", "original": ".text"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "300": {"type": "MIPS_26", "symbol": "sppp_state_name", "scope": "LIBRARY", "original": ".text"}, "356": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}}}}}, "sppp_down_event": {"230bd590c2db7049f0707ef51ec1cca2516347f0": {"e588ec60": {"type": "FUNCTION", "size": 372, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_26", "symbol": "sppp_state_name", "scope": "LIBRARY", "original": ".text"}, "88": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "188": {"type": "MIPS_26", "symbol": "sppp_cp_change_state", "scope": "LIBRARY", "original": ".text"}, "244": {"type": "MIPS_26", "symbol": "sppp_cp_change_state", "scope": "LIBRARY", "original": ".text"}, "300": {"type": "MIPS_26", "symbol": "sppp_cp_change_state", "scope": "LIBRARY", "original": ".text"}, "308": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "312": {"type": "MIPS_26", "symbol": "sppp_state_name", "scope": "LIBRARY", "original": ".text"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "364": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}}}}}, "sppp_open_event": {"f7504d52544c5748d3af041e8bf17a4a1b001300": {"9c6c5dc6": {"type": "FUNCTION", "size": 388, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_26", "symbol": "sppp_state_name", "scope": "LIBRARY", "original": ".text"}, "88": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "196": {"type": "MIPS_26", "symbol": "sppp_cp_change_state", "scope": "LIBRARY", "original": ".text"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "216": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "304": {"type": "MIPS_26", "symbol": "sppp_cp_change_state", "scope": "LIBRARY", "original": ".text"}, "348": {"type": "MIPS_26", "symbol": "sppp_cp_change_state", "scope": "LIBRARY", "original": ".text"}}}}}, "sppp_close_event": {"40770ac018a172f58d22445561cb2c5dde90e494": {"078953fd": {"type": "FUNCTION", "size": 492, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_26", "symbol": "sppp_state_name", "scope": "LIBRARY", "original": ".text"}, "88": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "196": {"type": "MIPS_26", "symbol": "sppp_cp_change_state", "scope": "LIBRARY", "original": ".text"}, "240": {"type": "MIPS_26", "symbol": "sppp_cp_change_state", "scope": "LIBRARY", "original": ".text"}, "284": {"type": "MIPS_26", "symbol": "sppp_cp_change_state", "scope": "LIBRARY", "original": ".text"}, "308": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "312": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "320": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "324": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "408": {"type": "MIPS_26", "symbol": "sppp_cp_send", "scope": "LIBRARY", "original": ".text"}, "452": {"type": "MIPS_26", "symbol": "sppp_cp_change_state", "scope": "LIBRARY", "original": ".text"}}}}}, "sppp_to_event": {"4709182e0979ef38ea44d0d17f06067b143009d1": {"1ef3e439": {"type": "FUNCTION", "size": 632, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "64": {"type": "MIPS_HI16", "symbol":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "", "original": ".rodata"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_26", "symbol": "sppp_state_name", "scope": "LIBRARY", "original": ".text"}, "124": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "280": {"type": "MIPS_26", "symbol": "sppp_cp_change_state", "scope": "LIBRARY", "original": ".text"}, "288": {"type": "MIPS_26", "symbol": "sppp_lcp_check_and_close", "scope": "LIBRARY", "original": ".text"}, "332": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "404": {"type": "MIPS_26", "symbol": "sppp_cp_send", "scope": "LIBRARY", "original": ".text"}, "412": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "416": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "424": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "428": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "464": {"type": "MIPS_26", "symbol": "__sceEENetcallout_reset", "scope": "LIBRARY"}, "500": {"type": "MIPS_26", "symbol": "sppp_cp_change_state", "scope": "LIBRARY", "original": ".text"}, "528": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "532": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "540": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "544": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "580": {"type": "MIPS_26", "symbol": "__sceEENetcallout_reset", "scope": "LIBRARY"}, "624": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "sppp_cp_change_state": {"cdee1dcc4ec8fa026152806d402eae6a4be6a5ff": {"eb7283ef": {"type": "FUNCTION", "size": 240, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "__sceEENetcallout_stop", "scope": "LIBRARY"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "208": {"type": "MIPS_26", "symbol": "__sceEENetcallout_reset", "scope": "LIBRARY"}}}}}, "sppp_lcp_init": {"09f06d11ff958b81a895afc4b546ceeebf3a62b6": {"00000000": {"type": "FUNCTION", "size": 36, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sppp_lcp_up": {"e6e30fc9ce0f7d041ca6223cdc0faa0b5b76fb2f": {"c0117e7e": {"type": "FUNCTION", "size": 228, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "44": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "140": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "220": {"type": "MIPS_26", "symbol": "sppp_up_event", "scope": "LIBRARY", "original": ".text"}}}}}, "sppp_lcp_down": {"ae3707ed99d0026f940f9e76bcb663df9d9015e7": {"70927d2b": {"type": "FUNCTION", "size": 204, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "28": {"type": "MIPS_26", "symbol": "sppp_down_event", "scope": "LIBRARY", "original": ".text"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "__sceEENetif_down"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sppp_lcp_open": {"f5d74a1a5e2cc544ab94fe908972dea9b1d42245": {"96f1d148": {"type": "FUNCTION", "size": 428, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"408": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "416": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "420": {"type": "MIPS_26", "symbol": "sppp_open_event", "scope": "LIBRARY", "original": ".text"}}}}}, "sppp_lcp_close": {"ee87e26cace34f85a359594ea20a15084700afdb": {"2dee370a": {"type": "FUNCTION", "size": 16, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "8": {"type": "MIPS_26", "symbol": "sppp_close_event", "scope": "LIBRARY", "original": ".text"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sppp_lcp_TO": {"ee87e26cace34f85a359594ea20a15084700afdb": {"9597ac32": {"type": "FUNCTION", "size": 16, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "8": {"type": "MIPS_26", "symbol": "sppp_to_event", "scope": "LIBRARY", "original": ".text"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sppp_lcp_RCR": {"6e2d31bf70fe52cb66af4d5ca8f156675d88cae0": {"9cb49ff3": {"type": "FUNCTION", "size": 2020, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "124": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "168": {"type": "MIPS_26", "symbol": "sppp_lcp_opt_name", "scope": "LIBRARY", "original": ".te)PS2SDB", 8192}, + std::string_view{R"PS2SDB(xt"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "208": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "256": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "292": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "336": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "372": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "408": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "428": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "436": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "440": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "456": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "492": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "564": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "572": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "576": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "600": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "608": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "612": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "636": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "644": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "648": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "660": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "728": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "732": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "736": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "768": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "772": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "776": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "780": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "792": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "796": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "824": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "836": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "840": {"type": "MIPS_26", "symbol": "sppp_lcp_opt_name", "scope": "LIBRARY", "original": ".text"}, "856": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "880": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "888": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "956": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "964": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "968": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1000": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1004": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1016": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1020": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1040": {"type": "MIPS_26", "symbol": "__sceEENetif_down"}, "1048": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1068": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1100": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "1152": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1156": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1204": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "1256": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1264": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1364": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1372": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1380": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1400": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "1432": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1440": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1448": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1540": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1548": {"type": "MIPS_26", "symbol": "sppp_proto_name", "scope": "LIBRARY", "original": ".text"}, "1552": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1560": {"type": "MIPS_26", "symbol": "sppp_proto_name", "scope": "LIBRARY", "original": ".text"}, "1580": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1596": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "1716": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1724": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1728": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1744": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "1824": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1836": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1840": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1848": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1852": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1884": {"type": "MIPS_26", "symbol": "sppp_cp_send", "scope": "LIBRARY", "original": ".text"}, "1904": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1908": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1948": {"type": "MIPS_26", "symbol": "sppp_cp_send", "scope": "LIBRARY", "original": ".text"}, "1956": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}}}}}, "sppp_lcp_RCN_rej": {"1a1b4e427c4aaf5c0f6fefc6dc6e314c7e77d12b": {"26105b71": {"type": "FUNCTION", "size": 412, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "sppp_lcp_opt_name", "scope": "LIBRARY", "original": ".text"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "108": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "260": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "268": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "276": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "312": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "324": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "328": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "336": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "372": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}}}}}, "sppp_lcp_RCN_nak": {"14d42333e039594abbd63202deeb48cc855a443f": {"48d2fa5f": {"type": "FUNCTION", "size": 928, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compil)PS2SDB", 8192}, + std::string_view{R"PS2SDB(er_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "108": {"type": "MIPS_26", "symbol": "sppp_lcp_opt_name", "scope": "LIBRARY", "original": ".text"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "124": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "256": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "260": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "268": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "276": {"type": "MIPS_26", "symbol": "__sceEENetrandom", "scope": "LIBRARY"}, "300": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "304": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "360": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "368": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "408": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "468": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "476": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "492": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "724": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "736": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "740": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "748": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "752": {"type": "MIPS_26", "symbol": "sppp_proto_name", "scope": "LIBRARY", "original": ".text"}, "768": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "788": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "792": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "796": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "800": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "836": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "844": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "848": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "884": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}}}}}, "sppp_lcp_tlu": {"50a2d56f2674103ea1f3c3d3b4394c7b3f1db95c": {"797c58a2": {"type": "FUNCTION", "size": 564, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "__sceEENetif_up", "scope": "LIBRARY"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "200": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "232": {"type": "MIPS_26", "symbol": "sppp_phase_name", "scope": "LIBRARY", "original": ".text"}, "252": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "260": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "328": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "336": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "388": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "396": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "532": {"type": "MIPS_26", "symbol": "sppp_lcp_check_and_close", "scope": "LIBRARY", "original": ".text"}}}}}, "sppp_lcp_tld": {"fb6f9fb5c2d1944c096ace8d664228d23219db74": {"95316e10": {"type": "FUNCTION", "size": 204, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "48": {"type": "MIPS_26", "symbol": "sppp_phase_name", "scope": "LIBRARY", "original": ".text"}, "72": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sppp_lcp_tls": {"817f1cadc3877a9dd59c17d2ea3248d561dd77a3": {"d5e67141": {"type": "FUNCTION", "size": 128, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "56": {"type": "MIPS_26", "symbol": "sppp_phase_name", "scope": "LIBRARY", "original": ".text"}, "76": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}}}}}, "sppp_lcp_tlf": {"396e679b85789d55cd99c40aa7a1002cb3e2b730": {"d3c60c56": {"type": "FUNCTION", "size": 112, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_26", "symbol": "sppp_phase_name", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}}}}}, "sppp_lcp_scr": {"69382b4ae78848c665cb8a2af1f6561457d34b7b": {"a474ee0e": {"type": "FUNCTION", "size": 612, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "__sceEENetrandom", "scope": "LIBRARY"}, "588": {"type": "MIPS_26", "symbol": "sppp_cp_send", "scope": "LIBRARY", "original": ".text"}}}}}, "sppp_ncp_check": {"9d2a2debac4d744e9cc2bcb2c97baa34eed7f695": {"bae1b0f3": {"type": "FUNCTION", "size": 88, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sppp_lcp_check_and_close": {"47124349c0278da600db6fe050ccf0b61e6ca11e": {"b36a8059": {"type": "FUNCTION", "size": 80, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "sppp_ncp_check", "scope": "LIBRARY", "original": ".text"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sppp_ipcp_init": {"00b2cbf8a839da42beeab644c92f6f3b433301a3": {"10abfc0a": {"type": "FUNCTION", "size": 36, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__sceEENetsl_compress_init", "scope": "LIBRARY"}}}}}, "sppp_ipcp_up": {"ee87e26cace34f85a359594ea20a15084700afdb": {"a02d3ab0": {"type": "FUNCTION", "size": 16, "library": "libeenet", "s)PS2SDB", 8192}, + std::string_view{R"PS2SDB(cope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "8": {"type": "MIPS_26", "symbol": "sppp_up_event", "scope": "LIBRARY", "original": ".text"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sppp_ipcp_down": {"ee87e26cace34f85a359594ea20a15084700afdb": {"ef6eb5b1": {"type": "FUNCTION", "size": 16, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "8": {"type": "MIPS_26", "symbol": "sppp_down_event", "scope": "LIBRARY", "original": ".text"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sppp_ipcp_open": {"1c1d82fea3752eeb556f68fca337e7f974ea095b": {"d60a1ebf": {"type": "FUNCTION", "size": 452, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"72": {"type": "MIPS_26", "symbol": "sceEENetInetAddr", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "sceEENetNtohl", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "sceEENetNtohl", "scope": "LIBRARY"}, "120": {"type": "MIPS_26", "symbol": "sceEENetInetAddr", "scope": "LIBRARY"}, "128": {"type": "MIPS_26", "symbol": "sceEENetNtohl", "scope": "LIBRARY"}, "196": {"type": "MIPS_26", "symbol": "sceEENetInetAddr", "scope": "LIBRARY"}, "204": {"type": "MIPS_26", "symbol": "sceEENetNtohl", "scope": "LIBRARY"}, "224": {"type": "MIPS_26", "symbol": "sceEENetNtohl", "scope": "LIBRARY"}, "288": {"type": "MIPS_26", "symbol": "sceEENetInetAddr", "scope": "LIBRARY"}, "296": {"type": "MIPS_26", "symbol": "sceEENetNtohl", "scope": "LIBRARY"}, "316": {"type": "MIPS_26", "symbol": "sceEENetNtohl", "scope": "LIBRARY"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "428": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "444": {"type": "MIPS_26", "symbol": "sppp_open_event", "scope": "LIBRARY", "original": ".text"}}}}}, "sppp_ipcp_close": {"ee87e26cace34f85a359594ea20a15084700afdb": {"2dee370a": {"type": "FUNCTION", "size": 16, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "8": {"type": "MIPS_26", "symbol": "sppp_close_event", "scope": "LIBRARY", "original": ".text"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sppp_ipcp_TO": {"ee87e26cace34f85a359594ea20a15084700afdb": {"9597ac32": {"type": "FUNCTION", "size": 16, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "8": {"type": "MIPS_26", "symbol": "sppp_to_event", "scope": "LIBRARY", "original": ".text"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sppp_ipcp_RCR": {"a72c15a96ca407985a763a9660c33951f2b88ebd": {"aeb834bc": {"type": "FUNCTION", "size": 1532, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"76": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "192": {"type": "MIPS_26", "symbol": "sppp_ipcp_opt_name", "scope": "LIBRARY", "original": ".text"}, "200": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "212": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "388": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "392": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "424": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "428": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "440": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "444": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "456": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "512": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "516": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "524": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "528": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "564": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "568": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "572": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "580": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "584": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "620": {"type": "MIPS_26", "symbol": "sppp_ipcp_opt_name", "scope": "LIBRARY", "original": ".text"}, "628": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "640": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "644": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "756": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "780": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "788": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "796": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "836": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "844": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "852": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "868": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "952": {"type": "MIPS_26", "symbol": "sceEENetInetAddr", "scope": "LIBRARY"}, "960": {"type": "MIPS_26", "symbol": "sceEENetNtohl", "scope": "LIBRARY"}, "976": {"type": "MIPS_26", "symbol": "sceEENetNtohl", "scope": "LIBRARY"}, "1012": {"type": "MIPS_26", "symbol": "sppp_dotted_quad", "scope": "LIBRARY", "original": ".text"}, "1028": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1032": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1036": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1052": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1060": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1064": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1076": {"type": "MIPS_26", "symbol": "sppp_dotted_quad", "scope": "LIBRARY", "original": ".text"}, "1084": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1096": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1100": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1112": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "1204": {"type": "MIPS_26", "symbol": "sppp_dotted_quad", "scope": "LIBRARY", "original": ".text"}, "1220": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1224": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1228": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1288": {"type": "MIPS_26", "symbol": "sppp_dotted_quad", "scope": "LIBRARY", "original": ".text"}, "1296": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1308": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1312": {"type": "MIPS_LO16", "symbol": "", "original": ".rodat)PS2SDB", 8192}, + std::string_view{R"PS2SDB(a"}, "1364": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1368": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1376": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1380": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1408": {"type": "MIPS_26", "symbol": "sppp_cp_send", "scope": "LIBRARY", "original": ".text"}, "1428": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1432": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1464": {"type": "MIPS_26", "symbol": "sppp_cp_send", "scope": "LIBRARY", "original": ".text"}, "1472": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}}}}}, "sppp_ipcp_RCN_rej": {"6363ee90c911c0d9b7df727a7b7644af63be644d": {"e40cc28b": {"type": "FUNCTION", "size": 368, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_26", "symbol": "sppp_ipcp_opt_name", "scope": "LIBRARY", "original": ".text"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "164": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "308": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "328": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "360": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}}}}}, "sppp_ipcp_RCN_nak": {"83b4af38e792e112e812dfdee7eca9ffa9fd006c": {"eb5c747c": {"type": "FUNCTION", "size": 888, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_26", "symbol": "sppp_ipcp_opt_name", "scope": "LIBRARY", "original": ".text"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "288": {"type": "MIPS_26", "symbol": "sceEENetInetAddr", "scope": "LIBRARY"}, "296": {"type": "MIPS_26", "symbol": "sceEENetNtohl", "scope": "LIBRARY"}, "312": {"type": "MIPS_26", "symbol": "sceEENetNtohl", "scope": "LIBRARY"}, "348": {"type": "MIPS_26", "symbol": "sppp_dotted_quad", "scope": "LIBRARY", "original": ".text"}, "364": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "368": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "372": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "604": {"type": "MIPS_26", "symbol": "sppp_dotted_quad", "scope": "LIBRARY", "original": ".text"}, "620": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "624": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "704": {"type": "MIPS_26", "symbol": "sppp_dotted_quad", "scope": "LIBRARY", "original": ".text"}, "720": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "724": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "772": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "780": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "784": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "832": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}}}}}, "sppp_ipcp_tlu": {"3f0849d3d4d80c79ea2a08ed46b6583f3241a9f4": {"967455ef": {"type": "FUNCTION", "size": 96, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "__sceEENetsl_compress_setup", "scope": "LIBRARY"}}}}}, "sppp_ipcp_tld": {"27b0c468bddc2fbd013f316c0acdb9ff5f37deef": {"00000000": {"type": "FUNCTION", "size": 24, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sppp_ipcp_tls": {"5679a8cbd5d67f769503df69486577bdaf3843a5": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sppp_ipcp_tlf": {"59e6213fda861408924025dcb7f4b4d92b72c10d": {"00000000": {"type": "FUNCTION", "size": 24, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sppp_ipcp_scr": {"c5e79dfa1a3361265c52b1bf17950623e421d801": {"47e55d56": {"type": "FUNCTION", "size": 468, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"448": {"type": "MIPS_26", "symbol": "sppp_cp_send", "scope": "LIBRARY", "original": ".text"}}}}}, "sppp_ipv6cp_init": {"7678540574197b420f17571673856a74783eb9d5": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sppp_ipv6cp_up": {"7678540574197b420f17571673856a74783eb9d5": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sppp_ipv6cp_down": {"7678540574197b420f17571673856a74783eb9d5": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sppp_ipv6cp_open": {"7678540574197b420f17571673856a74783eb9d5": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sppp_ipv6cp_close": {"7678540574197b420f17571673856a74783eb9d5": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sppp_ipv6cp_TO": {"7678540574197b420f17571673856a74783eb9d5": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sppp_ipv6cp_RCR": {"0a5385cf4a659d302a43046ea0269e2b17a3ef1d": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sppp_ipv6cp_RCN_rej": {"7678540574197b420f17571673856a74783eb9d5": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sppp_ipv6cp_RCN_nak": {"7678540574197b420f17571673856a74783eb9d5": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sppp_ipv6c)PS2SDB", 8192}, + std::string_view{R"PS2SDB(p_tlu": {"7678540574197b420f17571673856a74783eb9d5": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sppp_ipv6cp_tld": {"7678540574197b420f17571673856a74783eb9d5": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sppp_ipv6cp_tls": {"7678540574197b420f17571673856a74783eb9d5": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sppp_ipv6cp_tlf": {"7678540574197b420f17571673856a74783eb9d5": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sppp_ipv6cp_scr": {"7678540574197b420f17571673856a74783eb9d5": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sppp_chap_input": {"f5fc6d2f98c8a1e640c0d8509877501aa4481dae": {"077aef87": {"type": "FUNCTION", "size": 2056, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "240": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "260": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "272": {"type": "MIPS_26", "symbol": "sppp_auth_type_name", "scope": "LIBRARY", "original": ".text"}, "316": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "344": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "356": {"type": "MIPS_26", "symbol": "sppp_print_string", "scope": "LIBRARY", "original": ".text"}, "364": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "376": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "380": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "388": {"type": "MIPS_26", "symbol": "sppp_print_bytes", "scope": "LIBRARY", "original": ".text"}, "396": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "404": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "408": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "416": {"type": "MIPS_26", "symbol": "__sceEENetMD5Init", "scope": "LIBRARY"}, "432": {"type": "MIPS_26", "symbol": "__sceEENetMD5Update", "scope": "LIBRARY"}, "444": {"type": "MIPS_26", "symbol": "sppp_strnlen", "scope": "LIBRARY", "original": ".text"}, "460": {"type": "MIPS_26", "symbol": "__sceEENetMD5Update", "scope": "LIBRARY"}, "476": {"type": "MIPS_26", "symbol": "__sceEENetMD5Update", "scope": "LIBRARY"}, "488": {"type": "MIPS_26", "symbol": "__sceEENetMD5Final", "scope": "LIBRARY"}, "508": {"type": "MIPS_26", "symbol": "sppp_strnlen", "scope": "LIBRARY", "original": ".text"}, "520": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "536": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "560": {"type": "MIPS_26", "symbol": "sppp_auth_send", "scope": "LIBRARY", "original": ".text"}, "568": {"type": "MIPS_HI16", "symbol": "sppp_chap_my_TO", "original": ".text"}, "576": {"type": "MIPS_LO16", "symbol": "sppp_chap_my_TO", "original": ".text"}, "584": {"type": "MIPS_26", "symbol": "__sceEENetcallout_reset", "scope": "LIBRARY"}, "616": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "636": {"type": "MIPS_26", "symbol": "__sceEENetcallout_stop", "scope": "LIBRARY"}, "644": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "652": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "656": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "672": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "712": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "724": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "732": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "736": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "748": {"type": "MIPS_26", "symbol": "sppp_print_string", "scope": "LIBRARY", "original": ".text"}, "756": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "764": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "768": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "772": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "848": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "864": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "872": {"type": "MIPS_26", "symbol": "sppp_phase_network", "scope": "LIBRARY", "original": ".text"}, "888": {"type": "MIPS_26", "symbol": "__sceEENetcallout_stop", "scope": "LIBRARY"}, "896": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "904": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "908": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "924": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "964": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "976": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "984": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "988": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1000": {"type": "MIPS_26", "symbol": "sppp_print_string", "scope": "LIBRARY", "original": ".text"}, "1008": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1016": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1020": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1068": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1076": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1084": {"type": "MIPS_26", "symbol": "sppp_auth_type_name", "scope": "LIBRARY", "original": ".text"}, "1116": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "1144": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1160": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1172": {"type": "MIPS_26", "symbol": "sppp_print_bytes", "scope": "LIBRARY", "original": ".text"}, "1180": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1188": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1192": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1216": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1228": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1236": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1260": {"type": "MIPS_26", "symbol": "sppp_strnlen", "scope": "LIBRARY", "original": ".text"}, "1272": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1284": {"type": "MIPS_26", "symbol": "bcmp"}, "1296": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1300": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1308": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1312": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1324": {"type": "MIPS_26", "symbol": "sppp_print_string", "sc)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ope": "LIBRARY", "original": ".text"}, "1332": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1340": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1344": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1352": {"type": "MIPS_26", "symbol": "sppp_strnlen", "scope": "LIBRARY", "original": ".text"}, "1364": {"type": "MIPS_26", "symbol": "sppp_print_string", "scope": "LIBRARY", "original": ".text"}, "1372": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1380": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1384": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1388": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1396": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1400": {"type": "MIPS_26", "symbol": "sppp_state_name", "scope": "LIBRARY", "original": ".text"}, "1416": {"type": "MIPS_26", "symbol": "sppp_auth_type_name", "scope": "LIBRARY", "original": ".text"}, "1448": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "1480": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1492": {"type": "MIPS_26", "symbol": "sppp_print_string", "scope": "LIBRARY", "original": ".text"}, "1500": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1512": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1516": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1524": {"type": "MIPS_26", "symbol": "sppp_print_bytes", "scope": "LIBRARY", "original": ".text"}, "1532": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1540": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1544": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1564": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1572": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1580": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1604": {"type": "MIPS_26", "symbol": "__sceEENetMD5Init", "scope": "LIBRARY"}, "1620": {"type": "MIPS_26", "symbol": "__sceEENetMD5Update", "scope": "LIBRARY"}, "1632": {"type": "MIPS_26", "symbol": "sppp_strnlen", "scope": "LIBRARY", "original": ".text"}, "1648": {"type": "MIPS_26", "symbol": "__sceEENetMD5Update", "scope": "LIBRARY"}, "1664": {"type": "MIPS_26", "symbol": "__sceEENetMD5Update", "scope": "LIBRARY"}, "1676": {"type": "MIPS_26", "symbol": "__sceEENetMD5Final", "scope": "LIBRARY"}, "1692": {"type": "MIPS_26", "symbol": "bcmp"}, "1704": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1712": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1716": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1720": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1740": {"type": "MIPS_26", "symbol": "sppp_auth_send", "scope": "LIBRARY", "original": ".text"}, "1784": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1788": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1792": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1796": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1812": {"type": "MIPS_26", "symbol": "sppp_auth_send", "scope": "LIBRARY", "original": ".text"}, "1836": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1844": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1852": {"type": "MIPS_26", "symbol": "sppp_cp_change_state", "scope": "LIBRARY", "original": ".text"}, "1880": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1884": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1888": {"type": "MIPS_26", "symbol": "sppp_state_name", "scope": "LIBRARY", "original": ".text"}, "1924": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "1956": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1972": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1984": {"type": "MIPS_26", "symbol": "sppp_print_bytes", "scope": "LIBRARY", "original": ".text"}, "1992": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2000": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "2004": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sppp_chap_init": {"2c62673d08600b13d591ce0cd249d01c157d32b1": {"00000000": {"type": "FUNCTION", "size": 24, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sppp_chap_open": {"e1452c4571ca22ed4991ca46505ba62d7f9a55c7": {"8f54ca03": {"type": "FUNCTION", "size": 128, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_26", "symbol": "sppp_cp_change_state", "scope": "LIBRARY", "original": ".text"}}}}}, "sppp_chap_close": {"6128b9e48c34ba75c7219fd984034012b139f901": {"70c90f08": {"type": "FUNCTION", "size": 40, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "24": {"type": "MIPS_26", "symbol": "sppp_cp_change_state", "scope": "LIBRARY", "original": ".text"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sppp_chap_TO": {"d5efe05eb260e950476613238756c5fa79195e9e": {"de98a2bd": {"type": "FUNCTION", "size": 240, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "48": {"type": "MIPS_26", "symbol": "sppp_state_name", "scope": "LIBRARY", "original": ".text"}, "72": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "140": {"type": "MIPS_26", "symbol": "sppp_cp_change_state", "scope": "LIBRARY", "original": ".text"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "200": {"type": "MIPS_26", "symbol": "sppp_cp_change_state", "scope": "LIBRARY", "original": ".text"}, "232": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "sppp_chap_my_TO": {"e677d00e40aae2753bacd051cdcd346eb72349cd": {"9c358180": {"type": "FUNCTION", "size": 320, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_26", "symbol": "sppp_cp_change_state", "scope": "LIBRARY", "original": ".text"}, "112": {"type": "MIPS_26", "symbol": "__sceEENetMD5Init", "scope": "LIBRARY"}, "132": {"type": "MIPS_26", "symbol": "__sceEENetMD5Update", "scope": "LIBRARY"}, "144": {"type": "MIPS_26", "symbol": "sppp_strnlen", "scope": "LIBRARY", "original": ".text"}, "160": {"type": "MIPS_26", "symbol": "__sceEENetMD5Update", "scope": )PS2SDB", 8192}, + std::string_view{R"PS2SDB("LIBRARY"}, "176": {"type": "MIPS_26", "symbol": "__sceEENetMD5Update", "scope": "LIBRARY"}, "192": {"type": "MIPS_26", "symbol": "__sceEENetMD5Final", "scope": "LIBRARY"}, "212": {"type": "MIPS_26", "symbol": "sppp_strnlen", "scope": "LIBRARY", "original": ".text"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "264": {"type": "MIPS_26", "symbol": "sppp_auth_send", "scope": "LIBRARY", "original": ".text"}, "272": {"type": "MIPS_HI16", "symbol": "sppp_chap_my_TO", "original": ".text"}, "280": {"type": "MIPS_LO16", "symbol": "sppp_chap_my_TO", "original": ".text"}, "288": {"type": "MIPS_26", "symbol": "__sceEENetcallout_reset", "scope": "LIBRARY"}}}}}, "sppp_chap_tlu": {"b876fcc9f2b896eed2000ef251649a74c68a9f0c": {"cca31429": {"type": "FUNCTION", "size": 232, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "132": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "176": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "184": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "208": {"type": "MIPS_26", "symbol": "sppp_phase_network", "scope": "LIBRARY", "original": ".text"}}}}}, "sppp_chap_tld": {"bd4643f16fe577909cf341cb9e5bb723ad790512": {"1dbb41c9": {"type": "FUNCTION", "size": 104, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "28": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "36": {"type": "MIPS_26", "symbol": "__sceEENetcallout_stop", "scope": "LIBRARY"}, "44": {"type": "MIPS_26", "symbol": "__sceEENetcallout_stop", "scope": "LIBRARY"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sppp_chap_scr": {"cb234c2fa3a22dd2a5867fdd5100b007ff568dc1": {"2edd0e6f": {"type": "FUNCTION", "size": 228, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "__sceEENetmicrotime", "scope": "LIBRARY"}, "60": {"type": "MIPS_26", "symbol": "__sceEENetrandom", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "__sceEENetrandom", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "__sceEENetrandom", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "__sceEENetrandom", "scope": "LIBRARY"}, "140": {"type": "MIPS_26", "symbol": "sppp_strnlen", "scope": "LIBRARY", "original": ".text"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "192": {"type": "MIPS_26", "symbol": "sppp_auth_send", "scope": "LIBRARY", "original": ".text"}}}}}, "sppp_pap_input": {"296aa709ee029519667b4be94a064bc7124ad9b9": {"123198d9": {"type": "FUNCTION", "size": 1356, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "256": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "260": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "272": {"type": "MIPS_26", "symbol": "sppp_auth_type_name", "scope": "LIBRARY", "original": ".text"}, "308": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "336": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "352": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "364": {"type": "MIPS_26", "symbol": "sppp_print_bytes", "scope": "LIBRARY", "original": ".text"}, "372": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "380": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "384": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "400": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "404": {"type": "MIPS_26", "symbol": "sppp_state_name", "scope": "LIBRARY", "original": ".text"}, "420": {"type": "MIPS_26", "symbol": "sppp_auth_type_name", "scope": "LIBRARY", "original": ".text"}, "452": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "484": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "496": {"type": "MIPS_26", "symbol": "sppp_print_string", "scope": "LIBRARY", "original": ".text"}, "504": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "512": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "516": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "524": {"type": "MIPS_26", "symbol": "sppp_print_string", "scope": "LIBRARY", "original": ".text"}, "532": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "540": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "544": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "576": {"type": "MIPS_26", "symbol": "bcmp"}, "600": {"type": "MIPS_26", "symbol": "bcmp"}, "620": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "628": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "632": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "644": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "668": {"type": "MIPS_26", "symbol": "sppp_auth_send", "scope": "LIBRARY", "original": ".text"}, "708": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "716": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "720": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "724": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "752": {"type": "MIPS_26", "symbol": "sppp_auth_send", "scope": "LIBRARY", "original": ".text"}, "776": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "784": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "792": {"type": "MIPS_26", "symbol": "sppp_cp_change_state", "scope": "LIBRARY", "original": ".text"}, "820": {"type": "MIPS_26", "symbol": "__sceEENetcallout_stop", "scope": "LIBRARY"}, "828": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "836": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "840": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "856": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "892": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "916": {"type": "MIPS)PS2SDB", 8192}, + std::string_view{R"PS2SDB(_HI16", "symbol": "", "original": ".rodata"}, "920": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "924": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "932": {"type": "MIPS_26", "symbol": "sppp_print_string", "scope": "LIBRARY", "original": ".text"}, "940": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "948": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "952": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "956": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "1032": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "1048": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "1056": {"type": "MIPS_26", "symbol": "sppp_phase_network", "scope": "LIBRARY", "original": ".text"}, "1072": {"type": "MIPS_26", "symbol": "__sceEENetcallout_stop", "scope": "LIBRARY"}, "1080": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1088": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1092": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1108": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1144": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "1168": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1172": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1176": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1184": {"type": "MIPS_26", "symbol": "sppp_print_string", "scope": "LIBRARY", "original": ".text"}, "1192": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1200": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1204": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1216": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1220": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1228": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "1256": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1272": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1284": {"type": "MIPS_26", "symbol": "sppp_print_bytes", "scope": "LIBRARY", "original": ".text"}, "1292": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1300": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1304": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sppp_pap_init": {"a66772eaf6b93cdcb51d76953273387aee4a3823": {"74782f70": {"type": "FUNCTION", "size": 40, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "memset"}}}}}, "sppp_pap_open": {"df322b9d8fc51016958da724aef0c15a27132798": {"56f71441": {"type": "FUNCTION", "size": 152, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_26", "symbol": "sppp_cp_change_state", "scope": "LIBRARY", "original": ".text"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_HI16", "symbol": "sppp_pap_my_TO", "original": ".text"}, "112": {"type": "MIPS_LO16", "symbol": "sppp_pap_my_TO", "original": ".text"}, "120": {"type": "MIPS_26", "symbol": "__sceEENetcallout_reset", "scope": "LIBRARY"}}}}}, "sppp_pap_close": {"2d2dbeb7309821919513ac4d6f3a497eb685dd47": {"70c90f08": {"type": "FUNCTION", "size": 40, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "24": {"type": "MIPS_26", "symbol": "sppp_cp_change_state", "scope": "LIBRARY", "original": ".text"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sppp_pap_TO": {"3107e5d062877000ea4058aa3e656f92ecd90dd7": {"c6d163df": {"type": "FUNCTION", "size": 224, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "48": {"type": "MIPS_26", "symbol": "sppp_state_name", "scope": "LIBRARY", "original": ".text"}, "72": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "140": {"type": "MIPS_26", "symbol": "sppp_cp_change_state", "scope": "LIBRARY", "original": ".text"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_26", "symbol": "sppp_cp_change_state", "scope": "LIBRARY", "original": ".text"}, "216": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "sppp_pap_my_TO": {"667b6b04915bd293de08e9b48416b8a7efef5ce9": {"738268cb": {"type": "FUNCTION", "size": 172, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_26", "symbol": "sppp_cp_change_state", "scope": "LIBRARY", "original": ".text"}, "116": {"type": "MIPS_HI16", "symbol": "sppp_pap_my_TO", "original": ".text"}, "128": {"type": "MIPS_26", "symbol": "__sceEENetcallout_reset", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "sppp_pap_my_TO", "original": ".text"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sppp_pap_tlu": {"b10ff1d34d5203b4df4a8e4340957a3f8d53d330": {"837b24b0": {"type": "FUNCTION", "size": 132, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "44": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "sppp_phase_network", "scope": "LIBRARY", "original": ".text"}}}}}, "sppp_pap_tld": {"3b8b36ba860f13d9146a653c55738b71f1fa98cf": {"1dbb41c9": {"type": "FUNCTION", "size": 104, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "28": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "36": {"type": "MIPS_26", "symbol": "__sceEENetcallout_stop", "scope")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: "LIBRARY"}, "44": {"type": "MIPS_26", "symbol": "__sceEENetcallout_stop", "scope": "LIBRARY"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sppp_pap_scr": {"1f6d898f780fb03605521d387b5440115f52301d": {"4293b9e5": {"type": "FUNCTION", "size": 176, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "sppp_strnlen", "scope": "LIBRARY", "original": ".text"}, "68": {"type": "MIPS_26", "symbol": "sppp_strnlen", "scope": "LIBRARY", "original": ".text"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_26", "symbol": "sppp_auth_send", "scope": "LIBRARY", "original": ".text"}}}}}, "sppp_auth_send": {"1af0a092c700347a640f6b9bad518ce61652a722": {"10dc0599": {"type": "FUNCTION", "size": 760, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"72": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "__sceEENetMRetryhdr", "scope": "LIBRARY"}, "160": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "260": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "360": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "408": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "428": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "436": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "440": {"type": "MIPS_26", "symbol": "sppp_auth_type_name", "scope": "LIBRARY", "original": ".text"}, "472": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "504": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "520": {"type": "MIPS_26", "symbol": "sppp_print_bytes", "scope": "LIBRARY", "original": ".text"}, "528": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "536": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "540": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "588": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "632": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}}}}}, "sppp_keepalive": {"5a79cf988512158d17d314f10b89a9d71500f4ca": {"35a1e34b": {"type": "FUNCTION", "size": 440, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "140": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "148": {"type": "MIPS_26", "symbol": "__sceEENetif_down"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "204": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "256": {"type": "MIPS_26", "symbol": "sppp_cp_change_state", "scope": "LIBRARY", "original": ".text"}, "296": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "344": {"type": "MIPS_26", "symbol": "sppp_cp_send", "scope": "LIBRARY", "original": ".text"}, "372": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "376": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "384": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "388": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "396": {"type": "MIPS_26", "symbol": "__sceEENetcallout_reset", "scope": "LIBRARY"}}}}}, "sppp_params": {"1e9e70620a3e063e1e8fb7457442c29d1dfdf073": {"4f242fd1": {"type": "FUNCTION", "size": 812, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"168": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "192": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "204": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "232": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "388": {"type": "MIPS_26", "symbol": "strncpy"}, "404": {"type": "MIPS_26", "symbol": "strncpy"}, "436": {"type": "MIPS_26", "symbol": "strncpy"}, "452": {"type": "MIPS_26", "symbol": "strncpy"}, "468": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "608": {"type": "MIPS_26", "symbol": "strncpy"}, "624": {"type": "MIPS_26", "symbol": "strncpy"}, "656": {"type": "MIPS_26", "symbol": "strncpy"}, "672": {"type": "MIPS_26", "symbol": "strncpy"}, "688": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "704": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "732": {"type": "MIPS_26", "symbol": "sppp_lcp_init", "scope": "LIBRARY", "original": ".text"}, "740": {"type": "MIPS_26", "symbol": "sppp_ipcp_init", "scope": "LIBRARY", "original": ".text"}, "748": {"type": "MIPS_26", "symbol": "sppp_ipv6cp_init", "scope": "LIBRARY", "original": ".text"}, "756": {"type": "MIPS_26", "symbol": "sppp_pap_init", "scope": "LIBRARY", "original": ".text"}, "764": {"type": "MIPS_26", "symbol": "sppp_chap_init", "scope": "LIBRARY", "original": ".text"}}}}}, "sppp_vjcomp": {"397e3549c43c85e6fb8e3e6a02581f2e6aee3d47": {"e947522e": {"type": "FUNCTION", "size": 272, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"144": {"type": "MIPS_26", "symbol": "__sceEENetsl_compress_tcp", "scope": "LIBRARY"}}}}}, "sppp_vjuncomp": {"6dfa9b541d34d8258fc206c6ec3938071b1c8cd4": {"00caa260": {"type": "FUNCTION", "size": 1412, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"144": {"type": "MIPS_26", "symbol": "sceEENetMPullup", "scope": "LIBRARY"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "208": {"type": "MIPS_26", "symbol": "__sceEENetsl_uncompress_tcp_core", "scope": "LIBRARY"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "280": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "292": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "304": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "320": {"type": "MIPS_26", "symbol": "__sceEENetMRetryhdr", "scope": "LIBRARY"}, "372": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "384": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "400": {"type": "MIPS_26", "symbol": "__sceEENetMReclaim", "scope": "LIBRARY"}, "408": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "424": {"type": "MIPS_26", )PS2SDB", 8192}, + std::string_view{R"PS2SDB("symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "576": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "624": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "780": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "800": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "840": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "920": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "968": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "1000": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "1008": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "1068": {"type": "MIPS_26", "symbol": "sceEENetMPullup", "scope": "LIBRARY"}, "1088": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1100": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1140": {"type": "MIPS_26", "symbol": "sceEENetMPullup", "scope": "LIBRARY"}, "1160": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1172": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1212": {"type": "MIPS_26", "symbol": "sceEENetMPullup", "scope": "LIBRARY"}, "1232": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1244": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1276": {"type": "MIPS_26", "symbol": "__sceEENetsl_uncompress_tcp_core", "scope": "LIBRARY"}, "1292": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1300": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1304": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1356": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}}}}}, "sppp_phase_network": {"201cf961f82ab5cb64bbcbb2cc59947137fdc7c0": {"764c0805": {"type": "FUNCTION", "size": 264, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_26", "symbol": "sppp_phase_name", "scope": "LIBRARY", "original": ".text"}, "84": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "256": {"type": "MIPS_26", "symbol": "sppp_lcp_check_and_close", "scope": "LIBRARY", "original": ".text"}}}}}, "sppp_cp_type_name": {"103e8aaf6335a3ef24868aa322901e14e7784744": {"4a141603": {"type": "FUNCTION", "size": 232, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "204": {"type": "MIPS_26", "symbol": "sprintf"}}}}}, "sppp_auth_type_name": {"696a76d848d310c621e35c226aa835400cd6793f": {"c7babeeb": {"type": "FUNCTION", "size": 276, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "200": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "248": {"type": "MIPS_26", "symbol": "sprintf"}}}}}, "sppp_lcp_opt_name": {"584211c9f58c87fbaa5d8be61e463ab97c1b888a": {"63d40184": {"type": "FUNCTION", "size": 184, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".)PS2SDB", 8192}, + std::string_view{R"PS2SDB(rodata"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "156": {"type": "MIPS_26", "symbol": "sprintf"}}}}}, "sppp_ipcp_opt_name": {"db22fb3c0ddca4a97946ebeeb5a8a3e3e616f146": {"3ed7bc79": {"type": "FUNCTION", "size": 184, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "156": {"type": "MIPS_26", "symbol": "sprintf"}}}}}, "sppp_state_name": {"a39b91c461961f3977bf5a31cd03cfa9af9d79c9": {"8fa36fe2": {"type": "FUNCTION", "size": 168, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sppp_phase_name": {"33ae193571c42fda696a51397a07bb9f361fb377": {"523b1046": {"type": "FUNCTION", "size": 108, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sppp_proto_name": {"112c397defdbcb82b814f57a5bf6f430a5eae4aa": {"76accde7": {"type": "FUNCTION", "size": 184, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "156": {"type": "MIPS_26", "symbol": "sprintf"}}}}}, "sppp_print_bytes": {"1a50f58d906cd175952916907cc922250b766454": {"68f52a1a": {"type": "FUNCTION", "size": 128, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "44": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sppp_print_string": {"3807955612652a985ff44550b49958d3ae1a50a9": {"dd6d076f": {"type": "FUNCTION", "size": 152, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "100": {"type": "MIPS_26", "symbol": "__sceEEN)PS2SDB", 8192}, + std::string_view{R"PS2SDB(etlog", "scope": "LIBRARY"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sppp_dotted_quad": {"3b1ff0c7f9be7ca4706cd6ee87a6b39df971b944": {"2a8c3ffe": {"type": "FUNCTION", "size": 84, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "56": {"type": "MIPS_26", "symbol": "sprintf"}}}}}, "sppp_strnlen": {"a8458406d841fa8981c2a8197cde2e7ee1643d5b": {"00000000": {"type": "FUNCTION", "size": 48, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sppp_null": {"7678540574197b420f17571673856a74783eb9d5": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "__sceEENetrn_search": {"19d34a0ae0cabf5b7e4687c8b87c57c4f9e3afae": {"00000000": {"type": "FUNCTION", "size": 64, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "__sceEENetrn_search_m": {"f22725141c7e57382c3827346c70c47a57a73c4e": {"00000000": {"type": "FUNCTION", "size": 80, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "__sceEENetrn_refines": {"e397ccbeac23dd64deaa4580ac266e4dbb0f1c79": {"00000000": {"type": "FUNCTION", "size": 192, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "__sceEENetrn_lookup": {"c5e834e01ab4a6c68b1c61013694f9630e552143": {"e92b602f": {"type": "FUNCTION", "size": 160, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "__sceEENetrn_addmask", "scope": "LIBRARY", "original": ".text"}, "80": {"type": "MIPS_26", "symbol": "__sceEENetrn_match", "scope": "LIBRARY", "original": ".text"}}}}}, "rn_satsifies_leaf": {"0dac40aedd767188f57f368cbef9360f39e963ec": {"35000b2e": {"type": "FUNCTION", "size": 140, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "__sceEENetrn_match": {"78867d0776d1ae151c7ddf0788bff1330ea5952e": {"bddfcf66": {"type": "FUNCTION", "size": 628, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"372": {"type": "MIPS_26", "symbol": "rn_satsifies_leaf", "scope": "LIBRARY", "original": ".text"}, "472": {"type": "MIPS_26", "symbol": "__sceEENetrn_search_m", "scope": "LIBRARY", "original": ".text"}, "544": {"type": "MIPS_26", "symbol": "rn_satsifies_leaf", "scope": "LIBRARY", "original": ".text"}}}}}, "__sceEENetrn_newpair": {"352ed288e956510462827382a62a999350b0f8ab": {"00000000": {"type": "FUNCTION", "size": 72, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "__sceEENetrn_insert": {"11216bc429af81bfa112866dbd94861ec4aabf27": {"f82b73b7": {"type": "FUNCTION", "size": 408, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "__sceEENetrn_search", "scope": "LIBRARY", "original": ".text"}, "268": {"type": "MIPS_26", "symbol": "__sceEENetrn_newpair", "scope": "LIBRARY", "original": ".text"}}}}}, "__sceEENetrn_addmask": {"c260aa5aebf2a8ebedcfc3f7fcd7f14b58b735e4": {"74fc8e6c": {"type": "FUNCTION", "size": 820, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "280": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "312": {"type": "MIPS_26", "symbol": "bzero"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "324": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "328": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "336": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "344": {"type": "MIPS_26", "symbol": "__sceEENetrn_search", "scope": "LIBRARY", "original": ".text"}, "368": {"type": "MIPS_26", "symbol": "bcmp"}, "372": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "396": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "400": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "404": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "432": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "448": {"type": "MIPS_26", "symbol": "bzero"}, "456": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "464": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "472": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "480": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "488": {"type": "MIPS_26", "symbol": "__sceEENetrn_insert", "scope": "LIBRARY", "original": ".text"}, "508": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "516": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "520": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "524": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "636": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "672": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "680": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "684": {"type": "MIPS_LO16", "symbol": "", "original": ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(.data"}}}}}, "rn_lexobetter": {"582cb7fa4e67c157350a38781eee58faaabb93ae": {"00000000": {"type": "FUNCTION", "size": 112, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "rn_new_radix_mask": {"a65736736b6aff81f972ecd8080081ed3f69a553": {"eb41d49c": {"type": "FUNCTION", "size": 188, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "100": {"type": "MIPS_26", "symbol": "bzero"}}}}}, "__sceEENetrn_addroute": {"6d0ce7e53cc7118e7afa89058022373d52773e39": {"d39a9649": {"type": "FUNCTION", "size": 960, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"88": {"type": "MIPS_26", "symbol": "__sceEENetrn_addmask", "scope": "LIBRARY", "original": ".text"}, "148": {"type": "MIPS_26", "symbol": "__sceEENetrn_insert", "scope": "LIBRARY", "original": ".text"}, "240": {"type": "MIPS_26", "symbol": "__sceEENetrn_refines", "scope": "LIBRARY", "original": ".text"}, "260": {"type": "MIPS_26", "symbol": "rn_lexobetter", "scope": "LIBRARY", "original": ".text"}, "544": {"type": "MIPS_26", "symbol": "rn_new_radix_mask", "scope": "LIBRARY", "original": ".text"}, "784": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "792": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "796": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "816": {"type": "MIPS_26", "symbol": "__sceEENetrn_refines", "scope": "LIBRARY", "original": ".text"}, "832": {"type": "MIPS_26", "symbol": "rn_lexobetter", "scope": "LIBRARY", "original": ".text"}, "896": {"type": "MIPS_26", "symbol": "rn_new_radix_mask", "scope": "LIBRARY", "original": ".text"}}}}}, "__sceEENetrn_delete": {"2b4ef63128febde4b62922b8e3ef313df147ca3e": {"4e4f9295": {"type": "FUNCTION", "size": 1188, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "__sceEENetrn_search", "scope": "LIBRARY", "original": ".text"}, "92": {"type": "MIPS_26", "symbol": "bcmp"}, "120": {"type": "MIPS_26", "symbol": "__sceEENetrn_addmask", "scope": "LIBRARY", "original": ".text"}, "232": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "252": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "272": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "280": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "380": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "396": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "416": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "432": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "440": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "452": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "456": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "464": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "468": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "600": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "632": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "668": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "676": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "680": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "952": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "956": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "964": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1004": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1008": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1012": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1016": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1024": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}}}}}, "__sceEENetrn_walktree": {"d5d5febee206b2717affb2a245285304f39dd75c": {"00000000": {"type": "FUNCTION", "size": 280, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "__sceEENetrn_inithead": {"e16187ca45ae357270316c65f3949a5998647eb6": {"e1314812": {"type": "FUNCTION", "size": 292, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "bzero"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_26", "symbol": "__sceEENetrn_newpair", "scope": "LIBRARY", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "200": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "208": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}}}}}, "__sceEENetrn_init": {"eaa3aed755a4840d0331d06e3206c0d395c0ed91": {"8e29941c": {"type": "FUNCTION", "size": 356, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetdomains"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetdomains"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_LO1)PS2SDB", 8192}, + std::string_view{R"PS2SDB(6", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "160": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "176": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "196": {"type": "MIPS_26", "symbol": "__sceEENetpanic", "scope": "LIBRARY"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "216": {"type": "MIPS_26", "symbol": "bzero"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "228": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "300": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "304": {"type": "MIPS_26", "symbol": "__sceEENetrn_inithead", "scope": "LIBRARY", "original": ".text"}, "320": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "324": {"type": "MIPS_26", "symbol": "__sceEENetpanic", "scope": "LIBRARY"}, "328": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "__sceEENetraw_attach": {"32b6b6c932decfdaccc4dd7cbdd229172af2a7e6": {"c2bf4aec": {"type": "FUNCTION", "size": 164, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "__sceEENetsoreserve", "scope": "LIBRARY"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__sceEENetraw_detach": {"fcee8f49f9c33d8f5db938c2394fe47d7323747a": {"2500f1fb": {"type": "FUNCTION", "size": 80, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "__sceEENetsofree", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}}}}}, "__sceEENetraw_disconnect": {"69f7289e5306b9e74a551968f7fca88110d0c2be": {"aa9b0775": {"type": "FUNCTION", "size": 36, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "__sceEENetraw_detach", "scope": "LIBRARY", "original": ".text"}}}}}, "__sceEENetraw_init": {"ad519239883ac4b9a4f922906bdcfe8b22f333cd": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetrawcblst"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetrawcblst"}}}}}, "__sceEENetraw_input": {"27ab3c850aa9768119d3ac03de5ddd7738beac30": {"d335800c": {"type": "FUNCTION", "size": 468, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetrawcblst"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetrawcblst"}, "156": {"type": "MIPS_26", "symbol": "bcmp"}, "188": {"type": "MIPS_26", "symbol": "bcmp"}, "224": {"type": "MIPS_26", "symbol": "sceEENetMCopym", "scope": "LIBRARY"}, "256": {"type": "MIPS_26", "symbol": "__sceEENetsbappendaddr", "scope": "LIBRARY"}, "272": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "300": {"type": "MIPS_26", "symbol": "__sceEENetsowakeup", "scope": "LIBRARY"}, "348": {"type": "MIPS_26", "symbol": "__sceEENetsbappendaddr", "scope": "LIBRARY"}, "364": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "396": {"type": "MIPS_26", "symbol": "__sceEENetsowakeup", "scope": "LIBRARY"}, "416": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}}}}}, "__sceEENetraw_ctlinput": {"0a5385cf4a659d302a43046ea0269e2b17a3ef1d": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "__sceEENetraw_setsockaddr": {"ff1c944aeb76bff75c9d14484352d261ad8be0f5": {"af5e0e4a": {"type": "FUNCTION", "size": 28, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}}}}}, "__sceEENetraw_setpeeraddr": {"dba9cd4548cf071e381f02507803b93d9e811ea9": {"af5e0e4a": {"type": "FUNCTION", "size": 28, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}}}}}, "__sceEENetraw_usrreq": {"9c793d40c06aca24add3f230bee44f9653d900ae": {"133d66b8": {"type": "FUNCTION", "size": 560, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"80": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_26", "symbol": "__sceEENetraw_attach", "scope": "LIBRARY"}, "164": {"type": "MIPS_26", "symbol": "__sceEENetraw_detach", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "__sceEENetsoisdisconnected", "scope": "LIBRARY"}, "196": {"type": "MIPS_26", "symbol": "__sceEENetsocantsendmore", "scope": "LIBRARY"}, "356": {"type": "MIPS_26", "symbol": "__sceEENetraw_disconnect", "scope": "LIBRARY"}, "396": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "404": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "440": {"type": "MIPS_26", "symbol": "__sceEENetraw_setsockaddr", "scope": "LIBRARY", "original": ".text"}, "476": {"type": "MIPS_26", "symbol": "__sceEENetraw_setpeeraddr", "scope": "LIBRARY", "original": ".text"}, "492": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "496": {"type": "MIPS_26", "symbol": "__sceEENetpanic", "scope": "LIBRARY"}, "500": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "504": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "__sceEENetrtable_init": {"a5fdb6270a11a675fef406a2094a6af3a5032099": {"b0f52bf1": {"type": "FUNCTION", "size": 100, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetdomains"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetdomains"}}}}}, "__sceEENetroute_init": {"9a2b44de6edb814a)PS2SDB", 8192}, + std::string_view{R"PS2SDB(161a90d5168e5cacf6a488cb": {"bf93c17b": {"type": "FUNCTION", "size": 116, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_26", "symbol": "memset"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_26", "symbol": "memset"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_26", "symbol": "memset"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_26", "symbol": "__sceEENetrn_init", "scope": "LIBRARY"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_26", "symbol": "__sceEENetrtable_init", "scope": "LIBRARY", "original": ".text"}}}}}, "__sceEENetrtalloc": {"154d6d1b2896b49cc787a2df9a31f4397825586a": {"c65dd964": {"type": "FUNCTION", "size": 88, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "__sceEENetrtalloc1", "scope": "LIBRARY", "original": ".text"}}}}}, "__sceEENetrtalloc1": {"f14c99d5818248fb214003d727cdc04d498c96c2": {"43d1a9fd": {"type": "FUNCTION", "size": 368, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_26", "symbol": "__sceEENetrtrequest", "scope": "LIBRARY", "original": ".text"}, "260": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "288": {"type": "MIPS_26", "symbol": "bzero"}, "312": {"type": "MIPS_26", "symbol": "__sceEENetrt_missmsg", "scope": "LIBRARY"}, "320": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "__sceEENetrtfree": {"48de63979b5c524186f041ab91ab40660ee5493a": {"f560e5e1": {"type": "FUNCTION", "size": 216, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "24": {"type": "MIPS_26", "symbol": "__sceEENetpanic", "scope": "LIBRARY"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_26", "symbol": "__sceEENetpanic", "scope": "LIBRARY"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "144": {"type": "MIPS_26", "symbol": "__sceEENetrt_timer_remove_all", "scope": "LIBRARY", "original": ".text"}, "172": {"type": "MIPS_26", "symbol": "__sceEENetifafree", "scope": "LIBRARY", "original": ".text"}, "184": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "192": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}}}}}, "__sceEENetifafree": {"a639a8a356321edbeccee089cae462e9fca431ea": {"aae4c1b6": {"type": "FUNCTION", "size": 8, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}}}}}, "__sceEENetrtredirect": {"f4cf221fab5f8c6a6831669aa59871ba2dcdf584": {"89d7df92": {"type": "FUNCTION", "size": 536, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"72": {"type": "MIPS_26", "symbol": "__sceEENetifa_ifwithnet", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "__sceEENetrtalloc1", "scope": "LIBRARY", "original": ".text"}, "136": {"type": "MIPS_26", "symbol": "bcmp"}, "168": {"type": "MIPS_26", "symbol": "__sceEENetifa_ifwithaddr", "scope": "LIBRARY"}, "260": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "288": {"type": "MIPS_26", "symbol": "__sceEENetrtrequest", "scope": "LIBRARY", "original": ".text"}, "296": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "312": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "336": {"type": "MIPS_26", "symbol": "__sceEENetrt_setgate", "scope": "LIBRARY", "original": ".text"}, "388": {"type": "MIPS_26", "symbol": "__sceEENetrtfree", "scope": "LIBRARY", "original": ".text"}, "400": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "404": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "416": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "444": {"type": "MIPS_26", "symbol": "bzero"}, "480": {"type": "MIPS_26", "symbol": "__sceEENetrt_missmsg", "scope": "LIBRARY"}}}}}, "rtdeletemsg": {"3725f5160018264bd6e7dd199b29a1448c813666": {"58a24653": {"type": "FUNCTION", "size": 172, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "bzero"}, "76": {"type": "MIPS_26", "symbol": "__sceEENetrtrequest", "scope": "LIBRARY", "original": ".text"}, "104": {"type": "MIPS_26", "symbol": "__sceEENetrt_missmsg", "scope": "LIBRARY"}, "144": {"type": "MIPS_26", "symbol": "__sceEENetrtfree", "scope": "LIBRARY", "original": ".text"}}}}}, "rtflushclone1": {"5faad7562ad50a24ff36df9f8805e3a5f8924b48": {"17db4142": {"type": "FUNCTION", "size": 60, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "rtdeletemsg", "scope": "LIBRARY", "original": ".text"}}}}}, "rtflushclone": {"5c677248f6c4e93af93a816aec264bfacc904248": {"a552b0e4": {"type": "FUNCTION", "size": 40, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "rtflushclone1", "original": ".text"}, "24": {"type": "MIPS_LO16", "symbol": "rtflushclone1", "original": ".text"}}}}}, "__sceEENetrtioctl": {"cb2f38ba5185ad761fd2d7d1cb34e5d7ced2c2f2": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "__sceEENetifa_ifwithroute": {"d30a0b3a222567689ddce494d35ceb15ebc0bcea": {"1f54dee0": {"type": "FUNCTION", "size": 236, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "__sceEENetifa_ifwithdstaddr", "scope": "LIBRARY"}, "68": {"type")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: "MIPS_26", "symbol": "__sceEENetifa_ifwithaddr", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "__sceEENetifa_ifwithdstaddr", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "__sceEENetifa_ifwithnet", "scope": "LIBRARY"}, "128": {"type": "MIPS_26", "symbol": "__sceEENetrtalloc1", "scope": "LIBRARY", "original": ".text"}, "196": {"type": "MIPS_26", "symbol": "__sceEENetifaof_ifpforaddr", "scope": "LIBRARY"}}}}}, "__sceEENetrtrequest": {"3eddd1f76f5ff2d628eee6cd954d0bca0f4c3024": {"6786b7a5": {"type": "FUNCTION", "size": 1396, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "252": {"type": "MIPS_26", "symbol": "rtflushclone", "scope": "LIBRARY", "original": ".text"}, "304": {"type": "MIPS_26", "symbol": "__sceEENetrtfree", "scope": "LIBRARY", "original": ".text"}, "332": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "336": {"type": "MIPS_26", "symbol": "__sceEENetpanic", "scope": "LIBRARY"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "460": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "464": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "476": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "504": {"type": "MIPS_26", "symbol": "__sceEENetrtfree", "scope": "LIBRARY", "original": ".text"}, "612": {"type": "MIPS_26", "symbol": "__sceEENetifa_ifwithroute", "scope": "LIBRARY", "original": ".text"}, "640": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "672": {"type": "MIPS_26", "symbol": "bzero"}, "700": {"type": "MIPS_26", "symbol": "__sceEENetrt_setgate", "scope": "LIBRARY", "original": ".text"}, "720": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "752": {"type": "MIPS_26", "symbol": "__sceEENetrt_maskedcopy", "scope": "LIBRARY", "original": ".text"}, "776": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "980": {"type": "MIPS_26", "symbol": "__sceEENetrtfree", "scope": "LIBRARY", "original": ".text"}, "1044": {"type": "MIPS_26", "symbol": "__sceEENetrtalloc1", "scope": "LIBRARY", "original": ".text"}, "1080": {"type": "MIPS_26", "symbol": "rtdeletemsg", "scope": "LIBRARY", "original": ".text"}, "1160": {"type": "MIPS_26", "symbol": "__sceEENetifafree", "scope": "LIBRARY", "original": ".text"}, "1196": {"type": "MIPS_26", "symbol": "__sceEENetrtfree", "scope": "LIBRARY", "original": ".text"}, "1216": {"type": "MIPS_26", "symbol": "__sceEENetrtfree", "scope": "LIBRARY", "original": ".text"}, "1232": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "1240": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "1328": {"type": "MIPS_26", "symbol": "rtflushclone", "scope": "LIBRARY", "original": ".text"}, "1336": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "__sceEENetrt_setgate": {"8aedf0e6dadb1dbbff6dc75b7fe2c6e7a5e56175": {"a9d4ebb7": {"type": "FUNCTION", "size": 472, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"180": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "208": {"type": "MIPS_26", "symbol": "bzero"}, "224": {"type": "MIPS_26", "symbol": "__sceEENetrtfree", "scope": "LIBRARY", "original": ".text"}, "260": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "280": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "288": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "352": {"type": "MIPS_26", "symbol": "__sceEENetrtalloc1", "scope": "LIBRARY", "original": ".text"}}}}}, "__sceEENetrt_maskedcopy": {"bcb48184ed23282df84b8fbe4ea2fabf06d92094": {"c3de1e0a": {"type": "FUNCTION", "size": 128, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"112": {"type": "MIPS_26", "symbol": "bzero"}}}}}, "__sceEENetrtinit": {"84e4ca280f5560b6f9d3977ad6f751b586d1019d": {"f650a3ad": {"type": "FUNCTION", "size": 528, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"100": {"type": "MIPS_26", "symbol": "__sceEENetrt_maskedcopy", "scope": "LIBRARY", "original": ".text"}, "112": {"type": "MIPS_26", "symbol": "__sceEENetrtalloc1", "scope": "LIBRARY", "original": ".text"}, "192": {"type": "MIPS_26", "symbol": "__sceEENetrtrequest", "scope": "LIBRARY", "original": ".text"}, "244": {"type": "MIPS_26", "symbol": "__sceEENetrt_newaddrmsg", "scope": "LIBRARY"}, "272": {"type": "MIPS_26", "symbol": "__sceEENetrtfree", "scope": "LIBRARY", "original": ".text"}, "332": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "344": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "400": {"type": "MIPS_26", "symbol": "__sceEENetifafree", "scope": "LIBRARY", "original": ".text"}, "480": {"type": "MIPS_26", "symbol": "__sceEENetrt_newaddrmsg", "scope": "LIBRARY"}}}}}, "__sceEENetrt_timer_init": {"57dd1b994d43b67b8984411e9d1e5f9cd85235e5": {"83b95ce3": {"type": "FUNCTION", "size": 88, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_26", "symbol": "__sceEENetcallout_init", "scope": "LIBRARY"}, "36": {"type": "MIPS_HI16", "symbol": "__sceEENetrt_timer_timer", "original": ".text"}, "44": {"type": "MIPS_LO16", "symbol": "__sceEENetrt_timer_timer", "original": ".text"}, "52": {"type": "MIPS_26", "symbol": "__sceEENetcallout_reset", "scope": "LIBRARY"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__sceEENetrt_timer_queue_create": {"259881b91c9082d0700aeda73b69bba66118ac51": {"40b4988c": {"type": "FUNCTION", "size": 168, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_26", "symbol": "__sceEENetrt_timer_init", "scope": "LIBRARY", "original": ".text"}, "40": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "bzero"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__sceEENetrt_timer_queue_change": {"0d71eb9f43fdae3c1916d74b436172a34a6f654b": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "__sceEENetrt_timer_queue_destroy": {"a72dcb415607461c46d8c60fe8bf33889e352709": {"a05a1ba5": {"type": "FUNCTION", "size": 244, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"160": {"type": "MIPS_26", "symbol": "__sceEENetrtrequest", "scope)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": "LIBRARY", "original": ".text"}, "168": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}}}}}, "__sceEENetrt_timer_remove_all": {"370b2829c0b28dfea1d20766d5e08caa6a518edb": {"4d2f09e6": {"type": "FUNCTION", "size": 132, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"96": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}}}}}, "__sceEENetrt_timer_add": {"3e634c145442819f1ccf5c52941c7eedecefdf7d": {"80e11526": {"type": "FUNCTION", "size": 312, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetkern_time"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetkern_time"}, "156": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "164": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "192": {"type": "MIPS_26", "symbol": "bzero"}}}}}, "__sceEENetrt_timer_timer": {"386def13d2b153e85379dfc4b8d7d76ff99e24c7": {"f02dd764": {"type": "FUNCTION", "size": 324, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetkern_time"}, "36": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetkern_time"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "188": {"type": "MIPS_26", "symbol": "__sceEENetrtrequest", "scope": "LIBRARY", "original": ".text"}, "196": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "260": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "264": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "316": {"type": "MIPS_26", "symbol": "__sceEENetcallout_reset", "scope": "LIBRARY"}}}}}, "__sceEENetroute_usrreq": {"482682f8740a6327b2f9f16bf4e2d4128ff54e5a": {"d1e35195": {"type": "FUNCTION", "size": 596, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "bzero"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetroute_cb"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetroute_cb"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetroute_cb"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetroute_cb"}, "252": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "272": {"type": "MIPS_26", "symbol": "__sceEENetraw_attach", "scope": "LIBRARY"}, "304": {"type": "MIPS_26", "symbol": "__sceEENetraw_usrreq", "scope": "LIBRARY"}, "336": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetroute_cb"}, "340": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "360": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetroute_cb"}, "400": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "408": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "428": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "436": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "440": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetroute_cb"}, "452": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetroute_cb"}, "500": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "504": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "508": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "512": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "524": {"type": "MIPS_26", "symbol": "__sceEENetsoisconnected", "scope": "LIBRARY"}, "544": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "__sceEENetroute_output": {"0a3bf9f8f7bdfe0777f7c040a736fda305d013bd": {"a9986848": {"type": "FUNCTION", "size": 1892, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"104": {"type": "MIPS_26", "symbol": "bzero"}, "136": {"type": "MIPS_26", "symbol": "sceEENetMPullup", "scope": "LIBRARY"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_26", "symbol": "__sceEENetpanic", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "240": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "280": {"type": "MIPS_26", "symbol": "sceEENetMCopydata", "scope": "LIBRARY"}, "320": {"type": "MIPS_26", "symbol": "GetThreadId"}, "352": {"type": "MIPS_26", "symbol": "rt_xaddrs", "scope": "LIBRARY", "original": ".text"}, "436": {"type": "MIPS_26", "symbol": "__sceEENetrn_addmask", "scope": "LIBRARY"}, "464": {"type": "MIPS_26", "symbol": "bcmp"}, "508": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "516": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "564": {"type": "MIPS_26", "symbol": "__sceEENetrtrequest", "scope": "LIBRARY"}, "596": {"type": "MIPS_26", "symbol": "__sceEENetrt_setmetrics", "scope": "LIBRARY", "original": ".text"}, "660": {"type": "MIPS_26", "symbol": "__sceEENetrtrequest", "scope": "LIBRARY"}, "704": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetrt_tables"}, "708": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetrt_tables"}, "1008": {"type": "MIPS_26", "symbol": "rt_msg2", "scope": "LIBRARY", "original": ".text"}, "1036": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "1064": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "1072": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "1100": {"type": "MIPS_26", "symbol": "rt_msg2", "scope": "LIBRARY", "original": ".text"}, "1220": {"type": "MIPS_26", "symbol": "__sceEENetrt_setgate", "scope": "LIBRARY"}, "1256": {"type": "MIPS_26", "symbol": "__sceEENetifa_ifwithnet", "scope": "LIBRARY"}, "1328": {"type": "MIPS_26", "symbol": "__sceEENetifaof_ifpforaddr", "scope": "LIBRARY"}, "1352": {"type": "MIPS_26", "symbol": "__sceEENetifa_ifwithaddr", "scope": "LIBRARY"}, "1388": {"type": "MIPS_26", "symbol": "__sceEENetifa_ifwithroute", "scope": "LIBRARY"}, "1484": {"type": "MIPS_26", "symbol": "__sceEENetifafree", "scope": "LIBRARY"}, "1520": {"type": "MIPS_26", "symbol": "__sceEENetrt_setmetrics", "scope": "LIBRARY", "original": ".text"}, "1664": {"type": "MIPS_26", "symbol": "__sceEENetrtfree", "scope": "LIBRARY"}, "1688": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetroute_cb"}, "1692": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetroute_cb"}, "1716": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "1724": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "1756": {"type": "MIPS_26", "symbol": "sceEENetMCopyback", "scope": "LIBRARY"}, "1764": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "1788": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1796": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1804": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1808": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1816": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1820": {)PS2SDB", 8192}, + std::string_view{R"PS2SDB("type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1824": {"type": "MIPS_26", "symbol": "__sceEENetraw_input", "scope": "LIBRARY"}, "1828": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__sceEENetrt_setmetrics": {"85219664b5e9c8df64f332ab87344d63b405ee8d": {"00000000": {"type": "FUNCTION", "size": 176, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "rt_xaddrs": {"daf3aece5cdea37053ffcca609bf60289f40f50a": {"b17a51e9": {"type": "FUNCTION", "size": 180, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "bzero"}}}}}, "rt_msg1": {"d289e822365d30bcc80c91d457da411caea69ac7": {"5e8e076d": {"type": "FUNCTION", "size": 480, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_26", "symbol": "sceEENetMGethdr", "scope": "LIBRARY"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_26", "symbol": "__sceEENetpanic", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "212": {"type": "MIPS_26", "symbol": "sceEENetMGet", "scope": "LIBRARY"}, "232": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "296": {"type": "MIPS_26", "symbol": "sceEENetMCopyback", "scope": "LIBRARY"}, "388": {"type": "MIPS_26", "symbol": "sceEENetMCopyback", "scope": "LIBRARY"}}}}}, "rt_msg2": {"1d49db5f38dec94c5ea09be2739c9dfdcb721106": {"ae679d23": {"type": "FUNCTION", "size": 480, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"224": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "332": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "340": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}}}}}, "__sceEENetrt_missmsg": {"9fccf0cfb68bc23bab2f30a0e7dcaaa3a935072b": {"de73d482": {"type": "FUNCTION", "size": 208, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetroute_cb"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetroute_cb"}, "64": {"type": "MIPS_26", "symbol": "bzero"}, "96": {"type": "MIPS_26", "symbol": "rt_msg1", "scope": "LIBRARY", "original": ".text"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_26", "symbol": "__sceEENetraw_input", "scope": "LIBRARY"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__sceEENetrt_ifmsg": {"27eb7bf57d4eb080169a9500c6e2efacee2ba64e": {"8ffcadca": {"type": "FUNCTION", "size": 236, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetroute_cb"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetroute_cb"}, "40": {"type": "MIPS_26", "symbol": "bzero"}, "52": {"type": "MIPS_26", "symbol": "bzero"}, "164": {"type": "MIPS_26", "symbol": "rt_msg1", "scope": "LIBRARY", "original": ".text"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "208": {"type": "MIPS_26", "symbol": "__sceEENetraw_input", "scope": "LIBRARY"}}}}}, "__sceEENetrt_newaddrmsg": {"09a9835b48bed9df08aab67ab17bddd4db413f73": {"2f646701": {"type": "FUNCTION", "size": 544, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetroute_cb"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetroute_cb"}, "104": {"type": "MIPS_26", "symbol": "bzero"}, "204": {"type": "MIPS_26", "symbol": "bzero"}, "248": {"type": "MIPS_26", "symbol": "rt_msg1", "scope": "LIBRARY", "original": ".text"}, "300": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "344": {"type": "MIPS_26", "symbol": "bzero"}, "396": {"type": "MIPS_26", "symbol": "rt_msg1", "scope": "LIBRARY", "original": ".text"}, "424": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "432": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "452": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "456": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "460": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "468": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "472": {"type": "MIPS_26", "symbol": "__sceEENetraw_input", "scope": "LIBRARY"}, "476": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__sceEENetrt_ifannouncemsg": {"9f6b10d3e1b132d1ba1624123d714ae4eb6373c8": {"5b86960a": {"type": "FUNCTION", "size": 180, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetroute_cb"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetroute_cb"}, "48": {"type": "MIPS_26", "symbol": "bzero"}, "60": {"type": "MIPS_26", "symbol": "bzero"}, "80": {"type": "MIPS_26", "symbol": "strcpy"}, "104": {"type": "MIPS_26", "symbol": "rt_msg1", "scope": "LIBRARY", "original": ".text"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "__sceEENetraw_input", "scope": "LIBRARY"}}}}}, "sysctl_dumpentry": {"beb450f0b133215268e4afe16b45190e6c508772": {"b8ead90b": {"type": "FUNCTION", "size": 428, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"72": {"type": "MIPS_26", "symbol": "bzero"}, "184": {"type": "MIPS_26", "symbol": "rt_msg2", "scope": "LIBRARY", "original": ".text"}, "376": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}}}}}, "sysctl_iflist": {"fdce80793c481b9581fcb42be2d42978d2c80eaa": {"bd306566": {"type": "FUNCTION", "size": 628, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_26", "symbol": "bzero"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetifnetlst"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetifnetlst"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "156": {"type": "MIPS_26", "s)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ymbol": "rt_msg2", "scope": "LIBRARY", "original": ".text"}, "172": {"type": "MIPS_26", "symbol": "__sceEENetpanic", "scope": "LIBRARY"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "332": {"type": "MIPS_26", "symbol": "__sceEENetpanic", "scope": "LIBRARY"}, "336": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "416": {"type": "MIPS_26", "symbol": "rt_msg2", "scope": "LIBRARY", "original": ".text"}, "516": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}}}}}, "sysctl_rtable": {"b660c6cd7f9657bdb7f8459f1996d778ccd9ba56": {"d47aace7": {"type": "FUNCTION", "size": 520, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"100": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetrt_tables"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetrt_tables"}, "228": {"type": "MIPS_HI16", "symbol": "sysctl_dumpentry", "original": ".text"}, "288": {"type": "MIPS_LO16", "symbol": "sysctl_dumpentry", "original": ".text"}, "324": {"type": "MIPS_26", "symbol": "sysctl_iflist", "scope": "LIBRARY", "original": ".text"}, "336": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "380": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}}}}}, "__sceEENetsl_compress_init": {"30502baf4e9b55b747c3fe83e19948ed19d5b95f": {"23d3fbb0": {"type": "FUNCTION", "size": 128, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "bzero"}}}}}, "__sceEENetsl_compress_setup": {"dcc3abb4d47c88318cedb33bcc8eacdb29745f7a": {"5088ac6b": {"type": "FUNCTION", "size": 208, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "bzero"}, "64": {"type": "MIPS_26", "symbol": "bzero"}, "76": {"type": "MIPS_26", "symbol": "bzero"}}}}}, "__sceEENetsl_compress_tcp": {"451c4e091da3c4311dc17e3727552f54e1b6f87a": {"80ab5d23": {"type": "FUNCTION", "size": 1672, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"80": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "560": {"type": "MIPS_26", "symbol": "bcmp"}, "608": {"type": "MIPS_26", "symbol": "bcmp"}, "656": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "784": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "812": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "884": {"type": "MIPS_26", "symbol": "sceEENetNtohl", "scope": "LIBRARY"}, "900": {"type": "MIPS_26", "symbol": "sceEENetNtohl", "scope": "LIBRARY"}, "988": {"type": "MIPS_26", "symbol": "sceEENetNtohl", "scope": "LIBRARY"}, "1004": {"type": "MIPS_26", "symbol": "sceEENetNtohl", "scope": "LIBRARY"}, "1096": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1104": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1156": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "1188": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "1216": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "1260": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "1272": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "1376": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "1396": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "1568": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "1592": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}}}}}, "__sceEENetsl_uncompress_tcp": {"4ab566e838101f6e7a29a8cc7544d532aac73eb8": {"4ff1ecb3": {"type": "FUNCTION", "size": 204, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_26", "symbol": "__sceEENetsl_uncompress_tcp_core", "scope": "LIBRARY", "original": ".text"}, "128": {"type": "MIPS_26", "symbol": "__sceEENetmemmove", "scope": "LIBRARY"}, "164": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}}}}}, "__sceEENetsl_uncompress_tcp_core": {"aae190d4f70fe99321add951affd0f55f7140497": {"bbea166d": {"type": "FUNCTION", "size": 1312, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"228": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "392": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "520": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "540": {"type": "MIPS_26", "symbol": "sceEENetNtohl", "scope": "LIBRARY"}, "548": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "568": {"type": "MIPS_26", "symbol": "sceEENetNtohl", "scope": "LIBRARY"}, "588": {"type": "MIPS_26", "symbol": "sceEENetNtohl", "scope": "LIBRARY"}, "600": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "628": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "696": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "748": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "772": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "820": {"type": "MIPS_26", "symbol": "sceEENetNtohl", "scope": "LIBRARY"}, "856": {"type": "MIPS_26", "symbol": "sceEENetNtohl", "scope": "LIBRARY"}, "872": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "916": {"type": "MIPS_26", "symbol": "sceEENetNtohl", "scope": "LIBRARY"}, "952": {"type": "MIPS_26", "symbol": "sceEENetNtohl", "scope": "LIBRARY"}, "972": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "1012": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "1048": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "1076": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "1092": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "1132": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}}}}}, "lla_snprintf": {"2e25abd2adc1d7952b9bbb17ed97f3b2c0c52b63": {"2f11e0a6": {"type": "FUNCTION", "size": 196, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "__sceEENetarp_drain": {"b1d46aa2c609584d254910f4f62200489cb65b73": {"b84a5940": {"type": "FUNCTION", "size": 168, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_HI16", "symbol")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: "", "original": ".rodata"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "160": {"type": "MIPS_26", "symbol": "arp_unlock", "scope": "LIBRARY", "original": ".text"}}}}}, "arptimer": {"510c924803cdac9f0719acdc06ca172e33fc4028": {"093e00c6": {"type": "FUNCTION", "size": 260, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "24": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_HI16", "symbol": "arptimer", "original": ".text"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_LO16", "symbol": "arptimer", "original": ".text"}, "148": {"type": "MIPS_26", "symbol": "__sceEENetcallout_reset", "scope": "LIBRARY"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetkern_time"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetkern_time"}, "204": {"type": "MIPS_26", "symbol": "arptfree", "scope": "LIBRARY", "original": ".text"}, "224": {"type": "MIPS_26", "symbol": "arp_unlock", "scope": "LIBRARY", "original": ".text"}, "252": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "__sceEENetarp_rtrequest": {"16ed4a6c52811d76e0deaa15adcc1fc886f3a948": {"baf6053f": {"type": "FUNCTION", "size": 904, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetkern_time"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetkern_time"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetkern_time"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_26", "symbol": "__sceEENetcallout_init", "scope": "LIBRARY"}, "100": {"type": "MIPS_HI16", "symbol": "arptimer", "original": ".text"}, "108": {"type": "MIPS_LO16", "symbol": "arptimer", "original": ".text"}, "116": {"type": "MIPS_26", "symbol": "__sceEENetcallout_reset", "scope": "LIBRARY"}, "140": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "288": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "300": {"type": "MIPS_26", "symbol": "__sceEENetrt_setgate", "scope": "LIBRARY"}, "312": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetkern_time"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetkern_time"}, "388": {"type": "MIPS_26", "symbol": "arprequest", "scope": "LIBRARY", "original": ".text"}, "408": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "432": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "436": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "472": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "492": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "500": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "504": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "516": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "520": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "524": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "532": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "548": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "552": {"type": "MIPS_26", "symbol": "bzero"}, "556": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "576": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "580": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "584": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "596": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "608": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "692": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "700": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "704": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "712": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetloif"}, "716": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetloif"}, "732": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "736": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "744": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "796": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "812": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "828": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "836": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "868": {"type": "MIPS_26", "symbol": "arp_unlock", "scope": "LIBRARY", "original": ".text"}}}}}, "arprequest": {"b77a5d6e74659ab977f0edaccff4456a5e2a67e2": {"4bc65aa7": {"type": "FUNCTION", "size": 348, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "sceEENetMGethdr", "scope": "LIBRARY"}, "120": {"type": "MIPS_26", "symbol": "bzero"}, "128": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "164": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "192": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "216": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "248": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}}}}}, "__sceEENetarpresolve": {"a39e9a34c203d0cbac0b1c8ddda1e4b8c08c3a09": {"2cd2c848": {"type": "FUNCTION", "size": 500, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"72": {"type": "MIPS_26", "symbol": "arplookup", "scope": "LIBRARY", "original": ".text"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "120": {"type": "MIPS_26", "symbol": "__sceEENetlog", "s)PS2SDB", 8192}, + std::string_view{R"PS2SDB(cope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetkern_time"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetkern_time"}, "224": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "240": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "256": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "272": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "312": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetkern_time"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetkern_time"}, "324": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetkern_time"}, "332": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "336": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetkern_time"}, "340": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "344": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "408": {"type": "MIPS_26", "symbol": "arprequest", "scope": "LIBRARY", "original": ".text"}, "424": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "432": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__sceEENetarpintr": {"0e8d1589e88a7a4a18e29a74f3a0c40be51ec9dd": {"34a4f493": {"type": "FUNCTION", "size": 352, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "164": {"type": "MIPS_26", "symbol": "__sceEENetpanic", "scope": "LIBRARY"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "248": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "272": {"type": "MIPS_26", "symbol": "in_arpinput", "scope": "LIBRARY", "original": ".text"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "288": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "in_arpinput": {"748717247be1ba36ed6d3d643832da4b47761ce4": {"64f813d0": {"type": "FUNCTION", "size": 1848, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"72": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "148": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "156": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetin_ifaddrhashtbl"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetin_ifaddrhashtbl"}, "372": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetin_ifaddrhashtbl"}, "628": {"type": "MIPS_26", "symbol": "bcmp"}, "648": {"type": "MIPS_26", "symbol": "bcmp"}, "668": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "680": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "688": {"type": "MIPS_26", "symbol": "__sceEENetin_fmtaddr", "scope": "LIBRARY"}, "708": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "740": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "752": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "756": {"type": "MIPS_26", "symbol": "__sceEENetin_fmtaddr", "scope": "LIBRARY"}, "772": {"type": "MIPS_26", "symbol": "lla_snprintf", "scope": "LIBRARY", "original": ".text"}, "792": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "836": {"type": "MIPS_26", "symbol": "arplookup", "scope": "LIBRARY", "original": ".text"}, "904": {"type": "MIPS_26", "symbol": "bcmp"}, "932": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "940": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "944": {"type": "MIPS_26", "symbol": "lla_snprintf", "scope": "LIBRARY", "original": ".text"}, "968": {"type": "MIPS_26", "symbol": "__sceEENetin_fmtaddr", "scope": "LIBRARY"}, "988": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1012": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1020": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1024": {"type": "MIPS_26", "symbol": "lla_snprintf", "scope": "LIBRARY", "original": ".text"}, "1052": {"type": "MIPS_26", "symbol": "__sceEENetin_fmtaddr", "scope": "LIBRARY"}, "1084": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1104": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1116": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1120": {"type": "MIPS_26", "symbol": "__sceEENetin_fmtaddr", "scope": "LIBRARY"}, "1136": {"type": "MIPS_26", "symbol": "lla_snprintf", "scope": "LIBRARY", "original": ".text"}, "1156": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1180": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1196": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1200": {"type": "MIPS_26", "symbol": "__sceEENetin_fmtaddr", "scope": "LIBRARY"}, "1224": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1244": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1260": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1264": {"type": "MIPS_26", "symbol": "__sceEENetin_fmtaddr", "scope": "LIBRARY"}, "1288": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1320": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "1336": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetkern_time"}, "1340": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1344": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1348": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetkern_time"}, "1376": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "1392": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "1444": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "1492": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "1520": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "1540": {"type": "MIPS_26", "symbol": "arplookup", "scope": "LIBRARY", "original": ".text"}, "1580": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "1608": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "1644": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "1668": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "1676": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "1696": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}}}}}, "arptfree": {"0e8d23170ca78c08056dd899ed2483234313aa36": {"4ae7fb60": {"type": "FUNCTION", "size": 164, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_26", "symbol": "__sceEENetpanic", "scope": "LIBRARY"}, "40": {)PS2SDB", 8192}, + std::string_view{R"PS2SDB("type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_26", "symbol": "__sceEENetrtrequest", "scope": "LIBRARY"}}}}}, "arplookup": {"ef74e93e32f0e6f545f2c64acd01ad6d516a2006": {"e5f5b018": {"type": "FUNCTION", "size": 272, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "__sceEENetrtalloc1", "scope": "LIBRARY"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "216": {"type": "MIPS_26", "symbol": "__sceEENetin_fmtaddr", "scope": "LIBRARY"}, "236": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}}}}}, "__sceEENetarpioctl": {"cb2f38ba5185ad761fd2d7d1cb34e5d7ced2c2f2": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "__sceEENetarp_ifinit": {"dc6c634e1330e1e80e798682bdafae9e9ba9d17a": {"d04ad042": {"type": "FUNCTION", "size": 140, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "arprequest", "scope": "LIBRARY", "original": ".text"}, "92": {"type": "MIPS_HI16", "symbol": "__sceEENetarp_rtrequest", "original": ".text"}, "96": {"type": "MIPS_LO16", "symbol": "__sceEENetarp_rtrequest", "original": ".text"}}}}}, "__sceEENetrevarpinput": {"5df8e487dcabc24dda23a1d6de4fb74c1164f8be": {"8cbbef32": {"type": "FUNCTION", "size": 152, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"84": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "128": {"type": "MIPS_26", "symbol": "__sceEENetin_revarpinput", "scope": "LIBRARY", "original": ".text"}, "144": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}}}}}, "__sceEENetin_revarpinput": {"1fa4b2c0bcfc8db70295e91a5568e379f4d5799c": {"63d0a43d": {"type": "FUNCTION", "size": 340, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "in_arpinput", "scope": "LIBRARY", "original": ".text"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "208": {"type": "MIPS_26", "symbol": "bcmp"}, "228": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "244": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "248": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "284": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "300": {"type": "MIPS_26", "symbol": "__sceEENeteenet_wakeup", "scope": "LIBRARY"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "332": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}}}}}, "__sceEENetrevarprequest": {"a540eb90cbde6d0960a3f2c7ea7de6e2de20415c": {"118ff230": {"type": "FUNCTION", "size": 304, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "sceEENetMGethdr", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "bzero"}, "104": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "140": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}}}}}, "__sceEENetrevarpwhoarewe": {"e9663244886fbd32a38ae9f833bc12366e1a3d36": {"00d8e038": {"type": "FUNCTION", "size": 252, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_26", "symbol": "__sceEENetrevarprequest", "scope": "LIBRARY", "original": ".text"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_26", "symbol": "__sceEENeteenet_tsleep", "scope": "LIBRARY"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "172": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "192": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}}}}}, "arp_init": {"aa94336fdb477aa6407419f12500b6556e9472b2": {"090633b6": {"type": "FUNCTION", "size": 132, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_26", "symbol": "memset"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, )PS2SDB", 8192}, + std::string_view{R"PS2SDB("88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "arp_unlock": {"035bb7700ee2e0421e89c3248b8afdc8578f3618": {"1ad1547b": {"type": "FUNCTION", "size": 48, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "__sceEENetigmp_init": {"5b3151e0b1f823512113d2da4fe7f34be6cff7ee": {"00765fd4": {"type": "FUNCTION", "size": 56, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_26", "symbol": "memset"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "rti_fill": {"df7f2615920f6197e6df0c9f26c9f27520041f5f": {"1b2e2c4a": {"type": "FUNCTION", "size": 164, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "rti_find": {"73585bf4e39ec40c066fe4de11b7cd62b9aec95b": {"50bd14dd": {"type": "FUNCTION", "size": 132, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "__sceEENetigmp_input": {"32a29d814b002b61e3e6d50eec1a9d61b8ce3b6a": {"3fdaa3d8": {"type": "FUNCTION", "size": 2144, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "192": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "236": {"type": "MIPS_26", "symbol": "sceEENetMPullup", "scope": "LIBRARY"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "332": {"type": "MIPS_26", "symbol": "__sceEENetin_cksum", "scope": "LIBRARY"}, "344": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "360": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "460": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "504": {"type": "MIPS_26", "symbol": "rti_find", "scope": "LIBRARY", "original": ".text"}, "524": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "560": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "576": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetin_ifaddrlst"}, "584": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetin_ifaddrlst"}, "648": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "680": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "696": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "712": {"type": "MIPS_26", "symbol": "__sceEENetrandom", "scope": "LIBRARY"}, "744": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "816": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "836": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "848": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetin_ifaddrlst"}, "864": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "884": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetin_ifaddrlst"}, "972": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "988": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "1016": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "1056": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1064": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1104": {"type": "MIPS_26", "symbol": "__sceEENetrandom", "scope": "LIBRARY"}, "1124": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1220": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1256": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "1276": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "1312": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "1560": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1640": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1676": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "1696": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "1740": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "1760": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "2008": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "2044": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2052": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2088": {"type": "MIPS_26", "symbol": "__sceEENetrip_input", "scope": "LIBRARY"}}}}}, "__sceEENetigmp_joingroup": {"9ed1e8d0140346415813d953eb9eae3126180f09": {"21f66ed4": {"type": "FUNCTION", "size": 192, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "44": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "60": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "rti_fill", "scope": "LIBRARY", "original": ".text"}, "112": {"type": "MIPS_26", "symbol": "__sceEENetigmp_sendpkt", "scope": "LIBRARY", "original": ".text"}, "120": {"type": "MIPS_26", "symbol": "__sceEENetrandom", "scope": "LIBRARY"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "184": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "__sceEENetigmp_leavegroup": {"b4a995473cd6ccf27cf07b3e7f3722f191ae5d3a": {"c8ba6ce6": {"type")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: "FUNCTION", "size": 164, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "60": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "136": {"type": "MIPS_26", "symbol": "__sceEENetigmp_sendpkt", "scope": "LIBRARY", "original": ".text"}}}}}, "__sceEENetigmp_fasttimo": {"25c3cd12d0af5683caf6ee7a71133b7476a7d9a0": {"c630a966": {"type": "FUNCTION", "size": 300, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetin_ifaddrlst"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetin_ifaddrlst"}, "172": {"type": "MIPS_26", "symbol": "__sceEENetigmp_sendpkt", "scope": "LIBRARY", "original": ".text"}, "188": {"type": "MIPS_26", "symbol": "__sceEENetigmp_sendpkt", "scope": "LIBRARY", "original": ".text"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "260": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "__sceEENetigmp_slowtimo": {"821871914c6d5b7e680818079f50a1f9d7592ea1": {"8a2b37b3": {"type": "FUNCTION", "size": 104, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "__sceEENetigmp_sendpkt": {"19f53c67add7c8686c17fbb946980f5d02626fd4": {"5292c518": {"type": "FUNCTION", "size": 420, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "40": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "__sceEENetMRetryhdr", "scope": "LIBRARY"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetmax_linkhdr"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetmax_linkhdr"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetzeroin_addr"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetzeroin_addr"}, "284": {"type": "MIPS_26", "symbol": "__sceEENetin_cksum", "scope": "LIBRARY"}, "364": {"type": "MIPS_26", "symbol": "__sceEENetip_output", "scope": "LIBRARY"}, "372": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "376": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__sceEENetin_localaddr": {"525f830067dae657997b30a58ec9ad42144184a6": {"dde25ad4": {"type": "FUNCTION", "size": 152, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetin_ifaddrlst"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetin_ifaddrlst"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetin_ifaddrlst"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetin_ifaddrlst"}}}}}, "__sceEENetin_canforward": {"1b4a98e0f829382bdff732a9b45d3971cf730ed2": {"d92f0517": {"type": "FUNCTION", "size": 164, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}}}}}, "__sceEENetin_socktrim": {"35abcf419b7e41ef38f5f931c9ca4e8556849a6f": {"00000000": {"type": "FUNCTION", "size": 60, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "__sceEENetin_fmtaddr": {"b860ebadccdfefb3b1d03bf9ceeb6cda140e7c3d": {"88d21c44": {"type": "FUNCTION", "size": 100, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "sceEENetNtohl", "scope": "LIBRARY"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_26", "symbol": "sprintf"}}}}}, "__sceEENetin_setmaxmtu": {"eaa769be010f8075b9a47fda395cd859af8ae00a": {"251c9772": {"type": "FUNCTION", "size": 88, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetin_ifaddrlst"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetin_ifaddrlst"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "in_mask2len": {"33f7d2b22593f5a09296c0b48c902d343bf972e5": {"00000000": {"type": "FUNCTION", "size": 148, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "in_len2mask": {"c06983ed905a769627554be30e32d4bcfa70edb3": {"29c96977": {"type": "FUNCTION", "size": 192, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "bzero"}}}}}, "__sceEENetin_control": {"cc19d35408bd117fc69aab7f2b70bb16f4ee6d8e": {"3e5a78d1": {"type": "FUNCTION", "size": 2368, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"144": {"type": "MIPS_26", "symbol": "in_lifaddr_ioctl", "scope": "LIBRARY", "original": ".text"}, "540": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetin_ifaddrhashtbl"}, "548": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetin_ifaddrhashtbl"}, "668": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "672": {"type": "MIPS_26", "symbol": "__sceEENetpanic", "scope": "LIBRARY"}, "676": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "708": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "736": {"type": "MIPS_26", "symbol": "bzero"}, "748": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetin_ifaddrlst"}, "752": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetin_ifaddrlst"}, "1568": {"type": "MIPS_26", "symbol": "__sceEENetrtinit", "scope": "LIBRARY"}, "1592": {"type": "MIPS_26", "symbol": "__sceEENe)PS2SDB", 8192}, + std::string_view{R"PS2SDB(trtinit", "scope": "LIBRARY"}, "1680": {"type": "MIPS_26", "symbol": "__sceEENetin_ifinit", "scope": "LIBRARY", "original": ".text"}, "1824": {"type": "MIPS_26", "symbol": "__sceEENetin_ifscrub", "scope": "LIBRARY", "original": ".text"}, "1908": {"type": "MIPS_26", "symbol": "__sceEENetin_ifscrub", "scope": "LIBRARY", "original": ".text"}, "1992": {"type": "MIPS_26", "symbol": "__sceEENetin_ifinit", "scope": "LIBRARY", "original": ".text"}, "2240": {"type": "MIPS_26", "symbol": "bzero"}, "2256": {"type": "MIPS_26", "symbol": "__sceEENetin_purgeaddr", "scope": "LIBRARY", "original": ".text"}, "2312": {"type": "MIPS_26", "symbol": "__sceEENetin_setmaxmtu", "scope": "LIBRARY", "original": ".text"}}}}}, "__sceEENetin_purgeaddr": {"3b57a773cc02ad7872dbf811f5e80a55b094ecf6": {"70d94d9a": {"type": "FUNCTION", "size": 280, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__sceEENetin_ifscrub", "scope": "LIBRARY", "original": ".text"}, "128": {"type": "MIPS_26", "symbol": "__sceEENetifafree", "scope": "LIBRARY"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetin_ifaddrlst"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetin_ifaddrlst"}, "192": {"type": "MIPS_26", "symbol": "__sceEENetin_delmulti", "scope": "LIBRARY", "original": ".text"}, "208": {"type": "MIPS_HI16", "symbol": "__sceEENetif_nulloutput"}, "216": {"type": "MIPS_LO16", "symbol": "__sceEENetif_nulloutput"}, "228": {"type": "MIPS_26", "symbol": "__sceEENetin_savemkludge", "scope": "LIBRARY", "original": ".text"}, "252": {"type": "MIPS_26", "symbol": "__sceEENetifafree", "scope": "LIBRARY"}, "272": {"type": "MIPS_26", "symbol": "__sceEENetin_setmaxmtu", "scope": "LIBRARY", "original": ".text"}}}}}, "__sceEENetin_purgeif": {"681e5863686db579c367fbaa39bf8e236a64c847": {"90067e20": {"type": "FUNCTION", "size": 100, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "__sceEENetin_purgeaddr", "scope": "LIBRARY", "original": ".text"}, "92": {"type": "MIPS_26", "symbol": "__sceEENetin_purgemkludge", "scope": "LIBRARY", "original": ".text"}}}}}, "in_lifaddr_ioctl": {"bd55025b39a88fddfca5fd57c97938c09d120f7f": {"ea609b62": {"type": "FUNCTION", "size": 988, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "60": {"type": "MIPS_26", "symbol": "__sceEENetpanic", "scope": "LIBRARY"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "364": {"type": "MIPS_26", "symbol": "bzero"}, "380": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "396": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "420": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "448": {"type": "MIPS_26", "symbol": "in_len2mask", "scope": "LIBRARY", "original": ".text"}, "476": {"type": "MIPS_26", "symbol": "__sceEENetin_control", "scope": "LIBRARY", "original": ".text"}, "500": {"type": "MIPS_26", "symbol": "bzero"}, "528": {"type": "MIPS_26", "symbol": "in_len2mask", "scope": "LIBRARY", "original": ".text"}, "604": {"type": "MIPS_26", "symbol": "in_len2mask", "scope": "LIBRARY", "original": ".text"}, "728": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "772": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "788": {"type": "MIPS_26", "symbol": "bzero"}, "796": {"type": "MIPS_26", "symbol": "in_mask2len", "scope": "LIBRARY", "original": ".text"}, "824": {"type": "MIPS_26", "symbol": "bzero"}, "840": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "856": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "888": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "912": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "940": {"type": "MIPS_26", "symbol": "__sceEENetin_control", "scope": "LIBRARY", "original": ".text"}}}}}, "__sceEENetin_ifscrub": {"03d493c3e59ddb985173de1b85b2a51feefe8ed5": {"2ecbc220": {"type": "FUNCTION", "size": 116, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "__sceEENetrtinit", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "__sceEENetrtinit", "scope": "LIBRARY"}}}}}, "__sceEENetin_ifinit": {"cdf5329fad0d32b58a24c233a75c4fccbcf4e869": {"8f5b87a8": {"type": "FUNCTION", "size": 1084, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetin_ifaddrhashtbl"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetin_ifaddrhashtbl"}, "292": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetin_ifaddrhashtbl"}, "380": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "400": {"type": "MIPS_26", "symbol": "__sceEENetin_ifscrub", "scope": "LIBRARY", "original": ".text"}, "416": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "432": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "452": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "476": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "540": {"type": "MIPS_26", "symbol": "__sceEENetin_socktrim", "scope": "LIBRARY", "original": ".text"}, "548": {"type": "MIPS_26", "symbol": "__sceEENetin_setmaxmtu", "scope": "LIBRARY", "original": ".text"}, "680": {"type": "MIPS_26", "symbol": "__sceEENetrtinit", "scope": "LIBRARY"}, "736": {"type": "MIPS_26", "symbol": "__sceEENetin_restoremkludge", "scope": "LIBRARY", "original": ".text"}, "776": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "792": {"type": "MIPS_26", "symbol": "__sceEENetin_addmulti", "scope": "LIBRARY", "original": ".text"}, "808": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "912": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetin_ifaddrhashtbl"}, "988": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetin_ifaddrhashtbl"}}}}}, "__sceEENetin_broadcast": {"03c4849ada6f768a3722a45646a675edcfdca7b3": {"3c0fe76b": {"type": "FUNCTION", "size": 232, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "48": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__sceEENetin_savemkludge": {"6464e5904ed6fe5254a7e327830baf1c22cab0c9": {"a4256ce7": {"type": "FUNCTION", "size": 296, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"140": {"type": "MIPS_26", "symbol": "__sceEENetifafree", "scope": "LIBRARY"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__sceEENetin_restoremkludge": {"a806d46002245b599adc187a539963fd132c034c": {"8a254e82": {"type": "FUNCTION", "size": 292, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, )PS2SDB", 8192}, + std::string_view{R"PS2SDB("48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_26", "symbol": "__sceEENetifafree", "scope": "LIBRARY"}, "232": {"type": "MIPS_26", "symbol": "__sceEENetifafree", "scope": "LIBRARY"}}}}}, "__sceEENetin_purgemkludge": {"31e6de183a488997fde4d91cb93448570aa813c0": {"90d0a24a": {"type": "FUNCTION", "size": 116, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_26", "symbol": "__sceEENetifafree", "scope": "LIBRARY"}}}}}, "__sceEENetin_addmulti": {"599cfff56a81a39fb1ab619a585a79542f756ab7": {"e71bcb03": {"type": "FUNCTION", "size": 532, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "188": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "460": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "468": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "484": {"type": "MIPS_26", "symbol": "__sceEENetigmp_joingroup", "scope": "LIBRARY"}, "492": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "__sceEENetin_delmulti": {"eb616a1656f6df1c8507c74f2b5ec79861bd936c": {"f32dedf9": {"type": "FUNCTION", "size": 204, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "44": {"type": "MIPS_26", "symbol": "__sceEENetigmp_leavegroup", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "__sceEENetifafree", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "176": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "__sceEENetin_init": {"46598ae209e0c129e3c186e5c985b2975c805b74": {"4971d8a7": {"type": "FUNCTION", "size": 48, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__sceEENetin4_cksum": {"010594378dc18de93eec72d8ef3bcab313c69114": {"e7d8a2c2": {"type": "FUNCTION", "size": 1000, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_26", "symbol": "__sceEENetpanic", "scope": "LIBRARY"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_26", "symbol": "__sceEENetpanic", "scope": "LIBRARY"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "108": {"type": "MIPS_26", "symbol": "bzero"}, "116": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "892": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "896": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "900": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "__sceEENetin_cksum": {"0c0f5264ce77e2ec3837d85a431a81712cc70d4c": {"6114b4dd": {"type": "FUNCTION", "size": 712, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"620": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "624": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "628": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "__sceEENetin_pcbinit": {"d1ca45848365d9032c5a30bfa578a3db9d66b53d": {"69ec7579": {"type": "FUNCTION", "size": 148, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "__sceEENethashinit", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "__sceEENethashinit", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "__sceEENetrandom", "scope": "LIBRARY"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__sceEENetin_pcballoc": {"c44d9cc17a41482887460e7d47ef5b003b04d39d": {"cdfb23b2": {"type": "FUNCTION", "size": 184, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "bzero"}, "80": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "140": {"type": "MIPS_26", "symbol": "__sceEENetin_pcbstate", "scope": "LIBRARY", "original": ".text"}, "148": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "__sceEENetin_pcbbind": {"b5a1a254606024160a024f0ce22aaa02bb32ef37": {"722a457f": {"type": "FUNCTION", "size": 676, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetin_ifaddrlst"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetin_ifaddrlst"}, "112": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "176": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "196": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "224": {"type": "MIPS_26", "symbol": "__sceEENetifa_ifwithaddr", "scope": "LIBRARY"}, "288": {"type": "MIPS_26", "symbol": "__sceEENetin_pcblookup_port", "scope": "LIBRARY", "original": ".text"}, "372": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "376": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "380": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "392": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "396": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "400": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "404": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "412": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "496": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "528": {"type": "MIPS_26", "symbol": "__sceEENetin_pcblookup_port", "scope": "LIBRARY", "original": ".text"}, "556": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "616": {"type": "MIPS_26", "symbol": "__sceEENetin_pcbstate", "scope": "LIBRARY", "original": ".text"}}}}}, "__sceEENetin_pcbconnect": {"88995b1f807e2de880e4743eb4e86c4162edadcd": {"663f4252": {"type": "FUNCTION", "size": 580, "library": "libeenet", "scope": "GLOBAL", "is_interface":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"92": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetin_ifaddrlst"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetin_ifaddrlst"}, "124": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "164": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "236": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "276": {"type": "MIPS_26", "symbol": "__sceEENetin_selectsrc", "scope": "LIBRARY", "original": ".text"}, "332": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "420": {"type": "MIPS_26", "symbol": "__sceEENetin_pcblookup_connect", "scope": "LIBRARY", "original": ".text"}, "436": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "468": {"type": "MIPS_26", "symbol": "__sceEENetin_pcbbind", "scope": "LIBRARY", "original": ".text"}, "532": {"type": "MIPS_26", "symbol": "__sceEENetin_pcbstate", "scope": "LIBRARY", "original": ".text"}}}}}, "__sceEENetin_pcbdisconnect": {"4248fe298d9a81f5e666b664deaeac8c639831b4": {"c3aa3d4e": {"type": "FUNCTION", "size": 104, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_26", "symbol": "__sceEENetin_pcbstate", "scope": "LIBRARY", "original": ".text"}, "84": {"type": "MIPS_26", "symbol": "__sceEENetin_pcbdetach", "scope": "LIBRARY", "original": ".text"}}}}}, "__sceEENetin_pcbdetach": {"35a2d8d9aca7ac0573d39eafe2489e21052bc3db": {"6b300bf1": {"type": "FUNCTION", "size": 200, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__sceEENetsofree", "scope": "LIBRARY"}, "48": {"type": "MIPS_26", "symbol": "sceEENetMFree", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "__sceEENetrtfree", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "__sceEENetip_freemoptions", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "__sceEENetin_pcbstate", "scope": "LIBRARY", "original": ".text"}, "160": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "184": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}}}}}, "__sceEENetin_setsockaddr": {"3459032cb580861ad4d17029029d6dd5815a231e": {"01a3226b": {"type": "FUNCTION", "size": 108, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "bzero"}}}}}, "__sceEENetin_setpeeraddr": {"8d14e4c46bd54334882271a61670d87887fa6239": {"01a3226b": {"type": "FUNCTION", "size": 108, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "bzero"}}}}}, "__sceEENetin_pcbnotify": {"e1620b5fb8115afda7e7233707ec5acc2d10bbde": {"c5f6b9bf": {"type": "FUNCTION", "size": 336, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"76": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "sceEENetNtohl", "scope": "LIBRARY"}, "120": {"type": "MIPS_26", "symbol": "sceEENetNtohl", "scope": "LIBRARY"}, "132": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "144": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}}}}}, "__sceEENetin_pcbnotifyall": {"a1b6a93d10c9ddffc392c627104e348338af8e65": {"f550c038": {"type": "FUNCTION", "size": 160, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}}}}}, "__sceEENetin_pcbpurgeif": {"0ab7e2784b4f9d0ae4d25740aba248b5bef03b77": {"72531940": {"type": "FUNCTION", "size": 276, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"80": {"type": "MIPS_26", "symbol": "__sceEENetin_rtchange", "scope": "LIBRARY", "original": ".text"}, "156": {"type": "MIPS_26", "symbol": "__sceEENetin_delmulti", "scope": "LIBRARY"}}}}}, "__sceEENetin_losing": {"8132ebc160bb00fb46650c41c5d961b1758b5a3e": {"83f18e19": {"type": "FUNCTION", "size": 164, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "bzero"}, "84": {"type": "MIPS_26", "symbol": "__sceEENetrt_missmsg", "scope": "LIBRARY"}, "120": {"type": "MIPS_26", "symbol": "__sceEENetrtrequest", "scope": "LIBRARY"}, "136": {"type": "MIPS_26", "symbol": "__sceEENetrtfree", "scope": "LIBRARY"}}}}}, "__sceEENetin_rtchange": {"2034e5ea8932d98001c7ff725eb6d8f09cd59573": {"89d2256a": {"type": "FUNCTION", "size": 56, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__sceEENetrtfree", "scope": "LIBRARY"}}}}}, "__sceEENetin_pcblookup_port": {"889341702d6871fb3a7cbae9e9f780376e982c2b": {"ab1a171a": {"type": "FUNCTION", "size": 272, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"96": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}}}}}, "__sceEENetin_pcblookup_connect": {"8d7be147fc7ba0a78137027a7d416faa4d2206a5": {"3d991110": {"type": "FUNCTION", "size": 344, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_26", "symbol": "sceEENetNtohl", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "sceEENetNtohl", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}}}}}, "__sceEENetin_pcblookup_bind": {"5d7b83784b4666b5fa02e47d5d18fcc1b78e16c9": {"09f4b243": {"type": "FUNCTION", "size": 364, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "sceEENetNtohl", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_26", "symbol": "sceEENetNtohl", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}}}}}, "__sceEENetin_pcbstate": {"24511a2b82bd0123c99108a4df40112e60cf165e": {"a0339b27": {"type": "FUNCTION", "size": 708, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"112": {"type": "MIPS_26", "symbol": "sceEENetNtohl", "scope": "LIBRARY"}, "128": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "sceEENetNtohl", "scope": "LIBRARY"}, "232": {"type": "MIPS_26", "symbol": "sceEENetNtohl", "scope": "LIBRARY"}, "244": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "280": {"type": "MIPS_26", "symbol": "sceEENetNtohl", "scope": "LIBRARY"}, "292": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "324": {"type": "MIPS_26", "symbol": "sceEEN)PS2SDB", 8192}, + std::string_view{R"PS2SDB(etNtohl", "scope": "LIBRARY"}, "336": {"type": "MIPS_26", "symbol": "sceEENetNtohl", "scope": "LIBRARY"}, "352": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "368": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "424": {"type": "MIPS_26", "symbol": "sceEENetNtohl", "scope": "LIBRARY"}, "436": {"type": "MIPS_26", "symbol": "sceEENetNtohl", "scope": "LIBRARY"}, "496": {"type": "MIPS_26", "symbol": "sceEENetNtohl", "scope": "LIBRARY"}, "508": {"type": "MIPS_26", "symbol": "sceEENetNtohl", "scope": "LIBRARY"}, "520": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "532": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "576": {"type": "MIPS_26", "symbol": "sceEENetNtohl", "scope": "LIBRARY"}, "588": {"type": "MIPS_26", "symbol": "sceEENetNtohl", "scope": "LIBRARY"}, "600": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "612": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}}}}}, "__sceEENetin_pcbrtentry": {"ad5f3999a1c1c3b471ed029ae993adee35151f47": {"fca707b2": {"type": "FUNCTION", "size": 112, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "__sceEENetrtalloc", "scope": "LIBRARY"}}}}}, "__sceEENetin_selectsrc": {"27c0143fcfea4ea5cd6a9005bc3dc3da99432f93": {"58dd9111": {"type": "FUNCTION", "size": 516, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"104": {"type": "MIPS_26", "symbol": "__sceEENetrtfree", "scope": "LIBRARY"}, "216": {"type": "MIPS_26", "symbol": "__sceEENetrtalloc", "scope": "LIBRARY"}, "268": {"type": "MIPS_26", "symbol": "__sceEENetifa_ifwithladdr", "scope": "LIBRARY"}, "288": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetin_ifaddrlst"}, "292": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetin_ifaddrlst"}, "336": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "356": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}}}}}, "__sceEENetin_proto_init": {"0644234008e5b6eacf74e86be231678ff80feba5": {"54e2a106": {"type": "FUNCTION", "size": 108, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "memset"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__sceEENeticmp_mtudisc_callback_register": {"4f06ca7b871431d26cc9bb3b8fc8ad2fcaf720bc": {"525dfff2": {"type": "FUNCTION", "size": 144, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__sceEENeticmp_error": {"6b5c24242a9aa67b16e0d01e10fe2d195e01b193": {"6e89ad43": {"type": "FUNCTION", "size": 1164, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"88": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "276": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "320": {"type": "MIPS_26", "symbol": "icmp_ratelimit", "scope": "LIBRARY", "original": ".text"}, "340": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "356": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "476": {"type": "MIPS_26", "symbol": "sceEENetMGethdr", "scope": "LIBRARY"}, "508": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "520": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "536": {"type": "MIPS_26", "symbol": "__sceEENetMReclaim", "scope": "LIBRARY"}, "544": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "560": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "632": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "716": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "720": {"type": "MIPS_26", "symbol": "__sceEENetpanic", "scope": "LIBRARY"}, "724": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "728": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "736": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "844": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "872": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "908": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "944": {"type": "MIPS_26", "symbol": "sceEENetMCopydata", "scope": "LIBRARY"}, "972": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "976": {"type": "MIPS_26", "symbol": "__sceEENetpanic", "scope": "LIBRARY"}, "980": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1104": {"type": "MIPS_26", "symbol": "__sceEENeticmp_reflect", "scope": "LIBRARY", "original": ".text"}, "1156": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}}}}}, "__sceEENeticmp_input": {"00fa17194452a87066c549dc928daf99e16d95ac": {"d57f9466": {"type": "FUNCTION", "size": 1380, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"128": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "188": {"type": "MIPS_26", "symbol": "sceEENetMPullup", "scope": "LIBRARY"}, "208": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "264": {"type": "MIPS_26", "symbol": "__sceEENetin_cksum", "scope": "LIBRARY"}, "276": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "336": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "344": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "388": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "396": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "424": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "432": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "528": {"type": "MIPS_)PS2SDB", 8192}, + std::string_view{R"PS2SDB(LO16", "symbol": "", "original": ".data"}, "544": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "572": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "584": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "608": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "624": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "636": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "640": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "648": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "656": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "660": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetip_protox"}, "680": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetip_protox"}, "688": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetinetsw"}, "696": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetinetsw"}, "748": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "784": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "792": {"type": "MIPS_26", "symbol": "__sceEENetiptime", "scope": "LIBRARY", "original": ".text"}, "812": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "816": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "832": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "848": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "860": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "864": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "876": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "880": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "908": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "932": {"type": "MIPS_26", "symbol": "__sceEENetifaof_ifpforaddr", "scope": "LIBRARY"}, "936": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "972": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "984": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1028": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1036": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1056": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1100": {"type": "MIPS_26", "symbol": "__sceEENeticmp_reflect", "scope": "LIBRARY", "original": ".text"}, "1132": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1160": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1172": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1192": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1196": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1200": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1204": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1228": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1248": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1280": {"type": "MIPS_26", "symbol": "__sceEENetrtredirect", "scope": "LIBRARY"}, "1292": {"type": "MIPS_26", "symbol": "__sceEENetpfctlinput", "scope": "LIBRARY"}, "1308": {"type": "MIPS_26", "symbol": "__sceEENetrip_input", "scope": "LIBRARY"}, "1324": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}}}}}, "__sceEENeticmp_reflect": {"4388498896128df4f2239084e7befc59399a6d31": {"e351e43e": {"type": "FUNCTION", "size": 1440, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"88": {"type": "MIPS_26", "symbol": "__sceEENetin_canforward", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetin_ifaddrhashtbl"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetin_ifaddrhashtbl"}, "220": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "348": {"type": "MIPS_26", "symbol": "__sceEENetrtfree", "scope": "LIBRARY"}, "412": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "484": {"type": "MIPS_26", "symbol": "bzero"}, "512": {"type": "MIPS_26", "symbol": "__sceEENetin_selectsrc", "scope": "LIBRARY"}, "596": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetin_ifaddrhashtbl"}, "804": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetin_ifaddrlst"}, "808": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetin_ifaddrlst"}, "856": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "896": {"type": "MIPS_26", "symbol": "__sceEENetip_srcroute", "scope": "LIBRARY"}, "920": {"type": "MIPS_26", "symbol": "sceEENetMGethdr", "scope": "LIBRARY"}, "948": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetzeroin_addr"}, "952": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetzeroin_addr"}, "1040": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "1344": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "1368": {"type": "MIPS_26", "symbol": "__sceEENeticmp_send", "scope": "LIBRARY", "original": ".text"}, "1384": {"type": "MIPS_26", "symbol": "sceEENetMFree", "scope": "LIBRARY"}}}}}, "__sceEENeticmp_send": {"fd0c681652f430497af7f59cf0f803737791fa98": {"43de2db2": {"type": "FUNCTION", "size": 176, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"92": {"type": "MIPS_26", "symbol": "__sceEENetin_cksum", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "__sceEENetip_output", "scope": "LIBRARY"}}}}}, "__sceEENetiptime": {"58eadd85db1e64259c5388f8484ac1d342a31dfe": {"d0afab23": {"type": "FUNCTION", "size": 100, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "__sceEENetmicrotime", "scope": "LIBRARY"}, "28": {"type": "MIPS_26", "symbol": "__moddi3"}, "60": {"type": "MIPS_26", "symbol": "__divdi3"}, "76": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}}}}}, "__sceEENeticmp_sysctl": {"4fe7a19b3db7d416d00c3619857ba7159e86eacc": {"0089f9c9": {"type": "FUNCTION", "size": 252, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"108": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_26", "symbol": "__sceEENetsysctl_int", "scope": "LIBRARY"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENeticmperrppslim"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENeticmperrppslim"}, "192": {"type": "MIPS_26", "symbol": "__sceEENetsysctl_int", "scope": "LIBRARY"}, "208": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "220": {"type": "MIPS_26", "symbol": "__sceEENetsysctl_rdstruct", "scope": "LIBRARY"}}}}}, "__sceEENeticmp_mtudisc": {"6874ec2c83148300dfc43b295b539eb2f75e4ac5": {"a71ea2dd": {"type": "FUNCTION", "size": 648, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_26",)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "60": {"type": "MIPS_26", "symbol": "__sceEENetrtalloc1", "scope": "LIBRARY"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "116": {"type": "MIPS_26", "symbol": "__sceEENetrtrequest", "scope": "LIBRARY"}, "132": {"type": "MIPS_26", "symbol": "__sceEENetrtfree", "scope": "LIBRARY"}, "140": {"type": "MIPS_26", "symbol": "__sceEENetrtfree", "scope": "LIBRARY"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetip_mtudisc_timeout_q"}, "244": {"type": "MIPS_26", "symbol": "__sceEENetrtfree", "scope": "LIBRARY"}, "260": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetip_mtudisc_timeout_q"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetip_mtudisc_timeout_q"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "272": {"type": "MIPS_26", "symbol": "__sceEENetrt_timer_add", "scope": "LIBRARY"}, "288": {"type": "MIPS_26", "symbol": "__sceEENetrtfree", "scope": "LIBRARY"}, "360": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "372": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "384": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "388": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "436": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "476": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "560": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "564": {"type": "MIPS_26", "symbol": "__sceEENetrtfree", "scope": "LIBRARY"}, "572": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__sceEENetip_next_mtu": {"1538c1450eea827a73e0b941a0a0202621034c1b": {"79a0c6ae": {"type": "FUNCTION", "size": 156, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "icmp_mtudisc_timeout": {"836488e5b81f44c37b535b8cad31fc821122afc3": {"449b6986": {"type": "FUNCTION", "size": 116, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "24": {"type": "MIPS_26", "symbol": "__sceEENetpanic", "scope": "LIBRARY"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_26", "symbol": "__sceEENetrtrequest", "scope": "LIBRARY"}}}}}, "icmp_ratelimit": {"0a5385cf4a659d302a43046ea0269e2b17a3ef1d": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "__sceEENeticmp_init": {"52418e71699aa805b76cc6229330bbe16a746966": {"414adf36": {"type": "FUNCTION", "size": 220, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_26", "symbol": "memset"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_26", "symbol": "memset"}, "120": {"type": "MIPS_26", "symbol": "memset"}, "136": {"type": "MIPS_26", "symbol": "memset"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__sceEENetip_init": {"57180223cec6f954c28235b70a38f56f686cb715": {"837f555d": {"type": "FUNCTION", "size": 720, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_26", "symbol": "__sceEENetin_init", "scope": "LIBRARY"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetlowportmax"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetanonportmin"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetanonportmax"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetlowportmin"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetlowportmax"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetlowportmin"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetanonportmin"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetanonportmax"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "224": {"type": "MIPS_26", "symbol": "memset"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "240": {"type": "MIPS_26", "symbol": "memset"}, "248": {"type": "MIPS_HI16", "symbol": "", )PS2SDB", 8192}, + std::string_view{R"PS2SDB("original": ".data"}, "256": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "276": {"type": "MIPS_26", "symbol": "memset"}, "284": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "292": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "296": {"type": "MIPS_26", "symbol": "memset"}, "304": {"type": "MIPS_26", "symbol": "__sceEENetin_proto_init", "scope": "LIBRARY"}, "320": {"type": "MIPS_26", "symbol": "__sceEENetpffindproto", "scope": "LIBRARY"}, "336": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetinetsw"}, "340": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "344": {"type": "MIPS_26", "symbol": "__sceEENetpanic", "scope": "LIBRARY"}, "348": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "352": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetinetsw"}, "360": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetinetsw"}, "372": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetip_protox"}, "380": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetip_protox"}, "388": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "392": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "436": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetinetdomain"}, "440": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetinetdomain"}, "460": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetinetsw"}, "472": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetinetsw"}, "492": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetip_protox"}, "500": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetip_protox"}, "572": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "576": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetkern_time"}, "580": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetkern_time"}, "584": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "592": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "596": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "600": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "608": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "612": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "624": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetin_ifaddrhash"}, "628": {"type": "MIPS_26", "symbol": "__sceEENethashinit", "scope": "LIBRARY"}, "632": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetin_ifaddrhash"}, "636": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "640": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "644": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "652": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "656": {"type": "MIPS_26", "symbol": "__sceEENetrt_timer_queue_create", "scope": "LIBRARY"}, "660": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "664": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "668": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__sceEENetipintr": {"03aa0547e4bfe1450659a455123cd17ae01deb6e": {"5adca913": {"type": "FUNCTION", "size": 128, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "__sceEENetip_input", "scope": "LIBRARY", "original": ".text"}}}}}, "__sceEENetip_input": {"4417a0dc541e4ae934530db4a841cc36d5fb7587": {"c07291f8": {"type": "FUNCTION", "size": 2100, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_26", "symbol": "sceEENetMPullup", "scope": "LIBRARY"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "220": {"type": "MIPS_26", "symbol": "sceEENetMPullup", "scope": "LIBRARY"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "264": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "284": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "300": {"type": "MIPS_26", "symbol": "__sceEENetin_cksum", "scope": "LIBRARY"}, "312": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "348": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "384": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "432": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "468": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "520": {"type": "MIPS_26", "symbol": "sceEENetMAdj", "scope": "LIBRARY"}, "532": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "552": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "556": {"type": "MIPS_26", "symbol": "__sceEENetip_dooptions", "scope": "LIBRARY", "original": ".text"}, "592": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "600": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "808": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "844": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "856": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "952": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "980": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1004": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1064": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "1076": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "1092": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "1104": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1108": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1116": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1176": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "1204": {"type": "MIPS_26", "symbol": "__sceEENeticmp_error", "scope": "LIBRARY"}, "1212": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1276": {"type": "MIPS_26", "symbol": "__sceEENetip_forward", "scope": "LIBRARY", "original": ".text"}, "1312": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1316": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "1328": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1332": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1344": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "1356": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1360": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, )PS2SDB", 8192}, + std::string_view{R"PS2SDB("1364": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1368": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1372": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1608": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1620": {"type": "MIPS_26", "symbol": "ipq_unlock", "scope": "LIBRARY", "original": ".text"}, "1696": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1712": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "1736": {"type": "MIPS_26", "symbol": "ipq_unlock", "scope": "LIBRARY", "original": ".text"}, "1764": {"type": "MIPS_26", "symbol": "__sceEENetip_reass", "scope": "LIBRARY", "original": ".text"}, "1824": {"type": "MIPS_26", "symbol": "ipq_unlock", "scope": "LIBRARY", "original": ".text"}, "1904": {"type": "MIPS_26", "symbol": "__sceEENetip_freef", "scope": "LIBRARY", "original": ".text"}, "1912": {"type": "MIPS_26", "symbol": "ipq_unlock", "scope": "LIBRARY", "original": ".text"}, "1920": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1924": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetip_protox"}, "1932": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetip_protox"}, "1940": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetinetsw"}, "1948": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetinetsw"}, "2044": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}}}}}, "__sceEENetip_reass": {"304d5d98bb0de6471ef0849dcd04ceaf70f099c5": {"cb536ba9": {"type": "FUNCTION", "size": 1624, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"100": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "368": {"type": "MIPS_26", "symbol": "sceEENetMAdj", "scope": "LIBRARY"}, "636": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "644": {"type": "MIPS_26", "symbol": "sceEENetMAdj", "scope": "LIBRARY"}, "836": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "876": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "1184": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1192": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1204": {"type": "MIPS_26", "symbol": "__sceEENetip_freef", "scope": "LIBRARY", "original": ".text"}, "1236": {"type": "MIPS_26", "symbol": "sceEENetMCat", "scope": "LIBRARY"}, "1248": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "1268": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1284": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "1296": {"type": "MIPS_26", "symbol": "sceEENetMCat", "scope": "LIBRARY"}, "1324": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1404": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "1412": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1428": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1536": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1544": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1556": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "1564": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}}}}}, "__sceEENetip_freef": {"f45ddffd585813b895dd6153aa03d0f2b04a856c": {"25cd8023": {"type": "FUNCTION", "size": 192, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "144": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__sceEENetip_slowtimo": {"894de258178bad82d017d60cdeb7ad7b9aaaf922": {"f4358be5": {"type": "FUNCTION", "size": 288, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "32": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_26", "symbol": "__sceEENetip_freef", "scope": "LIBRARY", "original": ".text"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "208": {"type": "MIPS_26", "symbol": "__sceEENetip_freef", "scope": "LIBRARY", "original": ".text"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "244": {"type": "MIPS_26", "symbol": "ipq_unlock", "scope": "LIBRARY", "original": ".text"}, "280": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "__sceEENetip_drain": {"675f156528af443cb1b9b8bb9bfe175c2fb21c77": {"063f4603": {"type": "FUNCTION", "size": 180, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "60": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_HI16",)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "symbol": "", "original": ".data"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_26", "symbol": "__sceEENetip_freef", "scope": "LIBRARY", "original": ".text"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "ipq_unlock", "scope": "LIBRARY", "original": ".text"}}}}}, "__sceEENetip_dooptions": {"859ae5d8a213eadcc8e1b7e0494758901ac48fd6": {"3ee9c50b": {"type": "FUNCTION", "size": 1336, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"112": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "244": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "280": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "308": {"type": "MIPS_26", "symbol": "__sceEENetifa_ifwithaddr", "scope": "LIBRARY"}, "384": {"type": "MIPS_26", "symbol": "save_rte", "scope": "LIBRARY", "original": ".text"}, "412": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "432": {"type": "MIPS_26", "symbol": "__sceEENetifa_ifwithaddr", "scope": "LIBRARY"}, "464": {"type": "MIPS_26", "symbol": "__sceEENetip_rtaddr", "scope": "LIBRARY", "original": ".text"}, "476": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "480": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "508": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "528": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "540": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "628": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "636": {"type": "MIPS_26", "symbol": "__sceEENetifa_ifwithaddr", "scope": "LIBRARY"}, "668": {"type": "MIPS_26", "symbol": "__sceEENetip_rtaddr", "scope": "LIBRARY", "original": ".text"}, "880": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "884": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "904": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "908": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "916": {"type": "MIPS_26", "symbol": "__sceEENetifaof_ifpforaddr", "scope": "LIBRARY"}, "936": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "972": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "980": {"type": "MIPS_26", "symbol": "__sceEENetifa_ifwithaddr", "scope": "LIBRARY"}, "1020": {"type": "MIPS_26", "symbol": "__sceEENetiptime", "scope": "LIBRARY"}, "1052": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "1108": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1140": {"type": "MIPS_26", "symbol": "__sceEENetip_forward", "scope": "LIBRARY", "original": ".text"}, "1256": {"type": "MIPS_26", "symbol": "__sceEENeticmp_error", "scope": "LIBRARY"}, "1264": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1272": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__sceEENetip_rtaddr": {"7a6c557671e70a356f62fea8ecb9b50561cf1631": {"25433b6d": {"type": "FUNCTION", "size": 184, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_26", "symbol": "__sceEENetrtfree", "scope": "LIBRARY"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_26", "symbol": "__sceEENetrtalloc", "scope": "LIBRARY"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "save_rte": {"8be686ba9c6a0f429433bd8136bb703f4e64e099": {"f4d85318": {"type": "FUNCTION", "size": 104, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__sceEENetip_srcroute": {"f3b9cb678de2e4035af00fd10a30c8d33cb8fde7": {"de58650a": {"type": "FUNCTION", "size": 272, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_26", "symbol": "sceEENetMGet", "scope": "LIBRARY"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "220": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "__sceEENetip_stripoptions": {"2d06cc40c365feae029fab734bfa1ab6c614975e": {"1d6422e4": {"type": "FUNCTION", "size": 180, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}}}}}, "__sceEENetip_forward": {"1164a0ee6b46ee1796558ed2af625485e6503c6b": {"858ddba5": {"type": "FUNCTION", "size": 1152, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"96": {"type": "MIPS_26", "symbol": "__sceEENetin_canforward", "scope": "LIBRARY"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "176": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "256": {"type": "MIPS_26", "symbol": "__sceEENeticmp_error", "scope": "LIBRARY"}, "264": {"type": "MIPS_26", "symbol": "__sceEENetrtfree", "scope": "LIBRARY"}, "276": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "280": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "300": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "356": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "360": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "396": {"type": "MIPS_26", "symbol": "__sceEENetrtalloc", "scope": "LIBRARY"}, "400": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "404": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "476": {"type": "MIPS_26", "symbol": "__sceEENeticmp_error", "scope": "LIBRARY"}, "528": {"type": "MIPS_26", "symbol": "sceEENetMCopym", "scope": "LIBRARY"}, "556":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( {"type": "MIPS_26", "symbol": "sceEENetMPullup", "scope": "LIBRARY"}, "580": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "596": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "612": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "624": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "628": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "644": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "684": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "740": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "748": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "772": {"type": "MIPS_26", "symbol": "__sceEENetip_output", "scope": "LIBRARY"}, "776": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "788": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "792": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "812": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "896": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "988": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1012": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1096": {"type": "MIPS_26", "symbol": "__sceEENeticmp_error", "scope": "LIBRARY"}}}}}, "__sceEENetip_savecontrol": {"0247b3fa4f3e145bab7a170ab60b2ebbb97d7326": {"febcdc4d": {"type": "FUNCTION", "size": 244, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "__sceEENetmicrotime", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "__sceEENetsbcreatecontrol", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "__sceEENetsbcreatecontrol", "scope": "LIBRARY"}, "204": {"type": "MIPS_26", "symbol": "__sceEENetsbcreatecontrol", "scope": "LIBRARY"}}}}}, "__sceEENetip_sysctl": {"59f212d1fb1d05118a23866d03a1f82994ff4548": {"03e0a0e7": {"type": "FUNCTION", "size": 972, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_26", "symbol": "__sceEENetsysctl_int", "scope": "LIBRARY"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_26", "symbol": "__sceEENetsysctl_int", "scope": "LIBRARY"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_26", "symbol": "__sceEENetsysctl_int", "scope": "LIBRARY"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "204": {"type": "MIPS_26", "symbol": "__sceEENetsysctl_int", "scope": "LIBRARY"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "220": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "236": {"type": "MIPS_26", "symbol": "__sceEENetsysctl_int", "scope": "LIBRARY"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "252": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "268": {"type": "MIPS_26", "symbol": "__sceEENetsysctl_int", "scope": "LIBRARY"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "284": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetsubnetsarelocal"}, "300": {"type": "MIPS_26", "symbol": "__sceEENetsysctl_int", "scope": "LIBRARY"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetsubnetsarelocal"}, "316": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "324": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "332": {"type": "MIPS_26", "symbol": "__sceEENetsysctl_int", "scope": "LIBRARY"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "352": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "356": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "368": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "372": {"type": "MIPS_26", "symbol": "__sceEENetrt_timer_queue_create", "scope": "LIBRARY"}, "376": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "384": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "388": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "392": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "404": {"type": "MIPS_26", "symbol": "__sceEENetrt_timer_queue_destroy", "scope": "LIBRARY"}, "416": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetanonportmin"}, "436": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetanonportmin"}, "440": {"type": "MIPS_26", "symbol": "__sceEENetsysctl_int", "scope": "LIBRARY"}, "444": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetanonportmin"}, "448": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetanonportmax"}, "452": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetanonportmin"}, "456": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetanonportmax"}, "488": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetanonportmin"}, "504": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetanonportmin"}, "516": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetanonportmax"}, "532": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetanonportmax"}, "536": {"type": "MIPS_26", "symbol": "__sceEENetsysctl_int", "scope": "LIBRARY"}, "540": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetanonportmax"}, "544": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetanonportmin"}, "548": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetanonportmax"}, "552": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetanonportmin"}, "584": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetanonportmax"}, "600": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetanonportmax"}, "616": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "628": {"type": "MIPS_26", "symbol": "__sceEENetsysctl_int", "scope": "LIBRARY"}, "632": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "636": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "640": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "652": {"type": "MIPS_26", "symbol": "__sceEENetrt_timer_queue_change", "scope": "LIBRARY"}, "656": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "668": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENethostzeroisbroadcast"}, "684": {"type": "MIPS_26", "symbol": "__sceEENetsysctl_int", "scope": "LIBRARY"}, "688": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENethostzeroisbroadcast"}, "700": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetlowportmin"}, "716": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetlowportmin"}, "720": {"type": "MIPS_26", "symbol": "__sceEENetsysctl_int", "scope": "LIBRARY"}, "724": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetlowportmin"}, "728": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetlowportmax"}, "732": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetlowportmin"}, "736": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetlowportmax"}, "772": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetlowportmin"}, "784": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENe)PS2SDB", 8192}, + std::string_view{R"PS2SDB(tlowportmax"}, "800": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetlowportmax"}, "804": {"type": "MIPS_26", "symbol": "__sceEENetsysctl_int", "scope": "LIBRARY"}, "808": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetlowportmax"}, "812": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetlowportmin"}, "816": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetlowportmax"}, "820": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetlowportmin"}, "856": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetlowportmax"}, "876": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "892": {"type": "MIPS_26", "symbol": "__sceEENetsysctl_int", "scope": "LIBRARY"}, "896": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "908": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "924": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "928": {"type": "MIPS_26", "symbol": "__sceEENetsysctl_rdstruct", "scope": "LIBRARY"}}}}}, "ipq_unlock": {"bfe56290e7adbfd76ebce095f98e5073e8a46bb6": {"0fa64c7a": {"type": "FUNCTION", "size": 40, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "__sceEENetip_output": {"5dad48585cc478083e3a6973316a01478e519acb": {"f6c4ff61": {"type": "FUNCTION", "size": 3052, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"148": {"type": "MIPS_26", "symbol": "ip_insertoptions", "scope": "LIBRARY", "original": ".text"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetip_id"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetip_id"}, "252": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetip_id"}, "264": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetipstat"}, "300": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetipstat"}, "324": {"type": "MIPS_26", "symbol": "__sceEENetrtfree", "scope": "LIBRARY"}, "372": {"type": "MIPS_26", "symbol": "bzero"}, "528": {"type": "MIPS_26", "symbol": "__sceEENetifa_ifwithladdr", "scope": "LIBRARY"}, "584": {"type": "MIPS_26", "symbol": "__sceEENetrtalloc", "scope": "LIBRARY"}, "608": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetipstat"}, "692": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "712": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "740": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "764": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "916": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetipstat"}, "924": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetipstat"}, "952": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "1220": {"type": "MIPS_26", "symbol": "ip_mloopback", "scope": "LIBRARY", "original": ".text"}, "1272": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "1328": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetipstat"}, "1336": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetipstat"}, "1376": {"type": "MIPS_26", "symbol": "__sceEENetin_broadcast", "scope": "LIBRARY"}, "1612": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "1648": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "1680": {"type": "MIPS_26", "symbol": "__sceEENetin_cksum", "scope": "LIBRARY"}, "1776": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetipstat"}, "1784": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetipstat"}, "1852": {"type": "MIPS_26", "symbol": "__sceEENetrtfree", "scope": "LIBRARY"}, "1912": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "1924": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "1936": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "1952": {"type": "MIPS_26", "symbol": "__sceEENetMRetryhdr", "scope": "LIBRARY"}, "1980": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetipstat"}, "1988": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetipstat"}, "2044": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetmax_linkhdr"}, "2052": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetmax_linkhdr"}, "2152": {"type": "MIPS_26", "symbol": "__sceEENetip_optcopy", "scope": "LIBRARY", "original": ".text"}, "2400": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "2432": {"type": "MIPS_26", "symbol": "sceEENetMCopym", "scope": "LIBRARY"}, "2492": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "2524": {"type": "MIPS_26", "symbol": "__sceEENetin_cksum", "scope": "LIBRARY"}, "2544": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetipstat"}, "2548": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetipstat"}, "2632": {"type": "MIPS_26", "symbol": "sceEENetMAdj", "scope": "LIBRARY"}, "2644": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "2716": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "2748": {"type": "MIPS_26", "symbol": "__sceEENetin_cksum", "scope": "LIBRARY"}, "2768": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "2812": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "2876": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "2904": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetipstat"}, "2908": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetipstat"}, "2984": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}}}}}, "__sceEENetip_optlen": {"39db881347ea48905f2207054a283cfe60b7529e": {"00000000": {"type": "FUNCTION", "size": 24, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "ip_insertoptions": {"65c08566dc6e259bacdb2e2cd9f14a5150873121": {"d13b0871": {"type": "FUNCTION", "size": 520, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"148": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "216": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "228": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "240": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "256": {"type": "MIPS_26", "symbol": "__sceEENetMRetryhdr", "scope": "LIBRARY"}, "276": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetmax_linkhdr"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetmax_linkhdr"}, "356": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "404": {"type": "MIPS_26", "symbol": "__sceEENetmemmove", "scope": "LIBRARY"}, "428": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}}}}}, "__sceEENetip_optcopy": {"8a17a1efb82549ea777d30f13674ee92ea07a2ed": {"d6098105": {"type": "FUNCTION", "size": 252, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"132": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}}}}}, "__sceEENetip_ctloutput": {"399843d5490f1f3faea631a501e44c7e2f8777e9": {"8780419a": {"type": "FUNCTION", "size": 900, "library": "libeenet", "scope": "GLO)PS2SDB", 8192}, + std::string_view{R"PS2SDB(BAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"108": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "140": {"type": "MIPS_26", "symbol": "__sceEENetip_pcbopts", "scope": "LIBRARY", "original": ".text"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "360": {"type": "MIPS_26", "symbol": "__sceEENetip_setmoptions", "scope": "LIBRARY", "original": ".text"}, "488": {"type": "MIPS_26", "symbol": "sceEENetMFree", "scope": "LIBRARY"}, "516": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "524": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "548": {"type": "MIPS_26", "symbol": "sceEENetMGet", "scope": "LIBRARY"}, "596": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "616": {"type": "MIPS_26", "symbol": "sceEENetMGet", "scope": "LIBRARY"}, "656": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "664": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "776": {"type": "MIPS_26", "symbol": "__sceEENetip_getmoptions", "scope": "LIBRARY", "original": ".text"}, "796": {"type": "MIPS_26", "symbol": "sceEENetMGet", "scope": "LIBRARY"}}}}}, "__sceEENetip_pcbopts": {"92f4704ca20f3c667a51e08e75e5fb1abc1f5a24": {"ca00f96b": {"type": "FUNCTION", "size": 444, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "sceEENetMFree", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "sceEENetMFree", "scope": "LIBRARY"}, "152": {"type": "MIPS_26", "symbol": "__sceEENetmemmove", "scope": "LIBRARY"}, "164": {"type": "MIPS_26", "symbol": "bzero"}, "308": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "324": {"type": "MIPS_26", "symbol": "__sceEENetmemmove", "scope": "LIBRARY"}, "384": {"type": "MIPS_26", "symbol": "sceEENetMFree", "scope": "LIBRARY"}}}}}, "__sceEENetip_setmoptions": {"c00e7d1d9cc623cbd2ea91f4ab1223da4e535505": {"6fe623cc": {"type": "FUNCTION", "size": 1376, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "188": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "216": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetin_ifaddrhashtbl"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetin_ifaddrhashtbl"}, "444": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "464": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "488": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "512": {"type": "MIPS_26", "symbol": "bzero"}, "556": {"type": "MIPS_26", "symbol": "__sceEENetrtalloc", "scope": "LIBRARY"}, "576": {"type": "MIPS_26", "symbol": "__sceEENetrtfree", "scope": "LIBRARY"}, "592": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetin_ifaddrhashtbl"}, "608": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetin_ifaddrhashtbl"}, "852": {"type": "MIPS_26", "symbol": "__sceEENetin_addmulti", "scope": "LIBRARY"}, "924": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "944": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "976": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "1000": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetin_ifaddrhashtbl"}, "1016": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetin_ifaddrhashtbl"}, "1208": {"type": "MIPS_26", "symbol": "__sceEENetin_delmulti", "scope": "LIBRARY"}, "1320": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}}}}}, "__sceEENetip_getmoptions": {"cdf8d8f9a5b81751feb5edb4a9233e3d8d9e78b5": {"18495559": {"type": "FUNCTION", "size": 332, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "sceEENetMGet", "scope": "LIBRARY"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetzeroin_addr"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetzeroin_addr"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetzeroin_addr"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetzeroin_addr"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetzeroin_addr"}}}}}, "__sceEENetip_freemoptions": {"a320b508f6debad4778d16008fb4d4738a394515": {"5c239a7c": {"type": "FUNCTION", "size": 132, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "__sceEENetin_delmulti", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}}}}}, "ip_mloopback": {"db6ece0683bb989fd92b88ac5ab90e570407e134": {"50b888d9": {"type": "FUNCTION", "size": 304, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "sceEENetMCopym", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "sceEENetMPullup", "scope": "LIBRARY"}, "140": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "176": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "216": {"type": "MIPS_26", "symbol": "__sceEENetin_cksum", "scope": "LIBRARY"}, "272": {"type": "MIPS_26", "symbol": "__sceEENetlooutput", "scope": "LIBRARY"}}}}}, "__sceEENetrip_init": {"811620d80754366637d25d0c54a771a8f6c1b6a3": {"f4006c06": {"type": "FUNCTION", "size": 40, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_26", "symbol": "__sceEENetin_pcbinit", "scope": "LIBRARY"}}}}}, "__sceEENetrip_input": {"ee13e881cd995a7489bcd59f3ea5e4e032bc3db9": {"4e7d20e5": {"type": "FUNCTION", "size": 832, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "bzero"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "224": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "312": {"type": "MIPS_26", "symbol": "sceEENetMCopym", "scope": "LIBRARY"}, "380": {"type": "MIPS_26", "symbol": "__sceEENetip_savecontrol", "scope": "LIBRARY"}, "404": {"type": "MIPS_26", "symbol": "__sceEENetsbappendaddr", "scope": "LIBRARY"}, "420": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "440": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "472": {"type": "MIPS_26", "symbol": "__sceEENetsowakeup", "scope": "LIBRARY"}, "496": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "560": {"type": "MIPS_26", "symbol": "__sceEENetip_savecontrol", "scope": "LIBRARY"}, "584": {"ty)PS2SDB", 8192}, + std::string_view{R"PS2SDB(pe": "MIPS_26", "symbol": "__sceEENetsbappendaddr", "scope": "LIBRARY"}, "600": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "620": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "652": {"type": "MIPS_26", "symbol": "__sceEENetsowakeup", "scope": "LIBRARY"}, "672": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetip_protox"}, "676": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetip_protox"}, "688": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetinetsw"}, "696": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetinetsw"}, "700": {"type": "MIPS_HI16", "symbol": "__sceEENetrip_input", "original": ".text"}, "708": {"type": "MIPS_LO16", "symbol": "__sceEENetrip_input", "original": ".text"}, "740": {"type": "MIPS_26", "symbol": "__sceEENeticmp_error", "scope": "LIBRARY"}, "748": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetipstat"}, "752": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetipstat"}, "784": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}}}}}, "__sceEENetrip_output": {"4fdc2a744193b16e6044420395aaedb990b4bb26": {"e3325978": {"type": "FUNCTION", "size": 572, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"216": {"type": "MIPS_26", "symbol": "sceEENetMPrepend", "scope": "LIBRARY"}, "372": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "416": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "452": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetipstat"}, "456": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetip_id"}, "460": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetip_id"}, "472": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "476": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetip_id"}, "492": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetipstat"}, "500": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetipstat"}, "536": {"type": "MIPS_26", "symbol": "__sceEENetip_output", "scope": "LIBRARY"}}}}}, "__sceEENetrip_ctloutput": {"3c2c8108f0918d603061b8c60d2da15655b1dab8": {"11c39999": {"type": "FUNCTION", "size": 324, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"164": {"type": "MIPS_26", "symbol": "sceEENetMFree", "scope": "LIBRARY"}, "184": {"type": "MIPS_26", "symbol": "__sceEENetip_ctloutput", "scope": "LIBRARY"}, "216": {"type": "MIPS_26", "symbol": "sceEENetMGet", "scope": "LIBRARY"}, "284": {"type": "MIPS_26", "symbol": "__sceEENetip_ctloutput", "scope": "LIBRARY"}}}}}, "__sceEENetrip_bind": {"38dbe6a56f7794356cb23a78cca3b2d4a2edc44f": {"63011787": {"type": "FUNCTION", "size": 168, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetifnetlst"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetifnetlst"}, "92": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "__sceEENetifa_ifwithaddr", "scope": "LIBRARY"}}}}}, "__sceEENetrip_connect": {"c2413218660ced58049eea2765b89f985b5382b6": {"719fbbac": {"type": "FUNCTION", "size": 96, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetifnetlst"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetifnetlst"}}}}}, "__sceEENetrip_disconnect": {"26fcf9549378b3d6e665d56bb39c30088aa80036": {"d6ed632d": {"type": "FUNCTION", "size": 28, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetzeroin_addr"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetzeroin_addr"}}}}}, "__sceEENetrip_usrreq": {"e1b400319dac9034d715e7e0abd722509254af73": {"da24a5bd": {"type": "FUNCTION", "size": 736, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"88": {"type": "MIPS_26", "symbol": "__sceEENetin_control", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "__sceEENetin_purgeif", "scope": "LIBRARY"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_26", "symbol": "__sceEENetin_pcbpurgeif", "scope": "LIBRARY"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "248": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "252": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "256": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "268": {"type": "MIPS_26", "symbol": "__sceEENetsoreserve", "scope": "LIBRARY"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "284": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "292": {"type": "MIPS_26", "symbol": "__sceEENetin_pcballoc", "scope": "LIBRARY"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "324": {"type": "MIPS_26", "symbol": "__sceEENetsoisdisconnected", "scope": "LIBRARY"}, "332": {"type": "MIPS_26", "symbol": "__sceEENetin_pcbdetach", "scope": "LIBRARY"}, "352": {"type": "MIPS_26", "symbol": "__sceEENetrip_bind", "scope": "LIBRARY", "original": ".text"}, "372": {"type": "MIPS_26", "symbol": "__sceEENetrip_connect", "scope": "LIBRARY", "original": ".text"}, "392": {"type": "MIPS_26", "symbol": "__sceEENetsoisconnected", "scope": "LIBRARY"}, "408": {"type": "MIPS_26", "symbol": "__sceEENetsoisdisconnected", "scope": "LIBRARY"}, "424": {"type": "MIPS_26", "symbol": "__sceEENetsocantsendmore", "scope": "LIBRARY"}, "492": {"type": "MIPS_26", "symbol": "__sceEENetrip_connect", "scope": "LIBRARY", "original": ".text"}, "540": {"type": "MIPS_26", "symbol": "__sceEENetrip_output", "scope": "LIBRARY", "original": ".text"}, "556": {"type": "MIPS_26", "symbol": "__sceEENetrip_disconnect", "scope": "LIBRARY", "original": ".text"}, "572": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "604": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "612": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "632": {"type": "MIPS_26", "symbol": "__sceEENetin_setsockaddr", "scope": "LIBRARY"}, "652": {"type": "MIPS_26", "symbol": "__sceEENetin_setpeeraddr", "scope": "LIBRARY"}, "668": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "672": {"type": "MIPS_26", "symbol": "__sceEENetpanic", "scope": "LIBRARY"}, "676": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "680": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "__sceEENettcp_reass": {"fe06af3375b8dc302a954f8538e0998988434e27": {"063a3888": {"type": "FUNCTION", "size": 1308, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"152": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcpstat"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcpstat"}, "188": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "204": {"type": "M)PS2SDB", 8192}, + std::string_view{R"PS2SDB(IPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "260": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "300": {"type": "MIPS_26", "symbol": "sceEENetMAdj", "scope": "LIBRARY"}, "332": {"type": "MIPS_26", "symbol": "sceEENetMCat", "scope": "LIBRARY"}, "392": {"type": "MIPS_26", "symbol": "sceEENetMAdj", "scope": "LIBRARY"}, "460": {"type": "MIPS_26", "symbol": "sceEENetMCat", "scope": "LIBRARY"}, "536": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "632": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "712": {"type": "MIPS_26", "symbol": "sceEENetMCat", "scope": "LIBRARY"}, "764": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcpstat"}, "768": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "784": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcpstat"}, "788": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcpstat"}, "792": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcpstat"}, "808": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "832": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcpstat"}, "1192": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "1212": {"type": "MIPS_26", "symbol": "__sceEENetsbappend", "scope": "LIBRARY"}, "1220": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "1248": {"type": "MIPS_26", "symbol": "__sceEENetsowakeup", "scope": "LIBRARY"}}}}}, "__sceEENettcp_input": {"2d0cc87d5f8176996975f76ec1f41b761761c52f": {"22a37514": {"type": "FUNCTION", "size": 8940, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcpstat"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcpstat"}, "124": {"type": "MIPS_26", "symbol": "bzero"}, "200": {"type": "MIPS_26", "symbol": "__sceEENetm_pulldown", "scope": "LIBRARY"}, "240": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "244": {"type": "MIPS_26", "symbol": "__sceEENetpanic", "scope": "LIBRARY"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "284": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcpstat"}, "308": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "328": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "404": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcpstat"}, "412": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcpstat"}, "416": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "432": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcpstat"}, "436": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcpstat"}, "512": {"type": "MIPS_26", "symbol": "__sceEENetm_pulldown", "scope": "LIBRARY"}, "556": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "560": {"type": "MIPS_26", "symbol": "__sceEENetpanic", "scope": "LIBRARY"}, "564": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "600": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcpstat"}, "604": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcpstat"}, "608": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcpstat"}, "684": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "732": {"type": "MIPS_26", "symbol": "sceEENetNtohl", "scope": "LIBRARY"}, "752": {"type": "MIPS_26", "symbol": "sceEENetNtohl", "scope": "LIBRARY"}, "780": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcbtable"}, "788": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcbtable"}, "860": {"type": "MIPS_26", "symbol": "__sceEENetin_pcblookup_connect", "scope": "LIBRARY"}, "876": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcpstat"}, "880": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcpstat"}, "928": {"type": "MIPS_26", "symbol": "__sceEENetin_pcblookup_bind", "scope": "LIBRARY"}, "948": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "952": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "988": {"type": "MIPS_26", "symbol": "__sceEENetintoa", "scope": "LIBRARY"}, "1000": {"type": "MIPS_26", "symbol": "strcpy"}, "1016": {"type": "MIPS_26", "symbol": "__sceEENetintoa", "scope": "LIBRARY"}, "1028": {"type": "MIPS_26", "symbol": "strcpy"}, "1040": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1048": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1060": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "1088": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "1116": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1132": {"type": "MIPS_26", "symbol": "sceEENetNtohl", "scope": "LIBRARY"}, "1152": {"type": "MIPS_26", "symbol": "sceEENetNtohl", "scope": "LIBRARY"}, "1184": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "1220": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "1312": {"type": "MIPS_26", "symbol": "__sceEENetin4_cksum", "scope": "LIBRARY"}, "1328": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcpstat"}, "1332": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcpstat"}, "1356": {"type": "MIPS_26", "symbol": "sceEENetNtohl", "scope": "LIBRARY"}, "1376": {"type": "MIPS_26", "symbol": "sceEENetNtohl", "scope": "LIBRARY"}, "1408": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "1444": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "1556": {"type": "MIPS_26", "symbol": "bzero"}, "1576": {"type": "MIPS_26", "symbol": "bzero"}, "1756": {"type": "MIPS_26", "symbol": "sceEENetMCopym", "scope": "LIBRARY"}, "1820": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "1832": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "1844": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "1864": {"type": "MIPS_26", "symbol": "__sceEENetMRetryhdr", "scope": "LIBRARY"}, "1908": {"type": "MIPS_26", "symbol": "sceEENetMCopydata", "scope": "LIBRARY"}, "2024": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "2056": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "2140": {"type": "MIPS_26", "symbol": "__sceEENetsyn_cache_reset", "scope": "LIBRARY", "original": ".text"}, "2200": {"type": "MIPS_26", "symbol": "__sceEENetsyn_cache_get", "scope": "LIBRARY", "original": ".text"}, "2216": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcpstat"}, "2380": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcpstat"}, "2384": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcpstat"}, "2456": {"type": "MIPS_26", "symbol": "__sceEENetsyn_cache_add", "scope": "LIBRARY", "original": ".text"}, "2492": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetpfslowtimo_now"}, "2496": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcp_keepidle"}, "2500": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetpfslowtimo_now"}, "2504": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcp_keepidle"}, "2540": {"type": "MIPS_26", "symbol": "__sceEENettcp_dooptions", "scope": "LIBRARY", "original": ".text"}, "2708": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcp_now"}, "2712": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcp_now"}, "2780": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "2788": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "2800": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcpstat"}, "2808": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcpstat"}, "2836": {"type": "MIPS_HI16", "symbol": "", "ori)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ginal": "__sceEENettcp_now"}, "2844": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcp_now"}, "2892": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcpstat"}, "2900": {"type": "MIPS_26", "symbol": "__sceEENettcp_xmit_timer", "scope": "LIBRARY", "original": ".text"}, "2916": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcpstat"}, "2924": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcpstat"}, "2964": {"type": "MIPS_26", "symbol": "__sceEENetsbdrop", "scope": "LIBRARY"}, "2988": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "3028": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetpfslowtimo_now"}, "3036": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetpfslowtimo_now"}, "3068": {"type": "MIPS_26", "symbol": "__sceEENetsowakeup", "scope": "LIBRARY"}, "3088": {"type": "MIPS_26", "symbol": "__sceEENettcp_output", "scope": "LIBRARY"}, "3108": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "3208": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcpstat"}, "3216": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcpstat"}, "3284": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "3304": {"type": "MIPS_26", "symbol": "sceEENetMAdj", "scope": "LIBRARY"}, "3316": {"type": "MIPS_26", "symbol": "__sceEENetsbappend", "scope": "LIBRARY"}, "3340": {"type": "MIPS_26", "symbol": "__sceEENetsowakeup", "scope": "LIBRARY"}, "3364": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcp_ack_on_push"}, "3368": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcp_ack_on_push"}, "3428": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcp_delacks"}, "3432": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcp_delacks"}, "3436": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcp_delacks"}, "3448": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcp_delacks"}, "3464": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcp_delacks"}, "3488": {"type": "MIPS_26", "symbol": "__sceEENettcp_output", "scope": "LIBRARY"}, "3508": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "3712": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "3732": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "3760": {"type": "MIPS_26", "symbol": "__sceEENetin_broadcast", "scope": "LIBRARY"}, "3860": {"type": "MIPS_26", "symbol": "__sceEENettcp_drop", "scope": "LIBRARY"}, "3972": {"type": "MIPS_26", "symbol": "__sceEENettcp_mss_from_peer", "scope": "LIBRARY"}, "3992": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcp_init_win"}, "4004": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcp_init_win"}, "4068": {"type": "MIPS_26", "symbol": "__sceEENettcp_rmx_rtt", "scope": "LIBRARY"}, "4080": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcpstat"}, "4088": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcpstat"}, "4100": {"type": "MIPS_26", "symbol": "__sceEENetsoisconnected", "scope": "LIBRARY"}, "4108": {"type": "MIPS_26", "symbol": "__sceEENettcp_established", "scope": "LIBRARY"}, "4152": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "4180": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "4196": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "4216": {"type": "MIPS_26", "symbol": "__sceEENettcp_reass", "scope": "LIBRARY", "original": ".text"}, "4224": {"type": "MIPS_26", "symbol": "tcp_reass_unlock", "original": ".text"}, "4244": {"type": "MIPS_26", "symbol": "__sceEENettcp_xmit_timer", "scope": "LIBRARY", "original": ".text"}, "4316": {"type": "MIPS_26", "symbol": "sceEENetMAdj", "scope": "LIBRARY"}, "4324": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcpstat"}, "4332": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcpstat"}, "4500": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcp_now"}, "4508": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcp_now"}, "4536": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcpstat"}, "4544": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcpstat"}, "4724": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcpstat"}, "4736": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcpstat"}, "4748": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcpstat"}, "4760": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcpstat"}, "4800": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcpstat"}, "4976": {"type": "MIPS_26", "symbol": "__sceEENettcp_close", "scope": "LIBRARY"}, "4984": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcpstat"}, "4992": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcpstat"}, "5044": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcpstat"}, "5052": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcpstat"}, "5140": {"type": "MIPS_26", "symbol": "__sceEENettcp_new_iss", "scope": "LIBRARY"}, "5148": {"type": "MIPS_26", "symbol": "__sceEENettcp_close", "scope": "LIBRARY"}, "5192": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcpstat"}, "5200": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcpstat"}, "5244": {"type": "MIPS_26", "symbol": "sceEENetMAdj", "scope": "LIBRARY"}, "5348": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcp_now"}, "5372": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcp_now"}, "5376": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcp_now"}, "5428": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "5436": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "5476": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcpstat"}, "5480": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcpstat"}, "5516": {"type": "MIPS_26", "symbol": "__sceEENettcp_drop", "scope": "LIBRARY"}, "5648": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcpstat"}, "5656": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcpstat"}, "5668": {"type": "MIPS_26", "symbol": "__sceEENetsoisconnected", "scope": "LIBRARY"}, "5676": {"type": "MIPS_26", "symbol": "__sceEENettcp_established", "scope": "LIBRARY"}, "5720": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "5748": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "5764": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "5784": {"type": "MIPS_26", "symbol": "__sceEENettcp_reass", "scope": "LIBRARY", "original": ".text"}, "5792": {"type": "MIPS_26", "symbol": "tcp_reass_unlock", "original": ".text"}, "5836": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcp_do_newreno"}, "5868": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcpstat"}, "5872": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcpstat"}, "5924": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "5928": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "5960": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcp_do_newreno"}, "5996": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcp_do_newreno"}, "6124": {"type": "MIPS_26", "symbol": "__sceEENettcp_output", "scope": "LIBRARY"}, "6200": {"type": "MIPS_26", "symbol": "__sceEENettcp_output", "scope": "LIBRARY"}, "6216": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcp_do_newreno"}, "6224": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "6232": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "6292": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "6312": {"type": "MIPS_2)PS2SDB", 8192}, + std::string_view{R"PS2SDB(6", "symbol": "__sceEENettcp_newreno", "scope": "LIBRARY", "original": ".text"}, "6416": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcpstat"}, "6420": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcpstat"}, "6444": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcpstat"}, "6448": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcpstat"}, "6504": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcp_now"}, "6512": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcp_now"}, "6564": {"type": "MIPS_26", "symbol": "__sceEENettcp_xmit_timer", "scope": "LIBRARY", "original": ".text"}, "6616": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetpfslowtimo_now"}, "6624": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetpfslowtimo_now"}, "6696": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcp_do_newreno"}, "6700": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcp_do_newreno"}, "6808": {"type": "MIPS_26", "symbol": "__sceEENetsbdrop", "scope": "LIBRARY"}, "6832": {"type": "MIPS_26", "symbol": "__sceEENetsbdrop", "scope": "LIBRARY"}, "6868": {"type": "MIPS_26", "symbol": "__sceEENetsowakeup", "scope": "LIBRARY"}, "7000": {"type": "MIPS_26", "symbol": "__sceEENetsoisdisconnected", "scope": "LIBRARY"}, "7008": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcp_maxidle"}, "7012": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcp_maxidle"}, "7020": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetpfslowtimo_now"}, "7024": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetpfslowtimo_now"}, "7060": {"type": "MIPS_26", "symbol": "__sceEENettcp_canceltimers", "scope": "LIBRARY"}, "7068": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetpfslowtimo_now"}, "7076": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetpfslowtimo_now"}, "7084": {"type": "MIPS_26", "symbol": "__sceEENetsoisdisconnected", "scope": "LIBRARY"}, "7112": {"type": "MIPS_26", "symbol": "__sceEENettcp_close", "scope": "LIBRARY"}, "7128": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetpfslowtimo_now"}, "7132": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetpfslowtimo_now"}, "7300": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcpstat"}, "7304": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcpstat"}, "7576": {"type": "MIPS_26", "symbol": "__sceEENetsohasoutofband", "scope": "LIBRARY"}, "7660": {"type": "MIPS_26", "symbol": "__sceEENettcp_pulloutofband", "scope": "LIBRARY", "original": ".text"}, "7752": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "7780": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "7796": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "7864": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcp_ack_on_push"}, "7868": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcp_ack_on_push"}, "7924": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcp_delacks"}, "7928": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcp_delacks"}, "7932": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcp_delacks"}, "7944": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcp_delacks"}, "7960": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcp_delacks"}, "7976": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcpstat"}, "7980": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcpstat"}, "8040": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "8060": {"type": "MIPS_26", "symbol": "sceEENetMAdj", "scope": "LIBRARY"}, "8072": {"type": "MIPS_26", "symbol": "__sceEENetsbappend", "scope": "LIBRARY"}, "8100": {"type": "MIPS_26", "symbol": "__sceEENetsowakeup", "scope": "LIBRARY"}, "8116": {"type": "MIPS_26", "symbol": "sceEENetMAdj", "scope": "LIBRARY"}, "8136": {"type": "MIPS_26", "symbol": "__sceEENettcp_reass", "scope": "LIBRARY", "original": ".text"}, "8160": {"type": "MIPS_26", "symbol": "tcp_reass_unlock", "original": ".text"}, "8176": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "8248": {"type": "MIPS_26", "symbol": "__sceEENetsocantrcvmore", "scope": "LIBRARY"}, "8388": {"type": "MIPS_26", "symbol": "__sceEENettcp_canceltimers", "scope": "LIBRARY"}, "8396": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetpfslowtimo_now"}, "8404": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetpfslowtimo_now"}, "8412": {"type": "MIPS_26", "symbol": "__sceEENetsoisdisconnected", "scope": "LIBRARY"}, "8428": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetpfslowtimo_now"}, "8432": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetpfslowtimo_now"}, "8472": {"type": "MIPS_26", "symbol": "__sceEENettcp_output", "scope": "LIBRARY"}, "8492": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "8512": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcpstat"}, "8520": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcpstat"}, "8548": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "8568": {"type": "MIPS_26", "symbol": "__sceEENettcp_output", "scope": "LIBRARY"}, "8588": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "8624": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "8644": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "8672": {"type": "MIPS_26", "symbol": "__sceEENetin_broadcast", "scope": "LIBRARY"}, "8748": {"type": "MIPS_26", "symbol": "__sceEENettcp_respond", "scope": "LIBRARY"}, "8820": {"type": "MIPS_26", "symbol": "__sceEENettcp_respond", "scope": "LIBRARY"}, "8840": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "8876": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "8884": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}}}}}, "__sceEENettcp_dooptions": {"1dd65451a39a1a5d0ecc859f4008c7dae6cc3878": {"77fc5e85": {"type": "FUNCTION", "size": 700, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"80": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "144": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "220": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "236": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "284": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "292": {"type": "MIPS_26", "symbol": "sceEENetNtohl", "scope": "LIBRARY"}, "312": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "320": {"type": "MIPS_26", "symbol": "sceEENetNtohl", "scope": "LIBRARY"}, "352": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcp_now"}, "356": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcp_now"}, "524": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "532": {"type": "MIPS_26", "symbol": "sceEENetNtohl", "scope": "LIBRARY"}, "552": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "564": {"type": "MIPS_26", "symbol": "sceEENetNtohl", "scope": "LIBRARY"}}}}}, "__sceEENettcp_pulloutofband": {"0ac2647fb5936f29774f46bba3a97dbda5aeb680": {"a4f2893c": {"type": "FUNCTION", "size": 192, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "84": {"type": "MI)PS2SDB", 8192}, + std::string_view{R"PS2SDB(PS_HI16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "100": {"type": "MIPS_26", "symbol": "__sceEENetpanic", "scope": "LIBRARY"}, "156": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}}}}}, "__sceEENettcp_xmit_timer": {"5cc5f077e3710353126016e88146126d37df80b6": {"d3e72eac": {"type": "FUNCTION", "size": 292, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcpstat"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcpstat"}}}}}, "__sceEENettcp_newreno": {"9da05a8ae70634a7b4eed012bea490d6749c150d": {"fd77507f": {"type": "FUNCTION", "size": 224, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"112": {"type": "MIPS_26", "symbol": "__sceEENettcp_output", "scope": "LIBRARY"}}}}}, "__sceEENetsyn_cache_init": {"1628ed5b85c405ce2351e938eed1c7d9dfdbbcea": {"83db65d9": {"type": "FUNCTION", "size": 116, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcp_syn_cache_size"}, "4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcp_syn_cache_size"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcp_syn_cache"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcp_syn_cache"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcp_syn_cache_size"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcp_syn_cache"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__sceEENetsyn_cache_insert": {"d98f26ee5e2d2e2a53df5090f6d5bf5bb8f0d442": {"db05eaf5": {"type": "FUNCTION", "size": 1336, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_26", "symbol": "__sceEENetmicrotime", "scope": "LIBRARY"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_26", "symbol": "__sceEENetrandom", "scope": "LIBRARY"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_26", "symbol": "__sceEENetrandom", "scope": "LIBRARY"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcp_syn_cache_size"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcp_syn_cache"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcp_syn_cache_size"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcp_syn_cache"}, "232": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "244": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcp_syn_bucket_limit"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcp_syn_bucket_limit"}, "264": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcp_syn_cache_limit"}, "268": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcpstat"}, "272": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcpstat"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "304": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcp_backoff"}, "312": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetpfslowtimo_now"}, "328": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcp_syn_cache"}, "332": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "336": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcp_syn_cache"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "344": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "508": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "516": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "532": {"type": "MIPS_26", "symbol": "sceEENetMFree", "scope": "LIBRARY"}, "604": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "608": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcp_syn_cache_limit"}, "624": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcpstat"}, "628": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "632": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcpstat"}, "636": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "652": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcp_backoff"}, "660": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetpfslowtimo_now"}, "836": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "844": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "860": {"type": "MIPS_26", "symbol": "sceEENetMFree", "scope": "LIBRARY"}, "896": {"type": "MIPS_26", "symbol": "__sceEENetrtfree", "scope": "LIBRARY"}, "916": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "948": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "952": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcp_backoff"}, "956": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetpfslowtimo_now"}, "988": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcp_backoff"}, "1040": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetpfslowtimo_now"}, "1056": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetpfslowtimo_now"}, "1080": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1240": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcpstat"}, "1244": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcpstat"}, "1252": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1272": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1280": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "__sceEENetsyn_cache_timer": {"ebdf12c3e665065044122f72f227d8780601c34f": {"6112b6a7": {"type": "FUNCTION", "size": 1120, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcpstat"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcpstat"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetpfslowtimo_now"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetpfslowtimo_now"}, "240": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcp_syn_cache"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcp_syn_cache"}, "328": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "336": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "352": {"type": "MIPS_26", "symbol": "sceEENetMFree", "scope": "LIBRARY"}, "392": {"type": "MIPS_26", "symbol": "__sceEENetrtfree", "scope": "LIBRARY"}, "412": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "444": {"type": "MIPS_26", "symbol": "__sceEENetsyn_cache_respond", "scope": "LIBRARY", "original": ".text"}, "508": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcp_backoff"}, "516": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcp_backoff"}, "568": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetpfslowtimo_now"}, "580": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetpfslowtimo_now"}, "680": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetpfslowtimo_now"}, "720": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "724": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "744": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetpfslowtimo_now"}, "748": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetpfslowtimo_now"}, "764": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcpstat"}, "768": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcp_syn_cache"}, "772": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "776": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcpstat"}, "860": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcp_syn_cache"}, "912": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "916": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "948": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "956": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "972": {"type": "MIPS_26", "symbol": "sceEENetMFree", "scope": "LIBRARY"}, "1008": {"type": "MIPS_26", "symbol": "__sceEENetrtfree", "scope": "LIBRARY"}, "1028": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "1052": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetpfslowtimo_now"}, "1064": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcpstat"}, "1112": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "__sceEENetsyn_cache_cleanup": {"23b1ef2868547ec026b26c48c7cfbbde2246779d": {"abd85aaa": {"type": "FUNCTION", "size": 356, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcp_syn_cache"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcp_syn_cache"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "236": {"type": "MIPS_26", "symbol": "sceEENetMFree", "scope": "LIBRARY"}, "272": {"type": "MIPS_26", "symbol": "__sceEENetrtfree", "scope": "LIBRARY"}, "292": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "348": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "__sceEENetsyn_cache_lookup": {"2b45d8145d3e13df3727e37062ec8548d5d03fbb": {"420e029e": {"type": "FUNCTION", "size": 276, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcp_syn_cache_size"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcp_syn_cache_size"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcp_syn_cache"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcp_syn_cache"}, "128": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "bcmp"}, "192": {"type": "MIPS_26", "symbol": "bcmp"}, "208": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "232": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "__sceEENetsyn_cache_get": {"8d4675a527696069a8b5b4b50816ff0e9858f6d8": {"94ba2502": {"type": "FUNCTION", "size": 1488, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "__sceEENetsyn_cache_lookup", "scope": "LIBRARY", "original": ".text"}, "108": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "192": {"type": "MIPS_26", "symbol": "__sceEENetsyn_cache_respond", "scope": "LIBRARY", "original": ".text"}, "200": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "284": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcp_syn_cache"}, "292": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcp_syn_cache"}, "344": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "348": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "380": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "384": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "392": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "396": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "408": {"type": "MIPS_26", "symbol": "__sceEENetsonewconn1", "scope": "LIBRARY"}, "488": {"type": "MIPS_26", "symbol": "__sceEENetip_srcroute", "scope": "LIBRARY"}, "504": {"type": "MIPS_26", "symbol": "__sceEENetin_pcbstate", "scope": "LIBRARY"}, "592": {"type": "MIPS_26", "symbol": "sceEENetMGet", "scope": "LIBRARY"}, "624": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "640": {"type": "MIPS_26", "symbol": "__sceEENetin_pcbconnect", "scope": "LIBRARY"}, "656": {"type": "MIPS_26", "symbol": "sceEENetMFree", "scope": "LIBRARY"}, "672": {"type": "MIPS_26", "symbol": "sceEENetMFree", "scope": "LIBRARY"}, "812": {"type": "MIPS_26", "symbol": "__sceEENettcp_template", "scope": "LIBRARY"}, "832": {"type": "MIPS_26", "symbol": "__sceEENettcp_drop", "scope": "LIBRARY"}, "844": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "864": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetpfslowtimo_now"}, "868": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetpfslowtimo_now"}, "880": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcpstat"}, "888": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcpstat"}, "964": {"type": "MIPS_26", "symbol": "__sceEENettcp_mss_from_peer", "scope": "LIBRARY"}, "980": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcp_init_win"}, "992": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcp_init_win"}, "1056": {"type": "MIPS_26", "symbol": "__sceEENettcp_rmx_rtt", "scope": "LIBRARY"}, "1068": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetpfslowtimo_now"}, "1172": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcpstat"}, "1200": {"type": "MIPS_26", "symbol": "sceEENetMFree", "scope": "LIBRA)PS2SDB", 8192}, + std::string_view{R"PS2SDB(RY"}, "1240": {"type": "MIPS_26", "symbol": "__sceEENetrtfree", "scope": "LIBRARY"}, "1260": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "1308": {"type": "MIPS_26", "symbol": "__sceEENettcp_respond", "scope": "LIBRARY"}, "1324": {"type": "MIPS_26", "symbol": "__sceEENetsoabort", "scope": "LIBRARY"}, "1344": {"type": "MIPS_26", "symbol": "sceEENetMFree", "scope": "LIBRARY"}, "1380": {"type": "MIPS_26", "symbol": "__sceEENetrtfree", "scope": "LIBRARY"}, "1404": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "1412": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcpstat"}, "1416": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcpstat"}}}}}, "__sceEENetsyn_cache_reset": {"711a04dc7e55ee83b542f76b6b07c701db16263e": {"0c2e4564": {"type": "FUNCTION", "size": 424, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "__sceEENetsyn_cache_lookup", "scope": "LIBRARY", "original": ".text"}, "108": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcp_syn_cache"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcp_syn_cache"}, "240": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "276": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "292": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "300": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcpstat"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcpstat"}, "332": {"type": "MIPS_26", "symbol": "sceEENetMFree", "scope": "LIBRARY"}, "368": {"type": "MIPS_26", "symbol": "__sceEENetrtfree", "scope": "LIBRARY"}, "388": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}}}}}, "__sceEENetsyn_cache_unreach": {"8bbc429d3800b25ea87f430f85b1a1e4f84b6193": {"2b5045fa": {"type": "FUNCTION", "size": 464, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "__sceEENetsyn_cache_lookup", "scope": "LIBRARY", "original": ".text"}, "76": {"type": "MIPS_26", "symbol": "sceEENetNtohl", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "144": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "220": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcp_syn_cache"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcp_syn_cache"}, "280": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "316": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "328": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "332": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "340": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcpstat"}, "344": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcpstat"}, "372": {"type": "MIPS_26", "symbol": "sceEENetMFree", "scope": "LIBRARY"}, "408": {"type": "MIPS_26", "symbol": "__sceEENetrtfree", "scope": "LIBRARY"}, "428": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}}}}}, "__sceEENetsyn_cache_add": {"f00042c4cc5e61cc0cce698f642c0f06eaa59acf": {"fc7d801d": {"type": "FUNCTION", "size": 1080, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"160": {"type": "MIPS_26", "symbol": "__sceEENetip_srcroute", "scope": "LIBRARY"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcp_do_rfc1323"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcp_do_rfc1323"}, "224": {"type": "MIPS_26", "symbol": "__sceEENettcp_dooptions", "scope": "LIBRARY", "original": ".text"}, "252": {"type": "MIPS_26", "symbol": "__sceEENetsyn_cache_lookup", "scope": "LIBRARY", "original": ".text"}, "272": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcpstat"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcpstat"}, "312": {"type": "MIPS_26", "symbol": "sceEENetMFree", "scope": "LIBRARY"}, "336": {"type": "MIPS_26", "symbol": "__sceEENetsyn_cache_respond", "scope": "LIBRARY", "original": ".text"}, "352": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcpstat"}, "356": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcpstat"}, "388": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "416": {"type": "MIPS_26", "symbol": "sceEENetMFree", "scope": "LIBRARY"}, "432": {"type": "MIPS_26", "symbol": "bzero"}, "448": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "464": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "500": {"type": "MIPS_26", "symbol": "__sceEENettcp_new_iss", "scope": "LIBRARY"}, "544": {"type": "MIPS_26", "symbol": "__sceEENettcp_mss_to_advertise", "scope": "LIBRARY"}, "564": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcp_do_rfc1323"}, "572": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcp_do_rfc1323"}, "732": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcpstat"}, "868": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcpstat"}, "888": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcpstat"}, "904": {"type": "MIPS_26", "symbol": "__sceEENetsyn_cache_respond", "scope": "LIBRARY", "original": ".text"}, "924": {"type": "MIPS_26", "symbol": "__sceEENetsyn_cache_insert", "scope": "LIBRARY", "original": ".text"}, "948": {"type": "MIPS_26", "symbol": "sceEENetMFree", "scope": "LIBRARY"}, "984": {"type": "MIPS_26", "symbol": "__sceEENetrtfree", "scope": "LIBRARY"}, "1004": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "1012": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcpstat"}}}}}, "__sceEENetsyn_cache_respond": {"8ddb362d3af2aa6be3c8a54c7bb3860bf1af2343": {"51d8a54e": {"type": "FUNCTION", "size": 1012, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"124": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "148": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "204": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "216": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "228": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "244": {"type": "MIPS_26", "symbol": "__sceEENetMRetryhdr", "scope": "LIBRARY"}, "272": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "284": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "300": {"type": "MIPS_26", "symbol": "__sceEENetMReclaim", "scope": "LIBRARY"}, "308": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "320": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "392": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "408": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetmax_linkhdr"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetmax_linkhdr"}, "456": {"type": "MIPS_26", "symbol": "memse)PS2SDB", 8192}, + std::string_view{R"PS2SDB(t"}, "564": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "584": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "632": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "732": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "764": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "776": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcp_now"}, "780": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "784": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcp_now"}, "792": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "824": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "856": {"type": "MIPS_26", "symbol": "__sceEENetin_cksum", "scope": "LIBRARY"}, "900": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetip_defttl"}, "904": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetip_defttl"}, "924": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetip_mtudisc"}, "932": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetip_mtudisc"}, "952": {"type": "MIPS_26", "symbol": "__sceEENetip_output", "scope": "LIBRARY"}}}}}, "tcp_reass_unlock": {"3f0d428e856fcb1b87c299bb9bb0a03c90eca5ff": {"db1a5757": {"type": "FUNCTION", "size": 52, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "44": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "__sceEENettcp_output": {"5356444e77e83038fe1d2a7528a668b5ecf1bd38": {"0a7db710": {"type": "FUNCTION", "size": 3900, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"132": {"type": "MIPS_26", "symbol": "__sceEENetin_pcbrtentry", "scope": "LIBRARY"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcp_mssdflt"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcp_mssdflt"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcp_mssdflt"}, "228": {"type": "MIPS_26", "symbol": "__sceEENetin_localaddr", "scope": "LIBRARY"}, "260": {"type": "MIPS_26", "symbol": "__sceEENettcp_optlen", "scope": "LIBRARY"}, "276": {"type": "MIPS_26", "symbol": "__sceEENetip_optlen", "scope": "LIBRARY"}, "348": {"type": "MIPS_26", "symbol": "__udivdi3"}, "360": {"type": "MIPS_26", "symbol": "__muldi3"}, "404": {"type": "MIPS_26", "symbol": "__udivdi3"}, "416": {"type": "MIPS_26", "symbol": "__muldi3"}, "468": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "476": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "496": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "504": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "572": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcp_init_win"}, "576": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcp_init_win"}, "680": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "688": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "876": {"type": "MIPS_26", "symbol": "__sceEENettcp_setpersist", "scope": "LIBRARY", "original": ".text"}, "1276": {"type": "MIPS_26", "symbol": "__sceEENettcp_setpersist", "scope": "LIBRARY", "original": ".text"}, "1336": {"type": "MIPS_26", "symbol": "__sceEENetin_pcbrtentry", "scope": "LIBRARY"}, "1368": {"type": "MIPS_26", "symbol": "__sceEENettcp_mss_to_advertise", "scope": "LIBRARY"}, "1488": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "1576": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "1588": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcp_now"}, "1596": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "1600": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcp_now"}, "1608": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "1656": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcpstat"}, "1660": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcpstat"}, "1696": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcpstat"}, "1700": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcpstat"}, "1704": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcpstat"}, "1772": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcpstat"}, "1800": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "1812": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "1824": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "1840": {"type": "MIPS_26", "symbol": "__sceEENetMRetryhdr", "scope": "LIBRARY"}, "1860": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetmax_linkhdr"}, "1864": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetmax_linkhdr"}, "1904": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "1916": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "1932": {"type": "MIPS_26", "symbol": "__sceEENetMReclaim", "scope": "LIBRARY"}, "1940": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "1952": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "2024": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "2040": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetmax_linkhdr"}, "2164": {"type": "MIPS_26", "symbol": "sceEENetMCopydata", "scope": "LIBRARY"}, "2208": {"type": "MIPS_26", "symbol": "sceEENetMCopym", "scope": "LIBRARY"}, "2224": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "2276": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcpstat"}, "2280": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcpstat"}, "2308": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcpstat"}, "2312": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcpstat"}, "2348": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcpstat"}, "2352": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcpstat"}, "2408": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcpstat"}, "2412": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcpstat"}, "2428": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "2440": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "2452": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "2468": {"type": "MIPS_26", "symbol": "__sceEENetMRetryhdr", "scope": "LIBRARY"}, "2484": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetmax_linkhdr"}, "2488": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetmax_linkhdr"}, "2508": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "2520": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "2536": {"type": "MIPS_26", "symbol": "__sceEENetMReclaim", "scope": "LIBRARY"}, "2544": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "2560": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "2632": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "2648": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetmax_linkhdr"}, "2724": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2728": {"type": "MIPS_26", "symbol": "__sceEENetpanic", "scope": "LIBRARY"}, "2732": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2756": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2760": {"type": "MIPS_26", "symbol": "__sceEENetpanic", "scope": "LIBRARY"}, "2764": {"type": "MIPS_LO16", "symbol": "<)PS2SDB", 8192}, + std::string_view{R"PS2SDB(data>", "original": ".rodata"}, "2780": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "2824": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "2840": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "2868": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "2996": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "3048": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "3136": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "3160": {"type": "MIPS_26", "symbol": "bzero"}, "3180": {"type": "MIPS_26", "symbol": "__sceEENetin_cksum", "scope": "LIBRARY"}, "3296": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcpstat"}, "3300": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcpstat"}, "3340": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetpfslowtimo_now"}, "3348": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetpfslowtimo_now"}, "3564": {"type": "MIPS_26", "symbol": "__sceEENetip_output", "scope": "LIBRARY"}, "3580": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcpstat"}, "3608": {"type": "MIPS_26", "symbol": "__sceEENettcp_quench", "scope": "LIBRARY"}, "3664": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcpstat"}, "3820": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcp_do_newreno"}, "3824": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcp_do_newreno"}}}}}, "__sceEENettcp_setpersist": {"e07dbdbcf602df800de8bcd0a0396896c27cecdc": {"79321d80": {"type": "FUNCTION", "size": 200, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "56": {"type": "MIPS_26", "symbol": "__sceEENetpanic", "scope": "LIBRARY"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcp_backoff"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcp_backoff"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetpfslowtimo_now"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetpfslowtimo_now"}}}}}, "__sceEENettcp_init": {"07a7139323b4104da6a86663fea0c86e4e58abc6": {"186f370e": {"type": "FUNCTION", "size": 372, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcp_cwm_burstsize"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcp_cwm_burstsize"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcprexmtthresh"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcp_log_refused"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcp_cwm"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcprexmtthresh"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcp_log_refused"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcp_cwm"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "204": {"type": "MIPS_26", "symbol": "memset"}, "212": {"type": "MIPS_26", "symbol": "__sceEENettcp_timer_init", "scope": "LIBRARY"}, "220": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "236": {"type": "MIPS_26", "symbol": "__sceEENetin_pcbinit", "scope": "LIBRARY"}, "244": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcp_delacks"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcp_delacks"}, "252": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetmax_protohdr"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetmax_protohdr"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetmax_protohdr"}, "280": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetmax_linkhdr"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetmax_linkhdr"}, "300": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "304": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "308": {"type": "MIPS_26", "symbol": "__sceEENetpanic", "scope": "LIBRARY"}, "312": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "316": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "320": {"type": "MIPS_26", "symbol": "__sceEENeticmp_mtudisc_callback_register", "scope": "LIBRARY"}, "324": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "364": {"type": "MIPS_26", "symbol": "__sceEENetsyn_cache_init", "scope": "LIBRARY"}}}}}, "__sceEENettcp_template": {"7e9aa11dab6270fd8f2e137fc8df053d62491769": {"64cf4ade": {"type": "FUNCTION", "size": 452, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"116": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "136": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "148": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "164": {"type": "MIPS_26", "symbol": "__sceEENetMRetryhdr", "scope": "LIBRARY"}, "208": {"type": "MIPS_26", "symbol": "bzero"}, "260": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}}}}}, "__sceEENettcp_respond": {"7fbd13418cbdb3d73b9e0f74f3ae10f0923fc8aa": {"f47d8f9f": {"type": "FUNCTION", "size": 1576, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"248)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "260": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "272": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "288": {"type": "MIPS_26", "symbol": "__sceEENetMRetryhdr", "scope": "LIBRARY"}, "312": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "324": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "340": {"type": "MIPS_26", "symbol": "__sceEENetMReclaim", "scope": "LIBRARY"}, "348": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "360": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "432": {"type": "MIPS_26", "symbol": "sceEENetMFree", "scope": "LIBRARY"}, "448": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetmax_linkhdr"}, "456": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetmax_linkhdr"}, "460": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "464": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "484": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "540": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "576": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "676": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "728": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "740": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "752": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "768": {"type": "MIPS_26", "symbol": "__sceEENetMRetryhdr", "scope": "LIBRARY"}, "788": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetmax_linkhdr"}, "792": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetmax_linkhdr"}, "816": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "828": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "844": {"type": "MIPS_26", "symbol": "__sceEENetMReclaim", "scope": "LIBRARY"}, "852": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "864": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "936": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "952": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetmax_linkhdr"}, "956": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "976": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetmax_linkhdr"}, "1004": {"type": "MIPS_26", "symbol": "sceEENetMCopyback", "scope": "LIBRARY"}, "1024": {"type": "MIPS_26", "symbol": "sceEENetMCopyback", "scope": "LIBRARY"}, "1032": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "1188": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "1204": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "1288": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "1368": {"type": "MIPS_26", "symbol": "bzero"}, "1376": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "1408": {"type": "MIPS_26", "symbol": "__sceEENetin_cksum", "scope": "LIBRARY"}, "1436": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetip_defttl"}, "1444": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetip_defttl"}, "1512": {"type": "MIPS_26", "symbol": "__sceEENetip_output", "scope": "LIBRARY"}}}}}, "__sceEENettcp_newtcpcb": {"773cb60d37a70343ba6c325ef99a363b8c8260f8": {"04ff50b9": {"type": "FUNCTION", "size": 400, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "bzero"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "244": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetip_mtudisc"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetip_mtudisc"}, "260": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "356": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetip_defttl"}, "360": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetip_defttl"}}}}}, "__sceEENettcp_drop": {"bac911d7c7471a642a11391f86abccadd5d0b5fe": {"10ae5bed": {"type": "FUNCTION", "size": 168, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "__sceEENettcp_output", "scope": "LIBRARY"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_26", "symbol": "__sceEENettcp_close", "scope": "LIBRARY", "original": ".text"}}}}}, "__sceEENettcp_close": {"69fe4c4727a8a79cd30139fb0486b0657facb70f": {"64f5aff0": {"type": "FUNCTION", "size": 660, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"128": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "348": {"type": "MIPS_26", "symbol": "__udivdi3"}, "376": {"type": "MIPS_26", "symbol": "__muldi3"}, "412": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "440": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "456": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "464": {"type": "MIPS_26", "symbol": "__sceEENettcp_freeq", "scope": "LIBRARY", "original": ".text"}, "472": {"type": "MIPS_26", "symbol": "tcp_reass_unlock", "original": ".text"}, "532": {"type": "MIPS_26", "symbol": "__sceEENetsyn_cache_cleanup", "scope": "LIBRARY"}, "552": {"type": "MIPS_26", "symbol": "sceEENetMFree", "scope": "LIBRARY"}, "564": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "576": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "584": {"type": "MIPS_26", "symbol": "__sceEENetsoisdisconnected", "scope": "LIBRARY"}, "592": {"type": "MIPS_26", "symbol": "__sceEENetin_pcbdetach", "scope": "LIBRARY"}, "600": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "608": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__sceEENettcp_freeq": {"c15e727b7718c0092b4182b2b07fc317d48522df": {"20b5145d": {"type": "FUNCTION", "size": 140, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"92": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}}}}}, "__sceEENettcp_drain": {"5a01783fa7f231a68f285df5746f3cd2c442ab7c": {"ed7c6182": {"type": "FUNCTION", "size": 212, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": )PS2SDB", 8192}, + std::string_view{R"PS2SDB(".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "136": {"type": "MIPS_26", "symbol": "__sceEENettcp_freeq", "scope": "LIBRARY", "original": ".text"}, "164": {"type": "MIPS_26", "symbol": "tcp_reass_unlock", "original": ".text"}}}}}, "__sceEENettcp_notify": {"e69cc348282de4529ecd4645d32aebc74c8d8c98": {"dd2668bb": {"type": "FUNCTION", "size": 176, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"104": {"type": "MIPS_26", "symbol": "__sceEENeteenet_wakeup", "scope": "LIBRARY"}, "128": {"type": "MIPS_26", "symbol": "__sceEENetsowakeup", "scope": "LIBRARY"}, "152": {"type": "MIPS_26", "symbol": "__sceEENetsowakeup", "scope": "LIBRARY"}}}}}, "__sceEENettcp_ctlinput": {"d38f2f917e0347650abd0ccd8bc4aea3a9856714": {"b9de327f": {"type": "FUNCTION", "size": 688, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetinetctlerrmap"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetinetctlerrmap"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "132": {"type": "MIPS_HI16", "symbol": "__sceEENetin_rtchange"}, "144": {"type": "MIPS_LO16", "symbol": "__sceEENetin_rtchange"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "272": {"type": "MIPS_26", "symbol": "__sceEENetin_pcblookup_connect", "scope": "LIBRARY"}, "296": {"type": "MIPS_26", "symbol": "__sceEENeticmp_mtudisc", "scope": "LIBRARY"}, "400": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "440": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "452": {"type": "MIPS_26", "symbol": "__sceEENetin_pcbnotify", "scope": "LIBRARY"}, "468": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetsyn_cache_count"}, "472": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetsyn_cache_count"}, "480": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetinetctlerrmap"}, "524": {"type": "MIPS_26", "symbol": "bzero"}, "596": {"type": "MIPS_26", "symbol": "__sceEENetsyn_cache_unreach", "scope": "LIBRARY"}, "620": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "632": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "644": {"type": "MIPS_26", "symbol": "__sceEENetin_pcbnotifyall", "scope": "LIBRARY"}}}}}, "__sceEENettcp_quench": {"3a0be632f06d2b7032d3346050bb89e146f6b014": {"00000000": {"type": "FUNCTION", "size": 28, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "__sceEENettcp_mtudisc_callback": {"376d5f688a90619fa824017936592e18fa0f28ec": {"4e6874ec": {"type": "FUNCTION", "size": 64, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "__sceEENettcp_mtudisc", "original": ".text"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_LO16", "symbol": "__sceEENettcp_mtudisc", "original": ".text"}, "44": {"type": "MIPS_26", "symbol": "__sceEENetin_pcbnotifyall", "scope": "LIBRARY"}}}}}, "__sceEENettcp_mtudisc": {"eb7b894860d34a9f640faeb3eb70ccd99c192a70": {"b2a1011b": {"type": "FUNCTION", "size": 224, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__sceEENetin_pcbrtentry", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "__sceEENetin_rtchange", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "__sceEENetin_pcbrtentry", "scope": "LIBRARY"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_26", "symbol": "__muldi3"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "192": {"type": "MIPS_26", "symbol": "__sceEENettcp_output", "scope": "LIBRARY"}}}}}, "__sceEENettcp_mss_to_advertise": {"e1d2d1ba5afa9917aee23219c5daacbfd5917c1f": {"7313cf24": {"type": "FUNCTION", "size": 128, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetin_maxmtu"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetin_maxmtu"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__sceEENettcp_mss_from_peer": {"8aeb4ca9095befd558317beac167c9009e2c358f": {"41197c2e": {"type": "FUNCTION", "size": 316, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "__sceEENetin_pcbrtentry", "scope": "LIBRARY"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_26", "symbol": "__sceEENettcp_optlen", "scope": "LIBRARY", "original": ".text"}, "116": {"type": "MIPS_26", "symbol": "__sceEENetip_optlen", "scope": "LIBRARY"}, "188": {"type": "MIPS_26", "symbol": "__udivdi3"}, "200": {"type": "MIPS_26", "symbol": "__muldi3"}, "224": {"type": "MIPS_26", "symbol": "__sceEENetsbreserve", "scope": "LIBRARY"}}}}}, "__sceEENettcp_established": {"9b5e9a4797e78612ed65df91914a226ce606ec4a": {"2f70cd2e": {"type": "FUNCTION", "size": 220, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "__sceEENetin_pcbrtentry", "scope": "LIBRARY"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetpfslowtimo_now"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcp_keepidle"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetpfslowtimo_now"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcp_keepidle"}, "136": {"type": "MIPS_26", "symbol": "__udivdi3"}, "148": {"type": "MIPS_26", "symbol": "__muldi3"}, "192": {"type": "MIPS_26", "symbol": "__sceEENetsbreserve", "scope": "LIBRARY"}}}}}, "__sceEENettcp_rmx_rtt": {"19f30f0e741546390593dd61e61ad18afd967dd6": {"31db3622": {"type": "FUNCTION", "size": 316, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__sceEENetin_pcbrtentry", "scope": "LIBRARY"}, "200": {"type": "MIPS_26", "symbol": "__udivdi3"}}}}}, "__sceEENettcp_new_iss": {"c4b4214c353a0ef9f4218e1f9298a0911ae4ff71": {"797bbfdf": {"type": "FUNCTION", "size": 148, "library": "libeenet", "scope": "GLOBAL")PS2SDB", 8192}, + std::string_view{R"PS2SDB(, "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "__sceEENetrandom", "scope": "LIBRARY"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__sceEENettcp_optlen": {"05d6ad0bb20c595d5320a28c7f19768104dff15e": {"00000000": {"type": "FUNCTION", "size": 24, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "__sceEENettcp_fasttimo": {"c6fe0223052bb92124a83bbdf1ff7d4027122c21": {"e51c3054": {"type": "FUNCTION", "size": 104, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_26", "symbol": "__sceEENettcp_output", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "__sceEENettcp_slowtimo": {"2adc39cd0c8a9b9371f041054b603833af6a839c": {"c033d1b3": {"type": "FUNCTION", "size": 488, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcbtable"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcbtable"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcbtable"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcbtable"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetpfslowtimo_now"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcbtable"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetpfslowtimo_now"}, "236": {"type": "MIPS_26", "symbol": "__sceEENettcp_usrreq", "scope": "LIBRARY"}, "260": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcbtable"}, "272": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcbtable"}, "324": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcbtable"}, "332": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcbtable"}, "356": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcp_iss_seq"}, "360": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcp_now"}, "364": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "368": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcp_iss_seq"}, "372": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcp_now"}, "376": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcp_syn_cache_interval"}, "380": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "388": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcp_syn_cache_interval"}, "404": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcp_iss_seq"}, "412": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcp_now"}, "420": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "424": {"type": "MIPS_26", "symbol": "__sceEENetsyn_cache_timer", "scope": "LIBRARY"}, "432": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "480": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "__sceEENettcp_canceltimers": {"e96211ee58734069627a4406871b6a4f5d0545d6": {"00000000": {"type": "FUNCTION", "size": 44, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "__sceEENettcp_timers": {"2408904b8ba9c4d4ec4082480d4f5650e5aab945": {"a67b6324": {"type": "FUNCTION", "size": 1156, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"80": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetpfslowtimo_now"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetpfslowtimo_now"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_26", "symbol": "__sceEENettcp_close", "scope": "LIBRARY"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcpstat"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcpstat"}, "228": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcpstat"}, "232": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcpstat"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "360": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetpfslowtimo_now"}, "372": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetpfslowtimo_now"}, "380": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetpfslowtimo_now"}, "384": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetip_mtudisc"}, "388": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetip_mtudisc"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcpstat"}, "488": {"type": "MIPS_26", "symbol": "__sceEENetin_losing", "scope": "LIBRARY"}, "644": {"type": "MIPS_26", "symbol": "__sceEENettcp_output", "scope": "LIBRARY"}, "708": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "716": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "728": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "732": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "748": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcpstat"}, "752": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcpstat"}, "760": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcpstat"}, "784": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcpstat"}, "792": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcpstat"}, "804": {"type": "MIPS_26", "symbol": "__sceEENettcp_setpersist", "scope": "LIBRARY"}, "820": {"type": "MIPS_26", "symbol": "__sceEENettcp_output", "scope": "LIBRARY"}, "836": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcpstat"}, "840": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcpstat"}, "904": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "908": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "916": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "924": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "940": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcpstat"}, "948": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcp_compat_42"}, "952": )PS2SDB", 8192}, + std::string_view{R"PS2SDB({"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcp_compat_42"}, "1000": {"type": "MIPS_26", "symbol": "__sceEENettcp_respond", "scope": "LIBRARY"}, "1012": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetpfslowtimo_now"}, "1044": {"type": "MIPS_26", "symbol": "__sceEENettcp_respond", "scope": "LIBRARY"}, "1052": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetpfslowtimo_now"}, "1056": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1060": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetpfslowtimo_now"}, "1068": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1072": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetpfslowtimo_now"}, "1076": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1080": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetpfslowtimo_now"}, "1084": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1100": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcpstat"}, "1124": {"type": "MIPS_26", "symbol": "__sceEENettcp_drop", "scope": "LIBRARY"}}}}}, "__sceEENettcp_timer_init": {"ee5468f9a8191037f83e659ea4cf02505b4e2383": {"04193f19": {"type": "FUNCTION", "size": 76, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__sceEENettcp_usrreq": {"ae6b6f929b597a5cd18e25c65ea66644724c720e": {"75afe60a": {"type": "FUNCTION", "size": 1344, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"120": {"type": "MIPS_26", "symbol": "__sceEENetin_control", "scope": "LIBRARY"}, "156": {"type": "MIPS_26", "symbol": "__sceEENetin_purgeif", "scope": "LIBRARY"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcbtable"}, "172": {"type": "MIPS_26", "symbol": "__sceEENetin_pcbpurgeif", "scope": "LIBRARY"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcbtable"}, "188": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "212": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "260": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "296": {"type": "MIPS_26", "symbol": "__sceEENettcp_attach", "scope": "LIBRARY", "original": ".text"}, "368": {"type": "MIPS_26", "symbol": "__sceEENetin_pcbbind", "scope": "LIBRARY"}, "408": {"type": "MIPS_26", "symbol": "__sceEENetin_pcbbind", "scope": "LIBRARY"}, "460": {"type": "MIPS_26", "symbol": "__sceEENetin_pcbbind", "scope": "LIBRARY"}, "480": {"type": "MIPS_26", "symbol": "__sceEENetin_pcbconnect", "scope": "LIBRARY"}, "500": {"type": "MIPS_26", "symbol": "__sceEENettcp_template", "scope": "LIBRARY"}, "524": {"type": "MIPS_26", "symbol": "__sceEENetin_pcbdisconnect", "scope": "LIBRARY"}, "576": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcpstat"}, "580": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetpfslowtimo_now"}, "648": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcpstat"}, "652": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetpfslowtimo_now"}, "656": {"type": "MIPS_26", "symbol": "__sceEENetsoisconnecting", "scope": "LIBRARY"}, "664": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcpstat"}, "672": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetpfslowtimo_now"}, "688": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcpstat"}, "704": {"type": "MIPS_26", "symbol": "__sceEENettcp_new_iss", "scope": "LIBRARY"}, "752": {"type": "MIPS_26", "symbol": "__sceEENettcp_disconnect", "scope": "LIBRARY", "original": ".text"}, "768": {"type": "MIPS_26", "symbol": "__sceEENetsocantsendmore", "scope": "LIBRARY"}, "776": {"type": "MIPS_26", "symbol": "__sceEENettcp_usrclosed", "scope": "LIBRARY", "original": ".text"}, "804": {"type": "MIPS_26", "symbol": "__sceEENettcp_output", "scope": "LIBRARY"}, "844": {"type": "MIPS_26", "symbol": "__sceEENetsbappend", "scope": "LIBRARY"}, "856": {"type": "MIPS_26", "symbol": "__sceEENettcp_output", "scope": "LIBRARY"}, "876": {"type": "MIPS_26", "symbol": "__sceEENettcp_drop", "scope": "LIBRARY"}, "892": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "928": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "936": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "1132": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "1152": {"type": "MIPS_26", "symbol": "__sceEENetsbappend", "scope": "LIBRARY"}, "1184": {"type": "MIPS_26", "symbol": "__sceEENettcp_output", "scope": "LIBRARY"}, "1212": {"type": "MIPS_26", "symbol": "__sceEENetin_setsockaddr", "scope": "LIBRARY"}, "1236": {"type": "MIPS_26", "symbol": "__sceEENetin_setpeeraddr", "scope": "LIBRARY"}, "1256": {"type": "MIPS_26", "symbol": "__sceEENettcp_timers", "scope": "LIBRARY"}, "1272": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1276": {"type": "MIPS_26", "symbol": "__sceEENetpanic", "scope": "LIBRARY"}, "1280": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1284": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "__sceEENettcp_ctloutput": {"a39708177a870ac3605efba106a3bfd5ea10cde9": {"c917f7c9": {"type": "FUNCTION", "size": 524, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"72": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "120": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "152": {"type": "MIPS_26", "symbol": "sceEENetMFree", "scope": "LIBRARY"}, "188": {"type": "MIPS_26", "symbol": "__sceEENetip_ctloutput", "scope": "LIBRARY"}, "364": {"type": "MIPS_26", "symbol": "sceEENetMFree", "scope": "LIBRARY"}, "384": {"type": "MIPS_26", "symbol": "sceEENetMGet", "scope": "LIBRARY"}, "468": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "__sceEENettcp_attach": {"aac051037fc89757f8b70520a99ec49711cb4757": {"aa101e3f": {"type": "FUNCTION", "size": 240, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_26", "symbol": "__sceEENetsoreserve", "scope": "LIBRARY"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcbtable"}, "108": {"type": "MIPS_26", "symbol": "__sceEENetin_pcballoc", "scope": "LIBRARY"}, "112": {"type": "MIPS_L)PS2SDB", 8192}, + std::string_view{R"PS2SDB(O16", "symbol": "", "original": "__sceEENettcbtable"}, "136": {"type": "MIPS_26", "symbol": "__sceEENettcp_newtcpcb", "scope": "LIBRARY"}, "184": {"type": "MIPS_26", "symbol": "__sceEENetin_pcbdetach", "scope": "LIBRARY"}}}}}, "__sceEENettcp_disconnect": {"9e3a26ddf3eb199cb72c66719bad810dd5475260": {"823b64b5": {"type": "FUNCTION", "size": 184, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "__sceEENettcp_close", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "__sceEENettcp_drop", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "__sceEENetsoisdisconnecting", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "__sceEENetsbflush", "scope": "LIBRARY"}, "132": {"type": "MIPS_26", "symbol": "__sceEENettcp_usrclosed", "scope": "LIBRARY", "original": ".text"}, "152": {"type": "MIPS_26", "symbol": "__sceEENettcp_output", "scope": "LIBRARY"}}}}}, "__sceEENettcp_usrclosed": {"b06c60ab6dbf72e6a2f5b27350f2dcd0478d0c3e": {"62ebfdf9": {"type": "FUNCTION", "size": 204, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "60": {"type": "MIPS_26", "symbol": "__sceEENettcp_close", "scope": "LIBRARY"}, "132": {"type": "MIPS_26", "symbol": "__sceEENetsoisdisconnected", "scope": "LIBRARY"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcp_maxidle"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcp_maxidle"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetpfslowtimo_now"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetpfslowtimo_now"}}}}}, "__sceEENettcp_sysctl": {"2b17b51b6b7a27a48d411becc226783bb1d934cf": {"7de54f25": {"type": "FUNCTION", "size": 212, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_26", "symbol": "__sceEENetsysctl_rdint", "scope": "LIBRARY"}, "136": {"type": "MIPS_26", "symbol": "__sceEENetsysctl_int", "scope": "LIBRARY"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcpstat"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcpstat"}, "184": {"type": "MIPS_26", "symbol": "__sceEENetsysctl_rdstruct", "scope": "LIBRARY"}}}}}, "__sceEENettcp_usrreq_init": {"76425d0affc0f6fff81983d3d91a9dba2e9f8838": {"8830c0d6": {"type": "FUNCTION", "size": 24, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__sceEENetudp_init": {"26051690a9a3147bdf8d3b45e6c3698ab94a7c44": {"75206ba6": {"type": "FUNCTION", "size": 96, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "memset"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_26", "symbol": "__sceEENetin_pcbinit", "scope": "LIBRARY"}}}}}, "__sceEENetudp_input": {"fbeddab75b7bc7c5fca1090ad9ab157154638383": {"e6d657eb": {"type": "FUNCTION", "size": 740, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_26", "symbol": "__sceEENetm_pulldown", "scope": "LIBRARY"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "164": {"type": "MIPS_26", "symbol": "__sceEENetpanic", "scope": "LIBRARY"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "276": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "324": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "360": {"type": "MIPS_26", "symbol": "sceEENetMAdj", "scope": "LIBRARY"}, "404": {"type": "MIPS_26", "symbol": "__sceEENetin4_cksum", "scope": "LIBRARY"}, "416": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "432": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "452": {"type": "MIPS_26", "symbol": "bzero"}, "484": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "524": {"type": "MIPS_26", "symbol": "bzero"}, "548": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "592": {"type": "MIPS_26", "symbol": "udp4_realinput", "scope": "LIBRARY", "original": ".text"}, "620": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "672": {"type": "MIPS_26", "symbol": "__sceEENeticmp_error", "scope": "LIBRARY"}, "688": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}}}}}, "udp4_sendup": {"f6e14b5d87c67fc429c983b2114c52dc5ff8aba9": {"d763d0c5": {"type": "FUNCTION", "size": 312, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"96": {"type": "MIPS_26", "symbol": "sceEENetMCopym", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "__sceEENetip_savecontrol", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "sceEENetMAdj", "scope": "LIBRARY"}, "204": {"type": "MIPS_26", "symbol": "__sceEENetsbappendaddr", "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "240": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "268": {"type": "MIPS_26", "symbol": "__sceEENetsowakeup", "scope": "LIBRARY"}}}}}, "udp4_realinput": {"f635bfc1837b805c5c42a6c026e8014e0b1b96fe": {"951ff9e9": {"type": "FUNCTION", "size": 564, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"92": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "132": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_26", "symbol": "__sceEENetin_broadcast", "scope": "LIBRARY"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "224": {"type": "MIPS_26",)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "324": {"type": "MIPS_26", "symbol": "udp4_sendup", "scope": "LIBRARY", "original": ".text"}, "388": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "408": {"type": "MIPS_26", "symbol": "__sceEENetin_pcblookup_connect", "scope": "LIBRARY"}, "428": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "436": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "464": {"type": "MIPS_26", "symbol": "__sceEENetin_pcblookup_bind", "scope": "LIBRARY"}, "500": {"type": "MIPS_26", "symbol": "udp4_sendup", "scope": "LIBRARY", "original": ".text"}}}}}, "udp_notify": {"b7c474093ff56229c7cd15ca98839f05d5020f84": {"0948651a": {"type": "FUNCTION", "size": 100, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "__sceEENetsowakeup", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "__sceEENetsowakeup", "scope": "LIBRARY"}}}}}, "__sceEENetudp_ctlinput": {"a5f2b3408a9096dc8a9955197a45f932c120d8f3": {"64384375": {"type": "FUNCTION", "size": 292, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "udp_notify", "original": ".text"}, "32": {"type": "MIPS_LO16", "symbol": "udp_notify", "original": ".text"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetinetctlerrmap"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetinetctlerrmap"}, "92": {"type": "MIPS_HI16", "symbol": "__sceEENetin_rtchange"}, "104": {"type": "MIPS_LO16", "symbol": "__sceEENetin_rtchange"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "224": {"type": "MIPS_26", "symbol": "__sceEENetin_pcbnotify", "scope": "LIBRARY"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "268": {"type": "MIPS_26", "symbol": "__sceEENetin_pcbnotifyall", "scope": "LIBRARY"}}}}}, "__sceEENetudp_output": {"c6a05446a39a321ed4b3da9af0e20dc0b3b83f1d": {"12ea4477": {"type": "FUNCTION", "size": 584, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"172": {"type": "MIPS_26", "symbol": "sceEENetMPrepend", "scope": "LIBRARY"}, "244": {"type": "MIPS_26", "symbol": "bzero"}, "264": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "284": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "392": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "404": {"type": "MIPS_26", "symbol": "__sceEENetin_cksum", "scope": "LIBRARY"}, "464": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "468": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "524": {"type": "MIPS_26", "symbol": "__sceEENetip_output", "scope": "LIBRARY"}, "540": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}}}}}, "__sceEENetudp_usrreq": {"80933d6628aa2015e7e1e6d3390e8e77e5478462": {"9d27248f": {"type": "FUNCTION", "size": 832, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"88": {"type": "MIPS_26", "symbol": "__sceEENetin_control", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "__sceEENetin_purgeif", "scope": "LIBRARY"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_26", "symbol": "__sceEENetin_pcbpurgeif", "scope": "LIBRARY"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "248": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "252": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "256": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "268": {"type": "MIPS_26", "symbol": "__sceEENetsoreserve", "scope": "LIBRARY"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "284": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "292": {"type": "MIPS_26", "symbol": "__sceEENetin_pcballoc", "scope": "LIBRARY"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "308": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetip_defttl"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetip_defttl"}, "332": {"type": "MIPS_26", "symbol": "__sceEENetin_pcbbind", "scope": "LIBRARY"}, "352": {"type": "MIPS_26", "symbol": "__sceEENetin_pcbconnect", "scope": "LIBRARY"}, "372": {"type": "MIPS_26", "symbol": "__sceEENetsoisconnected", "scope": "LIBRARY"}, "400": {"type": "MIPS_26", "symbol": "__sceEENetin_pcbdisconnect", "scope": "LIBRARY"}, "408": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetzeroin_addr"}, "416": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetzeroin_addr"}, "436": {"type": "MIPS_26", "symbol": "__sceEENetin_pcbstate", "scope": "LIBRARY"}, "452": {"type": "MIPS_26", "symbol": "__sceEENetsocantsendmore", "scope": "LIBRARY"}, "536": {"type": "MIPS_26", "symbol": "__sceEENetin_pcbconnect", "scope": "LIBRARY"}, "584": {"type": "MIPS_26", "symbol": "__sceEENetudp_output", "scope": "LIBRARY", "original": ".text"}, "600": {"type": "MIPS_26", "symbol": "__sceEENetin_pcbdisconnect", "scope": "LIBRARY"}, "628": {"type": "MIPS_26", "symbol": "__sceEENetin_pcbstate", "scope": "LIBRARY"}, "644": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "676": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "684": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "704": {"type": "MIPS_26", "symbol": "__sceEENetin_setsockaddr", "scope": "LIBRARY"}, "724": {"type": "MIPS_26", "symbol": "__sceEENetin_setpeeraddr", "scope": "LIBRARY"}, "740": {"type": "MIPS_26", "symbol": "__sceEENetsoisdisconnected", "scope": "LIBRARY"}, "748": {"type": "MIPS_26", "symbol": "__sceEENetin_pcbdetach", "scope": "LIBRARY"}, "764": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "768": {"type": "MIPS_26", "symbol": "__sceEENetpanic", "scope": "LIBRARY"}, "772": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "776": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "__sceEENetudp_sysctl": {"e8310a80c812f8107964618bb62c3bfdcbc16ca2": {"c8f6d234": {"type": "FUNCTION", "size": 232, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"104": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_26", "symbol": "__sceEENetsysctl_int", "scope": "LIBRARY"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_26", "symbol": "__sceEENetsysctl_int", "scope": "LIBRARY"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_26", "symbol": "__sceEENetsysctl_int", "scope": "LIBRARY"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "204": {"type": "MIPS_26", "symbol": "__sceEENetsysctl_rdstruct", "scope": "LIBRARY"}}}}}, "__sceEENetinit_threadinfo": {"33d3e5d77bca4e0bff1e9e6b01a7a7d40abf12ae": {"b5f462c3": {"type": "FUNCTION", "size": 96, "lib)PS2SDB", 8192}, + std::string_view{R"PS2SDB(rary": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_26", "symbol": "memset"}, "52": {"type": "MIPS_26", "symbol": "CreateSema"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "__sceEENetget_threadinfo": {"099ce7bace48949a1f37a968b0f2988d2ae71db6": {"09e7026e": {"type": "FUNCTION", "size": 104, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_26", "symbol": "WaitSema"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_26", "symbol": "SignalSema"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "__sceEENetlock_threadinfo": {"333b3b966d7026a569ade3a9720d4f446755a7bb": {"16de19a1": {"type": "FUNCTION", "size": 124, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_26", "symbol": "WaitSema"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_26", "symbol": "SignalSema"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "__sceEENetunlock_threadinfo": {"21537d976fdb11724292cd66f44199747fcbf3dd": {"eeb43d23": {"type": "FUNCTION", "size": 68, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_26", "symbol": "WaitSema"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_26", "symbol": "SignalSema"}}}}}, "__sceEENetthread_enter": {"7715cdbc1c2be64b3fa639e715706a7d2d6f2376": {"39ef907a": {"type": "FUNCTION", "size": 320, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_26", "symbol": "GetThreadId"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_26", "symbol": "WaitSema"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "memset"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_26", "symbol": "memset"}, "188": {"type": "MIPS_26", "symbol": "CreateSema"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "248": {"type": "MIPS_26", "symbol": "SignalSema"}, "264": {"type": "MIPS_26", "symbol": "SignalSema"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "272": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "280": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "__sceEENetthread_leave": {"0659023522034fb70102589c3b6bca699d9f60ef": {"0a6dc60b": {"type": "FUNCTION", "size": 124, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_26", "symbol": "WaitSema"}, "76": {"type": "MIPS_26", "symbol": "DeleteSema"}, "84": {"type": "MIPS_26", "symbol": "SignalSema"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "__sceEENetThreadErrno": {"19cd92b2a062c2a6073f2a528fc25c9c7cf66a1a": {"6fda6feb": {"type": "FUNCTION", "size": 52, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "GetThreadId"}, "16": {"type": "MIPS_26", "symbol": "__sceEENetget_threadinfo", "scope": "LIBRARY", "original": ".text"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__sceEENetThreadHErrno": {"e4014f51a9d6775acfb4d744d851ecda3b74a3af": {"6fda6feb": {"type": "FUNCTION", "size": 52, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "GetThreadId"}, "16": {"type": "MIPS_26", "symbol": "__sceEENetget_threadinfo", "scope": "LIBRARY", "original": ".text"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__sceEENetthread_wakeup": {"3daac524f1f22a42ac582ada2231737db7057754": {"b310292b": {"type": "FUNCTION", "size": 120, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_26", "symbol": "WaitSema"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_26", "symbol": "SignalSema"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_26", "symbol": "SignalSema"}}}}}, "__sceEENetthread_busycount": {"69f0b39763124f297a2427cbef0e95d482260f85": {"da934b62": {"type": "FUNCTION", "size": 112, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_26", "symbol": "WaitSema"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_26", "symbol": "SignalSema"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "__sceEENetterm_threadinfo": {"3887f1de7e61e4ad19b4f8bb2aa8b864094372d9": {"2ffc74e1": {"type": "FUNCTION", "size": 12, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "4": {"type": "MIPS_26", "symbol": "DeleteSema"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceEENetFreeThreadinfo": {"ceb59116e736125920dcf3d5aada0ce718f6da23": {"16b820ba": {"type": "FUNCTION", "size": 276, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "<)PS2SDB", 8192}, + std::string_view{R"PS2SDB(data>", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "WaitSema"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "200": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "228": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "236": {"type": "MIPS_26", "symbol": "SignalSema"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "so_enter": {"a99862deaa874b48ec6ae696f35409d4a90b9594": {"00000000": {"type": "FUNCTION", "size": 20, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "so_leave": {"483d61f0b3c4178eb7a06f75ee7116f25a881cf5": {"00000000": {"type": "FUNCTION", "size": 56, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceEENetSocket": {"01937c062a551e54107363472e9474e657675423": {"96434540": {"type": "FUNCTION", "size": 204, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "__sceEENetthread_enter", "scope": "LIBRARY"}, "60": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "__sceEENetsogetid", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "__sceEENetsocreate", "scope": "LIBRARY"}, "128": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "140": {"type": "MIPS_26", "symbol": "__sceEENetthread_leave", "scope": "LIBRARY"}}}}}, "sceEENetBind": {"669e4ea6b61c447a23cbfeb53049ce8d36f84459": {"edec6b40": {"type": "FUNCTION", "size": 188, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "__sceEENetthread_enter", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "__sceEENetsogetsock", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "so_enter", "scope": "LIBRARY", "original": ".text"}, "100": {"type": "MIPS_26", "symbol": "sockargs", "scope": "LIBRARY", "original": ".text"}, "120": {"type": "MIPS_26", "symbol": "__sceEENetsobind", "scope": "LIBRARY"}, "132": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "140": {"type": "MIPS_26", "symbol": "so_leave", "scope": "LIBRARY", "original": ".text"}, "152": {"type": "MIPS_26", "symbol": "__sceEENetthread_leave", "scope": "LIBRARY"}}}}}, "sceEENetListen": {"501bfcfd9c9c19b567c39d5f260a9a1b3ea51ec2": {"fd6d6f95": {"type": "FUNCTION", "size": 140, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "__sceEENetthread_enter", "scope": "LIBRARY"}, "44": {"type": "MIPS_26", "symbol": "__sceEENetsogetsock", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "so_enter", "scope": "LIBRARY", "original": ".text"}, "84": {"type": "MIPS_26", "symbol": "__sceEENetsolisten", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "so_leave", "scope": "LIBRARY", "original": ".text"}, "108": {"type": "MIPS_26", "symbol": "__sceEENetthread_leave", "scope": "LIBRARY"}}}}}, "sceEENetAccept": {"1b8acbec9c6922146d669f0e12a9d362ba201a87": {"ffb261b0": {"type": "FUNCTION", "size": 684, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "__sceEENetthread_enter", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "__sceEENetsogetsock", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "so_enter", "scope": "LIBRARY", "original": ".text"}, "124": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "160": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "192": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "232": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "284": {"type": "MIPS_26", "symbol": "__sceEENeteenet_tsleep", "scope": "LIBRARY"}, "364": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "380": {"type": "MIPS_26", "symbol": "__sceEENetsogetid", "scope": "LIBRARY"}, "404": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "424": {"type": "MIPS_26", "symbol": "__sceEENetsoqremque", "scope": "LIBRARY"}, "440": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "444": {"type": "MIPS_26", "symbol": "__sceEENetpanic", "scope": "LIBRARY"}, "448": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "456": {"type": "MIPS_26", "symbol": "sceEENetMGet", "scope": "LIBRARY"}, "480": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "496": {"type": "MIPS_26", "symbol": "__sceEENetsoaccept", "scope": "LIBRARY"}, "540": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "568": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "588": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "596": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "604": {"type": "MIPS_26", "symbol": "so_leave", "scope": "LIBRARY", "original": ".text"}, "616": {"type": "MIPS_26", "symbol": "__sceEENetthread_leave", "scope": "LIBRARY"}}}}}, "sceEENetConnect": {"7e88f8aa66846beeb71aa521d59eabbc168dc10b": {"c0954498": {"type": "FUNCTION", "size": 364, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "__sceEENetthread_enter", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "__sceEENetsogetsock", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "so_enter", "scope": "LIBRARY", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "sockargs", "scope": "LIBRARY", "original": ".text"}, "152": {"type": "MIPS_26", "symbol": "__sceEENetsoconnect", "scope": "LIBRARY"}, "188": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "204": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "248": {"type": "MIPS_26", "symbol": "__sceEENeteenet_tsleep", "scope": "LIBRARY"}, "284": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "304": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "312": {"type": "MIPS_26", "symbol": "so_leave", "scope": "LIBRARY", "original": ".text"}, "324": {"type": "MIPS_26", "symbol": "__sceEENetthread_leave", "scope": "LIBRARY"}}}}}, "sceEENetSend": {"9971922acad5bfc885aaa644f4e13e83a5324aed": {"4b0b5411": {"type": "FUNCTION", "size": 172, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "__sceEENetthread_enter", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "sendit", "scope": "LIBRARY", "original": ".text"}, "120": {"type": "MIPS_26", "symbol": "__sceEENetthread_leave", "scope": "LIBRARY"}}}}}, "sceEENetSendto": {"3e5d2ca849ab72d8777355eda534493f8b7f02a3": {"c0e1713a": {"type": "FUNCTION", "size": 196, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "__sceEENetthread_enter", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "sendit", "scope": "LIBRARY", "o)PS2SDB", 8192}, + std::string_view{R"PS2SDB(riginal": ".text"}, "136": {"type": "MIPS_26", "symbol": "__sceEENetthread_leave", "scope": "LIBRARY"}}}}}, "sceEENetSendmsg": {"da0e1130b2273084ff8b9887ab0f8e6c36c07257": {"fda363ba": {"type": "FUNCTION", "size": 264, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "__sceEENetthread_enter", "scope": "LIBRARY"}, "60": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "156": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "184": {"type": "MIPS_26", "symbol": "sendit", "scope": "LIBRARY", "original": ".text"}, "200": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "212": {"type": "MIPS_26", "symbol": "__sceEENetthread_leave", "scope": "LIBRARY"}}}}}, "sendit": {"81c6bd6fc0f47fb15f21e3fd2d12ab6f8ec40e0b": {"85ef0b83": {"type": "FUNCTION", "size": 452, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "__sceEENetsogetsock", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "so_enter", "scope": "LIBRARY", "original": ".text"}, "192": {"type": "MIPS_26", "symbol": "sockargs", "scope": "LIBRARY", "original": ".text"}, "256": {"type": "MIPS_26", "symbol": "sockargs", "scope": "LIBRARY", "original": ".text"}, "396": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "404": {"type": "MIPS_26", "symbol": "so_leave", "scope": "LIBRARY", "original": ".text"}}}}}, "sceEENetRecv": {"c4d8614bbc72251244fd1a9a43ab1fb9cf141782": {"a7be47eb": {"type": "FUNCTION", "size": 176, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "__sceEENetthread_enter", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "recvit", "scope": "LIBRARY", "original": ".text"}, "124": {"type": "MIPS_26", "symbol": "__sceEENetthread_leave", "scope": "LIBRARY"}}}}}, "sceEENetRecvfrom": {"0c3ba665c96a94a02b613b235821af83cd04616a": {"5ed1b4dd": {"type": "FUNCTION", "size": 216, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "__sceEENetthread_enter", "scope": "LIBRARY"}, "144": {"type": "MIPS_26", "symbol": "recvit", "scope": "LIBRARY", "original": ".text"}, "156": {"type": "MIPS_26", "symbol": "__sceEENetthread_leave", "scope": "LIBRARY"}}}}}, "sceEENetRecvmsg": {"ebb02df227fe995398d1f1b15695e76b9f6291a0": {"ba0d83de": {"type": "FUNCTION", "size": 316, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "__sceEENetthread_enter", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "164": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "200": {"type": "MIPS_26", "symbol": "recvit", "scope": "LIBRARY", "original": ".text"}, "228": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "244": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "256": {"type": "MIPS_26", "symbol": "__sceEENetthread_leave", "scope": "LIBRARY"}}}}}, "recvit": {"92e8d2981710cbe6a94b2ce829c28658527d4ac0": {"39486752": {"type": "FUNCTION", "size": 624, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_26", "symbol": "__sceEENetsogetsock", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "so_enter", "scope": "LIBRARY", "original": ".text"}, "352": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "468": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "540": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "560": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "568": {"type": "MIPS_26", "symbol": "so_leave", "scope": "LIBRARY", "original": ".text"}}}}}, "sceEENetShutdown": {"501bfcfd9c9c19b567c39d5f260a9a1b3ea51ec2": {"592cf153": {"type": "FUNCTION", "size": 140, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "__sceEENetthread_enter", "scope": "LIBRARY"}, "44": {"type": "MIPS_26", "symbol": "__sceEENetsogetsock", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "so_enter", "scope": "LIBRARY", "original": ".text"}, "84": {"type": "MIPS_26", "symbol": "__sceEENetsoshutdown", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "so_leave", "scope": "LIBRARY", "original": ".text"}, "108": {"type": "MIPS_26", "symbol": "__sceEENetthread_leave", "scope": "LIBRARY"}}}}}, "sceEENetSetsockopt": {"ee92d9e975cfedd5f9013e48daa8e572c043a11c": {"c6bb4bcb": {"type": "FUNCTION", "size": 272, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "__sceEENetthread_enter", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "__sceEENetsogetsock", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "so_enter", "scope": "LIBRARY", "original": ".text"}, "144": {"type": "MIPS_26", "symbol": "sceEENetMGet", "scope": "LIBRARY"}, "176": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "200": {"type": "MIPS_26", "symbol": "__sceEENetsosetopt", "scope": "LIBRARY"}, "212": {"type": "MIPS_26", "symbol": "so_leave", "scope": "LIBRARY", "original": ".text"}, "224": {"type": "MIPS_26", "symbol": "__sceEENetthread_leave", "scope": "LIBRARY"}}}}}, "sceEENetGetsockopt": {"875c63f36bf8c45f105eedf1bbd466c546bf1126": {"5adbd5e4": {"type": "FUNCTION", "size": 560, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "__sceEENetthread_enter", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "__sceEENetsogetsock", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "so_enter", "scope": "LIBRARY", "original": ".text"}, "140": {"type": "MIPS_26", "symbol": "__sceEENetsogetopt", "scope": "LIBRARY"}, "224": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "236": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "276": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "352": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "400": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "432": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "440": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "488": {"type": "MIPS_26", "symbol": "sceEENetMFree", "scope": "LIBRARY"}, "496": {"type": "MIPS_26", "symbol": "so_leave", "scope": "LIBRARY", "original": ".text"}, "508": {"type": "MIPS_26", "symbol": "__sceEENetthread_leave", "scope": "LIBRARY"}}}}}, "sceEENetGetsockname": {"15bb58f74f768bfccaeeb221a7a7509c470a925d": {"0d1a1a0f": {"type": "FUNCTION", "size": 264, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "__sceEENetthread_enter", "scope": "LIBRARY"}, "60": {"type": "MIPS_26", "symbol": "__sceEENetsogetsock", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "so_enter", "scope": "LIBRARY", "original": ".text"}, "104": {"type": "MIPS_26", "symbol": "sceEENetMGe)PS2SDB", 8192}, + std::string_view{R"PS2SDB(tclr", "scope": "LIBRARY"}, "188": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "200": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "208": {"type": "MIPS_26", "symbol": "so_leave", "scope": "LIBRARY", "original": ".text"}, "220": {"type": "MIPS_26", "symbol": "__sceEENetthread_leave", "scope": "LIBRARY"}}}}}, "sceEENetGetpeername": {"7289cc4a1255ba18110690394b03ac0b6c937835": {"bb07f55b": {"type": "FUNCTION", "size": 284, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "__sceEENetthread_enter", "scope": "LIBRARY"}, "60": {"type": "MIPS_26", "symbol": "__sceEENetsogetsock", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "so_enter", "scope": "LIBRARY", "original": ".text"}, "124": {"type": "MIPS_26", "symbol": "sceEENetMGetclr", "scope": "LIBRARY"}, "208": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "sceEENetMFreem", "scope": "LIBRARY"}, "228": {"type": "MIPS_26", "symbol": "so_leave", "scope": "LIBRARY", "original": ".text"}, "240": {"type": "MIPS_26", "symbol": "__sceEENetthread_leave", "scope": "LIBRARY"}}}}}, "sockargs": {"d59085f678eb658bbb4831702bc8f79fe8b4929f": {"a174eccf": {"type": "FUNCTION", "size": 320, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"92": {"type": "MIPS_26", "symbol": "sceEENetMGet", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetmbtypes"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetmbtypes"}, "232": {"type": "MIPS_26", "symbol": "sceEENetMFree", "scope": "LIBRARY"}, "256": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}}}}}, "sceEENetSelect": {"fa0c14d61a1ad29cad1603dd97f98198b8065c4a": {"bab104e6": {"type": "FUNCTION", "size": 768, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_26", "symbol": "__sceEENetthread_enter", "scope": "LIBRARY"}, "144": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "memset"}, "192": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "216": {"type": "MIPS_26", "symbol": "memset"}, "244": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "268": {"type": "MIPS_26", "symbol": "memset"}, "352": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetkern_time"}, "380": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetkern_time"}, "392": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetkern_time"}, "396": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetkern_time"}, "464": {"type": "MIPS_26", "symbol": "sel_so_enter", "scope": "LIBRARY", "original": ".text"}, "492": {"type": "MIPS_26", "symbol": "selscan", "scope": "LIBRARY", "original": ".text"}, "524": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetselwait"}, "528": {"type": "MIPS_26", "symbol": "__sceEENethzto", "scope": "LIBRARY"}, "544": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetselwait"}, "552": {"type": "MIPS_26", "symbol": "__sceEENeteenet_tsleep", "scope": "LIBRARY"}, "556": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetselwait"}, "572": {"type": "MIPS_26", "symbol": "so_leave", "scope": "LIBRARY", "original": ".text"}, "588": {"type": "MIPS_26", "symbol": "so_leave", "scope": "LIBRARY", "original": ".text"}, "628": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "656": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "688": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "700": {"type": "MIPS_26", "symbol": "__sceEENetthread_leave", "scope": "LIBRARY"}}}}}, "selscan": {"6171d3ae1d4a61e4cb05478de189c2bfb87c3838": {"0541ca81": {"type": "FUNCTION", "size": 444, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"164": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "200": {"type": "MIPS_26", "symbol": "__sceEENetsogetsock", "scope": "LIBRARY"}, "244": {"type": "MIPS_26", "symbol": "__sceEENetsopoll", "scope": "LIBRARY"}}}}}, "sel_so_enter": {"3ddcd2a96799aabb6f37d4ba326bb14c3a206fd5": {"668d2400": {"type": "FUNCTION", "size": 376, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"172": {"type": "MIPS_26", "symbol": "__sceEENetsogetsock", "scope": "LIBRARY"}, "200": {"type": "MIPS_26", "symbol": "so_enter", "scope": "LIBRARY", "original": ".text"}}}}}, "sceEENetPoll": {"316047690e63696fb7d358154fc0bb22e60e107e": {"daa32628": {"type": "FUNCTION", "size": 544, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "__sceEENetthread_enter", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "184": {"type": "MIPS_26", "symbol": "__sceEENetitimerfix", "scope": "LIBRARY"}, "200": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetkern_time"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetkern_time"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetkern_time"}, "304": {"type": "MIPS_26", "symbol": "poll_so_enter", "scope": "LIBRARY", "original": ".text"}, "324": {"type": "MIPS_26", "symbol": "pollscan", "scope": "LIBRARY", "original": ".text"}, "356": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetselwait"}, "360": {"type": "MIPS_26", "symbol": "__sceEENethzto", "scope": "LIBRARY"}, "376": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetselwait"}, "384": {"type": "MIPS_26", "symbol": "__sceEENeteenet_tsleep", "scope": "LIBRARY"}, "388": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetselwait"}, "404": {"type": "MIPS_26", "symbol": "so_leave", "scope": "LIBRARY", "original": ".text"}, "420": {"type": "MIPS_26", "symbol": "so_leave", "scope": "LIBRARY", "original": ".text"}, "448": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "464": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "476": {"type": "MIPS_26", "symbol": "__sceEENetthread_leave", "scope": "LIBRARY"}}}}}, "pollscan": {"9c06abc13fc502004dec6c13d43f00c81cfc2935": {"71811c2c": {"type": "FUNCTION", "size": 188, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_26", "symbol": "__sceEENetsogetsock", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "__sceEENetsopoll", "scope": "LIBRARY"}}}}}, "poll_so_enter": {"78ce1f3150ace3eda0dc3fd8485a38976dbc0841": {"426f9df6": {"type": "FUNCTION", "size": 116, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "__sceEENetsogetsock", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "so_enter", "scope": "LIBRARY", "original": ".text"}}}}}, "sceEENetIoctl": {"33e828a5c7d889f361d763f24a0dba4571936527": {"911feb02": {"type": "FUNCTION", "size": 400, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", )PS2SDB", 8192}, + std::string_view{R"PS2SDB("symbol": "__sceEENetthread_enter", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "__sceEENetsogetsock", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "so_enter", "scope": "LIBRARY", "original": ".text"}, "128": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "192": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "232": {"type": "MIPS_26", "symbol": "memset"}, "272": {"type": "MIPS_26", "symbol": "__sceEENetsoioctl", "scope": "LIBRARY"}, "316": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "332": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "340": {"type": "MIPS_26", "symbol": "so_leave", "scope": "LIBRARY", "original": ".text"}, "352": {"type": "MIPS_26", "symbol": "__sceEENetthread_leave", "scope": "LIBRARY"}}}}}, "sceEENetSysctl": {"aff2cb974094034acd98a2a7dc936d43d36d587e": {"7be5c47d": {"type": "FUNCTION", "size": 288, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_26", "symbol": "__sceEENetthread_enter", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "136": {"type": "MIPS_HI16", "symbol": "__sceEENetnet_sysctl"}, "148": {"type": "MIPS_LO16", "symbol": "__sceEENetnet_sysctl"}, "164": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "224": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "236": {"type": "MIPS_26", "symbol": "__sceEENetthread_leave", "scope": "LIBRARY"}}}}}, "sceEENetClose": {"841e4a063b3f3ac0c91c57db4ae78598257703ce": {"39615859": {"type": "FUNCTION", "size": 100, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "__sceEENetthread_enter", "scope": "LIBRARY"}, "36": {"type": "MIPS_26", "symbol": "__sceEENetsogetsock", "scope": "LIBRARY"}, "60": {"type": "MIPS_26", "symbol": "__sceEENetsoclose", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "__sceEENetthread_leave", "scope": "LIBRARY"}}}}}, "sceEENetCloseWithRST": {"663522972608271a9e82c5dc3670f43721ecada7": {"e664d8c2": {"type": "FUNCTION", "size": 104, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "__sceEENetthread_enter", "scope": "LIBRARY"}, "36": {"type": "MIPS_26", "symbol": "__sceEENetsogetsock", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "__sceEENetsoabort", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "__sceEENetsoclose", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "__sceEENetthread_leave", "scope": "LIBRARY"}}}}}, "sceEENetGettimeofday": {"9ebf1a63cea149ceaac9b68c30922d26304b533a": {"752c07fd": {"type": "FUNCTION", "size": 104, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__sceEENetmicrotime", "scope": "LIBRARY"}, "44": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}}}}}, "sceEENetNanosleep": {"8865695f711911f49f4d1ec6e49a93de13a5301e": {"ed2c4cdc": {"type": "FUNCTION", "size": 420, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "__sceEENetthread_enter", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "__divdi3"}, "100": {"type": "MIPS_26", "symbol": "__sceEENetitimerfix", "scope": "LIBRARY"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetkern_time"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetkern_time"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetkern_time"}, "200": {"type": "MIPS_26", "symbol": "__sceEENethzto", "scope": "LIBRARY"}, "216": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "224": {"type": "MIPS_26", "symbol": "__sceEENeteenet_tsleep", "scope": "LIBRARY"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetkern_time"}, "368": {"type": "MIPS_26", "symbol": "__sceEENetbcopy", "scope": "LIBRARY"}, "380": {"type": "MIPS_26", "symbol": "__sceEENetthread_leave", "scope": "LIBRARY"}}}}}, "sceEENetThreadAbort": {"d3a12ca43d2dff1383f3bc29324ec41d7d790f96": {"327aed40": {"type": "FUNCTION", "size": 124, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "__sceEENetthread_enter", "scope": "LIBRARY"}, "44": {"type": "MIPS_26", "symbol": "__sceEENetlock_threadinfo", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "__sceEENeteenet_tabort", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "__sceEENetunlock_threadinfo", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "__sceEENetthread_leave", "scope": "LIBRARY"}}}}}, "sceEENetSocketAbort": {"61b92ad9034c642d7399c756343b03fa99326c92": {"d41a78d2": {"type": "FUNCTION", "size": 140, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__sceEENetthread_enter", "scope": "LIBRARY"}, "48": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "60": {"type": "MIPS_26", "symbol": "__sceEENetsogetsock", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "__sceEENeteenet_sabort", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "__sceEENetthread_leave", "scope": "LIBRARY"}}}}}, "__sceEENetget_ifindex": {"4f11e02ed07a81cf659a8ebdf2f01a26ba7cfc48": {"7f90ef75": {"type": "FUNCTION", "size": 120, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetifnetlst"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetifnetlst"}, "60": {"type": "MIPS_26", "symbol": "strncmp"}, "80": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "__sceEENeteenet_netintr_start": {"0e224428d30cd9fae2c92b9081dbef5dff947230": {"9d20a2c2": {"type": "FUNCTION", "size": 184, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "memset"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_26", "symbol": "CreateSema"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "__sceEENetnetintr_thread", "original": ".text"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_LO16", "symbol": "__sceEENetnetintr_thread", "original": ".text"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_26", "symbol": "__sceEENetget_tpl", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "CreateThread"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_26", "symbol": "StartThread"}, "156": {"type": "MIPS_26", "symbol": "DeleteSema"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "__sceEENeteenet_neti)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ntr": {"3887f1de7e61e4ad19b4f8bb2aa8b864094372d9": {"e7b3b45b": {"type": "FUNCTION", "size": 12, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "4": {"type": "MIPS_26", "symbol": "SignalSema"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "__sceEENeteenet_netintr_stop": {"a18a9007cd4d4899d68f24c3110c6ae8b980fae6": {"bb68a8a7": {"type": "FUNCTION", "size": 56, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_26", "symbol": "TerminateThread"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_26", "symbol": "DeleteThread"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_26", "symbol": "DeleteSema"}}}}}, "__sceEENetnetintr_thread": {"e4f0912b4f0d9ed6ff11d440dc6f1bb474c93b57": {"8af95a94": {"type": "FUNCTION", "size": 204, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_26", "symbol": "WaitSema"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_26", "symbol": "__sceEENetipintr", "scope": "LIBRARY"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "__sceEENetarpintr", "scope": "LIBRARY"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_26", "symbol": "__sceEENetpppoeintr", "scope": "LIBRARY"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "180": {"type": "MIPS_26", "symbol": "__sceEENetthread_wakeup", "scope": "LIBRARY"}, "188": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "sceEENetInit": {"60895137a8436a7afcd6c902d3e8df9fb5294612": {"034d06a6": {"type": "FUNCTION", "size": 548, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetlog_level"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": "__sce_eenet_dns"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetlog_level"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": "__sce_eenet_dns"}, "72": {"type": "MIPS_26", "symbol": "memset"}, "80": {"type": "MIPS_26", "symbol": "__sceEENetSetDefaultResolvTO", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "__sceEENetroutecommon_init", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "__sceEENetuser_mem_func_is_specified", "scope": "LIBRARY"}, "128": {"type": "MIPS_26", "symbol": "__sceEENeteenet_malloc_init", "scope": "LIBRARY"}, "144": {"type": "MIPS_26", "symbol": "GetTimerSystemTime"}, "156": {"type": "MIPS_26", "symbol": "__sceEENetsrandom", "scope": "LIBRARY"}, "164": {"type": "MIPS_26", "symbol": "__sceEENetmbinit", "scope": "LIBRARY"}, "172": {"type": "MIPS_26", "symbol": "__sceEENetkernclock_startup", "scope": "LIBRARY"}, "188": {"type": "MIPS_26", "symbol": "__sceEENetcallout_startup", "scope": "LIBRARY"}, "204": {"type": "MIPS_26", "symbol": "__sceEENeteenet_slpque_init", "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "__sceEENeteenet_tplsid_init", "scope": "LIBRARY"}, "236": {"type": "MIPS_26", "symbol": "__sceEENetsoinit", "scope": "LIBRARY"}, "244": {"type": "MIPS_26", "symbol": "__sceEENetinit_threadinfo", "scope": "LIBRARY"}, "260": {"type": "MIPS_26", "symbol": "__sceEENetifinit", "scope": "LIBRARY"}, "268": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "312": {"type": "MIPS_26", "symbol": "__sceEENetdomaininit", "scope": "LIBRARY"}, "320": {"type": "MIPS_26", "symbol": "__sceEENeteenet_callout_start", "scope": "LIBRARY"}, "336": {"type": "MIPS_26", "symbol": "__sceEENeteenet_netintr_start", "scope": "LIBRARY"}, "356": {"type": "MIPS_26", "symbol": "__sceEENetkernclock_start", "scope": "LIBRARY"}, "380": {"type": "MIPS_26", "symbol": "__sceEENetDriverRegInit", "scope": "LIBRARY"}, "396": {"type": "MIPS_HI16", "symbol": "", "original": "version_str"}, "400": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "404": {"type": "MIPS_LO16", "symbol": "", "original": "version_str"}, "408": {"type": "MIPS_26", "symbol": "scePrintf"}, "412": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "424": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "432": {"type": "MIPS_26", "symbol": "scePrintf"}, "436": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "440": {"type": "MIPS_26", "symbol": "__sceEENetkernclock_stop", "scope": "LIBRARY"}, "448": {"type": "MIPS_26", "symbol": "__sceEENeteenet_netintr_stop", "scope": "LIBRARY"}, "456": {"type": "MIPS_26", "symbol": "__sceEENeteenet_callout_stop", "scope": "LIBRARY"}, "464": {"type": "MIPS_26", "symbol": "__sceEENetterm_threadinfo", "scope": "LIBRARY"}, "472": {"type": "MIPS_26", "symbol": "__sceEENeteenet_tplsid_term", "scope": "LIBRARY"}, "480": {"type": "MIPS_26", "symbol": "__sceEENeteenet_slpque_term", "scope": "LIBRARY"}, "488": {"type": "MIPS_26", "symbol": "__sceEENetcallout_term", "scope": "LIBRARY"}, "496": {"type": "MIPS_26", "symbol": "__sceEENetkernclock_term", "scope": "LIBRARY"}, "504": {"type": "MIPS_26", "symbol": "__sceEENeteenet_malloc_term", "scope": "LIBRARY"}}}}}, "sceEENetTerm": {"88f0fe0f893e47c1fd6891dc2579ea5f2b1a9da7": {"5ab590b5": {"type": "FUNCTION", "size": 144, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "__sceEENetthread_busycount", "scope": "LIBRARY"}, "32": {"type": "MIPS_26", "symbol": "__sceEENetDriverRegTerm", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "__sceEENetkernclock_stop", "scope": "LIBRARY"}, "60": {"type": "MIPS_26", "symbol": "__sceEENeteenet_netintr_stop", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "__sceEENeteenet_callout_stop", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "__sceEENetterm_threadinfo", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "__sceEENeteenet_tplsid_term", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "__sceEENeteenet_slpque_term", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "__sceEENetcallout_term", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "__sceEENetkernclock_term", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "__sceEENeteenet_malloc_term", "scope": "LIBRARY"}}}}}, "__sceEENetkernclock_startup": {"4b753899670193cb6a473647ed8938d79e274e0d": {"b5368ebb": {"type": "FUNCTION", "size": 128, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, )PS2SDB", 8192}, + std::string_view{R"PS2SDB("12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_26", "symbol": "memset"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_26", "symbol": "CreateSema"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "__sceEENetkernclock_start": {"50bee80a2de65d8a44ee02673eab1f456cdb0790": {"7263b6e0": {"type": "FUNCTION", "size": 172, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "sceCdReadClock"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_26", "symbol": "sceScfGetGMTfromRTC"}, "44": {"type": "MIPS_26", "symbol": "__sceEENetcdclktotv", "scope": "LIBRARY"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_26", "symbol": "GetTimerSystemTime"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_26", "symbol": "TimerUSec2BusClock"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_HI16", "symbol": "__sceEENetkernclock", "original": ".text"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_LO16", "symbol": "__sceEENetkernclock", "original": ".text"}, "120": {"type": "MIPS_26", "symbol": "SetTimerAlarm"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "__sceEENetkernclock": {"7c8e363a6169cb0f91f0321a385c0700e3957b2c": {"dc7dc473": {"type": "FUNCTION", "size": 128, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_26", "symbol": "iSignalSema"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "__sceEENetkernclock_stop": {"30efcd89bc488ba09a924d0bb57830f460935b5a": {"a5e5f533": {"type": "FUNCTION", "size": 84, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_26", "symbol": "ReleaseTimerAlarm"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__sceEENetkernclock_term": {"3887f1de7e61e4ad19b4f8bb2aa8b864094372d9": {"2ffc74e1": {"type": "FUNCTION", "size": 12, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "4": {"type": "MIPS_26", "symbol": "DeleteSema"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "__sceEENeteenet_callout_start": {"f27be44fdf8295a37826c7c5a026209e3b187a26": {"9d5b8a15": {"type": "FUNCTION", "size": 124, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "__sceEENetcallout_thread", "original": ".text"}, "4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_LO16", "symbol": "__sceEENetcallout_thread", "original": ".text"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_26", "symbol": "__sceEENetget_tpl", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "CreateThread"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_26", "symbol": "StartThread"}}}}}, "__sceEENetcallout_thread": {"854938b05a1568847414ca265097727d4d169400": {"e13fa5ad": {"type": "FUNCTION", "size": 412, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetnextsoftcheck"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "WaitSema"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetcallout_sema"}, "68": {"type": "MIPS_26", "symbol": "WaitSema"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetcallout_sema"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetcallout_sema"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetcallwheel"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetcallwheel"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetnextsoftcheck"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetcallout_sema"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetcallout_sema"}, "212": {"type": "MIPS_26", "symbol": "SignalSema"}, "216": {"type": "MIPS_LO16", "sy)PS2SDB", 8192}, + std::string_view{R"PS2SDB(mbol": "", "original": "__sceEENetnextsoftcheck"}, "220": {"type": "MIPS_26", "symbol": "WaitSema"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetcallout_sema"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetnextsoftcheck"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetnextsoftcheck"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetcallout_sema"}, "320": {"type": "MIPS_26", "symbol": "SignalSema"}, "336": {"type": "MIPS_26", "symbol": "WaitSema"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetcallout_sema"}, "344": {"type": "MIPS_26", "symbol": "__sceEENetthread_wakeup", "scope": "LIBRARY"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetnextsoftcheck"}, "360": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "364": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "368": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "372": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "376": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "384": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "388": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetcallout_sema"}, "392": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetnextsoftcheck"}, "396": {"type": "MIPS_26", "symbol": "SignalSema"}, "400": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetcallout_sema"}, "408": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}}}}}, "__sceEENeteenet_callout_stop": {"db523b6a83ee3ea0b8ae197438d8e6e3f86bc37d": {"576f1d6f": {"type": "FUNCTION", "size": 44, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_26", "symbol": "TerminateThread"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "DeleteThread"}}}}}, "__sceEENethzto": {"b0d4a9b8ddc100a8de5b9aeb9a73dad076d88766": {"171948e2": {"type": "FUNCTION", "size": 292, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_26", "symbol": "__udivdi3"}, "224": {"type": "MIPS_26", "symbol": "__udivdi3"}}}}}, "sceEENetBpfOpen": {"782d05ce43b86b23b122cb9d1549fb1b6b3bbea1": {"82986f13": {"type": "FUNCTION", "size": 132, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "__sceEENetthread_enter", "scope": "LIBRARY"}, "44": {"type": "MIPS_26", "symbol": "__sceEENetbpfopen", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "__sceEENetthread_leave", "scope": "LIBRARY"}}}}}, "sceEENetBpfClose": {"3d119ec2c49d0ce795bf852e2573ef3eca7fee7d": {"6b715f95": {"type": "FUNCTION", "size": 76, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "__sceEENetthread_enter", "scope": "LIBRARY"}, "36": {"type": "MIPS_26", "symbol": "__sceEENetbpfclose", "scope": "LIBRARY"}, "48": {"type": "MIPS_26", "symbol": "__sceEENetthread_leave", "scope": "LIBRARY"}}}}}, "sceEENetBpfRead": {"514515a0af0d5a3a53c732420d300dc4563655aa": {"78fc54a5": {"type": "FUNCTION", "size": 164, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "__sceEENetthread_enter", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "__sceEENetbpfread", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "__sceEENetthread_leave", "scope": "LIBRARY"}}}}}, "sceEENetBpfWrite": {"00b97b602c537ac5421432d8d1364459dec9512e": {"d8183b91": {"type": "FUNCTION", "size": 168, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "__sceEENetthread_enter", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "__sceEENetbpfwrite", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "__sceEENetthread_leave", "scope": "LIBRARY"}}}}}, "sceEENetBpfIoctl": {"e29106c69bbee974ad912764f713b874615e8fd2": {"769530f3": {"type": "FUNCTION", "size": 112, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "__sceEENetthread_enter", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "__sceEENetbpfioctl", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "__sceEENetthread_leave", "scope": "LIBRARY"}}}}}, "__sce_eenet_get_dns": {"2a51c093207f3b6546ea5ac91d4ae4a6999eaed5": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceEENetGetDNSAddr": {"700e596989a15e8d954a7054ffc3863570635e8f": {"872ef0bb": {"type": "FUNCTION", "size": 80, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_26", "symbol": "strncpy"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_26", "symbol": "strncpy"}}}}}, "sceEENetSetDNSAddr": {"1ad665e40e5be3277e0be64392f55e6c7b377e07": {"ee0f5107": {"type": "FUNCTION", "size": 184, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "strlen"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "strncpy"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_26", "symbol": "memset"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_26", "symbol": "strlen"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "strncpy"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_26", "symbol": "memset"}}}}}, "__sceEENetSetDNSSockAddr": {"79b27adba77d157d86be7e088755a2de6d6119e8": {"40471184": {"type": "FUNCTION", "size": 196, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_26", "symbol": "sceEENetInetNtop", "scope": "LIBRARY"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_26", "symbo)PS2SDB", 8192}, + std::string_view{R"PS2SDB(l": "sceEENetInetNtop", "scope": "LIBRARY"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "108": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "132": {"type": "MIPS_26", "symbol": "__sceEENetThreadErrno", "scope": "LIBRARY"}}}}}, "sceEENetGetIfnames": {"53b35bf9cb508d055cf70ae62f8aa8175ef9f5f6": {"8d67e058": {"type": "FUNCTION", "size": 212, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetifnetlst"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetifnetlst"}, "112": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "160": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "sceEENetGetIfinfo": {"b91f028aec9c6bd9a0f004526feff90521754af8": {"86eb9981": {"type": "FUNCTION", "size": 1180, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetifnetlst"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetifnetlst"}, "92": {"type": "MIPS_26", "symbol": "strncmp"}, "200": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "320": {"type": "MIPS_26", "symbol": "sceEENetGetDeviceInfo", "scope": "LIBRARY"}, "584": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "660": {"type": "MIPS_26", "symbol": "memset"}, "676": {"type": "MIPS_26", "symbol": "strncpy"}, "1068": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "1096": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "1124": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "sceEENetGetIfstat": {"70b7974bc10128a5cb676c70907f4f5e1d072529": {"baa98bad": {"type": "FUNCTION", "size": 224, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetifnetlst"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetifnetlst"}, "68": {"type": "MIPS_26", "symbol": "strncmp"}, "180": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "routeinfo": {"56d3e82fc027115f192699db462de7946340fd09": {"ceca23db": {"type": "FUNCTION", "size": 828, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"124": {"type": "MIPS_26", "symbol": "sceEENetSysctl", "scope": "LIBRARY"}, "140": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "172": {"type": "MIPS_26", "symbol": "memset"}, "200": {"type": "MIPS_26", "symbol": "sceEENetSysctl", "scope": "LIBRARY"}, "216": {"type": "MIPS_26", "symbol": "__sceEENetThreadErrno", "scope": "LIBRARY"}, "240": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "376": {"type": "MIPS_26", "symbol": "memset"}, "404": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "472": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "540": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "656": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "768": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}}}}}, "sceEENetGetRouteinfo": {"1c24e7e3e47fee14f7b255d2db8338d92dbfae5b": {"610a1043": {"type": "FUNCTION", "size": 36, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "routeinfo", "scope": "LIBRARY", "original": ".text"}}}}}, "__sceEENetIpstat": {"2a51c093207f3b6546ea5ac91d4ae4a6999eaed5": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetipstat"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetipstat"}}}}}, "__sceEENetTcpstat": {"2a51c093207f3b6546ea5ac91d4ae4a6999eaed5": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcpstat"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcpstat"}}}}}, "__sceEENetUdpstat": {"2a51c093207f3b6546ea5ac91d4ae4a6999eaed5": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetudpstat"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetudpstat"}}}}}, "sceEENetGetTcpcbstat": {"2b78b644d91ac2b78412b6cfa16a00af4d92247c": {"a427272d": {"type": "FUNCTION", "size": 296, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENettcbtable"}, "52": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcbtable"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcbtable"}, "140": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "156": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENettcbtable"}, "240": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "sceEENetGetUdpcbstat": {"d7198164e586645cd02dc2a4e47ace2e6d154d82": {"9c1a8d75": {"type": "FUNCTION", "size": 284, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetudbtable"}, "52": {"type": "MIPS_26", "symbol": "__sceEENetspllock", "scope": "LIBRARY"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetudbtable"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetudbtable"}, "140": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "156": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetudbtable"}, "228": {"type": "MIPS_26", "symbol": "__sceEENetsplunlock", "scope": "LIBRARY"}}}}}, "start_thread": {"073ef593f623072e018de77822b65e75787984a2": {"c24911d5": {"type": "FUNCTION", "size": 112, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "CreateThread"}, "60": {"type": "MIPS_26", "symbol": "StartThread"}, "80": {"type": "MIPS_26", "symbol": "DeleteThread"}}}}}, "copy_str": {"12edc4bedcf8f15e0e1bcd292ea02272ab2ba44f": {"0dc51e2b": {"type": "FUNCTION", "size": 92, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.)PS2SDB", 8192}, + std::string_view{R"PS2SDB(1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "strlen"}, "24": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "44": {"type": "MIPS_26", "symbol": "strlen"}, "60": {"type": "MIPS_26", "symbol": "strncpy"}}}}}, "check_valid_type": {"e717b60dc92d97c81c423b2576b6305ce2284ffc": {"d6ed632d": {"type": "FUNCTION", "size": 52, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "allocate_ee_sifrpc": {"0430b82b8b6530a2577c5e3a4da8af04b60bd3ea": {"857bedfe": {"type": "FUNCTION", "size": 112, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "allocate_iop_sifrpc": {"72d05adefa55904903b967af941f512b16d04f86": {"857bedfe": {"type": "FUNCTION", "size": 112, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "allocate_iop_sifcmd": {"06d0ac1e57079883e41f20668c4d882ff83aa587": {"124350e2": {"type": "FUNCTION", "size": 92, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "allocate_ee_sifcmd": {"6c6c1b7f1c0c0ce0123727f24a9debd0bc19b476": {"124350e2": {"type": "FUNCTION", "size": 92, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "allocate_sif_code": {"bbfdfd91979c7a15990cb7fdbf5382269d098216": {"7e42f5de": {"type": "FUNCTION", "size": 164, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "allocate_iop_sifcmd", "scope": "LIBRARY", "original": ".text"}, "52": {"type": "MIPS_26", "symbol": "allocate_ee_sifcmd", "scope": "LIBRARY", "original": ".text"}, "92": {"type": "MIPS_26", "symbol": "allocate_ee_sifrpc", "scope": "LIBRARY", "original": ".text"}, "124": {"type": "MIPS_26", "symbol": "allocate_iop_sifrpc", "scope": "LIBRARY", "original": ".text"}}}}}, "eenet_add_driver_list": {"de7c8a55ae76451faf8ad28ff51755f66e171456": {"c7c953ee": {"type": "FUNCTION", "size": 264, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "140": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "160": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "eenet_remove_driver_list": {"801dd4af93f88f5b65b09645e1a93828bdc94ea0": {"10ae83a9": {"type": "FUNCTION", "size": 188, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}}}}}, "eenet_search_device": {"e8d3cf4520cf4a61f0d1ed568d42adc3165ca996": {"d6ed632d": {"type": "FUNCTION", "size": 52, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "eenet_add_device_list": {"74487258609a0c3576952ea087b3ab91b8cffe7f": {"398cb82d": {"type": "FUNCTION", "size": 168, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "create_semafore": {"531fb786549a55461d4294e05854316862c4ed52": {"dd4afb45": {"type": "FUNCTION", "size": 76, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "memset"}, "48": {"type": "MIPS_26", "symbol": "CreateSema"}}}}}, "wait_delete_semafore": {"a783a097dcfe6f63bc3367c4851277d9d2372d90": {"1ddad0f8": {"type": "FUNCTION", "size": 40, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "WaitSema"}, "32": {"type": "MIPS_26", "symbol": "DeleteSema"}}}}}, "_sceEENetRPCServerFunc": {"bd9baa386fc238d8a5119e88eb13c4bf3a5d71cb": {"f93a3a58": {"type": "FUNCTION", "size": 1600, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"104": {"type": "MIPS_26", "symbol": "check_valid_type", "scope": "LIBRARY", "original": ".text"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "132": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "152": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "188": {"type": "MIPS_26", "symbol": "copy_str", "scope": "LIBRARY", "original": ".text"}, "208": {"type": "MIPS_26", "symbol": "copy_str", "scope": "LIBRARY", "original": ".text"}, "236": {"type": "MIPS_26", "symbol)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": "strncpy"}, "248": {"type": "MIPS_26", "symbol": "strlen"}, "272": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "284": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "304": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "312": {"type": "MIPS_26", "symbol": "strcat"}, "320": {"type": "MIPS_26", "symbol": "allocate_sif_code", "scope": "LIBRARY", "original": ".text"}, "336": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "344": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "348": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "356": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "372": {"type": "MIPS_26", "symbol": "eenet_add_device_list", "scope": "LIBRARY", "original": ".text"}, "388": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "396": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "400": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "408": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "416": {"type": "MIPS_26", "symbol": "create_semafore", "original": ".text"}, "440": {"type": "MIPS_26", "symbol": "create_semafore", "original": ".text"}, "460": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "468": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "472": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "500": {"type": "MIPS_26", "symbol": "sceEENetMemalign", "scope": "LIBRARY"}, "520": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "528": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "532": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "560": {"type": "MIPS_26", "symbol": "start_thread", "original": ".text"}, "580": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "588": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "592": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "608": {"type": "MIPS_26", "symbol": "wait_delete_semafore", "scope": "LIBRARY", "original": ".text"}, "696": {"type": "MIPS_26", "symbol": "eenet_search_device", "scope": "LIBRARY", "original": ".text"}, "712": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "740": {"type": "MIPS_26", "symbol": "create_semafore", "original": ".text"}, "760": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "768": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "772": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "804": {"type": "MIPS_26", "symbol": "sceEENetMemalign", "scope": "LIBRARY"}, "824": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "832": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "836": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "876": {"type": "MIPS_26", "symbol": "start_thread", "original": ".text"}, "896": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "904": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "908": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "928": {"type": "MIPS_26", "symbol": "wait_delete_semafore", "scope": "LIBRARY", "original": ".text"}, "940": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "944": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "992": {"type": "MIPS_26", "symbol": "eenet_search_device", "scope": "LIBRARY", "original": ".text"}, "1008": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1016": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1020": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1040": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1044": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1056": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1092": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1100": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1104": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1124": {"type": "MIPS_26", "symbol": "wait_delete_semafore", "scope": "LIBRARY", "original": ".text"}, "1136": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1140": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1184": {"type": "MIPS_26", "symbol": "TerminateThread"}, "1196": {"type": "MIPS_26", "symbol": "DeleteThread"}, "1208": {"type": "MIPS_26", "symbol": "sceEENetFreeThreadinfo", "scope": "LIBRARY"}, "1232": {"type": "MIPS_26", "symbol": "sceSifRemoveRpc"}, "1244": {"type": "MIPS_26", "symbol": "sceSifRemoveRpcQueue"}, "1268": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "1292": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "1300": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "1320": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "1380": {"type": "MIPS_26", "symbol": "TerminateThread"}, "1392": {"type": "MIPS_26", "symbol": "DeleteThread"}, "1404": {"type": "MIPS_26", "symbol": "sceEENetFreeThreadinfo", "scope": "LIBRARY"}, "1428": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "1460": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "1484": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "1508": {"type": "MIPS_26", "symbol": "DeleteSema"}, "1540": {"type": "MIPS_26", "symbol": "DeleteSema"}, "1560": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}}}}}, "_sceEENetRPCServerLoop": {"c1218ac00b0cebc81b0028a19b973f49c7cf28bd": {"63873f94": {"type": "FUNCTION", "size": 112, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_26", "symbol": "GetThreadId"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_26", "symbol": "sceSifSetRpcQueue"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_HI16", "symbol": "_sceEENetRPCServerFunc", "original": ".text"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "_sceEENetRPCServerFunc", "original": ".text"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_26", "symbol": "sceSifRegisterRpc"}, "84": {"type": "MIPS_26", "symbol": "sceSifRpcLoop"}}}}}, "__sceEENetDriverRegInit": {"9d8e5a12705be277843ee90cda42fc4094320641": {"ee5d3bd8": {"type": "FUNCTION", "size": 192, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_26", "symbol": "_sce_eenet_init_sifcmd_handler", "scope": "LIBRARY"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_26", "symbol": "_sce_eenet_bind_ent_devm_rpcs", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "sceEENetMemalign", "scope": ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(LIBRARY"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_HI16", "symbol": "_sceEENetRPCServerLoop", "original": ".text"}, "128": {"type": "MIPS_LO16", "symbol": "_sceEENetRPCServerLoop", "original": ".text"}, "140": {"type": "MIPS_26", "symbol": "start_thread", "original": ".text"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceEENetRegDriver": {"f34ad6e134d0a40f2a83c521575dde6b325ba3e3": {"b91bcdb6": {"type": "FUNCTION", "size": 40, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "eenet_add_driver_list", "scope": "LIBRARY", "original": ".text"}}}}}, "sceEENetUnregDriver": {"2bd63e6e302bb87343ee1646ad9707c65e909499": {"6b6b1146": {"type": "FUNCTION", "size": 92, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_26", "symbol": "eenet_remove_driver_list", "scope": "LIBRARY", "original": ".text"}}}}}, "__sceEENetDriverRegTerm": {"cadb31bb0759ccd13d2912ee703a8918b4cb4ec5": {"f240ba0c": {"type": "FUNCTION", "size": 196, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_26", "symbol": "_sce_eenet_unbind_ent_devm_rpcs", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "_sce_eenet_term_sifcmd_handler", "scope": "LIBRARY"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "TerminateThread"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_26", "symbol": "DeleteThread"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_26", "symbol": "sceEENetFreeThreadinfo", "scope": "LIBRARY"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_26", "symbol": "sceSifRemoveRpc"}, "156": {"type": "MIPS_26", "symbol": "sceSifRemoveRpcQueue"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceEENetRegDevmanIfNameFunc": {"44d5ad4aff5f0f3c990214997bde99220ad3efc4": {"211abed9": {"type": "FUNCTION", "size": 32, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceEENetGetDeviceInfo": {"7ac49b2e50196a7a76a4f042188eaea4b4b12420": {"1cf9ea26": {"type": "FUNCTION", "size": 188, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_26", "symbol": "strlen"}, "88": {"type": "MIPS_26", "symbol": "strncmp"}, "112": {"type": "MIPS_26", "symbol": "strncpy"}, "128": {"type": "MIPS_26", "symbol": "strncpy"}}}}}, "_sce_eenet_bind_ent_devm_rpcs": {"2eabb3ea1937d1626c8a728a666c067a03519ee6": {"6bbe49c9": {"type": "FUNCTION", "size": 92, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "create_semafore", "original": ".text"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_26", "symbol": "sceEENetSifBindRpc", "scope": "LIBRARY"}}}}}, "_sce_eenet_unbind_ent_devm_rpcs": {"538039083ec32410c1ee646d66ac564125c98845": {"5c47a9b3": {"type": "FUNCTION", "size": 40, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_26", "symbol": "DeleteSema"}}}}}, "sceEENetNotifyEEDriverIsReady": {"e70604fcc2c3752b815b240b87c49b3f5598d344": {"39c66da0": {"type": "FUNCTION", "size": 116, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_26", "symbol": "WaitSema"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_26", "symbol": "sceEENetSifCallRpc", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "SignalSema"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceEENetNotifyEEDriverIsTerminated": {"323c098f8ced28a555f846e987fc6bd6477449e8": {"39c66da0": {"type": "FUNCTION", "size": 116, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_26", "symbol": "WaitSema"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_26", "symbol": "sceEENetSifCallRpc", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "SignalSema"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceEENetTime": {"a2971f22d2a8325b273b36b38660b8caec6c6888": {"25d8162d": {"type": "FUNCTION", "size": 64, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "sceEENetGettimeofday", "scope": "LIBRARY"}}}}}, "getanswer": {"793e7cb623106a21e1d216ad59e6f31af7113118": {"ee4e0b42": {"type": "FUNCTION", "size": 1940, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": [)PS2SDB", 8192}, + std::string_view{R"PS2SDB("2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "GetThreadId"}, "64": {"type": "MIPS_26", "symbol": "__sceEENetget_threadinfo", "scope": "LIBRARY"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetres_hnok"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetres_hnok"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetres_hnok"}, "188": {"type": "MIPS_HI16", "symbol": "__sceEENetres_dnok"}, "192": {"type": "MIPS_LO16", "symbol": "__sceEENetres_dnok"}, "204": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "272": {"type": "MIPS_26", "symbol": "__sceEENetThreadHErrno", "scope": "LIBRARY"}, "304": {"type": "MIPS_26", "symbol": "__sceEENetThreadHErrno", "scope": "LIBRARY"}, "340": {"type": "MIPS_26", "symbol": "__sceEENetdn_expand", "scope": "LIBRARY"}, "376": {"type": "MIPS_26", "symbol": "__sceEENetThreadHErrno", "scope": "LIBRARY"}, "416": {"type": "MIPS_26", "symbol": "__sceEENetThreadHErrno", "scope": "LIBRARY"}, "456": {"type": "MIPS_26", "symbol": "strlen"}, "480": {"type": "MIPS_26", "symbol": "__sceEENetThreadHErrno", "scope": "LIBRARY"}, "572": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "588": {"type": "MIPS_26", "symbol": "__sceEENetThreadHErrno", "scope": "LIBRARY"}, "660": {"type": "MIPS_26", "symbol": "__sceEENetdn_expand", "scope": "LIBRARY"}, "716": {"type": "MIPS_26", "symbol": "__sceEENet_getshort", "scope": "LIBRARY"}, "732": {"type": "MIPS_26", "symbol": "__sceEENet_getshort", "scope": "LIBRARY"}, "748": {"type": "MIPS_26", "symbol": "__sceEENet_getshort", "scope": "LIBRARY"}, "864": {"type": "MIPS_26", "symbol": "__sceEENetdn_expand", "scope": "LIBRARY"}, "928": {"type": "MIPS_26", "symbol": "strlen"}, "952": {"type": "MIPS_26", "symbol": "strlen"}, "996": {"type": "MIPS_26", "symbol": "strcpy"}, "1060": {"type": "MIPS_26", "symbol": "__sceEENetdn_expand", "scope": "LIBRARY"}, "1080": {"type": "MIPS_26", "symbol": "__sceEENetres_dnok", "scope": "LIBRARY"}, "1108": {"type": "MIPS_26", "symbol": "strlen"}, "1148": {"type": "MIPS_26", "symbol": "strcpy"}, "1232": {"type": "MIPS_26", "symbol": "strcasecmp"}, "1264": {"type": "MIPS_26", "symbol": "__sceEENetdn_expand", "scope": "LIBRARY"}, "1284": {"type": "MIPS_26", "symbol": "__sceEENetres_hnok", "scope": "LIBRARY"}, "1376": {"type": "MIPS_26", "symbol": "strlen"}, "1412": {"type": "MIPS_26", "symbol": "strcasecmp"}, "1464": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "1496": {"type": "MIPS_26", "symbol": "sceEENetNtohl", "scope": "LIBRARY"}, "1540": {"type": "MIPS_26", "symbol": "strlen"}, "1636": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "1716": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "1764": {"type": "MIPS_26", "symbol": "strlen"}, "1804": {"type": "MIPS_26", "symbol": "strcpy"}, "1820": {"type": "MIPS_26", "symbol": "__sceEENetThreadHErrno", "scope": "LIBRARY"}, "1844": {"type": "MIPS_26", "symbol": "__sceEENetThreadHErrno", "scope": "LIBRARY"}, "1864": {"type": "MIPS_26", "symbol": "__sceEENetThreadHErrno", "scope": "LIBRARY"}, "1880": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}}}}}, "sceEENetGethostbyname": {"78414712804fc3b223daeab7629dca0ea6458662": {"08712c33": {"type": "FUNCTION", "size": 44, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetres_retrans"}, "4": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetres_retry"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetres_retrans"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetres_retry"}, "24": {"type": "MIPS_26", "symbol": "sceEENetGethostbynameTO", "scope": "LIBRARY", "original": ".text"}}}}}, "sceEENetGethostbynameTO": {"2d6f14fc5d2657561332fc29b31e4fd9309f415f": {"239f762c": {"type": "FUNCTION", "size": 200, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "__sceEENetthread_enter", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "__sceEENetres_init", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "__sceEENetThreadHErrno", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "__sceEENetthread_leave", "scope": "LIBRARY"}, "140": {"type": "MIPS_26", "symbol": "__sceEENetthread_leave", "scope": "LIBRARY"}, "160": {"type": "MIPS_26", "symbol": "sceEENetGethostbyname2TO", "scope": "LIBRARY", "original": ".text"}}}}}, "sceEENetGethostbyname2": {"a069c4ed4dfb55ecc5406807a465be9f2ee47024": {"6ed5dfbe": {"type": "FUNCTION", "size": 44, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetres_retrans"}, "4": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetres_retry"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetres_retrans"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetres_retry"}, "24": {"type": "MIPS_26", "symbol": "sceEENetGethostbyname2TO", "scope": "LIBRARY", "original": ".text"}}}}}, "sceEENetGethostbyname2TO": {"915fd2f44e76bf83c306037d890d0dd1780600b6": {"28d889f6": {"type": "FUNCTION", "size": 956, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "__sceEENetthread_enter", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "__sceEENetres_init", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "__sceEENetThreadHErrno", "scope": "LIBRARY"}, "144": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "160": {"type": "MIPS_26", "symbol": "__sceEENetThreadHErrno", "scope": "LIBRARY"}, "192": {"type": "MIPS_26", "symbol": "memset"}, "212": {"type": "MIPS_26", "symbol": "__sceEENetThreadHErrno", "scope": "LIBRARY"}, "224": {"type": "MIPS_26", "symbol": "__sceEENetThreadErrno", "scope": "LIBRARY"}, "252": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "292": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "332": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "372": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "404": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "428": {"type": "MIPS_26", "symbol": "strchr"}, "512": {"type": "MIPS_26", "symbol": "sceEENetInetPton", "scope": "LIBRARY"}, "536": {"type": "MIPS_26", "symbol": "strncpy"}, "608": {"type": "MIPS_26", "symbol": "__sceEENetThreadHErrno", "scope": "LIBRARY"}, "624": {"type": "MIPS_26", "symbol": "__sceEENetthread_leave", "scope": "LIBRARY"}, "644": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "728": {"type": "MIPS_26", "symbol": "__sceEENetThreadHErrno", "scope": "LIBRARY"}, "740": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "744": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "748": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "752": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "756": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "760": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "764": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "768": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "776": {"type": "MIPS_26", "symbol": "strlen"}, "812": {"type": "MIPS_26", "symbol": "__sceE)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ENetnsdispatch", "scope": "LIBRARY"}, "836": {"type": "MIPS_26", "symbol": "__sceEENetthread_leave", "scope": "LIBRARY"}, "852": {"type": "MIPS_26", "symbol": "__sceEENetThreadHErrno", "scope": "LIBRARY"}, "872": {"type": "MIPS_26", "symbol": "__sceEENetthread_leave", "scope": "LIBRARY"}, "888": {"type": "MIPS_26", "symbol": "__sceEENetThreadHErrno", "scope": "LIBRARY"}, "904": {"type": "MIPS_26", "symbol": "__sceEENetthread_leave", "scope": "LIBRARY"}}}}}, "sceEENetGethostbyaddr": {"c2d4c675f09b2a0689818a6527868b9c61fddab9": {"55a6ebe9": {"type": "FUNCTION", "size": 44, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetres_retrans"}, "4": {"type": "MIPS_HI16", "symbol": "", "original": "__sceEENetres_retry"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetres_retrans"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "__sceEENetres_retry"}, "24": {"type": "MIPS_26", "symbol": "sceEENetGethostbyaddrTO", "scope": "LIBRARY", "original": ".text"}}}}}, "sceEENetGethostbyaddrTO": {"fda78ffb4950733685a41f4220ef20abb3c2483c": {"03dbadc2": {"type": "FUNCTION", "size": 440, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "__sceEENetthread_enter", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "__sceEENetres_init", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "__sceEENetThreadHErrno", "scope": "LIBRARY"}, "148": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "172": {"type": "MIPS_26", "symbol": "memset"}, "192": {"type": "MIPS_26", "symbol": "__sceEENetThreadErrno", "scope": "LIBRARY"}, "204": {"type": "MIPS_26", "symbol": "__sceEENetThreadHErrno", "scope": "LIBRARY"}, "236": {"type": "MIPS_26", "symbol": "__sceEENetThreadErrno", "scope": "LIBRARY"}, "248": {"type": "MIPS_26", "symbol": "__sceEENetThreadHErrno", "scope": "LIBRARY"}, "272": {"type": "MIPS_26", "symbol": "__sceEENetThreadHErrno", "scope": "LIBRARY"}, "284": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "288": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "292": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "296": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "312": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "332": {"type": "MIPS_26", "symbol": "__sceEENetnsdispatch", "scope": "LIBRARY"}, "356": {"type": "MIPS_26", "symbol": "__sceEENetthread_leave", "scope": "LIBRARY"}, "372": {"type": "MIPS_26", "symbol": "__sceEENetThreadHErrno", "scope": "LIBRARY"}, "388": {"type": "MIPS_26", "symbol": "__sceEENetthread_leave", "scope": "LIBRARY"}}}}}, "__sceEENet_dns_gethtbyname": {"a1ef1ea5aa2c2c745297971d11f4723f03962175": {"0809df3a": {"type": "FUNCTION", "size": 252, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "__sceEENetThreadHErrno", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "__sceEENetres_search", "scope": "LIBRARY"}, "128": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "152": {"type": "MIPS_26", "symbol": "getanswer", "original": ".text"}, "164": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "__sceEENetThreadHErrno", "scope": "LIBRARY"}}}}}, "__sceEENet_dns_gethtbyaddr": {"aa85276142559ab27f29eddb45800692857b8d82": {"da869a20": {"type": "FUNCTION", "size": 480, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "GetThreadId"}, "68": {"type": "MIPS_26", "symbol": "__sceEENetget_threadinfo", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "120": {"type": "MIPS_26", "symbol": "__sceEENetThreadHErrno", "scope": "LIBRARY"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "180": {"type": "MIPS_26", "symbol": "snprintf"}, "188": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "208": {"type": "MIPS_26", "symbol": "__sceEENetThreadHErrno", "scope": "LIBRARY"}, "240": {"type": "MIPS_26", "symbol": "__sceEENetres_query", "scope": "LIBRARY"}, "260": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "284": {"type": "MIPS_26", "symbol": "getanswer", "original": ".text"}, "296": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "304": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "320": {"type": "MIPS_26", "symbol": "__sceEENetThreadHErrno", "scope": "LIBRARY"}, "376": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "404": {"type": "MIPS_26", "symbol": "__sceEENetThreadHErrno", "scope": "LIBRARY"}, "424": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}}}}}, "sceEENetInetLnaof": {"c45a2e29d570f093ffcb7ca3cccc73edf7fcb97e": {"f945cf67": {"type": "FUNCTION", "size": 80, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceEENetNtohl", "scope": "LIBRARY"}}}}}, "sceEENetInetNetof": {"14e4b024c6d515013123aee50f7a9302a2f0d422": {"f945cf67": {"type": "FUNCTION", "size": 68, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceEENetNtohl", "scope": "LIBRARY"}}}}}, "sceEENetInetNetwork": {"7a0baecf8dd509b474600ea06e86ff7399c3c0c3": {"202fb01f": {"type": "FUNCTION", "size": 436, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"100": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "312": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}}}}}, "sceEENetInetNtoa": {"d2093f6af58e1fa171083773dcf0bae782fb8cd9": {"87edeca9": {"type": "FUNCTION", "size": 96, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_26", "symbol": "sceEENetInetNtop", "scope": "LIBRARY"}}}}}, "sceEENetInetNtop": {"639ca3e4a035f23a8c07fd6393359affa9094a6c": {"16f86dc0": {"type": "FUNCTION", "size": 176, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "__sceEENetthread_enter", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "inet_ntop4", "original": ".text"}, "92": {"type": "MIPS_26", "symbol": "__sceEE)PS2SDB", 8192}, + std::string_view{R"PS2SDB(Netthread_leave", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "__sceEENetThreadErrno", "scope": "LIBRARY"}, "120": {"type": "MIPS_26", "symbol": "__sceEENetThreadErrno", "scope": "LIBRARY"}, "132": {"type": "MIPS_26", "symbol": "__sceEENetthread_leave", "scope": "LIBRARY"}}}}}, "inet_ntop4": {"388219282a2484b6156cec4d1cb2f49b2c12c5ed": {"94b783d0": {"type": "FUNCTION", "size": 136, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "52": {"type": "MIPS_26", "symbol": "snprintf"}, "80": {"type": "MIPS_26", "symbol": "__sceEENetThreadErrno", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "strcpy"}}}}}, "sceEENetInetPton": {"6e470d06a4a6f96e009b9f1cf26ba4fbbadf9e2f": {"cb6a5683": {"type": "FUNCTION", "size": 164, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "__sceEENetthread_enter", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "inet_pton4", "scope": "LIBRARY", "original": ".text"}, "84": {"type": "MIPS_26", "symbol": "__sceEENetthread_leave", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "__sceEENetThreadErrno", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "__sceEENetThreadErrno", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "__sceEENetthread_leave", "scope": "LIBRARY"}}}}}, "inet_pton4": {"255443e11d2d353669191bf50df018884d17a120": {"bcf22d63": {"type": "FUNCTION", "size": 708, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "368": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "436": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "444": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "644": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "664": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}}}}}, "sceEENetInetAddr": {"13401d602dfc16da99e20daeb0f80c571f250711": {"08f6df2e": {"type": "FUNCTION", "size": 48, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "inet_pton4", "scope": "LIBRARY", "original": ".text"}}}}}, "sceEENetInetAton": {"e1e028210078668942189d5d8a2c4d8d4b00a4fa": {"dcc793a9": {"type": "FUNCTION", "size": 28, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "inet_pton4", "scope": "LIBRARY", "original": ".text"}}}}}, "__sceEENetnsdispatch": {"3a88f31df18f32ac6ff636b1ed8978a476053648": {"dc293b54": {"type": "FUNCTION", "size": 316, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"176": {"type": "MIPS_26", "symbol": "strcasecmp"}}}}}, "__sceEENetdn_expand": {"6e68a151b040be380bdc640b0f61da36bc173d6e": {"dd7cc061": {"type": "FUNCTION", "size": 64, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "ns_name_uncompress", "scope": "LIBRARY", "original": ".text"}}}}}, "__sceEENetdn_comp": {"7ba17f652620d1a8770717ffc05543c774ba24f8": {"0f2e9421": {"type": "FUNCTION", "size": 28, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "ns_name_compress", "scope": "LIBRARY", "original": ".text"}}}}}, "__sceEENet__dn_skipname": {"014f315864dd9cff07cb19c8bad62ad872d86199": {"ecc906cd": {"type": "FUNCTION", "size": 68, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "ns_name_skip", "scope": "LIBRARY", "original": ".text"}}}}}, "__sceEENetres_hnok": {"ad5828d9f8e5d70340ac08f0c1e0080484062338": {"00000000": {"type": "FUNCTION", "size": 192, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "__sceEENetres_ownok": {"00f7b70198885444cd6d27f86c127447aeb6ec0d": {"d4cd19e0": {"type": "FUNCTION", "size": 72, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "__sceEENetres_hnok", "scope": "LIBRARY", "original": ".text"}}}}}, "__sceEENetres_mailok": {"ee6553d8fcf493543d9f118a6aa283bd9fe717eb": {"0ea48caf": {"type": "FUNCTION", "size": 176, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"144": {"type": "MIPS_26", "symbol": "__sceEENetres_hnok", "scope": "LIBRARY", "original": ".text"}}}}}, "__sceEENetres_dnok": {"0a51c4576b328c658248fa6ed7424368135bf323": {"00000000": {"type": "FUNCTION", "size": 48, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "__sceEENet_getshort": {"bb0b594a0ddbfd608faf6ca359da459ba67b8f51": {"00000000": {"type": "FUNCTION", "size": 20, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "__sceEENet_getlong": {"d305531204db958d228e9809e5cab73569fdba40": {"00000000": {"type": "FUNCTION", "size": 44, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "__sceEENet__putshort": {"6882b63b89bf9f70fd7f1aa34a57221445d4bd5a": {"00000000": {"type": "FUNCTION", "size": 20, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "__sceEENet__putlong": {"b52efe8ea8c511aeaca0999f1018b14fc8e687bd": {"00000000": {"type": "FUNCTION", "size": 32, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "ns_name_ntop": {"22bfc9489f857d2d6e50a262645d4b5f97b83e67": {"d9b9e7ad": {"type": "FUNCTION", "size": 488, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"128": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_26", "symbol": "special", "scope": "LIBRARY", "original": ".text"}, "200": {"type": "MIPS_26", "symbol": "printable", "scope": "LIBRARY", "original": ".text"}, "404": {"type": "MIPS_26", "symbol": "__sceEENetThreadErrno", "scope": "LIBRARY"}}}}}, "ns_name_pton": {"e4592c2a4151e56791c88f966477f833a98bcab3": {"10a8cd88": {"type": "FUNCTION", "size": 572, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"92": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_26", "symbol": "strchr"}, "144": {"type": "MIPS_26", "symbol)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": "strchr"}, "188": {"type": "MIPS_26", "symbol": "strchr"}, "204": {"type": "MIPS_26", "symbol": "__sceEENetThreadErrno", "scope": "LIBRARY"}, "504": {"type": "MIPS_26", "symbol": "__sceEENetThreadErrno", "scope": "LIBRARY"}}}}}, "ns_name_unpack": {"6c544d01bcf67808a203b810905c290e6fed15bc": {"2911d541": {"type": "FUNCTION", "size": 432, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"96": {"type": "MIPS_26", "symbol": "__sceEENetThreadErrno", "scope": "LIBRARY"}, "228": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "316": {"type": "MIPS_26", "symbol": "__sceEENetThreadErrno", "scope": "LIBRARY"}}}}}, "ns_name_pack": {"5b3ae5fcbeeb4151b1017294f6b64148798d561a": {"8c41ec10": {"type": "FUNCTION", "size": 544, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"276": {"type": "MIPS_26", "symbol": "dn_find", "scope": "LIBRARY", "original": ".text"}, "424": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "468": {"type": "MIPS_26", "symbol": "__sceEENetThreadErrno", "scope": "LIBRARY"}}}}}, "ns_name_uncompress": {"de0a4401246a20a4c41a5aa9f799dddde2d75823": {"6386a8db": {"type": "FUNCTION", "size": 184, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "ns_name_unpack", "scope": "LIBRARY", "original": ".text"}, "120": {"type": "MIPS_26", "symbol": "ns_name_ntop", "scope": "LIBRARY", "original": ".text"}, "136": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}}}}}, "ns_name_compress": {"51720e248c55e162219b87151212c48e3edddce7": {"0e3b32d5": {"type": "FUNCTION", "size": 184, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "ns_name_pton", "scope": "LIBRARY", "original": ".text"}, "124": {"type": "MIPS_26", "symbol": "ns_name_pack", "scope": "LIBRARY", "original": ".text"}, "136": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}}}}}, "ns_name_skip": {"cefa36f72308805e6d6ad738fed44ca454df5be4": {"8dd691f9": {"type": "FUNCTION", "size": 144, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "__sceEENetThreadErrno", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "__sceEENetThreadErrno", "scope": "LIBRARY"}}}}}, "special": {"f2627d58baffa68212040e8772290c60123b2455": {"61fe2c30": {"type": "FUNCTION", "size": 56, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "printable": {"8fb609d71f1accd099fbbcfb8230c19a464e41a1": {"00000000": {"type": "FUNCTION", "size": 12, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "mklower": {"8c5bd50e27255172f51d13fe9c7e7308faaf8102": {"00000000": {"type": "FUNCTION", "size": 32, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "dn_find": {"3b0d1000b4068bb01a189826169eb9ecb245d7ea": {"6eeef6a3": {"type": "FUNCTION", "size": 336, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"116": {"type": "MIPS_26", "symbol": "__sceEENetThreadErrno", "scope": "LIBRARY"}, "152": {"type": "MIPS_26", "symbol": "mklower", "scope": "LIBRARY", "original": ".text"}, "168": {"type": "MIPS_26", "symbol": "mklower", "scope": "LIBRARY", "original": ".text"}, "268": {"type": "MIPS_26", "symbol": "__sceEENetThreadErrno", "scope": "LIBRARY"}}}}}, "sceEENetSetResolvTO": {"722a91784091909b5ae5a4c8fc068c7ee05cc1bd": {"5c073f3f": {"type": "FUNCTION", "size": 20, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__sceEENetSetDefaultResolvTO": {"e1c89f6431244a6a78ddd7ad795344996b7a4d10": {"78402087": {"type": "FUNCTION", "size": 12, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_26", "symbol": "sceEENetSetResolvTO", "scope": "LIBRARY", "original": ".text"}}}}}, "sceEENetGetResolvTO": {"b269f6944e20e12c6fa4772a353e38d966f7e38a": {"46ea8ba1": {"type": "FUNCTION", "size": 40, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__sceEENetres_init": {"ef6f269bbdca5f9107b2916fdfd4104429eb1959": {"de74d54e": {"type": "FUNCTION", "size": 432, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": "__sce_eenet_dns"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": "__sce_eenet_dns"}, "100": {"type": "MIPS_26", "symbol": "__sceEENetres_randomid", "scope": "LIBRARY", "original": ".text"}, "136": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "204": {"type": "MIPS_26", "symbol": "memset"}, "220": {"type": "MIPS_26", "symbol": "sceEENetInetPton", "scope": "LIBRARY"}, "248": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "288": {"type": "MIPS_26", "symbol": "memset"}, "324": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "336": {"type": "MIPS_LO16", "symbol": "", "original": "__sce_eenet_dns"}}}}}, "__sceEENetres_randomid": {"ae5c1c4731ee97a123271be3a0a66d0edc6907b5": {"7a9bfead": {"type": "FUNCTION", "size": 68, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceEENetGettimeofday", "scope": "LIBRARY"}, "20": {"type": "MIPS_26", "symbol": "GetThreadId"}}}}}, "__sceEENetres_mkquery": {"7611c167e13b8f04eb5a321d0faa5da8166ae2a7": {"727474f7": {"type": "FUNCTION", "size": 768, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"72": {"type": "MIPS_26", "symbol": "GetThreadId"}, "80": {"type": "MIPS_26", "symbol": "__sceEENetget_threadinfo", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "__sceEENetres_init", "scope": "LIBRARY"}, "136": {"type": "MIPS_26", "symbol": "__sceEENetThreadHErrno", "scope": "LIBRARY"}, "184": {"type": "MIPS_26", "symbol": "memset"}, "208": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "400": {"type": "MIPS_26", "symb)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ol": "__sceEENetdn_comp", "scope": "LIBRARY"}, "432": {"type": "MIPS_26", "symbol": "__sceEENet__putshort", "scope": "LIBRARY"}, "444": {"type": "MIPS_26", "symbol": "__sceEENet__putshort", "scope": "LIBRARY"}, "456": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "512": {"type": "MIPS_26", "symbol": "__sceEENetdn_comp", "scope": "LIBRARY"}, "532": {"type": "MIPS_26", "symbol": "__sceEENet__putshort", "scope": "LIBRARY"}, "548": {"type": "MIPS_26", "symbol": "__sceEENet__putshort", "scope": "LIBRARY"}, "564": {"type": "MIPS_26", "symbol": "__sceEENet__putlong", "scope": "LIBRARY"}, "580": {"type": "MIPS_26", "symbol": "__sceEENet__putshort", "scope": "LIBRARY"}, "632": {"type": "MIPS_26", "symbol": "__sceEENet__putshort", "scope": "LIBRARY"}, "648": {"type": "MIPS_26", "symbol": "__sceEENet__putshort", "scope": "LIBRARY"}, "660": {"type": "MIPS_26", "symbol": "__sceEENet__putlong", "scope": "LIBRARY"}, "672": {"type": "MIPS_26", "symbol": "__sceEENet__putshort", "scope": "LIBRARY"}, "696": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "704": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}}}}}, "__sceEENetres_query": {"a187754ed2058d51ea9ebfb67eb2dcce53d2f7b8": {"5e775f77": {"type": "FUNCTION", "size": 564, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "__sceEENetThreadErrno", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "__sceEENetThreadHErrno", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "GetThreadId"}, "132": {"type": "MIPS_26", "symbol": "__sceEENetget_threadinfo", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "__sceEENetres_init", "scope": "LIBRARY"}, "192": {"type": "MIPS_26", "symbol": "__sceEENetThreadHErrno", "scope": "LIBRARY"}, "240": {"type": "MIPS_26", "symbol": "__sceEENetres_mkquery", "scope": "LIBRARY"}, "260": {"type": "MIPS_26", "symbol": "__sceEENetThreadHErrno", "scope": "LIBRARY"}, "288": {"type": "MIPS_26", "symbol": "__sceEENetres_send", "scope": "LIBRARY"}, "308": {"type": "MIPS_26", "symbol": "__sceEENetThreadErrno", "scope": "LIBRARY"}, "332": {"type": "MIPS_26", "symbol": "__sceEENetThreadHErrno", "scope": "LIBRARY"}, "352": {"type": "MIPS_26", "symbol": "__sceEENetThreadHErrno", "scope": "LIBRARY"}, "384": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "408": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "416": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "436": {"type": "MIPS_26", "symbol": "__sceEENetThreadHErrno", "scope": "LIBRARY"}, "452": {"type": "MIPS_26", "symbol": "__sceEENetThreadHErrno", "scope": "LIBRARY"}, "468": {"type": "MIPS_26", "symbol": "__sceEENetThreadHErrno", "scope": "LIBRARY"}, "484": {"type": "MIPS_26", "symbol": "__sceEENetThreadHErrno", "scope": "LIBRARY"}, "512": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}}}}}, "__sceEENetres_search": {"b9d1aa440e9df2920ba3edfb77a52f1afde0b84d": {"63ebc4da": {"type": "FUNCTION", "size": 264, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "GetThreadId"}, "56": {"type": "MIPS_26", "symbol": "__sceEENetget_threadinfo", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "__sceEENetres_init", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "__sceEENetThreadHErrno", "scope": "LIBRARY"}, "128": {"type": "MIPS_26", "symbol": "__sceEENetThreadErrno", "scope": "LIBRARY"}, "136": {"type": "MIPS_26", "symbol": "__sceEENetThreadHErrno", "scope": "LIBRARY"}, "172": {"type": "MIPS_26", "symbol": "__sceEENetres_querydomain", "scope": "LIBRARY", "original": ".text"}, "192": {"type": "MIPS_26", "symbol": "__sceEENetThreadErrno", "scope": "LIBRARY"}}}}}, "__sceEENetres_querydomain": {"2545f9a034ae1c091c12e3ad4477870abb3caa32": {"1e30e4f2": {"type": "FUNCTION", "size": 484, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"72": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "__sceEENetThreadErrno", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "__sceEENetThreadHErrno", "scope": "LIBRARY"}, "128": {"type": "MIPS_26", "symbol": "GetThreadId"}, "136": {"type": "MIPS_26", "symbol": "__sceEENetget_threadinfo", "scope": "LIBRARY"}, "172": {"type": "MIPS_26", "symbol": "__sceEENetres_init", "scope": "LIBRARY"}, "196": {"type": "MIPS_26", "symbol": "__sceEENetThreadHErrno", "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "strlen"}, "280": {"type": "MIPS_26", "symbol": "strncpy"}, "308": {"type": "MIPS_26", "symbol": "strlen"}, "320": {"type": "MIPS_26", "symbol": "strlen"}, "344": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "348": {"type": "MIPS_26", "symbol": "__sceEENetThreadHErrno", "scope": "LIBRARY"}, "372": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "380": {"type": "MIPS_26", "symbol": "sprintf"}, "404": {"type": "MIPS_26", "symbol": "__sceEENetres_query", "scope": "LIBRARY", "original": ".text"}, "424": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}}}}}, "__sceEENetres_send_setqhook": {"379568001121d67192b561489fbcf0e0086b0eb3": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__sceEENetres_send_setrhook": {"379568001121d67192b561489fbcf0e0086b0eb3": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__sceEENetres_isourserver": {"3b7f8d8ba68ea607dcfa746aedb15fb730a86627": {"cef72b13": {"type": "FUNCTION", "size": 184, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "GetThreadId"}, "20": {"type": "MIPS_26", "symbol": "__sceEENetget_threadinfo", "scope": "LIBRARY"}}}}}, "__sceEENetres_nameinquery": {"edb9a9ae841b5dfcb6adddde34e75486ebae3e2d": {"0acf6ca7": {"type": "FUNCTION", "size": 344, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "__sceEENetThreadErrno", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "__sceEENetThreadHErrno", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "__sceEENetdn_expand", "scope": "LIBRARY"}, "200": {"type": "MIPS_26", "symbol": "__sceEENet_getshort", "scope": "LIBRARY"}, "216": {"type": "MIPS_26", "symbol": "__sceEENet_getshort", "scope": "LIBRARY"}, "244": {"type": "MIPS_26", "symbol": "strcasecmp"}, "284": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}}}}}, "__sceEENetres_queriesmatch": {"20fa556018133cac1470636c7bc24228fdf8cbde": {"ae757c6e": {"type": "FUNCTION", "size": 396, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "10)PS2SDB", 8192}, + std::string_view{R"PS2SDB(0": {"type": "MIPS_26", "symbol": "__sceEENetThreadErrno", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "__sceEENetThreadHErrno", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "224": {"type": "MIPS_26", "symbol": "__sceEENetdn_expand", "scope": "LIBRARY"}, "256": {"type": "MIPS_26", "symbol": "__sceEENet_getshort", "scope": "LIBRARY"}, "272": {"type": "MIPS_26", "symbol": "__sceEENet_getshort", "scope": "LIBRARY"}, "300": {"type": "MIPS_26", "symbol": "__sceEENetres_nameinquery", "scope": "LIBRARY", "original": ".text"}, "336": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}}}}}, "__sceEENetres_send": {"a35ee55bddf684dc5d6d1db025a982685189b3f7": {"1d012072": {"type": "FUNCTION", "size": 2972, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "GetThreadId"}, "68": {"type": "MIPS_26", "symbol": "__sceEENetget_threadinfo", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "__sceEENetres_init", "scope": "LIBRARY"}, "132": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "152": {"type": "MIPS_26", "symbol": "__sceEENetThreadErrno", "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "__sceEENetThreadErrno", "scope": "LIBRARY"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "424": {"type": "MIPS_26", "symbol": "__sceEENetres_close", "scope": "LIBRARY", "original": ".text"}, "440": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "476": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "528": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "536": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "584": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "652": {"type": "MIPS_26", "symbol": "__sceEENetres_close", "scope": "LIBRARY", "original": ".text"}, "688": {"type": "MIPS_26", "symbol": "sceEENetSocket", "scope": "LIBRARY"}, "720": {"type": "MIPS_26", "symbol": "__sceEENetThreadErrno", "scope": "LIBRARY"}, "752": {"type": "MIPS_26", "symbol": "__sceEENetres_close", "scope": "LIBRARY", "original": ".text"}, "768": {"type": "MIPS_26", "symbol": "__sceEENetThreadErrno", "scope": "LIBRARY"}, "792": {"type": "MIPS_26", "symbol": "sceEENetConnect", "scope": "LIBRARY"}, "808": {"type": "MIPS_26", "symbol": "__sceEENetThreadErrno", "scope": "LIBRARY"}, "864": {"type": "MIPS_26", "symbol": "__sceEENet__putshort", "scope": "LIBRARY"}, "936": {"type": "MIPS_26", "symbol": "sceEENetSendmsg", "scope": "LIBRARY"}, "960": {"type": "MIPS_26", "symbol": "__sceEENetThreadErrno", "scope": "LIBRARY"}, "1024": {"type": "MIPS_26", "symbol": "sceEENetRecv", "scope": "LIBRARY"}, "1076": {"type": "MIPS_26", "symbol": "__sceEENetThreadErrno", "scope": "LIBRARY"}, "1088": {"type": "MIPS_26", "symbol": "__sceEENetres_close", "scope": "LIBRARY", "original": ".text"}, "1124": {"type": "MIPS_26", "symbol": "__sceEENetres_close", "scope": "LIBRARY", "original": ".text"}, "1140": {"type": "MIPS_26", "symbol": "__sceEENet_getshort", "scope": "LIBRARY"}, "1272": {"type": "MIPS_26", "symbol": "sceEENetRecv", "scope": "LIBRARY"}, "1348": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "1416": {"type": "MIPS_26", "symbol": "sceEENetRecv", "scope": "LIBRARY"}, "1440": {"type": "MIPS_26", "symbol": "__sceEENetThreadErrno", "scope": "LIBRARY"}, "1460": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "1496": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "1584": {"type": "MIPS_26", "symbol": "__sceEENetres_close", "scope": "LIBRARY", "original": ".text"}, "1620": {"type": "MIPS_26", "symbol": "sceEENetSocket", "scope": "LIBRARY"}, "1712": {"type": "MIPS_26", "symbol": "sceEENetConnect", "scope": "LIBRARY"}, "1728": {"type": "MIPS_26", "symbol": "__sceEENetThreadErrno", "scope": "LIBRARY"}, "1780": {"type": "MIPS_26", "symbol": "sceEENetSend", "scope": "LIBRARY"}, "1800": {"type": "MIPS_26", "symbol": "__sceEENetThreadErrno", "scope": "LIBRARY"}, "1872": {"type": "MIPS_26", "symbol": "sceEENetConnect", "scope": "LIBRARY"}, "1884": {"type": "MIPS_26", "symbol": "__sceEENetThreadErrno", "scope": "LIBRARY"}, "1920": {"type": "MIPS_26", "symbol": "sceEENetSendto", "scope": "LIBRARY"}, "1940": {"type": "MIPS_26", "symbol": "__sceEENetThreadErrno", "scope": "LIBRARY"}, "2004": {"type": "MIPS_26", "symbol": "__divdi3"}, "2028": {"type": "MIPS_26", "symbol": "sceEENetTime", "scope": "LIBRARY"}, "2088": {"type": "MIPS_26", "symbol": "sceEENetPoll", "scope": "LIBRARY"}, "2120": {"type": "MIPS_26", "symbol": "__sceEENetres_close", "scope": "LIBRARY", "original": ".text"}, "2136": {"type": "MIPS_26", "symbol": "__sceEENetThreadErrno", "scope": "LIBRARY"}, "2184": {"type": "MIPS_26", "symbol": "sceEENetRecvfrom", "scope": "LIBRARY"}, "2208": {"type": "MIPS_26", "symbol": "__sceEENetThreadErrno", "scope": "LIBRARY"}, "2224": {"type": "MIPS_26", "symbol": "__sceEENetres_close", "scope": "LIBRARY", "original": ".text"}, "2336": {"type": "MIPS_26", "symbol": "__sceEENetres_isourserver", "scope": "LIBRARY", "original": ".text"}, "2392": {"type": "MIPS_26", "symbol": "__sceEENetres_queriesmatch", "scope": "LIBRARY", "original": ".text"}, "2464": {"type": "MIPS_26", "symbol": "__sceEENetres_close", "scope": "LIBRARY", "original": ".text"}, "2540": {"type": "MIPS_26", "symbol": "__sceEENetres_close", "scope": "LIBRARY", "original": ".text"}, "2608": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "2612": {"type": "MIPS_26", "symbol": "__sceEENetres_close", "scope": "LIBRARY", "original": ".text"}, "2620": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "2624": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "2644": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "2688": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2696": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "2744": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "2808": {"type": "MIPS_26", "symbol": "__sceEENetres_close", "scope": "LIBRARY", "original": ".text"}, "2836": {"type": "MIPS_26", "symbol": "__sceEENetThreadErrno", "scope": "LIBRARY"}, "2856": {"type": "MIPS_26", "symbol": "__sceEENetThreadErrno", "scope": "LIBRARY"}, "2876": {"type": "MIPS_26", "symbol": "__sceEENetThreadErrno", "scope": "LIBRARY"}, "2888": {"type": "MIPS_26", "symbol": "__sceEENetThreadHErrno", "scope": "LIBRARY"}, "2908": {"type": "MIPS_26", "symbol": "__sceEENetThreadErrno", "scope": "LIBRARY"}}}}}, "__sceEENetres_close": {"1a9f3e02b8613e390b41ede0e75d44be0b160231": {"82df61eb": {"type": "FUNCTION", "size": 92, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "sceEENetClose", "scope": "LIBRARY"}}}}}, "_sce_eenet_sppp_open": {"0a0e5429741f4a4f8f6e801f6eb0dc3dd95dc0c7": {"04584093": {"type": "FUNCTION", "size": 212, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "memset"}, "48": {"type": "MIPS_26", "symbol": "strncpy"}, "72": {"type": "MIPS_26", "symbol": "sceEENetIoctl", "scope": "LIBRARY"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "108": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "120": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "144": {"type": "MIPS_26", "symbol": "_sce_eenet_if_addinaddr", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "_sce_eenet_if_updown", "scope": "LIBRARY"}}}}}, "_sce_eenet_sppp_state": {"6f921b7d378bfb4b38e72b3ddb0929103e66e2ad": {"6bf40691": {"type": "FUNCTION", "size": 128, "library": "libe)PS2SDB", 8192}, + std::string_view{R"PS2SDB(enet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "memset"}, "48": {"type": "MIPS_26", "symbol": "strncpy"}, "72": {"type": "MIPS_26", "symbol": "sceEENetIoctl", "scope": "LIBRARY"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "_sce_eenet_sppp_error_code": {"9890310cbc9c31d046cfd01af6e78800a470979f": {"c44e483d": {"type": "FUNCTION", "size": 212, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "memset"}, "56": {"type": "MIPS_26", "symbol": "strncpy"}, "80": {"type": "MIPS_26", "symbol": "sceEENetIoctl", "scope": "LIBRARY"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "_sce_eenet_sppp_close": {"9a0aa26388d69509b5216431d41a70511e4b3f74": {"3511b48f": {"type": "FUNCTION", "size": 76, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "_sce_eenet_if_updown", "scope": "LIBRARY"}, "36": {"type": "MIPS_26", "symbol": "_sce_eenet_if_clearinaddr", "scope": "LIBRARY"}}}}}, "_sce_eenet_sppp_config_param": {"1f31c95fcff94c6252041e8f0cdd18e2d502a6e4": {"2201dddd": {"type": "FUNCTION", "size": 548, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "memset"}, "56": {"type": "MIPS_26", "symbol": "strncpy"}, "152": {"type": "MIPS_26", "symbol": "strncpy"}, "176": {"type": "MIPS_26", "symbol": "strncpy"}, "304": {"type": "MIPS_26", "symbol": "strncpy"}, "328": {"type": "MIPS_26", "symbol": "strncpy"}, "444": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "464": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "488": {"type": "MIPS_26", "symbol": "sceEENetIoctl", "scope": "LIBRARY"}, "504": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "512": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "516": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "_sce_eenet_sppp_config_mtu": {"113b12e75080a05bf536f23e6213e7c6313d6f43": {"6f93e039": {"type": "FUNCTION", "size": 164, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "memset"}, "48": {"type": "MIPS_26", "symbol": "strncpy"}, "72": {"type": "MIPS_26", "symbol": "sceEENetIoctl", "scope": "LIBRARY"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_26", "symbol": "_sce_eenet_if_set_mtu", "scope": "LIBRARY"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "132": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}}}}}, "_sce_eenet_sppp_config_address": {"84f1c90d07b0140eaaaaffbe68b9d900196412eb": {"97f0f5c5": {"type": "FUNCTION", "size": 364, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "memset"}, "56": {"type": "MIPS_26", "symbol": "strncpy"}, "80": {"type": "MIPS_26", "symbol": "sceEENetIoctl", "scope": "LIBRARY"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_26", "symbol": "memset"}, "132": {"type": "MIPS_26", "symbol": "strncpy"}, "192": {"type": "MIPS_26", "symbol": "memset"}, "208": {"type": "MIPS_26", "symbol": "strncpy"}, "232": {"type": "MIPS_26", "symbol": "sceEENetIoctl", "scope": "LIBRARY"}, "248": {"type": "MIPS_26", "symbol": "__sceEENetThreadErrno", "scope": "LIBRARY"}, "268": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "300": {"type": "MIPS_26", "symbol": "sceEENetIoctl", "scope": "LIBRARY"}, "316": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "324": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "328": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}}}}}, "_sce_eenet_sppp_config_dns_and_route": {"ef4b7c70f5fd53b29d921d0f1c81aa011b56966a": {"a9e52a9f": {"type": "FUNCTION", "size": 336, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "memset"}, "60": {"type": "MIPS_26", "symbol": "strncpy"}, "84": {"type": "MIPS_26", "symbol": "sceEENetIoctl", "scope": "LIBRARY"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_26", "symbol": "sceEENetInetNtop", "scope": "LIBRARY"}, "176": {"type": "MIPS_26", "symbol": "sceEENetInetNtop", "scope": "LIBRARY"}, "208": {"type": "MIPS_26", "symbol": "sceEENetInetNtop", "scope": "LIBRARY"}, "252": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "264": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "284": {"type": "MIPS_26", "symbol": "sceEENetSetDNSAddr", "scope": "LIBRARY"}, "296": {"type": "MIPS_26", "symbol": "_sce_eenet_add_default_route", "scope": "LIBRARY"}}}}}, "_sce_eenet_sppp_is_ipcp_up": {"11edfc721b40ed3804c394cdf06ecaf15247796c": {"6bf40691": {"type": "FUNCTION", "size": 136, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "memset"}, "48": {"type": "MIPS_26", "symbol": "strncpy"}, "72": {"type": "MIPS_26", "symbol": "sceEENetIoctl", "scope": "LIBRARY"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "_sce_eenet_sppp_auth_message": {"6891d3052a4d4daa8ec69330d3f94c17a349b759": {"1e792a5e": {"type": "FUNCTION", "size": 160, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "memset"}, "56": {"type": "MIPS_26", "symbol": "strncpy"}, "80": {"type": "MIPS_26", "symbol": "sceEENetIoctl", "scope": "LIBRARY"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "124": {"type": "MIPS_26", "symbol": "strncpy"}}}}}, "_sce_eenet_sppp_phone_number": {"c17b9aae0f8c5362542c6a9bedeea33474d6bf6c": {"1e792a5e": {"type": "FUNCTION", "size": 160, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "memset"}, "56": {"type": "MIPS_26", "symbol": "strncpy"}, "80": {"type": "MIPS_26", "symbol": "sceEENetIoctl", "scope": "LIBRARY)PS2SDB", 8192}, + std::string_view{R"PS2SDB("}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "124": {"type": "MIPS_26", "symbol": "strncpy"}}}}}, "_sce_eenet_if_updown": {"323e6f17d995ba0d41471e91dcedf705722afa9d": {"14bc2046": {"type": "FUNCTION", "size": 236, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "sceEENetSocket", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "memset"}, "84": {"type": "MIPS_26", "symbol": "strncpy"}, "108": {"type": "MIPS_26", "symbol": "sceEENetIoctl", "scope": "LIBRARY"}, "188": {"type": "MIPS_26", "symbol": "sceEENetIoctl", "scope": "LIBRARY"}, "200": {"type": "MIPS_26", "symbol": "sceEENetClose", "scope": "LIBRARY"}}}}}, "_sce_eenet_if_setaddr": {"f4652ae38c246b5fd6e21f51ace7e4e9a13bce2c": {"3e6355ec": {"type": "FUNCTION", "size": 436, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"80": {"type": "MIPS_26", "symbol": "sceEENetSocket", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "memset"}, "128": {"type": "MIPS_26", "symbol": "strncpy"}, "156": {"type": "MIPS_26", "symbol": "sceEENetIoctl", "scope": "LIBRARY"}, "176": {"type": "MIPS_26", "symbol": "memset"}, "192": {"type": "MIPS_26", "symbol": "strncpy"}, "216": {"type": "MIPS_26", "symbol": "sceEENetIoctl", "scope": "LIBRARY"}, "240": {"type": "MIPS_26", "symbol": "__sceEENetThreadErrno", "scope": "LIBRARY"}, "272": {"type": "MIPS_26", "symbol": "memset"}, "292": {"type": "MIPS_26", "symbol": "strncpy"}, "312": {"type": "MIPS_26", "symbol": "sceEENetInetAton", "scope": "LIBRARY"}, "332": {"type": "MIPS_26", "symbol": "sceEENetInetAton", "scope": "LIBRARY"}, "360": {"type": "MIPS_26", "symbol": "sceEENetIoctl", "scope": "LIBRARY"}, "380": {"type": "MIPS_26", "symbol": "sceEENetClose", "scope": "LIBRARY"}}}}}, "_sce_eenet_if_setmediatype": {"6ba2d0698cea7f086a89a0078ac8664ad3c1201a": {"81a8fe0b": {"type": "FUNCTION", "size": 256, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "sceEENetSocket", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "memset"}, "100": {"type": "MIPS_26", "symbol": "strncpy"}, "124": {"type": "MIPS_26", "symbol": "sceEENetIoctl", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "strncpy"}, "196": {"type": "MIPS_26", "symbol": "sceEENetIoctl", "scope": "LIBRARY"}, "212": {"type": "MIPS_26", "symbol": "sceEENetClose", "scope": "LIBRARY"}}}}}, "_sce_eenet_if_addinaddr": {"d7dd13335f0ebee1ee041f4011f482e195777b9c": {"82b66a25": {"type": "FUNCTION", "size": 276, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "sceEENetSocket", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "memset"}, "100": {"type": "MIPS_26", "symbol": "strncpy"}, "212": {"type": "MIPS_26", "symbol": "sceEENetIoctl", "scope": "LIBRARY"}, "232": {"type": "MIPS_26", "symbol": "sceEENetClose", "scope": "LIBRARY"}}}}}, "_sce_eenet_if_clearinaddr": {"8a303498d6d391038c5ddf0ba01bf18de9b08ad3": {"382c19a4": {"type": "FUNCTION", "size": 180, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "sceEENetSocket", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "memset"}, "84": {"type": "MIPS_26", "symbol": "strncpy"}, "108": {"type": "MIPS_26", "symbol": "sceEENetIoctl", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "__sceEENetThreadErrno", "scope": "LIBRARY"}, "144": {"type": "MIPS_26", "symbol": "sceEENetClose", "scope": "LIBRARY"}}}}}, "_sce_eenet_wait_for_cable_connected": {"f0e0e44b733de1591e0d38491c1502cdc755de01": {"bf2b2a10": {"type": "FUNCTION", "size": 156, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "PollSema"}, "60": {"type": "MIPS_26", "symbol": "DelayThread"}, "88": {"type": "MIPS_26", "symbol": "sceEENetGetIfinfo", "scope": "LIBRARY"}}}}}, "_sce_eenet_if_set_mtu": {"cb4faaf676da72c0479938621227747b065d00b5": {"f669e208": {"type": "FUNCTION", "size": 160, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "sceEENetSocket", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "memset"}, "84": {"type": "MIPS_26", "symbol": "strncpy"}, "112": {"type": "MIPS_26", "symbol": "sceEENetIoctl", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "sceEENetClose", "scope": "LIBRARY"}}}}}, "_sce_eenet_set_route": {"a2c4ae6765955b9cca7efd30a9958117ff0bd5cb": {"699a9418": {"type": "FUNCTION", "size": 472, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "sceEENetSocket", "scope": "LIBRARY"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_26", "symbol": "memset"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "220": {"type": "MIPS_26", "symbol": "__sceEENetmemmove", "scope": "LIBRARY"}, "288": {"type": "MIPS_26", "symbol": "__sceEENetmemmove", "scope": "LIBRARY"}, "356": {"type": "MIPS_26", "symbol": "__sceEENetmemmove", "scope": "LIBRARY"}, "384": {"type": "MIPS_26", "symbol": "sceEENetSend", "scope": "LIBRARY"}, "404": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "412": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "416": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "420": {"type": "MIPS_26", "symbol": "sceEENetClose", "scope": "LIBRARY"}}}}}, "_sce_eenet_add_default_route": {"49dab9719f0d2d6004b6000a40b327c2d198d82c": {"6f6b477e": {"type": "FUNCTION", "size": 216, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "memset"}, "68": {"type": "MIPS_26", "symbol": "memset"}, "88": {"type": "MIPS_26", "symbol": "memset"}, "132": {"type": "MIPS_26", "symbol": "sceEENetInetPton", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "_sce_eenet_set_route", "scope": "LIBRARY", "original": ".text"}}}}}, "_sce_eenet_delete_default_route": {"15efcf1551d8dcdd9f4f55f8ea22d1f510da1f02": {"671f4dc3": {"type": "FUNCTION", "size": 136, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "memset"}, "56": {"type": "MIPS_26", "symbol": "memset"}, "96": {"type": "MIPS_26", "symbol": "_sce_eenet_set_route", "scope": "LIBRARY", "original": ".text"}}}}}, "_sce_eenet_set_arp_rtmsg": {"5828f800b19992a8f9b0329ca2f1680afde17c24": {"d8c95e67": {"type": "FUNCTION", "size": 636, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"76": {"type": "MIPS_26", "symbol": "GetThreadId"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_LO16", "symbol": ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(", "original": ".rodata"}, "108": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "136": {"type": "MIPS_26", "symbol": "memset"}, "240": {"type": "MIPS_26", "symbol": "__sceEENetmemmove", "scope": "LIBRARY"}, "312": {"type": "MIPS_26", "symbol": "__sceEENetmemmove", "scope": "LIBRARY"}, "384": {"type": "MIPS_26", "symbol": "__sceEENetmemmove", "scope": "LIBRARY"}, "424": {"type": "MIPS_26", "symbol": "sceEENetSend", "scope": "LIBRARY"}, "448": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "452": {"type": "MIPS_26", "symbol": "__sceEENetThreadErrno", "scope": "LIBRARY"}, "456": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "468": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "496": {"type": "MIPS_26", "symbol": "sceEENetRecv", "scope": "LIBRARY"}, "552": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "560": {"type": "MIPS_26", "symbol": "__sceEENetThreadErrno", "scope": "LIBRARY"}, "564": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "576": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}}}}}, "_sce_eenet_set_arp": {"26e0d34d5a8947a4fc04d04844ffb3ab2cc55db6": {"0b7327a6": {"type": "FUNCTION", "size": 508, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "sceEENetSocket", "scope": "LIBRARY"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "108": {"type": "MIPS_26", "symbol": "memset"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "188": {"type": "MIPS_26", "symbol": "_sce_eenet_set_arp_rtmsg", "scope": "LIBRARY", "original": ".text"}, "340": {"type": "MIPS_26", "symbol": "memset"}, "392": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "400": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "444": {"type": "MIPS_26", "symbol": "_sce_eenet_set_arp_rtmsg", "scope": "LIBRARY", "original": ".text"}, "456": {"type": "MIPS_26", "symbol": "sceEENetClose", "scope": "LIBRARY"}}}}}, "_sce_eenet_delete_arp": {"d3d36b6af2465a97e2f825fdb728fabe97527062": {"7a6a3c9c": {"type": "FUNCTION", "size": 404, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "sceEENetSocket", "scope": "LIBRARY"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_26", "symbol": "memset"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "176": {"type": "MIPS_26", "symbol": "_sce_eenet_set_arp_rtmsg", "scope": "LIBRARY", "original": ".text"}, "312": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "336": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "348": {"type": "MIPS_26", "symbol": "_sce_eenet_set_arp_rtmsg", "scope": "LIBRARY", "original": ".text"}, "360": {"type": "MIPS_26", "symbol": "sceEENetClose", "scope": "LIBRARY"}}}}}, "_sce_eenet_flush_route": {"964b63c902509d73a230dd1ecee62828e217924d": {"cb7dc477": {"type": "FUNCTION", "size": 600, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "__sceEENetget_ifindex", "scope": "LIBRARY"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "132": {"type": "MIPS_26", "symbol": "sceEENetSysctl", "scope": "LIBRARY"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "172": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "204": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "224": {"type": "MIPS_26", "symbol": "memset"}, "252": {"type": "MIPS_26", "symbol": "sceEENetSysctl", "scope": "LIBRARY"}, "268": {"type": "MIPS_26", "symbol": "__sceEENetThreadErrno", "scope": "LIBRARY"}, "288": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "292": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "312": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "332": {"type": "MIPS_26", "symbol": "sceEENetSocket", "scope": "LIBRARY"}, "352": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "360": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "364": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "376": {"type": "MIPS_26", "symbol": "sceEENetShutdown", "scope": "LIBRARY"}, "472": {"type": "MIPS_26", "symbol": "sceEENetSend", "scope": "LIBRARY"}, "532": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "548": {"type": "MIPS_26", "symbol": "sceEENetClose", "scope": "LIBRARY"}}}}}, "__sceEENetroutecommon_init": {"93e79986dc217bc035e25064b448ee2defcbb878": {"5c073f3f": {"type": "FUNCTION", "size": 20, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "check_wait_offer": {"b1260a68167acaf1f5de693c0d4026f4f5e47945": {"494c373e": {"type": "FUNCTION", "size": 680, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"188": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "236": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "256": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "280": {"type": "MIPS_26", "symbol": "_sce_eenet_dhclient_cksum", "scope": "LIBRARY"}, "292": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "340": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "356": {"type": "MIPS_26", "symbol": "_sce_eenet_dhclient_udp_cksum", "scope": "LIBRARY"}, "368": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "380": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "400": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "412": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "432": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "440": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "444": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "456": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "464": {"type": "MI)PS2SDB", 8192}, + std::string_view{R"PS2SDB(PS_LO16", "symbol": "", "original": ".rodata"}, "468": {"type": "MIPS_26", "symbol": "memcmp"}, "480": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "488": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "508": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "544": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "560": {"type": "MIPS_26", "symbol": "_sce_eenet_dhclient_pickup_opt", "scope": "LIBRARY"}, "580": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "588": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "592": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "612": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "620": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "624": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}}}}}, "check_requesting": {"7b3ac0cbd0b4eec4eae766396a64044eeaa8d938": {"64dac57d": {"type": "FUNCTION", "size": 588, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"188": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "236": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "256": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "280": {"type": "MIPS_26", "symbol": "_sce_eenet_dhclient_cksum", "scope": "LIBRARY"}, "292": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "340": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "356": {"type": "MIPS_26", "symbol": "_sce_eenet_dhclient_udp_cksum", "scope": "LIBRARY"}, "368": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "376": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "380": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "412": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "420": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "424": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "456": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "464": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "468": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "480": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "488": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "492": {"type": "MIPS_26", "symbol": "memcmp"}, "504": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "512": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "532": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}}}}}, "dhclient_exit": {"d4fc4a16957db64a5183dc4ced5a112e56b226f8": {"cde66b58": {"type": "FUNCTION", "size": 176, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "DeleteSema"}, "52": {"type": "MIPS_26", "symbol": "sceEENetBpfClose", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "sceEENetBpfClose", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "132": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "152": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}}}}}, "dhcp_term": {"9ff40a9d601b7f8bb012194f40174ca8fd6341b6": {"f7dd66c7": {"type": "FUNCTION", "size": 248, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "_sce_eenet_dhclient_make_release", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "_sce_eenet_dhclient_send_unicast", "scope": "LIBRARY"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "108": {"type": "MIPS_26", "symbol": "sceEENetInetNtoa", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "136": {"type": "MIPS_26", "symbol": "DelayThread"}, "148": {"type": "MIPS_26", "symbol": "_sce_eenet_delete_arp", "scope": "LIBRARY"}, "160": {"type": "MIPS_26", "symbol": "_sce_eenet_dhclient_reset_if", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "dhclient_exit", "scope": "LIBRARY", "original": ".text"}, "208": {"type": "MIPS_26", "symbol": "GetThreadId"}, "216": {"type": "MIPS_26", "symbol": "sceEENetFreeThreadinfo", "scope": "LIBRARY"}, "240": {"type": "MIPS_26", "symbol": "ExitDeleteThread"}}}}}, "dhcp_sleep": {"927dd4b742e32535250722c7f961caf4da08e226": {"c2acab22": {"type": "FUNCTION", "size": 116, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "DelayThread"}, "52": {"type": "MIPS_26", "symbol": "PollSema"}, "76": {"type": "MIPS_26", "symbol": "dhcp_term", "scope": "LIBRARY", "original": ".text"}}}}}, "init": {"3adba897c260e5e0c838d0d6806343016e4e16c2": {"9948fe39": {"type": "FUNCTION", "size": 192, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "_sce_eenet_dhclient_reset_if", "scope": "LIBRARY"}, "44": {"type": "MIPS_26", "symbol": "_sce_eenet_dhclient_make_discover", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "_sce_eenet_dhclient_udp_cksum", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "sceEENetBpfWrite", "scope": "LIBRARY"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "152": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "wait_offer": {"08a0433ee6d1d0069fe86696efa2c0511dfeb28b": {"bbf8e052": {"type": "FUNCTION", "size": 1096, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "_sce_eenet_dhclient_clean_param", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "__sceEENetrandom", "scope": "LIBRARY"}, "128": {"type": "MIPS_26", "symbol": "__sceEENetrandom", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "sceEENetTime", "scope": "LIBRARY"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "284": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "300": {"type": "MIPS_26", "symbol": "sceEENetInetNtoa", "scope": "LIBRARY"}, "332": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "360": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "388": {"type": "MIPS_26", "symbol": "sceEENetBpfRead", "scope": "LIBRARY"}, "404": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "408": {"type": "MIPS_26", "symbol": "PollSema"}, "428": {"type": "MIPS_26", "symbol": "dhcp_term", "scope": "LIBRARY", "original": ".text"}, "444": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "548": {"type": "MIPS_26", "symbol": "check_wait_offer", "scope": "LIBRARY", "original": ".text"}, "588": {"type": "MIPS_26", "symbol": "sceEENetInetNtoa", "scope": "LIBRARY"}, "604": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "608": {"type": "M)PS2SDB", 8192}, + std::string_view{R"PS2SDB(IPS_LO16", "symbol": "", "original": ".rodata"}, "620": {"type": "MIPS_26", "symbol": "memset"}, "648": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "660": {"type": "MIPS_26", "symbol": "_sce_eenet_dhclient_dhcp_msgchk", "scope": "LIBRARY"}, "696": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "712": {"type": "MIPS_26", "symbol": "_sce_eenet_dhclient_dhcp_msgtoparam", "scope": "LIBRARY"}, "752": {"type": "MIPS_26", "symbol": "_sce_eenet_dhclient_arp_check", "scope": "LIBRARY"}, "768": {"type": "MIPS_26", "symbol": "_sce_eenet_dhclient_clean_param", "scope": "LIBRARY"}, "836": {"type": "MIPS_26", "symbol": "sceEENetTime", "scope": "LIBRARY"}, "852": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "860": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "864": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "908": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "912": {"type": "MIPS_26", "symbol": "_sce_eenet_dhclient_rexmt", "scope": "LIBRARY"}, "944": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "948": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "968": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "976": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "980": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1044": {"type": "MIPS_26", "symbol": "dhcp_term", "scope": "LIBRARY", "original": ".text"}}}}}, "selecting": {"933300cb102f531ae06e78c14310024301c51a21": {"ef8e8f45": {"type": "FUNCTION", "size": 128, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "_sce_eenet_dhclient_make_request", "scope": "LIBRARY"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_26", "symbol": "sceEENetBpfWrite", "scope": "LIBRARY"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "requesting": {"61732f0a816eebd86c5532f253979490bc15dea6": {"71b6827c": {"type": "FUNCTION", "size": 1536, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_26", "symbol": "__sceEENetrandom", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "__sceEENetrandom", "scope": "LIBRARY"}, "164": {"type": "MIPS_26", "symbol": "sceEENetTime", "scope": "LIBRARY"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "280": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "292": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "296": {"type": "MIPS_26", "symbol": "sceEENetInetNtoa", "scope": "LIBRARY"}, "328": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "356": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "380": {"type": "MIPS_26", "symbol": "sceEENetBpfRead", "scope": "LIBRARY"}, "396": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "400": {"type": "MIPS_26", "symbol": "PollSema"}, "420": {"type": "MIPS_26", "symbol": "dhcp_term", "scope": "LIBRARY", "original": ".text"}, "436": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "440": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "444": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "448": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "548": {"type": "MIPS_26", "symbol": "check_requesting", "scope": "LIBRARY", "original": ".text"}, "584": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "600": {"type": "MIPS_26", "symbol": "_sce_eenet_dhclient_pickup_opt", "scope": "LIBRARY"}, "652": {"type": "MIPS_26", "symbol": "sceEENetInetNtoa", "scope": "LIBRARY"}, "660": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "668": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "684": {"type": "MIPS_26", "symbol": "memset"}, "712": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "728": {"type": "MIPS_26", "symbol": "_sce_eenet_dhclient_pickup_opt", "scope": "LIBRARY"}, "748": {"type": "MIPS_26", "symbol": "_sce_eenet_dhclient_nvttostr", "scope": "LIBRARY"}, "756": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "764": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "768": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "776": {"type": "MIPS_26", "symbol": "_sce_eenet_dhclient_clean_param", "scope": "LIBRARY"}, "824": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "836": {"type": "MIPS_26", "symbol": "_sce_eenet_dhclient_dhcp_msgchk", "scope": "LIBRARY"}, "872": {"type": "MIPS_26", "symbol": "sceEENetInetNtoa", "scope": "LIBRARY"}, "880": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "888": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "916": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "932": {"type": "MIPS_26", "symbol": "_sce_eenet_dhclient_dhcp_msgtoparam", "scope": "LIBRARY"}, "952": {"type": "MIPS_26", "symbol": "_sce_eenet_dhclient_arp_check", "scope": "LIBRARY"}, "968": {"type": "MIPS_26", "symbol": "sceEENetTime", "scope": "LIBRARY"}, "980": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "996": {"type": "MIPS_26", "symbol": "sceEENetInetNtoa", "scope": "LIBRARY"}, "1008": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1020": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1036": {"type": "MIPS_26", "symbol": "_sce_eenet_dhclient_arp_reply", "scope": "LIBRARY"}, "1052": {"type": "MIPS_26", "symbol": "_sce_eenet_dhclient_make_decline", "scope": "LIBRARY"}, "1064": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1080": {"type": "MIPS_26", "symbol": "sceEENetBpfWrite", "scope": "LIBRARY"}, "1100": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1116": {"type": "MIPS_26", "symbol": "sceEENetInetNtoa", "scope": "LIBRARY"}, "1124": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1132": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1140": {"type": "MIPS_26", "symbol": "_sce_eenet_dhclient_clean_param", "scope": "LIBRARY"}, "1216": {"type": "MIPS_26", "symbol": "sceEENetTime", "scope": "LIBRARY"}, "1232": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1240": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1244": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1288": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1292": {"type": "MIPS_26", "symbol": "_sce_eenet_dhclient_rexmt", "scope": "LIBRARY"}, "1328": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1348": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1356": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1360": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1380": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1384": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1400": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1408": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1412": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1476": {"type": "MIPS_26", "symbol": "dhcp_term", "scope": "LIBRARY", "original": ".text"}}}}}, "bound": {"24c28d6522e52debbc0fc54822c36914293470ce": {"8a42ec52": {"type": "FUNCTION", "size": 632, "library": "libeenet", "scope": "LOCAL")PS2SDB", 8192}, + std::string_view{R"PS2SDB(, "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "_sce_eenet_dhclient_config_if", "scope": "LIBRARY"}, "40": {"type": "MIPS_26", "symbol": "_sce_eenet_dhclient_config_dns_and_route", "scope": "LIBRARY"}, "140": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "164": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "188": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "204": {"type": "MIPS_26", "symbol": "dhclient_arp_resolv", "scope": "LIBRARY"}, "224": {"type": "MIPS_26", "symbol": "dhcp_term", "scope": "LIBRARY", "original": ".text"}, "252": {"type": "MIPS_26", "symbol": "_sce_eenet_set_arp", "scope": "LIBRARY"}, "304": {"type": "MIPS_26", "symbol": "dhcp_sleep", "scope": "LIBRARY", "original": ".text"}, "312": {"type": "MIPS_26", "symbol": "sceEENetTime", "scope": "LIBRARY"}, "328": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "376": {"type": "MIPS_26", "symbol": "_sce_eenet_dhclient_make_request", "scope": "LIBRARY"}, "388": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "416": {"type": "MIPS_26", "symbol": "_sce_eenet_dhclient_send_unicast", "scope": "LIBRARY"}, "460": {"type": "MIPS_26", "symbol": "_sce_eenet_dhclient_make_request", "scope": "LIBRARY"}, "476": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "484": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "488": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "512": {"type": "MIPS_26", "symbol": "sceEENetBpfWrite", "scope": "LIBRARY"}, "532": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "540": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "544": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "564": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "572": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "576": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "renewing": {"f332c0beb4c337eb06fa658e6889f724d14b7726": {"bcb8b15e": {"type": "FUNCTION", "size": 1348, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_26", "symbol": "__sceEENetrandom", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "__sceEENetrandom", "scope": "LIBRARY"}, "164": {"type": "MIPS_26", "symbol": "sceEENetTime", "scope": "LIBRARY"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "256": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "276": {"type": "MIPS_26", "symbol": "sceEENetInetNtoa", "scope": "LIBRARY"}, "304": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "332": {"type": "MIPS_26", "symbol": "sceEENetBpfRead", "scope": "LIBRARY"}, "348": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "352": {"type": "MIPS_26", "symbol": "PollSema"}, "372": {"type": "MIPS_26", "symbol": "dhcp_term", "scope": "LIBRARY", "original": ".text"}, "396": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "400": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "404": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "508": {"type": "MIPS_26", "symbol": "check_requesting", "scope": "LIBRARY", "original": ".text"}, "544": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "560": {"type": "MIPS_26", "symbol": "_sce_eenet_dhclient_pickup_opt", "scope": "LIBRARY"}, "604": {"type": "MIPS_26", "symbol": "sceEENetInetNtoa", "scope": "LIBRARY"}, "612": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "620": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "636": {"type": "MIPS_26", "symbol": "memset"}, "664": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "680": {"type": "MIPS_26", "symbol": "_sce_eenet_dhclient_pickup_opt", "scope": "LIBRARY"}, "700": {"type": "MIPS_26", "symbol": "_sce_eenet_dhclient_nvttostr", "scope": "LIBRARY"}, "708": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "716": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "720": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "728": {"type": "MIPS_26", "symbol": "_sce_eenet_dhclient_clean_param", "scope": "LIBRARY"}, "800": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "812": {"type": "MIPS_26", "symbol": "_sce_eenet_dhclient_dhcp_msgchk", "scope": "LIBRARY"}, "848": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "864": {"type": "MIPS_26", "symbol": "_sce_eenet_dhclient_dhcp_msgtoparam", "scope": "LIBRARY"}, "880": {"type": "MIPS_26", "symbol": "sceEENetTime", "scope": "LIBRARY"}, "892": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "908": {"type": "MIPS_26", "symbol": "sceEENetInetNtoa", "scope": "LIBRARY"}, "916": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "924": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "944": {"type": "MIPS_26", "symbol": "sceEENetInetNtoa", "scope": "LIBRARY"}, "956": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "968": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "984": {"type": "MIPS_26", "symbol": "_sce_eenet_dhclient_arp_reply", "scope": "LIBRARY"}, "1056": {"type": "MIPS_26", "symbol": "sceEENetTime", "scope": "LIBRARY"}, "1072": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1084": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1120": {"type": "MIPS_26", "symbol": "_sce_eenet_dhclient_make_request", "scope": "LIBRARY"}, "1136": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1144": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1148": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1172": {"type": "MIPS_26", "symbol": "sceEENetBpfWrite", "scope": "LIBRARY"}, "1192": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1200": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1204": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1236": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1240": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1256": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1260": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1272": {"type": "MIPS_26", "symbol": "_sce_eenet_dhclient_send_unicast", "scope": "LIBRARY"}}}}}, "rebinding": {"2014f15e15eedc193f586d0dc739a3315c6b5c5c": {"fe137f4f": {"type": "FUNCTION", "size": 1292, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"72": {"type": "MIPS_26", "symbol": "sceEENetTime", "scope": "LIBRARY"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_26", "symbol": "__sceEENetrandom", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "__sceEENetrandom", "scope": "LIBRARY"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "292": {"type": "MIPS_26", "symbol": "sceEENetInetNtoa", "scope": "LIBRARY"}, "324": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "352": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "380": {"type": "MIPS_26", "symbol": "sceEENetBpfRead", "scope": "LIBRARY"}, "396": {"type": "MIPS_HI16", "symbol": "", "original": ".ro)PS2SDB", 8192}, + std::string_view{R"PS2SDB(data"}, "400": {"type": "MIPS_26", "symbol": "PollSema"}, "420": {"type": "MIPS_26", "symbol": "dhcp_term", "scope": "LIBRARY", "original": ".text"}, "444": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "448": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "452": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "556": {"type": "MIPS_26", "symbol": "check_requesting", "scope": "LIBRARY", "original": ".text"}, "592": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "608": {"type": "MIPS_26", "symbol": "_sce_eenet_dhclient_pickup_opt", "scope": "LIBRARY"}, "640": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "644": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "660": {"type": "MIPS_26", "symbol": "memset"}, "688": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "704": {"type": "MIPS_26", "symbol": "_sce_eenet_dhclient_pickup_opt", "scope": "LIBRARY"}, "724": {"type": "MIPS_26", "symbol": "_sce_eenet_dhclient_nvttostr", "scope": "LIBRARY"}, "732": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "740": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "748": {"type": "MIPS_26", "symbol": "_sce_eenet_dhclient_clean_param", "scope": "LIBRARY"}, "808": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "820": {"type": "MIPS_26", "symbol": "_sce_eenet_dhclient_dhcp_msgchk", "scope": "LIBRARY"}, "856": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "872": {"type": "MIPS_26", "symbol": "_sce_eenet_dhclient_dhcp_msgtoparam", "scope": "LIBRARY"}, "880": {"type": "MIPS_26", "symbol": "sceEENetTime", "scope": "LIBRARY"}, "892": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "908": {"type": "MIPS_26", "symbol": "sceEENetInetNtoa", "scope": "LIBRARY"}, "916": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "924": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "944": {"type": "MIPS_26", "symbol": "sceEENetInetNtoa", "scope": "LIBRARY"}, "956": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "960": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "972": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "988": {"type": "MIPS_26", "symbol": "_sce_eenet_dhclient_arp_reply", "scope": "LIBRARY"}, "1060": {"type": "MIPS_26", "symbol": "sceEENetTime", "scope": "LIBRARY"}, "1076": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1084": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1088": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1124": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1132": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1136": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1180": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1184": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1200": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1204": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1216": {"type": "MIPS_26", "symbol": "_sce_eenet_dhclient_rexmt", "scope": "LIBRARY"}}}}}, "sceEENetDhcpClient": {"fbc34f189c70c45fc2acc6013f639cda69d518f5": {"0be3f587": {"type": "FUNCTION", "size": 336, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_26", "symbol": "memset"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_26", "symbol": "memset"}, "120": {"type": "MIPS_26", "symbol": "strncpy"}, "140": {"type": "MIPS_26", "symbol": "strncpy"}, "188": {"type": "MIPS_26", "symbol": "_sce_eenet_dhclient", "scope": "LIBRARY", "original": ".text"}, "220": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "_sce_eenet_dhclient": {"8730ccdf0e38b82073a09977b889204c341dc7f8": {"0c6c0425": {"type": "FUNCTION", "size": 1472, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"100": {"type": "MIPS_26", "symbol": "_sce_eenet_dhclient_reset_if", "scope": "LIBRARY"}, "128": {"type": "MIPS_26", "symbol": "sceEENetBpfOpen", "scope": "LIBRARY"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "152": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "168": {"type": "MIPS_26", "symbol": "sceEENetBpfOpen", "scope": "LIBRARY"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "192": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "208": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "228": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "252": {"type": "MIPS_26", "symbol": "memset"}, "276": {"type": "MIPS_26", "symbol": "strncpy"}, "328": {"type": "MIPS_26", "symbol": "_sce_eenet_dhclient_getmac", "scope": "LIBRARY"}, "420": {"type": "MIPS_26", "symbol": "memset"}, "436": {"type": "MIPS_26", "symbol": "strncpy"}, "460": {"type": "MIPS_26", "symbol": "sceEENetBpfIoctl", "scope": "LIBRARY"}, "476": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "484": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "488": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "512": {"type": "MIPS_26", "symbol": "sceEENetBpfIoctl", "scope": "LIBRARY"}, "528": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "536": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "540": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "560": {"type": "MIPS_26", "symbol": "sceEENetBpfIoctl", "scope": "LIBRARY"}, "572": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "580": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "584": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "596": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "612": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "620": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "624": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "648": {"type": "MIPS_26", "symbol": "memset"}, "668": {"type": "MIPS_26", "symbol": "sceEENetBpfIoctl", "scope": "LIBRARY"}, "680": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "688": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "692": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "704": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "720": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "728": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "732": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "752": {"type": "MIPS_26", "symbol": "memset"}, "760": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "780": {"type": "MIPS_26", "symbol": "sceEENetBpfIoctl", "scope": "LIBRARY"}, "784": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "796": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "804": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "808": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "848": {"type": "MIPS_26", "symbol": "sceEENetBpfIoctl", "scope":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "LIBRARY"}, "864": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "872": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "876": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "916": {"type": "MIPS_26", "symbol": "sceEENetBpfIoctl", "scope": "LIBRARY"}, "932": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "940": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "944": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "960": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "976": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "984": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "988": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1012": {"type": "MIPS_26", "symbol": "memset"}, "1068": {"type": "MIPS_26", "symbol": "CreateSema"}, "1084": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1092": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1096": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1112": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "1120": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "1160": {"type": "MIPS_26", "symbol": "CreateThread"}, "1180": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1192": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1196": {"type": "MIPS_26", "symbol": "StartThread"}, "1208": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "1216": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "1232": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1240": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1244": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1264": {"type": "MIPS_26", "symbol": "_sce_eenet_dhclient_reset_if", "scope": "LIBRARY"}, "1280": {"type": "MIPS_26", "symbol": "DeleteThread"}, "1300": {"type": "MIPS_26", "symbol": "DeleteSema"}, "1328": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "1348": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "1368": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "1376": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "1392": {"type": "MIPS_26", "symbol": "sceEENetBpfClose", "scope": "LIBRARY"}, "1412": {"type": "MIPS_26", "symbol": "sceEENetBpfClose", "scope": "LIBRARY"}}}}}, "dhclient_thread": {"d7007a31c3f769f1baef8ad583d1432b2f0524cc": {"4894a20a": {"type": "FUNCTION", "size": 432, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "_sce_eenet_wait_for_cable_connected", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "sceEENetTime", "scope": "LIBRARY"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "200": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "252": {"type": "MIPS_26", "symbol": "PollSema"}, "276": {"type": "MIPS_26", "symbol": "dhcp_term", "scope": "LIBRARY", "original": ".text"}, "332": {"type": "MIPS_26", "symbol": "_sce_eenet_dhclient_reset_if", "scope": "LIBRARY"}, "340": {"type": "MIPS_26", "symbol": "dhclient_exit", "scope": "LIBRARY", "original": ".text"}, "380": {"type": "MIPS_26", "symbol": "GetThreadId"}, "388": {"type": "MIPS_26", "symbol": "sceEENetFreeThreadinfo", "scope": "LIBRARY"}, "424": {"type": "MIPS_26", "symbol": "ExitDeleteThread"}}}}}, "dhclient_stat": {"95dbdf14ca69ef447aa38bcd64d463aa16b6420e": {"b42e86fe": {"type": "FUNCTION", "size": 128, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}}}}}, "_sce_eenet_dhclient_udp_cksum": {"57f5e76c56cb02719782dbfadaecfbca6690fdb2": {"00000000": {"type": "FUNCTION", "size": 160, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_sce_eenet_dhclient_cksum": {"a80104d4c971fa0bd2fca176dfe2f8bf44b1ee28": {"00000000": {"type": "FUNCTION", "size": 76, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_sce_eenet_dhclient_reset_if": {"8b645fde72152bca931e6c5004d6badff0e679dc": {"40c3c2c3": {"type": "FUNCTION", "size": 100, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "_sce_eenet_if_clearinaddr", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "_sce_eenet_if_updown", "scope": "LIBRARY"}}}}}, "_sce_eenet_dhclient_config_if": {"960e70cb8ef5ce9ce9cf2e746f30230abfe683f3": {"fee479c9": {"type": "FUNCTION", "size": 588, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "sceEENetSocket", "scope": "LIBRARY"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_26", "symbol": "memset"}, "112": {"type": "MIPS_26", "symbol": "strncpy"}, "136": {"type": "MIPS_26", "symbol": "sceEENetIoctl", "scope": "LIBRARY"}, "152": {"type": "MIPS_26", "symbol": "__sceEENetThreadErrno", "scope": "LIBRARY"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "180": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "220": {"type": "MIPS_26", "symbol": "sceEENetIoctl", "scope": "LIBRARY"}, "236": {"type": "MIPS_26", "symbol": "__sceEENetThreadErrno", "scope": "LIBRARY"}, "256": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "264": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "304": {"type": "MIPS_26", "symbol": "sceEENetIoctl", "scope": "LIBRARY"}, "320": {"type": "MIPS_26", "symbol": "__sceEENetThreadErrno", "scope": "LIBRARY"}, "340": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "348": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "408": {"type": "MIPS_26", "symbol": "default_netmask", "scope": "LIBRARY", "original": ".text"}, "496": {"type": "MIPS_26", "symbol": "_sce_eenet_if_clearinaddr", "scope": "LIBRARY"}, "520": {"type": "MIPS_26", "symbol": "_sce_eenet_if_addinaddr", "scope": "LIBRARY"}, "536": {"type": "MIPS_26", "symbol": "sceEENetClose", "scope": "LIBRARY"}, "552": {"type": "MIPS_26", "symbol")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: "sceEENetClose", "scope": "LIBRARY"}}}}}, "_sce_eenet_dhclient_getmac": {"aadebbfe450293073eb2888ffe78ee26e4e1bc3a": {"a03741e2": {"type": "FUNCTION", "size": 76, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "sceEENetGetIfinfo", "scope": "LIBRARY"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "44": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "default_netmask": {"80bb70cfb234ffce6bb592a9688b46eccd39f184": {"8d9e610e": {"type": "FUNCTION", "size": 84, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}}}}}, "_sce_eenet_dhclient_config_dns_and_route": {"36ba74911e4075f9b8c2f88d9a25465a9f7d7aaf": {"ee8ee394": {"type": "FUNCTION", "size": 416, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "memset"}, "76": {"type": "MIPS_26", "symbol": "memset"}, "96": {"type": "MIPS_26", "symbol": "memset"}, "132": {"type": "MIPS_26", "symbol": "sceEENetInetNtop", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "sceEENetInetNtop", "scope": "LIBRARY"}, "204": {"type": "MIPS_26", "symbol": "sceEENetInetNtop", "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "strncmp"}, "244": {"type": "MIPS_26", "symbol": "strncmp"}, "268": {"type": "MIPS_26", "symbol": "strncmp"}, "324": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "332": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "336": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "352": {"type": "MIPS_26", "symbol": "sceEENetSetDNSAddr", "scope": "LIBRARY"}, "368": {"type": "MIPS_26", "symbol": "_sce_eenet_add_default_route", "scope": "LIBRARY"}}}}}, "dhclient_send_arp_req": {"7618374f0caa317645494bd200e165f5c23548d2": {"d110b8de": {"type": "FUNCTION", "size": 452, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "memset"}, "80": {"type": "MIPS_26", "symbol": "sceEENetNtohl", "scope": "LIBRARY"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_26", "symbol": "sceEENetBpfIoctl", "scope": "LIBRARY"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "152": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "316": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "332": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "340": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "368": {"type": "MIPS_26", "symbol": "sceEENetBpfWrite", "scope": "LIBRARY"}, "388": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "396": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "400": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "_sce_eenet_dhclient_arp_check": {"e59dec00d0d5724b1f3562e783618db9f92c7d7d": {"4d558b36": {"type": "FUNCTION", "size": 88, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "dhclient_send_arp_req", "scope": "LIBRARY", "original": ".text"}, "52": {"type": "MIPS_26", "symbol": "sceEENetBpfRead", "scope": "LIBRARY"}}}}}, "dhclient_arp_resolv": {"934aacbb79e1e7470b2bd9baeaa169630f1f4422": {"6957abad": {"type": "FUNCTION", "size": 256, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "dhclient_send_arp_req", "scope": "LIBRARY", "original": ".text"}, "88": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "sceEENetBpfRead", "scope": "LIBRARY"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_26", "symbol": "PollSema"}, "168": {"type": "MIPS_26", "symbol": "DelayThread"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "200": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "220": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "_sce_eenet_dhclient_arp_reply": {"271fa269522c3382c4ac081f1d11e57cc9d37930": {"577f98db": {"type": "FUNCTION", "size": 356, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "memset"}, "60": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "120": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "236": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "252": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "260": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "288": {"type": "MIPS_26", "symbol": "sceEENetBpfWrite", "scope": "LIBRARY"}, "304": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "312": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "_sce_eenet_dhclient_send_unicast": {"0462ea6683cdca685e25a68c0ca00a0b23495230": {"f34687c5": {"type": "FUNCTION", "size": 504, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "sceEENetSocket", "scope": "LIBRARY"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "108": {"type": "MIPS_26", "symbol": "memset"}, "124": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "136": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "156": {"type": "MIPS_26", "symbol": "sceEENetBind", "scope": "LIBRARY"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "180": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "208": {"type": "MIPS_26", "symbol": "sceEENetSetsockopt", "scope": "LIBRARY"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "232": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "268": {"type": "MIPS_26", "symbol": "sceEENetSetsockopt", "scope": "LIBRARY"}, "284": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "292": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "312": {"type": "MIPS_26", "symbol": "memset"}, "336": {)PS2SDB", 8192}, + std::string_view{R"PS2SDB("type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "372": {"type": "MIPS_26", "symbol": "memset"}, "412": {"type": "MIPS_26", "symbol": "sceEENetSendmsg", "scope": "LIBRARY"}, "424": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "432": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "436": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "440": {"type": "MIPS_26", "symbol": "sceEENetClose", "scope": "LIBRARY"}, "456": {"type": "MIPS_26", "symbol": "sceEENetClose", "scope": "LIBRARY"}}}}}, "_sce_eenet_dhclient_rexmt": {"ee1a6cecd3f3f0f2622954d6d60a04ee6b8f0600": {"43cf6388": {"type": "FUNCTION", "size": 204, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "sceEENetTime", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "_sce_eenet_dhclient_udp_cksum", "scope": "LIBRARY"}, "144": {"type": "MIPS_26", "symbol": "sceEENetBpfWrite", "scope": "LIBRARY"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "172": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "_sce_eenet_dhclient_dhcp_msgchk": {"f25d850c9e9d721a60c66970616d0964dbbfff5e": {"e06a152b": {"type": "FUNCTION", "size": 872, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "100": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "check_param", "scope": "LIBRARY", "original": ".text"}, "184": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "284": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "300": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "304": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "324": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "328": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "348": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "352": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "364": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "372": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "376": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "388": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "396": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "416": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "420": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "444": {"type": "MIPS_26", "symbol": "check_param", "scope": "LIBRARY", "original": ".text"}, "460": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "464": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "484": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "500": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "504": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "524": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "528": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "552": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "560": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "572": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "580": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "584": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "596": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "600": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "612": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "632": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "636": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "660": {"type": "MIPS_26", "symbol": "check_param", "scope": "LIBRARY", "original": ".text"}, "676": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "680": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "712": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "716": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "732": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "736": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "760": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "768": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "784": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "796": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "800": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "808": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "812": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}}}}}, "_sce_eenet_dhclient_pickup_opt": {"b8b566e2e5e99a4b7e810d0d6996071080742019": {"00000000": {"type": "FUNCTION", "size": 460, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_sce_eenet_dhclient_dhcp_msgtoparam": {"b668eab40d87fe333e0f63a2baf603e53b330a24": {"0c31b79e": {"type": "FUNCTION", "size": 2072, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "108": {"type": "MIPS_26", "symbol": "memset"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "160": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "228": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "236": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "260": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "284": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "300": {"type": "M)PS2SDB", 8192}, + std::string_view{R"PS2SDB(IPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "316": {"type": "MIPS_26", "symbol": "handle_param", "scope": "LIBRARY", "original": ".text"}, "368": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "376": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "380": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "400": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "408": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "412": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "428": {"type": "MIPS_26", "symbol": "memset"}, "440": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "448": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "452": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "468": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "480": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "488": {"type": "MIPS_26", "symbol": "handle_param", "scope": "LIBRARY", "original": ".text"}, "540": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "544": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "564": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "568": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "588": {"type": "MIPS_26", "symbol": "strlen"}, "604": {"type": "MIPS_26", "symbol": "strncpy"}, "624": {"type": "MIPS_26", "symbol": "memset"}, "636": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "644": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "648": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "656": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "668": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "672": {"type": "MIPS_26", "symbol": "handle_param", "scope": "LIBRARY", "original": ".text"}, "724": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "728": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "748": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "752": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "772": {"type": "MIPS_26", "symbol": "strlen"}, "788": {"type": "MIPS_26", "symbol": "strncpy"}, "872": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "884": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "896": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "904": {"type": "MIPS_26", "symbol": "__sceEENetrandom", "scope": "LIBRARY"}, "908": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "920": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "968": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1044": {"type": "MIPS_26", "symbol": "fptodp"}, "1060": {"type": "MIPS_26", "symbol": "dpmul"}, "1068": {"type": "MIPS_26", "symbol": "dptofp"}, "1076": {"type": "MIPS_26", "symbol": "fptoui"}, "1088": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1096": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1108": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1136": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1156": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1164": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1180": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1184": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1196": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1204": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1224": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1228": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1236": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1248": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1256": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1272": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1276": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1280": {"type": "MIPS_26", "symbol": "sceEENetInetNtoa", "scope": "LIBRARY"}, "1304": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1324": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1332": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1336": {"type": "MIPS_26", "symbol": "sceEENetInetNtoa", "scope": "LIBRARY"}, "1352": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1368": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1372": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1376": {"type": "MIPS_26", "symbol": "sceEENetInetNtoa", "scope": "LIBRARY"}, "1392": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1408": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1412": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1416": {"type": "MIPS_26", "symbol": "sceEENetInetNtoa", "scope": "LIBRARY"}, "1432": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1440": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1448": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1452": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1456": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1468": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1472": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1500": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1504": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1536": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1540": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1556": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1560": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1564": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1568": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1576": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1580": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1588": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1592": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1600": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1604": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1612": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1616": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1624": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1628": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1632": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1636": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1644": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1648": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1652": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1660": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1676": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1680": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1684": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1688": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1692": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1696": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata)PS2SDB", 8192}, + std::string_view{R"PS2SDB("}, "1704": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1708": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1716": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1720": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1728": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1732": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1740": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1744": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1752": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1756": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1764": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1772": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1776": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1780": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1792": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1796": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1800": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1812": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1816": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1820": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1836": {"type": "MIPS_26", "symbol": "sceEENetInetNtoa", "scope": "LIBRARY"}, "1852": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1868": {"type": "MIPS_26", "symbol": "sceEENetInetNtoa", "scope": "LIBRARY"}, "1884": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1900": {"type": "MIPS_26", "symbol": "sceEENetInetNtoa", "scope": "LIBRARY"}, "1916": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1932": {"type": "MIPS_26", "symbol": "sceEENetInetNtoa", "scope": "LIBRARY"}, "1948": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1964": {"type": "MIPS_26", "symbol": "sceEENetInetNtoa", "scope": "LIBRARY"}, "1980": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "1996": {"type": "MIPS_26", "symbol": "sceEENetInetNtoa", "scope": "LIBRARY"}, "2012": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}}}}}, "_sce_eenet_dhclient_nvttostr": {"f7d3b74eed3524b699edd0bfd3ac07f2991b8aaf": {"00000000": {"type": "FUNCTION", "size": 60, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "_sce_eenet_dhclient_clean_param": {"58e72f80eee11e8a4ebef8e117fee7f706185078": {"6a458276": {"type": "FUNCTION", "size": 24, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "memset"}}}}}, "check_param": {"08163935a9d3bfb8e7568eb1eca72e39d0e51a3f": {"563534a2": {"type": "FUNCTION", "size": 160, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "handle_param": {"98d120b6ae00258f945c6523a65cffbec81cf7fd": {"60a7bfbd": {"type": "FUNCTION", "size": 188, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_26", "symbol": "handle_str", "scope": "LIBRARY", "original": ".text"}, "100": {"type": "MIPS_26", "symbol": "handle_ip", "scope": "LIBRARY", "original": ".text"}, "116": {"type": "MIPS_26", "symbol": "handle_ips", "scope": "LIBRARY", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "handle_num", "scope": "LIBRARY", "original": ".text"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "160": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}}}}}, "handle_str": {"777f7a9469a9583c735f7344c42031df228df167": {"dc30b479": {"type": "FUNCTION", "size": 332, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"120": {"type": "MIPS_26", "symbol": "memset"}, "136": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "176": {"type": "MIPS_26", "symbol": "memset"}, "192": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "220": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "248": {"type": "MIPS_26", "symbol": "memset"}, "264": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "276": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "292": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}}}}}, "handle_ip": {"fcc2d0c1e1aaaaef2c0052d7cecd326381ff6e8c": {"0497442f": {"type": "FUNCTION", "size": 276, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"84": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "160": {"type": "MIPS_26", "symbol": "sceEENetInetNtoa", "scope": "LIBRARY"}, "176": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "200": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "232": {"type": "MIPS_26", "symbol": "sceEENetInetNtoa", "scope": "LIBRARY"}, "248": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}}}}}, "handle_ips": {"007dff8d9c600014b2b5d110037ab1d361f97053": {"007e80ed": {"type": "FUNCTION", "size": 400, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"92": {"type": "MIPS_26", "symbol": "memset"}, "108": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "140": {"type": "MIPS_26", "symbol": "sceEENetInetNtoa", "scope": "LIBRARY"}, "156": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "184": {"type": "MIPS_26", "symbol": "memset"}, "212": {"type": "MIPS_26", "symbol": "memset"}, "228": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "244": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "252": {"type": "MIPS_26", ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(symbol": "sceEENetInetNtoa", "scope": "LIBRARY"}, "268": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "284": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "296": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "312": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "320": {"type": "MIPS_26", "symbol": "sceEENetInetNtoa", "scope": "LIBRARY"}, "336": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "344": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "352": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "356": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "handle_num": {"2ea6a5fce902a2acdea91b735fb7e071a782c7dc": {"5ddf0162": {"type": "FUNCTION", "size": 224, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"136": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "176": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "200": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}}}}}, "generate_xid": {"e6c5945b445927323f861f6758339e3800b0e832": {"92dccd64": {"type": "FUNCTION", "size": 100, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "36": {"type": "MIPS_26", "symbol": "sceEENetTime", "scope": "LIBRARY"}, "48": {"type": "MIPS_26", "symbol": "_sce_eenet_dhclient_cksum", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "_sce_eenet_dhclient_cksum", "scope": "LIBRARY"}}}}}, "_sce_eenet_dhclient_make_discover": {"dabe2c38902b05cc9b8d8b632e88e425e1537a79": {"9ea150a4": {"type": "FUNCTION", "size": 1488, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"88": {"type": "MIPS_26", "symbol": "memset"}, "128": {"type": "MIPS_26", "symbol": "generate_xid", "scope": "LIBRARY", "original": ".text"}, "156": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_eenet_dhclient_magic_c"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_eenet_dhclient_magic_c"}, "180": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "260": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "324": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "356": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "488": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "604": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "676": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "704": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "728": {"type": "MIPS_26", "symbol": "strlen"}, "820": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "908": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "948": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "972": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "996": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "1080": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "1096": {"type": "MIPS_26", "symbol": "_sce_eenet_dhclient_udp_cksum", "scope": "LIBRARY"}, "1168": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "1192": {"type": "MIPS_26", "symbol": "generate_xid", "scope": "LIBRARY", "original": ".text"}, "1236": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "1336": {"type": "MIPS_26", "symbol": "_sce_eenet_dhclient_cksum", "scope": "LIBRARY"}, "1420": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}}}}}, "_sce_eenet_dhclient_make_request": {"97938ed66106599884a72c22542d7adc6957b9f5": {"e2be20ad": {"type": "FUNCTION", "size": 1800, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"76": {"type": "MIPS_26", "symbol": "memset"}, "120": {"type": "MIPS_26", "symbol": "generate_xid", "scope": "LIBRARY", "original": ".text"}, "196": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "208": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_eenet_dhclient_magic_c"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_eenet_dhclient_magic_c"}, "220": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "332": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "400": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}, "432": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "564": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "680": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "800": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "872": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "900": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "924": {"type": "MIPS_26", "symbol": "strlen"}, "1016": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "1104": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "1156": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "1180": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "1204": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "1312": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "1336": {"type": "MIPS_26", "symbol": "generate_xid", "scope": "LIBRARY", "original": ".text"}, "1380": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "1580": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "1596": {"type": "MIPS_26", "symbol": "_sce_eenet_dhclient_udp_cksum", "scope": "LIBRARY"}, "1644": {"type": "MIPS_26", "symbol": "_sce_eenet_dhclient_cksum", "scope": "LIBRARY"}, "1724": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}}}}}, "_sce_eenet_dhclient_make_decline": {"f0e0bf9d6aa9d06b841bef019787db4ac600e459": {"7c5b363c": {"type": "FUNCTION", "size": 1284, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "memset"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_26", "symbol": "sceEENetInetNtoa", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "sprintf"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "156": {"type": "MIPS_26", "symbol": "sceEENetInetNtoa", "scope": "LIBRARY"}, "172": {"type": "MIPS_26", "symbol": "sprintf"}, "220": {"type": "MIPS_26", "symbol": "generate_xid", "scope": "LIBRARY", "original": ".text"}, "248": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "260": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_eenet_dhclient_magic_c"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_eenet_dhc)PS2SDB", 8192}, + std::string_view{R"PS2SDB(lient_magic_c"}, "272": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "368": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "468": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "576": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "584": {"type": "MIPS_26", "symbol": "strlen"}, "640": {"type": "MIPS_26", "symbol": "strlen"}, "664": {"type": "MIPS_26", "symbol": "strlen"}, "680": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "688": {"type": "MIPS_26", "symbol": "strlen"}, "736": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "760": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "784": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "872": {"type": "MIPS_26", "symbol": "sceEENetNtohs", "scope": "LIBRARY"}, "888": {"type": "MIPS_26", "symbol": "_sce_eenet_dhclient_udp_cksum", "scope": "LIBRARY"}, "960": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "984": {"type": "MIPS_26", "symbol": "generate_xid", "scope": "LIBRARY", "original": ".text"}, "1020": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}, "1124": {"type": "MIPS_26", "symbol": "_sce_eenet_dhclient_cksum", "scope": "LIBRARY"}, "1216": {"type": "MIPS_26", "symbol": "sceEENetHtons", "scope": "LIBRARY"}}}}}, "_sce_eenet_dhclient_make_release": {"47b729238e2f339428feb6ae7af919233feab16d": {"6d4262ef": {"type": "FUNCTION", "size": 644, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "memset"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_26", "symbol": "sceEENetInetNtoa", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "sprintf"}, "144": {"type": "MIPS_26", "symbol": "generate_xid", "scope": "LIBRARY", "original": ".text"}, "192": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_eenet_dhclient_magic_c"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_eenet_dhclient_magic_c"}, "216": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "348": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "456": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "464": {"type": "MIPS_26", "symbol": "strlen"}, "520": {"type": "MIPS_26", "symbol": "strlen"}, "544": {"type": "MIPS_26", "symbol": "strlen"}, "560": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "568": {"type": "MIPS_26", "symbol": "strlen"}}}}}, "pppoe_create": {"6a426eab64cf46861bf49c3bd7bcb9e84eeab04b": {"d1d0880e": {"type": "FUNCTION", "size": 268, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "memset"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "52": {"type": "MIPS_26", "symbol": "strncpy"}, "76": {"type": "MIPS_26", "symbol": "sceEENetIoctl", "scope": "LIBRARY"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "112": {"type": "MIPS_26", "symbol": "memset"}, "128": {"type": "MIPS_26", "symbol": "strncpy"}, "152": {"type": "MIPS_26", "symbol": "sceEENetIoctl", "scope": "LIBRARY"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "208": {"type": "MIPS_26", "symbol": "sceEENetIoctl", "scope": "LIBRARY"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "236": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}}}}}, "pppoe_destroy": {"c9461537978c293a509b23787d53f8c7262f3860": {"17e866f6": {"type": "FUNCTION", "size": 120, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "memset"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "44": {"type": "MIPS_26", "symbol": "strncpy"}, "68": {"type": "MIPS_26", "symbol": "sceEENetIoctl", "scope": "LIBRARY"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "pppoe_reset_max_phase": {"b8b4be5fe441b5767e87c244d110a3c1666132ce": {"17e866f6": {"type": "FUNCTION", "size": 120, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "memset"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "44": {"type": "MIPS_26", "symbol": "strncpy"}, "68": {"type": "MIPS_26", "symbol": "sceEENetIoctl", "scope": "LIBRARY"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "pppoe_set_error_code": {"47766192d1056d1d54d57b597da5cbffbda3ab66": {"49590a04": {"type": "FUNCTION", "size": 432, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "56": {"type": "MIPS_26", "symbol": "_sce_eenet_sppp_error_code", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "memset"}, "96": {"type": "MIPS_26", "symbol": "strncpy"}, "120": {"type": "MIPS_26", "symbol": "sceEENetIoctl", "scope": "LIBRARY"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "232": {"type": "MIPS_26", "symbol": "memset"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "248": {"type": "MIPS_26", "symbol": "strncpy"}, "272": {"type": "MIPS_26", "symbol": "sceEENetIoctl", "scope": "LIBRARY"}, "288": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "300": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}}}}}, "pppoectl_exit": {"26c8a28b6c32ed64865a8101481c2086a352cab2": {"d7a56a69": {"type": "FUNCTION", "size": 96, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "DeleteSema"}, "52": {"type": "MIPS_26", "symbol": "sceEENetClose", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}}}}}, "sceEENetPppoeClient": {"1181221c0cfbbb82babe5641b8be8ca62ad9a315": {"a20b4732": {"type": "FUNCTION", "size": 384, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".)PS2SDB", 8192}, + std::string_view{R"PS2SDB(bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_26", "symbol": "memset"}, "116": {"type": "MIPS_26", "symbol": "memset"}, "132": {"type": "MIPS_26", "symbol": "strncpy"}, "152": {"type": "MIPS_26", "symbol": "strncpy"}, "172": {"type": "MIPS_26", "symbol": "strncpy"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "200": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "240": {"type": "MIPS_26", "symbol": "_sce_eenet_pppoectl", "scope": "LIBRARY", "original": ".text"}}}}}, "_sce_eenet_pppoectl": {"6a8be9c0d8e3be743f73dd36deae7b7d825c4edf": {"8fc2bb4e": {"type": "FUNCTION", "size": 768, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"88": {"type": "MIPS_26", "symbol": "sceEENetSocket", "scope": "LIBRARY"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_26", "symbol": "_sce_eenet_if_updown", "scope": "LIBRARY"}, "160": {"type": "MIPS_26", "symbol": "pppoe_create", "scope": "LIBRARY", "original": ".text"}, "188": {"type": "MIPS_26", "symbol": "memset"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "212": {"type": "MIPS_26", "symbol": "strncpy"}, "228": {"type": "MIPS_26", "symbol": "strncpy"}, "252": {"type": "MIPS_26", "symbol": "strlen"}, "280": {"type": "MIPS_26", "symbol": "strlen"}, "308": {"type": "MIPS_26", "symbol": "sceEENetIoctl", "scope": "LIBRARY"}, "324": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "332": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "336": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "352": {"type": "MIPS_26", "symbol": "_sce_eenet_sppp_config_param", "scope": "LIBRARY"}, "364": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "372": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "376": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "388": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "408": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "416": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "420": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "436": {"type": "MIPS_26", "symbol": "memset"}, "468": {"type": "MIPS_26", "symbol": "CreateSema"}, "488": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "496": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "500": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "512": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "516": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "552": {"type": "MIPS_26", "symbol": "CreateThread"}, "572": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "584": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "588": {"type": "MIPS_26", "symbol": "StartThread"}, "600": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "608": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "624": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "632": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "636": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "660": {"type": "MIPS_26", "symbol": "DeleteThread"}, "676": {"type": "MIPS_26", "symbol": "DeleteSema"}, "692": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "700": {"type": "MIPS_26", "symbol": "pppoe_destroy", "scope": "LIBRARY", "original": ".text"}, "708": {"type": "MIPS_26", "symbol": "sceEENetClose", "scope": "LIBRARY"}}}}}, "pppoectl_thread": {"d3c19f053833f19e5e2e0d25fb539d5831b5339a": {"7e8bb13b": {"type": "FUNCTION", "size": 788, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_26", "symbol": "pppoe_reset_max_phase", "scope": "LIBRARY", "original": ".text"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "156": {"type": "MIPS_26", "symbol": "_sce_eenet_sppp_open", "scope": "LIBRARY"}, "192": {"type": "MIPS_26", "symbol": "_sce_eenet_sppp_state", "scope": "LIBRARY"}, "216": {"type": "MIPS_26", "symbol": "_sce_eenet_sppp_is_ipcp_up", "scope": "LIBRARY"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "240": {"type": "MIPS_26", "symbol": "PollSema"}, "284": {"type": "MIPS_26", "symbol": "pppoe_set_error_code", "scope": "LIBRARY", "original": ".text"}, "348": {"type": "MIPS_26", "symbol": "DelayThread"}, "368": {"type": "MIPS_26", "symbol": "_sce_eenet_sppp_config_mtu", "scope": "LIBRARY"}, "392": {"type": "MIPS_26", "symbol": "_sce_eenet_sppp_config_address", "scope": "LIBRARY"}, "420": {"type": "MIPS_26", "symbol": "_sce_eenet_sppp_config_dns_and_route", "scope": "LIBRARY"}, "448": {"type": "MIPS_26", "symbol": "pppoe_set_error_code", "scope": "LIBRARY", "original": ".text"}, "520": {"type": "MIPS_26", "symbol": "PollSema"}, "544": {"type": "MIPS_26", "symbol": "DelayThread"}, "556": {"type": "MIPS_26", "symbol": "_sce_eenet_sppp_state", "scope": "LIBRARY"}, "560": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "584": {"type": "MIPS_26", "symbol": "pppoe_set_error_code", "scope": "LIBRARY", "original": ".text"}, "672": {"type": "MIPS_26", "symbol": "_sce_eenet_sppp_close", "scope": "LIBRARY"}, "676": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "680": {"type": "MIPS_26", "symbol": "pppoe_destroy", "scope": "LIBRARY", "original": ".text"}, "688": {"type": "MIPS_26", "symbol": "pppoectl_exit", "scope": "LIBRARY", "original": ".text"}, "728": {"type": "MIPS_26", "symbol": "GetThreadId"}, "736": {"type": "MIPS_26", "symbol": "sceEENetFreeThreadinfo", "scope": "LIBRARY"}, "780": {"type": "MIPS_26", "symbol": "ExitDeleteThread"}}}}}, "pppoectl_stat": {"84060a5d7b8e9f6de0a93d64cae6bccb7a84bbdb": {"75bdba18": {"type": "FUNCTION", "size": 272, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "sceEENetSocket", "scope": "LIBRARY"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_26", "symbol": "_sce_eenet_sppp_state", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "memset"}, "128": {"type": "MIPS_26", "symbol": "strncpy"}, "152": {"type": "MIPS_26", "symbol": "sceEENetIoctl", "scope": "LIBRARY"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_eenet_sppp_phase_code"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_eenet_sppp_phase_code"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "224": {"type": "MIPS_26", "symbol": "_sce_eenet_sppp_auth_message", "scope": "LIBRARY"}, "232": {"type": "MIPS_26", "symbol": "sceEENetClose", "scope": "LIBRARY"}}}}}, "link_state": {"887bf02a80d26b8fff2ddc557ba3cc1544e66317": {"85e7f1e6": {"type": "FUNCTION", "size": 132, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "m)PS2SDB", 8192}, + std::string_view{R"PS2SDB(emset"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "52": {"type": "MIPS_26", "symbol": "strncpy"}, "76": {"type": "MIPS_26", "symbol": "sceEENetIoctl", "scope": "LIBRARY"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "100": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "append_chat": {"788b6d26401990762c7f9cb0e374859c645b61df": {"d05eb4dd": {"type": "FUNCTION", "size": 180, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "strlen"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}}}}}, "append_phone": {"945a43e018c3a75cf19d0a72702890cbeb823905": {"8cff27dd": {"type": "FUNCTION", "size": 164, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "strlen"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "112": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}}}}}, "ppp_modemconf": {"67720f25a0d9c95c22495d12572df4da72e02ca6": {"0e54dcfc": {"type": "FUNCTION", "size": 892, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_26", "symbol": "memset"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_26", "symbol": "strncpy"}, "120": {"type": "MIPS_26", "symbol": "append_chat", "scope": "LIBRARY", "original": ".text"}, "144": {"type": "MIPS_26", "symbol": "append_chat", "scope": "LIBRARY", "original": ".text"}, "168": {"type": "MIPS_26", "symbol": "append_chat", "scope": "LIBRARY", "original": ".text"}, "284": {"type": "MIPS_26", "symbol": "strlen"}, "300": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "324": {"type": "MIPS_26", "symbol": "append_phone", "scope": "LIBRARY", "original": ".text"}, "344": {"type": "MIPS_26", "symbol": "append_phone", "scope": "LIBRARY", "original": ".text"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "432": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "564": {"type": "MIPS_26", "symbol": "append_phone", "scope": "LIBRARY", "original": ".text"}, "600": {"type": "MIPS_26", "symbol": "strlen"}, "620": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "636": {"type": "MIPS_26", "symbol": "strlen"}, "652": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "668": {"type": "MIPS_26", "symbol": "strlen"}, "684": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "704": {"type": "MIPS_26", "symbol": "strlen"}, "720": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "732": {"type": "MIPS_26", "symbol": "strlen"}, "748": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy", "scope": "LIBRARY"}, "804": {"type": "MIPS_26", "symbol": "sceEENetIoctl", "scope": "LIBRARY"}, "820": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "828": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "832": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}}}}}, "ppp_asyncconf": {"1635999e8d0abdd19adb4209a63895eee7f52128": {"a7aa20d8": {"type": "FUNCTION", "size": 224, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "memset"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "52": {"type": "MIPS_26", "symbol": "strncpy"}, "88": {"type": "MIPS_26", "symbol": "sceEENetIoctl", "scope": "LIBRARY"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "124": {"type": "MIPS_26", "symbol": "memset"}, "140": {"type": "MIPS_26", "symbol": "strncpy"}, "164": {"type": "MIPS_26", "symbol": "sceEENetIoctl", "scope": "LIBRARY"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "192": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}}}}}, "ppp_reset_max_state": {"aeca48ec97289c685c27a757928830892221c69f": {"17e866f6": {"type": "FUNCTION", "size": 120, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "memset"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "44": {"type": "MIPS_26", "symbol": "strncpy"}, "68": {"type": "MIPS_26", "symbol": "sceEENetIoctl", "scope": "LIBRARY"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "ppp_set_error_code": {"6d393d52a680af8421fa8fec4dcf14ab686ca8b6": {"7c68eaa4": {"type": "FUNCTION", "size": 292, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_26", "symbol": "_sce_eenet_sppp_error_code", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "memset"}, "80": {"type": "MIPS_26", "symbol": "strncpy"}, "104": {"type": "MIPS_26", "symbol": "sceEENetIoctl", "scope": "LIBRARY"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "220": {"type": "MIPS_26", "symbol": "strstr"}}}}}, "pppctl_exit": {"bd71eb7365f2cabab1c553c06d2d958d0fd448cf": {"d7a56a69": {"type": "FUNCTION", "size": 96, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "DeleteSema"}, "52": {"type": "MIPS_26", "symbol": "sceEENetClose", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}}}}}, "_sce_eenet_pppctl": {"cbb5dae4ade6b88476261ec88725b96e83d8f2f9": {"40812098": {"type": "FUNCTION", "size": 608, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"84": {"type": "MIPS_26", "symbol": "sceEENetSocket", "scope": "LIBRARY"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "124": {"type": "MIPS_26", "symbol": "ppp_modemconf", "scope": "LIBRARY", "original": ".text"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "140": {"type": "MIPS_HI16", "symbol": "", "original)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": ".rodata"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "164": {"type": "MIPS_26", "symbol": "_sce_eenet_sppp_config_param", "scope": "LIBRARY"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "192": {"type": "MIPS_26", "symbol": "ppp_asyncconf", "scope": "LIBRARY", "original": ".text"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "216": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "240": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "260": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "268": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "288": {"type": "MIPS_26", "symbol": "memset"}, "324": {"type": "MIPS_26", "symbol": "CreateSema"}, "340": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "344": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "352": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "356": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "372": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "400": {"type": "MIPS_26", "symbol": "CreateThread"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "432": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "436": {"type": "MIPS_26", "symbol": "StartThread"}, "448": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "456": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "472": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "480": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "484": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "508": {"type": "MIPS_26", "symbol": "DeleteThread"}, "524": {"type": "MIPS_26", "symbol": "DeleteSema"}, "540": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "548": {"type": "MIPS_26", "symbol": "sceEENetClose", "scope": "LIBRARY"}}}}}, "pppctl_thread": {"efb576a7623c7ef6593b869b5734a435369e6996": {"70d78d0a": {"type": "FUNCTION", "size": 1104, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "ppp_reset_max_state", "scope": "LIBRARY", "original": ".text"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_26", "symbol": "PollSema"}, "128": {"type": "MIPS_26", "symbol": "DelayThread"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "160": {"type": "MIPS_26", "symbol": "_sce_eenet_sppp_open", "scope": "LIBRARY"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "192": {"type": "MIPS_26", "symbol": "link_state", "scope": "LIBRARY", "original": ".text"}, "224": {"type": "MIPS_26", "symbol": "PollSema"}, "268": {"type": "MIPS_26", "symbol": "ppp_set_error_code", "scope": "LIBRARY", "original": ".text"}, "300": {"type": "MIPS_26", "symbol": "DelayThread"}, "328": {"type": "MIPS_26", "symbol": "_sce_eenet_sppp_state", "scope": "LIBRARY"}, "332": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "360": {"type": "MIPS_26", "symbol": "PollSema"}, "404": {"type": "MIPS_26", "symbol": "ppp_set_error_code", "scope": "LIBRARY", "original": ".text"}, "436": {"type": "MIPS_26", "symbol": "DelayThread"}, "456": {"type": "MIPS_26", "symbol": "link_state", "scope": "LIBRARY", "original": ".text"}, "480": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "488": {"type": "MIPS_26", "symbol": "_sce_eenet_sppp_state", "scope": "LIBRARY"}, "512": {"type": "MIPS_26", "symbol": "_sce_eenet_sppp_is_ipcp_up", "scope": "LIBRARY"}, "532": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "536": {"type": "MIPS_26", "symbol": "PollSema"}, "580": {"type": "MIPS_26", "symbol": "ppp_set_error_code", "scope": "LIBRARY", "original": ".text"}, "628": {"type": "MIPS_26", "symbol": "DelayThread"}, "648": {"type": "MIPS_26", "symbol": "_sce_eenet_sppp_config_mtu", "scope": "LIBRARY"}, "668": {"type": "MIPS_26", "symbol": "_sce_eenet_sppp_config_address", "scope": "LIBRARY"}, "700": {"type": "MIPS_26", "symbol": "_sce_eenet_sppp_config_dns_and_route", "scope": "LIBRARY"}, "732": {"type": "MIPS_26", "symbol": "ppp_set_error_code", "scope": "LIBRARY", "original": ".text"}, "792": {"type": "MIPS_26", "symbol": "PollSema"}, "812": {"type": "MIPS_26", "symbol": "DelayThread"}, "824": {"type": "MIPS_26", "symbol": "link_state", "scope": "LIBRARY", "original": ".text"}, "852": {"type": "MIPS_26", "symbol": "_sce_eenet_sppp_state", "scope": "LIBRARY"}, "856": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "880": {"type": "MIPS_26", "symbol": "ppp_set_error_code", "scope": "LIBRARY", "original": ".text"}, "952": {"type": "MIPS_26", "symbol": "_sce_eenet_sppp_close", "scope": "LIBRARY"}, "956": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "968": {"type": "MIPS_26", "symbol": "DelayThread"}, "980": {"type": "MIPS_26", "symbol": "link_state", "scope": "LIBRARY", "original": ".text"}, "1004": {"type": "MIPS_26", "symbol": "pppctl_exit", "scope": "LIBRARY", "original": ".text"}, "1036": {"type": "MIPS_26", "symbol": "GetThreadId"}, "1044": {"type": "MIPS_26", "symbol": "sceEENetFreeThreadinfo", "scope": "LIBRARY"}, "1052": {"type": "MIPS_26", "symbol": "ExitDeleteThread"}}}}}, "pppctl_stat": {"523f67ec18d8eddf138b0c8abc39dd284dae37f4": {"ccac3147": {"type": "FUNCTION", "size": 292, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "sceEENetSocket", "scope": "LIBRARY"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_26", "symbol": "_sce_eenet_sppp_state", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "link_state", "scope": "LIBRARY", "original": ".text"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": "_sce_eenet_sppp_phase_code"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": "_sce_eenet_sppp_phase_code"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "184": {"type": "MIPS_26", "symbol": "strncpy"}, "200": {"type": "MIPS_26", "symbol": "strncpy"}, "216": {"type": "MIPS_26", "symbol": "_sce_eenet_sppp_auth_message", "scope": "LIBRARY"}, "240": {"type": "MIPS_26", "symbol": "_sce_eenet_sppp_phone_number", "scope": "LIBRARY"}, "248": {"type": "MIPS_26", "symbol": "sceEENetClose", "scope": "LIBRARY"}}}}}, "cooked_malloc": {"402b336d4c453767e74b012313a68c249a3b7bfe": {"9dbd7ec3": {"type": "FUNCTION", "size": 80, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "cooked_realloc": {"2b8fc1e0202c6d030c971277b3e51dfa6b77e10f": {"9dbd7ec3": {"type": "FUNCTION", "size": 80, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "cooked_memalign": {"72acb9494c1df94580ab838da1f86a880a6ae50f": {"83e9c7c4": {"type": "FUNCTION", "size": 76, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "cooked_free": {"cbc2e3b70f7ce27ed2894e8d5b8b8ebf423901f0": {"83e9c7c4": {"type": "FUNCTION", "size": 76, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceEENetSetMallocFunction": {"ef3f3c3b3a8b3bfe9ccb3a92a05860d5b9f886f5": {"12956170": {"type": "FUNCTION", "size": 40, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_HI16", "symbol": "cooked_malloc", "original": ".text"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "cooked_malloc", "original": ".text"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceEENetSetReallocFunction": {"ef3f3c3b3a8b3bfe9ccb3a92a05860d5b9f886f5": {"e16cf025": {"type": "FUNCTION", "size": 40, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_HI16", "symbol": "cooked_realloc", "original": ".text"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "cooked_realloc", "original": ".text"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceEENetSetMemalignFunction": {"ef3f3c3b3a8b3bfe9ccb3a92a05860d5b9f886f5": {"63dd75d2": {"type": "FUNCTION", "size": 40, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_HI16", "symbol": "cooked_memalign", "original": ".text"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "cooked_memalign", "original": ".text"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceEENetSetFreeFunction": {"ef3f3c3b3a8b3bfe9ccb3a92a05860d5b9f886f5": {"49c72e77": {"type": "FUNCTION", "size": 40, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_HI16", "symbol": "cooked_free", "original": ".text"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "cooked_free", "original": ".text"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceEENetMalloc": {"1da0524b9eadace6bdf5dbd7803c4879d79faaaf": {"1ea14d4c": {"type": "FUNCTION", "size": 56, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_26", "symbol": "__sceEENeteenet_malloc_internal", "scope": "LIBRARY"}}}}}, "sceEENetFree": {"97cad9d41148fa45e1a7686b7dffc3d967f065a4": {"86418d5f": {"type": "FUNCTION", "size": 52, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_26", "symbol": "__sceEENeteenet_free_internal", "scope": "LIBRARY"}}}}}, "sceEENetRealloc": {"1da0524b9eadace6bdf5dbd7803c4879d79faaaf": {"9945382f": {"type": "FUNCTION", "size": 56, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_26", "symbol": "__sceEENeteenet_realloc_internal", "scope": "LIBRARY"}}}}}, "sceEENetCalloc": {"6dd2785c39abbb2f12241de5359778f8c89ee890": {"84fddb71": {"type": "FUNCTION", "size": 76, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY", "original": ".text"}, "44": {"type": "MIPS_26", "symbol": "memset"}}}}}, "sceEENetMemalign": {"1da0524b9eadace6bdf5dbd7803c4879d79faaaf": {"ec70ced6": {"type": "FUNCTION", "size": 56, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_26", "symbol": "__sceEENeteenet_memalign_internal", "scope": "LIBRARY"}}}}}, "__sceEENetuser_mem_func_is_specified": {"7c048e3c7713774472c1d515f59e41acfb05d670": {"31dcff00": {"type": "FUNCTION", "size": 60, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_HI16", "symbol": ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(", "original": ".data"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__sceEENetuser_mem_func_term": {"22529b10150c9eca23e67e54ede92f2f6cec2d80": {"2f5ae739": {"type": "FUNCTION", "size": 40, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sifcmd_handler": {"248434c8f16817ee9b2ce4a9d8a65ae3bc03ac42": {"bbcd585a": {"type": "FUNCTION", "size": 48, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "call_handler", "original": ".text"}}}}}, "search_handler": {"7f4c5355d6bb597bda62e9fa2f0cb69594314340": {"d6ed632d": {"type": "FUNCTION", "size": 36, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "call_handler": {"658e2b0c97ae4df4149584fd1b627a3f4cd34a51": {"c72f6971": {"type": "FUNCTION", "size": 68, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "search_handler", "scope": "LIBRARY", "original": ".text"}}}}}, "_sce_eenet_init_sifcmd_handler": {"a5e3c9b3eb64a2c626d338b003a10b64da5a3070": {"b1062df3": {"type": "FUNCTION", "size": 92, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "DIntr"}, "20": {"type": "MIPS_HI16", "symbol": "sifcmd_handler", "original": ".text"}, "32": {"type": "MIPS_LO16", "symbol": "sifcmd_handler", "original": ".text"}, "40": {"type": "MIPS_26", "symbol": "sceSifAddCmdHandler"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "EIntr"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "_sce_eenet_term_sifcmd_handler": {"20c532bc5f2844d9f778a48369ea0311a4b2c8e7": {"d955badf": {"type": "FUNCTION", "size": 92, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_26", "symbol": "DIntr"}, "48": {"type": "MIPS_26", "symbol": "sceSifRemoveCmdHandler"}, "64": {"type": "MIPS_26", "symbol": "EIntr"}}}}}, "sceEENetSifAddCmdHandler": {"8f1df9cf264f8f53dc8733df0d88380cefbe6f40": {"ccc49dca": {"type": "FUNCTION", "size": 184, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "DIntr"}, "52": {"type": "MIPS_26", "symbol": "search_handler", "scope": "LIBRARY", "original": ".text"}, "76": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_26", "symbol": "EIntr"}}}}}, "sceEENetSifRemoveCmdHandler": {"6c8105f793298e211f99eeb5584b5eb2f9959627": {"6bd322d2": {"type": "FUNCTION", "size": 168, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "DIntr"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "132": {"type": "MIPS_26", "symbol": "EIntr"}}}}}, "sceEENetSifSendCmd": {"9555660f81691da22933aa547f39fb54585696f8": {"47c3d78f": {"type": "FUNCTION", "size": 256, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_26", "symbol": "FlushCache"}, "80": {"type": "MIPS_26", "symbol": "DelayThread"}, "116": {"type": "MIPS_26", "symbol": "isceSifSendCmd"}, "152": {"type": "MIPS_26", "symbol": "sceSifSendCmd"}, "184": {"type": "MIPS_26", "symbol": "isceSifDmaStat"}, "200": {"type": "MIPS_26", "symbol": "sceSifDmaStat"}}}}}, "sceEENetSifBindRpc": {"ccfc39175398f75f759108f941aba4a49200005b": {"8f1aa77b": {"type": "FUNCTION", "size": 120, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "DelayThread"}, "56": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}, "72": {"type": "MIPS_26", "symbol": "DelayThread"}}}}}, "sceEENetSifCallRpc": {"fd0a5029dade630a7d2a10ea9e140cbf4ab93ea5": {"9b086de9": {"type": "FUNCTION", "size": 192, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"88": {"type": "MIPS_26", "symbol": "DelayThread"}, "128": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}}}}}, "sceEENetInetMakeaddr": {"afa0d411332f8b2b322e16841858c8858195a591": {"4bd3077d": {"type": "FUNCTION", "size": 232, "library": "libeenet", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"108": {"type": "MIPS_26", "symbol": "sceEENetHtonl", "scope": "LIBRARY"}}}}}, "create_start_sema": {"531fb786549a55461d4294e05854316862c4ed52": {"dd4afb45": {"type": "FUNCTION", "size": 76, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "memset"}, "48": {"type": "MIPS_26", "symbol": "CreateSema"}}}}}, "af2proto": {"fed69f907a4d9c1f2febfe6e022e51dfec1e67f6": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "set_staticaddr_func": {"3a5bc7616bc8bcf4c33501ae874e06fb518dd3fb": {"42d337be": {"type": "FUNCTION", "size": 464, "library": "libeenet", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "af2proto", "original": ".text"}, "104": {"type": "MIPS_26", "symbol": "_sce_eenet_wait_for_cable_connected", "scope": "LIBRARY"}, "176": {"type": "MIPS_26", "symbol": "_sce_eenet_if_setaddr", "scope": "LIBRARY"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "200": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "244": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "252": {"type": "MIPS_26", "symbol": "__sceEENetlog", "scope": "LIBRARY"}, "256": {"type": "MIPS_LO16", "symbol": "", "original")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: ".rodata"}, "304": {"type": "MIPS_26", "symbol": "WaitSema"}, "384": {"type": "MIPS_26", "symbol": "DeleteSema"}, "392": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "400": {"type": "MIPS_26", "symbol": "GetThreadId"}, "408": {"type": "MIPS_26", "symbol": "sceEENetFreeThreadinfo", "scope": "LIBRARY"}, "416": {"type": "MIPS_26", "symbol": "ExitDeleteThread"}}}}}, "_sce_eenet_staticaddr_ctl": {"a1e898f8a0b6ddc072aa65009e5486ec6e2a0f30": {"12ec6654": {"type": "FUNCTION", "size": 356, "library": "libeenet", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"80": {"type": "MIPS_26", "symbol": "af2proto", "original": ".text"}, "100": {"type": "MIPS_26", "symbol": "sceEENetMalloc", "scope": "LIBRARY"}, "132": {"type": "MIPS_26", "symbol": "create_start_sema", "original": ".text"}, "168": {"type": "MIPS_26", "symbol": "memset"}, "180": {"type": "MIPS_HI16", "symbol": "set_staticaddr_func", "original": ".text"}, "188": {"type": "MIPS_LO16", "symbol": "set_staticaddr_func", "original": ".text"}, "208": {"type": "MIPS_26", "symbol": "start_thread", "original": ".text"}, "256": {"type": "MIPS_26", "symbol": "sceEENetFree", "scope": "LIBRARY"}, "272": {"type": "MIPS_26", "symbol": "DeleteSema"}, "288": {"type": "MIPS_26", "symbol": "TerminateThread"}, "296": {"type": "MIPS_26", "symbol": "DeleteThread"}}}}}}, "eenetctl": {"start_thread": {"073ef593f623072e018de77822b65e75787984a2": {"c24911d5": {"type": "FUNCTION", "size": 112, "library": "eenetctl", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "CreateThread"}, "60": {"type": "MIPS_26", "symbol": "StartThread"}, "80": {"type": "MIPS_26", "symbol": "DeleteThread"}}}}}, "sceEENetCtlRegIfName": {"c003c48a8680dcb3a162be4dc9008759b8d91ea1": {"81519786": {"type": "FUNCTION", "size": 260, "library": "eenetctl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_26", "symbol": "strcmp"}, "88": {"type": "MIPS_26", "symbol": "strcmp"}, "132": {"type": "MIPS_26", "symbol": "sceEENetMalloc"}, "164": {"type": "MIPS_26", "symbol": "memset"}, "180": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceEENetCtlUnregIfName": {"91945400d9c23d1679025d348e364d55627c1d08": {"d3b22578": {"type": "FUNCTION", "size": 212, "library": "eenetctl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_26", "symbol": "strcmp"}, "68": {"type": "MIPS_26", "symbol": "strcmp"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "172": {"type": "MIPS_26", "symbol": "sceEENetFree"}}}}}, "__sce_eenetctl_search_reginfo": {"b6cdb5356d49e33bc5905be10e640f99c60946a7": {"5cb7f226": {"type": "FUNCTION", "size": 468, "library": "eenetctl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_26", "symbol": "strncmp"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "216": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "292": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "316": {"type": "MIPS_26", "symbol": "strncmp"}, "328": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "332": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "356": {"type": "MIPS_26", "symbol": "strncmp"}, "368": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "372": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "eenetctl_rpc_server_func": {"d9580a9feaa54acda3dc66d77ecb368293702bb0": {"5cc677c1": {"type": "FUNCTION", "size": 364, "library": "eenetctl", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_26", "symbol": "sceEENetFree"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_26", "symbol": "sceEENetFree"}, "188": {"type": "MIPS_26", "symbol": "sceEENetSetDNSAddr"}, "208": {"type": "MIPS_26", "symbol": "sceEENetMalloc"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "256": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "276": {"type": "MIPS_26", "symbol": "__sceEENetmemcpy"}, "284": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "304": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "308": {"type": "MIPS_26", "symbol": "_sce_eenetctl_signalevent", "scope": "LIBRARY"}, "312": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "316": {"type": "MIPS_26", "symbol": "_sce_eenetctl_waitsetconfig", "scope": "LIBRARY"}}}}}, "eenetctl_rpc_server": {"345f21dfdb954ee437025177cd18513e536514bb": {"ab0be3d2": {"type": "FUNCTION", "size": 112, "library": "eenetctl", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_26", "symbol": "GetThreadId"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_26", "symbol": "sceSifSetRpcQueue"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_HI16", "symbol": "eenetctl_rpc_server_func", "original": ".text"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "eenetctl_rpc_server_func", "original": ".text"}, "68": {"type": "MIPS_LO16", "symbol": "", "ori)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ginal": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_26", "symbol": "sceSifRegisterRpc"}, "84": {"type": "MIPS_26", "symbol": "sceSifRpcLoop"}}}}}, "sceEENetCtlInit": {"424ac439167be534c34b48d3ada230953471af7f": {"f4d48556": {"type": "FUNCTION", "size": 564, "library": "eenetctl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "sceEENetCtlRegIfName", "scope": "LIBRARY", "original": ".text"}, "160": {"type": "MIPS_26", "symbol": "sceEENetMemalign"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "208": {"type": "MIPS_26", "symbol": "start_thread", "original": ".text"}, "216": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "256": {"type": "MIPS_26", "symbol": "__sce_eenetctl_init", "scope": "LIBRARY"}, "268": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "272": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "276": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "292": {"type": "MIPS_26", "symbol": "_sce_eenet_if_setaddr"}, "320": {"type": "MIPS_26", "symbol": "memset"}, "340": {"type": "MIPS_26", "symbol": "memset"}, "360": {"type": "MIPS_26", "symbol": "memset"}, "400": {"type": "MIPS_26", "symbol": "sceEENetHtonl"}, "416": {"type": "MIPS_26", "symbol": "sceEENetHtonl"}, "428": {"type": "MIPS_26", "symbol": "sceEENetHtonl"}, "456": {"type": "MIPS_26", "symbol": "_sce_eenet_set_route"}, "468": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "480": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "484": {"type": "MIPS_HI16", "symbol": "_sce_eenetctl_signalevent"}, "488": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "492": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "496": {"type": "MIPS_26", "symbol": "sceEENetRegDevmanIfNameFunc"}, "500": {"type": "MIPS_LO16", "symbol": "_sce_eenetctl_signalevent"}}}}}, "sceEENetCtlTerm": {"1891e7b8fb62557d5e078ccc33b0eab9f5493398": {"472b8324": {"type": "FUNCTION", "size": 180, "library": "eenetctl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_26", "symbol": "TerminateThread"}, "28": {"type": "MIPS_26", "symbol": "DeleteThread"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_26", "symbol": "sceEENetFreeThreadinfo"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_26", "symbol": "sceEENetFree"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_26", "symbol": "sceSifRemoveRpc"}, "80": {"type": "MIPS_26", "symbol": "sceSifRemoveRpcQueue"}, "88": {"type": "MIPS_26", "symbol": "__sce_eenetctl_term", "scope": "LIBRARY"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_26", "symbol": "sceEENetCtlUnregIfName", "scope": "LIBRARY", "original": ".text"}}}}}, "__sce_eenetctl_check_def_reginfo": {"9a13027e64b11b1a43fece5717f54391a4e50fcc": {"02438e00": {"type": "FUNCTION", "size": 124, "library": "eenetctl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_26", "symbol": "strcmp"}}}}}, "dump_ppp_negotiation_ifcnf": {"c8819abe9a8c02080b4e79cf40f2a577a499dc82": {"d8f53fab": {"type": "FUNCTION", "size": 952, "library": "eenetctl", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "168": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "216": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "240": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "252": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "264": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "272": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "288": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "300": {"type": "MIPS_HI16")PS2SDB", 8192}, + std::string_view{R"PS2SDB(, "symbol": "", "original": ".rodata"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "316": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "328": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "344": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "348": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "356": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "360": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "364": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "376": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "388": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "404": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "408": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "416": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "452": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "464": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "480": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "484": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "492": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "496": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "500": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "520": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "528": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "532": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "536": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "556": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "564": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "568": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "572": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "592": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "600": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "604": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "608": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "616": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "628": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "644": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "648": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "656": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "660": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "664": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "680": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "688": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "700": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "704": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "712": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "716": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "720": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "736": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "744": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "756": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "760": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "768": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "772": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "776": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "796": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "808": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "824": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "828": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "836": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "840": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "844": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "856": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "868": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "884": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "888": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "896": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "900": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "904": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "932": {"type": "MIPS_26", "symbol": "__sceEENetlog"}}}}}, "dump_ppp_ifcnf": {"e7a8a41bf96fc8f0ddd8cb5009b475aafdc596e5": {"f8602ea7": {"type": "FUNCTION", "size": 680, "library": "eenetctl", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "120": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_26", "symbol": "dump_ppp_negotiation_ifcnf", "scope": "LIBRARY", "original": ".text"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "164": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "176": {"type": "MIPS_26", "symbol": "dump_ppp_negotiation_ifcnf", "scope": "LIBRARY", "original": ".text"}, "200": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "208": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "248": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "276": {"type": "MIPS_26", "symbol": "strlen"}, "288": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "292": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "300": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "320": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "328": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "332": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "336": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "344": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "356": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "364": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "368": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "380": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "384": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "388": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "396": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "404": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "408": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "416": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "428": {"type": "MIP)PS2SDB", 8192}, + std::string_view{R"PS2SDB(S_26", "symbol": "__sceEENetlog"}, "436": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "444": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "448": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "456": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "484": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "488": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "496": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "508": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "512": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "520": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "532": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "536": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "544": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "556": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "560": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "572": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "588": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "628": {"type": "MIPS_26", "symbol": "__sceEENetlog"}}}}}, "_sce_eenetctl_dump_usr_ifcnf": {"9602231cca51a56184c01c5af0a18c3299153da0": {"b24fb72a": {"type": "FUNCTION", "size": 756, "library": "eenetctl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "132": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "156": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "180": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "240": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "256": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "268": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "276": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "292": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "296": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "316": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "328": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "336": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "348": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "356": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "360": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "364": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "376": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "384": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "388": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "392": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "396": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "404": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "412": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "416": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "440": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "448": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "464": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "472": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "476": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "480": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "484": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "492": {"type": "MIPS_26", "symbol": "dump_ppp_ifcnf", "scope": "LIBRARY", "original": ".text"}, "500": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "508": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "512": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "520": {"type": "MIPS_26", "symbol": "dump_ppp_ifcnf", "scope": "LIBRARY", "original": ".text"}, "544": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "548": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "556": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "560": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "564": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "572": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "608": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "612": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "628": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "632": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "644": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "652": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "680": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "684": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "688": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "692": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "create_start_sema": {"531fb786549a55461d4294e05854316862c4ed52": {"dd4afb45": {"type": "FUNCTION", "size": 76, "library": "eenetctl", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "memset"}, "48": {"type": "MIPS_26", "symbol": "CreateSema"}}}}}, "af2proto": {"fed69f907a4d9c1f2febfe6e022e51dfec1e67f6": {"00000000": {"type": "FUNCTION", "size": 16, "library": "eenetctl", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "proto2af": {"8e881f7a1385aae9ecea6ab4e31221ec3d7d8a51": {"00000000": {"type": "FUNCTION", "size": 16, "library": "eenetctl", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "each_proto_updown_check": {"efd3b6bab4520014a668626bf7d639f2a375d52c": {"00000000": {"type": "FUNCTION", "size": 84, "library": "eenetctl", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "set_mediatype": {"e9a7332c9fdc5f750c9ad8f8466fcedb684a7dfb": {"2efeb2e8": {"type": "FUNCTION", "size": 236, "library": "eenetctl", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"108": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "200": {"type": "MIPS_26", "symbol": "_sce_eenet_if_setmediatype"}}}}}, "set_mediatype_and_mtu": {"393850d0a71a0bfe)PS2SDB", 8192}, + std::string_view{R"PS2SDB(af3a18eb22c1b118d330311b": {"634398fb": {"type": "FUNCTION", "size": 184, "library": "eenetctl", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "each_proto_updown_check", "scope": "LIBRARY", "original": ".text"}, "120": {"type": "MIPS_26", "symbol": "set_mediatype", "scope": "LIBRARY", "original": ".text"}, "136": {"type": "MIPS_26", "symbol": "set_mediatype", "scope": "LIBRARY", "original": ".text"}, "148": {"type": "MIPS_26", "symbol": "_sce_eenet_if_set_mtu"}}}}}, "ifc_up": {"c4500490f5f5dc487b1ea6cd8f8e27883ac96daf": {"d9c8f7f3": {"type": "FUNCTION", "size": 456, "library": "eenetctl", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "proto2af", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_26", "symbol": "sceEENetMemalign"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "220": {"type": "MIPS_26", "symbol": "_sce_eenet_dhclient"}, "248": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "276": {"type": "MIPS_26", "symbol": "_sce_eenet_pppoectl"}, "292": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "300": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "320": {"type": "MIPS_26", "symbol": "_sce_eenet_staticaddr_ctl"}, "348": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "356": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "368": {"type": "MIPS_26", "symbol": "_sce_eenet_pppoectl"}, "384": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "388": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "404": {"type": "MIPS_26", "symbol": "_sce_eenet_pppctl"}}}}}, "up_based_on_ipversion": {"fbfb4e82f9c156aed130fb5c01f9f3415278bc32": {"c2bddaed": {"type": "FUNCTION", "size": 268, "library": "eenetctl", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"224": {"type": "MIPS_26", "symbol": "ifc_up", "scope": "LIBRARY", "original": ".text"}}}}}, "ifc_detach": {"4cdf0a6faf4dfc82b68fbcabaf6d77c165834ca0": {"9f65ead9": {"type": "FUNCTION", "size": 92, "library": "eenetctl", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "eenetctl"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "eenetctl"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": "eenetctl"}, "68": {"type": "MIPS_26", "symbol": "sceEENetFree"}}}}}, "call_handler": {"89e038fd57328d5d4f94ee4dbc510b2cd499b1f0": {"aa9e89f6": {"type": "FUNCTION", "size": 184, "library": "eenetctl", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_26", "symbol": "proto2af", "scope": "LIBRARY", "original": ".text"}}}}}, "print_state": {"d0d56be62ba5c2507acc8e788e2d85785bbc8e60": {"acdc7a39": {"type": "FUNCTION", "size": 164, "library": "eenetctl", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "44": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "60": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "76": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "108": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "124": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "140": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "156": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "clear_error_bit": {"857f768707e46153b22696d5bccf28869ffef963": {"00000000": {"type": "FUNCTION", "size": 40, "library": "eenetctl", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "__sceEENetif_down": {"5f5bc99920b77f46c18f94f78ce527e9615d3058": {"324f76d4": {"type": "FUNCTION", "size": 160, "library": "eenetctl", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "SignalSema"}, "120": {"type": "MIPS_26", "symbol": "_sce_eenetctl_signalevent", "scope": "LIBRARY", "original": ".text"}}}}}, "completed_check": {"d42d7921c7b1447c4ab934e252372adcf58287dc": {"00000000": {"type": "FUNCTION", "size": 48, "library": "eenetctl", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "ipversion_completed_check": {"89ba3dbb3cdc210da7e8680ed228a7892b611328": {"39e1c79f": {"type": "FUNCTION", "size": 424, "library": "eenetctl", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"240": {"type": "MIPS_26", "symbol": "__sceEENetif_down", "original": ".text"}, "272": {"type": "MIPS_26", "symbol": "call_handler", "original": ".text"}, "376": {"type": "MIPS_26", "symbol": "call_handler", "original": ".text"}}}}}, "eenetctl_action": {"3d1e118ef063c8bd7f363cd903d2acec1fc7ca93": {"0b73ae62": {"type": "FUNCTION", "size": 1792, "library": "eenetctl", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"96": {"type": "MIPS_26", "symbol": "proto2af", "scope": "LIBRARY", "original": ".text"}, "192": {"type": "MIPS_26", "symbol": "sceEENetGetIfinfo"}, "208": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "224": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "244": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "256": {"type": "MIPS_26", "symbol": "strncpy"}, "268": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "272": {"type": "MIPS_26", "symbol": "DIntr"}, "296": {"type": "MIPS_26", "symbol": "sceEENetInetNtoa"}, "316": {"type": "MIPS_26", "symbol": "strncpy"}, "328": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "332": {"type": "MIPS_26", "symbol": "EIntr"}, "340": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "348": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "356": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "404": {"type": "MIPS_26", "symbol": "__sceEENetif_down", "original": ".text"}, "440": {"type": "MIPS_26", "symbol": "_sce_eenetctl_signalevent", "scope": "LIBRARY", "original": ".text"}, "460": {"type": "MIPS_26", "symbol": "_sce_eenet_flush_route"}, "496": {"type": "MIPS_26", "symbol": "sceEENetFree"}, "576": {"type": "MIPS_26", "symbol": "_sce_eenetctl_signalevent", "scope": "LIBRARY", "original": ".text"}, "596": {"type": "MIPS_26", "symbol": "each_proto_updown_check", "scope": "LIBRARY", "original": ".text"}, "608": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "616": {"type": "MIPS_26", "symbol": "_sce_eenet_if_updown"}, "628": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "632": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "640": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "644": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "652": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "684": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "688": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "720": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "756": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "764": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "772": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "780": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "788": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "792": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "804": {"type": "MIPS_26", "symbol": "call_handler", "original": ".text"}, "816": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "820": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "828": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "836": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "844": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "852": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "856": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "864": {"type": "MIPS_26", "symbol": "set_mediatype_and_mtu", "scope": "LIBRARY", "original": ".text"}, "876": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "880": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "888": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "892": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "896": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "900": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "928": {"type": "MIPS_26", "symbol": "up_based_on_ipversion", "scope": "LIBRARY", "original": ".text"}, "1004": {"type": "MIPS_26", "symbol": "clear_error_bit", "scope": "LIBRARY", "original": ".text"}, "1020": {"type": "MIPS_26", "symbol": "call_handler", "original": ".text"}, "1032": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1048": {"type": "MIPS_26", "symbol": "__sceEENetif_down", "original": ".text"}, "1096": {"type": "MIPS_26", "symbol": "__sceEENetif_down", "original": ".text"}, "1108": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1116": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1216": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1260": {"type": "MIPS_26", "symbol": "set_mediatype_and_mtu", "scope": "LIBRARY", "original": ".text"}, "1276": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1284": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "1288": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1308": {"type": "MIPS_26", "symbol": "up_based_on_ipversion", "scope": "LIBRARY", "original": ".text"}, "1372": {"type": "MIPS_26", "symbol": "clear_error_bit", "scope": "LIBRARY", "original": ".text"}, "1380": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1384": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1396": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1400": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1408": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "1416": {"type": "MIPS_26", "symbol": "print_state", "scope": "LIBRARY", "original": ".text"}, "1424": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1432": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "1436": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1452": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1460": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1480": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1488": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "1492": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1500": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1504": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1512": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "1516": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1524": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1528": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1536": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "1540": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1548": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1552": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1560": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "1564": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1572": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1576": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1584": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "1588": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1596": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1600": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1608": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "1612": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1620": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1624": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1632": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "1636": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1644": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1648": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1656": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "1660": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1668": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1672": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1680": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "1684": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1688": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1696": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "1700": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1716": {"type": "MIPS_26", "symbol": "print_state", "scope": "LIBRARY", "original": ".text"}, "1724": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1732": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "1736": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "get_real_ifcnf": {"9b9e59b94a1d87)PS2SDB", 8192}, + std::string_view{R"PS2SDB(4bc6f23a44c9bf29b7f681ebdb": {"2f9067b2": {"type": "FUNCTION", "size": 144, "library": "eenetctl", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "28": {"type": "MIPS_26", "symbol": "strncmp"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": "eenetctl"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": "eenetctl"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "eenetctl_main": {"d27807a3062b1bbdc3f428ea41395f0ad0c04985": {"a206454f": {"type": "FUNCTION", "size": 1916, "library": "eenetctl", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"112": {"type": "MIPS_26", "symbol": "sceEENetGetIfnames"}, "128": {"type": "MIPS_26", "symbol": "sceEENetMalloc"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "152": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "172": {"type": "MIPS_26", "symbol": "sceEENetGetIfnames"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": "eenetctl"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "196": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": "eenetctl"}, "304": {"type": "MIPS_HI16", "symbol": "", "original": "eenetctl"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": "eenetctl"}, "340": {"type": "MIPS_26", "symbol": "strncmp"}, "440": {"type": "MIPS_26", "symbol": "eenetctl_action", "scope": "LIBRARY", "original": ".text"}, "456": {"type": "MIPS_26", "symbol": "call_handler", "original": ".text"}, "468": {"type": "MIPS_26", "symbol": "ipversion_completed_check", "scope": "LIBRARY", "original": ".text"}, "552": {"type": "MIPS_26", "symbol": "eenetctl_action", "scope": "LIBRARY", "original": ".text"}, "568": {"type": "MIPS_26", "symbol": "call_handler", "original": ".text"}, "620": {"type": "MIPS_26", "symbol": "eenetctl_action", "scope": "LIBRARY", "original": ".text"}, "636": {"type": "MIPS_26", "symbol": "call_handler", "original": ".text"}, "660": {"type": "MIPS_26", "symbol": "up_based_on_ipversion", "scope": "LIBRARY", "original": ".text"}, "680": {"type": "MIPS_26", "symbol": "ipversion_completed_check", "scope": "LIBRARY", "original": ".text"}, "692": {"type": "MIPS_26", "symbol": "clear_error_bit", "scope": "LIBRARY", "original": ".text"}, "708": {"type": "MIPS_26", "symbol": "clear_error_bit", "scope": "LIBRARY", "original": ".text"}, "728": {"type": "MIPS_26", "symbol": "eenetctl_action", "scope": "LIBRARY", "original": ".text"}, "776": {"type": "MIPS_26", "symbol": "eenetctl_action", "scope": "LIBRARY", "original": ".text"}, "800": {"type": "MIPS_26", "symbol": "eenetctl_action", "scope": "LIBRARY", "original": ".text"}, "812": {"type": "MIPS_26", "symbol": "ipversion_completed_check", "scope": "LIBRARY", "original": ".text"}, "864": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "868": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "892": {"type": "MIPS_26", "symbol": "__sce_eenetctl_check_def_reginfo", "scope": "LIBRARY"}, "908": {"type": "MIPS_26", "symbol": "get_eenet_ifcnf", "scope": "LIBRARY", "original": ".text"}, "936": {"type": "MIPS_26", "symbol": "strncpy"}, "976": {"type": "MIPS_26", "symbol": "__sce_eenetctl_search_reginfo", "scope": "LIBRARY"}, "1048": {"type": "MIPS_26", "symbol": "get_real_ifcnf", "scope": "LIBRARY", "original": ".text"}, "1068": {"type": "MIPS_26", "symbol": "eenetctl_action", "scope": "LIBRARY", "original": ".text"}, "1092": {"type": "MIPS_26", "symbol": "call_handler", "original": ".text"}, "1108": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1116": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1124": {"type": "MIPS_26", "symbol": "ReferSemaStatus"}, "1156": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1164": {"type": "MIPS_26", "symbol": "SignalSema"}, "1168": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1184": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1232": {"type": "MIPS_HI16", "symbol": "", "original": "eenetctl"}, "1236": {"type": "MIPS_LO16", "symbol": "", "original": "eenetctl"}, "1312": {"type": "MIPS_26", "symbol": "eenetctl_action", "scope": "LIBRARY", "original": ".text"}, "1348": {"type": "MIPS_26", "symbol": "call_handler", "original": ".text"}, "1372": {"type": "MIPS_26", "symbol": "call_handler", "original": ".text"}, "1384": {"type": "MIPS_26", "symbol": "completed_check", "scope": "LIBRARY", "original": ".text"}, "1412": {"type": "MIPS_26", "symbol": "call_handler", "original": ".text"}, "1432": {"type": "MIPS_26", "symbol": "ifc_detach", "scope": "LIBRARY", "original": ".text"}, "1440": {"type": "MIPS_26", "symbol": "ifc_detach", "scope": "LIBRARY", "original": ".text"}, "1496": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1500": {"type": "MIPS_26", "symbol": "sceEENetFree"}, "1512": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1520": {"type": "MIPS_26", "symbol": "ReferSemaStatus"}, "1524": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1548": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1552": {"type": "MIPS_26", "symbol": "SignalSema"}, "1556": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1560": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1564": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1576": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1580": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "1584": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1588": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1592": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1604": {"type": "MIPS_26", "symbol": "_sce_eenetctl_pollevent", "scope": "LIBRARY", "original": ".text"}, "1628": {"type": "MIPS_26", "symbol": "_sce_eenetctl_pollevent", "scope": "LIBRARY", "original": ".text"}, "1648": {"type": "MIPS_26", "symbol": "_sce_eenetctl_waitevent", "scope": "LIBRARY", "original": ".text"}, "1660": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1676": {"type": "MIPS_HI16", "symbol": "", "original": "eenetctl"}, "1680": {"type": "MIPS_LO16", "symbol": "", "original": "eenetctl"}, "1716": {"type": "MIPS_26", "symbol": "eenetctl_action", "scope": "LIBRARY", "original": ".text"}, "1760": {"type": "MIPS_LO16", "symbol": "", "original": "eenetctl"}, "1776": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1784": {"type": "MIPS_26", "symbol": "ifc_detach", "scope": "LIBRARY", "original": ".text"}, "1808": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1816": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1820": {"type": "MIPS_26", "symbol": "SignalSema"}, "1840": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1856": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "1860": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "interface_up_down": {"62bba1ed5f23f58fb1ec854608c793b9f923100b": {"3ad08371": {"type": "FUNCTION", "size": 540, "library": "eenetctl", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "af2proto", "original": ".text"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": "eenetctl"}, "96": {"type": "MIPS_)PS2SDB", 8192}, + std::string_view{R"PS2SDB(LO16", "symbol": "", "original": "eenetctl"}, "132": {"type": "MIPS_26", "symbol": "strncmp"}, "180": {"type": "MIPS_26", "symbol": "_sce_eenetctl_signalevent", "scope": "LIBRARY", "original": ".text"}, "220": {"type": "MIPS_26", "symbol": "_sce_eenetctl_signalevent", "scope": "LIBRARY", "original": ".text"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": "eenetctl"}, "292": {"type": "MIPS_26", "symbol": "strncmp"}, "388": {"type": "MIPS_26", "symbol": "ipversion_completed_check", "scope": "LIBRARY", "original": ".text"}, "428": {"type": "MIPS_26", "symbol": "_sce_eenetctl_signalevent", "scope": "LIBRARY", "original": ".text"}, "468": {"type": "MIPS_26", "symbol": "_sce_eenetctl_signalevent", "scope": "LIBRARY", "original": ".text"}}}}}, "sceEENetCtlUpInterface": {"1bedc3d4ab34928a0f3492393d10d2d7e2aa10e4": {"0ad60b3a": {"type": "FUNCTION", "size": 32, "library": "eenetctl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "interface_up_down", "scope": "LIBRARY", "original": ".text"}}}}}, "sceEENetCtlDownInterface": {"d5390299fc650036e0180819ec6691e2915fc3c9": {"0ad60b3a": {"type": "FUNCTION", "size": 32, "library": "eenetctl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "interface_up_down", "scope": "LIBRARY", "original": ".text"}}}}}, "sceEENetCtlSetAutoMode": {"ad361fd420d44ef7968812d1863844ff7882dd88": {"d3e72eac": {"type": "FUNCTION", "size": 20, "library": "eenetctl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceEENetCtlRegisterEventHandler": {"a3f34ab7969a80d9e45d16490fcaa5477e96e280": {"e1d48e97": {"type": "FUNCTION", "size": 100, "library": "eenetctl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "sceEENetMalloc"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceEENetCtlUnregisterEventHandler": {"ab0c6f20de1a44e487263b0880e7ba93b0ab5ba4": {"6e16f1fa": {"type": "FUNCTION", "size": 148, "library": "eenetctl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_26", "symbol": "sceEENetFree"}}}}}, "sceEENetCtlGetState": {"8be5f7b6810c3231e25239737afaade1437929a5": {"024d889e": {"type": "FUNCTION", "size": 164, "library": "eenetctl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "eenetctl"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": "eenetctl"}, "68": {"type": "MIPS_26", "symbol": "strncmp"}, "92": {"type": "MIPS_26", "symbol": "af2proto", "original": ".text"}}}}}, "sceEENetCtlGetErrorCode": {"b8996ba64d8257db44e677a53ee346760c824bec": {"c42e10f9": {"type": "FUNCTION", "size": 220, "library": "eenetctl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "eenetctl"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": "eenetctl"}, "84": {"type": "MIPS_26", "symbol": "strncmp"}, "104": {"type": "MIPS_26", "symbol": "af2proto", "original": ".text"}}}}}, "sceEENetCtlGetIfStat": {"134c526e0067523ef1982fed9454543310160d0c": {"58400496": {"type": "FUNCTION", "size": 204, "library": "eenetctl", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "eenetctl"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": "eenetctl"}, "76": {"type": "MIPS_26", "symbol": "strncmp"}, "100": {"type": "MIPS_26", "symbol": "af2proto", "original": ".text"}}}}}, "__sce_eenetctl_init": {"51bf23453e599f5de2c673c7514b4678566938bb": {"cdacc236": {"type": "FUNCTION", "size": 256, "library": "eenetctl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_26", "symbol": "create_start_sema", "original": ".text"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_26", "symbol": "create_start_sema", "original": ".text"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_26", "symbol": "create_start_sema", "original": ".text"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_26", "symbol": "sceEENetMemalign"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "184": {"type": "MIPS_HI16", "symbol": "eenetctl_main", "original": ".text"}, "192": {"type": "MIPS_LO16", "symbol": "eenetctl_main", "original": ".text"}, "204": {"type": "MIPS_26", "symbol": "start_thread", "original": ".text"}, "212": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "check_all_ifaces_stopped": {"fa5a57b7c15a0fe5e3d0a40b2c7e6af0740ba741": {"d6ed632d": {"type": "FUNCTION", "size": 80, "library": "eenetctl", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "eenetctl"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": "eenetctl"}}}}}, "__sce_eenetctl_term": {"4fdbecaa90570dc92176b464d5e7853c323fdfbf": {"873d0164": {"type": "FUNCTION", "size": 224, "library": "eenetctl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "check_all_ifaces_stopped", "scope": "LIBRARY", "original": ".text"}, "28": {"type": "MIPS_26", "symbol": "create_start_sema", "original": ".text"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_LO16", "s)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ymbol": "", "original": ".data"}, "68": {"type": "MIPS_26", "symbol": "_sce_eenetctl_signalevent", "scope": "LIBRARY", "original": ".text"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_26", "symbol": "WaitSema"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_26", "symbol": "DeleteSema"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_26", "symbol": "TerminateThread"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_26", "symbol": "DeleteThread"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_26", "symbol": "sceEENetFreeThreadinfo"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_26", "symbol": "sceEENetFree"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_26", "symbol": "DeleteSema"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_26", "symbol": "DeleteSema"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "192": {"type": "MIPS_26", "symbol": "DeleteSema"}}}}}, "_sce_eenetctl_waitevent": {"954daa250339b31bb6401aa5527a60cdbbdddcf0": {"9bc13aa2": {"type": "FUNCTION", "size": 128, "library": "eenetctl", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_26", "symbol": "WaitSema"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_26", "symbol": "ReferSemaStatus"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_26", "symbol": "PollSema"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "_sce_eenetctl_pollevent": {"d348a91558f2145fd8220b7c600de5d8159126c9": {"02127bfa": {"type": "FUNCTION", "size": 120, "library": "eenetctl", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_26", "symbol": "ReferSemaStatus"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_26", "symbol": "PollSema"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "_sce_eenetctl_signalevent": {"538039083ec32410c1ee646d66ac564125c98845": {"7e6779c3": {"type": "FUNCTION", "size": 40, "library": "eenetctl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_26", "symbol": "SignalSema"}}}}}, "_sce_eenetctl_waitsetconfig": {"538039083ec32410c1ee646d66ac564125c98845": {"029a9cad": {"type": "FUNCTION", "size": 40, "library": "eenetctl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_26", "symbol": "WaitSema"}}}}}, "delete_default_route": {"545174194005c329adbd3c77af74de8bbf4e3eb3": {"b7216b47": {"type": "FUNCTION", "size": 368, "library": "eenetctl", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"84": {"type": "MIPS_26", "symbol": "sceEENetSysctl"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "120": {"type": "MIPS_26", "symbol": "sceEENetMalloc"}, "164": {"type": "MIPS_26", "symbol": "sceEENetSysctl"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "192": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "296": {"type": "MIPS_26", "symbol": "_sce_eenet_delete_default_route"}, "312": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "324": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "332": {"type": "MIPS_26", "symbol": "sceEENetFree"}}}}}, "get_af": {"d2362927ecfc5f7d03618c9b8ef42690ee17299f": {"00000000": {"type": "FUNCTION", "size": 8, "library": "eenetctl", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "nameserver_push": {"f440696d10bf39da6b5e9156a0453127d1aa18ff": {"0d09d32d": {"type": "FUNCTION", "size": 104, "library": "eenetctl", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "__sce_eenet_get_dns"}, "36": {"type": "MIPS_26", "symbol": "get_af", "scope": "LIBRARY", "original": ".text"}, "44": {"type": "MIPS_26", "symbol": "get_af", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_26", "symbol": "strncpy"}, "96": {"type": "MIPS_26", "symbol": "strncpy"}}}}}, "__sce_eenetctl_set_dns_and_route": {"1e825b2e1b4aa3785f2f2e7b692d6e9f6b3365b8": {"beee36bc": {"type": "FUNCTION", "size": 656, "library": "eenetctl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"76": {"type": "MIPS_26", "symbol": "nameserver_push", "scope": "LIBRARY", "original": ".text"}, "100": {"type": "MIPS_26", "symbol": "nameserver_push", "scope": "LIBRARY", "original": ".text"}, "124": {"type": "MIPS_26", "symbol": "strlen"}, "140": {"type": "MIPS_26", "symbol": "strlen"}, "168": {"type": "MIPS_26", "symbol": "nameserver_push", "scope": "LIBRARY", "original": ".text"}, "192": {"type": "MIPS_26", "symbol": "nameserver_push", "scope": "LIBRARY", "original": ".text"}, "216": {"type": "MIPS_26", "symbol": "strlen"}, "228": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "240": {"type": "MIPS_26", "symbol": "strncmp"}, "260": {"type": "MIPS_26", "symbol": "sceEENetInetPton"}, "272": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "296": {"type": "MIPS_26", "symbol": "sceEENetInetPton"}, "312": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "320": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "324": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "336": {"type": "MIPS_26", "symbol": "delete_default_route", "scope": "LIBRARY", "original": ".text"}, "352": {"type": "MIPS_26", "symbol": "_sce_eenet_add_default_route"}, "368": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "376": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "380": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "392": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "400": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "404": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "440": {"type": "MIPS_H)PS2SDB", 8192}, + std::string_view{R"PS2SDB(I16", "symbol": "", "original": ".rodata"}, "476": {"type": "MIPS_26", "symbol": "sceEENetInetPton"}, "492": {"type": "MIPS_26", "symbol": "sceEENetInetPton"}, "508": {"type": "MIPS_26", "symbol": "sceEENetInetPton"}, "532": {"type": "MIPS_26", "symbol": "_sce_eenet_set_route"}, "556": {"type": "MIPS_26", "symbol": "_sce_eenet_set_route"}, "576": {"type": "MIPS_26", "symbol": "__sceEENetlog"}, "580": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "592": {"type": "MIPS_26", "symbol": "strlen"}}}}}, "get_eenet_ifcnf": {"cd501ba524440bdd0bfe8b0655daac6cb390d8ff": {"aa08825c": {"type": "FUNCTION", "size": 136, "library": "eenetctl", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceEENetMalloc"}, "44": {"type": "MIPS_26", "symbol": "memset"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": "eenetctl"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": "eenetctl"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": "eenetctl"}}}}}, "__sce_eenetctl_wait_eenet_ifcnf": {"3887f1de7e61e4ad19b4f8bb2aa8b864094372d9": {"e95dcdad": {"type": "FUNCTION", "size": 12, "library": "eenetctl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "4": {"type": "MIPS_26", "symbol": "WaitSema"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "__sce_eenetctl_search_eenet_ifcnf": {"562058c40db4645027a3f5ddd18dbab090b1d41f": {"b020fdb8": {"type": "FUNCTION", "size": 100, "library": "eenetctl", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "eenetctl"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "eenetctl"}, "44": {"type": "MIPS_26", "symbol": "strncmp"}}}}}}, "libhttps": {"lap_start": {"14385c4c32ce51a816488a3dd6718f15c67e7053": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "laptime": {"e930242059a232be90389cb0e1523b75ed86b1d8": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "io_interrupted": {"f08a58eec9be7ecc498c3bb02372a7c75b9ba89e": {"00000000": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "io_aborted": {"578e3a6fa33f2a1f8b178fb484ad5fe0aefd4334": {"00000000": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "istoken": {"82db21c43f9bbdf6d60e1fb666e953f7a5cd6d2c": {"a3928712": {"type": "FUNCTION", "size": 76, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceHTTPLibSkipToken": {"3dfdc5f8d0dbbb5b61579a51e8c7444272559f28": {"8b857b33": {"type": "FUNCTION", "size": 84, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceHTTPLibSkipWS": {"b71a0f4d9fa4f4f4466de28ebe97769a543a8c6f": {"00000000": {"type": "FUNCTION", "size": 64, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "search": {"31b3295a2eab718c2a3b8956a413dcc1c6ac6c68": {"f38a2281": {"type": "FUNCTION", "size": 76, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "sceHTTPLibStrcasecmp", "scope": "LIBRARY"}}}}}, "sceHTTPCreate": {"ddd4324c7b37917c14269ad7c13c286052b8908b": {"dbfaf6da": {"type": "FUNCTION", "size": 236, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "xcalloc", "scope": "LIBRARY"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_26", "symbol": "sceHTTPLibLaunchThreads", "scope": "LIBRARY"}, "172": {"type": "MIPS_HI16", "symbol": "sceWrite"}, "176": {"type": "MIPS_26", "symbol": "xfree", "scope": "LIBRARY"}, "192": {"type": "MIPS_LO16", "symbol": "sceWrite"}, "208": {"type": "MIPS_26", "symbol": "sceHTTPSSetDefaultOption", "scope": "LIBRARY"}}}}}, "cleanup_response": {"27d1c19d14b4b8438e8346060898bcca1b3ee3e0": {"77778e61": {"type": "FUNCTION", "size": 112, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "sceHTTPFreeHeaderList", "scope": "LIBRARY"}, "44": {"type": "MIPS_26", "symbol": "xfree", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "xfree", "scope": "LIBRARY"}}}}}, "sceHTTPCleanUpResponse": {"08397092e90b239e1fbd8a8f4ca9ec0e1e0cefb4": {"9876e901": {"type": "FUNCTION", "size": 28, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "cleanup_response", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHTTPDestroy": {"b68babf22cd93484c53a74be3bf73a83d187df2c": {"f61b592a": {"type": "FUNCTION", "size": 160, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceHTTPLibCleanUp", "scope": "LIBRARY"}, "28": {"type": "MIPS_26", "symbol": "sceHTTPFreeURI", "scope": "LIBRARY"}, "40": {"type": "MIPS_26", "symbol": "sceHTTPFreeURI", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "sceHTTPFreeHeaderList", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "xfree", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "sceHTTPCleanUpResponse", "scope": "LIBRARY", "original": ".text"}, "124": {"type": "MIPS_26", "symbol": "xfree", "scope": "LIBRARY"}, "132": {"type": "MIPS_26", "symbol": "xfree", "scope": "LIBRARY"}}}}}, "prepare_headers": {"99839301543680bce26ac276cc756e1d71e5561b": {"73fa1839": {"type": "FUNCTION", "size": 1200, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".rod)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ata"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "48": {"type": "MIPS_26", "symbol": "search", "scope": "LIBRARY", "original": ".text"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_26", "symbol": "sceHTTPAddHeaderList", "scope": "LIBRARY"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "164": {"type": "MIPS_26", "symbol": "search", "scope": "LIBRARY", "original": ".text"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "192": {"type": "MIPS_26", "symbol": "sceHTTPAddHeaderList", "scope": "LIBRARY"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "248": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "260": {"type": "MIPS_26", "symbol": "search", "scope": "LIBRARY", "original": ".text"}, "276": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "288": {"type": "MIPS_26", "symbol": "sceHTTPAddHeaderList", "scope": "LIBRARY"}, "292": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "344": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "356": {"type": "MIPS_26", "symbol": "search", "scope": "LIBRARY", "original": ".text"}, "372": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "384": {"type": "MIPS_26", "symbol": "sceHTTPAddHeaderList", "scope": "LIBRARY"}, "388": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "436": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "440": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "444": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "452": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "456": {"type": "MIPS_26", "symbol": "sceHTTPAddHeaderList", "scope": "LIBRARY"}, "488": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "496": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "500": {"type": "MIPS_26", "symbol": "sceHTTPAddHeaderList", "scope": "LIBRARY"}, "560": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "568": {"type": "MIPS_26", "symbol": "search", "scope": "LIBRARY", "original": ".text"}, "572": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "592": {"type": "MIPS_HI16", "symbol": "", "original": "sceHTTPLibVersion"}, "596": {"type": "MIPS_26", "symbol": "sceHTTPLibSkipWS", "scope": "LIBRARY", "original": ".text"}, "616": {"type": "MIPS_HI16", "symbol": "", "original": "sceHTTPLibVersion"}, "620": {"type": "MIPS_26", "symbol": "sceHTTPLibStrsave", "scope": "LIBRARY"}, "648": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "652": {"type": "MIPS_LO16", "symbol": "", "original": "sceHTTPLibVersion"}, "656": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "660": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "664": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "672": {"type": "MIPS_26", "symbol": "sceHTTPLibVStrcat", "scope": "LIBRARY"}, "712": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "716": {"type": "MIPS_26", "symbol": "sceHTTPAddHeaderList", "scope": "LIBRARY"}, "728": {"type": "MIPS_26", "symbol": "xfree", "scope": "LIBRARY"}, "808": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "820": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "828": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "832": {"type": "MIPS_26", "symbol": "search", "scope": "LIBRARY", "original": ".text"}, "844": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "860": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "872": {"type": "MIPS_26", "symbol": "sceHTTPAddHeaderList", "scope": "LIBRARY"}, "876": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "916": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "924": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "928": {"type": "MIPS_26", "symbol": "search", "scope": "LIBRARY", "original": ".text"}, "952": {"type": "MIPS_26", "symbol": "memset"}, "960": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "968": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "972": {"type": "MIPS_26", "symbol": "sprintf"}, "988": {"type": "MIPS_26", "symbol": "sceHTTPAddHeaderList", "scope": "LIBRARY"}, "1056": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1064": {"type": "MIPS_26", "symbol": "search", "scope": "LIBRARY", "original": ".text"}, "1068": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1080": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1088": {"type": "MIPS_26", "symbol": "sceHTTPLibStrcasecmp", "scope": "LIBRARY"}, "1092": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1160": {"type": "MIPS_26", "symbol": "sceHTTPFreeHeaderList", "scope": "LIBRARY"}}}}}, "delete_auto_headers": {"014e7a1eaa9614a6bde92f5ca45c11fb1cff00f6": {"c2ea5b98": {"type": "FUNCTION", "size": 312, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_26", "symbol": "sceHTTPLibDelHeaderByName", "scope": "LIBRARY"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_26", "symbol": "sceHTTPLibDelHeaderByName", "scope": "LIBRARY"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_26", "symbol": "sceHTTPLibDelHeaderByName", "scope": "LIBRARY"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_26", "symbol": "sceHTTPLibDelHeaderByName", "scope": "LIBRARY"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "164": {"type": "MIPS_26", "symbol": "sceHTTPLibDelHeaderByName", "scope": "LIBRARY"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_26", "symbol": "sceHTTPLibDelHeaderByName", "scope": "LIBRARY"}, "208": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "216": {"type": "MIPS_26", "symbol": "sceHTTPLibDelHeaderByName", "scope": "LIBRARY"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "240": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "248": {"type": "MIPS_26", "symbol": "sceHTTPLibDelHeaderByName", "scope": "LIBRARY"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "272": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "280": {"type": "MIPS_26", "symbol": "sceHTTPLibDelHeaderByName", "scope": "LIBRARY"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "assemble_request": {"fe0a015f8f7a516c303c9c467c5efa719aa6b448": {"43877273": {"type": "FUNCTION", "size": 508, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_26", "symbol": "sceHTTPLibStrsave")PS2SDB", 8192}, + std::string_view{R"PS2SDB(, "scope": "LIBRARY"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "112": {"type": "MIPS_26", "symbol": "sceHTTPLibStrcasecmp", "scope": "LIBRARY"}, "144": {"type": "MIPS_26", "symbol": "sceHTTPLibStrsave", "scope": "LIBRARY"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "188": {"type": "MIPS_26", "symbol": "sceHTTPLibVStrcat", "scope": "LIBRARY"}, "216": {"type": "MIPS_26", "symbol": "sceHTTPUnparseURI", "scope": "LIBRARY"}, "228": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "248": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "260": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "280": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "284": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "292": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "300": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "320": {"type": "MIPS_26", "symbol": "sceHTTPLibVStrcat", "scope": "LIBRARY"}, "348": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "364": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "368": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "372": {"type": "MIPS_26", "symbol": "sceHTTPLibVStrcat", "scope": "LIBRARY"}, "404": {"type": "MIPS_26", "symbol": "sceHTTPLibStrcatsave", "scope": "LIBRARY"}, "408": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "424": {"type": "MIPS_26", "symbol": "xfree", "scope": "LIBRARY"}, "440": {"type": "MIPS_26", "symbol": "xfree", "scope": "LIBRARY"}, "448": {"type": "MIPS_26", "symbol": "xfree", "scope": "LIBRARY"}}}}}, "send_request": {"fc102b757a6870457c383459b0b2beff322d27ee": {"b6a0103f": {"type": "FUNCTION", "size": 168, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "strlen"}, "56": {"type": "MIPS_26", "symbol": "laptime", "scope": "LIBRARY", "original": ".text"}, "100": {"type": "MIPS_26", "symbol": "sceHTTPLibSend", "scope": "LIBRARY"}}}}}, "hashed_send": {"43df7671cea9cf64f26544487d8600f352e625a2": {"af4f35a4": {"type": "FUNCTION", "size": 392, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"140": {"type": "MIPS_26", "symbol": "laptime", "scope": "LIBRARY", "original": ".text"}, "204": {"type": "MIPS_26", "symbol": "sceHTTPLibSend", "scope": "LIBRARY"}}}}}, "send_body": {"8d23105793b95001fe281fb2dd5c784084bdcb08": {"6c9a5d1a": {"type": "FUNCTION", "size": 192, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "hashed_send", "scope": "LIBRARY", "original": ".text"}, "72": {"type": "MIPS_26", "symbol": "laptime", "scope": "LIBRARY", "original": ".text"}, "120": {"type": "MIPS_26", "symbol": "sceHTTPLibSend", "scope": "LIBRARY"}}}}}, "getline": {"edc5dc12d7b4d148e5d48e4c855b4818c45c4668": {"c189b2de": {"type": "FUNCTION", "size": 432, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"76": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "220": {"type": "MIPS_26", "symbol": "xrealloc", "scope": "LIBRARY"}, "236": {"type": "MIPS_26", "symbol": "xmalloc", "scope": "LIBRARY"}, "260": {"type": "MIPS_26", "symbol": "memcpy"}, "304": {"type": "MIPS_26", "symbol": "xrealloc", "scope": "LIBRARY"}, "320": {"type": "MIPS_26", "symbol": "xmalloc", "scope": "LIBRARY"}, "360": {"type": "MIPS_26", "symbol": "memcpy"}}}}}, "process_header": {"f261eae413356d46eb0967457beb4f3aeb5b93f1": {"fc5181c1": {"type": "FUNCTION", "size": 412, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "44": {"type": "MIPS_26", "symbol": "xmalloc", "scope": "LIBRARY"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_26", "symbol": "sceHTTPLibStrcasesub", "scope": "LIBRARY"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_26", "symbol": "sscanf"}, "136": {"type": "MIPS_26", "symbol": "xfree", "scope": "LIBRARY"}, "208": {"type": "MIPS_26", "symbol": "strchr"}, "304": {"type": "MIPS_26", "symbol": "istoken", "original": ".text"}, "320": {"type": "MIPS_26", "symbol": "sceHTTPLibSkipWS", "scope": "LIBRARY", "original": ".text"}, "336": {"type": "MIPS_26", "symbol": "sceHTTPAddHeaderList", "scope": "LIBRARY"}}}}}, "must_without_content": {"40d271f440aaff7a5c31f62f15ec6bb3b07563dc": {"810ac71a": {"type": "FUNCTION", "size": 160, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "get_content_length": {"c1600124fb2df822b82ee695b71e64415bf34719": {"933857c0": {"type": "FUNCTION", "size": 156, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_26", "symbol": "sceHTTPLibStrcasesub", "scope": "LIBRARY"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "48": {"type": "MIPS_26", "symbol": "sceHTTPLibSkipWS", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_26", "symbol": "sceHTTPLibStrtodi", "scope": "LIBRARY"}}}}}, "read_headers": {"d681f7f0f5227a87da3b710d48fafb796acb374a": {"1fa83c28": {"type": "FUNCTION", "size": 784, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "264": {"type": "MIPS_26", "symbol": "sceHTTPLibStrcatsave", "scope": "LIBRARY"}, "312": {"type": "MIPS_26", "symbol": "process_header", "scope": "LIBRARY", "original": ".text"}, "352": {"type": "MIPS_26", "symbol": "xfree", "scope": "LIBRARY"}, "400": {"type": "MIPS_26", "symbol": "getline", "original": ".text"}, "504": {"type": "MIPS_26", "symbol": "laptime", "scope": "LIBRARY", "original": ".text"}, "560": {"type": "MIPS_26", "symbol": "sceHTTPL)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ibRecv", "scope": "LIBRARY"}, "624": {"type": "MIPS_26", "symbol": "xfree", "scope": "LIBRARY"}, "648": {"type": "MIPS_26", "symbol": "io_interrupted", "scope": "LIBRARY", "original": ".text"}, "700": {"type": "MIPS_26", "symbol": "xfree", "scope": "LIBRARY"}}}}}, "parse_keep_alive": {"dc2e870dab08a2e2dbb044a7c60de6c3bc682d08": {"83923680": {"type": "FUNCTION", "size": 700, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"72": {"type": "MIPS_26", "symbol": "strlen"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "120": {"type": "MIPS_26", "symbol": "sceHTTPLibSkipWS", "scope": "LIBRARY", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "sceHTTPLibSkipToken", "scope": "LIBRARY", "original": ".text"}, "172": {"type": "MIPS_26", "symbol": "strchr"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "192": {"type": "MIPS_26", "symbol": "sceHTTPLibStrcasecmp", "scope": "LIBRARY"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "220": {"type": "MIPS_26", "symbol": "sceHTTPLibSkipWS", "scope": "LIBRARY", "original": ".text"}, "244": {"type": "MIPS_26", "symbol": "sceHTTPLibSkipWS", "scope": "LIBRARY", "original": ".text"}, "256": {"type": "MIPS_26", "symbol": "sceHTTPLibSkipToken", "scope": "LIBRARY", "original": ".text"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "396": {"type": "MIPS_26", "symbol": "sceHTTPLibStrcasecmp", "scope": "LIBRARY"}, "400": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "424": {"type": "MIPS_26", "symbol": "sceHTTPLibSkipWS", "scope": "LIBRARY", "original": ".text"}, "448": {"type": "MIPS_26", "symbol": "sceHTTPLibSkipWS", "scope": "LIBRARY", "original": ".text"}, "460": {"type": "MIPS_26", "symbol": "sceHTTPLibSkipToken", "scope": "LIBRARY", "original": ".text"}, "524": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}}}}}, "hashed_recv": {"771d582c791a002f29f947bcb02f13a562edfe44": {"2041c9fd": {"type": "FUNCTION", "size": 408, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"120": {"type": "MIPS_26", "symbol": "sceHTTPLibRecv", "scope": "LIBRARY"}, "320": {"type": "MIPS_26", "symbol": "laptime", "scope": "LIBRARY", "original": ".text"}}}}}, "read_response": {"04979954dcffc0593a7b52fe7b35f735eb9c9bae": {"c13fe1cc": {"type": "FUNCTION", "size": 3896, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"120": {"type": "MIPS_26", "symbol": "xmalloc", "scope": "LIBRARY"}, "196": {"type": "MIPS_26", "symbol": "read_headers", "scope": "LIBRARY", "original": ".text"}, "216": {"type": "MIPS_26", "symbol": "io_interrupted", "scope": "LIBRARY", "original": ".text"}, "240": {"type": "MIPS_26", "symbol": "xfree", "scope": "LIBRARY"}, "248": {"type": "MIPS_26", "symbol": "xfree", "scope": "LIBRARY"}, "312": {"type": "MIPS_26", "symbol": "sceHTTPLibGetTime", "scope": "LIBRARY"}, "324": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "332": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "344": {"type": "MIPS_26", "symbol": "search", "scope": "LIBRARY", "original": ".text"}, "360": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "368": {"type": "MIPS_26", "symbol": "sceHTTPLibStrcasecmp", "scope": "LIBRARY"}, "372": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "380": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "404": {"type": "MIPS_26", "symbol": "sceHTTPLibStrcasecmp", "scope": "LIBRARY"}, "408": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "424": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "428": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "432": {"type": "MIPS_26", "symbol": "search", "scope": "LIBRARY", "original": ".text"}, "456": {"type": "MIPS_26", "symbol": "parse_keep_alive", "scope": "LIBRARY", "original": ".text"}, "560": {"type": "MIPS_26", "symbol": "must_without_content", "scope": "LIBRARY", "original": ".text"}, "576": {"type": "MIPS_26", "symbol": "get_content_length", "scope": "LIBRARY", "original": ".text"}, "592": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "600": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "604": {"type": "MIPS_26", "symbol": "search", "scope": "LIBRARY", "original": ".text"}, "620": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "628": {"type": "MIPS_26", "symbol": "sceHTTPLibStrcasecmp", "scope": "LIBRARY"}, "632": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "696": {"type": "MIPS_26", "symbol": "lap_start", "scope": "LIBRARY", "original": ".text"}, "988": {"type": "MIPS_26", "symbol": "xmalloc", "scope": "LIBRARY"}, "1112": {"type": "MIPS_26", "symbol": "memcpy"}, "1380": {"type": "MIPS_26", "symbol": "memcpy"}, "1456": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1464": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1556": {"type": "MIPS_26", "symbol": "laptime", "scope": "LIBRARY", "original": ".text"}, "1592": {"type": "MIPS_26", "symbol": "xfree", "scope": "LIBRARY"}, "1632": {"type": "MIPS_26", "symbol": "sceHTTPLibRecv", "scope": "LIBRARY"}, "1664": {"type": "MIPS_26", "symbol": "xfree", "scope": "LIBRARY"}, "1704": {"type": "MIPS_26", "symbol": "getline", "original": ".text"}, "1764": {"type": "MIPS_26", "symbol": "strchr"}, "1784": {"type": "MIPS_26", "symbol": "sceHTTPLibSkipWS", "scope": "LIBRARY", "original": ".text"}, "1812": {"type": "MIPS_26", "symbol": "xfree", "scope": "LIBRARY"}, "1848": {"type": "MIPS_26", "symbol": "read_headers", "scope": "LIBRARY", "original": ".text"}, "1868": {"type": "MIPS_26", "symbol": "io_interrupted", "scope": "LIBRARY", "original": ".text"}, "1892": {"type": "MIPS_26", "symbol": "xfree", "scope": "LIBRARY"}, "1900": {"type": "MIPS_26", "symbol": "xfree", "scope": "LIBRARY"}, "2080": {"type": "MIPS_26", "symbol": "xfree", "scope": "LIBRARY"}, "2140": {"type": "MIPS_26", "symbol": "xmalloc", "scope": "LIBRARY"}, "2192": {"type": "MIPS_26", "symbol": "memcpy"}, "2220": {"type": "MIPS_26", "symbol": "hashed_recv", "scope": "LIBRARY", "original": ".text"}, "2260": {"type": "MIPS_26", "symbol": "xfree", "scope": "LIBRARY"}, "2268": {"type": "MIPS_26", "symbol": "io_interrupted", "scope": "LIBRARY", "original": ".text"}, "2304": {"type": "MIPS_26", "symbol": "memcpy"}, "2380": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2408": {"type": "MIPS_26", "symbol": "xmalloc", "scope": "LIBRARY"}, "2424": {"type": "MIPS_26", "symbol": "xrealloc", "scope": "LIBRARY"}, "2476": {"type": "MIPS_26", "symbol": "memcpy"}, "2696": {"type": "MIPS_26", "symbol": "xfree", "scope": "LIBRARY"}, "2884": {"type": "MIPS_26", "symbol": "xfree", "scope": "LIBRARY"}, "2896": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "3020": {"type": "MIPS_26", "symbol": "memcpy"}, "3052": {"type": "MIPS_26", "symbol": "xrealloc", "scope": "LIBRARY"}, "3084": {"type": "MIPS_26", "symbol": "memcpy"}, "3188": {"type": "MIPS_26", "symbol": "memcpy"}, "3452": {"type": "MIPS_26", "symbol": "hashed_recv", "scope": "LIBRARY", "original": ".text"}, "3484": {"type": "MIPS_26", "symbol": "io_interrupted", "scope": "LIBRARY", "original": ".text"}, "3756": {"type": "MIPS_26", "symbol": "xfree", "scope": "LIBRARY"}, "3780": {"type": "MIPS_26", "symbol": "io_aborted", "scope": "LIBRARY", "original": ".text"}, "3820": {"type": "MIPS_26", "symbol": "xfree", "scope": "LIBRARY"}, "3828": {"type": "MIPS_26", "symbol": "xfree", "scope": "LIBRARY"}, "3836": {"type": "MIPS_26", "symbol": "sceHTTPCleanUpResponse", "scope": "LIBRARY", "original": ".text"}}}}}, "check_state": {"1b3dacfa45)PS2SDB", 8192}, + std::string_view{R"PS2SDB(e28b5583ef95b5947521ce8553d255": {"5f00ae0e": {"type": "FUNCTION", "size": 80, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "transaction": {"3150563efd5365b4da4c610f01c6b232194f1ee1": {"23f01e43": {"type": "FUNCTION", "size": 376, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "cleanup_response", "scope": "LIBRARY", "original": ".text"}, "44": {"type": "MIPS_26", "symbol": "sceNetGlueThreadInit"}, "76": {"type": "MIPS_26", "symbol": "prepare_headers", "scope": "LIBRARY", "original": ".text"}, "84": {"type": "MIPS_26", "symbol": "lap_start", "scope": "LIBRARY", "original": ".text"}, "92": {"type": "MIPS_26", "symbol": "assemble_request", "scope": "LIBRARY", "original": ".text"}, "112": {"type": "MIPS_26", "symbol": "send_request", "scope": "LIBRARY", "original": ".text"}, "128": {"type": "MIPS_26", "symbol": "xfree", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "send_body", "scope": "LIBRARY", "original": ".text"}, "196": {"type": "MIPS_26", "symbol": "read_response", "scope": "LIBRARY", "original": ".text"}, "212": {"type": "MIPS_26", "symbol": "check_state", "scope": "LIBRARY", "original": ".text"}, "252": {"type": "MIPS_26", "symbol": "xfree", "scope": "LIBRARY"}, "268": {"type": "MIPS_26", "symbol": "delete_auto_headers", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHTTPRequest": {"0573be8d81f3ae3474eb394b22fe34159b1d573a": {"1d2bbdbc": {"type": "FUNCTION", "size": 460, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"72": {"type": "MIPS_26", "symbol": "sceHTTPSClearErrnum", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "TerminateThread"}, "124": {"type": "MIPS_26", "symbol": "DeleteThread"}, "132": {"type": "MIPS_26", "symbol": "xfree", "scope": "LIBRARY"}, "160": {"type": "MIPS_26", "symbol": "xmalloc", "scope": "LIBRARY"}, "208": {"type": "MIPS_HI16", "symbol": "transaction", "original": ".text"}, "212": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "220": {"type": "MIPS_LO16", "symbol": "transaction", "original": ".text"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "256": {"type": "MIPS_26", "symbol": "CreateThread"}, "292": {"type": "MIPS_26", "symbol": "StartThread"}, "328": {"type": "MIPS_26", "symbol": "TerminateThread"}, "336": {"type": "MIPS_26", "symbol": "DeleteThread"}, "348": {"type": "MIPS_26", "symbol": "xfree", "scope": "LIBRARY"}, "372": {"type": "MIPS_26", "symbol": "transaction", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHTTPGetResponse": {"3a31116b0bb4f3bcdebad553683e2b4b82e33f4f": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHTTPGetClientError": {"77bb6a8892faca17a5374129383d12e1d4bf0bb8": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHTTPAbortRequest": {"4a4396e9b563643baa6ca6a38ed9eaa5960606f2": {"3d54f808": {"type": "FUNCTION", "size": 80, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "sceHTTPLibAbortIO", "scope": "LIBRARY"}}}}}, "sceHTTPGetTransferedBytes": {"90527d7f075cece200ec271404c520f02559004e": {"00000000": {"type": "FUNCTION", "size": 32, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHTTPGetPostedBytes": {"01fd139224f6c135ec92d51e0818f7f36a1ae9bd": {"00000000": {"type": "FUNCTION", "size": 36, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHTTPGetContentLength": {"0bda46457b72bbc40216511c869d67944dd96871": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHTTPInit": {"c0b085f8d64de5529efd09c8bf08665619ed4ec2": {"3460c13a": {"type": "FUNCTION", "size": 100, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_26", "symbol": "CreateSema"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_26", "symbol": "sceHTTPLibInitIO", "scope": "LIBRARY"}}}}}, "sceHTTPTerminate": {"a6839aa334db21e6aafb2cfd534b17eae8c333f8": {"ed0efa61": {"type": "FUNCTION", "size": 84, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceHTTPLibReleaseDateTimer", "scope": "LIBRARY"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_26", "symbol": "DeleteSema"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_26", "symbol": "sceHTTPLibTerminateIO", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "sceHTTPLibTerminateMemory", "scope": "LIBRARY"}}}}}, "sceHTTPSetDefaultThreadValue": {"07ac892fe9a32a2331e1267b4b02cd915b17142c": {"9e8d022d": {"type": "FUNCTION", "size": 64, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceHTTPParseURI": {"30f8c3eef773a1d6fdd63b853878834e017692f3": {"fce35d3e": {"type": "FUNCTION", "size": 680, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "xcalloc", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "strchr"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_26", "symbol": "strncmp"}, "112": {"type": "MIPS_26", "symbol": "sceHTTPLibStrnsave", "scope": "LIBRARY"}, "136": {"type": "MIPS_26", "symbol": "strchr"}, "156": {"type": "MIPS_26", "symbol": "strchr"}, "224": {"type": "MIPS_26", "symbol": "sceHTTPLibStrnsave", "scope": "LIBRARY"}, "248": {"type": "MIPS_26", "symbol": "sceHTTPLibStrnsave", "scope": "LIBRARY"}, "276": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "280": {"type": "MIPS_26", "symbol": "sceHTTPLibStrcasecmp", "scope": "LIBRARY"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "316": {"type": "MIPS_26", "symbol": "strchr"}, "336": {"type": "MIPS_26", "symbol": "strlen"}, "352": {"type": "MIPS_26", "symbol": "strchr"}, "404": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "412": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "468": {"type": "MIPS_26", "symbol": "sceHTTPLibStrnsave", "scope": "LIBRARY"}, "500": {"type": "MIPS_26", "symbol": "strchr"}, "528": {"type")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: "MIPS_26", "symbol": "sceHTTPLibStrsave", "scope": "LIBRARY"}, "544": {"type": "MIPS_26", "symbol": "strlen"}, "576": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "580": {"type": "MIPS_26", "symbol": "sceHTTPLibStrsave", "scope": "LIBRARY"}, "584": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "600": {"type": "MIPS_26", "symbol": "sceHTTPLibStrnsave", "scope": "LIBRARY"}, "632": {"type": "MIPS_26", "symbol": "sceHTTPFreeURI", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHTTPCloneURI": {"ef17234e780a5a5da28875d4bb4f6da3592f779d": {"45e2e907": {"type": "FUNCTION", "size": 264, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "xcalloc", "scope": "LIBRARY"}, "48": {"type": "MIPS_26", "symbol": "sceHTTPLibStrsave", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "sceHTTPLibStrsave", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "sceHTTPLibStrsave", "scope": "LIBRARY"}, "132": {"type": "MIPS_26", "symbol": "sceHTTPLibStrsave", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "sceHTTPLibStrsave", "scope": "LIBRARY"}, "196": {"type": "MIPS_26", "symbol": "sceHTTPLibStrsave", "scope": "LIBRARY"}, "232": {"type": "MIPS_26", "symbol": "sceHTTPFreeURI", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHTTPFreeURI": {"70f14724fcd5933c051e12fbcf696122ab394d60": {"6f606241": {"type": "FUNCTION", "size": 168, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "xfree", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "xfree", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "xfree", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "xfree", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "xfree", "scope": "LIBRARY"}, "132": {"type": "MIPS_26", "symbol": "xfree", "scope": "LIBRARY"}, "140": {"type": "MIPS_26", "symbol": "xfree", "scope": "LIBRARY"}}}}}, "sceHTTPUnparseURI": {"eec2f9f73fcca1c7cb54f448c7ad7bb3474c2d48": {"5b11c849": {"type": "FUNCTION", "size": 452, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "sceHTTPLibStrcatsave", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "56": {"type": "MIPS_26", "symbol": "sceHTTPLibStrcatsave", "scope": "LIBRARY"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_26", "symbol": "sceHTTPLibStrcatsave", "scope": "LIBRARY"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_26", "symbol": "sceHTTPLibStrcatsave", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "152": {"type": "MIPS_26", "symbol": "sceHTTPLibStrcatsave", "scope": "LIBRARY"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "180": {"type": "MIPS_26", "symbol": "sceHTTPLibStrcatsave", "scope": "LIBRARY"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "216": {"type": "MIPS_26", "symbol": "sceHTTPLibStrcatsave", "scope": "LIBRARY"}, "232": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "240": {"type": "MIPS_26", "symbol": "sceHTTPLibStrcatsave", "scope": "LIBRARY"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "268": {"type": "MIPS_26", "symbol": "memset"}, "276": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "288": {"type": "MIPS_26", "symbol": "sprintf"}, "300": {"type": "MIPS_26", "symbol": "sceHTTPLibStrcatsave", "scope": "LIBRARY"}, "336": {"type": "MIPS_26", "symbol": "sceHTTPLibStrcatsave", "scope": "LIBRARY"}, "368": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "376": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "380": {"type": "MIPS_26", "symbol": "sceHTTPLibVStrcat", "scope": "LIBRARY"}, "420": {"type": "MIPS_26", "symbol": "xfree", "scope": "LIBRARY"}}}}}, "sceHTTPIsAbsoluteURI": {"0a524476034599be615a8bdccfd1881e359b0c02": {"75592f7c": {"type": "FUNCTION", "size": 48, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "24": {"type": "MIPS_26", "symbol": "sceHTTPLibStrcasesub", "scope": "LIBRARY"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sceHTTPFindAbsoluteURI": {"53c9a55696e8e25d2bd7e04a5977fea8eaa7010c": {"def1dd0c": {"type": "FUNCTION", "size": 412, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "sceHTTPIsAbsoluteURI", "scope": "LIBRARY", "original": ".text"}, "48": {"type": "MIPS_26", "symbol": "sceHTTPLibStrsave", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "sceHTTPParseURI", "scope": "LIBRARY", "original": ".text"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "228": {"type": "MIPS_26", "symbol": "sceHTTPLibStrsave", "scope": "LIBRARY"}, "268": {"type": "MIPS_26", "symbol": "sceHTTPLibStrsave", "scope": "LIBRARY"}, "288": {"type": "MIPS_26", "symbol": "strrchr"}, "304": {"type": "MIPS_26", "symbol": "sceHTTPLibStrcatsave", "scope": "LIBRARY"}, "320": {"type": "MIPS_26", "symbol": "xfree", "scope": "LIBRARY"}, "336": {"type": "MIPS_26", "symbol": "sceHTTPUnparseURI", "scope": "LIBRARY", "original": ".text"}, "348": {"type": "MIPS_26", "symbol": "sceHTTPFreeURI", "scope": "LIBRARY", "original": ".text"}, "356": {"type": "MIPS_26", "symbol": "xfree", "scope": "LIBRARY"}, "372": {"type": "MIPS_26", "symbol": "sceHTTPFreeURI", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHTTPAddHeaderList": {"8e53a0688cc74de4a2f0889c55e230292a3de3be": {"0a815b04": {"type": "FUNCTION", "size": 224, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"88": {"type": "MIPS_26", "symbol": "sceHTTPLibStrsave", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "sceHTTPLibStrsave", "scope": "LIBRARY"}, "136": {"type": "MIPS_26", "symbol": "xmalloc", "scope": "LIBRARY"}, "152": {"type": "MIPS_26", "symbol": "xfree", "scope": "LIBRARY"}, "164": {"type": "MIPS_26", "symbol": "xfree", "scope": "LIBRARY"}}}}}, "sceHTTPFreeHeaderList": {"2703c244a63cb8e3f7066d16b3123c60c7552408": {"2c8fde77": {"type": "FUNCTION", "size": 112, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "xfree", "scope": "LIBRARY"}, "60": {"type": "MIPS_26", "symbol": "xfree", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "xfree", "scope": "LIBRARY"}}}}}, "sceHTTPLibCloneHeaderList": {"c7d666fc811d06f3c01e1e4c3e22d181ebc90267": {"2faade20": {"type": "FUNCTION", "size": 104, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "sceHTTPAddHeaderList", "scope": "LIBRARY", "original": ".text"}, "56": {"type": "MIPS_26", "symbol": "sceHTTPFreeHeaderList", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHTTPLibCatHeaderList": {"5061f12e57903a6cabe6034d154403d8bf583b8b": {"00000000": {"type": "FUNCTION", "size": 88, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHTTPLibDelHeade)PS2SDB", 8192}, + std::string_view{R"PS2SDB(rByName": {"5e4489c6b45c647378ceaf8cc6af243290bed9ba": {"8f5a6fa3": {"type": "FUNCTION", "size": 128, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "sceHTTPLibStrcasecmp", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "delete", "scope": "LIBRARY", "original": ".text"}}}}}, "delete": {"2238183baca79c492c4d019f78d145daf10514bb": {"0da5e8ec": {"type": "FUNCTION", "size": 60, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "sceHTTPFreeHeaderList", "scope": "LIBRARY", "original": ".text"}}}}}, "url_encoded_len": {"88a5dfd614a837f75719b4cfc96cf3deca4e730f": {"a3928712": {"type": "FUNCTION", "size": 64, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "url_encoded_lenN": {"f76f56fbb779eb6d15514280098e21bde18d966c": {"a3928712": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceURLEscape": {"8e2f322b7d17fb04d2869a3d536995ee46d3b077": {"7f64bd98": {"type": "FUNCTION", "size": 200, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "url_encoded_len", "scope": "LIBRARY", "original": ".text"}, "20": {"type": "MIPS_26", "symbol": "xmalloc", "scope": "LIBRARY"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceURLLibEscapeN": {"47dd02ce75b0b56e0d3fc1dec6a290e81eb42c28": {"db146a9e": {"type": "FUNCTION", "size": 220, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "url_encoded_lenN", "scope": "LIBRARY", "original": ".text"}, "28": {"type": "MIPS_26", "symbol": "xmalloc", "scope": "LIBRARY"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "url_decoded_len": {"2582034606e863ff9294f6445881d02d0d3d6783": {"61fe2c30": {"type": "FUNCTION", "size": 252, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceURLUnescape": {"77e5fcc211932f866ade3536385709d373b8013f": {"0d81fb7d": {"type": "FUNCTION", "size": 276, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "url_decoded_len", "scope": "LIBRARY", "original": ".text"}, "28": {"type": "MIPS_26", "symbol": "xmalloc", "scope": "LIBRARY"}}}}}, "sceHTTPSetOption": {"7c5417832810b871cfb9817493197c93e46d8273": {"407f004a": {"type": "FUNCTION", "size": 1168, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_26", "symbol": "sceHTTPLibStrsave", "scope": "LIBRARY"}, "136": {"type": "MIPS_26", "symbol": "xfree", "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "sceHTTPCloneURI", "scope": "LIBRARY"}, "252": {"type": "MIPS_26", "symbol": "sceHTTPFreeURI", "scope": "LIBRARY"}, "284": {"type": "MIPS_26", "symbol": "sceHTTPCloneURI", "scope": "LIBRARY"}, "316": {"type": "MIPS_26", "symbol": "sceHTTPFreeURI", "scope": "LIBRARY"}, "348": {"type": "MIPS_26", "symbol": "sceHTTPLibCloneHeaderList", "scope": "LIBRARY"}, "400": {"type": "MIPS_26", "symbol": "sceHTTPLibDelHeaderByName", "scope": "LIBRARY"}, "440": {"type": "MIPS_26", "symbol": "sceHTTPFreeHeaderList", "scope": "LIBRARY"}, "460": {"type": "MIPS_26", "symbol": "sceHTTPLibCatHeaderList", "scope": "LIBRARY"}, "540": {"type": "MIPS_26", "symbol": "xfree", "scope": "LIBRARY"}, "576": {"type": "MIPS_26", "symbol": "sceURLLibEscapeN", "scope": "LIBRARY"}, "600": {"type": "MIPS_26", "symbol": "strlen"}, "616": {"type": "MIPS_26", "symbol": "xmalloc", "scope": "LIBRARY"}, "652": {"type": "MIPS_26", "symbol": "memcpy"}, "908": {"type": "MIPS_26", "symbol": "sceHTTPLibRestartThreads", "scope": "LIBRARY"}, "1088": {"type": "MIPS_26", "symbol": "sceHTTPLibDelHeaderByName", "scope": "LIBRARY"}}}}}, "sceHTTPGetOption": {"6cb205b9897cb28c8a393dc321b3ecaf2189b901": {"871909b2": {"type": "FUNCTION", "size": 876, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sceHTTPLibStrsave": {"f0931e5afd6db783c18871fd3bae826c964102b8": {"41469169": {"type": "FUNCTION", "size": 92, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "strlen"}, "32": {"type": "MIPS_26", "symbol": "xmalloc", "scope": "LIBRARY"}, "60": {"type": "MIPS_26", "symbol": "strcpy"}}}}}, "sceHTTPLibStrnsave": {"3ed729a8c04517036bae7b6e73a6c0012174b134": {"24e3c515": {"type": "FUNCTION", "size": 132, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "strlen"}, "48": {"type": "MIPS_26", "symbol": "xmalloc", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "strncpy"}}}}}, "sceHTTPLibStrcatsave": {"60d28a2bf32bcfc1c9707b2de0a8035dc341ce97": {"fde8b5e1": {"type": "FUNCTION", "size": 200, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "strlen"}, "72": {"type": "MIPS_26", "symbol": "strlen"}, "88": {"type": "MIPS_26", "symbol": "xrealloc", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "strcpy"}, "128": {"type": "MIPS_26", "symbol": "strlen"}, "136": {"type": "MIPS_26", "symbol": "xmalloc", "scope": "LIBRARY"}, "164": {"type": "MIPS_26", "symbol": "strcpy"}}}}}, "sceHTTPLibVStrcat": {"da4e36fbebb849d284f365755a6d2b7612017d19": {"1780970c": {"type": "FUNCTION", "size": 204, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "sceHTTPLibStrsave", "scope": "LIBRARY", "original": ".text"}, "120": {"type": "MIPS_26", "symbol": "sceHTTPLibStrcatsave", "scope": "LIBRARY", "original": ".text"}, "140": {"type": "MIPS_26", "symbol": "xf)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ree", "scope": "LIBRARY"}, "164": {"type": "MIPS_26", "symbol": "xfree", "scope": "LIBRARY"}}}}}, "sceHTTPLibStrcasecmp": {"dd90f232279507b4dd9565495df9d0fe6c6ba1be": {"d3e72eac": {"type": "FUNCTION", "size": 104, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}}}}}, "sceHTTPLibStrcasesub": {"3cdd392285004ef28963cb2f24433ff65629b5b2": {"aa0c61ce": {"type": "FUNCTION", "size": 164, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "strlen"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}}}}}, "sceHTTPLibStrsub": {"e10c627f02dc84523801f0832aa1285cfc5b6e77": {"f1409328": {"type": "FUNCTION", "size": 112, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "strlen"}}}}}, "sceHTTPLibStrtodi": {"9e649be9388202db924dbcbe5ab63a1c6f0026e3": {"a094bc6d": {"type": "FUNCTION", "size": 124, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}}}}}, "sceHTTPAbort": {"d1d81980475469fbfdf1c066004ad198ef01e30a": {"2fb11687": {"type": "FUNCTION", "size": 100, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "sceHTTPLibAbortIO", "scope": "LIBRARY", "original": ".text"}, "72": {"type": "MIPS_26", "symbol": "sceNetGlueAbortResolver"}}}}}, "calarm_handler": {"e0e4e931f6e29e219e2fe99e742378da54739efd": {"7a4fb16b": {"type": "FUNCTION", "size": 52, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "iSignalSema"}}}}}, "readline": {"67c2e56798025cff3b1089c2e2192f51582c1f5d": {"208aefd3": {"type": "FUNCTION", "size": 348, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "xmalloc", "scope": "LIBRARY"}, "128": {"type": "MIPS_26", "symbol": "sceHTTPLibRecv", "scope": "LIBRARY", "original": ".text"}, "240": {"type": "MIPS_26", "symbol": "xrealloc", "scope": "LIBRARY"}, "280": {"type": "MIPS_26", "symbol": "xfree", "scope": "LIBRARY"}}}}}, "connect_proxy": {"b5294e10543617b39cc6d27c913afb6a25001979": {"14082a55": {"type": "FUNCTION", "size": 452, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "48": {"type": "MIPS_26", "symbol": "sprintf"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_26", "symbol": "sceHTTPLibVStrcat", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "strlen"}, "140": {"type": "MIPS_26", "symbol": "sceHTTPLibSend", "scope": "LIBRARY", "original": ".text"}, "152": {"type": "MIPS_26", "symbol": "xfree", "scope": "LIBRARY"}, "204": {"type": "MIPS_26", "symbol": "readline", "scope": "LIBRARY", "original": ".text"}, "220": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "228": {"type": "MIPS_26", "symbol": "sceHTTPLibStrcasesub", "scope": "LIBRARY"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "248": {"type": "MIPS_26", "symbol": "strchr"}, "260": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "272": {"type": "MIPS_26", "symbol": "strncmp"}, "288": {"type": "MIPS_26", "symbol": "xfree", "scope": "LIBRARY"}, "304": {"type": "MIPS_26", "symbol": "readline", "scope": "LIBRARY", "original": ".text"}, "324": {"type": "MIPS_26", "symbol": "xfree", "scope": "LIBRARY"}, "372": {"type": "MIPS_26", "symbol": "xfree", "scope": "LIBRARY"}, "392": {"type": "MIPS_26", "symbol": "sceNetGlueShutdown"}, "400": {"type": "MIPS_26", "symbol": "sceNetGlueThreadTerminate"}}}}}, "open_connection": {"1e3bca6da7a550d0151b6468286935e558c0be06": {"8f47642c": {"type": "FUNCTION", "size": 688, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"116": {"type": "MIPS_26", "symbol": "sceNetGlueThreadInit"}, "132": {"type": "MIPS_26", "symbol": "sceNetGlueInetAddr"}, "184": {"type": "MIPS_26", "symbol": "sceNetGlueGethostbyname"}, "204": {"type": "MIPS_26", "symbol": "__sceNetGlueErrnoLoc"}, "216": {"type": "MIPS_26", "symbol": "__sceNetGlueHErrnoLoc"}, "280": {"type": "MIPS_26", "symbol": "memcpy"}, "312": {"type": "MIPS_26", "symbol": "sceNetGlueHtons"}, "316": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "332": {"type": "MIPS_26", "symbol": "sceNetGlueSocket"}, "352": {"type": "MIPS_26", "symbol": "__sceNetGlueErrnoLoc"}, "400": {"type": "MIPS_26", "symbol": "sceNetGlueConnect"}, "432": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "436": {"type": "MIPS_26", "symbol": "sceHTTPLibStrcasecmp", "scope": "LIBRARY"}, "464": {"type": "MIPS_26", "symbol": "connect_proxy", "scope": "LIBRARY", "original": ".text"}, "480": {"type": "MIPS_26", "symbol": "sceHTTPSOpen", "scope": "LIBRARY"}, "512": {"type": "MIPS_26", "symbol": "sceNetGlueShutdown"}, "520": {"type": "MIPS_26", "symbol": "sceNetGlueThreadTerminate"}, "528": {"type": "MIPS_26", "symbol": "__sceNetGlueErrnoLoc"}, "632": {"type": "MIPS_26", "symbol": "sceNetGlueShutdown"}}}}}, "open_thread": {"78f58e6a094e966557d018a54f1a2e3a925eb7fa": {"90979c9a": {"type": "FUNCTION", "size": 56, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "open_connection", "scope": "LIBRARY", "original": ".text"}, "28": {"type": "MIPS_26", "symbol": "SignalSema"}, "48": {"type": "MIPS_26", "symbol": "SignalSema"}}}}}, "http_open": {"b75682799f0cdbd0e17687f43ebf8012fd7e5db2": {"cc7d10dd": {"type": "FUNCTION", "size": 640, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "TerminateThread"}, "48": {"type": "MIPS_26", "symbol": "DeleteThread"}, "56": {"type": "MIPS_26", "symbol": "xfree", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "xmalloc", "scope": "LIBRARY"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "160": {"type": "MIPS_26", "symbol": "CreateThread"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "216": {"type": )PS2SDB", 8192}, + std::string_view{R"PS2SDB("MIPS_26", "symbol": "CreateSema"}, "232": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "244": {"type": "MIPS_26", "symbol": "CreateSema"}, "272": {"type": "MIPS_26", "symbol": "StartThread"}, "316": {"type": "MIPS_26", "symbol": "TimerUSec2BusClock"}, "324": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "332": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "336": {"type": "MIPS_26", "symbol": "SetTimerAlarm"}, "372": {"type": "MIPS_26", "symbol": "WaitSema"}, "396": {"type": "MIPS_26", "symbol": "ReleaseTimerAlarm"}, "420": {"type": "MIPS_26", "symbol": "sceHTTPAbort", "scope": "LIBRARY", "original": ".text"}, "428": {"type": "MIPS_26", "symbol": "WaitSema"}, "448": {"type": "MIPS_26", "symbol": "WaitSema"}, "476": {"type": "MIPS_26", "symbol": "sceNetGlueThreadTerminate"}, "484": {"type": "MIPS_26", "symbol": "TerminateThread"}, "492": {"type": "MIPS_26", "symbol": "DeleteThread"}, "508": {"type": "MIPS_26", "symbol": "DeleteSema"}, "524": {"type": "MIPS_26", "symbol": "DeleteSema"}, "540": {"type": "MIPS_26", "symbol": "xfree", "scope": "LIBRARY"}}}}}, "sceHTTPOpen": {"5df91ebdfa1a648ca74e2d31fd256283a63fd11f": {"94d5a644": {"type": "FUNCTION", "size": 344, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "http_open", "scope": "LIBRARY", "original": ".text"}, "80": {"type": "MIPS_26", "symbol": "TerminateThread"}, "88": {"type": "MIPS_26", "symbol": "DeleteThread"}, "96": {"type": "MIPS_26", "symbol": "xfree", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "xmalloc", "scope": "LIBRARY"}, "152": {"type": "MIPS_HI16", "symbol": "http_open", "original": ".text"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "164": {"type": "MIPS_LO16", "symbol": "http_open", "original": ".text"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "200": {"type": "MIPS_26", "symbol": "CreateThread"}, "240": {"type": "MIPS_26", "symbol": "StartThread"}, "268": {"type": "MIPS_26", "symbol": "TerminateThread"}, "276": {"type": "MIPS_26", "symbol": "DeleteThread"}, "288": {"type": "MIPS_26", "symbol": "xfree", "scope": "LIBRARY"}}}}}, "sceHTTPClose": {"a781ade3f074caca6defa745f6c1e71c3c1a2dcc": {"8728ee88": {"type": "FUNCTION", "size": 252, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"72": {"type": "MIPS_26", "symbol": "sceHTTPSClose", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "sceNetGlueShutdown"}, "104": {"type": "MIPS_26", "symbol": "sceNetGlueThreadTerminate"}, "132": {"type": "MIPS_26", "symbol": "sceNetGlueThreadTerminate"}, "140": {"type": "MIPS_26", "symbol": "TerminateThread"}, "148": {"type": "MIPS_26", "symbol": "DeleteThread"}, "156": {"type": "MIPS_26", "symbol": "xfree", "scope": "LIBRARY"}, "184": {"type": "MIPS_26", "symbol": "sceNetGlueThreadTerminate"}, "192": {"type": "MIPS_26", "symbol": "TerminateThread"}, "200": {"type": "MIPS_26", "symbol": "DeleteThread"}, "208": {"type": "MIPS_26", "symbol": "xfree", "scope": "LIBRARY"}}}}}, "recv_stream": {"cf8fd84c51b0be61b88fd6f65eaf4232604aa6ea": {"a2b65ec9": {"type": "FUNCTION", "size": 240, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"80": {"type": "MIPS_26", "symbol": "sceHTTPSRecv", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "sceNetGlueRecv"}, "144": {"type": "MIPS_26", "symbol": "__sceNetGlueErrnoLoc"}}}}}, "send_stream": {"b25625857a65e46862d932cd25d9caae7d65573c": {"9d1958b4": {"type": "FUNCTION", "size": 236, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"80": {"type": "MIPS_26", "symbol": "sceHTTPSSend", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "sceNetGlueSend"}, "144": {"type": "MIPS_26", "symbol": "__sceNetGlueErrnoLoc"}}}}}, "recv_thread": {"1c8a54e38535ce6ea0507e6942a6829d21568027": {"495aa761": {"type": "FUNCTION", "size": 172, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "sceNetGlueThreadInit"}, "40": {"type": "MIPS_26", "symbol": "WaitSema"}, "88": {"type": "MIPS_26", "symbol": "recv_stream", "scope": "LIBRARY", "original": ".text"}, "112": {"type": "MIPS_26", "symbol": "ReleaseTimerAlarm"}, "136": {"type": "MIPS_26", "symbol": "ReferSemaStatus"}, "156": {"type": "MIPS_26", "symbol": "SignalSema"}}}}}, "send_thread": {"fd3b627ccbb6f9d91f506996ebee45b4159470f3": {"9518a903": {"type": "FUNCTION", "size": 172, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "sceNetGlueThreadInit"}, "40": {"type": "MIPS_26", "symbol": "WaitSema"}, "88": {"type": "MIPS_26", "symbol": "send_stream", "scope": "LIBRARY", "original": ".text"}, "112": {"type": "MIPS_26", "symbol": "ReleaseTimerAlarm"}, "136": {"type": "MIPS_26", "symbol": "ReferSemaStatus"}, "156": {"type": "MIPS_26", "symbol": "SignalSema"}}}}}, "ralarm_handler": {"82e157a9493b97af375ac2bac8a4eedab800b4d2": {"4211d77c": {"type": "FUNCTION", "size": 120, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "TimerBusClock2USec"}, "72": {"type": "MIPS_26", "symbol": "iReferSemaStatus"}, "92": {"type": "MIPS_26", "symbol": "iSignalSema"}}}}}, "salarm_handler": {"4bda30c947eb94eba6839bc611cb0674491d5a09": {"4211d77c": {"type": "FUNCTION", "size": 120, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "TimerBusClock2USec"}, "72": {"type": "MIPS_26", "symbol": "iReferSemaStatus"}, "92": {"type": "MIPS_26", "symbol": "iSignalSema"}}}}}, "sceHTTPLibCleanUpThreads": {"058227768c8007bae77c9faa793d6ddb706c0feb": {"d60efabe": {"type": "FUNCTION", "size": 220, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "sceNetGlueThreadTerminate"}, "44": {"type": "MIPS_26", "symbol": "TerminateThread"}, "52": {"type": "MIPS_26", "symbol": "DeleteThread"}, "60": {"type": "MIPS_26", "symbol": "xfree", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "sceNetGlueThreadTerminate"}, "88": {"type": "MIPS_26", "symbol": "TerminateThread"}, "96": {"type": "MIPS_26", "symbol": "DeleteThread"}, "104": {"type": "MIPS_26", "symbol": "xfree", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "DeleteSema"}, "144": {"type": "MIPS_26", "symbol": "DeleteSema"}, "164": {"type": "MIPS_26", "symbol": "DeleteSema"}, "184": {"type": "MIPS_26", "symbol": "DeleteSema"}}}}}, "sceHTTPLibLaunchThreads": {"c653e3bd35eba68d20bd4a3fe6587090c7e34914": {"a932a0d0": {"type": "FUNCTION", "size": 468, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_26", "symbol": "CreateSema"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_26", "symbol": "CreateSema"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"},)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "120": {"type": "MIPS_26", "symbol": "CreateSema"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_26", "symbol": "CreateSema"}, "200": {"type": "MIPS_26", "symbol": "xmalloc", "scope": "LIBRARY"}, "216": {"type": "MIPS_26", "symbol": "xmalloc", "scope": "LIBRARY"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "244": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "292": {"type": "MIPS_26", "symbol": "CreateThread"}, "312": {"type": "MIPS_26", "symbol": "StartThread"}, "324": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "332": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "336": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "344": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "376": {"type": "MIPS_26", "symbol": "CreateThread"}, "396": {"type": "MIPS_26", "symbol": "StartThread"}, "412": {"type": "MIPS_26", "symbol": "sceHTTPLibCleanUpThreads", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHTTPLibRestartThreads": {"219a5c9cb8a6959864e493c66ca953d17b322dda": {"e1c28405": {"type": "FUNCTION", "size": 80, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "sceHTTPLibCleanUpThreads", "scope": "LIBRARY", "original": ".text"}, "56": {"type": "MIPS_26", "symbol": "sceHTTPLibLaunchThreads", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHTTPLibRecv": {"9b81992bcabe7368f28031b86060b759b810efaa": {"f3f327f6": {"type": "FUNCTION", "size": 328, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"84": {"type": "MIPS_26", "symbol": "TimerUSec2BusClock"}, "92": {"type": "MIPS_HI16", "symbol": "ralarm_handler", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "ralarm_handler", "original": ".text"}, "104": {"type": "MIPS_26", "symbol": "SetTimerAlarm"}, "132": {"type": "MIPS_26", "symbol": "GetThreadId"}, "164": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}, "188": {"type": "MIPS_26", "symbol": "SignalSema"}, "196": {"type": "MIPS_26", "symbol": "WaitSema"}, "208": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}, "284": {"type": "MIPS_26", "symbol": "sceNetGlueAbort"}}}}}, "sceHTTPLibSend": {"6ef782b0d535de4836b9537c8c9a6d85666c8360": {"9095f7ae": {"type": "FUNCTION", "size": 328, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"84": {"type": "MIPS_26", "symbol": "TimerUSec2BusClock"}, "92": {"type": "MIPS_HI16", "symbol": "salarm_handler", "original": ".text"}, "100": {"type": "MIPS_LO16", "symbol": "salarm_handler", "original": ".text"}, "104": {"type": "MIPS_26", "symbol": "SetTimerAlarm"}, "132": {"type": "MIPS_26", "symbol": "GetThreadId"}, "164": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}, "188": {"type": "MIPS_26", "symbol": "SignalSema"}, "196": {"type": "MIPS_26", "symbol": "WaitSema"}, "208": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}, "284": {"type": "MIPS_26", "symbol": "sceNetGlueAbort"}}}}}, "sceHTTPLibAbortIO": {"12303ee1a04e471aa260c6ae596cb2c4e353d390": {"27c8b631": {"type": "FUNCTION", "size": 48, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "sceNetGlueAbort"}}}}}, "sceHTTPLibInitIO": {"0a5385cf4a659d302a43046ea0269e2b17a3ef1d": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHTTPLibTerminateIO": {"0a5385cf4a659d302a43046ea0269e2b17a3ef1d": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHTTPLibCleanUp": {"ad0707d95267c42fc3b878a12d7de771a61de2f6": {"36d426e8": {"type": "FUNCTION", "size": 88, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceHTTPLibCleanUpThreads", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_26", "symbol": "sceHTTPClose", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHTTPGetSocketError": {"1e77ad6fbbfb31b14d43acdeb43734da11add608": {"00000000": {"type": "FUNCTION", "size": 24, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHTTPGetResolveError": {"c08afa8288ba2a1e01ffd4698d834390b74c5a75": {"00000000": {"type": "FUNCTION", "size": 24, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "wkday": {"c75cddc2c3776a44f7f071a050af15d6e50ef022": {"0abc6509": {"type": "FUNCTION", "size": 348, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "weekday": {"773db1f05ae58956b209b9402375315cb5839fa0": {"6fa64354": {"type": "FUNCTION", "size": 424, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "100": {"type": "MIPS_26", "symbol": "strncmp"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_26", "symbol": "strncmp"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "192": {"type": "MIPS_26", "symbol": "strncmp"}, "228": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "240": {"type": "MIPS_26", "symbol": "strncmp"}, "276": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "288": {"type": "MIPS_26", "symbol": "strncmp"}, "324": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "332": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "336": {"type": "MIPS_26", "symbol": "strncmp"}, "368": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "376": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "380": {"type": "MIPS_26", "symbol": "strncmp"}}}}}, "month3": {"6faea904c3902eeceb919297d29549586967f9e9": {"0abc6509": {"type": "FUNCTION", "size": 500, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "digit2": {"8c1e8efbe8a57d9d1ebdad9617f3415dff419c92": {"d3e72eac": {"type": "FUNCTION", "size": 84, "library": "libhttps", "scope": "LOCAL", "is_interface": fals)PS2SDB", 8192}, + std::string_view{R"PS2SDB(e, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}}}}}, "digit4": {"9abac7d88dbb9340b675268b13ae76f91e920e89": {"d3e72eac": {"type": "FUNCTION", "size": 164, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}}}}}, "maketime": {"ba71bc4aa7e292d7b6216087de7723b6ad2a42c1": {"00000000": {"type": "FUNCTION", "size": 200, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "rfc_date2time": {"205a4571f2a64fc7678ed24563a12a06d297247e": {"778fcdb7": {"type": "FUNCTION", "size": 632, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "sceHTTPLibSkipToken", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "wkday", "scope": "LIBRARY", "original": ".text"}, "92": {"type": "MIPS_26", "symbol": "weekday", "scope": "LIBRARY", "original": ".text"}, "156": {"type": "MIPS_26", "symbol": "digit2", "scope": "LIBRARY", "original": ".text"}, "220": {"type": "MIPS_26", "symbol": "month3", "scope": "LIBRARY", "original": ".text"}, "260": {"type": "MIPS_26", "symbol": "digit4", "scope": "LIBRARY", "original": ".text"}, "304": {"type": "MIPS_26", "symbol": "digit2", "scope": "LIBRARY", "original": ".text"}, "348": {"type": "MIPS_26", "symbol": "digit2", "scope": "LIBRARY", "original": ".text"}, "388": {"type": "MIPS_26", "symbol": "digit2", "scope": "LIBRARY", "original": ".text"}, "412": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "420": {"type": "MIPS_26", "symbol": "sceHTTPLibStrsub", "scope": "LIBRARY"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "512": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "520": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "572": {"type": "MIPS_26", "symbol": "maketime", "scope": "LIBRARY", "original": ".text"}}}}}, "asctime_date2time": {"d8a2c85dca66e5cb9fb00b919dceedb80a7e2b78": {"c70084ec": {"type": "FUNCTION", "size": 556, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "sceHTTPLibSkipToken", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "wkday", "scope": "LIBRARY", "original": ".text"}, "92": {"type": "MIPS_26", "symbol": "weekday", "scope": "LIBRARY", "original": ".text"}, "140": {"type": "MIPS_26", "symbol": "month3", "scope": "LIBRARY", "original": ".text"}, "180": {"type": "MIPS_26", "symbol": "digit2", "scope": "LIBRARY", "original": ".text"}, "212": {"type": "MIPS_26", "symbol": "digit4", "scope": "LIBRARY", "original": ".text"}, "252": {"type": "MIPS_26", "symbol": "digit2", "scope": "LIBRARY", "original": ".text"}, "296": {"type": "MIPS_26", "symbol": "digit2", "scope": "LIBRARY", "original": ".text"}, "336": {"type": "MIPS_26", "symbol": "digit2", "scope": "LIBRARY", "original": ".text"}, "436": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "444": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "496": {"type": "MIPS_26", "symbol": "maketime", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHTTPLibDateToTime": {"e7fa1ff15eba6eedb5a4661dfbffbf4a1c25ea06": {"3892473e": {"type": "FUNCTION", "size": 84, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "asctime_date2time", "scope": "LIBRARY", "original": ".text"}, "56": {"type": "MIPS_26", "symbol": "rfc_date2time", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHTTPLibTimeToDate": {"7fdca1a80d775f9b5ac63da24c0e037ab84620dc": {"b9e826f0": {"type": "FUNCTION", "size": 492, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "xmalloc", "scope": "LIBRARY"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "296": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "300": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "304": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "324": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "372": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "376": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "380": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "388": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "396": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "408": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "420": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "456": {"type": "MIPS_26", "symbol": "sprintf"}}}}}, "handler": {"3b40d1727d9654b0e3ef77b84e33fc9fc99ac81b": {"b0f52bf1": {"type": "FUNCTION", "size": 28, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceHTTPLibGetTime": {"1c69e7006f70b14e65ac53bf0211b3b2698c0ba8": {"b584f1bb": {"type": "FUNCTION", "size": 336, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "DIntr"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_26", "symbol": "EIntr"}, "56": {"type": "MIPS_26", "symbol": "sceCdReadClock"}, "72": {"type": "MIPS_26", "symbol": "DIntr"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_26", "symbol": "EIntr"}, "108": {"type": "MIPS_26", "symbol": "TimerUSec2BusClock"}, "116": {"type": "MIPS_HI16", "symbol": "handler", "original": ".text"}, "124": {"type": "MIPS_LO16", "symbol": "handler", "original": ".text"}, "128": {"type": "MIPS_26", "symbol": "SetTimerAlarm"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "172": {"type": "MIPS_26", "symbol": "EIntr"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "308": {"type": "MIPS_26", "symbol": "maketime", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHTTPLibReleaseDateTimer": {"68831eb9be95c33f808c83310edf4f7ec7ba9b63": {"826b5143": {"type": "FUNCTION", "size": 36, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_26", "symbol": "ReleaseTimerAlarm"}}}}}, "cooked_malloc": {"402b336d4c453767e74b012313a68c249a3b7bfe": {"9dbd7ec3": {"type": "FUNCTION", "size": 80, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2)PS2SDB", 8192}, + std::string_view{R"PS2SDB(.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "cooked_realloc": {"2b8fc1e0202c6d030c971277b3e51dfa6b77e10f": {"9dbd7ec3": {"type": "FUNCTION", "size": 80, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "cooked_free": {"402b336d4c453767e74b012313a68c249a3b7bfe": {"9dbd7ec3": {"type": "FUNCTION", "size": 80, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "xcalloc": {"4583ec5135138c0466aab724b3513146b1351eb6": {"604ccb04": {"type": "FUNCTION", "size": 160, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_26", "symbol": "memset"}, "124": {"type": "MIPS_26", "symbol": "calloc"}}}}}, "xmalloc": {"1da0524b9eadace6bdf5dbd7803c4879d79faaaf": {"05a66a16": {"type": "FUNCTION", "size": 56, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_26", "symbol": "malloc"}}}}}, "xfree": {"97cad9d41148fa45e1a7686b7dffc3d967f065a4": {"f7015ad6": {"type": "FUNCTION", "size": 52, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_26", "symbol": "free"}}}}}, "xrealloc": {"1da0524b9eadace6bdf5dbd7803c4879d79faaaf": {"ae0c5781": {"type": "FUNCTION", "size": 56, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_26", "symbol": "realloc"}}}}}, "lmalloc_init": {"ae5c082c3948044543e66d0c9b7130bc98dd5e76": {"6963bb93": {"type": "FUNCTION", "size": 300, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"72": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_26", "symbol": "memset"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "212": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "252": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "260": {"type": "MIPS_26", "symbol": "CreateSema"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "268": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "lmalloc_terminate": {"ddd8e32f9e36739a53671a300121ec6445eb7bd6": {"272e9e28": {"type": "FUNCTION", "size": 32, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "lock_terminate", "scope": "LIBRARY", "original": ".text"}}}}}, "lmalloc": {"6f127db435166af37894cbfb917e58b54158d421": {"81e05ded": {"type": "FUNCTION", "size": 1064, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_26", "symbol": "WaitSema"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "228": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "272": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "300": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "388": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "404": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "408": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "412": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "420": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "424": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "472": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "476": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "480": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "484": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "488": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "532": {"type":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "MIPS_HI16", "symbol": "", "original": ".bss"}, "536": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "540": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "544": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "548": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "556": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "588": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "596": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "656": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "680": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "684": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "748": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "804": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "808": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "816": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "844": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "848": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "968": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "972": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "988": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "992": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "996": {"type": "MIPS_26", "symbol": "SignalSema"}, "1000": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "1012": {"type": "MIPS_26", "symbol": "SignalSema"}, "1016": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "lrealloc": {"f83d07397a0aa5879f933dd3e841367b76cadf7b": {"f8b6cd76": {"type": "FUNCTION", "size": 284, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "lmalloc", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_26", "symbol": "lfree", "scope": "LIBRARY", "original": ".text"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_26", "symbol": "WaitSema"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_26", "symbol": "SignalSema"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "208": {"type": "MIPS_26", "symbol": "lmalloc", "scope": "LIBRARY", "original": ".text"}, "232": {"type": "MIPS_26", "symbol": "memcpy"}, "240": {"type": "MIPS_26", "symbol": "lfree", "scope": "LIBRARY", "original": ".text"}}}}}, "lfree": {"85e18bfc3ba7921f62a3721dd164c59bbf4c11e7": {"062ad55d": {"type": "FUNCTION", "size": 1048, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_26", "symbol": "WaitSema"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "296": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "300": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "420": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "424": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "428": {"type": "MIPS_26", "symbol": "SignalSema"}, "432": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "456": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "476": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "496": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "516": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "524": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "528": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "628": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "632": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "640": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "656": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "696": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "724": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "732": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "788": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "792": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "800": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "816": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "860": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "900": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "916": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "920": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "924": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "964": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "968": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "972": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "976": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "980": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "988": {"type": "MIPS_26", "symbol": "SignalSema"}, "992": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceHTTPInitMemory": {"cd576d6fed9485488ad741b3e1f842a2acb11dd6": {"d6a6f3d1": {"type": "FUNCTION", "size": 100, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "lmalloc_init", "scope": "LIBRARY", "original": ".text"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceHTTPLibTerminateMemory": {"6d45c5ea23167b601513805d619377aff8a66848": {"110f523f": {"type": "FUNCTION)PS2SDB", 8192}, + std::string_view{R"PS2SDB(", "size": 60, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_HI16", "symbol": "lmalloc", "original": ".text"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "lmalloc", "original": ".text"}, "28": {"type": "MIPS_26", "symbol": "lmalloc_terminate", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHTTPGetMemoryStatus": {"4b379eedac2bf35abc9d6331f55d820ac7446c7e": {"654147f2": {"type": "FUNCTION", "size": 140, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "lmalloc", "original": ".text"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_LO16", "symbol": "lmalloc", "original": ".text"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_26", "symbol": "WaitSema"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_26", "symbol": "SignalSema"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceHTTPLibGetMemoryFunctionRA": {"ceaacd8dbc6550567edb1845aa0d5c1d3047b02c": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "sceHTTPFreeMemory": {"a639a8a356321edbeccee089cae462e9fca431ea": {"3a002025": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_26", "symbol": "xfree", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHTTPSetMallocFunction": {"ef3f3c3b3a8b3bfe9ccb3a92a05860d5b9f886f5": {"12956170": {"type": "FUNCTION", "size": 40, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_HI16", "symbol": "cooked_malloc", "original": ".text"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "cooked_malloc", "original": ".text"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceHTTPSetReallocFunction": {"ef3f3c3b3a8b3bfe9ccb3a92a05860d5b9f886f5": {"e16cf025": {"type": "FUNCTION", "size": 40, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_HI16", "symbol": "cooked_realloc", "original": ".text"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "cooked_realloc", "original": ".text"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceHTTPSetFreeFunction": {"ef3f3c3b3a8b3bfe9ccb3a92a05860d5b9f886f5": {"49c72e77": {"type": "FUNCTION", "size": 40, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_HI16", "symbol": "cooked_free", "original": ".text"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "cooked_free", "original": ".text"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "lock_terminate": {"68831eb9be95c33f808c83310edf4f7ec7ba9b63": {"8876e534": {"type": "FUNCTION", "size": 36, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_26", "symbol": "DeleteSema"}}}}}, "sceHTTPSSetDefaultOption": {"d10fd71e823292ecf255ce7d8d7e53ce5f063e9c": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "https_init_common": {"e5f96c0ed681a17c16a49f97cc9757e918e533c3": {"d267ca09": {"type": "FUNCTION", "size": 336, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "sceHTTPLibMallocFunction"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": "sceHTTPLibMallocFunction"}, "32": {"type": "MIPS_HI16", "symbol": "xmalloc"}, "36": {"type": "MIPS_LO16", "symbol": "xmalloc"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": "sceHTTPLibReallocFunction"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": "sceHTTPLibReallocFunction"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_HI16", "symbol": "xrealloc"}, "64": {"type": "MIPS_LO16", "symbol": "xrealloc"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": "sceHTTPLibFreeFunction"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": "sceHTTPLibFreeFunction"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_HI16", "symbol": "xfree"}, "92": {"type": "MIPS_LO16", "symbol": "xfree"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_26", "symbol": "R_set_mem_functions", "scope": "LIBRARY"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "SSL_load_error_strings", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "SSL_library_init", "scope": "LIBRARY"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "140": {"type": "MIPS_26", "symbol": "ERR_get_error", "scope": "LIBRARY"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "152": {"type": "MIPS_26", "symbol": "scePrintf"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "212": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "224": {"type": "MIPS_26", "symbol": "SSLv23_client_method", "scope": "LIBRARY"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "240": {"type": "MIPS_26", "symbol": "SSLv2_client_method", "scope": "LIBRARY"}, "252": {"type": "MIPS_HI16)PS2SDB", 8192}, + std::string_view{R"PS2SDB(", "symbol": "", "original": ".data"}, "256": {"type": "MIPS_26", "symbol": "SSLv3_client_method", "scope": "LIBRARY"}, "268": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "272": {"type": "MIPS_26", "symbol": "TLSv1_client_method", "scope": "LIBRARY"}, "280": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "292": {"type": "MIPS_26", "symbol": "scePrintf"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "sceHTTPSInit": {"62b6df3f391dcb9577d381708173860a9a2fb728": {"d4682d79": {"type": "FUNCTION", "size": 652, "library": "libhttps", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_26", "symbol": "https_init_common", "scope": "LIBRARY", "original": ".text"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_26", "symbol": "BIO_s_file", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "BIO_new", "scope": "LIBRARY"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "212": {"type": "MIPS_26", "symbol": "scePrintf"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "244": {"type": "MIPS_26", "symbol": "memset"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "268": {"type": "MIPS_HI16", "symbol": "d2i_X509"}, "272": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "296": {"type": "MIPS_26", "symbol": "BIO_ctrl", "scope": "LIBRARY"}, "308": {"type": "MIPS_LO16", "symbol": "d2i_X509"}, "312": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "324": {"type": "MIPS_26", "symbol": "PEM_ASN1_read_bio", "scope": "LIBRARY"}, "340": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "348": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "356": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "380": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "384": {"type": "MIPS_26", "symbol": "strlen"}, "400": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "408": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "412": {"type": "MIPS_26", "symbol": "strncpy"}, "428": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "436": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "440": {"type": "MIPS_26", "symbol": "strlen"}, "456": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "460": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "468": {"type": "MIPS_26", "symbol": "scePrintf"}, "472": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "488": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "492": {"type": "MIPS_26", "symbol": "strncpy"}, "508": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "516": {"type": "MIPS_26", "symbol": "scePrintf"}, "520": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "532": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "540": {"type": "MIPS_26", "symbol": "ERR_get_error", "scope": "LIBRARY"}, "544": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "552": {"type": "MIPS_26", "symbol": "scePrintf"}, "568": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "576": {"type": "MIPS_26", "symbol": "BIO_free", "scope": "LIBRARY"}, "592": {"type": "MIPS_26", "symbol": "sceHTTPSTerminate", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHTTPSInitCertFromMemory": {"44a14641b8105bd1032a68cc066a4456f89a2620": {"573e61be": {"type": "FUNCTION", "size": 852, "library": "libhttps", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_26", "symbol": "https_init_common", "scope": "LIBRARY", "original": ".text"}, "88": {"type": "MIPS_26", "symbol": "BIO_new_mem", "scope": "LIBRARY"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "112": {"type": "MIPS_26", "symbol": "scePrintf"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "204": {"type": "MIPS_26", "symbol": "scePrintf"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "236": {"type": "MIPS_26", "symbol": "memset"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "276": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "308": {"type": "MIPS_26", "symbol": "BIO_printf", "scope": "LIBRARY"}, "332": {"type": "MIPS_HI16", "symbol": "", "original": "d2i_X509"}, "336": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": "d2i_X509"}, "344": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "356": {"type": "MIPS_26", "symbol": "PEM_ASN1_read_bio", "scope": "LIBRARY"}, "372": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "376": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "380": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "420": {"type": "MIPS_26", "symbol": "BIO_ctrl", "scope": "LIBRARY"}, "448": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "460": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "472": {"type": "MIPS_26", "symbol": "BIO_printf", "scope": "LIBRARY"}, "496": {"type": "MIPS_HI16", "symbol": "", "original": "d2i_X509"}, "500": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "504": {"type": "MIPS_LO16", "symbol": "", "original": "d2i_X509"}, "508": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "520": {"type": "MIPS_26", "symbol": "PEM_ASN1_read_bio", "scope": "LIBRARY"}, "528": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "536": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "540": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(548": {"type": "MIPS_26", "symbol": "scePrintf"}, "552": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "576": {"type": "MIPS_26", "symbol": "BIO_ctrl", "scope": "LIBRARY"}, "608": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "612": {"type": "MIPS_HI16", "symbol": "", "original": "d2i_PrivateKey"}, "616": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "628": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "644": {"type": "MIPS_26", "symbol": "BIO_printf", "scope": "LIBRARY"}, "676": {"type": "MIPS_LO16", "symbol": "", "original": "d2i_PrivateKey"}, "680": {"type": "MIPS_HI16", "symbol": "", "original": "d2i_PrivateKey"}, "684": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "688": {"type": "MIPS_LO16", "symbol": "", "original": "d2i_PrivateKey"}, "692": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "704": {"type": "MIPS_26", "symbol": "PEM_ASN1_read_bio", "scope": "LIBRARY"}, "712": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "720": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "724": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "732": {"type": "MIPS_26", "symbol": "scePrintf"}, "736": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "748": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "756": {"type": "MIPS_26", "symbol": "scePrintf"}, "760": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "776": {"type": "MIPS_26", "symbol": "BIO_free", "scope": "LIBRARY"}, "792": {"type": "MIPS_26", "symbol": "sceHTTPSTerminate", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHTTPSClearErrnum": {"57e69eed529761f70199395b1e2fb7dcb09e9dad": {"00000000": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHTTPSOpen": {"dd240dbe15a807ba398e59f72c13f35eaaa8b415": {"e5484fca": {"type": "FUNCTION", "size": 972, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_26", "symbol": "SSL_CTX_new", "scope": "LIBRARY"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "60": {"type": "MIPS_26", "symbol": "scePrintf"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_26", "symbol": "SSL_CTX_ctrl", "scope": "LIBRARY"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "140": {"type": "MIPS_26", "symbol": "scePrintf"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "156": {"type": "MIPS_26", "symbol": "SSL_CTX_use_certificate_file", "scope": "LIBRARY"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "180": {"type": "MIPS_26", "symbol": "scePrintf"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "212": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "228": {"type": "MIPS_26", "symbol": "SSL_CTX_use_certificate", "scope": "LIBRARY"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "244": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "252": {"type": "MIPS_26", "symbol": "scePrintf"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "280": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "292": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "296": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "304": {"type": "MIPS_26", "symbol": "scePrintf"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "320": {"type": "MIPS_26", "symbol": "SSL_CTX_use_PrivateKey_file", "scope": "LIBRARY"}, "336": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "344": {"type": "MIPS_26", "symbol": "scePrintf"}, "348": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "360": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "376": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "380": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "392": {"type": "MIPS_26", "symbol": "SSL_CTX_use_PrivateKey", "scope": "LIBRARY"}, "408": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "416": {"type": "MIPS_26", "symbol": "scePrintf"}, "420": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "448": {"type": "MIPS_26", "symbol": "SSL_CTX_set_verify", "scope": "LIBRARY"}, "456": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "464": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "468": {"type": "MIPS_26", "symbol": "SSL_CTX_set_app_verify_cb", "scope": "LIBRARY"}, "492": {"type": "MIPS_26", "symbol": "SSL_CTX_set_verify", "scope": "LIBRARY"}, "512": {"type": "MIPS_26", "symbol": "SSL_CTX_ctrl", "scope": "LIBRARY"}, "520": {"type": "MIPS_26", "symbol": "SSL_new", "scope": "LIBRARY"}, "536": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "544": {"type": "MIPS_26", "symbol": "scePrintf"}, "548": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "560": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "568": {"type": "MIPS_26", "symbol": "SSL_set_info_cb", "scope": "LIBRARY"}, "572": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "576": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "584": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "588": {"type": "MIPS_26", "symbol": "SSL_set_alert_info_cb", "scope": "LIBRARY"}, "596": {"type": "MIPS_26", "symbol": "SSL_set_connect_state", "scope": "LIBRARY"}, "608": {"type": "MIPS_26", "symbol": "BIO_new_socket", "scope": "LIBRARY"}, "624": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "628": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "636": {"type": "MIPS_26", "symbol": "scePrintf"}, "640": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "656": {"type": "MIPS_26", "symbol": "BIO_set_cb", "scope": "LIBRARY"}, "660": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "672": {"type": "MIPS_26", "symbol": "SSL_set_bio", "scope": "LIBRARY"}, "692": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "696": {"type": "MIPS_26", "symbol": "scePrintf"}, "700": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "712": {"type": "MIPS_26", "symbol": "SSL_do_handshake", "scope": "LIBRARY"}, "724": {"type": "MIPS_26", "symbol": "SSL_get_error", "scope": "LIBRARY"}, "744": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "752": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "780": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "788": {"type": "MIPS_26", "symbol": "ERR_get_error", "scope": "LIBRARY"}, "792": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "800": {"type": "MIPS_26", "symbol": "scePrintf"}, "832": {"type": "MIPS_HI16", "symbol": "",)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "original": ".rodata"}, "840": {"type": "MIPS_26", "symbol": "scePrintf"}, "844": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "856": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "860": {"type": "MIPS_26", "symbol": "scePrintf"}, "864": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "908": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "912": {"type": "MIPS_26", "symbol": "scePrintf"}, "916": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "928": {"type": "MIPS_26", "symbol": "sceHTTPSClose", "scope": "LIBRARY", "original": ".text"}}}}}, "sceHTTPSSend": {"6cdeb7b225310efc8a84c0bf0c272324384d036b": {"1a7ae4e6": {"type": "FUNCTION", "size": 104, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "SSL_write", "scope": "LIBRARY"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "48": {"type": "MIPS_26", "symbol": "ERR_get_error", "scope": "LIBRARY"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "60": {"type": "MIPS_26", "symbol": "scePrintf"}}}}}, "sceHTTPSRecv": {"2679c2a2d587f7ffb0139124979c96ccdbde1b89": {"0cbceea8": {"type": "FUNCTION", "size": 60, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "SSL_read", "scope": "LIBRARY"}}}}}, "sceHTTPGetSSLError": {"62a00e19e578daf45e8abacebeccf939ef4f2331": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceHTTPSClose": {"f59ab0048c41910ac9a36c1013f47e535240c456": {"6934c5a8": {"type": "FUNCTION", "size": 92, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "SSL_shutdown", "scope": "LIBRARY"}, "36": {"type": "MIPS_26", "symbol": "SSL_free", "scope": "LIBRARY"}, "60": {"type": "MIPS_26", "symbol": "SSL_CTX_free", "scope": "LIBRARY"}}}}}, "sceHTTPSTerminate": {"1fe6084126f90abab12bacc38871cedcdb48b908": {"5b0f90b4": {"type": "FUNCTION", "size": 272, "library": "libhttps", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_26", "symbol": "X509_free", "scope": "LIBRARY"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "188": {"type": "MIPS_26", "symbol": "X509_free", "scope": "LIBRARY"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "212": {"type": "MIPS_26", "symbol": "EVP_PKEY_free", "scope": "LIBRARY"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "224": {"type": "MIPS_26", "symbol": "SSL_library_cleanup", "scope": "LIBRARY"}}}}}, "ssl_info_cb": {"43d3af674f7b8c145f2bc3839a4659c814b3cd6d": {"bdcb3b5b": {"type": "FUNCTION", "size": 1196, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "SSL_get_version", "scope": "LIBRARY"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_26", "symbol": "strcmp"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_26", "symbol": "SSL_get_version", "scope": "LIBRARY"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_26", "symbol": "strcmp"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "96": {"type": "MIPS_26", "symbol": "SSL_get_version", "scope": "LIBRARY"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "112": {"type": "MIPS_26", "symbol": "strcmp"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "176": {"type": "MIPS_26", "symbol": "signal_output", "scope": "LIBRARY", "original": ".text"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "196": {"type": "MIPS_26", "symbol": "memset"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "208": {"type": "MIPS_26", "symbol": "SSL_state", "scope": "LIBRARY"}, "220": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "248": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "260": {"type": "MIPS_26", "symbol": "memset"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "340": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "344": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "356": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "368": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "396": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "400": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "412": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "440": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "468": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "472": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "484": {"type": "MIPS_HI16", "symbol": "", "orig)PS2SDB", 8192}, + std::string_view{R"PS2SDB(inal": ".data"}, "512": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "520": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "540": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "544": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "556": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "600": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "628": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "632": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "644": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "656": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "668": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "692": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "704": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "732": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "760": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "764": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "776": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "788": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "816": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "820": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "832": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "836": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "848": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "852": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "864": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "868": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "880": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "884": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "896": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "900": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "912": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "916": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "928": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "932": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "944": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "948": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "960": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "964": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "976": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "980": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "992": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "996": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "1004": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1008": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1016": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1024": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1036": {"type": "MIPS_26", "symbol": "signal_output", "scope": "LIBRARY", "original": ".text"}, "1044": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1052": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "1060": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "1064": {"type": "MIPS_26", "symbol": "memset"}, "1072": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1076": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "1080": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1084": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "1092": {"type": "MIPS_26", "symbol": "memset"}, "1100": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1104": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1108": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1116": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1136": {"type": "MIPS_26", "symbol": "signal_output", "scope": "LIBRARY", "original": ".text"}, "1144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1152": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "1160": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "1164": {"type": "MIPS_26", "symbol": "memset"}, "1172": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "ssl_alert_cb": {"d663b73c00a27d9046640183582a61748ede07e8": {"11b3c7b2": {"type": "FUNCTION", "size": 1280, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "104": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "120": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "136": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "152": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "176": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "192": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "208": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "224": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "240": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "256": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "272": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "288": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "304": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "320": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "336": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "352": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "368": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "384": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "400": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "416": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "432": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "448": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "464": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "484": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "492": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "504": {"typ)PS2SDB", 8192}, + std::string_view{R"PS2SDB(e": "MIPS_LO16", "symbol": "", "original": ".data"}, "508": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "524": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "552": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "560": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "580": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "592": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "596": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "608": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "612": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "624": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "628": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "640": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "644": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "656": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "660": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "672": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "676": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "688": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "692": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "704": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "708": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "720": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "724": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "736": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "740": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "752": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "756": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "768": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "772": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "784": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "788": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "800": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "804": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "816": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "820": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "832": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "836": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "848": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "852": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "864": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "868": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "880": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "884": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "896": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "900": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "912": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "916": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "928": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "932": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "944": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "948": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "960": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "964": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "976": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "980": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "992": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "996": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "1008": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "1012": {"type": "MIPS_26", "symbol": "flowpoint_output", "scope": "LIBRARY", "original": ".text"}, "1020": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "1028": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "1036": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1040": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1044": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1052": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1060": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1068": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "1072": {"type": "MIPS_26", "symbol": "signal_output", "scope": "LIBRARY", "original": ".text"}, "1080": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "1088": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "1092": {"type": "MIPS_26", "symbol": "memset"}, "1104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1108": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1116": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1124": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1132": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1140": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "1144": {"type": "MIPS_26", "symbol": "signal_output", "scope": "LIBRARY", "original": ".text"}, "1152": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "1160": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "1164": {"type": "MIPS_26", "symbol": "memset"}, "1176": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1180": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1184": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1200": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1208": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1216": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "1220": {"type": "MIPS_26", "symbol": "signal_output", "scope": "LIBRARY", "original": ".text"}, "1228": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "1236": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "1240": {"type": "MIPS_26", "symbol": "memset"}, "1248": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "verify_subject_name": {"c80e68d45c8938d2568f08e662db4a9c5c939118": {"7dc6fa8a": {"type": "FUNCTION", "size": 292, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "X509_get_subject_name", "scope": "LIBRARY"}, "60": {"type": "MIPS_26", "symbol": "SSLCERT_NAME_get_entry_count", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "SSLCERT_NAME_get_entry", "scope": "LIBRARY"}, "128": {"type": "MIPS_26", "symbol": "SSLCERT_NAME_ENTRY_get_info", "scope": "LIBRARY"}, "148": {"type": "MIPS_26", "symbol": "SSLCERT_OID_to_string", "scope": "LIBRARY"}, "160": {"type": "MIPS_HI16", "symbol": "", "ori)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ginal": ".rodata"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "176": {"type": "MIPS_26", "symbol": "strcmp"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "228": {"type": "MIPS_26", "symbol": "strcmp"}}}}}, "bcd_to_int": {"54892642efac633e88b13b93b2c436a4277767a4": {"00000000": {"type": "FUNCTION", "size": 28, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "create_cert_time": {"837b77f6e525b5954b5e34ede001654bbfb727d1": {"0d299df9": {"type": "FUNCTION", "size": 196, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "100": {"type": "MIPS_26", "symbol": "strncpy"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "140": {"type": "MIPS_26", "symbol": "scePrintf"}, "164": {"type": "MIPS_26", "symbol": "strncpy"}}}}}, "verify_cert_expiration": {"ea8155838fb1e384ea7156b65dcd4adf77b25c41": {"4d8e2985": {"type": "FUNCTION", "size": 1400, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"76": {"type": "MIPS_26", "symbol": "sceCdReadClock"}, "124": {"type": "MIPS_26", "symbol": "sceScfGetGMTfromRTC"}, "156": {"type": "MIPS_26", "symbol": "bcd_to_int", "original": ".text"}, "204": {"type": "MIPS_26", "symbol": "bcd_to_int", "original": ".text"}, "260": {"type": "MIPS_26", "symbol": "bcd_to_int", "original": ".text"}, "296": {"type": "MIPS_26", "symbol": "bcd_to_int", "original": ".text"}, "336": {"type": "MIPS_26", "symbol": "bcd_to_int", "original": ".text"}, "372": {"type": "MIPS_26", "symbol": "bcd_to_int", "original": ".text"}, "412": {"type": "MIPS_26", "symbol": "bcd_to_int", "original": ".text"}, "448": {"type": "MIPS_26", "symbol": "bcd_to_int", "original": ".text"}, "488": {"type": "MIPS_26", "symbol": "bcd_to_int", "original": ".text"}, "524": {"type": "MIPS_26", "symbol": "bcd_to_int", "original": ".text"}, "564": {"type": "MIPS_26", "symbol": "bcd_to_int", "original": ".text"}, "600": {"type": "MIPS_26", "symbol": "bcd_to_int", "original": ".text"}, "708": {"type": "MIPS_26", "symbol": "SSLCERT_get_subject_name", "scope": "LIBRARY"}, "720": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "728": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "740": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "748": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "756": {"type": "MIPS_26", "symbol": "X509_get_subject_name", "scope": "LIBRARY"}, "768": {"type": "MIPS_26", "symbol": "X509_NAME_cmp", "scope": "LIBRARY"}, "784": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "812": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "820": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "828": {"type": "MIPS_26", "symbol": "X509_get_notBefore", "scope": "LIBRARY"}, "852": {"type": "MIPS_26", "symbol": "create_cert_time", "scope": "LIBRARY", "original": ".text"}, "864": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "904": {"type": "MIPS_26", "symbol": "SSLCERT_get_notBefore", "scope": "LIBRARY"}, "940": {"type": "MIPS_26", "symbol": "create_cert_time", "scope": "LIBRARY", "original": ".text"}, "952": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "984": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "988": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "996": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1000": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1004": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1012": {"type": "MIPS_26", "symbol": "scePrintf"}, "1020": {"type": "MIPS_26", "symbol": "strlen"}, "1036": {"type": "MIPS_26", "symbol": "memcmp"}, "1064": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1072": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1080": {"type": "MIPS_26", "symbol": "X509_get_notAfter", "scope": "LIBRARY"}, "1104": {"type": "MIPS_26", "symbol": "create_cert_time", "scope": "LIBRARY", "original": ".text"}, "1116": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1156": {"type": "MIPS_26", "symbol": "SSLCERT_get_notAfter", "scope": "LIBRARY"}, "1192": {"type": "MIPS_26", "symbol": "create_cert_time", "scope": "LIBRARY", "original": ".text"}, "1204": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1236": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1240": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1248": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1252": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1256": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1264": {"type": "MIPS_26", "symbol": "scePrintf"}, "1272": {"type": "MIPS_26", "symbol": "strlen"}, "1288": {"type": "MIPS_26", "symbol": "memcmp"}}}}}, "ssl_verify_cb": {"d046fb45803dab2b1dc89d74a8bbdc45d6c2fca4": {"3b624788": {"type": "FUNCTION", "size": 596, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_26", "symbol": "scePrintf"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "112": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_26", "symbol": "scePrintf"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_26", "symbol": "print_cert_info", "scope": "LIBRARY", "original": ".text"}, "156": {"type": "MIPS_26", "symbol": "scePrintf"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "200": {"type": "MIPS_26", "symbol": "verify_cert_expiration", "scope": "LIBRARY", "original": ".text"}, "228": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "232": {"type": "MIPS_26", "symbol": "scePrintf"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "240": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "248": {"type": "MIPS_26", "symbol": "scePrintf"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "272": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "288": {"type": "MIPS_26", "symbol": "X509_get_issuer_name", "scope": "LIBRARY"}, "300": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "312": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "328": {"type": "MIPS_26", "symbol": "X509_get_subject_name", "scope": "LIBRARY"}, "340": {"type": "MIPS_26", "symbol": "X509_NAME_cmp", "scope": "LIBRARY"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "356": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "364": {"type": "MIPS_26", "symbol": "X509_get_pubkey", "scope": "LIBRARY"}, "404": {"type": "MIPS_26", "symbol": "verify_subject_name", "scope": "LIBRARY", "original": ".text"}, "416": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "420": {"type": "MIPS_26", "symbol": "scePrintf"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "448": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "468": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "472": {"type": "MIPS_26", ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(symbol": "scePrintf"}, "476": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "496": {"type": "MIPS_26", "symbol": "X509_verify", "scope": "LIBRARY"}, "512": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "516": {"type": "MIPS_26", "symbol": "scePrintf"}, "520": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "bio_dump_cb": {"586955858e3662792ce2987a7a92aec28838bf63": {"10f813ed": {"type": "FUNCTION", "size": 276, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_26", "symbol": "memcpy"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_26", "symbol": "memcpy"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "196": {"type": "MIPS_26", "symbol": "memcpy"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "236": {"type": "MIPS_26", "symbol": "memcpy"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "signal_output": {"1e8d6449ea8cb57d298b0fe97d0647746406ad42": {"82aca2de": {"type": "FUNCTION", "size": 124, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "flowpoint_output": {"7678540574197b420f17571673856a74783eb9d5": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "print_cert_info": {"cfc84ef6623dce86270b3af44023e82281dc3d1b": {"183affce": {"type": "FUNCTION", "size": 356, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "24": {"type": "MIPS_26", "symbol": "X509_get_version", "scope": "LIBRARY"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "44": {"type": "MIPS_26", "symbol": "scePrintf"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "60": {"type": "MIPS_26", "symbol": "X509_get_notBefore_str", "scope": "LIBRARY"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_26", "symbol": "scePrintf"}, "88": {"type": "MIPS_26", "symbol": "X509_get_notBefore_buf", "scope": "LIBRARY"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "108": {"type": "MIPS_26", "symbol": "scePrintf"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "124": {"type": "MIPS_26", "symbol": "X509_get_notAfter_str", "scope": "LIBRARY"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_26", "symbol": "scePrintf"}, "152": {"type": "MIPS_26", "symbol": "X509_get_notAfter_buf", "scope": "LIBRARY"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "176": {"type": "MIPS_26", "symbol": "scePrintf"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "192": {"type": "MIPS_26", "symbol": "X509_get_pubkey_bits", "scope": "LIBRARY"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "204": {"type": "MIPS_26", "symbol": "scePrintf"}, "220": {"type": "MIPS_26", "symbol": "X509_get_serialNumber_buf", "scope": "LIBRARY"}, "228": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "236": {"type": "MIPS_26", "symbol": "scePrintf"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "244": {"type": "MIPS_26", "symbol": "X509_get_issuer_name", "scope": "LIBRARY"}, "252": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "260": {"type": "MIPS_26", "symbol": "scePrintf"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "268": {"type": "MIPS_26", "symbol": "print_name_info", "scope": "LIBRARY", "original": ".text"}, "276": {"type": "MIPS_26", "symbol": "X509_get_subject_name", "scope": "LIBRARY"}, "284": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "292": {"type": "MIPS_26", "symbol": "scePrintf"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "300": {"type": "MIPS_26", "symbol": "print_name_info", "scope": "LIBRARY", "original": ".text"}, "308": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "316": {"type": "MIPS_26", "symbol": "X509_get_ext_count", "scope": "LIBRARY"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "328": {"type": "MIPS_26", "symbol": "scePrintf"}}}}}, "print_name_info": {"c386b02dd8b9ca13c21fa5ec1b30d895ce2aff3f": {"ab362230": {"type": "FUNCTION", "size": 236, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "X509_NAME_oneline", "scope": "LIBRARY"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_26", "symbol": "scePrintf"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_26", "symbol": "X509_NAME_get_entry_count", "scope": "LIBRARY"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_26", "symbol": "X509_NAME_get_entry", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "scePrintf"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_26", "symbol": "X509_NAME_ENTRY_get_oid_buf", "scope": "LIBRARY"}, "144": {"type": "MIPS_26", "symbol": "X509_NAME_ENTRY_get_data_ptr", "scope": "LIBRARY"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "176": {"type": "MIPS_26", "symbol": "scePrintf"}}}}}, "i2d_ASN1_BIT_STRING": {"4e73004a20c4a67c788ac77490e7d1b8c637e864": {"2b7acc4f": {"type": "FUNCTION", "size": 272, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"104": {"type": "MIPS_26", "symbol": "ASN1_object_size", "scope": "LIBRARY"}, "144": {"type": "MIPS_26", "symbol": "ASN1_put_object", "scope": "LIBRARY"}, "176": {"type": "MIPS_26", "symbol": "memcpy"}}}}}, "d2i_ASN1_BIT_STRING": {"dc4218b1228889cde03362)PS2SDB", 8192}, + std::string_view{R"PS2SDB(b47338fa76762c5710": {"d8a4ff34": {"type": "FUNCTION", "size": 492, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "ASN1_STRING_type_new", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "ASN1_get_object", "scope": "LIBRARY"}, "244": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "276": {"type": "MIPS_26", "symbol": "memcpy"}, "352": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "412": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "448": {"type": "MIPS_26", "symbol": "ASN1_STRING_free", "scope": "LIBRARY"}}}}}, "i2d_ASN1_BOOLEAN": {"bda1b18110c603fee1d847a9b9f8a6e7de391aeb": {"d32decde": {"type": "FUNCTION", "size": 132, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "ASN1_object_size", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "ASN1_put_object", "scope": "LIBRARY"}}}}}, "d2i_ASN1_BOOLEAN": {"733e0071b87cc987f0da9c4efe980fa55bf62a25": {"0ded9bfb": {"type": "FUNCTION", "size": 184, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "ASN1_get_object", "scope": "LIBRARY"}, "152": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "d2i_ASN1_type_bytes": {"663f46be6bd24879846540d687d9440bf9cd3ceb": {"8c530711": {"type": "FUNCTION", "size": 500, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"72": {"type": "MIPS_26", "symbol": "ASN1_get_object", "scope": "LIBRARY"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "200": {"type": "MIPS_26", "symbol": "d2i_ASN1_BIT_STRING", "scope": "LIBRARY"}, "236": {"type": "MIPS_26", "symbol": "ASN1_STRING_new", "scope": "LIBRARY"}, "272": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "300": {"type": "MIPS_26", "symbol": "memcpy"}, "356": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "420": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "456": {"type": "MIPS_26", "symbol": "ASN1_STRING_free", "scope": "LIBRARY"}}}}}, "i2d_ASN1_bytes": {"7d39829aadcf6811e3605030e4124e593c53058a": {"0d442f1f": {"type": "FUNCTION", "size": 224, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"72": {"type": "MIPS_26", "symbol": "i2d_ASN1_BIT_STRING", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "ASN1_object_size", "scope": "LIBRARY"}, "140": {"type": "MIPS_26", "symbol": "ASN1_put_object", "scope": "LIBRARY"}, "156": {"type": "MIPS_26", "symbol": "memcpy"}}}}}, "d2i_ASN1_bytes": {"d29aa0b4a59bcee0490e4445d23d18e81cc3f14b": {"697a8490": {"type": "FUNCTION", "size": 592, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"76": {"type": "MIPS_26", "symbol": "ASN1_STRING_new", "scope": "LIBRARY"}, "128": {"type": "MIPS_26", "symbol": "ASN1_get_object", "scope": "LIBRARY"}, "272": {"type": "MIPS_26", "symbol": "asn1_collate_primative", "scope": "LIBRARY", "original": ".text"}, "340": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "352": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "388": {"type": "MIPS_26", "symbol": "memcpy"}, "440": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "516": {"type": "MIPS_26", "symbol": "ASN1_STRING_free", "scope": "LIBRARY"}, "540": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "asn1_collate_primative": {"aaa7451d67745013102c406524949e9357ec59c1": {"74d7f15f": {"type": "FUNCTION", "size": 440, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"96": {"type": "MIPS_26", "symbol": "d2i_ASN1_bytes", "scope": "LIBRARY", "original": ".text"}, "120": {"type": "MIPS_26", "symbol": "BUF_MEM_grow", "scope": "LIBRARY"}, "148": {"type": "MIPS_26", "symbol": "memcpy"}, "228": {"type": "MIPS_26", "symbol": "ASN1_check_infinite_end", "scope": "LIBRARY"}, "264": {"type": "MIPS_26", "symbol": "asn1_Finish", "scope": "LIBRARY"}, "292": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "316": {"type": "MIPS_26", "symbol": "ASN1_STRING_free", "scope": "LIBRARY"}, "364": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "384": {"type": "MIPS_26", "symbol": "ASN1_STRING_free", "scope": "LIBRARY"}, "404": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "ASN1_d2i_fp": {"a0ca9faf46ff03a7b7264439e1682db4ff4cc14b": {"892e3336": {"type": "FUNCTION", "size": 184, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "BIO_s_file", "scope": "LIBRARY"}, "48": {"type": "MIPS_26", "symbol": "BIO_new", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "BIO_ctrl", "scope": "LIBRARY"}, "128": {"type": "MIPS_26", "symbol": "ASN1_d2i_bio", "scope": "LIBRARY", "original": ".text"}, "140": {"type": "MIPS_26", "symbol": "BIO_free", "scope": "LIBRARY"}}}}}, "ASN1_d2i_bio": {"61eece38cca54da716c833f605b1bc5a7800db0a": {"5b545cfd": {"type": "FUNCTION", "size": 668, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"72": {"type": "MIPS_26", "symbol": "BUF_MEM_new", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "164": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ERR_clear_error", "scope": "LIBRARY"}, "236": {"type": "MIPS_26", "symbol": "BUF_MEM_grow", "scope": "LIBRARY"}, "276": {"type": "MIPS_26", "symbol": "BIO_read", "scope": "LIBRARY"}, "344": {"type": "MIPS_26", "symbol": "BUF_MEM_grow", "scope": "LIBRARY"}, "368": {"type": "MIPS_26", "symbol": "BIO_read", "scope": "LIBRARY"}, "436": {"type": "MIPS_26", "symbol": "ASN1_get_object", "scope": "LIBRARY"}, "456": {"type": "MIPS_26", "symbol": "ERR_peek_error", "scope": "LIBRARY"}, "488": {"type": "MIPS_26", "symbol": "ERR_get_error", "scope": "LIBRARY"}, "608": {"type": "MIPS_26", "symbol": "BUF_MEM_free", "scope": "LIBRARY"}}}}}, "ASN1_digest": {"b8efdc95b72cd646a274f9bcc1abaacff5a13ab4": {"fb5c6a23": {"type": "FUNCTION", "size": 284, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "EVP_MD_CTX_new", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "152": {"type": "MIPS_26", "symbol": "EVP_DigestInit", "scope": "LIBRARY"}, "176": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}, "192": {"type": "MIPS_26", "symbol": "EVP_DigestFinal", "scope": "LIBRARY"}, "208": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "224": {"type": "MIPS_26", "symbol": "EVP_MD_CTX_free", "scope": "LIBRARY"}}}}}, "ASN1_dup": {"72f37c4e14132f246d48e9a14fc03db9aff220ca": {"4201e453": {"type": "FUNCTION", "size": 196, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "156": {"type": "MIPS_26", "symbol": "R_free", )PS2SDB", 8192}, + std::string_view{R"PS2SDB("scope": "LIBRARY"}}}}}, "i2d_ASN1_INTEGER": {"0c21dfc4e432dfbe4b3fbacc27d7283d42ff04a8": {"83490b6d": {"type": "FUNCTION", "size": 432, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"164": {"type": "MIPS_26", "symbol": "ASN1_object_size", "scope": "LIBRARY"}, "204": {"type": "MIPS_26", "symbol": "ASN1_put_object", "scope": "LIBRARY"}, "272": {"type": "MIPS_26", "symbol": "memcpy"}}}}}, "d2i_ASN1_INTEGER": {"5abd4ae85938312865b7e6184a5b2616a72fcbdb": {"fe954b96": {"type": "FUNCTION", "size": 564, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "ASN1_STRING_type_new", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "ASN1_get_object", "scope": "LIBRARY"}, "176": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "392": {"type": "MIPS_26", "symbol": "memcpy"}, "428": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "484": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "520": {"type": "MIPS_26", "symbol": "ASN1_STRING_free", "scope": "LIBRARY"}}}}}, "ASN1_INTEGER_get": {"94737557ec86edace74d863df9cb4b99195cb461": {"00000000": {"type": "FUNCTION", "size": 148, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "i2d_ASN1_OBJECT": {"2f70d728604bab0101c5597f0fb4aa7ee4a8f430": {"eb2187a3": {"type": "FUNCTION", "size": 168, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_26", "symbol": "ASN1_object_size", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "ASN1_put_object", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "memcpy"}}}}}, "a2d_ASN1_OBJECT": {"57757456f8f1bff4e27255c0ca62c54bc6318cd2": {"ff589d4f": {"type": "FUNCTION", "size": 604, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "strlen"}, "144": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "536": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "564": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "i2t_ASN1_OBJECT": {"81cf85bb6e6b2db21731ebf9206c3cfe1af9a4a4": {"a266e974": {"type": "FUNCTION", "size": 568, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"100": {"type": "MIPS_26", "symbol": "OBJ_obj2nid", "scope": "LIBRARY"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "208": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "216": {"type": "MIPS_26", "symbol": "__udivdi3"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "268": {"type": "MIPS_26", "symbol": "sprintf"}, "280": {"type": "MIPS_26", "symbol": "strlen"}, "300": {"type": "MIPS_26", "symbol": "strncpy"}, "328": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "368": {"type": "MIPS_26", "symbol": "sprintf"}, "372": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "376": {"type": "MIPS_26", "symbol": "strlen"}, "400": {"type": "MIPS_26", "symbol": "strncpy"}, "448": {"type": "MIPS_26", "symbol": "OBJ_nid2ln", "scope": "LIBRARY"}, "468": {"type": "MIPS_26", "symbol": "OBJ_nid2sn", "scope": "LIBRARY"}, "488": {"type": "MIPS_26", "symbol": "strncpy"}, "496": {"type": "MIPS_26", "symbol": "strlen"}}}}}, "i2t_ASN1_OBJECT_ex": {"01e1dffecd54d3dfdf56ee11615764e06f232385": {"d4a69117": {"type": "FUNCTION", "size": 468, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"124": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_26", "symbol": "__udivdi3"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "236": {"type": "MIPS_26", "symbol": "sprintf"}, "248": {"type": "MIPS_26", "symbol": "strlen"}, "268": {"type": "MIPS_26", "symbol": "strncpy"}, "296": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "336": {"type": "MIPS_26", "symbol": "sprintf"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "344": {"type": "MIPS_26", "symbol": "strlen"}, "368": {"type": "MIPS_26", "symbol": "strncpy"}}}}}, "d2i_ASN1_OBJECT": {"d6f5334505dbbd1b57558feecea1486dc01e226f": {"5311ca49": {"type": "FUNCTION", "size": 428, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "ASN1_OBJECT_new", "scope": "LIBRARY"}, "120": {"type": "MIPS_26", "symbol": "ASN1_get_object", "scope": "LIBRARY"}, "224": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "232": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "276": {"type": "MIPS_26", "symbol": "memcpy"}, "352": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "388": {"type": "MIPS_26", "symbol": "ASN1_OBJECT_free", "scope": "LIBRARY"}}}}}, "ASN1_OBJECT_new": {"3ea9402ca37b4c4aa3f1ca2eeafc7c4c2b5bf417": {"922ed48c": {"type": "FUNCTION", "size": 100, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "44": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "ASN1_OBJECT_free": {"b46aef4343ee75d5c09499ea61c4c4130e5b181b": {"3bc75157": {"type": "FUNCTION", "size": 168, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "144": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "ASN1_OBJECT_create": {"b154b667e973799b4472d9974dfdf1daabb0c466": {"8788e18e": {"type": "FUNCTION", "size": 60, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "OBJ_dup", "scope": "LIBRARY"}}}}}, "d2i_ASN1_PRINTABLESTRING": {"fc7b3a26f6054651ad41de772f083d23ea4811c0": {"20dcd175": {"type": "FUNCTION", "size": 28, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "d2i_ASN1_type_bytes", "scope": "LIBRARY"}}}}}, "i2d_ASN1_PRINTABLE": {"8307b8352b2e75af05e9ee0f2cea95ffd27e3897": {"0fa9dd9c": {"type": "FUNCTION", "size": 32, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "i2d_ASN1_bytes", "scope": "LIBRARY"}}}}}, "d2i_ASN1_PRINTABLE": {"30876ef80bb8cb92bad47880f625918b0a70d717": {"20dcd175": {"type": "FUNCTION", "size": 28, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "d2i_ASN1_type_bytes", "scope": "LIBRARY"}}}}}, "ASN1_PRINTABLE_type": {"3eed0ca31c90c308103af9a9cd349d6ffa70afa0": {"00000000": {"type": "FUNCTION", "size": 328, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compi)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ler_versions": ["2.4.1.01"], "relocations": {}}}}, "i2d_ASN1_UTCTIME": {"0b85c70debc0d1300bcb7a68757586f4fc241066": {"0fa9dd9c": {"type": "FUNCTION", "size": 32, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "i2d_ASN1_bytes", "scope": "LIBRARY"}}}}}, "d2i_ASN1_UTCTIME": {"1099a3c51dde78206e9c12eacdb362072f2d444a": {"2e377155": {"type": "FUNCTION", "size": 164, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "d2i_ASN1_bytes", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "ASN1_UTCTIME_check", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "132": {"type": "MIPS_26", "symbol": "ASN1_STRING_free", "scope": "LIBRARY"}}}}}, "ASN1_UTCTIME_check": {"5f93cb6d87a2554a0841c3eeee16a9afe27c8b95": {"581bd9b4": {"type": "FUNCTION", "size": 520, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "336": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "340": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "344": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "348": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "ASN1_UTCTIME_set": {"68b99a968b1b531ab0279927fe738e7c68fd68b7": {"f7270092": {"type": "FUNCTION", "size": 208, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "ASN1_STRING_type_new", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "120": {"type": "MIPS_26", "symbol": "R_time_export", "scope": "LIBRARY"}, "144": {"type": "MIPS_26", "symbol": "strlen"}, "176": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "ASN1_check_infinite_end": {"3be2398ac8d2d778108c8fea34d12908d8b2fb13": {"00000000": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "ASN1_get_object": {"d996de4f0eaaa44b3aa7ede85eec0eb3693f4c12": {"9778014d": {"type": "FUNCTION", "size": 300, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"220": {"type": "MIPS_26", "symbol": "asn1_get_length", "scope": "LIBRARY", "original": ".text"}, "268": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "asn1_get_length": {"23046e093cdbff7b346427b4af93db05eb4cd343": {"00000000": {"type": "FUNCTION", "size": 188, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "ASN1_put_object": {"f6b8bc3efed4dc8e6518594ac2c60d432eb65713": {"8d3ea4a0": {"type": "FUNCTION", "size": 260, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"228": {"type": "MIPS_26", "symbol": "asn1_put_length", "scope": "LIBRARY", "original": ".text"}}}}}, "asn1_put_length": {"aee62955557ba2fad4044cb212eb0e01e592e66e": {"00000000": {"type": "FUNCTION", "size": 160, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "ASN1_object_size": {"ac080dee57b9c8683093f876d81096a3b2cc04d3": {"00000000": {"type": "FUNCTION", "size": 132, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "asn1_Finish": {"4ebf619716ac78c8ac8e6c246906734123d0458c": {"3604b646": {"type": "FUNCTION", "size": 128, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "ASN1_check_infinite_end", "scope": "LIBRARY"}}}}}, "asn1_GetSequence": {"ed601bf60bbe95c59aff0dd0452242c50a391d56": {"58239d89": {"type": "FUNCTION", "size": 216, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "ASN1_get_object", "scope": "LIBRARY"}}}}}, "ASN1_STRING_set": {"af033dfdf8c25fcacbd692c548491ff5701c038e": {"1d9bb028": {"type": "FUNCTION", "size": 220, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "strlen"}, "104": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "120": {"type": "MIPS_26", "symbol": "R_realloc", "scope": "LIBRARY"}, "164": {"type": "MIPS_26", "symbol": "memcpy"}}}}}, "ASN1_STRING_new": {"c0d632a94dec466de4b9887bbd4b3d888216a50e": {"6c9a7fea": {"type": "FUNCTION", "size": 28, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "ASN1_STRING_type_new", "scope": "LIBRARY"}}}}}, "ASN1_STRING_type_new": {"252644b0cdde35abf8d958fb519e265b4a97a793": {"3de37068": {"type": "FUNCTION", "size": 100, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "ASN1_STRING_free": {"3e8b20fc8fb2ad73d5f8d74afa6875a651c9d923": {"d537bc40": {"type": "FUNCTION", "size": 76, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "ASN1_STRING_cmp": {"0b89bb2724977315f2bcbda0b1a249fc9ab3b60c": {"abf22fed": {"type": "FUNCTION", "size": 92, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "memcmp"}}}}}, "asn1_add_error": {"e50bbed1fe3b37fe6a94c25d425097da27f57c6c": {"f5a6ef05": {"type": "FUNCTION", "size": 116, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_26", "symbol": "sprintf"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "56": {"type": "MIPS_26", "symbol": "sprintf"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_26", "symbol": "ERR_add_error_da)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ta", "scope": "LIBRARY"}}}}}, "i2d_X509_NAME_ENTRY": {"7e933c1b3bc303a7a889f236bfc571b069a21f51": {"cb1a870f": {"type": "FUNCTION", "size": 196, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "i2d_ASN1_OBJECT", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "i2d_ASN1_PRINTABLE", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "ASN1_object_size", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "ASN1_put_object", "scope": "LIBRARY"}, "136": {"type": "MIPS_26", "symbol": "i2d_ASN1_OBJECT", "scope": "LIBRARY"}, "148": {"type": "MIPS_26", "symbol": "i2d_ASN1_PRINTABLE", "scope": "LIBRARY"}}}}}, "d2i_X509_NAME_ENTRY": {"e13db6f5793c2167ffefa605f6ad587c6786d36f": {"a81501ff": {"type": "FUNCTION", "size": 444, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "X509_NAME_ENTRY_new", "scope": "LIBRARY"}, "140": {"type": "MIPS_26", "symbol": "asn1_GetSequence", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "d2i_ASN1_OBJECT", "scope": "LIBRARY"}, "240": {"type": "MIPS_26", "symbol": "d2i_ASN1_PRINTABLE", "scope": "LIBRARY"}, "292": {"type": "MIPS_26", "symbol": "asn1_Finish", "scope": "LIBRARY"}, "356": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "372": {"type": "MIPS_26", "symbol": "asn1_add_error", "scope": "LIBRARY"}, "408": {"type": "MIPS_26", "symbol": "X509_NAME_ENTRY_free", "scope": "LIBRARY"}}}}}, "i2d_X509_NAME": {"534aa43e043af7cae57ea447c11b2fdf4a1f78ae": {"e3545113": {"type": "FUNCTION", "size": 136, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "i2d_X509_NAME_entries", "scope": "LIBRARY", "original": ".text"}, "88": {"type": "MIPS_26", "symbol": "memcpy"}}}}}, "i2d_X509_NAME_entries": {"9e65ef7f50beef755c78611280c8f7a8bbe5727e": {"77b491bc": {"type": "FUNCTION", "size": 444, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"124": {"type": "MIPS_26", "symbol": "ASN1_object_size", "scope": "LIBRARY"}, "156": {"type": "MIPS_26", "symbol": "i2d_X509_NAME_ENTRY", "scope": "LIBRARY"}, "192": {"type": "MIPS_26", "symbol": "ASN1_object_size", "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "ASN1_object_size", "scope": "LIBRARY"}, "240": {"type": "MIPS_26", "symbol": "BUF_MEM_grow", "scope": "LIBRARY"}, "280": {"type": "MIPS_26", "symbol": "ASN1_put_object", "scope": "LIBRARY"}, "344": {"type": "MIPS_26", "symbol": "ASN1_put_object", "scope": "LIBRARY"}, "356": {"type": "MIPS_26", "symbol": "i2d_X509_NAME_ENTRY", "scope": "LIBRARY"}}}}}, "d2i_X509_NAME": {"ad552e93c978f531391c436d7d83b751482d3df0": {"30b897ce": {"type": "FUNCTION", "size": 696, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"96": {"type": "MIPS_26", "symbol": "X509_NAME_new", "scope": "LIBRARY"}, "144": {"type": "MIPS_26", "symbol": "sk_pop", "scope": "LIBRARY"}, "152": {"type": "MIPS_26", "symbol": "X509_NAME_ENTRY_free", "scope": "LIBRARY"}, "228": {"type": "MIPS_26", "symbol": "asn1_GetSequence", "scope": "LIBRARY"}, "240": {"type": "MIPS_HI16", "symbol": "d2i_X509_NAME_ENTRY"}, "256": {"type": "MIPS_HI16", "symbol": "X509_NAME_ENTRY_free"}, "284": {"type": "MIPS_LO16", "symbol": "d2i_X509_NAME_ENTRY"}, "288": {"type": "MIPS_LO16", "symbol": "X509_NAME_ENTRY_free"}, "296": {"type": "MIPS_26", "symbol": "d2i_ASN1_SET", "scope": "LIBRARY"}, "448": {"type": "MIPS_26", "symbol": "ASN1_check_infinite_end", "scope": "LIBRARY"}, "476": {"type": "MIPS_26", "symbol": "BUF_MEM_grow", "scope": "LIBRARY"}, "500": {"type": "MIPS_26", "symbol": "memcpy"}, "520": {"type": "MIPS_26", "symbol": "asn1_Finish", "scope": "LIBRARY"}, "588": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "604": {"type": "MIPS_26", "symbol": "asn1_add_error", "scope": "LIBRARY"}, "640": {"type": "MIPS_26", "symbol": "X509_NAME_free", "scope": "LIBRARY"}}}}}, "X509_NAME_new": {"3b3516a841cad7c18974bf3d5981df64a003270a": {"d8756243": {"type": "FUNCTION", "size": 148, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "44": {"type": "MIPS_26", "symbol": "sk_new", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "BUF_MEM_new", "scope": "LIBRARY"}, "120": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "X509_NAME_free": {"349574f35d6419838f7cae4695656af115f30f6b": {"47652ff9": {"type": "FUNCTION", "size": 60, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "BUF_MEM_free", "scope": "LIBRARY"}, "28": {"type": "MIPS_HI16", "symbol": "X509_NAME_ENTRY_free"}, "32": {"type": "MIPS_26", "symbol": "sk_pop_free", "scope": "LIBRARY"}, "36": {"type": "MIPS_LO16", "symbol": "X509_NAME_ENTRY_free"}, "52": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "X509_NAME_ENTRY_new": {"09dbaa7fe35a877969d5232915d465e6d9d9cf39": {"718a2c34": {"type": "FUNCTION", "size": 116, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "40": {"type": "MIPS_26", "symbol": "ASN1_STRING_new", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "X509_NAME_ENTRY_free": {"4dca9172a066179f8abce6a478d225dfefccd59e": {"5f4b39d6": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "ASN1_OBJECT_free", "scope": "LIBRARY"}, "28": {"type": "MIPS_26", "symbol": "ASN1_STRING_free", "scope": "LIBRARY"}, "48": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "i2d_ASN1_OCTET_STRING": {"bc9d4db7ca26ac443c58f3ff91aca16832004eca": {"0fa9dd9c": {"type": "FUNCTION", "size": 32, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "i2d_ASN1_bytes", "scope": "LIBRARY"}}}}}, "d2i_ASN1_OCTET_STRING": {"17515b393d4e130b92061f41bbdadbf61b0c4efc": {"fc987f02": {"type": "FUNCTION", "size": 68, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "d2i_ASN1_bytes", "scope": "LIBRARY"}, "44": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "i2d_ASN1_SET": {"5edd928dcd75e919252ff1cde048fd07e5ef35c7": {"2187362f": {"type": "FUNCTION", "size": 296, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"132": {"type": "MIPS_26", "symbol": "ASN1_object_size", "scope": "LIBRARY"}, "176": {"type": "MIPS_26", "symbol": "ASN1_put_object", "scope": "LIBRARY"}}}}}, "d2i_ASN1_SET": {"1978f849d1512df0a8b66eee0253862767be4d6a": {"266733d8": {"type": "FUNCTION", "size": 628, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"84": {"type": "MIPS_26", "symbol": "sk_new", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "ASN1_get_object", "scope": "LIBRARY"}, "280": {"type": "MIPS_26", "sym)PS2SDB", 8192}, + std::string_view{R"PS2SDB(bol": "ERR_put_error", "scope": "LIBRARY"}, "376": {"type": "MIPS_26", "symbol": "sk_push", "scope": "LIBRARY"}, "444": {"type": "MIPS_26", "symbol": "ASN1_check_infinite_end", "scope": "LIBRARY"}, "496": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "512": {"type": "MIPS_26", "symbol": "asn1_add_error", "scope": "LIBRARY"}, "556": {"type": "MIPS_26", "symbol": "sk_pop_free", "scope": "LIBRARY"}, "572": {"type": "MIPS_26", "symbol": "sk_free", "scope": "LIBRARY"}}}}}, "i2d_ASN1_TYPE": {"6342bf980a3ca8f01aeb51b1a04eafdc59b4d163": {"92140633": {"type": "FUNCTION", "size": 588, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"304": {"type": "MIPS_26", "symbol": "ASN1_put_object", "scope": "LIBRARY"}, "324": {"type": "MIPS_26", "symbol": "i2d_ASN1_INTEGER", "scope": "LIBRARY"}, "344": {"type": "MIPS_26", "symbol": "i2d_ASN1_BIT_STRING", "scope": "LIBRARY"}, "364": {"type": "MIPS_26", "symbol": "i2d_ASN1_OCTET_STRING", "scope": "LIBRARY"}, "384": {"type": "MIPS_26", "symbol": "i2d_ASN1_OBJECT", "scope": "LIBRARY"}, "492": {"type": "MIPS_26", "symbol": "i2d_ASN1_bytes", "scope": "LIBRARY"}, "512": {"type": "MIPS_26", "symbol": "i2d_ASN1_UTCTIME", "scope": "LIBRARY"}, "544": {"type": "MIPS_26", "symbol": "memcpy"}}}}}, "d2i_ASN1_TYPE": {"2e6a24b9204e4c1add652edd7d701e5c4cfdc21b": {"ded273d3": {"type": "FUNCTION", "size": 808, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "ASN1_TYPE_new", "scope": "LIBRARY", "original": ".text"}, "120": {"type": "MIPS_26", "symbol": "ASN1_get_object", "scope": "LIBRARY"}, "140": {"type": "MIPS_26", "symbol": "ASN1_TYPE_component_free", "scope": "LIBRARY", "original": ".text"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "220": {"type": "MIPS_26", "symbol": "d2i_ASN1_INTEGER", "scope": "LIBRARY"}, "248": {"type": "MIPS_26", "symbol": "d2i_ASN1_BIT_STRING", "scope": "LIBRARY"}, "276": {"type": "MIPS_26", "symbol": "d2i_ASN1_OCTET_STRING", "scope": "LIBRARY"}, "304": {"type": "MIPS_26", "symbol": "d2i_ASN1_OBJECT", "scope": "LIBRARY"}, "332": {"type": "MIPS_26", "symbol": "d2i_ASN1_PRINTABLESTRING", "scope": "LIBRARY"}, "364": {"type": "MIPS_26", "symbol": "d2i_ASN1_type_bytes", "scope": "LIBRARY"}, "396": {"type": "MIPS_26", "symbol": "d2i_ASN1_type_bytes", "scope": "LIBRARY"}, "428": {"type": "MIPS_26", "symbol": "d2i_ASN1_type_bytes", "scope": "LIBRARY"}, "460": {"type": "MIPS_26", "symbol": "d2i_ASN1_type_bytes", "scope": "LIBRARY"}, "492": {"type": "MIPS_26", "symbol": "d2i_ASN1_type_bytes", "scope": "LIBRARY"}, "520": {"type": "MIPS_26", "symbol": "d2i_ASN1_UTCTIME", "scope": "LIBRARY"}, "584": {"type": "MIPS_26", "symbol": "ASN1_STRING_new", "scope": "LIBRARY"}, "644": {"type": "MIPS_26", "symbol": "ASN1_STRING_set", "scope": "LIBRARY"}, "692": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "768": {"type": "MIPS_26", "symbol": "ASN1_TYPE_free", "scope": "LIBRARY", "original": ".text"}}}}}, "ASN1_TYPE_new": {"f670c29114981fdca71a7cbfd785bfd667478f07": {"196b5ed7": {"type": "FUNCTION", "size": 88, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "ASN1_TYPE_free": {"a76a19cb98a6a64d50ba7e8ee932137afc451a9a": {"f807cdfc": {"type": "FUNCTION", "size": 64, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "ASN1_TYPE_component_free", "scope": "LIBRARY", "original": ".text"}, "40": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "ASN1_TYPE_get": {"75c88e73d0c53243548e3037a3a10b4de0258701": {"00000000": {"type": "FUNCTION", "size": 28, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "ASN1_TYPE_set": {"4533ef9a691ffa1aa928638f9da73bd22659d131": {"f2aa76e4": {"type": "FUNCTION", "size": 80, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "ASN1_TYPE_component_free", "scope": "LIBRARY", "original": ".text"}}}}}, "ASN1_TYPE_component_free": {"c5d7e2625c381c24d895431f464aa4c89cffd5b3": {"21764230": {"type": "FUNCTION", "size": 168, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"120": {"type": "MIPS_26", "symbol": "ASN1_OBJECT_free", "scope": "LIBRARY"}, "136": {"type": "MIPS_26", "symbol": "ASN1_STRING_free", "scope": "LIBRARY"}}}}}, "ASN1_verify": {"4f7a177fddf67c52a121066fe58e2982f7b0baf9": {"5aa24fcf": {"type": "FUNCTION", "size": 388, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"72": {"type": "MIPS_26", "symbol": "EVP_OBJ_get_digestbyobj", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "EVP_MD_CTX_new", "scope": "LIBRARY"}, "136": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "172": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "204": {"type": "MIPS_26", "symbol": "EVP_DigestInit", "scope": "LIBRARY"}, "224": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}, "240": {"type": "MIPS_26", "symbol": "memset"}, "260": {"type": "MIPS_26", "symbol": "EVP_VerifyFinal", "scope": "LIBRARY"}, "296": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "312": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "328": {"type": "MIPS_26", "symbol": "EVP_MD_CTX_free", "scope": "LIBRARY"}}}}}, "BIO_printf": {"40a9c36a2efe43516510984269c24f2a3505eb4c": {"2571f4ed": {"type": "FUNCTION", "size": 148, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_26", "symbol": "R_DIAG_check_stack", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "vsprintf"}, "108": {"type": "MIPS_26", "symbol": "strlen"}, "124": {"type": "MIPS_26", "symbol": "BIO_write", "scope": "LIBRARY"}}}}}, "BER_ITEMS_encode": {"e427c3eaf81c6eecef81a052b95b513a81bdfff3": {"bcaacbd0": {"type": "FUNCTION", "size": 376, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"152": {"type": "MIPS_26", "symbol": "ber_header_write", "scope": "LIBRARY", "original": ".text"}, "276": {"type": "MIPS_26", "symbol": "memcpy"}}}}}, "ber_header_write": {"5f2a9560e1c8058f3f49c2974745e233d96e0898": {"00000000": {"type": "FUNCTION", "size": 300, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "BER_ITEM_get_long": {"fb0ee77aec399818c4aa7fd1f5782fbe65c82f18": {"2dadc0f3": {"type": "FUNCTION", "size": 196, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "BER_ITEM_cmp_tag", "scope": "LIBRARY"}}}}}, )PS2SDB", 8192}, + std::string_view{R"PS2SDB("BER_ITEMS_SK_init": {"c8520ed191dcea36885a0872ed9720ec28a076c5": {"00000000": {"type": "FUNCTION", "size": 36, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "BER_ITEMS_SK_get": {"99a5cbb4185aada34be5c5a44f99da51d371274b": {"4b1dc914": {"type": "FUNCTION", "size": 136, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "BER_ITEMS_SK_grow", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "memset"}}}}}, "BER_ITEMS_append": {"ddc2d5ad0b420f05d7cae5c30ce658a3ab5d06e7": {"00000000": {"type": "FUNCTION", "size": 40, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "BER_ITEMS_under": {"bf09eb63475378d9005f15851333a6273e798927": {"00000000": {"type": "FUNCTION", "size": 64, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "BER_ITEMS_SK_grow": {"15557f86c414d51a916519d1c19ec4cbf035bb39": {"916d815e": {"type": "FUNCTION", "size": 508, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"92": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "memset"}, "148": {"type": "MIPS_26", "symbol": "R_realloc", "scope": "LIBRARY"}, "184": {"type": "MIPS_26", "symbol": "memset"}}}}}, "BER_ITEMS_SK_free": {"bdb06a548046a5daf57fc17dd776453d63440341": {"d4b41360": {"type": "FUNCTION", "size": 220, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"76": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "140": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "188": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "BER_ITEM_cmp_tag": {"a83953d3628268aa53ea466f39d60cee04b098a8": {"00000000": {"type": "FUNCTION", "size": 60, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "BER_ITEM_set_all": {"cace352fa05c47fc9ea42327bcdf731c7619dbdf": {"890b6b2c": {"type": "FUNCTION", "size": 104, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "BER_ITEM_set_header", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "BER_ITEM_set_data", "scope": "LIBRARY"}}}}}, "BER_ITEM_set_header": {"2c84b2269a330bf72ff4c73d4baf5da8d2c03040": {"00000000": {"type": "FUNCTION", "size": 60, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "BER_ITEM_set_prefix_byte": {"6af428fb78ad764e54ea1bd579b644ecff76bf6e": {"00000000": {"type": "FUNCTION", "size": 40, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "BER_ITEM_set_data": {"2aa4aca63c4daeeeff2366ba53b34f985dc85817": {"00000000": {"type": "FUNCTION", "size": 32, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "BER_read_item": {"75f3044b4e93042cf8982bd4562785810e4ceab1": {"00000000": {"type": "FUNCTION", "size": 352, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "BER_ITEMS_recalc_length": {"563e13b60ef8c4cc6ec276d71318b58b3d4b088d": {"01ffb3b4": {"type": "FUNCTION", "size": 284, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"144": {"type": "MIPS_26", "symbol": "ber_header_len", "scope": "LIBRARY", "original": ".text"}}}}}, "ber_header_len": {"0c6b6bd80fb4ae64e7b31c8617eefd80d43551ee": {"00000000": {"type": "FUNCTION", "size": 160, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "BER_parse": {"12ec9fce7a21eaf942e3f5d31b4978432d855d8f": {"fdadacd8": {"type": "FUNCTION", "size": 732, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"128": {"type": "MIPS_26", "symbol": "BER_ITEMS_SK_get", "scope": "LIBRARY"}, "172": {"type": "MIPS_26", "symbol": "BER_read_item", "scope": "LIBRARY"}}}}}, "BER_ITEM_set_long": {"9cd276c8c3a4957cc2da43b6e1dfa8eaef35beb4": {"e72cc18f": {"type": "FUNCTION", "size": 348, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "164": {"type": "MIPS_26", "symbol": "memset"}, "304": {"type": "MIPS_26", "symbol": "BER_ITEM_set_all", "scope": "LIBRARY"}}}}}, "BIO_f_buffer": {"2a51c093207f3b6546ea5ac91d4ae4a6999eaed5": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "buffer_new": {"1f81f18513ebb90745e4f60f1cc94754e520b4f6": {"a450ec87": {"type": "FUNCTION", "size": 164, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "40": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "buffer_free": {"d6fe046933e0a0088538eae48b0a03208cdd6558": {"aaf402fb": {"type": "FUNCTION", "size": 120, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "buffer_read": {"0864d8c7718a94f5c2ca89a51a9d9952bc95f2bb": {"aa483513": {"type": "FUNCTION", "size": 376, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"84": {"type": "MIPS_26", "symbol": "BIO_clear_retry_flags", "scope": "LIBRARY"}, "128": {"type": "MIPS_26", "symbol": "memcpy"}, "200": {"type": "MIPS_26", "symbol": "BIO_read", "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "BIO_copy_next_retry", "scope": "LIBRARY"}, "268": {"type": "MIPS_26", "symbol": "BIO_read", "scope": "LIBRARY"}, "288": {"type": "MIPS_26", "symbol": "BIO_copy_next_retry", "scope": "LIBRARY"}}}}}, "buffer_write": {"9968b5d87786283aaf0adc9d9f7382d4e7de2c1c": {"38b9ea36": {"type": "FUNCTION", "size": 488, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"92": {"type": "MIPS_26", "symbol": "BIO_clear_)PS2SDB", 8192}, + std::string_view{R"PS2SDB(retry_flags", "scope": "LIBRARY"}, "140": {"type": "MIPS_26", "symbol": "memcpy"}, "200": {"type": "MIPS_26", "symbol": "memcpy"}, "264": {"type": "MIPS_26", "symbol": "BIO_write", "scope": "LIBRARY"}, "284": {"type": "MIPS_26", "symbol": "BIO_copy_next_retry", "scope": "LIBRARY"}, "364": {"type": "MIPS_26", "symbol": "BIO_write", "scope": "LIBRARY"}, "384": {"type": "MIPS_26", "symbol": "BIO_copy_next_retry", "scope": "LIBRARY"}}}}}, "buffer_ctrl": {"e144bff9dc0b97262f4836e77f77f1b3d69125ee": {"9f5aece9": {"type": "FUNCTION", "size": 1096, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"404": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "436": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "480": {"type": "MIPS_26", "symbol": "memcpy"}, "600": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "644": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "676": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "700": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "736": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "764": {"type": "MIPS_26", "symbol": "BIO_clear_retry_flags", "scope": "LIBRARY"}, "784": {"type": "MIPS_26", "symbol": "BIO_ctrl", "scope": "LIBRARY"}, "796": {"type": "MIPS_26", "symbol": "BIO_copy_next_retry", "scope": "LIBRARY"}, "824": {"type": "MIPS_26", "symbol": "BIO_clear_retry_flags", "scope": "LIBRARY"}, "860": {"type": "MIPS_26", "symbol": "BIO_write", "scope": "LIBRARY"}, "872": {"type": "MIPS_26", "symbol": "BIO_copy_next_retry", "scope": "LIBRARY"}, "928": {"type": "MIPS_26", "symbol": "BIO_ctrl", "scope": "LIBRARY"}, "956": {"type": "MIPS_26", "symbol": "BIO_int_ctrl", "scope": "LIBRARY"}, "980": {"type": "MIPS_26", "symbol": "BIO_int_ctrl", "scope": "LIBRARY"}, "1012": {"type": "MIPS_26", "symbol": "BIO_ctrl", "scope": "LIBRARY"}, "1044": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "buffer_gets": {"0294da099f9791c9799ed79aafaf417279353b1d": {"8cb8f323": {"type": "FUNCTION", "size": 368, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "BIO_clear_retry_flags", "scope": "LIBRARY"}, "256": {"type": "MIPS_26", "symbol": "BIO_read", "scope": "LIBRARY"}, "276": {"type": "MIPS_26", "symbol": "BIO_copy_next_retry", "scope": "LIBRARY"}}}}}, "buffer_puts": {"ffb313ed37bcdf848d43a92900d1d8996f3dfb75": {"ef353567": {"type": "FUNCTION", "size": 68, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "strlen"}, "40": {"type": "MIPS_26", "symbol": "BIO_write", "scope": "LIBRARY"}}}}}, "BIO_set_flags": {"61149ac8769f739ed2955e63613f01a4d9563af7": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "BIO_get_flags": {"e930242059a232be90389cb0e1523b75ed86b1d8": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "BIO_set_retry_special": {"7993d73c5043a6681732ceeb54cbe3f8e21ee633": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "BIO_set_retry_read": {"48085d2ae383ecb45a254e73ca4a3bf8655a4879": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "BIO_set_retry_write": {"231bf2f4d510e6760fd9549431db2712d6366859": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "BIO_clear_flags": {"f736dfe5c9f0c1689e489210d73436201f41fc46": {"00000000": {"type": "FUNCTION", "size": 20, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "BIO_clear_retry_flags": {"e19beca46efddf1b7d7d166baeeb5b5207ef3c60": {"00000000": {"type": "FUNCTION", "size": 20, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "BIO_get_retry_flags": {"4fc144defd048359b89de255268fe782f6680a93": {"00000000": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "BIO_should_read": {"a8e20fe42c20cb26a32e11a85fc417ffe4b9f995": {"00000000": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "BIO_should_write": {"13ef1237a0832b6a9804e48f97bafe1083081f1b": {"00000000": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "BIO_should_io_special": {"5788a9d46de98e9d9aa396a164b34ca9681896e1": {"00000000": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "BIO_retry_type": {"1a5d5456b028e173995f647c20bc2dce4a48f052": {"00000000": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "BIO_should_retry": {"6e864aed6c556684cf56fd69173ee3a609871e9b": {"00000000": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "BIO_set_cb": {"cccf1f417a0defdeba45c18ad5b9286e98926f5a": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "BIO_set_cb_arg": {"96ee6a60a582974c882f240f72ad05d69c0ff7c0": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "BIO_get_cb_arg": {"2ad1539f6f0c447b85ffcea2077d55f9a17f4183": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "BIO_get_cb": {"49629bfd21111872a95cda909da7446d13180ce9": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "BIO_set_bio_cb": {"937c5cdb524bcd157e0c14ff8109189d0d76d54d": {"00000000": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "BIO_method_name": {"c0f599a35757a140584779ba9a810354a9977e0a": {"00000000": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "BIO_method_type": {"f5c2bc61f6e168d8e16c4f)PS2SDB", 8192}, + std::string_view{R"PS2SDB(57ebfb0f678d15868b": {"00000000": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "BIO_new": {"1eef4238b74bcaf7015bff2398f96b6abb27191e": {"7d7dc5eb": {"type": "FUNCTION", "size": 124, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "BIO_set", "scope": "LIBRARY", "original": ".text"}, "88": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "BIO_set": {"2730f651eb6bc9a09c38f5d2cb36376b687c26e3": {"61d43346": {"type": "FUNCTION", "size": 196, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "get_common_global", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "128": {"type": "MIPS_26", "symbol": "CRYPTO_new_ex_data", "scope": "LIBRARY"}}}}}, "BIO_free": {"7ebb189f36e35ca62bccf104e44836009acb56b8": {"2f8ee6a1": {"type": "FUNCTION", "size": 224, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "get_common_global", "scope": "LIBRARY"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "60": {"type": "MIPS_26", "symbol": "R_locked_add", "scope": "LIBRARY"}, "144": {"type": "MIPS_26", "symbol": "CRYPTO_free_ex_data", "scope": "LIBRARY"}, "152": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "192": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "BIO_read": {"b2bca4c84ef244832f29f8cfd1018c9ec114ded7": {"4bd2596d": {"type": "FUNCTION", "size": 284, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"156": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "BIO_write": {"efe1d4fc4bc2bd485aa56e5a28f91287259aa5e2": {"141f59a8": {"type": "FUNCTION", "size": 376, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"160": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "244": {"type": "MIPS_26", "symbol": "BIO_ctrl", "scope": "LIBRARY"}, "292": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "BIO_gets": {"d01009d6a535c84ef95c567717d1997a1a1d4a23": {"4bd2596d": {"type": "FUNCTION", "size": 260, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"156": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "BIO_int_ctrl": {"5285ec9d7cafb32b9059434f3d63fd53126706a0": {"2fa5f36f": {"type": "FUNCTION", "size": 32, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "BIO_ctrl", "scope": "LIBRARY"}}}}}, "BIO_ctrl": {"95f80dffad2023f099f48bc19eb3edf7155b3ab6": {"49c4306c": {"type": "FUNCTION", "size": 244, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"96": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "BIO_push": {"eeafde44286ebd5b624e314b75d22d6b08f7ff92": {"90216270": {"type": "FUNCTION", "size": 128, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"100": {"type": "MIPS_26", "symbol": "BIO_ctrl", "scope": "LIBRARY"}}}}}, "BIO_pop": {"2ca993fc00e35255f7d96a89f2d29f6e962abf9f": {"1102b7e9": {"type": "FUNCTION", "size": 116, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"88": {"type": "MIPS_26", "symbol": "BIO_ctrl", "scope": "LIBRARY"}}}}}, "BIO_get_retry_reason": {"b00649096422e3defabf3beac23728730eec5e86": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "BIO_free_all": {"8a0269d09cce8fb3e5163815ce13b07d5fe1b4cb": {"9e942533": {"type": "FUNCTION", "size": 76, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "BIO_free", "scope": "LIBRARY"}}}}}, "BIO_copy_next_retry": {"a9868addb61ab16684cf881044b9e23b70ee5713": {"bf77f66c": {"type": "FUNCTION", "size": 64, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "BIO_get_retry_flags", "scope": "LIBRARY"}, "28": {"type": "MIPS_26", "symbol": "BIO_set_flags", "scope": "LIBRARY"}}}}}, "BN_add": {"6a71c9d22de4cd421358295cbdef90bcbcdd6445": {"795ed155": {"type": "FUNCTION", "size": 212, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_26", "symbol": "BN_ucmp", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "BN_usub", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "BN_usub", "scope": "LIBRARY"}, "176": {"type": "MIPS_26", "symbol": "BN_uadd", "scope": "LIBRARY"}}}}}, "BN_uadd": {"a8fc75b4c2ffb89923cfed9a3e9908be8cf3897c": {"89058a5a": {"type": "FUNCTION", "size": 364, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"100": {"type": "MIPS_26", "symbol": "bn_expand2", "scope": "LIBRARY"}, "160": {"type": "MIPS_26", "symbol": "bn_add_words", "scope": "LIBRARY"}}}}}, "BN_usub": {"3232587beca00353ee27c63a0c5e109e4122045d": {"835168fc": {"type": "FUNCTION", "size": 440, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"72": {"type": "MIPS_26", "symbol": "bn_expand2", "scope": "LIBRARY"}, "396": {"type": "MIPS_26", "symbol": "bn_fix_top", "scope": "LIBRARY"}}}}}, "BN_sub": {"9d394eeaa6f30c0b856a55a859024ba9ac798ef1": {"06c5deb2": {"type": "FUNCTION", "size": 312, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"108": {"type": "MIPS_26", "symbol": "BN_uadd", "scope": "LIBRARY"}, "164": {"type": "MIPS_26", "symbol": "bn_expand2", "scope": "LIBRARY"}, "200": {"type": "MIPS_26", "symbol": "BN_ucmp", "scope": "LIBRARY"}, "224": {"type": "MIPS_26", "symbol": "BN_usub", "scope": "LIBRARY"}, "260": {"type": "MIPS_26", "symbol": "BN_usub", "scope": "LIBRARY"}}}}}, "BN_div": {"ee7abe61187df2fe20c41072e3c25020fa1b3e2a": {"fe21e164": {"type": "FUNCTION", "size": 1672, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"100": {"type": "MIPS_26", "symbol": "BN_ucmp", "scope": "LIBRARY"}, "128": {"type": "MIPS_26", "symbol": "BN_copy", "scope": "LIBRARY"}, "152": {"type": "MIPS_26", "symbol": "BN_set_word", "scope": "LIBRARY"}, "248": {"type": "MIPS_26", "symbol": "BN_num_bits", "scope": "LIBRARY"}, "300": {"type": "MIPS_26", "symbol": "BN_lshift", "scope": "LIBRARY"})PS2SDB", 8192}, + std::string_view{R"PS2SDB(, "336": {"type": "MIPS_26", "symbol": "BN_lshift", "scope": "LIBRARY"}, "368": {"type": "MIPS_26", "symbol": "BN_init", "scope": "LIBRARY"}, "500": {"type": "MIPS_26", "symbol": "bn_expand2", "scope": "LIBRARY"}, "608": {"type": "MIPS_26", "symbol": "bn_expand2", "scope": "LIBRARY"}, "640": {"type": "MIPS_26", "symbol": "BN_ucmp", "scope": "LIBRARY"}, "660": {"type": "MIPS_26", "symbol": "BN_usub", "scope": "LIBRARY"}, "856": {"type": "MIPS_26", "symbol": "bn_div_words", "scope": "LIBRARY"}, "996": {"type": "MIPS_26", "symbol": "__muldi3"}, "1012": {"type": "MIPS_26", "symbol": "__muldi3"}, "1028": {"type": "MIPS_26", "symbol": "__muldi3"}, "1048": {"type": "MIPS_26", "symbol": "__muldi3"}, "1132": {"type": "MIPS_26", "symbol": "__muldi3"}, "1148": {"type": "MIPS_26", "symbol": "__muldi3"}, "1164": {"type": "MIPS_26", "symbol": "__muldi3"}, "1184": {"type": "MIPS_26", "symbol": "__muldi3"}, "1304": {"type": "MIPS_26", "symbol": "bn_mul_words", "scope": "LIBRARY"}, "1432": {"type": "MIPS_26", "symbol": "BN_sub", "scope": "LIBRARY"}, "1484": {"type": "MIPS_26", "symbol": "BN_add", "scope": "LIBRARY"}, "1568": {"type": "MIPS_26", "symbol": "bn_fix_top", "scope": "LIBRARY"}, "1596": {"type": "MIPS_26", "symbol": "BN_rshift", "scope": "LIBRARY"}}}}}, "BN_mod": {"01cb40945d3b310fc90f1be3cec2f300ffeb0e19": {"931426cd": {"type": "FUNCTION", "size": 52, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "BN_div", "scope": "LIBRARY"}}}}}, "BN_mod_inverse": {"eead78743014ac39372bd2f28bc0a464a8903036": {"0b7b0556": {"type": "FUNCTION", "size": 584, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"140": {"type": "MIPS_26", "symbol": "BN_new", "scope": "LIBRARY"}, "176": {"type": "MIPS_26", "symbol": "BN_set_word", "scope": "LIBRARY"}, "188": {"type": "MIPS_26", "symbol": "BN_set_word", "scope": "LIBRARY"}, "200": {"type": "MIPS_26", "symbol": "BN_copy", "scope": "LIBRARY"}, "216": {"type": "MIPS_26", "symbol": "BN_copy", "scope": "LIBRARY"}, "268": {"type": "MIPS_26", "symbol": "BN_div", "scope": "LIBRARY"}, "304": {"type": "MIPS_26", "symbol": "BN_mul", "scope": "LIBRARY"}, "324": {"type": "MIPS_26", "symbol": "BN_add", "scope": "LIBRARY"}, "404": {"type": "MIPS_26", "symbol": "BN_sub", "scope": "LIBRARY"}, "468": {"type": "MIPS_26", "symbol": "BN_mod", "scope": "LIBRARY"}, "512": {"type": "MIPS_26", "symbol": "BN_free", "scope": "LIBRARY"}}}}}, "BN_mod_inverse_word": {"fd2517632bf2db0aa78d5c3490bc3f1648e2b9e8": {"c22a95c8": {"type": "FUNCTION", "size": 236, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "__umoddi3"}, "84": {"type": "MIPS_26", "symbol": "__udivdi3"}, "108": {"type": "MIPS_26", "symbol": "__umoddi3"}, "124": {"type": "MIPS_26", "symbol": "__muldi3"}, "176": {"type": "MIPS_26", "symbol": "__umoddi3"}}}}}, "BN_value_one": {"2a51c093207f3b6546ea5ac91d4ae4a6999eaed5": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "BN_num_bits_word": {"82286fc95613ed3b36040c2853e9cf89432cb162": {"c97b3adf": {"type": "FUNCTION", "size": 224, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"160": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "BN_num_bits": {"e8a07a9cb02fb475c48e6b26e7773a6895b28c11": {"dac0c3dd": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "BN_num_bits_word", "scope": "LIBRARY"}}}}}, "BN_clear_free": {"2eb57fe35a36973161ae9417ce2915c3acedfeb5": {"7afba06c": {"type": "FUNCTION", "size": 132, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "memset"}, "64": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "memset"}, "104": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "BN_free": {"b460cf465313999b1ffd3f524ac1315657069cbd": {"4f7cd2d4": {"type": "FUNCTION", "size": 96, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "bn_zexpand": {"b054c81acbaeef9d59ff799879738195eee045e8": {"6fbb40d9": {"type": "FUNCTION", "size": 140, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "bn_expand2", "scope": "LIBRARY"}}}}}, "bn_fix_top": {"71c05786b99ad50eaecc1294122082c96db9d346": {"00000000": {"type": "FUNCTION", "size": 84, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "BN_init": {"261e216ad042546a0a04770ddfed3c901499926c": {"6f4fcff7": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_26", "symbol": "memset"}}}}}, "BN_new": {"fb401142d43f384ab2fafd0cb57536e5a8dcace6": {"3f4cd562": {"type": "FUNCTION", "size": 68, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}}}}}, "BN_CTX_new": {"a40adc4da99058edfa9c005577afc9011a8128d8": {"4998efd9": {"type": "FUNCTION", "size": 68, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "32": {"type": "MIPS_26", "symbol": "BN_CTX_init", "scope": "LIBRARY"}}}}}, "BN_CTX_init": {"8e9874d03ac5e57edf3b014634cf0595b3fa1c1c": {"6357220b": {"type": "FUNCTION", "size": 52, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "memset"}}}}}, "BN_CTX_free": {"2d73bb2c0b61a479d34fe82aa983c3435a520ce1": {"0df6e166": {"type": "FUNCTION", "size": 112, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "BN_clear_free", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "bn_expand2": {"2c542000f03f0fc033e925bfd6fc3afaf2b25bc6": {"f5f81971": {"type": "FUNCTION", "size": 200, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "48": {"type": "MIPS_LO16", "symbol": "")PS2SDB", 8192}, + std::string_view{R"PS2SDB(, "original": ".rodata"}, "60": {"type": "MIPS_26", "symbol": "R_DIAG_check_stack", "scope": "LIBRARY"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "148": {"type": "MIPS_26", "symbol": "memcpy"}, "156": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "BN_dup": {"9e61b284131099703852765a8b2860cf06bc57ae": {"c3814e72": {"type": "FUNCTION", "size": 60, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "BN_new", "scope": "LIBRARY"}, "36": {"type": "MIPS_26", "symbol": "BN_copy", "scope": "LIBRARY"}}}}}, "BN_copy": {"a262fca5757d4101028bfbcf6e90ad178c43c7f5": {"f5a4ff8e": {"type": "FUNCTION", "size": 168, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "bn_expand2", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "memcpy"}}}}}, "BN_get_word": {"6c3f9c8c1204d74ffffdf00465493059fdeb42c4": {"9cd54104": {"type": "FUNCTION", "size": 140, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "BN_num_bits", "scope": "LIBRARY"}}}}}, "BN_set_word": {"7bc7e0d8e7540fa3dfe857d5598169ce68951fa6": {"fa8fe108": {"type": "FUNCTION", "size": 132, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "bn_expand2", "scope": "LIBRARY"}}}}}, "BN_bin2bn": {"6434210ee77dc59e651227c6f029ab42edc52ed2": {"cec595d2": {"type": "FUNCTION", "size": 320, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "BN_new", "scope": "LIBRARY"}, "140": {"type": "MIPS_26", "symbol": "bn_expand2", "scope": "LIBRARY"}, "280": {"type": "MIPS_26", "symbol": "bn_fix_top", "scope": "LIBRARY"}}}}}, "BN_bn2bin": {"35d5ce0e5d0ddb8ed7658c212362bc83feb9158e": {"efdd66cb": {"type": "FUNCTION", "size": 160, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "BN_num_bits", "scope": "LIBRARY"}}}}}, "BN_ucmp": {"9482de5bc76f9f13093903406accc507e77527bc": {"00000000": {"type": "FUNCTION", "size": 108, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "BN_cmp": {"d705448756bcb3478e5d3e585ede67a41093a1f2": {"00000000": {"type": "FUNCTION", "size": 200, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "BN_set_bit": {"66ce17009c996b645d8d584f286f194b49e83eae": {"00c05b75": {"type": "FUNCTION", "size": 276, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"100": {"type": "MIPS_26", "symbol": "bn_expand2", "scope": "LIBRARY"}}}}}, "BN_is_bit_set": {"a91d9c29dc44d89ca77dd9418c0e0ce695f591ec": {"00000000": {"type": "FUNCTION", "size": 88, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "BN_mask_bits": {"d4e2bd88e6bc655ab8204689cec5c08dd8310c7a": {"f2b46602": {"type": "FUNCTION", "size": 144, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"120": {"type": "MIPS_26", "symbol": "bn_fix_top", "scope": "LIBRARY"}}}}}, "BN_lshift": {"4eef5a27e90b7363974cffc74e290f81893f50df": {"1c1fcb59": {"type": "FUNCTION", "size": 416, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"88": {"type": "MIPS_26", "symbol": "bn_expand2", "scope": "LIBRARY"}, "352": {"type": "MIPS_26", "symbol": "memset"}, "376": {"type": "MIPS_26", "symbol": "bn_fix_top", "scope": "LIBRARY"}}}}}, "bn_mont_ctx_useit": {"0a5385cf4a659d302a43046ea0269e2b17a3ef1d": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "BN_ME_CTX_new": {"073cca72a6a7d1e893f57840f9d2f31fc8f6002b": {"eb71eb9d": {"type": "FUNCTION", "size": 100, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "get_common_global", "scope": "LIBRARY"}}}}}, "BN_ME_CTX_free": {"cd1663565e17d02807a693a78cb7728ceaa5d38f": {"00000000": {"type": "FUNCTION", "size": 36, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "BN_ME_CTX_set": {"73f54b3cd83918b03a87a53856436038a13fd47c": {"4db978b1": {"type": "FUNCTION", "size": 212, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "get_common_global", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "BN_num_bits", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "BN_bnme_get", "scope": "LIBRARY"}}}}}, "BN_ME_CTX_mod_exp": {"1082be08c9ad0e493f8b7b4f9cbd73ee51f105f2": {"d08bbe97": {"type": "FUNCTION", "size": 268, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"148": {"type": "MIPS_26", "symbol": "BN_set_word", "scope": "LIBRARY"}, "176": {"type": "MIPS_26", "symbol": "BN_copy", "scope": "LIBRARY"}, "196": {"type": "MIPS_26", "symbol": "bn_zexpand", "scope": "LIBRARY"}}}}}, "BN_mod_mul_montgomery": {"146b4b868358fe4ea54b03c12520d155524463ba": {"c7357c59": {"type": "FUNCTION", "size": 516, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"148": {"type": "MIPS_26", "symbol": "bn_expand2", "scope": "LIBRARY"}, "196": {"type": "MIPS_26", "symbol": "bn_expand2", "scope": "LIBRARY"}, "252": {"type": "MIPS_26", "symbol": "bn_expand2", "scope": "LIBRARY"}, "296": {"type": "MIPS_26", "symbol": "bn_sqr_normal", "scope": "LIBRARY"}, "324": {"type": "MIPS_26", "symbol": "bn_mul_normal", "scope": "LIBRARY"}, "424": {"type": "MIPS_26", "symbol": "bn_from_montgomery_words", "scope": "LIBRARY"}, "444": {"type": "MIPS_26", "symbol": "bn_fix_top", "scope": "LIBRARY"}}}}}, "BN_from_montgomery": {"d2b98e3bc05c9ff18e6f605ca726d3bb6c3eea53": {"f14b2b23": {"type": "FUNCTION", "size": 556, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"80": {"type": "MIPS_26", "symbol": "BN_copy", "scope": "LIBRARY"}, "160": {"type": "MIPS_26", "symbol": "bn_expand2", "scope": "LIBRARY"}, "208": {"type": "MIPS_26", "symbol": "bn_expand2", "scope": "LIBRARY"}, "368": {"type": "MIPS_26", "symbol": "__muldi3"}, "388": {"type": "MIPS_26", "symbol": "bn_mul_add_words", "scope": "LIBRARY"}, "440": {"type": "MIPS_26", "symbol": "bn_fix_top", "scope": "LIBRARY"}, "460": {"type": "MIPS_26", "symbol": "BN_rshift", "scope": "LIBRARY"}, "472": {"type": "MIPS_26", "symbol": "BN_ucmp", "scope": "LIBRARY"}, "492": {"type": "MIPS_26", "symbol": "BN_usub", "scope": "LIBRARY"}}}}}, "BN_MONT_CTX_new": {"e887e8a36463507f3942)PS2SDB", 8192}, + std::string_view{R"PS2SDB(61cb2af52142dd0812de": {"fc5eba10": {"type": "FUNCTION", "size": 68, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "32": {"type": "MIPS_26", "symbol": "BN_MONT_CTX_init", "scope": "LIBRARY"}}}}}, "BN_MONT_CTX_init": {"a9bc44516965c7eeaf3176373e7e9714ec7c32ea": {"bfe5e14a": {"type": "FUNCTION", "size": 68, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "BN_init", "scope": "LIBRARY"}, "32": {"type": "MIPS_26", "symbol": "BN_init", "scope": "LIBRARY"}, "40": {"type": "MIPS_26", "symbol": "BN_init", "scope": "LIBRARY"}}}}}, "BN_MONT_CTX_free": {"11ced19edd07707f7143365f83a119d79d64c464": {"5bc15770": {"type": "FUNCTION", "size": 84, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "BN_free", "scope": "LIBRARY"}, "24": {"type": "MIPS_26", "symbol": "BN_free", "scope": "LIBRARY"}, "32": {"type": "MIPS_26", "symbol": "BN_free", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "BN_mul": {"8b91adc9baa2e787cec12bce0798c36ec137b7b4": {"1c25565b": {"type": "FUNCTION", "size": 292, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"76": {"type": "MIPS_26", "symbol": "BN_set_word", "scope": "LIBRARY"}, "152": {"type": "MIPS_26", "symbol": "bn_expand2", "scope": "LIBRARY"}, "208": {"type": "MIPS_26", "symbol": "bn_mul_normal", "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "bn_fix_top", "scope": "LIBRARY"}, "236": {"type": "MIPS_26", "symbol": "BN_copy", "scope": "LIBRARY"}}}}}, "bn_mul_normal": {"593f9f61fe09fc0313ad3f2079bcc7a9e1c0244b": {"a6683f39": {"type": "FUNCTION", "size": 304, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"104": {"type": "MIPS_26", "symbol": "bn_mul_words", "scope": "LIBRARY"}, "140": {"type": "MIPS_26", "symbol": "bn_mul_add_words", "scope": "LIBRARY"}, "172": {"type": "MIPS_26", "symbol": "bn_mul_add_words", "scope": "LIBRARY"}, "204": {"type": "MIPS_26", "symbol": "bn_mul_add_words", "scope": "LIBRARY"}, "244": {"type": "MIPS_26", "symbol": "bn_mul_add_words", "scope": "LIBRARY"}}}}}, "BN_rshift": {"34c3318e71eec0f10a6cb46b35e0db83adfbc414": {"2a5d356b": {"type": "FUNCTION", "size": 380, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"88": {"type": "MIPS_26", "symbol": "BN_set_word", "scope": "LIBRARY"}, "132": {"type": "MIPS_26", "symbol": "bn_expand2", "scope": "LIBRARY"}, "336": {"type": "MIPS_26", "symbol": "bn_fix_top", "scope": "LIBRARY"}}}}}, "BN_sqr": {"7bbfe96d0580721720a0ff3ca89dd3b9ff02ce2b": {"c7dd8d40": {"type": "FUNCTION", "size": 400, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"120": {"type": "MIPS_26", "symbol": "bn_expand2", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "bn_sqr_normal", "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "bn_sqr_normal", "scope": "LIBRARY"}, "248": {"type": "MIPS_26", "symbol": "bn_expand2", "scope": "LIBRARY"}, "296": {"type": "MIPS_26", "symbol": "bn_sqr_normal", "scope": "LIBRARY"}, "352": {"type": "MIPS_26", "symbol": "BN_copy", "scope": "LIBRARY"}}}}}, "bn_sqr_normal": {"e4332184632158c11556ff8f7f67e09c96b25ced": {"98ed5d2f": {"type": "FUNCTION", "size": 304, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"112": {"type": "MIPS_26", "symbol": "bn_mul_words", "scope": "LIBRARY"}, "172": {"type": "MIPS_26", "symbol": "bn_mul_add_words", "scope": "LIBRARY"}, "216": {"type": "MIPS_26", "symbol": "bn_add_words", "scope": "LIBRARY"}, "232": {"type": "MIPS_26", "symbol": "bn_sqr_words", "scope": "LIBRARY"}, "296": {"type": "MIPS_26", "symbol": "bn_add_words", "scope": "LIBRARY"}}}}}, "BN_mod_word": {"c4e36e14db93ba487d5a15144580983b1c210721": {"e396762a": {"type": "FUNCTION", "size": 164, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"92": {"type": "MIPS_26", "symbol": "__umoddi3"}, "112": {"type": "MIPS_26", "symbol": "__umoddi3"}}}}}, "BN_div_word": {"7d0783a41095a3b469f8c9c7cf8940014ed79816": {"78e0d610": {"type": "FUNCTION", "size": 224, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"100": {"type": "MIPS_26", "symbol": "bn_div_words", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "__muldi3"}}}}}, "BN_add_word": {"4ec5bff738cce9ab2ffeaaf26fb92badbfc85f64": {"f963c490": {"type": "FUNCTION", "size": 336, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "BN_sub_word", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "bn_expand2", "scope": "LIBRARY"}}}}}, "BN_sub_word": {"08dd1f04a863719d05fff7c2a79f279008cfe896": {"7e6819a5": {"type": "FUNCTION", "size": 376, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "BN_add_word", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "bn_expand2", "scope": "LIBRARY"}}}}}, "BN_mul_word": {"36ac0f2c89660e12fbb7e60849b1debeffe0d5fa": {"308e47c8": {"type": "FUNCTION", "size": 152, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "bn_mul_words", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "bn_expand2", "scope": "LIBRARY"}}}}}, "bn_mul_add_words": {"ce06c15280aa40a0bc55db7ab90faaf0c17fa5e2": {"1eb06522": {"type": "FUNCTION", "size": 884, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"140": {"type": "MIPS_26", "symbol": "__muldi3"}, "156": {"type": "MIPS_26", "symbol": "__muldi3"}, "172": {"type": "MIPS_26", "symbol": "__muldi3"}, "192": {"type": "MIPS_26", "symbol": "__muldi3"}, "316": {"type": "MIPS_26", "symbol": "__muldi3"}, "332": {"type": "MIPS_26", "symbol": "__muldi3"}, "348": {"type": "MIPS_26", "symbol": "__muldi3"}, "368": {"type": "MIPS_26", "symbol": "__muldi3"}, "492": {"type": "MIPS_26", "symbol": "__muldi3"}, "508": {"type": "MIPS_26", "symbol": "__muldi3"}, "524": {"type": "MIPS_26", "symbol": "__muldi3"}, "544": {"type": "MIPS_26", "symbol": "__muldi3"}, "684": {"type": "MIPS_26", "symbol": "__muldi3"}, "700": {"type": "MIPS_26", "symbol": "__muldi3"}, "716": {"type": "MIPS_26", "symbol": "__muldi3"}, "736": {"type": "MIPS_26", "symbol": "__muldi3"}}}}}, "bn_mul_words": {"e0f633c0cdc4c9a875ac920612d321121befa6fd": {"2cd4017b": {"type": "FUNCTION", "size": 868, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"132": {"type": "MIPS_26", "symbol": "__muldi3"}, "148": {"type": "MIPS_26", "symbol": "__muldi3"}, "164": {"type": "MIPS_26", "symbol": "__muldi3"}, "184": {"type": "MIPS_26", "symbol": "__muldi3"}, "304": {"type": "MIPS_26", "symbol": "__muldi3"}, "320": {"type": "MIPS_26", "symbol": "__muldi3"}, "336": {"type": "MIPS_26", "symbol": "__muldi3"}, "356":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( {"type": "MIPS_26", "symbol": "__muldi3"}, "476": {"type": "MIPS_26", "symbol": "__muldi3"}, "492": {"type": "MIPS_26", "symbol": "__muldi3"}, "508": {"type": "MIPS_26", "symbol": "__muldi3"}, "528": {"type": "MIPS_26", "symbol": "__muldi3"}, "672": {"type": "MIPS_26", "symbol": "__muldi3"}, "688": {"type": "MIPS_26", "symbol": "__muldi3"}, "704": {"type": "MIPS_26", "symbol": "__muldi3"}, "724": {"type": "MIPS_26", "symbol": "__muldi3"}}}}}, "bn_sqr_words": {"21280eb71252f57f111a03cd7a520af865f30e7a": {"aad9bc2f": {"type": "FUNCTION", "size": 556, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"92": {"type": "MIPS_26", "symbol": "__muldi3"}, "108": {"type": "MIPS_26", "symbol": "__muldi3"}, "124": {"type": "MIPS_26", "symbol": "__muldi3"}, "200": {"type": "MIPS_26", "symbol": "__muldi3"}, "216": {"type": "MIPS_26", "symbol": "__muldi3"}, "232": {"type": "MIPS_26", "symbol": "__muldi3"}, "312": {"type": "MIPS_26", "symbol": "__muldi3"}, "328": {"type": "MIPS_26", "symbol": "__muldi3"}, "344": {"type": "MIPS_26", "symbol": "__muldi3"}, "424": {"type": "MIPS_26", "symbol": "__muldi3"}, "440": {"type": "MIPS_26", "symbol": "__muldi3"}, "456": {"type": "MIPS_26", "symbol": "__muldi3"}}}}}, "bn_add_words": {"c8fdb3b59155331525bfe7bf68818dd3972cd1a6": {"00000000": {"type": "FUNCTION", "size": 220, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "bn_sub_words": {"1356eb504d1da2560ee6d379e90dc65ef932f00e": {"00000000": {"type": "FUNCTION", "size": 188, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "BN_bnme_get_info": {"52e63c6bad71af6a6605f8afb0858ba24706d916": {"83fe0fcd": {"type": "FUNCTION", "size": 44, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "BN_bnme_delete": {"34d7a36b6fb1494b774c56dd4d9b4a281e66b88f": {"a937ba6f": {"type": "FUNCTION", "size": 136, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "BN_bnme_insert": {"faaf6e7fb821378892babd5c4f577fe7c805fe88": {"92fc4fcb": {"type": "FUNCTION", "size": 204, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "BN_bnme_clear": {"ad519239883ac4b9a4f922906bdcfe8b22f333cd": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "BN_bnme_set": {"2824457580e1fddee7cf7eed624a09071f06fd70": {"a4a05ac0": {"type": "FUNCTION", "size": 736, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"144": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "244": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "300": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "336": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "384": {"type": "MIPS_26", "symbol": "BN_bnme_insert", "scope": "LIBRARY", "original": ".text"}, "412": {"type": "MIPS_26", "symbol": "BN_bnme_insert", "scope": "LIBRARY", "original": ".text"}, "428": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "448": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "456": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "548": {"type": "MIPS_26", "symbol": "BN_bnme_delete", "scope": "LIBRARY", "original": ".text"}, "596": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "604": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "636": {"type": "MIPS_26", "symbol": "BN_bnme_delete", "scope": "LIBRARY", "original": ".text"}, "644": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "BN_bnme_get": {"c9b313507386ff2f4d586062f26447fb64d78dac": {"ac10c5c4": {"type": "FUNCTION", "size": 168, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "BN_library_init": {"1973066c36329ee4fe8c4bba635be858d4874bab": {"20c4d69a": {"type": "FUNCTION", "size": 116, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "BN_bnme_set", "scope": "LIBRARY", "original": ".text"}}}}}, "BN_gen_exp_bits": {"631c8924f69b3dd97598bf4700020c5cc263bc16": {"e5d1d624": {"type": "FUNCTION", "size": 388, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"116": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "284": {"type": "MIPS_26", "symbol": "bn_expand2", "scope": "LIBRARY"}, "304": {"type": "MIPS_26", "symbol": "B)PS2SDB", 8192}, + std::string_view{R"PS2SDB(N_gen_exp_string", "scope": "LIBRARY", "original": ".text"}}}}}, "BN_gen_exp_string": {"ed8e1291fb618249cd3b9272735e3c93e28cffb5": {"0abc6509": {"type": "FUNCTION", "size": 464, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "BN_mod_exp2_mont": {"d29d7ccaa1da8d1a3203c976ca799a5bfc0551be": {"b9682b07": {"type": "FUNCTION", "size": 1400, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"140": {"type": "MIPS_26", "symbol": "BN_num_bits", "scope": "LIBRARY"}, "152": {"type": "MIPS_26", "symbol": "BN_num_bits", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "BN_set_word", "scope": "LIBRARY"}, "228": {"type": "MIPS_26", "symbol": "BN_MONT_CTX_new", "scope": "LIBRARY"}, "252": {"type": "MIPS_26", "symbol": "BN_MONT_CTX_set_word", "scope": "LIBRARY"}, "276": {"type": "MIPS_26", "symbol": "BN_init", "scope": "LIBRARY"}, "288": {"type": "MIPS_26", "symbol": "BN_init", "scope": "LIBRARY"}, "308": {"type": "MIPS_26", "symbol": "BN_init", "scope": "LIBRARY"}, "324": {"type": "MIPS_26", "symbol": "BN_init", "scope": "LIBRARY"}, "336": {"type": "MIPS_26", "symbol": "BN_ucmp", "scope": "LIBRARY"}, "360": {"type": "MIPS_26", "symbol": "BN_mod", "scope": "LIBRARY"}, "376": {"type": "MIPS_26", "symbol": "BN_ucmp", "scope": "LIBRARY"}, "400": {"type": "MIPS_26", "symbol": "BN_mod", "scope": "LIBRARY"}, "444": {"type": "MIPS_26", "symbol": "BN_mod_mul_montgomery", "scope": "LIBRARY"}, "472": {"type": "MIPS_26", "symbol": "BN_mod_mul_montgomery", "scope": "LIBRARY"}, "500": {"type": "MIPS_26", "symbol": "BN_mod_mul_montgomery", "scope": "LIBRARY"}, "568": {"type": "MIPS_26", "symbol": "BN_init", "scope": "LIBRARY"}, "576": {"type": "MIPS_26", "symbol": "BN_init", "scope": "LIBRARY"}, "600": {"type": "MIPS_26", "symbol": "BN_mod_mul_montgomery", "scope": "LIBRARY"}, "628": {"type": "MIPS_26", "symbol": "BN_mod_mul_montgomery", "scope": "LIBRARY"}, "664": {"type": "MIPS_26", "symbol": "BN_init", "scope": "LIBRARY"}, "688": {"type": "MIPS_26", "symbol": "BN_mod_mul_montgomery", "scope": "LIBRARY"}, "784": {"type": "MIPS_26", "symbol": "BN_value_one", "scope": "LIBRARY"}, "824": {"type": "MIPS_26", "symbol": "BN_mod_mul_montgomery", "scope": "LIBRARY"}, "876": {"type": "MIPS_26", "symbol": "BN_is_bit_set", "scope": "LIBRARY"}, "896": {"type": "MIPS_26", "symbol": "BN_is_bit_set", "scope": "LIBRARY"}, "964": {"type": "MIPS_26", "symbol": "BN_mod_mul_montgomery", "scope": "LIBRARY"}, "1044": {"type": "MIPS_26", "symbol": "BN_mod_mul_montgomery", "scope": "LIBRARY"}, "1076": {"type": "MIPS_26", "symbol": "BN_is_bit_set", "scope": "LIBRARY"}, "1092": {"type": "MIPS_26", "symbol": "BN_is_bit_set", "scope": "LIBRARY"}, "1140": {"type": "MIPS_26", "symbol": "BN_mod_mul_montgomery", "scope": "LIBRARY"}, "1180": {"type": "MIPS_26", "symbol": "BN_from_montgomery", "scope": "LIBRARY"}, "1216": {"type": "MIPS_26", "symbol": "BN_MONT_CTX_free", "scope": "LIBRARY"}, "1292": {"type": "MIPS_26", "symbol": "BN_clear_free", "scope": "LIBRARY"}}}}}, "bn_from_montgomery_words": {"5757c657d8edc7573112e681461d111c29cac3de": {"f511917e": {"type": "FUNCTION", "size": 468, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"96": {"type": "MIPS_26", "symbol": "__muldi3"}, "116": {"type": "MIPS_26", "symbol": "bn_mul_add_words", "scope": "LIBRARY"}, "364": {"type": "MIPS_26", "symbol": "bn_sub_words", "scope": "LIBRARY"}}}}}, "BN_mod_exp_mont": {"f9f8e2d88438eb612abf0c93c53816fbdca9f7ae": {"48077d69": {"type": "FUNCTION", "size": 1804, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"196": {"type": "MIPS_26", "symbol": "BN_set_word", "scope": "LIBRARY"}, "224": {"type": "MIPS_26", "symbol": "BN_copy", "scope": "LIBRARY"}, "256": {"type": "MIPS_26", "symbol": "BN_MONT_CTX_new", "scope": "LIBRARY"}, "280": {"type": "MIPS_26", "symbol": "BN_MONT_CTX_set_word", "scope": "LIBRARY"}, "308": {"type": "MIPS_26", "symbol": "BN_gen_exp_bits", "scope": "LIBRARY"}, "524": {"type": "MIPS_26", "symbol": "bn_zexpand", "scope": "LIBRARY"}, "676": {"type": "MIPS_26", "symbol": "BN_mod", "scope": "LIBRARY"}, "696": {"type": "MIPS_26", "symbol": "bn_zexpand", "scope": "LIBRARY"}, "912": {"type": "MIPS_26", "symbol": "bn_expand2", "scope": "LIBRARY"}, "936": {"type": "MIPS_26", "symbol": "bn_expand2", "scope": "LIBRARY"}, "968": {"type": "MIPS_26", "symbol": "bn_expand2", "scope": "LIBRARY"}, "992": {"type": "MIPS_26", "symbol": "bn_expand2", "scope": "LIBRARY"}, "1020": {"type": "MIPS_26", "symbol": "bn_expand2", "scope": "LIBRARY"}, "1084": {"type": "MIPS_26", "symbol": "bn_mul_normal", "scope": "LIBRARY"}, "1108": {"type": "MIPS_26", "symbol": "bn_from_montgomery_words", "scope": "LIBRARY"}, "1140": {"type": "MIPS_26", "symbol": "bn_sqr_normal", "scope": "LIBRARY"}, "1168": {"type": "MIPS_26", "symbol": "bn_from_montgomery_words", "scope": "LIBRARY"}, "1228": {"type": "MIPS_26", "symbol": "bn_mul_normal", "scope": "LIBRARY"}, "1256": {"type": "MIPS_26", "symbol": "bn_from_montgomery_words", "scope": "LIBRARY"}, "1320": {"type": "MIPS_26", "symbol": "memcpy"}, "1360": {"type": "MIPS_26", "symbol": "bn_sqr_normal", "scope": "LIBRARY"}, "1388": {"type": "MIPS_26", "symbol": "bn_from_montgomery_words", "scope": "LIBRARY"}, "1488": {"type": "MIPS_26", "symbol": "bn_mul_normal", "scope": "LIBRARY"}, "1512": {"type": "MIPS_26", "symbol": "bn_from_montgomery_words", "scope": "LIBRARY"}, "1568": {"type": "MIPS_26", "symbol": "bn_mul_normal", "scope": "LIBRARY"}, "1596": {"type": "MIPS_26", "symbol": "bn_from_montgomery_words", "scope": "LIBRARY"}, "1680": {"type": "MIPS_26", "symbol": "bn_from_montgomery_words", "scope": "LIBRARY"}, "1704": {"type": "MIPS_26", "symbol": "bn_fix_top", "scope": "LIBRARY"}, "1736": {"type": "MIPS_26", "symbol": "BN_MONT_CTX_free", "scope": "LIBRARY"}}}}}, "BN_ME_METH_word": {"2a51c093207f3b6546ea5ac91d4ae4a6999eaed5": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "bn_mont_ctx_new_word": {"ca40a36cc78a25dc4fd3cbf8d1f59fd1a46def38": {"abe94d05": {"type": "FUNCTION", "size": 128, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "60": {"type": "MIPS_26", "symbol": "memset"}, "80": {"type": "MIPS_26", "symbol": "BN_MONT_CTX_init", "scope": "LIBRARY"}}}}}, "bn_mont_ctx_free_word": {"06110280b0624935a8748cf770675d53dd1d9be7": {"bec85881": {"type": "FUNCTION", "size": 92, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "BN_MONT_CTX_free", "scope": "LIBRARY"}, "36": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "bn_mont_ctx_set_word": {"ac8b335d84b7d4b4908d4bda2c10beb20caf33f0": {"00c3856c": {"type": "FUNCTION", "size": 256, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "BN_MONT_CTX_set_word", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "bn_zexpand", "scope": "LIBRARY"}, "104": {"type": "MIPS_26")PS2SDB", 8192}, + std::string_view{R"PS2SDB(, "symbol": "bn_zexpand", "scope": "LIBRARY"}, "140": {"type": "MIPS_26", "symbol": "BN_gen_exp_bits", "scope": "LIBRARY"}, "176": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "184": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "208": {"type": "MIPS_26", "symbol": "memcpy"}}}}}, "bn_mod_exp_word": {"8db553bc55f2d88889e6d98199ac8131b70b8263": {"c7ddd2ae": {"type": "FUNCTION", "size": 1360, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"220": {"type": "MIPS_26", "symbol": "BN_mod", "scope": "LIBRARY"}, "280": {"type": "MIPS_26", "symbol": "BN_copy", "scope": "LIBRARY"}, "292": {"type": "MIPS_26", "symbol": "bn_zexpand", "scope": "LIBRARY"}, "316": {"type": "MIPS_26", "symbol": "BN_gen_exp_bits", "scope": "LIBRARY"}, "452": {"type": "MIPS_26", "symbol": "bn_expand2", "scope": "LIBRARY"}, "488": {"type": "MIPS_26", "symbol": "bn_expand2", "scope": "LIBRARY"}, "564": {"type": "MIPS_26", "symbol": "bn_mul_normal", "scope": "LIBRARY"}, "588": {"type": "MIPS_26", "symbol": "bn_from_montgomery_words", "scope": "LIBRARY"}, "624": {"type": "MIPS_26", "symbol": "bn_sqr_normal", "scope": "LIBRARY"}, "652": {"type": "MIPS_26", "symbol": "bn_from_montgomery_words", "scope": "LIBRARY"}, "728": {"type": "MIPS_26", "symbol": "bn_mul_normal", "scope": "LIBRARY"}, "752": {"type": "MIPS_26", "symbol": "bn_from_montgomery_words", "scope": "LIBRARY"}, "832": {"type": "MIPS_26", "symbol": "memcpy"}, "872": {"type": "MIPS_26", "symbol": "bn_sqr_normal", "scope": "LIBRARY"}, "900": {"type": "MIPS_26", "symbol": "bn_from_montgomery_words", "scope": "LIBRARY"}, "1000": {"type": "MIPS_26", "symbol": "bn_mul_normal", "scope": "LIBRARY"}, "1024": {"type": "MIPS_26", "symbol": "bn_from_montgomery_words", "scope": "LIBRARY"}, "1108": {"type": "MIPS_26", "symbol": "bn_mul_normal", "scope": "LIBRARY"}, "1136": {"type": "MIPS_26", "symbol": "bn_from_montgomery_words", "scope": "LIBRARY"}, "1232": {"type": "MIPS_26", "symbol": "bn_from_montgomery_words", "scope": "LIBRARY"}, "1252": {"type": "MIPS_26", "symbol": "bn_fix_top", "scope": "LIBRARY"}}}}}, "BN_mod_mul": {"6743cb8d423859b744f55949c8baafe067305189": {"4e0ace74": {"type": "FUNCTION", "size": 188, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"84": {"type": "MIPS_26", "symbol": "BN_sqr", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "BN_mul", "scope": "LIBRARY"}, "128": {"type": "MIPS_26", "symbol": "BN_mod", "scope": "LIBRARY"}}}}}, "BN_MONT_CTX_set_word": {"9d31be95934825d3bfea65187bfc3351e87b6ced": {"d38acae5": {"type": "FUNCTION", "size": 420, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_26", "symbol": "BN_init", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "BN_copy", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "BN_num_bits", "scope": "LIBRARY"}, "136": {"type": "MIPS_26", "symbol": "BN_set_word", "scope": "LIBRARY"}, "148": {"type": "MIPS_26", "symbol": "BN_set_bit", "scope": "LIBRARY"}, "164": {"type": "MIPS_26", "symbol": "BN_mod_inverse_word", "scope": "LIBRARY"}, "176": {"type": "MIPS_26", "symbol": "BN_set_word", "scope": "LIBRARY"}, "192": {"type": "MIPS_26", "symbol": "BN_lshift", "scope": "LIBRARY"}, "232": {"type": "MIPS_26", "symbol": "BN_sub_word", "scope": "LIBRARY"}, "248": {"type": "MIPS_26", "symbol": "BN_set_word", "scope": "LIBRARY"}, "300": {"type": "MIPS_26", "symbol": "bn_div_words", "scope": "LIBRARY"}, "312": {"type": "MIPS_26", "symbol": "BN_free", "scope": "LIBRARY"}, "324": {"type": "MIPS_26", "symbol": "BN_set_word", "scope": "LIBRARY"}, "340": {"type": "MIPS_26", "symbol": "BN_set_bit", "scope": "LIBRARY"}, "360": {"type": "MIPS_26", "symbol": "BN_mod", "scope": "LIBRARY"}, "372": {"type": "MIPS_26", "symbol": "bn_zexpand", "scope": "LIBRARY"}}}}}, "BN_rand": {"f1f541ebe398ab5fed5767dfae5b537f7f8bf74e": {"fbe8086d": {"type": "FUNCTION", "size": 388, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"124": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "152": {"type": "MIPS_26", "symbol": "R_rand_bytes", "scope": "LIBRARY"}, "300": {"type": "MIPS_26", "symbol": "BN_bin2bn", "scope": "LIBRARY"}, "320": {"type": "MIPS_26", "symbol": "memset"}, "328": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "BN_get_default_exp_table": {"2a51c093207f3b6546ea5ac91d4ae4a6999eaed5": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "BN_default_init": {"c042040424831fbc1594c464bd2f31bae5a1fb61": {"4964bb3d": {"type": "FUNCTION", "size": 52, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_26", "symbol": "BN_library_init", "scope": "LIBRARY"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "bn_div_words": {"a13319c327f96261527097881d12aba81d4b302c": {"c768654f": {"type": "FUNCTION", "size": 476, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"76": {"type": "MIPS_26", "symbol": "BN_num_bits_word", "scope": "LIBRARY"}, "244": {"type": "MIPS_26", "symbol": "__udivdi3"}, "268": {"type": "MIPS_26", "symbol": "__muldi3"}, "304": {"type": "MIPS_26", "symbol": "__muldi3"}, "352": {"type": "MIPS_26", "symbol": "__muldi3"}}}}}, "BIO_open_file": {"294d7f6afba9745c9da09b532c0c215a07ff4c0e": {"c8341a9a": {"type": "FUNCTION", "size": 68, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "BIO_ctrl", "scope": "LIBRARY"}}}}}, "BIO_new_file": {"fa85e92c851752a29ee91a6d60030e3f3d18ac9c": {"8b57804d": {"type": "FUNCTION", "size": 108, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "BIO_s_file", "scope": "LIBRARY", "original": ".text"}, "32": {"type": "MIPS_26", "symbol": "BIO_new", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "BIO_open_file", "scope": "LIBRARY", "original": ".text"}, "72": {"type": "MIPS_26", "symbol": "BIO_free", "scope": "LIBRARY"}}}}}, "BIO_new_fp": {"f583629789e0f278a475a1d1a916b3c66ef5c900": {"945326a7": {"type": "FUNCTION", "size": 104, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "BIO_s_file", "scope": "LIBRARY", "original": ".text"}, "32": {"type": "MIPS_26", "symbol": "BIO_new", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "BIO_ctrl", "scope": "LIBRARY"}}}}}, "BIO_s_file": {"2a51c093207f3b6546ea5ac91d4ae4a6999eaed5": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "fil)PS2SDB", 8192}, + std::string_view{R"PS2SDB(e_new": {"c9c4f85088d802b8df976cd30b5306cfef6abe72": {"00000000": {"type": "FUNCTION", "size": 20, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "file_free": {"8ee5fece7214e7f4c0020d747f208544d2bd9e7f": {"4345223a": {"type": "FUNCTION", "size": 96, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "fclose"}}}}}, "file_read": {"c2ae6345ef1793bb80216fd453090d9ee661fdcb": {"cdb0a699": {"type": "FUNCTION", "size": 64, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "fread"}}}}}, "file_write": {"a038232566aedd23ce79a2f02bab1340c40a9b10": {"2137345d": {"type": "FUNCTION", "size": 80, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "fwrite"}}}}}, "file_ctrl": {"37dcb75041bf7ab4d115094c6f4f894285f625e6": {"1f221a15": {"type": "FUNCTION", "size": 616, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_26", "symbol": "fseek"}, "124": {"type": "MIPS_26", "symbol": "ftell"}, "140": {"type": "MIPS_26", "symbol": "file_free", "scope": "LIBRARY", "original": ".text"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "232": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "264": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "284": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "308": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "324": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "360": {"type": "MIPS_26", "symbol": "file_free", "scope": "LIBRARY", "original": ".text"}, "380": {"type": "MIPS_26", "symbol": "fopen"}, "400": {"type": "MIPS_26", "symbol": "__errno"}, "424": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "432": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "436": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "440": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "452": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "456": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "460": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "464": {"type": "MIPS_26", "symbol": "ERR_add_error_data", "scope": "LIBRARY"}, "488": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "552": {"type": "MIPS_26", "symbol": "fflush"}}}}}, "file_gets": {"f7842fcc9476b91499ad5f5550e96c4bcf75b407": {"636a5c34": {"type": "FUNCTION", "size": 96, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "fgets"}, "60": {"type": "MIPS_26", "symbol": "strlen"}}}}}, "file_puts": {"ffb313ed37bcdf848d43a92900d1d8996f3dfb75": {"606eceb2": {"type": "FUNCTION", "size": 68, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "strlen"}, "40": {"type": "MIPS_26", "symbol": "file_write", "scope": "LIBRARY", "original": ".text"}}}}}, "scefd_new": {"bd7dbc743a3504adae71c2d61f50cf09f091c708": {"00000000": {"type": "FUNCTION", "size": 24, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "scefd_free": {"1e23f33f9c7c9d608e773de41b4be212298fb5eb": {"b0a78e75": {"type": "FUNCTION", "size": 84, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "sceClose"}}}}}, "scefd_read": {"52c6017555ae12f9c3743404d1c43f5eba6ae1fb": {"fa4a5248": {"type": "FUNCTION", "size": 148, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "__errno"}, "64": {"type": "MIPS_26", "symbol": "sceRead"}, "76": {"type": "MIPS_26", "symbol": "BIO_clear_retry_flags", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "SIO_fd_should_retry", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "BIO_set_retry_read", "scope": "LIBRARY"}}}}}, "scefd_write": {"ba71e76f6b29ef72a00ec81c70413d4a66a055e8": {"1d47bf9a": {"type": "FUNCTION", "size": 128, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__errno"}, "48": {"type": "MIPS_26", "symbol": "sceWrite"}, "60": {"type": "MIPS_26", "symbol": "BIO_clear_retry_flags", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "SIO_fd_should_retry", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "BIO_set_retry_write", "scope": "LIBRARY"}}}}}, "scefd_ctrl": {"a5415c86db685f6a4e21d73af6c0bfbd4a4dee49": {"f7b12c46": {"type": "FUNCTION", "size": 712, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_26", "symbol": "sceLseek"}, "128": {"type": "MIPS_26", "symbol": "sceLseek"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "208": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "280": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "292": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "316": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "320": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "324": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "328": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "344": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "412": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "436": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "456": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "460": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "500": {"type": "MIPS_26", "symbol": "scefd_free", "scope": "LIBRARY", "original": ".text"}, "588": {"type": "MIPS_26", "symbol": "scefd_free", "scope": "LIBRARY", "original": ".)PS2SDB", 8192}, + std::string_view{R"PS2SDB(text"}, "616": {"type": "MIPS_26", "symbol": "sceOpen"}}}}}, "scefd_puts": {"ffb313ed37bcdf848d43a92900d1d8996f3dfb75": {"693eb5e2": {"type": "FUNCTION", "size": 68, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "strlen"}, "40": {"type": "MIPS_26", "symbol": "scefd_write", "scope": "LIBRARY", "original": ".text"}}}}}, "scefd_gets": {"4dc0ae147fde5357ac8b444bd231e94d16e40f9a": {"9b006c7f": {"type": "FUNCTION", "size": 240, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "sceLseek"}, "88": {"type": "MIPS_26", "symbol": "sceRead"}, "100": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_26", "symbol": "strcspn"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "168": {"type": "MIPS_26", "symbol": "strlen"}, "188": {"type": "MIPS_26", "symbol": "sceLseek"}}}}}, "BIO_s_mem": {"2a51c093207f3b6546ea5ac91d4ae4a6999eaed5": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "BIO_new_mem": {"7957a2269426b9dbfcbd66302afe468ba97be039": {"00157570": {"type": "FUNCTION", "size": 36, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "BIO_s_mem", "scope": "LIBRARY", "original": ".text"}, "16": {"type": "MIPS_26", "symbol": "BIO_new", "scope": "LIBRARY"}}}}}, "mem_new": {"513d554d37e82985ecc3ac9a9f5f575dd3a002f6": {"b13f1482": {"type": "FUNCTION", "size": 76, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "BUF_MEM_new", "scope": "LIBRARY"}}}}}, "mem_free": {"4d126504274115fe98c91c6921317111fc94a534": {"3b11aea3": {"type": "FUNCTION", "size": 92, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "BUF_MEM_free", "scope": "LIBRARY"}}}}}, "mem_read": {"5595633872959430f0d063cf6082ad3905f9d1ac": {"a815c24f": {"type": "FUNCTION", "size": 220, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "BIO_clear_retry_flags", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "memcpy"}, "172": {"type": "MIPS_26", "symbol": "BIO_set_retry_read", "scope": "LIBRARY"}}}}}, "mem_write": {"503f3e967b9fc9f93f870467fad4d041ac02581c": {"a668a42b": {"type": "FUNCTION", "size": 184, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "BIO_clear_retry_flags", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "BUF_MEM_grow", "scope": "LIBRARY"}, "136": {"type": "MIPS_26", "symbol": "memcpy"}}}}}, "mem_ctrl": {"60514540f82b21072707f48a54c18e719644a798": {"eb5df85f": {"type": "FUNCTION", "size": 284, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_26", "symbol": "memset"}, "168": {"type": "MIPS_26", "symbol": "mem_free", "original": ".text"}}}}}, "mem_gets": {"3c632993f61a70be38f1111b1312b36e3d8c08bb": {"90822d55": {"type": "FUNCTION", "size": 232, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "BIO_clear_retry_flags", "scope": "LIBRARY"}, "144": {"type": "MIPS_26", "symbol": "BIO_set_retry_read", "scope": "LIBRARY"}, "176": {"type": "MIPS_26", "symbol": "mem_read", "scope": "LIBRARY", "original": ".text"}}}}}, "mem_puts": {"ffb313ed37bcdf848d43a92900d1d8996f3dfb75": {"448627b9": {"type": "FUNCTION", "size": 68, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "strlen"}, "40": {"type": "MIPS_26", "symbol": "mem_write", "scope": "LIBRARY", "original": ".text"}}}}}, "BIO_s_socket": {"2a51c093207f3b6546ea5ac91d4ae4a6999eaed5": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "BIO_new_socket": {"9233a60ea35910d829532099c349d7893944a12a": {"ad66d788": {"type": "FUNCTION", "size": 104, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "BIO_s_socket", "scope": "LIBRARY", "original": ".text"}, "32": {"type": "MIPS_26", "symbol": "BIO_new", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "BIO_int_ctrl", "scope": "LIBRARY"}}}}}, "sock_new": {"bd7dbc743a3504adae71c2d61f50cf09f091c708": {"00000000": {"type": "FUNCTION", "size": 24, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sock_free": {"e549c05c7fec14eca8adfd457b9c9243b5fc5f26": {"051ae981": {"type": "FUNCTION", "size": 100, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "sceNetGlueShutdown"}, "64": {"type": "MIPS_26", "symbol": "sceNetGlueShutdown"}}}}}, "sock_read": {"c461115b3845fbc82cb91a1ffe4b1a8d326b36d4": {"6f6f0c76": {"type": "FUNCTION", "size": 156, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "__sceNetGlueErrnoLoc"}, "68": {"type": "MIPS_26", "symbol": "sceNetGlueRecv"}, "84": {"type": "MIPS_26", "symbol": "BIO_clear_retry_flags", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "SIO_sock_should_retry", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "BIO_set_retry_read", "scope": "LIBRARY"}}}}}, "sock_write": {"3a5e7cee5ce536143c0628a2c4f6f9208a08129e": {"6535643f": {"type": "FUNCTION", "size": 136, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__sceNetGlueErrnoLoc"}, "52": {"type": "MIPS_26", "symbol": "sceNetGlueSend"}, "68": {"type": "MIPS_26", "symbol": "BIO_clear_retry_flags", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "SIO_sock_should_retry", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "BIO_set_retry_write", "scope": "LIBRARY"}}}}}, "sock_ctrl": {"278c6a861c80196e9970038243d8a7f3cfde2990": {"1816a18e": {"type": "FUNCTION", "size": 360, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"208": {"type": "MIPS_26", "symbol": )PS2SDB", 8192}, + std::string_view{R"PS2SDB("sock_free", "scope": "LIBRARY", "original": ".text"}, "308": {"type": "MIPS_26", "symbol": "SIO_socket_nbio", "scope": "LIBRARY"}}}}}, "sock_puts": {"ffb313ed37bcdf848d43a92900d1d8996f3dfb75": {"5bec9465": {"type": "FUNCTION", "size": 68, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "strlen"}, "40": {"type": "MIPS_26", "symbol": "sock_write", "scope": "LIBRARY", "original": ".text"}}}}}, "BUF_MEM_new": {"ed8cf0abba528ace7f795c225de6ef89041a5fc8": {"922ed48c": {"type": "FUNCTION", "size": 84, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "44": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "BUF_MEM_free": {"f85a02128fb6841b6597d94b7de6771a4203a51c": {"caf5f364": {"type": "FUNCTION", "size": 88, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "memset"}, "44": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "BUF_MEM_grow": {"1b91bc6eb4ec5c6505f7a8401084691e095d5d91": {"91255699": {"type": "FUNCTION", "size": 196, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "memset"}, "92": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "R_realloc", "scope": "LIBRARY"}, "144": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "BUF_MEM_append": {"73662d419b57ed6a423e21065cd7fd75e1779e8e": {"5e0fa9c7": {"type": "FUNCTION", "size": 132, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "BUF_MEM_grow", "scope": "LIBRARY", "original": ".text"}, "84": {"type": "MIPS_26", "symbol": "memcpy"}}}}}, "BUF_MEM_consume": {"3fb48e5bcc76097e4aa75c6691b7ac513b002bdd": {"8e341f1b": {"type": "FUNCTION", "size": 144, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "memcpy"}, "76": {"type": "MIPS_26", "symbol": "memcpy"}, "108": {"type": "MIPS_26", "symbol": "memcpy"}}}}}, "BUF_strdup": {"c447567dc1682392a37aa9bbd32fce199492c0ea": {"2b36f4c6": {"type": "FUNCTION", "size": 140, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "strlen"}, "48": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "memcpy"}}}}}, "X509_LOOKUP_hash_dir": {"2a51c093207f3b6546ea5ac91d4ae4a6999eaed5": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "dir_ctrl": {"323dc399e7801bb9ee1edd881da17392387c2a9f": {"986465a2": {"type": "FUNCTION", "size": 192, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "X509_get_default_cert_dir", "scope": "LIBRARY"}, "60": {"type": "MIPS_26", "symbol": "add_cert_dir", "scope": "LIBRARY", "original": ".text"}, "92": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "X509_get_default_cert_dir_env", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "getenv"}, "132": {"type": "MIPS_26", "symbol": "add_cert_dir", "scope": "LIBRARY", "original": ".text"}, "156": {"type": "MIPS_26", "symbol": "add_cert_dir", "scope": "LIBRARY", "original": ".text"}}}}}, "new_dir": {"7f459727657211d4d705a99e60ddfbbab656acd3": {"f3ab623e": {"type": "FUNCTION", "size": 116, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "40": {"type": "MIPS_26", "symbol": "BUF_MEM_new", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "free_dir": {"43be5fa7ce57d056238c2f12bee93ab5ef0be4a5": {"4c18da29": {"type": "FUNCTION", "size": 176, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "144": {"type": "MIPS_26", "symbol": "BUF_MEM_free", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "add_cert_dir": {"096f3d18330e94955cd26141e4eea57cfdff9248": {"bd083929": {"type": "FUNCTION", "size": 588, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "strlen"}, "188": {"type": "MIPS_26", "symbol": "strncmp"}, "236": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "252": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "292": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "320": {"type": "MIPS_26", "symbol": "memcpy"}, "344": {"type": "MIPS_26", "symbol": "memcpy"}, "364": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "384": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "420": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "476": {"type": "MIPS_26", "symbol": "strncpy"}}}}}, "get_cert_by_subject": {"c44ae76e071bf43145eeca456d3d643199d68d02": {"274d909b": {"type": "FUNCTION", "size": 612, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"132": {"type": "MIPS_26", "symbol": "BUF_MEM_new", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "200": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "260": {"type": "MIPS_26", "symbol": "X509_NAME_hash", "scope": "LIBRARY"}, "296": {"type": "MIPS_26", "symbol": "strlen"}, "308": {"type": "MIPS_26", "symbol": "BUF_MEM_grow", "scope": "LIBRARY"}, "324": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "368": {"type": "MIPS_26", "symbol": "X509_load_cert_file", "scope": "LIBRARY"}, "396": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "412": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "416": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "420": {"type": "MIPS_26", "symbol": "sprintf"}, "432": {"type": "MIPS_26", "symbol": "stat"}, "456": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "460": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "464": {"type": "MIPS_26", "symbol": "R_lock_ctrl", "scope": "LIBRARY"}, "484": {"type": "MIPS_26", "symbol": "lh_retrieve", "scope": "LIBRARY"}, "504": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "508": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "512": {"type": "MIPS_26", "symbol": "R_lock_ctrl", "scope": "LI)PS2SDB", 8192}, + std::string_view{R"PS2SDB(BRARY"}, "552": {"type": "MIPS_26", "symbol": "BUF_MEM_free", "scope": "LIBRARY"}}}}}, "X509_LOOKUP_file": {"2a51c093207f3b6546ea5ac91d4ae4a6999eaed5": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "by_file_ctrl": {"c7c9e9f2fbeac4e9d1e4f472109fed65f438e353": {"9fa09bc0": {"type": "FUNCTION", "size": 192, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "X509_get_default_cert_file", "scope": "LIBRARY"}, "60": {"type": "MIPS_26", "symbol": "X509_load_cert_file", "scope": "LIBRARY", "original": ".text"}, "92": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "X509_get_default_cert_file_env", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "getenv"}, "132": {"type": "MIPS_26", "symbol": "X509_load_cert_file", "scope": "LIBRARY", "original": ".text"}, "156": {"type": "MIPS_26", "symbol": "X509_load_cert_file", "scope": "LIBRARY", "original": ".text"}}}}}, "X509_load_cert_file": {"c93705ade633a8e0b8bb3c77aea6e50911bea8f5": {"e1e48140": {"type": "FUNCTION", "size": 468, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"72": {"type": "MIPS_26", "symbol": "BIO_s_file", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "BIO_new", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "BIO_ctrl", "scope": "LIBRARY"}, "172": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "188": {"type": "MIPS_26", "symbol": "X509_STORE_add_cert", "scope": "LIBRARY"}, "204": {"type": "MIPS_26", "symbol": "X509_free", "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "PEM_read_bio_X509", "scope": "LIBRARY"}, "240": {"type": "MIPS_26", "symbol": "ERR_peek_error", "scope": "LIBRARY"}, "276": {"type": "MIPS_26", "symbol": "ERR_clear_error", "scope": "LIBRARY"}, "304": {"type": "MIPS_26", "symbol": "d2i_X509_bio", "scope": "LIBRARY"}, "340": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "356": {"type": "MIPS_26", "symbol": "X509_STORE_add_cert", "scope": "LIBRARY"}, "384": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "400": {"type": "MIPS_26", "symbol": "X509_free", "scope": "LIBRARY"}, "416": {"type": "MIPS_26", "symbol": "BIO_free", "scope": "LIBRARY"}}}}}, "X509_load_crl_file": {"324d8ca6ac9e772d72f2dfdcd0bd39aae6f243f4": {"32d4fbe0": {"type": "FUNCTION", "size": 468, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"72": {"type": "MIPS_26", "symbol": "BIO_s_file", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "BIO_new", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "BIO_ctrl", "scope": "LIBRARY"}, "172": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "188": {"type": "MIPS_26", "symbol": "X509_STORE_add_crl", "scope": "LIBRARY"}, "204": {"type": "MIPS_26", "symbol": "X509_CRL_free", "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "PEM_read_bio_X509_CRL", "scope": "LIBRARY"}, "240": {"type": "MIPS_26", "symbol": "ERR_peek_error", "scope": "LIBRARY"}, "276": {"type": "MIPS_26", "symbol": "ERR_clear_error", "scope": "LIBRARY"}, "304": {"type": "MIPS_26", "symbol": "d2i_X509_CRL_bio", "scope": "LIBRARY"}, "340": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "356": {"type": "MIPS_26", "symbol": "X509_STORE_add_crl", "scope": "LIBRARY"}, "384": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "400": {"type": "MIPS_26", "symbol": "X509_CRL_free", "scope": "LIBRARY"}, "416": {"type": "MIPS_26", "symbol": "BIO_free", "scope": "LIBRARY"}}}}}, "sslcert_get_serialNumber_info": {"9b45bf776826ba18f3e0fb2ff738bd2f6e473b5b": {"345b563c": {"type": "FUNCTION", "size": 100, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "X509_get_serialNumber", "scope": "LIBRARY"}}}}}, "sslcert_do_application_verify_cb": {"ee37c6fd3b2879992841d12c16db22ea03d28645": {"00000000": {"type": "FUNCTION", "size": 44, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sslcert_do_verify_cb": {"1de2e2fbd6e9221ddce24d043ecdf2473fbea616": {"7453e7d4": {"type": "FUNCTION", "size": 216, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "X509_STORE_CTX_init", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "SSL_get_verify_depth", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "SSL_get_verify_depth", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "X509_STORE_CTX_set_depth", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "SSL_get_ex_data_X509_STORE_CTX_idx", "scope": "LIBRARY"}, "120": {"type": "MIPS_26", "symbol": "X509_STORE_CTX_set_ex_data", "scope": "LIBRARY"}, "152": {"type": "MIPS_26", "symbol": "X509_verify_cert", "scope": "LIBRARY"}, "176": {"type": "MIPS_26", "symbol": "X509_STORE_CTX_cleanup", "scope": "LIBRARY"}}}}}, "sslcert_get_notAfter_info": {"9b45bf776826ba18f3e0fb2ff738bd2f6e473b5b": {"d3f69e48": {"type": "FUNCTION", "size": 100, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "X509_get_notAfter", "scope": "LIBRARY"}}}}}, "sslcert_get_notBefore_info": {"9b45bf776826ba18f3e0fb2ff738bd2f6e473b5b": {"a1bd57da": {"type": "FUNCTION", "size": 100, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "X509_get_notBefore", "scope": "LIBRARY"}}}}}, "sslcert_name_get_info": {"f6ce1b641e40aaa5a71e585b56497bc9fb3bae46": {"d396c3be": {"type": "FUNCTION", "size": 124, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "i2d_X509_NAME", "scope": "LIBRARY"}}}}}, "sslcert_name_entry_get_info": {"1bbd01bffb02c4ef97e26e82d24bb5fbe3829bc4": {"00000000": {"type": "FUNCTION", "size": 100, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sslcert_store_set_verify_cb": {"cb199f7633844767a8f64eb8344e9011e0105722": {"00000000": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sslcert_do_d2i_PublicKey": {"b33e74b9f9808ba375530f6883abeb090f2146ba": {"ef5df436": {"type": "FUNCTION", "size": 144, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "d2i_X509_PUBKEY", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "X509_PUBKEY_get", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "SSLCERT_PKEY_free", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "SSLCERT_PKEY_reference_inc", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "X509_PUBKEY_free", "scope": "LIBRARY"}}}}}, "SSLCERT_normal_setup": {"e6c5d8939702a6e106852b43ad22409d566af4b1": {"d5be2996": {"type": "FUNCTION", "siz)PS2SDB", 8192}, + std::string_view{R"PS2SDB(e": 936, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sslcert_set_clear", "scope": "LIBRARY"}, "20": {"type": "MIPS_26", "symbol": "SSLCERT_set_flag", "scope": "LIBRARY"}, "32": {"type": "MIPS_26", "symbol": "SSLCERT_set_flag", "scope": "LIBRARY"}, "40": {"type": "MIPS_HI16", "symbol": "X509_new"}, "48": {"type": "MIPS_26", "symbol": "SSLCERT_set_field", "scope": "LIBRARY"}, "52": {"type": "MIPS_LO16", "symbol": "X509_new"}, "56": {"type": "MIPS_HI16", "symbol": "X509_free"}, "64": {"type": "MIPS_26", "symbol": "SSLCERT_set_field", "scope": "LIBRARY"}, "68": {"type": "MIPS_LO16", "symbol": "X509_free"}, "72": {"type": "MIPS_HI16", "symbol": "X509_verify"}, "80": {"type": "MIPS_26", "symbol": "SSLCERT_set_field", "scope": "LIBRARY"}, "84": {"type": "MIPS_LO16", "symbol": "X509_verify"}, "88": {"type": "MIPS_HI16", "symbol": "X509_digest"}, "96": {"type": "MIPS_26", "symbol": "SSLCERT_set_field", "scope": "LIBRARY"}, "100": {"type": "MIPS_LO16", "symbol": "X509_digest"}, "104": {"type": "MIPS_HI16", "symbol": "i2d_X509"}, "112": {"type": "MIPS_26", "symbol": "SSLCERT_set_field", "scope": "LIBRARY"}, "116": {"type": "MIPS_LO16", "symbol": "i2d_X509"}, "120": {"type": "MIPS_HI16", "symbol": "d2i_X509"}, "128": {"type": "MIPS_26", "symbol": "SSLCERT_set_field", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "d2i_X509"}, "136": {"type": "MIPS_HI16", "symbol": "X509_reference_inc"}, "144": {"type": "MIPS_26", "symbol": "SSLCERT_set_field", "scope": "LIBRARY"}, "148": {"type": "MIPS_LO16", "symbol": "X509_reference_inc"}, "152": {"type": "MIPS_HI16", "symbol": "X509_get_signature_type"}, "160": {"type": "MIPS_26", "symbol": "SSLCERT_set_field", "scope": "LIBRARY"}, "164": {"type": "MIPS_LO16", "symbol": "X509_get_signature_type"}, "168": {"type": "MIPS_HI16", "symbol": "X509_subject_name_cmp"}, "176": {"type": "MIPS_26", "symbol": "SSLCERT_set_field", "scope": "LIBRARY"}, "180": {"type": "MIPS_LO16", "symbol": "X509_subject_name_cmp"}, "184": {"type": "MIPS_HI16", "symbol": "X509_get_issuer_name"}, "192": {"type": "MIPS_26", "symbol": "SSLCERT_set_field", "scope": "LIBRARY"}, "196": {"type": "MIPS_LO16", "symbol": "X509_get_issuer_name"}, "200": {"type": "MIPS_HI16", "symbol": "X509_get_subject_name"}, "208": {"type": "MIPS_26", "symbol": "SSLCERT_set_field", "scope": "LIBRARY"}, "212": {"type": "MIPS_LO16", "symbol": "X509_get_subject_name"}, "216": {"type": "MIPS_HI16", "symbol": "X509_get_pubkey"}, "224": {"type": "MIPS_26", "symbol": "SSLCERT_set_field", "scope": "LIBRARY"}, "228": {"type": "MIPS_LO16", "symbol": "X509_get_pubkey"}, "232": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "240": {"type": "MIPS_26", "symbol": "SSLCERT_set_field", "scope": "LIBRARY"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "248": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "256": {"type": "MIPS_26", "symbol": "SSLCERT_set_field", "scope": "LIBRARY"}, "260": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "264": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "272": {"type": "MIPS_26", "symbol": "SSLCERT_set_field", "scope": "LIBRARY"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "280": {"type": "MIPS_HI16", "symbol": "X509_NAME_new"}, "288": {"type": "MIPS_26", "symbol": "SSLCERT_set_field", "scope": "LIBRARY"}, "292": {"type": "MIPS_LO16", "symbol": "X509_NAME_new"}, "296": {"type": "MIPS_HI16", "symbol": "X509_NAME_free"}, "304": {"type": "MIPS_26", "symbol": "SSLCERT_set_field", "scope": "LIBRARY"}, "308": {"type": "MIPS_LO16", "symbol": "X509_NAME_free"}, "312": {"type": "MIPS_HI16", "symbol": "X509_NAME_dup"}, "320": {"type": "MIPS_26", "symbol": "SSLCERT_set_field", "scope": "LIBRARY"}, "324": {"type": "MIPS_LO16", "symbol": "X509_NAME_dup"}, "328": {"type": "MIPS_HI16", "symbol": "X509_NAME_hash"}, "336": {"type": "MIPS_26", "symbol": "SSLCERT_set_field", "scope": "LIBRARY"}, "340": {"type": "MIPS_LO16", "symbol": "X509_NAME_hash"}, "344": {"type": "MIPS_HI16", "symbol": "X509_NAME_cmp"}, "352": {"type": "MIPS_26", "symbol": "SSLCERT_set_field", "scope": "LIBRARY"}, "356": {"type": "MIPS_LO16", "symbol": "X509_NAME_cmp"}, "360": {"type": "MIPS_HI16", "symbol": "d2i_X509_NAME"}, "368": {"type": "MIPS_26", "symbol": "SSLCERT_set_field", "scope": "LIBRARY"}, "372": {"type": "MIPS_LO16", "symbol": "d2i_X509_NAME"}, "376": {"type": "MIPS_HI16", "symbol": "i2d_X509_NAME"}, "384": {"type": "MIPS_26", "symbol": "SSLCERT_set_field", "scope": "LIBRARY"}, "388": {"type": "MIPS_LO16", "symbol": "i2d_X509_NAME"}, "392": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "400": {"type": "MIPS_26", "symbol": "SSLCERT_set_field", "scope": "LIBRARY"}, "404": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "408": {"type": "MIPS_HI16", "symbol": "X509_NAME_get_entry_count"}, "416": {"type": "MIPS_26", "symbol": "SSLCERT_set_field", "scope": "LIBRARY"}, "420": {"type": "MIPS_LO16", "symbol": "X509_NAME_get_entry_count"}, "424": {"type": "MIPS_HI16", "symbol": "X509_NAME_get_entry"}, "432": {"type": "MIPS_26", "symbol": "SSLCERT_set_field", "scope": "LIBRARY"}, "436": {"type": "MIPS_LO16", "symbol": "X509_NAME_get_entry"}, "440": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "448": {"type": "MIPS_26", "symbol": "SSLCERT_set_field", "scope": "LIBRARY"}, "452": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "456": {"type": "MIPS_HI16", "symbol": "X509_STORE_get_by_subject"}, "464": {"type": "MIPS_26", "symbol": "SSLCERT_set_field", "scope": "LIBRARY"}, "468": {"type": "MIPS_LO16", "symbol": "X509_STORE_get_by_subject"}, "472": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "480": {"type": "MIPS_26", "symbol": "SSLCERT_set_field", "scope": "LIBRARY"}, "484": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "488": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "496": {"type": "MIPS_26", "symbol": "SSLCERT_set_field", "scope": "LIBRARY"}, "500": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "504": {"type": "MIPS_HI16", "symbol": "X509_check_private_key"}, "512": {"type": "MIPS_26", "symbol": "SSLCERT_set_field", "scope": "LIBRARY"}, "516": {"type": "MIPS_LO16", "symbol": "X509_check_private_key"}, "520": {"type": "MIPS_HI16", "symbol": "PEM_read_bio_X509"}, "528": {"type": "MIPS_26", "symbol": "SSLCERT_set_field", "scope": "LIBRARY"}, "532": {"type": "MIPS_LO16", "symbol": "PEM_read_bio_X509"}, "536": {"type": "MIPS_HI16", "symbol": "d2i_X509_bio"}, "544": {"type": "MIPS_26", "symbol": "SSLCERT_set_field", "scope": "LIBRARY"}, "548": {"type": "MIPS_LO16", "symbol": "d2i_X509_bio"}, "552": {"type": "MIPS_HI16", "symbol": "X509_STORE_new"}, "560": {"type": "MIPS_26", "symbol": "SSLCERT_set_field", "scope": "LIBRARY"}, "564": {"type": "MIPS_LO16", "symbol": "X509_STORE_new"}, "568": {"type": "MIPS_HI16", "symbol": "X509_STORE_free"}, "576": {"type": "MIPS_26", "symbol": "SSLCERT_set_field", "scope": "LIBRARY"}, "580": {"type": "MIPS_LO16", "symbol": "X509_STORE_free"}, "584": {"type": "MIPS_HI16", "symbol": "X509_STORE_load_locations"}, "592": {"type": "MIPS_26", "symbol": "SSLCERT_set_field", "scope": "LIBRARY"}, "596": {"type": "MIPS_LO16", "symbol": "X509_STORE_load_locations"}, "600": {"type": "MIPS_HI16", "symbol": "X509_STORE_set_default_paths"}, "608": {"type": "MIPS_26", "symbol": "SSLCERT_set_field", "scope": "LIBRARY"}, "612": {"type": "MIPS_LO16", "symbol": "X509_STORE_set_default_paths"}, "616": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "624": {"type": "MIPS_26", "symbol": "SSLCERT_set_field", "scope": "LIBRARY"}, "628": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "632": {"type": "MIPS_HI16", "symbol": "X509_STORE_CTX_new"}, "640": {"type": "MIPS_26", "symbol": "SSLCERT_set_field", "scope": "LIBRARY"}, "644": {"type": "MIPS_LO16", "symbol": "X509_STORE_CTX_new"}, "648": {"type": "MIPS_HI16", "symbol": "X509_STORE_CTX_i)PS2SDB", 8192}, + std::string_view{R"PS2SDB(nit"}, "656": {"type": "MIPS_26", "symbol": "SSLCERT_set_field", "scope": "LIBRARY"}, "660": {"type": "MIPS_LO16", "symbol": "X509_STORE_CTX_init"}, "664": {"type": "MIPS_HI16", "symbol": "X509_STORE_CTX_free"}, "672": {"type": "MIPS_26", "symbol": "SSLCERT_set_field", "scope": "LIBRARY"}, "676": {"type": "MIPS_LO16", "symbol": "X509_STORE_CTX_free"}, "680": {"type": "MIPS_HI16", "symbol": "X509_STORE_CTX_cleanup"}, "688": {"type": "MIPS_26", "symbol": "SSLCERT_set_field", "scope": "LIBRARY"}, "692": {"type": "MIPS_LO16", "symbol": "X509_STORE_CTX_cleanup"}, "696": {"type": "MIPS_HI16", "symbol": "X509_STORE_CTX_get_ex_new_index"}, "704": {"type": "MIPS_26", "symbol": "SSLCERT_set_field", "scope": "LIBRARY"}, "708": {"type": "MIPS_LO16", "symbol": "X509_STORE_CTX_get_ex_new_index"}, "712": {"type": "MIPS_HI16", "symbol": "X509_STORE_CTX_cleanup_ex_data"}, "720": {"type": "MIPS_26", "symbol": "SSLCERT_set_field", "scope": "LIBRARY"}, "724": {"type": "MIPS_LO16", "symbol": "X509_STORE_CTX_cleanup_ex_data"}, "728": {"type": "MIPS_HI16", "symbol": "X509_STORE_CTX_set_ex_data"}, "736": {"type": "MIPS_26", "symbol": "SSLCERT_set_field", "scope": "LIBRARY"}, "740": {"type": "MIPS_LO16", "symbol": "X509_STORE_CTX_set_ex_data"}, "744": {"type": "MIPS_HI16", "symbol": "X509_STORE_CTX_get_ex_data"}, "752": {"type": "MIPS_26", "symbol": "SSLCERT_set_field", "scope": "LIBRARY"}, "756": {"type": "MIPS_LO16", "symbol": "X509_STORE_CTX_get_ex_data"}, "760": {"type": "MIPS_HI16", "symbol": "X509_STORE_CTX_get_error"}, "768": {"type": "MIPS_26", "symbol": "SSLCERT_set_field", "scope": "LIBRARY"}, "772": {"type": "MIPS_LO16", "symbol": "X509_STORE_CTX_get_error"}, "776": {"type": "MIPS_HI16", "symbol": "X509_STORE_CTX_set_error"}, "784": {"type": "MIPS_26", "symbol": "SSLCERT_set_field", "scope": "LIBRARY"}, "788": {"type": "MIPS_LO16", "symbol": "X509_STORE_CTX_set_error"}, "792": {"type": "MIPS_HI16", "symbol": "X509_STORE_CTX_get_error_depth"}, "800": {"type": "MIPS_26", "symbol": "SSLCERT_set_field", "scope": "LIBRARY"}, "804": {"type": "MIPS_LO16", "symbol": "X509_STORE_CTX_get_error_depth"}, "808": {"type": "MIPS_HI16", "symbol": "X509_STORE_CTX_get_current_cert"}, "816": {"type": "MIPS_26", "symbol": "SSLCERT_set_field", "scope": "LIBRARY"}, "820": {"type": "MIPS_LO16", "symbol": "X509_STORE_CTX_get_current_cert"}, "824": {"type": "MIPS_HI16", "symbol": "d2i_PrivateKey"}, "832": {"type": "MIPS_26", "symbol": "SSLCERT_set_field", "scope": "LIBRARY"}, "836": {"type": "MIPS_LO16", "symbol": "d2i_PrivateKey"}, "840": {"type": "MIPS_HI16", "symbol": "SSL_EVP_PKEY_new"}, "848": {"type": "MIPS_26", "symbol": "SSLCERT_set_field", "scope": "LIBRARY"}, "852": {"type": "MIPS_LO16", "symbol": "SSL_EVP_PKEY_new"}, "856": {"type": "MIPS_HI16", "symbol": "SSL_EVP_PKEY_free"}, "864": {"type": "MIPS_26", "symbol": "SSLCERT_set_field", "scope": "LIBRARY"}, "868": {"type": "MIPS_LO16", "symbol": "SSL_EVP_PKEY_free"}, "872": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "880": {"type": "MIPS_26", "symbol": "SSLCERT_set_field", "scope": "LIBRARY"}, "884": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "888": {"type": "MIPS_HI16", "symbol": "SSL_EVP_PKEY_reference_inc"}, "896": {"type": "MIPS_26", "symbol": "SSLCERT_set_field", "scope": "LIBRARY"}, "900": {"type": "MIPS_LO16", "symbol": "SSL_EVP_PKEY_reference_inc"}, "904": {"type": "MIPS_HI16", "symbol": "X509_get_version"}, "912": {"type": "MIPS_26", "symbol": "SSLCERT_set_field", "scope": "LIBRARY"}, "916": {"type": "MIPS_LO16", "symbol": "X509_get_version"}}}}}, "sslcert_set_clear": {"91c26d27c9c32497aac52947d77994ad1b37d199": {"38e18fb5": {"type": "FUNCTION", "size": 20, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_26", "symbol": "memset"}}}}}, "SSLCERT_set_flag": {"2e9fcbb3bc5c68f0bca63dec30e70a8bc1dfede4": {"0e7ba8b4": {"type": "FUNCTION", "size": 48, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "SSLCERT_set_field": {"4c7811000f7f21f97e04557947f12d8ed3dbeb42": {"3cc7a828": {"type": "FUNCTION", "size": 716, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "200": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "212": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "248": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "260": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "272": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "284": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "292": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "296": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "308": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "316": {"type": "MIPS_LO16", "symbol": "", ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(original": ".bss"}, "320": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "328": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "332": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "340": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "344": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "352": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "356": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "364": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "368": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "376": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "380": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "388": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "392": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "400": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "404": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "412": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "416": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "424": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "428": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "436": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "440": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "448": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "452": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "460": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "464": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "472": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "476": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "484": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "488": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "496": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "500": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "508": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "512": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "520": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "524": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "532": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "536": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "544": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "548": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "556": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "560": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "568": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "572": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "580": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "584": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "592": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "596": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "604": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "608": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "616": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "620": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "628": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "632": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "640": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "644": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "652": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "656": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "664": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "668": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "676": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "680": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "688": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "692": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "700": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "SSLCERT_get_flag": {"469d8a096e57e813d7a2903f5ac45abfffe4e393": {"61722fdf": {"type": "FUNCTION", "size": 60, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "SSLCERT_new": {"c9dd1d16cb74a41f9463323ba83c32d0b64a2988": {"a104b4f3": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "SSLCERT_free": {"a7c92d1f3468aefd1f81ed0eec6e862a844aeb5c": {"a8a5a976": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "SSLCERT_verify": {"57ab4365e2cd4d45aad70db39487908feff5d0ec": {"a104b4f3": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "SSLCERT_digest": {"84135a9d244ea2cdfa8d7336744b1b99b561b977": {"a104b4f3": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "SSLCERT_to_binary": {"93753bb3ea0bc956b24e2043e0395e5da8f058a5": {"a104b4f3": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "SSLCERT_from_binary": {"70f52a99a8663cbe1cb15463df9801db0d9d55dc": {"a104b4f3": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "SSLCERT_reference_inc": {"fe69dc169b01de6139d94069b5fb9a8b6b9ada8c": {"a8a5a976": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], )PS2SDB", 8192}, + std::string_view{R"PS2SDB("relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "SSLCERT_get_signature_type": {"be8cf9729c3dbe5b6be129e928eae8750aba821f": {"a104b4f3": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "SSLCERT_subject_name_cmp": {"66705356a255417291319bedf6f6e9eb3e4e477b": {"a104b4f3": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "SSLCERT_get_issuer_name": {"2b7a110b67f751b644bedbff2b1782341b7be289": {"a104b4f3": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "SSLCERT_get_subject_name": {"ee5925920b99259b567b2d1e4e1df19d9776f530": {"a104b4f3": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "SSLCERT_get_pubkey": {"57d5aef1bb22112d89c274ceb3ce6e6bd119c4d2": {"a104b4f3": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "SSLCERT_get_serialNumber_info": {"e6fca54043fc9f1a1f55470eb5c9bba566cd275d": {"a9386185": {"type": "FUNCTION", "size": 144, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "SSLCERT_get_notAfter": {"eac369140682a55819c1eec93791a90c02e8caa3": {"a9386185": {"type": "FUNCTION", "size": 152, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "SSLCERT_get_notBefore": {"f52cf4cdc6179daa27f0e80ba8e7fef636d7cb4f": {"a9386185": {"type": "FUNCTION", "size": 152, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "SSLCERT_NAME_new": {"31d4b06554cdeef5e0a155cd5eb1398df8a62743": {"a104b4f3": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "SSLCERT_NAME_free": {"1573381859a510c2eda980a11e6fc85a6be7e488": {"a8a5a976": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "SSLCERT_NAME_dup": {"5c1aa9e14a0414a954de540e5f3c3cee1621fedc": {"a104b4f3": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "SSLCERT_NAME_hash": {"cfef84f6c5f5af23b11a941840196d24eca58cf4": {"a104b4f3": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "SSLCERT_NAME_cmp": {"0ba586e7e0cc5cfa46a47bd09ef035855ff190f6": {"a104b4f3": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "SSLCERT_NAME_from_binary": {"dd28c632beeb8bff685547da600e437e81eb9141": {"a104b4f3": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "SSLCERT_NAME_to_binary": {"8a82dbe87298caf9ba3cb07bb6f41bde193632de": {"a104b4f3": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "SSLCERT_NAME_get_info": {"0672560823cb621194ac0bce68619a6b496ee332": {"d7a63a88": {"type": "FUNCTION", "size": 132, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "SSLCERT_NAME_get_entry_count": {"28e15b0126de7afaed236983e8099afed53906bf": {"a104b4f3": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "GLOBAL",)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "SSLCERT_NAME_get_entry": {"de8992c24c7d1e8193f363c038d651581a082ad1": {"a104b4f3": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "SSLCERT_NAME_ENTRY_get_info": {"e2036a95089c70cd337d163b25c4272988e66a8f": {"bba6bcd5": {"type": "FUNCTION", "size": 240, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "SSLCERT_NAME_ENTRY_get_oid_info": {"3a22f8bb1635e1cc20df387ff9abbb5257020b83": {"198083eb": {"type": "FUNCTION", "size": 36, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "SSLCERT_NAME_ENTRY_get_info", "scope": "LIBRARY", "original": ".text"}}}}}, "SSLCERT_NAME_ENTRY_get_data_info": {"ae86a223db965d3fec9abe3734d93f5f14b6b72d": {"aeaf41fe": {"type": "FUNCTION", "size": 48, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "SSLCERT_NAME_ENTRY_get_info", "scope": "LIBRARY", "original": ".text"}}}}}, "SSLCERT_STORE_new": {"e7269f047757e5826899a62eb33e8b01d01ae812": {"a104b4f3": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "SSLCERT_STORE_free": {"6d2d3e4804837ff61ae4c51b6fd95cd9d4061d63": {"a8a5a976": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "SSLCERT_STORE_load_locations": {"2b2ee76a830af238d8f510d4698c9f72aca76cb8": {"a104b4f3": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "SSLCERT_STORE_set_default_paths": {"9ef6fc1024246a43aba0b8616a9fb3d048e08649": {"a104b4f3": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "SSLCERT_STORE_set_verify_cb": {"29d692a9121b0036883a90b964ad5d20c96d2f4e": {"d3e72eac": {"type": "FUNCTION", "size": 48, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "SSLCERT_STORE_get_by_subject": {"7b0c38eeb53709add47caa497656d7fe0213e35f": {"a104b4f3": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "SSLCERT_STORE_CTX_new": {"639e0e3bf0e5b3d271beea1488060018f027d8d3": {"a104b4f3": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "SSLCERT_STORE_CTX_init": {"bc605e0fa68a190408881a70e18fff41a3a42723": {"a8a5a976": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "SSLCERT_STORE_CTX_free": {"d8b67f161672ba1aa6ef0b56b64764776bafed11": {"a8a5a976": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "SSLCERT_STORE_CTX_cleanup": {"54c6999880f3fe2eb2dd6311bebaf0f967ec3e0f": {"a8a5a976": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "SSLCERT_STORE_CTX_get_ex_new_index": {"815148ccd202c3f68bc90ac996f673f5d9b2ce37": {"a104b4f3": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "SSLCERT_STORE_CTX_cleanup_ex_data": {"4dfe50944035a348a1de30ac6ef06d2f3be105e7": {"a104b4f3": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "SSLCERT_STORE_CTX_set_ex_data": {"a0d79a90ada63a9253ba339eb1fa3236bcffaef3": {"a104b4f3": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01")PS2SDB", 8192}, + std::string_view{R"PS2SDB(], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "SSLCERT_STORE_CTX_get_ex_data": {"212f460880af3f14801b4052fedcadcaddf0e33c": {"a104b4f3": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "SSLCERT_STORE_CTX_get_error": {"d361a3ceb0da012c6bcb4f9ff0550fdd95b103f9": {"a104b4f3": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "SSLCERT_STORE_CTX_set_error": {"c0d87974542cd4e97690eaaeedb08b0e4948f8ad": {"a8a5a976": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "SSLCERT_STORE_CTX_get_error_depth": {"38983db2cf758f5891fa1760823e35284d171113": {"a104b4f3": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "SSLCERT_STORE_CTX_get_current_cert": {"bf338c13b15fb4eef12df16619d9818de878bccf": {"a104b4f3": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "SSLCERT_do_application_cb": {"f70d985ebd9e762425f5ab5c2f70b0a4a0319dea": {"a104b4f3": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "SSLCERT_do_verify_cb": {"f933d685a3c79306e6b674316188f375d9f5e9e5": {"a104b4f3": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "SSLCERT_check_private_key": {"161e317b502c0b3105f44844431925bffc1b4502": {"a104b4f3": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "SSLCERT_PEM_read_bio_SSLCERT": {"53a879f5397aae1c49086ad2bbec93a312642dc3": {"a104b4f3": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "SSLCERT_from_binary_bio": {"eb9b0360e44ad9cd0a624c2948b523779cb76179": {"a104b4f3": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "SSLCERT_PKEY_new": {"1801f7a585a1e1e5f4822f44d362fd40984393aa": {"a104b4f3": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "SSLCERT_PKEY_free": {"bcb8d431219b11132d122c035b9be851c9827084": {"a8a5a976": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "SSLCERT_PKEY_from_binary": {"857505347f2326527ce5ec13cdfd186b06b5b1f9": {"a104b4f3": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "SSLCERT_PKEY_from_PUBKEY_binary": {"9ebeccb23ec704f4f3c5a99c380ec404bea35a55": {"a104b4f3": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "SSLCERT_PKEY_reference_inc": {"fe69dc169b01de6139d94069b5fb9a8b6b9ada8c": {"a8a5a976": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "SSLCERT_get_version": {"69e254edd1b1e326b97804f7ad5847be2f2e5cd7": {"a104b4f3": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "36": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "SSLCERT_OID_to_string": {"5dc31f6458bb5270bb55712e451189590e8868e1": {"7ef9c5ae": {"type": "FUNCTI)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ON", "size": 460, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "208": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "232": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "260": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "264": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "288": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "292": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "300": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "316": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "320": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "328": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "336": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "344": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "348": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "356": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "364": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "372": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "376": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "384": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "392": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "400": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "404": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "412": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "420": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "428": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "432": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "440": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "448": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "crypto_sslc_digest_init": {"202275f7d9e0c49c60e460dcbbd0d967db75f0f1": {"6421fbe4": {"type": "FUNCTION", "size": 164, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "EVP_DigestInit", "scope": "LIBRARY"}, "120": {"type": "MIPS_26", "symbol": "HMAC_Init", "scope": "LIBRARY"}}}}}, "crypto_sslc_digest_update": {"268d78fb323fe8a5e9cef6494eb85cb98bdcc397": {"361a1b03": {"type": "FUNCTION", "size": 64, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "HMAC_Update", "scope": "LIBRARY"}, "40": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}}}}}, "crypto_sslc_digest_final": {"20250bc4f26ed7dda54fd3e3a7dbecdbd16e6246": {"45860d3b": {"type": "FUNCTION", "size": 80, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "HMAC_Final", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "EVP_DigestFinal", "scope": "LIBRARY"}}}}}, "crypto_sslc_dh_key_exch_init": {"ff9b9b657560b0f6fc426f7a90deb976256b013a": {"53361db0": {"type": "FUNCTION", "size": 164, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_26", "symbol": "R_rand_get_default", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "R_EITEMS_add", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "PK_METH_dh", "scope": "LIBRARY"}, "128": {"type": "MIPS_26", "symbol": "PK_CTX_set", "scope": "LIBRARY"}}}}}, "crypto_sslc_dh_key_exch_phase_1": {"6a17dd418bace158fbbd511e22d273f97a525b16": {"1bafe962": {"type": "FUNCTION", "size": 292, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "PK_phase1", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "PK_get_info", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "PK_get_pubkey", "scope": "LIBRARY"}}}}}, "crypto_sslc_dh_key_exch_phase_2": {"23ebb96410e39b28252b76d51b0384eea9603878": {"b63307e9": {"type": "FUNCTION", "size": 316, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"72": {"type": "MIPS_26", "symbol": "PK_get_info", "scope": "LIBRARY"}, "128": {"type": "MIPS_26", "symbol": "PK_phase2", "scope": "LIBRARY"}}}}}, "crypto_sslc_ecdh_key_exch_init": {"0a5385cf4a659d302a43046ea0269e2b17a3ef1d": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "crypto_sslc_ecdh_key_exch_phase_1": {"31b107d35ced7df0eedd7b0e7f2078a1d2fdb29b": {"665d6f8a": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "memset"}}}}}, "crypto_sslc_ecdh_key_exch_phase_2": {"a86369423a35134507a0420f97c6b173f5a1b6d0": {"665d6f8a": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "memset"}}}}}, "crypto_sslc_encrypt_init": {"aa1f666926bd463a36aa0ca2e2ca09398b979013": {"7d15f8e6": {"type": "FUNCTION", "size": 96, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_26", "symbol": "EVP)PS2SDB", 8192}, + std::string_view{R"PS2SDB(_EncryptInit", "scope": "LIBRARY"}}}}}, "crypto_sslc_encrypt": {"340b8e1b3dbcfbfd9eb22d5ec600a2a89f056372": {"c87c2f66": {"type": "FUNCTION", "size": 56, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "EVP_EncryptUpdate", "scope": "LIBRARY"}}}}}, "crypto_sslc_decrypt_init": {"aa1f666926bd463a36aa0ca2e2ca09398b979013": {"447bdcd1": {"type": "FUNCTION", "size": 96, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_26", "symbol": "EVP_DecryptInit", "scope": "LIBRARY"}}}}}, "crypto_sslc_decrypt": {"340b8e1b3dbcfbfd9eb22d5ec600a2a89f056372": {"c87c2f66": {"type": "FUNCTION", "size": 56, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "EVP_EncryptUpdate", "scope": "LIBRARY"}}}}}, "crypto_sslc_null_cipher_encrypt_init": {"0a5385cf4a659d302a43046ea0269e2b17a3ef1d": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "crypto_sslc_null_cipher_encrypt": {"4cff1cf6f5f36f239cde20a5a0768498782472aa": {"337f5653": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "memcpy"}}}}}, "crypto_sslc_null_cipher_decrypt_init": {"0a5385cf4a659d302a43046ea0269e2b17a3ef1d": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "crypto_sslc_null_cipher_decrypt": {"4cff1cf6f5f36f239cde20a5a0768498782472aa": {"337f5653": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "memcpy"}}}}}, "crypto_sslc_null_key_exch_init": {"0a5385cf4a659d302a43046ea0269e2b17a3ef1d": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "crypto_sslc_null_key_exch_phase_1": {"31b107d35ced7df0eedd7b0e7f2078a1d2fdb29b": {"665d6f8a": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "memset"}}}}}, "crypto_sslc_null_key_exch_phase_2": {"a86369423a35134507a0420f97c6b173f5a1b6d0": {"665d6f8a": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "memset"}}}}}, "crypto_sslc_random_seed": {"2b85c9a73b8dfeaf0cedf476939a25221ae2a6a7": {"9eaeb4ec": {"type": "FUNCTION", "size": 56, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "R_rand_get_default", "scope": "LIBRARY"}, "28": {"type": "MIPS_26", "symbol": "R_rand_seed", "scope": "LIBRARY"}}}}}, "crypto_sslc_random_gen_rand": {"8922a92bf12419c1d8120cdd4b3649eaac16bfe2": {"914fecb9": {"type": "FUNCTION", "size": 84, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "R_rand_get_default", "scope": "LIBRARY"}, "44": {"type": "MIPS_26", "symbol": "R_rand_bytes", "scope": "LIBRARY"}}}}}, "crypto_sslc_rsa_public_encrypt_init": {"8f6d8ab63ef0093b7f79691bd2db9e23c48960bf": {"88311877": {"type": "FUNCTION", "size": 224, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "R_rand_get_default", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "R_EITEMS_add", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "R_EITEMS_find_item", "scope": "LIBRARY"}, "164": {"type": "MIPS_26", "symbol": "PK_METH_rsa_pkcs1", "scope": "LIBRARY"}, "188": {"type": "MIPS_26", "symbol": "PK_CTX_set", "scope": "LIBRARY"}}}}}, "crypto_sslc_rsa_public_encrypt": {"0dbcd4ea82e86c400fd44f89dc2cfc4ba2c36d3f": {"44866660": {"type": "FUNCTION", "size": 60, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "PK_pub_enc", "scope": "LIBRARY"}}}}}, "crypto_sslc_rsa_public_decrypt_init": {"8f6d8ab63ef0093b7f79691bd2db9e23c48960bf": {"88311877": {"type": "FUNCTION", "size": 224, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "R_rand_get_default", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "R_EITEMS_add", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "R_EITEMS_find_item", "scope": "LIBRARY"}, "164": {"type": "MIPS_26", "symbol": "PK_METH_rsa_pkcs1", "scope": "LIBRARY"}, "188": {"type": "MIPS_26", "symbol": "PK_CTX_set", "scope": "LIBRARY"}}}}}, "crypto_sslc_rsa_public_decrypt": {"0dbcd4ea82e86c400fd44f89dc2cfc4ba2c36d3f": {"a6b0d59c": {"type": "FUNCTION", "size": 60, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "PK_pub_dec", "scope": "LIBRARY"}}}}}, "crypto_sslc_rsa_private_encrypt_init": {"8f6d8ab63ef0093b7f79691bd2db9e23c48960bf": {"88311877": {"type": "FUNCTION", "size": 224, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "R_rand_get_default", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "R_EITEMS_add", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "R_EITEMS_find_item", "scope": "LIBRARY"}, "164": {"type": "MIPS_26", "symbol": "PK_METH_rsa_pkcs1", "scope": "LIBRARY"}, "188": {"type": "MIPS_26", "symbol": "PK_CTX_set", "scope": "LIBRARY"}}}}}, "crypto_sslc_rsa_private_encrypt": {"0dbcd4ea82e86c400fd44f89dc2cfc4ba2c36d3f": {"0e933200": {"type": "FUNCTION", "size": 60, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "PK_priv_enc", "scope": "LIBRARY"}}}}}, "crypto_sslc_rsa_private_decrypt_init": {"8f6d8ab63ef0093b7f79691bd2db9e23c48960bf": {"88311877": {"type": "FUNCTION", "size": 224, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "R_rand_get_default", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "R_EITEMS_add", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "R_EITEMS_find_item", "scope": "LIBRARY"}, "164": {"type": "MIPS_26", "symbol": "PK_METH_rsa_pkcs1", "scope": "LIBRARY"}, "188": {"type": "MIPS_26", "symbol": "PK_CTX_set", "scope": "LIBRARY"}}}}}, "crypto_sslc_rsa_private_decrypt": {"0dbcd4ea82e86c400fd44f89dc2cfc4ba2c36d3f": {"eca581fc": {"type": "FUNCTION", "size": 60, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "comp)PS2SDB", 8192}, + std::string_view{R"PS2SDB(iler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "PK_priv_dec", "scope": "LIBRARY"}}}}}, "crypto_sslc_3des_ctx_init": {"79e6fa59b7fe57c00b67707e1675ffdd11f8ea09": {"94a10814": {"type": "FUNCTION", "size": 88, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "crypto_sslc_cipher_ctx_init", "scope": "LIBRARY"}}}}}, "crypto_sslc_cipher_ctx_init": {"39c660afd44b71c813bd7527f6e0553cf393a2c4": {"53ab8da4": {"type": "FUNCTION", "size": 136, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "EVP_CIPHER_CTX_free", "scope": "LIBRARY"}, "40": {"type": "MIPS_26", "symbol": "EVP_CIPHER_CTX_new", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "EVP_CIPHER_CTX_init", "scope": "LIBRARY"}}}}}, "crypto_sslc_cipher_ctx_final": {"39d2653b77a6918e655f476ff3e1592116896635": {"6b0610e5": {"type": "FUNCTION", "size": 60, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "EVP_CIPHER_CTX_free", "scope": "LIBRARY"}}}}}, "crypto_sslc_cipher_get_info": {"2289ea0d4c97125130db03ffd3acf004d125c2da": {"00000000": {"type": "FUNCTION", "size": 164, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "crypto_sslc_cipher_set_info": {"34305e03679535257b04f88004b270c87605616a": {"00000000": {"type": "FUNCTION", "size": 164, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "crypto_sslc_des_ctx_init": {"d84a9f6d7a86746ed9008a90f9eeedfdbe72c8f1": {"94a10814": {"type": "FUNCTION", "size": 84, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "crypto_sslc_cipher_ctx_init", "scope": "LIBRARY"}}}}}, "crypto_sslc_digest_ctx_init": {"133861cc2b3b76223dc6ded86b8c870903b0f7e3": {"c1ac9cfb": {"type": "FUNCTION", "size": 116, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "HMAC_free", "scope": "LIBRARY"}, "40": {"type": "MIPS_26", "symbol": "HMAC_new", "scope": "LIBRARY"}}}}}, "crypto_sslc_digest_ctx_final": {"29e2004ce039a5037921dad721af7487592b5633": {"4a0db49e": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "HMAC_free", "scope": "LIBRARY"}}}}}, "crypto_sslc_digest_get_info": {"5eeec9d4424bf6dd0fefe9c9a186bbbe86d96afe": {"00000000": {"type": "FUNCTION", "size": 64, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "crypto_sslc_digest_set_info": {"f42738c52a5838faf5ce7c5d8bbf2af99dac3911": {"00000000": {"type": "FUNCTION", "size": 64, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "crypto_sslc_dh_ctx_init": {"cc2522683492f63de559911015e9fe3a9c475879": {"cc197ab6": {"type": "FUNCTION", "size": 52, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "PK_CTX_new", "scope": "LIBRARY"}}}}}, "crypto_sslc_dh_ctx_final": {"fc38710eb10ba2ccdd2c63bedbceb1858192fe99": {"987c4eb3": {"type": "FUNCTION", "size": 44, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "PK_CTX_free", "scope": "LIBRARY"}}}}}, "crypto_sslc_dh_get_info": {"efa738c7d672103a42e534322f5346c66fd69410": {"fb8df6b5": {"type": "FUNCTION", "size": 60, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "PK_get_info", "scope": "LIBRARY"}}}}}, "crypto_sslc_dh_set_info": {"a2ecbecab9d5f445ee6bc1e6e008bde5dfe45918": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "crypto_sslc_ecdh_ctx_init": {"0a5385cf4a659d302a43046ea0269e2b17a3ef1d": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "crypto_sslc_ecdh_ctx_final": {"0a5385cf4a659d302a43046ea0269e2b17a3ef1d": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "crypto_sslc_ecdh_get_info": {"69c675f545dead4fb8469b1ed86f331e1c4a3af6": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "crypto_sslc_ecdh_set_info": {"69c675f545dead4fb8469b1ed86f331e1c4a3af6": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "crypto_sslc_null_cipher_ctx_init": {"0a5385cf4a659d302a43046ea0269e2b17a3ef1d": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "crypto_sslc_null_cipher_ctx_final": {"0a5385cf4a659d302a43046ea0269e2b17a3ef1d": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "crypto_sslc_null_cipher_get_info": {"6dcd48f0c7a8679e1ea8869269eb1655ac017538": {"00000000": {"type": "FUNCTION", "size": 60, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "crypto_sslc_null_cipher_set_info": {"43f7d0124d13090858ddfd74e96590b8ceafe6bb": {"00000000": {"type": "FUNCTION", "size": 56, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "crypto_sslc_null_key_exch_ctx_init": {"0a5385cf4a659d302a43046ea0269e2b17a3ef1d": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "crypto_sslc_null_key_exch_ctx_final": {"0a5385cf4a659d302a43046ea0269e2b17a3ef1d": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "crypto_sslc_null_key_exch_get_info": {"55513e386349c7dca64ccbdf859bb8bc49342451": {"00000000": {"type": "FUNCTION", "size": 32, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "crypto_sslc_null_key_exch_se)PS2SDB", 8192}, + std::string_view{R"PS2SDB(t_info": {"a2ecbecab9d5f445ee6bc1e6e008bde5dfe45918": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "crypto_sslc_random_ctx_init": {"0a5385cf4a659d302a43046ea0269e2b17a3ef1d": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "crypto_sslc_random_ctx_final": {"8ae5fa92c9c4fb68761c1589df5c6346cea0857e": {"14a3b075": {"type": "FUNCTION", "size": 40, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "R_rand_get_default", "scope": "LIBRARY"}, "16": {"type": "MIPS_26", "symbol": "R_rand_free", "scope": "LIBRARY"}}}}}, "crypto_sslc_random_get_info": {"bd409b443b306a3376c6bc9c12b81efd88a7d189": {"00000000": {"type": "FUNCTION", "size": 40, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "crypto_sslc_random_set_info": {"e41092c5aaed6dbd506b55d4f5c7c99ee5021e04": {"00000000": {"type": "FUNCTION", "size": 40, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "crypto_sslc_rsa_ctx_init": {"cc2522683492f63de559911015e9fe3a9c475879": {"cc197ab6": {"type": "FUNCTION", "size": 52, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "PK_CTX_new", "scope": "LIBRARY"}}}}}, "crypto_sslc_rsa_ctx_final": {"fc38710eb10ba2ccdd2c63bedbceb1858192fe99": {"987c4eb3": {"type": "FUNCTION", "size": 44, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "PK_CTX_free", "scope": "LIBRARY"}}}}}, "crypto_sslc_rsa_get_info": {"a2ecbecab9d5f445ee6bc1e6e008bde5dfe45918": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "crypto_sslc_rsa_set_info": {"a2ecbecab9d5f445ee6bc1e6e008bde5dfe45918": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "d2i_DSAparams": {"e27816b863bd52f70a83162ef528181ca11f8361": {"0dadf88a": {"type": "FUNCTION", "size": 632, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"80": {"type": "MIPS_26", "symbol": "DSA_new", "scope": "LIBRARY"}, "152": {"type": "MIPS_26", "symbol": "asn1_GetSequence", "scope": "LIBRARY"}, "196": {"type": "MIPS_26", "symbol": "d2i_ASN1_INTEGER", "scope": "LIBRARY"}, "256": {"type": "MIPS_26", "symbol": "BN_bin2bn", "scope": "LIBRARY"}, "288": {"type": "MIPS_26", "symbol": "d2i_ASN1_INTEGER", "scope": "LIBRARY"}, "348": {"type": "MIPS_26", "symbol": "BN_bin2bn", "scope": "LIBRARY"}, "380": {"type": "MIPS_26", "symbol": "d2i_ASN1_INTEGER", "scope": "LIBRARY"}, "440": {"type": "MIPS_26", "symbol": "BN_bin2bn", "scope": "LIBRARY"}, "456": {"type": "MIPS_26", "symbol": "ASN1_STRING_free", "scope": "LIBRARY"}, "464": {"type": "MIPS_26", "symbol": "asn1_Finish", "scope": "LIBRARY"}, "532": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "568": {"type": "MIPS_26", "symbol": "DSA_free", "scope": "LIBRARY"}, "588": {"type": "MIPS_26", "symbol": "ASN1_STRING_free", "scope": "LIBRARY"}}}}}, "d2i_PrivateKey": {"97c85a31fb9213a9c3ef00ec334a01843422364e": {"2cdf24e7": {"type": "FUNCTION", "size": 324, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "EVP_PKEY_new", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "EVP_PKEY_type", "scope": "LIBRARY"}, "172": {"type": "MIPS_26", "symbol": "d2i_RSAPrivateKey", "scope": "LIBRARY"}, "196": {"type": "MIPS_26", "symbol": "d2i_DSAPrivateKey", "scope": "LIBRARY"}, "228": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "280": {"type": "MIPS_26", "symbol": "EVP_PKEY_free", "scope": "LIBRARY"}}}}}, "d2i_PublicKey": {"8f73c78306ed898ff710a48c9837ae097a18b695": {"adc358e4": {"type": "FUNCTION", "size": 324, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "EVP_PKEY_new", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "EVP_PKEY_type", "scope": "LIBRARY"}, "172": {"type": "MIPS_26", "symbol": "d2i_RSAPublicKey", "scope": "LIBRARY"}, "196": {"type": "MIPS_26", "symbol": "d2i_DSAPublicKey", "scope": "LIBRARY"}, "228": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "280": {"type": "MIPS_26", "symbol": "EVP_PKEY_free", "scope": "LIBRARY"}}}}}, "d2i_DSAPrivateKey": {"42cfc449c0432fae74720600866bdeb7a1ea03b4": {"9127ae70": {"type": "FUNCTION", "size": 932, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"88": {"type": "MIPS_26", "symbol": "DSA_new", "scope": "LIBRARY"}, "160": {"type": "MIPS_26", "symbol": "asn1_GetSequence", "scope": "LIBRARY"}, "208": {"type": "MIPS_26", "symbol": "d2i_ASN1_INTEGER", "scope": "LIBRARY"}, "304": {"type": "MIPS_26", "symbol": "d2i_ASN1_INTEGER", "scope": "LIBRARY"}, "364": {"type": "MIPS_26", "symbol": "BN_bin2bn", "scope": "LIBRARY"}, "396": {"type": "MIPS_26", "symbol": "d2i_ASN1_INTEGER", "scope": "LIBRARY"}, "456": {"type": "MIPS_26", "symbol": "BN_bin2bn", "scope": "LIBRARY"}, "488": {"type": "MIPS_26", "symbol": "d2i_ASN1_INTEGER", "scope": "LIBRARY"}, "548": {"type": "MIPS_26", "symbol": "BN_bin2bn", "scope": "LIBRARY"}, "580": {"type": "MIPS_26", "symbol": "d2i_ASN1_INTEGER", "scope": "LIBRARY"}, "640": {"type": "MIPS_26", "symbol": "BN_bin2bn", "scope": "LIBRARY"}, "672": {"type": "MIPS_26", "symbol": "d2i_ASN1_INTEGER", "scope": "LIBRARY"}, "732": {"type": "MIPS_26", "symbol": "BN_bin2bn", "scope": "LIBRARY"}, "748": {"type": "MIPS_26", "symbol": "ASN1_STRING_free", "scope": "LIBRARY"}, "760": {"type": "MIPS_26", "symbol": "asn1_Finish", "scope": "LIBRARY"}, "828": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "864": {"type": "MIPS_26", "symbol": "DSA_free", "scope": "LIBRARY"}, "884": {"type": "MIPS_26", "symbol": "ASN1_STRING_free", "scope": "LIBRARY"}}}}}, "d2i_DSAPublicKey": {"bda24a13ddf77a946562879d9ee671707a61603f": {"c99c2a54": {"type": "FUNCTION", "size": 872, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"84": {"type": "MIPS_26", "symbol": "DSA_new", "scope": "LIBRARY"}, "200": {"type": "MIPS_26", "symbol": "d2i_ASN1_INTEGER", "scope": "LIBRARY"}, "260": {"type": "MIPS_26", "symbol": "BN_bin2bn", "scope": "LIBRARY"}, "288": {"type": "MIPS_26", "symbol": "asn1_GetSequence", "scope": "LIBRARY"}, "332": {"type": "MIPS_26", "symbol": "d2i_ASN1_INTEGER", "scope": "LIBRARY"}, "392": {"type": "MIPS_26", "symbol": "BN_bin2bn", "scope": "LIBRARY"}, "424": {"type": "MIPS_26", "symbol": "d2i_ASN1_INTEGER", "scope": "LIBRARY"}, "484": {"type": "MIPS_26", "symbol": "BN_bin2bn", "scope": "LIBRARY"}, "516": {"type": "MIPS_26", "symbol": "d2i_ASN1_INTEGER", ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(scope": "LIBRARY"}, "576": {"type": "MIPS_26", "symbol": "BN_bin2bn", "scope": "LIBRARY"}, "608": {"type": "MIPS_26", "symbol": "d2i_ASN1_INTEGER", "scope": "LIBRARY"}, "668": {"type": "MIPS_26", "symbol": "BN_bin2bn", "scope": "LIBRARY"}, "692": {"type": "MIPS_26", "symbol": "ASN1_STRING_free", "scope": "LIBRARY"}, "704": {"type": "MIPS_26", "symbol": "asn1_Finish", "scope": "LIBRARY"}, "772": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "808": {"type": "MIPS_26", "symbol": "DSA_free", "scope": "LIBRARY"}, "828": {"type": "MIPS_26", "symbol": "ASN1_STRING_free", "scope": "LIBRARY"}}}}}, "passwd_read_pw_string": {"6ff945fc330f7399332218593017afc7455e7acb": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "passwd_read_pw": {"0a5385cf4a659d302a43046ea0269e2b17a3ef1d": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "des_encrypt": {"39490c04ef29e30f497b616ac2bfa3ee9da23a65": {"b62f1cd7": {"type": "FUNCTION", "size": 2828, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"248": {"type": "MIPS_26", "symbol": "get_common_global", "scope": "LIBRARY"}, "536": {"type": "MIPS_26", "symbol": "get_common_global", "scope": "LIBRARY"}, "824": {"type": "MIPS_26", "symbol": "get_common_global", "scope": "LIBRARY"}, "1112": {"type": "MIPS_26", "symbol": "get_common_global", "scope": "LIBRARY"}, "1432": {"type": "MIPS_26", "symbol": "get_common_global", "scope": "LIBRARY"}, "1720": {"type": "MIPS_26", "symbol": "get_common_global", "scope": "LIBRARY"}, "2008": {"type": "MIPS_26", "symbol": "get_common_global", "scope": "LIBRARY"}, "2296": {"type": "MIPS_26", "symbol": "get_common_global", "scope": "LIBRARY"}}}}}, "des_encrypt2": {"494e86c4e0877d4088a9dbeacae2f42b9a83c222": {"c7a18f8a": {"type": "FUNCTION", "size": 2524, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"96": {"type": "MIPS_26", "symbol": "get_common_global", "scope": "LIBRARY"}, "384": {"type": "MIPS_26", "symbol": "get_common_global", "scope": "LIBRARY"}, "672": {"type": "MIPS_26", "symbol": "get_common_global", "scope": "LIBRARY"}, "960": {"type": "MIPS_26", "symbol": "get_common_global", "scope": "LIBRARY"}, "1280": {"type": "MIPS_26", "symbol": "get_common_global", "scope": "LIBRARY"}, "1568": {"type": "MIPS_26", "symbol": "get_common_global", "scope": "LIBRARY"}, "1856": {"type": "MIPS_26", "symbol": "get_common_global", "scope": "LIBRARY"}, "2144": {"type": "MIPS_26", "symbol": "get_common_global", "scope": "LIBRARY"}}}}}, "des_encrypt3": {"92b322934a5e0ef4e988cff147310c1c2c1f154e": {"ec6e31d4": {"type": "FUNCTION", "size": 432, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"216": {"type": "MIPS_26", "symbol": "des_encrypt2", "scope": "LIBRARY", "original": ".text"}, "232": {"type": "MIPS_26", "symbol": "des_encrypt2", "scope": "LIBRARY", "original": ".text"}, "248": {"type": "MIPS_26", "symbol": "des_encrypt2", "scope": "LIBRARY", "original": ".text"}}}}}, "des_decrypt3": {"07e77e5c605d51d00c91007cd16b46edf6044444": {"d900189d": {"type": "FUNCTION", "size": 436, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"220": {"type": "MIPS_26", "symbol": "des_encrypt2", "scope": "LIBRARY", "original": ".text"}, "236": {"type": "MIPS_26", "symbol": "des_encrypt2", "scope": "LIBRARY", "original": ".text"}, "252": {"type": "MIPS_26", "symbol": "des_encrypt2", "scope": "LIBRARY", "original": ".text"}}}}}, "des_ncbc_encrypt": {"761ef915e019254d0a8646db77838839579a19f6": {"cd84418e": {"type": "FUNCTION", "size": 1980, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"316": {"type": "MIPS_26", "symbol": "des_encrypt", "scope": "LIBRARY", "original": ".text"}, "520": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "524": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "680": {"type": "MIPS_26", "symbol": "des_encrypt", "scope": "LIBRARY", "original": ".text"}, "1236": {"type": "MIPS_26", "symbol": "des_encrypt", "scope": "LIBRARY", "original": ".text"}, "1532": {"type": "MIPS_26", "symbol": "des_encrypt", "scope": "LIBRARY", "original": ".text"}, "1592": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1596": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "des_ede3_cbc_encrypt": {"6dddedc8bee433fd566f49b5dbaf46804ca82ce7": {"b00d448e": {"type": "FUNCTION", "size": 2004, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"332": {"type": "MIPS_26", "symbol": "des_encrypt3", "scope": "LIBRARY", "original": ".text"}, "532": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "536": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "696": {"type": "MIPS_26", "symbol": "des_encrypt3", "scope": "LIBRARY", "original": ".text"}, "1256": {"type": "MIPS_26", "symbol": "des_decrypt3", "scope": "LIBRARY", "original": ".text"}, "1556": {"type": "MIPS_26", "symbol": "des_decrypt3", "scope": "LIBRARY", "original": ".text"}, "1616": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1620": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "DH_new_meth": {"a2874e912948b6696748130a329bab69ece0290e": {"2c0ae9a8": {"type": "FUNCTION", "size": 280, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "memset"}, "112": {"type": "MIPS_26", "symbol": "PK_CTX_new", "scope": "LIBRARY"}, "128": {"type": "MIPS_26", "symbol": "R_EITEMS_new", "scope": "LIBRARY"}, "152": {"type": "MIPS_26", "symbol": "R_rand_get_default", "scope": "LIBRARY"}, "188": {"type": "MIPS_26", "symbol": "R_EITEMS_add", "scope": "LIBRARY"}, "216": {"type": "MIPS_26", "symbol": "PK_CTX_free", "scope": "LIBRARY"}, "236": {"type": "MIPS_26", "symbol": "R_EITEMS_free", "scope": "LIBRARY"}, "244": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "DH_new": {"4d794c72fcd4aa5782920b28126e2990125845c1": {"f8ca8e00": {"type": "FUNCTION", "size": 44, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_26", "symbol": "DH_new_meth", "scope": "LIBRARY"}}}}}, "DH_set_default_meth": {"379568001121d67192b561489fbcf0e0086b0eb3": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "DH_free": {"1e62b2b47fa83f39b4ad2abdaadbf035608f9986": {"4545848a": {"type": "FUNCTION", "size": 132, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "28": {"type":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "MIPS_LO16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_26", "symbol": "R_locked_add", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "PK_CTX_free", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "R_EITEMS_free", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "DH_size": {"4fd9a6270444331b20c43d158a139f873b4619a0": {"3a9aa397": {"type": "FUNCTION", "size": 100, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "R_EITEMS_find_item", "scope": "LIBRARY"}}}}}, "DH_set": {"7d7b84405ca356f1a88adb90a35985c96f2c7275": {"884ad2e5": {"type": "FUNCTION", "size": 52, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "R_EITEMS_add", "scope": "LIBRARY"}}}}}, "DH_get": {"f88caa236098642709582a89b49116e41e0af2dc": {"58867757": {"type": "FUNCTION", "size": 328, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"80": {"type": "MIPS_26", "symbol": "R_EITEMS_find_item", "scope": "LIBRARY"}, "156": {"type": "MIPS_26", "symbol": "R_EITEM_init", "scope": "LIBRARY"}, "176": {"type": "MIPS_26", "symbol": "PK_get_eitem", "scope": "LIBRARY"}, "200": {"type": "MIPS_26", "symbol": "R_EITEM_free", "scope": "LIBRARY"}, "232": {"type": "MIPS_26", "symbol": "R_EITEMS_add", "scope": "LIBRARY"}, "248": {"type": "MIPS_26", "symbol": "R_EITEM_free", "scope": "LIBRARY"}, "264": {"type": "MIPS_26", "symbol": "R_EITEM_free", "scope": "LIBRARY"}}}}}, "DH_generate_key": {"f7c226d9cc7dcd13a5ab7f1ca2840aba776d7d2e": {"d463c06c": {"type": "FUNCTION", "size": 92, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "PK_CTX_set", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "PK_phase1", "scope": "LIBRARY"}}}}}, "DH_compute_key": {"79960cb38dcb2fcccf4af11c6983642aa38a8f58": {"bb93fbc8": {"type": "FUNCTION", "size": 192, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"92": {"type": "MIPS_26", "symbol": "PK_CTX_set", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "PK_phase2", "scope": "LIBRARY"}}}}}, "DH_params_dup": {"6337cdbe728b255efc8f22f5f32508d2c5f43345": {"3cf22b36": {"type": "FUNCTION", "size": 136, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "DH_new_meth", "scope": "LIBRARY"}, "44": {"type": "MIPS_26", "symbol": "R_EITEMS_dup", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "R_EITEMS_delete", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "R_EITEMS_delete", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "DH_free", "scope": "LIBRARY"}}}}}, "SSL_enable_DH": {"151d97c58e30b518c017dfd74f07cf5656c980bd": {"cac78d02": {"type": "FUNCTION", "size": 36, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "PK_METH_dh"}, "12": {"type": "MIPS_26", "symbol": "DH_set_default_meth", "scope": "LIBRARY"}, "16": {"type": "MIPS_LO16", "symbol": "PK_METH_dh"}}}}}, "EVP_DigestInit": {"5b5999112428f326e81a50270ed45f0d81cc5b76": {"ff1e6f39": {"type": "FUNCTION", "size": 232, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"92": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "132": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "156": {"type": "MIPS_26", "symbol": "memset"}}}}}, "EVP_DigestUpdate": {"2eaf722f2a1745ed766d6f096f36c2843338a6c1": {"00000000": {"type": "FUNCTION", "size": 44, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "EVP_DigestFinal": {"7628a84e1c7c3a09ad919ff2d295972065ba3292": {"563ed87a": {"type": "FUNCTION", "size": 96, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"88": {"type": "MIPS_26", "symbol": "memset"}}}}}, "DSA_new": {"43f6a75f8e513a5658d854f3e0e85a9c36cdbd21": {"28cfe547": {"type": "FUNCTION", "size": 76, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "get_common_global", "scope": "LIBRARY"}, "40": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "DSA_size": {"75d833caad5fbf5c24512f03deee4f4d505a7d80": {"28d2f1de": {"type": "FUNCTION", "size": 84, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "get_common_global", "scope": "LIBRARY"}, "44": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "DSA_sign_setup": {"4131b42cb53924342e706264e5e81c5335afea81": {"85c1806b": {"type": "FUNCTION", "size": 132, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "get_common_global", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "DSA_sign": {"02e9977c65df3e29bbeb3f9596dd24b9178cba6c": {"85b5d20f": {"type": "FUNCTION", "size": 164, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "get_common_global", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "DSA_verify": {"77dcb8d16292884dd1693b5fc05e0149f6b9d677": {"85b5d20f": {"type": "FUNCTION", "size": 164, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "get_common_global", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "DSA_free": {"824537ae1dda1a7e8ecff40801ff03894a041b67": {"d2f8c736": {"type": "FUNCTION", "size": 88, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "get_common_global", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "DSA_params_dup": {"01cf7dfa63f6a755dfe927ad514280190a2582ca": {"28d2f1de": {"type": "FUNCTION", "size": 84, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "get_common_global", "scope": "LIBRARY"}, "44": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "DSA_new_internal": {"c0d8f3c754f191d62ae526ef44b4da85added981": {"3f4cd562": {"type": "FUNCTION", "size": 88, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}}}}}, "DSA_free_internal": {"8969347bfec6402acc834edfa670bf181b28c68c": {"d3dd64)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ec": {"type": "FUNCTION", "size": 252, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_26", "symbol": "R_locked_add", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "BN_clear_free", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "BN_clear_free", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "BN_clear_free", "scope": "LIBRARY"}, "128": {"type": "MIPS_26", "symbol": "BN_clear_free", "scope": "LIBRARY"}, "148": {"type": "MIPS_26", "symbol": "BN_clear_free", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "BN_clear_free", "scope": "LIBRARY"}, "188": {"type": "MIPS_26", "symbol": "BN_clear_free", "scope": "LIBRARY"}, "208": {"type": "MIPS_26", "symbol": "BN_MONT_CTX_free", "scope": "LIBRARY"}, "228": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "DSA_enable_default_method": {"afa57423c271716be8b61bee4eabe1b352cf4a42": {"07ea6b00": {"type": "FUNCTION", "size": 80, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "get_common_global", "scope": "LIBRARY"}, "16": {"type": "MIPS_HI16", "symbol": "DSA_new_internal"}, "20": {"type": "MIPS_HI16", "symbol": "DSA_free_internal"}, "28": {"type": "MIPS_LO16", "symbol": "DSA_new_internal"}, "32": {"type": "MIPS_LO16", "symbol": "DSA_free_internal"}}}}}, "DSA_set_default_method_size_cb": {"36aaea281f3b7b3d90878174a2e854a846fc8560": {"eaba2ef7": {"type": "FUNCTION", "size": 40, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "get_common_global", "scope": "LIBRARY"}}}}}, "DSA_set_default_method_sign_cb": {"6e4ecf41fb7e21fd6fb41a59467b5f4486db5bbe": {"eaba2ef7": {"type": "FUNCTION", "size": 40, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "get_common_global", "scope": "LIBRARY"}}}}}, "DSA_set_default_method_setup_cb": {"e836dcac2e6646255a8ec471243065a9ab909e8c": {"eaba2ef7": {"type": "FUNCTION", "size": 40, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "get_common_global", "scope": "LIBRARY"}}}}}, "DSA_set_default_method_verify_cb": {"80c19723c160992c86ca0fd64cd688857446e9b7": {"eaba2ef7": {"type": "FUNCTION", "size": 40, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "get_common_global", "scope": "LIBRARY"}}}}}, "DSA_set_default_method_p_dup_cb": {"6e96df5140218fface938f85f9aee282c9efce52": {"eaba2ef7": {"type": "FUNCTION", "size": 40, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "get_common_global", "scope": "LIBRARY"}}}}}, "SSL_enable_DSA": {"b5f267e3968c7f82774f9bdcd04265b1eb2526ea": {"a083555f": {"type": "FUNCTION", "size": 92, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "DSA_enable_default_method", "scope": "LIBRARY"}, "16": {"type": "MIPS_HI16", "symbol": "dsa_size_cb"}, "20": {"type": "MIPS_26", "symbol": "DSA_set_default_method_size_cb", "scope": "LIBRARY"}, "24": {"type": "MIPS_LO16", "symbol": "dsa_size_cb"}, "28": {"type": "MIPS_HI16", "symbol": "dsa_sign_cb"}, "32": {"type": "MIPS_26", "symbol": "DSA_set_default_method_sign_cb", "scope": "LIBRARY"}, "36": {"type": "MIPS_LO16", "symbol": "dsa_sign_cb"}, "40": {"type": "MIPS_HI16", "symbol": "dsa_sign_setup_cb"}, "44": {"type": "MIPS_26", "symbol": "DSA_set_default_method_setup_cb", "scope": "LIBRARY"}, "48": {"type": "MIPS_LO16", "symbol": "dsa_sign_setup_cb"}, "52": {"type": "MIPS_HI16", "symbol": "dsa_verify_cb"}, "56": {"type": "MIPS_26", "symbol": "DSA_set_default_method_verify_cb", "scope": "LIBRARY"}, "60": {"type": "MIPS_LO16", "symbol": "dsa_verify_cb"}, "64": {"type": "MIPS_HI16", "symbol": "do_DSAparams_dup"}, "68": {"type": "MIPS_26", "symbol": "DSA_set_default_method_p_dup_cb", "scope": "LIBRARY"}, "72": {"type": "MIPS_LO16", "symbol": "do_DSAparams_dup"}}}}}, "do_DSAparams_dup": {"2dda7fa9853c9b2c64e6099dcf7bb506f35bf9f9": {"fb685306": {"type": "FUNCTION", "size": 44, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "i2d_DSAparams"}, "12": {"type": "MIPS_HI16", "symbol": "d2i_DSAparams"}, "20": {"type": "MIPS_LO16", "symbol": "i2d_DSAparams"}, "24": {"type": "MIPS_26", "symbol": "ASN1_dup", "scope": "LIBRARY"}, "28": {"type": "MIPS_LO16", "symbol": "d2i_DSAparams"}}}}}, "dsa_size_cb": {"d4c952cf63830d50a5ef336035d1993109b585a7": {"0d28d774": {"type": "FUNCTION", "size": 108, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "BN_num_bits", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "i2d_ASN1_INTEGER", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "ASN1_object_size", "scope": "LIBRARY"}}}}}, "EVP_des_ede_cbc": {"2a51c093207f3b6546ea5ac91d4ae4a6999eaed5": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "EVP_des_ede3_cbc": {"2a51c093207f3b6546ea5ac91d4ae4a6999eaed5": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "des_cbc_ede_init_key": {"49d112e6001df3340a026e0f345c9561899c1d09": {"484070ad": {"type": "FUNCTION", "size": 180, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"72": {"type": "MIPS_26", "symbol": "des_set_key", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "des_set_key", "scope": "LIBRARY"}}}}}, "des_cbc_ede3_init_key": {"b273d089373a2d7920c4a4199a7c2f4204a7fc48": {"1cdbae39": {"type": "FUNCTION", "size": 136, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"72": {"type": "MIPS_26", "symbol": "des_set_key", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "des_set_key", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "des_set_key", "scope": "LIBRARY"}}}}}, "des_cbc_ede_cipher": {"7a0c45a471bd387cdc0967e5c1954b0c1ee6f08f": {"b21b4d6f": {"type": "FUNCTION", "size": 40, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "des_ede3_cbc_encrypt", "scope": "LIBRARY"}}}}}, "EVP_des_cbc": {"2a51c093207f3b6546ea5ac91d4ae4a6999eaed5": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "des_cbc_init_key": {"579e63fa74c57860fb89ba7ffd6fe62979a29d26": {"cd1b7b47": {"type": "FUNCTION", "size": 64, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "des_set_key", "scope": "LIBRARY"}}}}}, "des_cbc_cipher": {"d7d0fa8d33085c291e155d2d2f7804c0aae4e4f6": {"74047492": {"type": "FUNCTION", "size": 32, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "des_ncbc_encrypt", "scope": "LIBRARY"}}}}}, "EVP_rc2_cbc": {"2a51c093207f3b6546ea5ac91d4ae4a6999eaed5": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "EVP_rc2_64_cbc": {"2a51c093207f3b6546ea5ac91d4ae4a6999eaed5": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "EVP_rc2_40_cbc": {"2a51c093207f3b6546ea5ac91d4ae4a6999eaed5": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "rc2_cbc_init_key": {"361541a674926c5894ba3b72fc8d189015276223": {"6ca9a189": {"type": "FUNCTION", "size": 196, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"80": {"type": "MIPS_26", "symbol": "EVP_CIPHER_CTX_ex_long", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "EVP_CIPHER_CTX_key_length", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "EVP_CIPHER_CTX_key_length", "scope": "LIBRARY"}, "164": {"type": "MIPS_26", "symbol": "RC2_set_key", "scope": "LIBRARY"}}}}}, "rc2_cbc_cipher": {"d7d0fa8d33085c291e155d2d2f7804c0aae4e4f6": {"4c786cdf": {"type": "FUNCTION", "size": 32, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "RC2_cbc_encrypt", "scope": "LIBRARY"}}}}}, "EVP_enc_null": {"2a51c093207f3b6546ea5ac91d4ae4a6999eaed5": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "null_init_key": {"b304b2dfb2ffd457ce6c3de28687db116f8db10f": {"00000000": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "null_cipher": {"6ed708023b6f5d5c5f11b91100b32a24bd26e0c0": {"357320ad": {"type": "FUNCTION", "size": 32, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "memcpy"}}}}}, "rc4_init_key": {"4cc77c176847ed1ff7ccc889c215574a7c1c5f19": {"ba193535": {"type": "FUNCTION", "size": 108, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "EVP_CIPHER_CTX_key_length", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "memcpy"}, "60": {"type": "MIPS_26", "symbol": "EVP_CIPHER_CTX_key_length", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "RC4_set_key", "scope": "LIBRARY"}}}}}, "rc4_cipher": {"e54b5ce607bbd0d51166c8439c60d8eb51fc162c": {"777db3be": {"type": "FUNCTION", "size": 28, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "RC4", "scope": "LIBRARY"}}}}}, "EVP_rc4": {"2a51c093207f3b6546ea5ac91d4ae4a6999eaed5": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "EVP_rc4_40": {"2a51c093207f3b6546ea5ac91d4ae4a6999eaed5": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "EVP_ENCODE_CTX_new": {"5c52da1794ed6349e19d61cab09984d9e1ce309e": {"71855bab": {"type": "FUNCTION", "size": 96, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "48": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "memset"}}}}}, "EVP_ENCODE_CTX_free": {"a639a8a356321edbeccee089cae462e9fca431ea": {"68f027a7": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "EVP_EncodeInit": {"2484a3a4bddc14678de0ae39aca5876d109ecb0b": {"00000000": {"type": "FUNCTION", "size": 20, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "EVP_EncodeUpdate": {"597f2399f11d222769b8f7ad231a4a378b3f9eec": {"dd6d74ff": {"type": "FUNCTION", "size": 364, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"100": {"type": "MIPS_26", "symbol": "memcpy"}, "152": {"type": "MIPS_26", "symbol": "memcpy"}, "172": {"type": "MIPS_26", "symbol": "EVP_EncodeBlock", "scope": "LIBRARY", "original": ".text"}, "236": {"type": "MIPS_26", "symbol": "EVP_EncodeBlock", "scope": "LIBRARY", "original": ".text"}, "308": {"type": "MIPS_26", "symbol": "memcpy"}}}}}, "EVP_EncodeFinal": {"e823e999991a5e443c46eae0858ade017f561422": {"3a255126": {"type": "FUNCTION", "size": 120, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "EVP_EncodeBlock", "scope": "LIBRARY", "original": ".text"}}}}}, "EVP_EncodeBlock": {"4b7a4971e99e4559ed1f0d463e282b2649728db3": {"4ae9a23c": {"type": "FUNCTION", "size": 356, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: "MIPS_LO16", "symbol": "", "original": ".data"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "EVP_DecodeInit": {"4edd6bf559369d2b88f44448677e45bc67c417e7": {"00000000": {"type": "FUNCTION", "size": 24, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "EVP_DecodeUpdate": {"61e06623954aff53c29a0a693df0507338c1ba0c": {"60495921": {"type": "FUNCTION", "size": 552, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"100": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "376": {"type": "MIPS_26", "symbol": "EVP_DecodeBlock", "scope": "LIBRARY", "original": ".text"}}}}}, "EVP_DecodeBlock": {"28f25d32e203b7154f36256c486b1c1c7e92fdca": {"2ec86871": {"type": "FUNCTION", "size": 392, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "EVP_DecodeFinal": {"f604736f91a33f452c57d28b2e582b5dbe50296b": {"7fa46a30": {"type": "FUNCTION", "size": 104, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "EVP_DecodeBlock", "scope": "LIBRARY", "original": ".text"}}}}}, "ERR_STATE_free": {"2f5f989fddfc22e8dd96b425876dc9f4c721ce51": {"5254e7de": {"type": "FUNCTION", "size": 132, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "ERR_free_strings": {"951d401731c3a6b8ce2fd8b6ba7021e5bcc1ee5b": {"afb00b7d": {"type": "FUNCTION", "size": 116, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "get_common_global", "scope": "LIBRARY"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "48": {"type": "MIPS_26", "symbol": "R_lock_ctrl", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "lh_free", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "R_lock_ctrl", "scope": "LIBRARY"}}}}}, "ERR_put_error": {"b439c3ee758d5e9b34741bc11f77848514c299e2": {"0789cb8f": {"type": "FUNCTION", "size": 440, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"160": {"type": "MIPS_26", "symbol": "ERR_get_state", "scope": "LIBRARY"}, "364": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "ERR_clear_error": {"735ddd8f342ac149c1fd3536579151a492b52fe6": {"61bdc7cc": {"type": "FUNCTION", "size": 36, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "ERR_get_state", "scope": "LIBRARY"}}}}}, "ERR_get_error": {"f75e46cd4816c0b657ca5d601250edb4e91ebc44": {"fb87b528": {"type": "FUNCTION", "size": 44, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "err_get_error_values", "scope": "LIBRARY"}}}}}, "ERR_peek_error": {"7ebce3f98bbd3d846a65c24286a9a3891a142311": {"fb87b528": {"type": "FUNCTION", "size": 44, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "err_get_error_values", "scope": "LIBRARY"}}}}}, "err_get_error_values": {"b43691d9f306e4bebddcc5b11779eadd61d75f42": {"0a828a5c": {"type": "FUNCTION", "size": 304, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "ERR_get_state", "scope": "LIBRARY"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "ERR_remove_state": {"53d32ed9d81830fc2040d5e93bd29a368f5e9be3": {"04bd3208": {"type": "FUNCTION", "size": 200, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "get_common_global", "scope": "LIBRARY"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "52": {"type": "MIPS_26", "symbol": "R_thread_id", "scope": "LIBRARY"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_26", "symbol": "R_lock_ctrl", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "lh_delete", "scope": "LIBRARY"}, "128": {"type": "MIPS_26", "symbol": "lh_free", "scope": "LIBRARY"}, "152": {"type": "MIPS_26", "symbol": "R_lock_ctrl", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "ERR_STATE_free", "scope": "LIBRARY"}}}}}, "pid_hash": {"3b5844afd77b1d3e9117b47fe90141cf924fd170": {"00000000": {"type": "FUNCTION", "size": 24, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "pid_cmp": {"f293b1ea7d790e751f3513cc3b9a90a8a56ab7a9": {"00000000": {"type": "FUNCTION", "size": 24, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "ERR_get_state": {"4b49ea9d7e89485fc48d6b03302ef0513fbd1c96": {"a4cdf8e3": {"type": "FUNCTION", "size": 468, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_26", "symbol": "get_common_global", "scope": "LIBRARY"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "44": {"type": "MIPS_26", "symbol": "R_thread_id", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "R_lock_ctrl", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "R_lock_ctrl", "scope": "LIBRARY"}, "120": {"type": "MIPS_26", "symbol": "R_lock_ctrl", "scope": "LIBRARY"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "152": {"type": "MIPS_26", "symbol": "lh_new", "scope": "LIBRARY"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "176": {"type": "MIPS_26", "symbol": "R_lock_ctrl", "scope": "LIBRARY"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "212": {"type": "MIPS_26", "symbol": "R_lock_ctrl", "sc)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ope": "LIBRARY"}, "232": {"type": "MIPS_26", "symbol": "lh_retrieve", "scope": "LIBRARY"}, "256": {"type": "MIPS_26", "symbol": "R_lock_ctrl", "scope": "LIBRARY"}, "272": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "292": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "300": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "356": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "372": {"type": "MIPS_26", "symbol": "R_lock_ctrl", "scope": "LIBRARY"}, "384": {"type": "MIPS_26", "symbol": "lh_insert", "scope": "LIBRARY"}, "408": {"type": "MIPS_26", "symbol": "R_lock_ctrl", "scope": "LIBRARY"}, "424": {"type": "MIPS_26", "symbol": "ERR_STATE_free", "scope": "LIBRARY"}}}}}, "ERR_set_error_data": {"e7718447dab5ce72ef81720700a7969f093dbe42": {"9236eca1": {"type": "FUNCTION", "size": 88, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "ERR_get_state", "scope": "LIBRARY"}}}}}, "ERR_add_error_data": {"cac20a373441137ec9dec4315db99b5294bf8b03": {"5bb5efcb": {"type": "FUNCTION", "size": 268, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"72": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "strlen"}, "156": {"type": "MIPS_26", "symbol": "R_realloc", "scope": "LIBRARY"}, "172": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "192": {"type": "MIPS_26", "symbol": "strcat"}, "220": {"type": "MIPS_26", "symbol": "ERR_set_error_data", "scope": "LIBRARY"}}}}}, "EVP_Cipher": {"cd1663565e17d02807a693a78cb7728ceaa5d38f": {"00000000": {"type": "FUNCTION", "size": 36, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "EVP_CIPHER_CTX_set_cipher": {"dc3667261618eb930e6faea6ee3fd44adc9bd1da": {"82fe0736": {"type": "FUNCTION", "size": 248, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "memset"}, "80": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "156": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "204": {"type": "MIPS_26", "symbol": "memset"}}}}}, "EVP_CIPHER_CTX_init": {"d2fc93e0f5c20e7f944461d1992f31d96fefcca2": {"0e462e98": {"type": "FUNCTION", "size": 244, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "memset"}, "52": {"type": "MIPS_26", "symbol": "memset"}, "68": {"type": "MIPS_26", "symbol": "memset"}, "112": {"type": "MIPS_26", "symbol": "memset"}, "120": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "132": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "164": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "208": {"type": "MIPS_26", "symbol": "memset"}}}}}, "EVP_CIPHER_CTX_new": {"bfbf5c67ed94b89032b35eb456e7494a412b67d0": {"c040db4f": {"type": "FUNCTION", "size": 128, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "EVP_CIPHER_CTX_init", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "EVP_CipherInit": {"2e2c1f62628647b5f52d26258c85f6838e444767": {"dd909516": {"type": "FUNCTION", "size": 60, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "EVP_EncryptInit", "scope": "LIBRARY"}, "40": {"type": "MIPS_26", "symbol": "EVP_DecryptInit", "scope": "LIBRARY"}}}}}, "EVP_EncryptInit": {"df91d6c6a220e517ebdbea94817208f1e085021a": {"4c936377": {"type": "FUNCTION", "size": 124, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "EVP_CIPHER_CTX_set_cipher", "scope": "LIBRARY"}}}}}, "EVP_DecryptInit": {"013d96dcd5918adc60b44712d14f4e843a284ca9": {"4c936377": {"type": "FUNCTION", "size": 124, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "EVP_CIPHER_CTX_set_cipher", "scope": "LIBRARY"}}}}}, "EVP_EncryptUpdate": {"78c3e0699811b725b62253b8cdff7fba7a1645bb": {"2e9c45eb": {"type": "FUNCTION", "size": 344, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"112": {"type": "MIPS_26", "symbol": "memcpy"}, "156": {"type": "MIPS_26", "symbol": "memcpy"}, "292": {"type": "MIPS_26", "symbol": "memcpy"}}}}}, "EVP_DecryptUpdate": {"fd731cac156d82b10cd8e3a037812023b6e5cab3": {"5e0a1ebc": {"type": "FUNCTION", "size": 240, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"132": {"type": "MIPS_26", "symbol": "memcpy"}, "172": {"type": "MIPS_26", "symbol": "EVP_EncryptUpdate", "scope": "LIBRARY"}, "192": {"type": "MIPS_26", "symbol": "memcpy"}}}}}, "EVP_DecryptFinal": {"3682f9fe5d9a53cde911b69ad73e3304801180c9": {"4c9d16de": {"type": "FUNCTION", "size": 372, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"104": {"type": "MIPS_26", "symbol": "EVP_EncryptUpdate", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "320": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "EVP_CIPHER_CTX_free": {"93f914aa09b0f19abe409a834ad8b56de4f264ea": {"b7f16fd9": {"type": "FUNCTION", "size": 60, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "EVP_CIPHER_CTX_cleanup", "scope": "LIBRARY"}, "32": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "EVP_CIPHER_CTX_cleanup": {"90fb7fce397d49217c4a7c40a303815368165071": {"703f333e": {"type": "FUNCTION", "size": 116, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_26", "symbol": "memset"}, "72": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "memset"}}}}}, "EVP_CIPHER_CTX_iv": {"a2b5cc0a96766a0afbbc7a1096d2c154acf9869d": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "EVP_set_pw_prompt": {"61606eea51ccc6c2bb02c20d35997dffe326b9b8": {"c27f77f2": {"type": "FUNCTION", "size": 36, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_26", "symbol": "strncpy"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "origin)PS2SDB", 8192}, + std::string_view{R"PS2SDB(al": ".bss"}}}}}, "EVP_get_pw_prompt": {"66bf9492cbb773b923c7e7ad959feedd9468db86": {"85872703": {"type": "FUNCTION", "size": 20, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "EVP_read_pw_string": {"d7e46145791920305a5521620972bf7be8fc0504": {"b2e27eb1": {"type": "FUNCTION", "size": 48, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_26", "symbol": "passwd_read_pw_string", "scope": "LIBRARY"}}}}}, "EVP_BytesToKey": {"1a1bda71b334766147cbe554c0147eb72b7fda17": {"02d0ff9d": {"type": "FUNCTION", "size": 568, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"112": {"type": "MIPS_26", "symbol": "EVP_MD_CTX_new", "scope": "LIBRARY"}, "140": {"type": "MIPS_26", "symbol": "EVP_MD_CTX_free", "scope": "LIBRARY"}, "160": {"type": "MIPS_26", "symbol": "EVP_DigestInit", "scope": "LIBRARY"}, "204": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}, "244": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}, "264": {"type": "MIPS_26", "symbol": "EVP_DigestFinal", "scope": "LIBRARY"}, "296": {"type": "MIPS_26", "symbol": "EVP_DigestInit", "scope": "LIBRARY"}, "316": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}, "332": {"type": "MIPS_26", "symbol": "EVP_DigestFinal", "scope": "LIBRARY"}, "488": {"type": "MIPS_26", "symbol": "EVP_MD_CTX_free", "scope": "LIBRARY"}, "504": {"type": "MIPS_26", "symbol": "memset"}}}}}, "EVP_MD_type": {"bc3f406df1b64926c4af204c6d9c18c1a685f849": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "EVP_MD_pkey_type": {"49629bfd21111872a95cda909da7446d13180ce9": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "EVP_MD_size": {"2ad1539f6f0c447b85ffcea2077d55f9a17f4183": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "EVP_MD_block_size": {"8229fd7b4e65873204b3573e2906750ac5896613": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "EVP_MD_CTX_size": {"002681fb2dc34e9d5792f375e62e8cba0fab143b": {"00000000": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "EVP_MD_CTX_digest": {"bc3f406df1b64926c4af204c6d9c18c1a685f849": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "EVP_CIPHER_nid": {"bc3f406df1b64926c4af204c6d9c18c1a685f849": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "EVP_CIPHER_key_length": {"2ad1539f6f0c447b85ffcea2077d55f9a17f4183": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "EVP_CIPHER_iv_length": {"3f2e95770cde9332a459df92798c8ef91b588f46": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "EVP_CIPHER_CTX_cipher": {"bc3f406df1b64926c4af204c6d9c18c1a685f849": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "EVP_CIPHER_CTX_block_size": {"c0f599a35757a140584779ba9a810354a9977e0a": {"00000000": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "EVP_CIPHER_CTX_key_length": {"cbcc45714d362d8d40a163b3eca9946d35c6e346": {"00000000": {"type": "FUNCTION", "size": 28, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "EVP_CIPHER_CTX_set_key_length": {"057181dc76824f67f6dbeb94e9826fe9db608763": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "EVP_CIPHER_CTX_ex_long": {"54c30b7bfdad08dc8a691d631845ade2e4aa83cf": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "EVP_CIPHER_CTX_set_ex_long": {"fed0b28b1bd6e9f3ae11912d09257915398f69a4": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "EVP_MD_CTX_set_digest": {"079e0de1143e6b479d8b7ea014eb5c09bc645014": {"6eaceca3": {"type": "FUNCTION", "size": 212, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "memset"}, "64": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "132": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "memset"}}}}}, "EVP_MD_CTX_init": {"fc6d95088410f4d39677cad427bb1ab22e2f7c9f": {"404e8704": {"type": "FUNCTION", "size": 180, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "memset"}, "64": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "152": {"type": "MIPS_26", "symbol": "memset"}}}}}, "EVP_MD_CTX_new": {"8f9919f14f4afb70d3e58ac871c2c9c05e20fa54": {"c3793807": {"type": "FUNCTION", "size": 116, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "40": {"type": "MIPS_26", "symbol": "EVP_MD_CTX_init", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "EVP_MD_CTX_free": {"024e209d2d167a4c32f704037cad3de6504cb2b1": {"bae3f9d9": {"type": "FUNCTION", ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(size": 68, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "memset"}, "40": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "60": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "EVP_MD_CTX_copy": {"36614367c1ad1f262600745a82f0e9b2983452bf": {"f1bc6b93": {"type": "FUNCTION", "size": 100, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "EVP_MD_CTX_set_digest", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "memcpy"}}}}}, "EVP_OBJ_add_cipher": {"df667b8244016eb7bda5dd9c9a1039840870fa8e": {"97d0e74f": {"type": "FUNCTION", "size": 104, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "EVP_CIPHER_nid", "scope": "LIBRARY"}, "28": {"type": "MIPS_26", "symbol": "OBJ_nid2sn", "scope": "LIBRARY"}, "44": {"type": "MIPS_26", "symbol": "OBJ_NAME_add", "scope": "LIBRARY"}, "60": {"type": "MIPS_26", "symbol": "OBJ_nid2ln", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "OBJ_NAME_add", "scope": "LIBRARY"}}}}}, "EVP_OBJ_add_digest": {"acd3ca6e64adb5bf2c0b2cdb5f3f1480f8d32219": {"50b9723d": {"type": "FUNCTION", "size": 228, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "EVP_MD_type", "scope": "LIBRARY"}, "36": {"type": "MIPS_26", "symbol": "OBJ_nid2sn", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "OBJ_NAME_add", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "OBJ_nid2ln", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "OBJ_NAME_add", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "EVP_MD_pkey_type", "scope": "LIBRARY"}, "136": {"type": "MIPS_26", "symbol": "OBJ_nid2sn", "scope": "LIBRARY"}, "152": {"type": "MIPS_26", "symbol": "OBJ_NAME_add", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "OBJ_nid2ln", "scope": "LIBRARY"}, "184": {"type": "MIPS_26", "symbol": "OBJ_NAME_add", "scope": "LIBRARY"}}}}}, "EVP_OBJ_get_cipherbyname": {"e1871bd358342321a6d4d08dfca8a22d5764ed1b": {"edecf734": {"type": "FUNCTION", "size": 28, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "OBJ_NAME_get", "scope": "LIBRARY"}}}}}, "EVP_OBJ_get_digestbyname": {"08397092e90b239e1fbd8a8f4ca9ec0e1e0cefb4": {"edecf734": {"type": "FUNCTION", "size": 28, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "OBJ_NAME_get", "scope": "LIBRARY"}}}}}, "EVP_OBJ_cleanup": {"5248996437ec7881bfe738b51a99e1ec4a6e605d": {"652042e6": {"type": "FUNCTION", "size": 32, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "OBJ_NAME_cleanup", "scope": "LIBRARY"}, "24": {"type": "MIPS_26", "symbol": "OBJ_NAME_cleanup", "scope": "LIBRARY"}}}}}, "EVP_OBJ_add_cipher_alias": {"ffb91e617e4ef08261701e1474b60f55730d25ba": {"d43f58b7": {"type": "FUNCTION", "size": 36, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "OBJ_NAME_add", "scope": "LIBRARY"}}}}}, "EVP_OBJ_add_digest_alias": {"0d55575b421884d7f7dc0362d5eb83482b8f7fb6": {"d43f58b7": {"type": "FUNCTION", "size": 36, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "OBJ_NAME_add", "scope": "LIBRARY"}}}}}, "EVP_OBJ_delete_cipher_alias": {"e4f9eebc82a8ce733d00abcac4efc199eadec855": {"575e011d": {"type": "FUNCTION", "size": 28, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "OBJ_NAME_remove", "scope": "LIBRARY"}}}}}, "EVP_OBJ_delete_digest_alias": {"d931cda97e19ee28fd90df06ba44b5a159421dd3": {"575e011d": {"type": "FUNCTION", "size": 28, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "OBJ_NAME_remove", "scope": "LIBRARY"}}}}}, "EVP_OBJ_get_digestbynid": {"7957a2269426b9dbfcbd66302afe468ba97be039": {"bdb11917": {"type": "FUNCTION", "size": 36, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "OBJ_nid2sn", "scope": "LIBRARY"}, "16": {"type": "MIPS_26", "symbol": "EVP_OBJ_get_digestbyname", "scope": "LIBRARY"}}}}}, "EVP_OBJ_get_cipherbynid": {"7957a2269426b9dbfcbd66302afe468ba97be039": {"241080c8": {"type": "FUNCTION", "size": 36, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "OBJ_nid2sn", "scope": "LIBRARY"}, "16": {"type": "MIPS_26", "symbol": "EVP_OBJ_get_cipherbyname", "scope": "LIBRARY"}}}}}, "EVP_OBJ_get_digestbyobj": {"7957a2269426b9dbfcbd66302afe468ba97be039": {"e369199c": {"type": "FUNCTION", "size": 36, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "OBJ_obj2nid", "scope": "LIBRARY"}, "16": {"type": "MIPS_26", "symbol": "EVP_OBJ_get_digestbynid", "scope": "LIBRARY", "original": ".text"}}}}}, "EVP_OBJ_get_cipherbyobj": {"7957a2269426b9dbfcbd66302afe468ba97be039": {"4ba17c9f": {"type": "FUNCTION", "size": 36, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "OBJ_obj2nid", "scope": "LIBRARY"}, "16": {"type": "MIPS_26", "symbol": "EVP_OBJ_get_cipherbynid", "scope": "LIBRARY", "original": ".text"}}}}}, "CRYPTO_EX_DATA_FUNCS_free": {"0fd5609f5e06df3386a47c2ff457f9508eea03d7": {"6efc5159": {"type": "FUNCTION", "size": 24, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "CRYPTO_get_ex_new_index": {"c352e50f52c4adb155a9dc8aa17d8bae57e758b8": {"e401052b": {"type": "FUNCTION", "size": 316, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"84": {"type": "MIPS_26", "symbol": "sk_new", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "136": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "164": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "172": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "208": {"type": "MIPS_26", "symbol": "sk_push", "scope": "LIBRARY"}}}}}, "CRYPTO_set_ex_data": {"54af10ef7632cf5964e996e50879d1f9b989b94d": {"2e8b263e": {"type": "FUNCTION", "size": 236, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "sk_new", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "108)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "160": {"type": "MIPS_26", "symbol": "sk_push", "scope": "LIBRARY"}}}}}, "CRYPTO_get_ex_data": {"0c2af8e9b69147a887f81b8c00599aa741d35d52": {"00000000": {"type": "FUNCTION", "size": 52, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "CRYPTO_dup_ex_data": {"f985b4344c0634553029f2f196363300bc8b6ed8": {"c6c11449": {"type": "FUNCTION", "size": 224, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"80": {"type": "MIPS_26", "symbol": "CRYPTO_get_ex_data", "scope": "LIBRARY", "original": ".text"}, "164": {"type": "MIPS_26", "symbol": "CRYPTO_set_ex_data", "scope": "LIBRARY", "original": ".text"}}}}}, "CRYPTO_free_ex_data": {"277c989e94465cc089ed58827f9943302259e4fc": {"31a21623": {"type": "FUNCTION", "size": 212, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"96": {"type": "MIPS_26", "symbol": "CRYPTO_get_ex_data", "scope": "LIBRARY", "original": ".text"}, "164": {"type": "MIPS_26", "symbol": "sk_free", "scope": "LIBRARY"}}}}}, "CRYPTO_new_ex_data": {"b3aeb84fba2408882f16172d7ab37b42655069f9": {"3f66981e": {"type": "FUNCTION", "size": 196, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"104": {"type": "MIPS_26", "symbol": "CRYPTO_get_ex_data", "scope": "LIBRARY", "original": ".text"}}}}}, "i2a_ASN1_INTEGER": {"4c959c2acbe39458523db6f0126a4c1103937b6c": {"353a32f2": {"type": "FUNCTION", "size": 340, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_26", "symbol": "BIO_write", "scope": "LIBRARY"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "176": {"type": "MIPS_26", "symbol": "BIO_write", "scope": "LIBRARY"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "252": {"type": "MIPS_26", "symbol": "BIO_write", "scope": "LIBRARY"}}}}}, "a2i_ASN1_INTEGER": {"ba4f5bc6a3deeb17fc1eab74c3f97e2c5e77a4a5": {"c22e8c69": {"type": "FUNCTION", "size": 896, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"84": {"type": "MIPS_26", "symbol": "BIO_gets", "scope": "LIBRARY"}, "468": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "492": {"type": "MIPS_26", "symbol": "R_realloc", "scope": "LIBRARY"}, "524": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "540": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "728": {"type": "MIPS_26", "symbol": "BIO_gets", "scope": "LIBRARY"}, "804": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "836": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "HMAC_new": {"97d770ae2b94f694556af3f1d8408fddd91d6759": {"c32a797f": {"type": "FUNCTION", "size": 204, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "36": {"type": "MIPS_26", "symbol": "memset"}, "44": {"type": "MIPS_26", "symbol": "EVP_MD_CTX_new", "scope": "LIBRARY"}, "60": {"type": "MIPS_26", "symbol": "EVP_MD_CTX_new", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "EVP_MD_CTX_new", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "EVP_MD_CTX_free", "scope": "LIBRARY"}, "132": {"type": "MIPS_26", "symbol": "EVP_MD_CTX_free", "scope": "LIBRARY"}, "152": {"type": "MIPS_26", "symbol": "EVP_MD_CTX_free", "scope": "LIBRARY"}, "176": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "HMAC_free": {"70259931ea2e1528363ea6f0ebc9c00628b76918": {"029364ba": {"type": "FUNCTION", "size": 112, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "EVP_MD_CTX_free", "scope": "LIBRARY"}, "48": {"type": "MIPS_26", "symbol": "EVP_MD_CTX_free", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "EVP_MD_CTX_free", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "memset"}, "104": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "HMAC_digest": {"bc3f406df1b64926c4af204c6d9c18c1a685f849": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "HMAC_copy": {"a6c0b5b69af48a204145f5350289fd8843fb1ab7": {"8886b8be": {"type": "FUNCTION", "size": 264, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "EVP_MD_CTX_copy", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "EVP_MD_CTX_copy", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "EVP_MD_CTX_copy", "scope": "LIBRARY"}}}}}, "HMAC_Init": {"e8248253145e99ba6f3a28eb74d6428835816ed0": {"84c3a0a3": {"type": "FUNCTION", "size": 420, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"76": {"type": "MIPS_26", "symbol": "EVP_MD_block_size", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "EVP_DigestInit", "scope": "LIBRARY"}, "120": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}, "136": {"type": "MIPS_26", "symbol": "EVP_DigestFinal", "scope": "LIBRARY"}, "156": {"type": "MIPS_26", "symbol": "memcpy"}, "180": {"type": "MIPS_26", "symbol": "memset"}, "244": {"type": "MIPS_26", "symbol": "EVP_DigestInit", "scope": "LIBRARY"}, "268": {"type": "MIPS_26", "symbol": "EVP_MD_block_size", "scope": "LIBRARY"}, "284": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}, "340": {"type": "MIPS_26", "symbol": "EVP_DigestInit", "scope": "LIBRARY"}, "348": {"type": "MIPS_26", "symbol": "EVP_MD_block_size", "scope": "LIBRARY"}, "364": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}, "376": {"type": "MIPS_26", "symbol": "EVP_MD_CTX_copy", "scope": "LIBRARY"}}}}}, "HMAC_Update": {"f0a3fc59b1daf25f1c595f3c1a014039a1692dd2": {"7bb45865": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}}}}}, "HMAC_Final": {"cd24439e73822c4fcda561e38637f5f00cd30bba": {"670b2db7": {"type": "FUNCTION", "size": 140, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "EVP_MD_block_size", "scope": "LIBRARY"}, "48": {"type": "MIPS_26", "symbol": "EVP_DigestFinal", "scope": "LIBRARY"}, "60": {"type": "MIPS_26", "symbol": "EVP_MD_CTX_copy", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "EVP_DigestFinal", "scope": "LIBRARY"}}}}}, "HMAC_cleanup": {"5f0f3dffaaeb87ab3cb9be2b65c4dd6d7f95e5cd": {"acf263cb": {"type": "FUNCTION", "size": 68, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler)PS2SDB", 8192}, + std::string_view{R"PS2SDB(_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "EVP_MD_CTX_init", "scope": "LIBRARY"}, "24": {"type": "MIPS_26", "symbol": "EVP_MD_CTX_init", "scope": "LIBRARY"}, "32": {"type": "MIPS_26", "symbol": "EVP_MD_CTX_init", "scope": "LIBRARY"}, "60": {"type": "MIPS_26", "symbol": "memset"}}}}}, "HMAC": {"38faec837002632421dd134adae1f2cab3155a22": {"60e8b26c": {"type": "FUNCTION", "size": 232, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"80": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_26", "symbol": "HMAC_new", "scope": "LIBRARY", "original": ".text"}, "112": {"type": "MIPS_26", "symbol": "HMAC_Init", "scope": "LIBRARY", "original": ".text"}, "136": {"type": "MIPS_26", "symbol": "HMAC_Update", "scope": "LIBRARY", "original": ".text"}, "152": {"type": "MIPS_26", "symbol": "HMAC_Final", "scope": "LIBRARY", "original": ".text"}, "172": {"type": "MIPS_26", "symbol": "HMAC_free", "scope": "LIBRARY", "original": ".text"}}}}}, "i2d_DSAparams": {"09f6eb66a3c84a6d0ab132bbbbd055639d6ae332": {"c5a881b1": {"type": "FUNCTION", "size": 444, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"120": {"type": "MIPS_26", "symbol": "BN_num_bits", "scope": "LIBRARY"}, "172": {"type": "MIPS_26", "symbol": "ASN1_object_size", "scope": "LIBRARY"}, "208": {"type": "MIPS_26", "symbol": "ASN1_object_size", "scope": "LIBRARY"}, "252": {"type": "MIPS_26", "symbol": "ASN1_put_object", "scope": "LIBRARY"}, "268": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "300": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "340": {"type": "MIPS_26", "symbol": "BN_bn2bin", "scope": "LIBRARY"}, "356": {"type": "MIPS_26", "symbol": "i2d_ASN1_INTEGER", "scope": "LIBRARY"}, "384": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "i2d_PublicKey": {"1e221283887bb966550183f91b9f3cac871bc0a0": {"18df9b40": {"type": "FUNCTION", "size": 96, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "60": {"type": "MIPS_26", "symbol": "i2d_RSAPublicKey", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "i2d_DSAPublicKey", "scope": "LIBRARY"}}}}}, "i2d_DSAPublicKey": {"c5d13487e9823a29d73e71caab2f45982bcdc69e": {"e431b3c2": {"type": "FUNCTION", "size": 516, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"136": {"type": "MIPS_26", "symbol": "BN_num_bits", "scope": "LIBRARY"}, "196": {"type": "MIPS_26", "symbol": "ASN1_object_size", "scope": "LIBRARY"}, "232": {"type": "MIPS_26", "symbol": "ASN1_object_size", "scope": "LIBRARY"}, "300": {"type": "MIPS_26", "symbol": "ASN1_put_object", "scope": "LIBRARY"}, "328": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "360": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "412": {"type": "MIPS_26", "symbol": "BN_bn2bin", "scope": "LIBRARY"}, "428": {"type": "MIPS_26", "symbol": "i2d_ASN1_INTEGER", "scope": "LIBRARY"}, "448": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "lh_new": {"1a61c4aee2463b5fd0e3b1cd59367a5f57284d02": {"be49328b": {"type": "FUNCTION", "size": 292, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "48": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "116": {"type": "MIPS_HI16", "symbol": "strcmp"}, "120": {"type": "MIPS_LO16", "symbol": "strcmp"}, "136": {"type": "MIPS_HI16", "symbol": "lh_strhash", "original": ".text"}, "140": {"type": "MIPS_LO16", "symbol": "lh_strhash", "original": ".text"}, "256": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "lh_free": {"b757fe78fdad4e5eabca77e06e9af1882fffbcb3": {"cad94c47": {"type": "FUNCTION", "size": 136, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "128": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "lh_insert": {"32d823eb20403fa0ad3a9a171f0e688aa6b51f45": {"22235049": {"type": "FUNCTION", "size": 236, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "__udivdi3"}, "64": {"type": "MIPS_26", "symbol": "expand", "scope": "LIBRARY", "original": ".text"}, "80": {"type": "MIPS_26", "symbol": "getrn", "scope": "LIBRARY", "original": ".text"}, "104": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}}}}}, "lh_delete": {"e3fa3f02100e75644ea4d88501551a54d0772883": {"cfefe9ae": {"type": "FUNCTION", "size": 184, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "getrn", "scope": "LIBRARY", "original": ".text"}, "76": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "128": {"type": "MIPS_26", "symbol": "__udivdi3"}, "152": {"type": "MIPS_26", "symbol": "contract", "scope": "LIBRARY", "original": ".text"}}}}}, "lh_retrieve": {"93c9cec5dcffb8aac78f70038bcfb9556a2ffdf4": {"42f6197d": {"type": "FUNCTION", "size": 88, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "getrn", "scope": "LIBRARY", "original": ".text"}}}}}, "lh_doall": {"518de07cc1e2c0af725e2f8d0a222d294a25a700": {"e332ea88": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_26", "symbol": "lh_doall_arg", "scope": "LIBRARY", "original": ".text"}}}}}, "lh_doall_arg": {"7c2cc9db39d01beed02848019ee6028152d8077d": {"00000000": {"type": "FUNCTION", "size": 152, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "expand": {"5d0b2d2b3c1d3f02da8d8760b309f69393908724": {"04d9c1be": {"type": "FUNCTION", "size": 376, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"128": {"type": "MIPS_26", "symbol": "__umoddi3"}, "216": {"type": "MIPS_26", "symbol": "R_realloc", "scope": "LIBRARY"}}}}}, "contract": {"c7f64399b15f06c07f67e9da4a701058972b17c3": {"b84e20ae": {"type": "FUNCTION", "size": 292, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"80": {"type": "MIPS_26", "symbol": "R_realloc", "scope": "LIBRARY"}}}}}, "getrn": {"6de3e6845b8f922d591d929c280031ce4f64e7c7": {"2bf4d2a0": {"type": "FUNCTION", "size": 260, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"80": {"type": "MIPS_26", "symbol": "__umoddi3"}, "108": {"type": "MIPS_26", "symbol": "__umoddi3"}}}}}, "lh_strhash": {"79d88811deed122800b5a23acc138a69ecd8e381": {"8faf2281": {"type": "FUNCTION", "size": 208, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"1)PS2SDB", 8192}, + std::string_view{R"PS2SDB(40": {"type": "MIPS_26", "symbol": "__muldi3"}}}}}, "EVP_dss1": {"2a51c093207f3b6546ea5ac91d4ae4a6999eaed5": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "EVP_md2": {"2a51c093207f3b6546ea5ac91d4ae4a6999eaed5": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "EVP_md5": {"2a51c093207f3b6546ea5ac91d4ae4a6999eaed5": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "EVP_md5_digest": {"2a51c093207f3b6546ea5ac91d4ae4a6999eaed5": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "EVP_sha1_digest": {"2a51c093207f3b6546ea5ac91d4ae4a6999eaed5": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "EVP_sha1": {"2a51c093207f3b6546ea5ac91d4ae4a6999eaed5": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "MD2_options": {"2a51c093207f3b6546ea5ac91d4ae4a6999eaed5": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "MD2_Init": {"72979aa59a1dd57286e9b8beed17db4df52280c4": {"93457cf2": {"type": "FUNCTION", "size": 80, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "memset"}, "44": {"type": "MIPS_26", "symbol": "memset"}, "72": {"type": "MIPS_26", "symbol": "memset"}}}}}, "MD2_Update": {"44a52c01d2c19e72ec10f7b149722bd3da0718b4": {"37ea91d9": {"type": "FUNCTION", "size": 252, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"84": {"type": "MIPS_26", "symbol": "memcpy"}, "120": {"type": "MIPS_26", "symbol": "memcpy"}, "132": {"type": "MIPS_26", "symbol": "md2_block", "scope": "LIBRARY", "original": ".text"}, "168": {"type": "MIPS_26", "symbol": "md2_block", "scope": "LIBRARY", "original": ".text"}, "208": {"type": "MIPS_26", "symbol": "memcpy"}}}}}, "md2_block": {"e3aca971c31a1d9a47dda4ab2c83dd739e4149ca": {"c208e42b": {"type": "FUNCTION", "size": 548, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "528": {"type": "MIPS_26", "symbol": "memset"}}}}}, "MD2_Final": {"ef09998aa76b0cc7ffdd7dcda378780fb6f6adcb": {"4f075720": {"type": "FUNCTION", "size": 240, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"104": {"type": "MIPS_26", "symbol": "md2_block", "scope": "LIBRARY", "original": ".text"}, "156": {"type": "MIPS_26", "symbol": "md2_block", "scope": "LIBRARY", "original": ".text"}}}}}, "MD5_Init": {"0976b0a167eac76cdd0f4558cc057a63a157392e": {"5a263586": {"type": "FUNCTION", "size": 80, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"72": {"type": "MIPS_26", "symbol": "memset"}}}}}, "MD5_Update": {"0ad137e9f31d872fa4346057b1e388e06886594c": {"6c8f3b96": {"type": "FUNCTION", "size": 456, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"164": {"type": "MIPS_26", "symbol": "memcpy"}, "200": {"type": "MIPS_26", "symbol": "memcpy"}, "216": {"type": "MIPS_26", "symbol": "md5_block_small", "scope": "LIBRARY", "original": ".text"}, "372": {"type": "MIPS_26", "symbol": "md5_block_small", "scope": "LIBRARY", "original": ".text"}, "416": {"type": "MIPS_26", "symbol": "memcpy"}}}}}, "md5_block_small": {"a342979168c910952fad548b5c9db82e0a40762b": {"cf60d76c": {"type": "FUNCTION", "size": 884, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "348": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "356": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "500": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "504": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "508": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "512": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "660": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "664": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "668": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "672": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "MD5_Final": {"55e325311c80c5ac1dcc8849d95ad08bcffcbcef": {"86ed12ef": {"type": "FUNCTION", "size": 436, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"112": {"type": "MIPS_26", "symbol": "md5_block_small", "scope": "LIBRARY", "original": ".text"}, "136": {"type": "MIPS_26", "symbol": "memset"}, "212": {"type": "MIPS_26", "symbol": "md5_block_small", "scope": "LIBRARY", "original": ".text"}}}}}, "MD5_Transform": {"b262347f72b212f0fa5847c53a466dccec6babd4": {"f2b62b86": {"type": "FUNCTION", "size": 256, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"236": {"type": "MIPS_26", "symbol": "md5_block_small", "scope": "LIBRARY", "original": ".text"}}}}}, "MD5": {"8d5727e3fb5834fed583e59)PS2SDB", 8192}, + std::string_view{R"PS2SDB(9a018f68bccb94871": {"dacd6dca": {"type": "FUNCTION", "size": 124, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_26", "symbol": "MD5_Init", "scope": "LIBRARY"}, "60": {"type": "MIPS_26", "symbol": "MD5_Update", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "MD5_Final", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "memset"}}}}}, "OBJ_NAME_init": {"35633d012f1f4c39953a54bd4970a25b41a4ea37": {"0a170834": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "40": {"type": "MIPS_26", "symbol": "lh_new", "scope": "LIBRARY"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "OBJ_NAME_new_index": {"8982776d83505064dfe74cc126dc96d48792d75d": {"4e3de222": {"type": "FUNCTION", "size": 392, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_26", "symbol": "sk_new", "scope": "LIBRARY"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_26", "symbol": "sk_new", "scope": "LIBRARY"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_26", "symbol": "sk_new", "scope": "LIBRARY"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "188": {"type": "MIPS_HI16", "symbol": "strcmp"}, "192": {"type": "MIPS_HI16", "symbol": "lh_strhash"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "200": {"type": "MIPS_LO16", "symbol": "strcmp"}, "204": {"type": "MIPS_26", "symbol": "sk_push", "scope": "LIBRARY"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "216": {"type": "MIPS_26", "symbol": "sk_push", "scope": "LIBRARY"}, "220": {"type": "MIPS_LO16", "symbol": "lh_strhash"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "228": {"type": "MIPS_26", "symbol": "sk_push", "scope": "LIBRARY"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "248": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "obj_name_cmp": {"13652568b4c2afdd8b7ce652823a13342c63cadf": {"2f67906c": {"type": "FUNCTION", "size": 116, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_26", "symbol": "strcmp"}}}}}, "obj_name_hash": {"cb717a0f49f6eea2814c7020c8a0df9cfdfabe94": {"8ee64c96": {"type": "FUNCTION", "size": 116, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_26", "symbol": "lh_strhash", "scope": "LIBRARY"}}}}}, "OBJ_NAME_get": {"c3431a94af842e0ca3677caf1213b7d5a0f624ed": {"787ef0ae": {"type": "FUNCTION", "size": 216, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_26", "symbol": "OBJ_NAME_init", "scope": "LIBRARY", "original": ".text"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_26", "symbol": "lh_retrieve", "scope": "LIBRARY"}}}}}, "OBJ_NAME_add": {"e4fdcb0f08a1f1349cc9bfc9a94d56b009ba29e7": {"a60913f2": {"type": "FUNCTION", "size": 284, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_26", "symbol": "OBJ_NAME_init", "scope": "LIBRARY", "original": ".text"}, "92": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_26", "symbol": "lh_insert", "scope": "LIBRARY"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "212": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "OBJ_NAME_remove": {"b78341386b2e584b7c67a43589dec7620bbc8c12": {"fcb284fd": {"type": "FUNCTION", "size": 180, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_26", "symbol": "lh_delete", "scope": "LIBRARY"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "names_lh_free": {"9b337b070248ace19716ef10ae16a1dfaf6f5725": {"a85f9fc0": {"type": "FUNCTION", "size": 48, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_26", "symbol": "OBJ_NAME_remove", "scope": "LIBRARY", "original": ".text"}}}}}, "OBJ_NAME_cleanup": {"a53cff4b312aadd5c88b1a6aa049cb2f0f1e0914": {"8eea0a17": {"type": "FUNCTION", "size": 176, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "52": {"type": "MIPS_HI16", "symbol": "names_lh_free", "original": ".text"}, "60": {"type": "MIPS_LO16", "symbol": "names_lh_free", "original": ".text"}, "64": {"type": "MIPS_26", "symbol": "lh_doall", "scope": "LIBRARY"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_26", "symbol": "lh_free", "scope": "LIBRARY"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_26", "symbol": "sk_free", "scope": "LIBRARY"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_26", "symbol": "sk_free", "scope": "LIBRARY"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_26", "symbol": "sk_free", "scope": "LIBRARY"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "add_hash": {"7a2df294fa161f3fc35b66488f7f239a211389f9": {"d7b48ae1": {"type": "FUNCTION", "size": 248, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"196": {"type": "MIPS_26", "symbol": "lh_strhash", "scope": "LIBRARY"}}}}}, "add_cmp": {"5f180ea1f634d234671ccb4fcd3540846ca76a7b": {"e4d8536a": {"type": "FUNCTION", "size": 220, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"120": {"type": "MIPS_26", "symbol": "memcmp"}, "184": {"type": "MIPS_26", "symbol": "strcmp"}}}}}, "init_added": {"35633d012f1f4c39953a54bd4970a25b41a4ea37": {"0a170834": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "40": {"type": "MIPS_26", "symbol": "lh_new", "scope": "LIBRARY"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "cleanup1": {"c656def7ed5eb24a6beadfedffab625dc0f59cb1": {"00000000": {"type": "FUNCTION", "size": 28, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "cleanup2": {"70ec03111372dc92baf7a88ec82992e601960431": {"00000000": {"type": "FUNCTION", "size": 20, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "cleanup3": {"9f57d5874cd00bc9c32f77b41e2f6f509f8680a2": {"8cb70553": {"type": "FUNCTION", "size": 64, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "ASN1_OBJECT_free", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "OBJ_cleanup": {"ce31dc4f9ba5a0b0a9c56fe43690192499ac907c": {"24fec4cf": {"type": "FUNCTION", "size": 104, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "36": {"type": "MIPS_26", "symbol": "lh_doall", "scope": "LIBRARY"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_26", "symbol": "lh_doall", "scope": "LIBRARY"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_26", "symbol": "lh_doall", "scope": "LIBRARY"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "76": {"type": "MIPS_26", "symbol": "lh_free", "scope": "LIBRARY"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "OBJ_new_nid": {"f1ef29549a2316fce6fedf28575de0e2b0037008": {"8f93bc01": {"type": "FUNCTION", "size": 20, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "OBJ_add_object": {"2eea11de2d70a1b17b023f8a5aed0116933e87a3": {"e99d6136": {"type": "FUNCTION", "size": 372, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "init_added", "scope": "LIBRARY", "original": ".text"}, "56": {"type": "MIPS_26", "symbol": "OBJ_dup", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "148": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "172": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "220": {"type": "MIPS_26", "symbol": "lh_insert", "scope": "LIBRARY"}, "236": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "308": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "332": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "OBJ_nid2obj": {"16cce3bac6470b40e9e8c3be0b032e5f0c1667ae": {"f7013033": {"type": "FUNCTION", "size": 180, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_26", "symbol": "lh_retrieve", "scope": "LIBRARY"}, "156": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "OBJ_nid2sn": {"c1f65c8d99403ad03e7f8dd75059d51737f4f3af": {"87bda6be": {"type": "FUNCTION", "size": 184, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"ty)PS2SDB", 8192}, + std::string_view{R"PS2SDB(pe": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_26", "symbol": "lh_retrieve", "scope": "LIBRARY"}, "160": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "OBJ_nid2ln": {"12ba480af7972f3a319325998d18a2ec2898fe0e": {"18a69e96": {"type": "FUNCTION", "size": 188, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_26", "symbol": "lh_retrieve", "scope": "LIBRARY"}, "164": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "OBJ_obj2nid": {"66d4a8af287c0481413fb39f6d15e8d25f8b8a0d": {"9c317ad2": {"type": "FUNCTION", "size": 144, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "lh_retrieve", "scope": "LIBRARY"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "84": {"type": "MIPS_HI16", "symbol": "obj_cmp", "original": ".text"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_LO16", "symbol": "obj_cmp", "original": ".text"}, "104": {"type": "MIPS_26", "symbol": "OBJ_bsearch", "scope": "LIBRARY", "original": ".text"}}}}}, "OBJ_ln2nid": {"a02dc591e2b2b520d0b40b56fd68ed9c85b413a2": {"ffa545d5": {"type": "FUNCTION", "size": 132, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_26", "symbol": "lh_retrieve", "scope": "LIBRARY"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_HI16", "symbol": "ln_cmp", "original": ".text"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_LO16", "symbol": "ln_cmp", "original": ".text"}, "92": {"type": "MIPS_26", "symbol": "OBJ_bsearch", "scope": "LIBRARY", "original": ".text"}}}}}, "OBJ_sn2nid": {"aa8903bca2393096e3a26272116ba86687fe94d7": {"16746910": {"type": "FUNCTION", "size": 128, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_26", "symbol": "lh_retrieve", "scope": "LIBRARY"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_HI16", "symbol": "sn_cmp", "original": ".text"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "sn_cmp", "original": ".text"}, "88": {"type": "MIPS_26", "symbol": "OBJ_bsearch", "scope": "LIBRARY", "original": ".text"}}}}}, "obj_cmp": {"69ee4df65f9fd6e9e507d0e556c096a8d859d2a3": {"a1e6b4ef": {"type": "FUNCTION", "size": 60, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "memcmp"}}}}}, "OBJ_bsearch": {"134461f4fffd713671a6c8273c1db5f4937cbd1c": {"00000000": {"type": "FUNCTION", "size": 212, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "OBJ_create_objects": {"e4b19fd8801349893c038faaed3df3289fdbf294": {"5cd86775": {"type": "FUNCTION", "size": 540, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "80": {"type": "MIPS_26", "symbol": "BIO_gets", "scope": "LIBRARY"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "304": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "396": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "472": {"type": "MIPS_26", "symbol": "OBJ_create", "scope": "LIBRARY", "original": ".text"}}}}}, "OBJ_create": {"80ebc24997013bac11973acaf1b1b5d1cb8f04ff": {"b59ead23": {"type": "FUNCTION", "size": 268, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "a2d_ASN1_OBJECT", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "120": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "144": {"type": "MIPS_26", "symbol": "a2d_ASN1_OBJECT", "scope": "LIBRARY"}, "156": {"type": "MIPS_26", "symbol": "OBJ_new_nid", "scope": "LIBRARY", "original": ".text"}, "180": {"type": "MIPS_26", "symbol": "ASN1_OBJECT_create", "scope": "LIBRARY"}, "200": {"type": "MIPS_26", "symbol": "OBJ_add_object", "scope": "LIBRARY", "original": ".text"}, "212": {"type": "MIPS_26", "symbol": "ASN1_OBJECT_free", "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "sn_cmp": {"88e5aa5fa729252af041764fdd7a5e7b164be1a1": {"dce3557a": {"type": "FUNCTION", "size": 40, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "strcmp"}}}}}, "ln_cmp": {"5b4bb513cdba0dc9d681fb505aaff4db9f817977": {"dce3557a": {"type": "FUNCTION", "size": 40, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "strcmp"}}}}}, "OBJ_dup": {"2bb45749742b9f556c6f649c2ba63dafe2951c5f": {"73b048af": {"type": "FUNCTION", "size": 392, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "ASN1_OBJECT_new", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "120": {"type": "MIPS_26", "symbol": "memcpy"}, "164": {"type": "MIPS_26", "symbol": "strlen"}, "176": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "200": {"type": "MIPS_26", "symbol": "memcpy"}, "220": {"type": "MIPS_26", "symbol": "strlen"}, "232": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "256": {"type": "MIPS_26", "symbol": "memcpy"}, "300": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "328": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "348": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "356": {"type": "MIPS_26", "symbol": "R_free", "scope)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": "LIBRARY"}}}}}, "OBJ_cmp": {"baa5e574b39efc04d7069e08d644e77aafb4bdbb": {"a7eac211": {"type": "FUNCTION", "size": 52, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "memcmp"}}}}}, "OP_default_callback": {"5513cfbd306a0ac64ed7822c7e7fa1e0a879a2bb": {"3e61ee56": {"type": "FUNCTION", "size": 496, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"72": {"type": "MIPS_26", "symbol": "R_EITEMS_find_item", "scope": "LIBRARY"}, "120": {"type": "MIPS_26", "symbol": "BER_ITEM_set_all", "scope": "LIBRARY"}, "172": {"type": "MIPS_26", "symbol": "R_EITEMS_find_item", "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "BER_ITEM_set_all", "scope": "LIBRARY"}, "268": {"type": "MIPS_26", "symbol": "R_EITEMS_find_item", "scope": "LIBRARY"}, "340": {"type": "MIPS_26", "symbol": "R_EITEMS_add", "scope": "LIBRARY"}, "392": {"type": "MIPS_26", "symbol": "R_EITEMS_add", "scope": "LIBRARY"}, "440": {"type": "MIPS_26", "symbol": "R_EITEMS_find_item", "scope": "LIBRARY"}}}}}, "OP_CTX_init": {"47fd2dc4829f9344b44a60ad027ca3af6ab31b7a": {"4fc9ab68": {"type": "FUNCTION", "size": 44, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "OP_all_funcs", "scope": "LIBRARY"}, "36": {"type": "MIPS_26", "symbol": "OP_CTX_init_meth", "scope": "LIBRARY"}}}}}, "OP_CTX_init_read": {"47fd2dc4829f9344b44a60ad027ca3af6ab31b7a": {"d24b60bb": {"type": "FUNCTION", "size": 44, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "OP_read_funcs", "scope": "LIBRARY"}, "36": {"type": "MIPS_26", "symbol": "OP_CTX_init_meth", "scope": "LIBRARY"}}}}}, "OP_CTX_set_function": {"169a37cb23ef1250563d964f9583b3d70b6d34a2": {"00000000": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "OP_CTX_code": {"cba90f09dbc0dcbd231b8d9980ba63c1c239aad1": {"2f61a4ab": {"type": "FUNCTION", "size": 608, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"76": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "memset"}, "288": {"type": "MIPS_26", "symbol": "R_realloc", "scope": "LIBRARY"}, "472": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "508": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "516": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "536": {"type": "MIPS_26", "symbol": "memset"}}}}}, "OP_CTX_init_meth": {"6e208ef66b4fca667b7351ab40db245334f7f3be": {"7a2d8609": {"type": "FUNCTION", "size": 80, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "memset"}, "48": {"type": "MIPS_26", "symbol": "BER_ITEMS_SK_init", "scope": "LIBRARY"}}}}}, "OP_CTX_free": {"9080965cb68103babcf11d82226fdc6ce61e1b40": {"d2044581": {"type": "FUNCTION", "size": 136, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "BER_ITEMS_SK_free", "scope": "LIBRARY"}, "36": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "OP_CTX_reset": {"91ffba467e5ca38d2e785b308abcf23f7a0da740": {"85a98e37": {"type": "FUNCTION", "size": 96, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "BER_ITEMS_SK_free", "scope": "LIBRARY"}, "44": {"type": "MIPS_26", "symbol": "BER_ITEMS_SK_init", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "memset"}}}}}, "OP_CTX_encode": {"61de0e91fbce3eadb02f0ace3e6704c1eaaa5c0e": {"2f5a90e1": {"type": "FUNCTION", "size": 116, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "BER_ITEMS_recalc_length", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "BER_ITEMS_encode", "scope": "LIBRARY"}}}}}, "OP_CTX_decode": {"a996acc4bb2cab69c53c5dd39cdc0358dcc3f8fd": {"209df56c": {"type": "FUNCTION", "size": 80, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "BER_parse", "scope": "LIBRARY"}}}}}, "OP_all_funcs": {"2a51c093207f3b6546ea5ac91d4ae4a6999eaed5": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "OP_read_funcs": {"2a51c093207f3b6546ea5ac91d4ae4a6999eaed5": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "op_finish": {"c944466685cdf400325e12221efe35f5bca87cb0": {"00000000": {"type": "FUNCTION", "size": 44, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "op_mark": {"41dcebfeffdf4efd2aadc2f74dafce58acb6cb57": {"1c03284c": {"type": "FUNCTION", "size": 460, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"92": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "op_label": {"0a5385cf4a659d302a43046ea0269e2b17a3ef1d": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "op_asn1_encode": {"cfd9c2e2409a28239e696dfc3545b5addc3c1f4d": {"a466f7c1": {"type": "FUNCTION", "size": 724, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"156": {"type": "MIPS_26", "symbol": "BER_ITEMS_SK_get", "scope": "LIBRARY"}, "228": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "384": {"type": "MIPS_26", "symbol": "BER_ITEM_set_prefix_byte", "scope": "LIBRARY"}, "436": {"type": "MIPS_26", "symbol": "BER_ITEM_set_all", "scope": "LIBRARY"}, "460": {"type": "MIPS_26", "symbol": "BER_ITEM_set_long", "scope": "LIBRARY"}, "480": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "488": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "492": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "496": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "520": {"type": "MIPS_26", "symbol": "BER_ITEM_set_all", "scope": "LIBRARY"}, "580": {"type": "MIPS_26",)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "symbol": "BER_ITEM_set_prefix_byte", "scope": "LIBRARY"}, "644": {"type": "MIPS_26", "symbol": "BER_ITEMS_under", "scope": "LIBRARY"}, "660": {"type": "MIPS_26", "symbol": "BER_ITEMS_append", "scope": "LIBRARY"}}}}}, "op_call": {"bb3e496107e98166b81d7abd800e1112359c28d2": {"00000000": {"type": "FUNCTION", "size": 292, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "op_asn1_get": {"b669bc1d80540df065270082ab0f4325e95f5d62": {"5137fe91": {"type": "FUNCTION", "size": 292, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"260": {"type": "MIPS_26", "symbol": "BER_ITEM_get_long", "scope": "LIBRARY"}}}}}, "op_asn1_check": {"3fc673aec7b5ddce0297656b2484c5fa2da7deb0": {"00000000": {"type": "FUNCTION", "size": 300, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "op_if": {"8418162df139bedc18c31b2e7c06a71ce9bc0027": {"dc2b5408": {"type": "FUNCTION", "size": 256, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"84": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "op_maths": {"52d1e6b75582a3894b827fb5c41afb45fa4eb798": {"5afcb877": {"type": "FUNCTION", "size": 268, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"116": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "160": {"type": "MIPS_26", "symbol": "__muldi3"}, "184": {"type": "MIPS_26", "symbol": "__divdi3"}, "208": {"type": "MIPS_26", "symbol": "__moddi3"}}}}}, "op_load": {"b9deeac62b1b263a565bdb6acddb8ab0aad39b25": {"00000000": {"type": "FUNCTION", "size": 164, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "op_push": {"797b703364b942ad8149ea8b1cb6da329b491b24": {"fc2cbfe1": {"type": "FUNCTION", "size": 240, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_26", "symbol": "R_realloc", "scope": "LIBRARY"}}}}}, "op_pop": {"047fc414d8d72a84c20b66125ee502aae8b9c00e": {"00000000": {"type": "FUNCTION", "size": 108, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "op_push_pop": {"74776516fccdbbffa5f53cdb91f20f80234ea775": {"f39a45a6": {"type": "FUNCTION", "size": 100, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "op_push", "scope": "LIBRARY", "original": ".text"}, "68": {"type": "MIPS_26", "symbol": "op_pop", "scope": "LIBRARY", "original": ".text"}}}}}, "op_undef": {"d2362927ecfc5f7d03618c9b8ef42690ee17299f": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "OP_CTX_run": {"732cd22b767edce6b2b0a12f6dfa950515ee12b6": {"00000000": {"type": "FUNCTION", "size": 332, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "OP_decode": {"964e3c6131da9e051b3fc17750af79498f93a267": {"c998ed8b": {"type": "FUNCTION", "size": 240, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_26", "symbol": "OP_CTX_init_read", "scope": "LIBRARY"}, "72": {"type": "MIPS_HI16", "symbol": "OP_default_callback"}, "80": {"type": "MIPS_26", "symbol": "OP_CTX_set_function", "scope": "LIBRARY"}, "84": {"type": "MIPS_LO16", "symbol": "OP_default_callback"}, "100": {"type": "MIPS_26", "symbol": "OP_CTX_reset", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "OP_CTX_code", "scope": "LIBRARY"}, "148": {"type": "MIPS_26", "symbol": "OP_CTX_decode", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "OP_CTX_run", "scope": "LIBRARY"}, "188": {"type": "MIPS_26", "symbol": "OP_CTX_free", "scope": "LIBRARY"}}}}}, "OP_encode": {"14e3bcb2282d81fc25a8e92807e0b54e0a764112": {"d09a2e40": {"type": "FUNCTION", "size": 240, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_26", "symbol": "OP_CTX_init", "scope": "LIBRARY"}, "72": {"type": "MIPS_HI16", "symbol": "OP_default_callback"}, "80": {"type": "MIPS_26", "symbol": "OP_CTX_set_function", "scope": "LIBRARY"}, "84": {"type": "MIPS_LO16", "symbol": "OP_default_callback"}, "100": {"type": "MIPS_26", "symbol": "OP_CTX_reset", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "OP_CTX_code", "scope": "LIBRARY"}, "140": {"type": "MIPS_26", "symbol": "OP_CTX_run", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "OP_CTX_encode", "scope": "LIBRARY"}, "188": {"type": "MIPS_26", "symbol": "OP_CTX_free", "scope": "LIBRARY"}}}}}, "EVP_PKEY_bits": {"6d7240ece807098bd3054c64df6d8012820ee11b": {"48766b93": {"type": "FUNCTION", "size": 80, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "RSA_size", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "BN_num_bits", "scope": "LIBRARY"}}}}}, "EVP_PKEY_size": {"73458bee863a3d3e4f515a45ed8125711adf914e": {"fa80c557": {"type": "FUNCTION", "size": 84, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "RSA_size", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "DSA_size", "scope": "LIBRARY"}}}}}, "EVP_PKEY_save_parameters": {"660c9c451555159c16656359756468fbe41fa9c7": {"00000000": {"type": "FUNCTION", "size": 48, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "EVP_PKEY_copy_parameters": {"2d2dd4c87499789e14095d6f7d21f582a44042d6": {"4eb6042c": {"type": "FUNCTION", "size": 312, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "EVP_PKEY_missing_parameters", "scope": "LIBRARY", "original": ".text"}, "84": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "120": {"type": "MIPS_26", "symbol": "BN_dup", "scope": "LIBRARY"}, "156": {"type": "MIPS_26", "symbol": "BN_free", "scope": "LIBRARY"}, "176": {"type": "MIPS_26", "symbol": "BN_dup", "scope": "LIBRARY"}, "212": {"type": "MIPS_26", "symbol": "BN_free", "scope": "LIBRARY"}, "232": {"type": "MIPS_26", "symbol": "BN_dup", "scope": "LIBRARY"}, "268": {"type": "MIPS_26", "symbol": "BN_free", "scope": "LIBRARY"}}}}}, "EVP_PKEY_missing_parameters": {"2873429c3dfeaf55b2b0b6a8505f3352a66ed744": {"00000000": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "EVP_PKEY_cmp_parameters": {"a0fa1dd488e064f654ecb3040e6661b3c84fcab3": {"7d22bf94": {"type": "FUNCTION", "size": 164, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": [)PS2SDB", 8192}, + std::string_view{R"PS2SDB("2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "BN_cmp", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "BN_cmp", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "BN_cmp", "scope": "LIBRARY"}}}}}, "EVP_PKEY_new": {"efc831f0b020d7c844ab193e099d639ff17c8675": {"922ed48c": {"type": "FUNCTION", "size": 96, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "44": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "EVP_PKEY_reference_inc": {"5e3d7111567c2e517a07beb80bb51507b0a553ea": {"93a5c2b1": {"type": "FUNCTION", "size": 28, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "20": {"type": "MIPS_26", "symbol": "R_locked_add", "scope": "LIBRARY"}}}}}, "EVP_PKEY_assign": {"72d8dabb3ee3752fded91f4587dc78ebb79c0592": {"945bf3fd": {"type": "FUNCTION", "size": 108, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "EVP_PKEY_free_it", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_26", "symbol": "EVP_PKEY_type", "scope": "LIBRARY", "original": ".text"}}}}}, "EVP_PKEY_key_type": {"d98051065fa439640f18069be52b0c0b737170c7": {"365e203f": {"type": "FUNCTION", "size": 28, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "EVP_PKEY_type", "scope": "LIBRARY", "original": ".text"}}}}}, "EVP_PKEY_get_num_primes": {"96f9964f7771e1eb3066850cd78e291447987253": {"16665c0b": {"type": "FUNCTION", "size": 76, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "EVP_PKEY_type", "scope": "LIBRARY", "original": ".text"}, "48": {"type": "MIPS_26", "symbol": "RSA_get", "scope": "LIBRARY"}}}}}, "EVP_PKEY_type": {"9fed89a18ca2251fea36ddd27a3237052378224b": {"00000000": {"type": "FUNCTION", "size": 160, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "EVP_PKEY_save_type": {"49629bfd21111872a95cda909da7446d13180ce9": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "EVP_PKEY_free": {"ba7d39f0b8714a4acd71bb107b754affe7871f10": {"1a80d988": {"type": "FUNCTION", "size": 100, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_26", "symbol": "R_locked_add", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "EVP_PKEY_free_it", "scope": "LIBRARY", "original": ".text"}, "76": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "EVP_PKEY_free_it": {"671b18c20a3218523ae1ae86d4f0f0b73bdf4745": {"fe477f1b": {"type": "FUNCTION", "size": 156, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"132": {"type": "MIPS_26", "symbol": "RSA_free", "scope": "LIBRARY"}, "140": {"type": "MIPS_26", "symbol": "DSA_free", "scope": "LIBRARY"}, "148": {"type": "MIPS_26", "symbol": "DH_free", "scope": "LIBRARY"}}}}}, "EVP_PKEY_get_RSA": {"46ff10165a660eed56535239fc4282ac64674bb1": {"00000000": {"type": "FUNCTION", "size": 20, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "EVP_PKEY_get_DSA": {"46ff10165a660eed56535239fc4282ac64674bb1": {"00000000": {"type": "FUNCTION", "size": 20, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "EVP_PKEY_get_DH": {"46ff10165a660eed56535239fc4282ac64674bb1": {"00000000": {"type": "FUNCTION", "size": 20, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "EVP_SignFinal": {"6b6f21dd0fa8a311b5aeab13ab34b14c841f17a5": {"9bf8d391": {"type": "FUNCTION", "size": 344, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "EVP_MD_CTX_new", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "EVP_MD_CTX_copy", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "EVP_DigestFinal", "scope": "LIBRARY"}, "192": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "216": {"type": "MIPS_26", "symbol": "EVP_MD_CTX_free", "scope": "LIBRARY"}, "280": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "296": {"type": "MIPS_26", "symbol": "EVP_MD_CTX_free", "scope": "LIBRARY"}}}}}, "EVP_VerifyFinal": {"46791ab1b80d413fced46411951a3dad3eacd83b": {"cdc4d166": {"type": "FUNCTION", "size": 348, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"140": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "156": {"type": "MIPS_26", "symbol": "EVP_MD_CTX_new", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "EVP_MD_CTX_copy", "scope": "LIBRARY"}, "200": {"type": "MIPS_26", "symbol": "EVP_DigestFinal", "scope": "LIBRARY"}, "224": {"type": "MIPS_26", "symbol": "EVP_MD_CTX_free", "scope": "LIBRARY"}, "288": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "304": {"type": "MIPS_26", "symbol": "EVP_MD_CTX_free", "scope": "LIBRARY"}}}}}, "PEM_read_bio_X509": {"a283e6c894f6641090fa2212a84d8654b86d2863": {"e466f16f": {"type": "FUNCTION", "size": 56, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "d2i_X509"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "28": {"type": "MIPS_LO16", "symbol": "d2i_X509"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_26", "symbol": "PEM_ASN1_read_bio", "scope": "LIBRARY"}}}}}, "PEM_read_bio_X509_CRL": {"a283e6c894f6641090fa2212a84d8654b86d2863": {"39855065": {"type": "FUNCTION", "size": 56, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "d2i_X509_CRL"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "28": {"type": "MIPS_LO16", "symbol": "d2i_X509_CRL"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_26", "symbol": "PEM_ASN1_read_bio", "scope": "LIBRARY"}}}}}, "PEM_read_bio_PrivateKey": {"a283e6c894f6641090fa2212a84d8654b86d2863": {"dde82338": {"type": "FUNCTION", "size": 56, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "d2i_PrivateKey"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "28": {"type)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": "MIPS_LO16", "symbol": "d2i_PrivateKey"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_26", "symbol": "PEM_ASN1_read_bio", "scope": "LIBRARY"}}}}}, "pem_pwd_def_cb": {"705933ec31d27d11643943c93aba9c3c0a2e5c12": {"b076031d": {"type": "FUNCTION", "size": 236, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "EVP_get_pw_prompt", "scope": "LIBRARY"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": "_impure_ptr"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_26", "symbol": "EVP_read_pw_string", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "132": {"type": "MIPS_26", "symbol": "memset"}, "148": {"type": "MIPS_26", "symbol": "strlen"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": "_impure_ptr"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "180": {"type": "MIPS_26", "symbol": "fprintf"}}}}}, "PEM_ASN1_read_bio": {"71167903d7ef685b04648bbc3c663722184525e0": {"c45cf97f": {"type": "FUNCTION", "size": 676, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"104": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "120": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "144": {"type": "MIPS_26", "symbol": "PEM_read_bio", "scope": "LIBRARY"}, "160": {"type": "MIPS_26", "symbol": "strcmp"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "180": {"type": "MIPS_26", "symbol": "strcmp"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "192": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "204": {"type": "MIPS_26", "symbol": "strcmp"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "216": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "224": {"type": "MIPS_26", "symbol": "strcmp"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "240": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "248": {"type": "MIPS_26", "symbol": "strcmp"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "260": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "268": {"type": "MIPS_26", "symbol": "strcmp"}, "272": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "280": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "284": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "292": {"type": "MIPS_26", "symbol": "strcmp"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "304": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "312": {"type": "MIPS_26", "symbol": "strcmp"}, "316": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "324": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "332": {"type": "MIPS_26", "symbol": "strcmp"}, "336": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "348": {"type": "MIPS_26", "symbol": "EVP_CIPHER_CTX_new", "scope": "LIBRARY"}, "368": {"type": "MIPS_26", "symbol": "PEM_get_EVP_CIPHER_CTX", "scope": "LIBRARY"}, "392": {"type": "MIPS_26", "symbol": "PEM_do_header", "scope": "LIBRARY"}, "408": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "416": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "420": {"type": "MIPS_26", "symbol": "strcmp"}, "436": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "444": {"type": "MIPS_26", "symbol": "strcmp"}, "448": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "456": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "492": {"type": "MIPS_26", "symbol": "strcmp"}, "496": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "576": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "584": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "592": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "600": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "616": {"type": "MIPS_26", "symbol": "EVP_CIPHER_CTX_free", "scope": "LIBRARY"}}}}}, "PEM_do_header": {"01d9495fa2f04e94b4d7fc459749c61ed1915953": {"8a524647": {"type": "FUNCTION", "size": 444, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "EVP_CIPHER_CTX_cipher", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "pem_pwd_def_cb", "scope": "LIBRARY"}, "144": {"type": "MIPS_26", "symbol": "EVP_CIPHER_CTX_cipher", "scope": "LIBRARY"}, "152": {"type": "MIPS_26", "symbol": "EVP_md5_digest", "scope": "LIBRARY"}, "164": {"type": "MIPS_26", "symbol": "EVP_CIPHER_CTX_iv", "scope": "LIBRARY"}, "200": {"type": "MIPS_26", "symbol": "EVP_BytesToKey", "scope": "LIBRARY"}, "236": {"type": "MIPS_26", "symbol": "EVP_DecryptInit", "scope": "LIBRARY"}, "264": {"type": "MIPS_26", "symbol": "EVP_DecryptUpdate", "scope": "LIBRARY"}, "284": {"type": "MIPS_26", "symbol": "EVP_DecryptFinal", "scope": "LIBRARY"}, "296": {"type": "MIPS_26", "symbol": "EVP_CIPHER_CTX_cleanup", "scope": "LIBRARY"}, "312": {"type": "MIPS_26", "symbol": "memset"}, "328": {"type": "MIPS_26", "symbol": "memset"}, "372": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "PEM_get_EVP_CIPHER_CTX": {"d63362abc774db2590a1417efb5b43a4213e2a73": {"7af2898e": {"type": "FUNCTION", "size": 572, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "EVP_CIPHER_CTX_cleanup", "scope": "LIBRARY"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_26", "symbol": "strncmp"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "180": {"type": "MIPS_26", "symbol": "strncmp"}, "300": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "312": {"type": "MIPS_26", "symbol": "strncmp"}, "428": {"type": "MIPS_26", "symbol": "EVP_OBJ_get_cipherbyname", "scope": "LIBRARY"}, "480": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "500": {"type": "MIPS_26", "symbol": "EVP_CIPHER_iv_length", "scope": "LIBRARY"}, "516": {"type": "MIPS_26", "symbol": "load_iv", "original": ".text"}, "540": {"type": "MIPS_26", "symbol": "EVP_DecryptInit", "scope": "LIBRARY"}}}}}, "load_iv": {"e4ed4ff41744dc4fc210bb9db7cd26e9c585a6d8": {"66e15bfd": {"type": "FUNCTION", "size": 272, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"72": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "PEM_read_bio": {"ffd0d279a9577e756da141b11145424fe1c566da": {"ff80a999": {"type": "FUNCTION", "size": 1488, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "BUF_MEM_new", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "BUF_MEM_new", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "BUF)PS2SDB", 8192}, + std::string_view{R"PS2SDB(_MEM_new", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "EVP_ENCODE_CTX_new", "scope": "LIBRARY"}, "164": {"type": "MIPS_26", "symbol": "BIO_gets", "scope": "LIBRARY"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "268": {"type": "MIPS_26", "symbol": "strncmp"}, "288": {"type": "MIPS_26", "symbol": "strlen"}, "304": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "312": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "316": {"type": "MIPS_26", "symbol": "strncmp"}, "336": {"type": "MIPS_26", "symbol": "BUF_MEM_grow", "scope": "LIBRARY"}, "356": {"type": "MIPS_26", "symbol": "strncpy"}, "384": {"type": "MIPS_26", "symbol": "BUF_MEM_grow", "scope": "LIBRARY"}, "508": {"type": "MIPS_26", "symbol": "BUF_MEM_grow", "scope": "LIBRARY"}, "520": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "528": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "532": {"type": "MIPS_26", "symbol": "strncmp"}, "556": {"type": "MIPS_26", "symbol": "strncpy"}, "588": {"type": "MIPS_26", "symbol": "BIO_gets", "scope": "LIBRARY"}, "616": {"type": "MIPS_26", "symbol": "BUF_MEM_grow", "scope": "LIBRARY"}, "668": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "744": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "748": {"type": "MIPS_26", "symbol": "strncmp"}, "780": {"type": "MIPS_26", "symbol": "BUF_MEM_grow", "scope": "LIBRARY"}, "808": {"type": "MIPS_26", "symbol": "strncpy"}, "864": {"type": "MIPS_26", "symbol": "BIO_gets", "scope": "LIBRARY"}, "956": {"type": "MIPS_26", "symbol": "BIO_gets", "scope": "LIBRARY"}, "992": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1000": {"type": "MIPS_26", "symbol": "strlen"}, "1012": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1020": {"type": "MIPS_26", "symbol": "strncmp"}, "1044": {"type": "MIPS_26", "symbol": "strncmp"}, "1064": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1068": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1076": {"type": "MIPS_26", "symbol": "strncmp"}, "1104": {"type": "MIPS_26", "symbol": "EVP_DecodeInit", "scope": "LIBRARY"}, "1128": {"type": "MIPS_26", "symbol": "EVP_DecodeUpdate", "scope": "LIBRARY"}, "1160": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "1188": {"type": "MIPS_26", "symbol": "EVP_DecodeFinal", "scope": "LIBRARY"}, "1268": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "1276": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "1284": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "1292": {"type": "MIPS_26", "symbol": "EVP_ENCODE_CTX_free", "scope": "LIBRARY"}, "1340": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "1372": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "1388": {"type": "MIPS_26", "symbol": "EVP_ENCODE_CTX_free", "scope": "LIBRARY"}, "1404": {"type": "MIPS_26", "symbol": "BUF_MEM_free", "scope": "LIBRARY"}, "1412": {"type": "MIPS_26", "symbol": "BUF_MEM_free", "scope": "LIBRARY"}, "1428": {"type": "MIPS_26", "symbol": "BUF_MEM_free", "scope": "LIBRARY"}}}}}, "PK_METH_dh": {"2a51c093207f3b6546ea5ac91d4ae4a6999eaed5": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "pk_dh_sslc_cleanup": {"b2c09828eb9d58f0281995f2568000ef3f7bcdbd": {"977efce9": {"type": "FUNCTION", "size": 104, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "BN_free", "scope": "LIBRARY"}, "32": {"type": "MIPS_26", "symbol": "BN_free", "scope": "LIBRARY"}, "40": {"type": "MIPS_26", "symbol": "BN_free", "scope": "LIBRARY"}, "48": {"type": "MIPS_26", "symbol": "BN_free", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "BN_ME_CTX_free", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "pk_dh_sslc_init": {"d7f924d0d631d84f312a96a85a1456831787eb1b": {"dbc2ac0a": {"type": "FUNCTION", "size": 764, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "BN_CTX_new", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "pk_dh_sslc_cleanup", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "memset"}, "148": {"type": "MIPS_26", "symbol": "BN_init", "scope": "LIBRARY"}, "156": {"type": "MIPS_26", "symbol": "BN_init", "scope": "LIBRARY"}, "164": {"type": "MIPS_26", "symbol": "BN_init", "scope": "LIBRARY"}, "172": {"type": "MIPS_26", "symbol": "BN_init", "scope": "LIBRARY"}, "212": {"type": "MIPS_26", "symbol": "R_EITEMS_find_item", "scope": "LIBRARY"}, "260": {"type": "MIPS_26", "symbol": "R_EITEMS_find_item", "scope": "LIBRARY"}, "312": {"type": "MIPS_26", "symbol": "R_EITEMS_find_item", "scope": "LIBRARY"}, "336": {"type": "MIPS_26", "symbol": "BN_bin2bn", "scope": "LIBRARY"}, "396": {"type": "MIPS_26", "symbol": "R_EITEMS_find_item", "scope": "LIBRARY"}, "420": {"type": "MIPS_26", "symbol": "BN_bin2bn", "scope": "LIBRARY"}, "444": {"type": "MIPS_26", "symbol": "BN_ME_CTX_new", "scope": "LIBRARY"}, "468": {"type": "MIPS_26", "symbol": "BN_ME_CTX_set", "scope": "LIBRARY"}, "500": {"type": "MIPS_26", "symbol": "R_EITEMS_find_item", "scope": "LIBRARY"}, "508": {"type": "MIPS_26", "symbol": "BN_num_bits", "scope": "LIBRARY"}, "576": {"type": "MIPS_26", "symbol": "R_EITEMS_find_item", "scope": "LIBRARY"}, "604": {"type": "MIPS_26", "symbol": "BN_bin2bn", "scope": "LIBRARY"}, "644": {"type": "MIPS_26", "symbol": "R_EITEMS_find_item", "scope": "LIBRARY"}, "672": {"type": "MIPS_26", "symbol": "BN_bin2bn", "scope": "LIBRARY"}, "704": {"type": "MIPS_26", "symbol": "BN_CTX_free", "scope": "LIBRARY"}}}}}, "pk_dh_sslc_generate_key": {"0001eb13d2ed8540a275f935621df84c0ce721b3": {"1a337f36": {"type": "FUNCTION", "size": 256, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "BN_CTX_new", "scope": "LIBRARY"}, "144": {"type": "MIPS_26", "symbol": "BN_rand", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "BN_ME_CTX_mod_exp", "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "BN_CTX_free", "scope": "LIBRARY"}}}}}, "pk_dh_sslc_compute_key": {"49f9152647aa8f37706d1fc74ec2cf429662f42d": {"7c0a10bd": {"type": "FUNCTION", "size": 476, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"88": {"type": "MIPS_26", "symbol": "BN_CTX_new", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "BN_init", "scope": "LIBRARY"}, "120": {"type": "MIPS_26", "symbol": "BN_init", "scope": "LIBRARY"}, "160": {"type": "MIPS_26", "symbol": "BN_num_bits", "scope": "LIBRARY"}, "216": {"type": "MIPS_26", "symbol": "BN_bin2bn", "scope": "LIBRARY"}, "292": {"type": "MIPS_26", "symbol": "BN_ME_CTX_mod_exp", "scope": "LIBRARY"}, "312": {"type": "MIPS_26", "symbol": "BN_num_bits", "scope": "LIBRARY"}, "360": {"type": "MIPS_26", "symbol": "memset"}, "372": {"type": "MIPS_26", "symbol": "BN_bn2bin", "scope": "LIBRARY"}, "400": {"type": "MIPS_26", "symbol": "BN_CTX_free", "scope": "LIBRARY"}, "408": {"type": "MIPS_26", "symbol": "BN_free", "scope": "LIBRARY"}, "416": {"type": "MIPS_26", "symbol": "BN_free", "scope": "LIBRARY"}}}}}, "pk_dh_sslc_final": {"f5bfc378e087beccf034b466579f4490935ded4d": {"5f5d55a7": {"type": "FUNCTION", "size": 228, "library": "libhttps", "scope": "GLOBAL", "is_interfac)PS2SDB", 8192}, + std::string_view{R"PS2SDB(e": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"80": {"type": "MIPS_26", "symbol": "BN_num_bits", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "BN_num_bits", "scope": "LIBRARY"}, "164": {"type": "MIPS_26", "symbol": "memset"}, "176": {"type": "MIPS_26", "symbol": "BN_bn2bin", "scope": "LIBRARY"}}}}}, "pk_dh_sslc_get": {"318388d46ddbfb1110dde96f0b7081701d96fd15": {"9fb52003": {"type": "FUNCTION", "size": 404, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"156": {"type": "MIPS_26", "symbol": "BN_num_bits", "scope": "LIBRARY"}, "188": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "216": {"type": "MIPS_26", "symbol": "BN_bn2bin", "scope": "LIBRARY"}, "244": {"type": "MIPS_26", "symbol": "R_EITEM_set", "scope": "LIBRARY"}, "296": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "312": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "332": {"type": "MIPS_26", "symbol": "BN_num_bits", "scope": "LIBRARY"}}}}}, "pk_unimplemented": {"d2362927ecfc5f7d03618c9b8ef42690ee17299f": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "PK_CTX_new": {"96fb071f0215d6ad59ecdab4de8318c26a01afb1": {"201b654f": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "PK_CTX_free": {"90e1abc6a15f5559bc99494236d5885e7c7334ce": {"217b3c29": {"type": "FUNCTION", "size": 104, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "R_EITEMS_free", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "PK_CTX_set": {"78dd35d944cce7985d6aa716c806de10e158ac86": {"00000000": {"type": "FUNCTION", "size": 48, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "PK_priv_enc": {"2c7f14ddf9c31e7dbea14056cfbe11f47d650bea": {"00000000": {"type": "FUNCTION", "size": 76, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "PK_pub_dec": {"e119076cee0816d23eebe42ab21b19974807226c": {"00000000": {"type": "FUNCTION", "size": 76, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "PK_sign": {"ff676148b136c85d2d73c3c24bbf32f942e170d6": {"00000000": {"type": "FUNCTION", "size": 76, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "PK_pub_enc": {"1bf9e9d2689ccd255df3bb90dea337bf0b742d39": {"00000000": {"type": "FUNCTION", "size": 76, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "PK_priv_dec": {"e7691521c6a0804b3846260136d66bbaa603eca4": {"00000000": {"type": "FUNCTION", "size": 76, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "PK_phase1": {"fd725c155ad1ea00cd32cb805f0d4d1095d346c4": {"00000000": {"type": "FUNCTION", "size": 44, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "PK_phase2": {"9c2d2a39d2029fc0f081b4037c6c5e4731a45b72": {"00000000": {"type": "FUNCTION", "size": 76, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "PK_get_pubkey": {"2b782573295d044d075573841415781f7f720f24": {"00000000": {"type": "FUNCTION", "size": 60, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "PK_get_eitem": {"6ab38623aadb427752bd97daf507360e3e727bfb": {"00000000": {"type": "FUNCTION", "size": 40, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "PK_get_info": {"54bf5bf876a8d0ce1ad9da1be2aedcb84f412368": {"00000000": {"type": "FUNCTION", "size": 36, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "PK_METH_rsa_pkcs1": {"2a51c093207f3b6546ea5ac91d4ae4a6999eaed5": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "PK_METH_rsa_pkcs1_SSLv23": {"2a51c093207f3b6546ea5ac91d4ae4a6999eaed5": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "pk_rsa_sslc_cleanup": {"7e4a89d8de42d703039f57230eea0c0d0248c6e7": {"4f1feee5": {"type": "FUNCTION", "size": 280, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "BN_free", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "BN_free", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "BN_free", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "BN_free", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "BN_free", "scope": "LIBRARY"}, "120": {"type": "MIPS_26", "symbol": "BN_free", "scope": "LIBRARY"}, "152": {"type": "MIPS_26", "symbol": "BN_ME_CTX_free", "scope": "LIBRARY"}, "188": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "208": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "228": {"type": "MIPS_26", "symbol": "BN_ME_CTX_free", "scope": "LIBRARY"}, "236": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "pk_rsa_sslc_init": {"3907d435e3278f20470b6810d79d045394e06388": {"b21a687e": {"type": "FUNCTION", "size": 1336, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"72": {"type": "MIPS_26", "symbol": "pk_rsa_sslc_cleanup", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "memset"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_26", "symbol": "R_EITEMS_check_list", "scope": "LIBRARY"}, "168": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "200": {"type": "MIPS_26", "symbol": "R_EITEMS_check_list", "scope": "LIBRARY"}, "296": {"type": "MIPS_26", "symbol": "R_EITEMS_find_item", "scope": "LIBRARY"}, )PS2SDB", 8192}, + std::string_view{R"PS2SDB("344": {"type": "MIPS_26", "symbol": "R_EITEMS_find_item", "scope": "LIBRARY"}, "368": {"type": "MIPS_26", "symbol": "BN_CTX_new", "scope": "LIBRARY"}, "432": {"type": "MIPS_26", "symbol": "R_EITEMS_find_item", "scope": "LIBRARY"}, "472": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "520": {"type": "MIPS_26", "symbol": "BN_init", "scope": "LIBRARY"}, "568": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "616": {"type": "MIPS_26", "symbol": "BN_ME_CTX_new", "scope": "LIBRARY"}, "684": {"type": "MIPS_26", "symbol": "R_EITEMS_find_item", "scope": "LIBRARY"}, "704": {"type": "MIPS_26", "symbol": "BN_bin2bn", "scope": "LIBRARY"}, "756": {"type": "MIPS_26", "symbol": "R_EITEMS_find_item", "scope": "LIBRARY"}, "788": {"type": "MIPS_26", "symbol": "BN_bin2bn", "scope": "LIBRARY"}, "828": {"type": "MIPS_26", "symbol": "R_EITEMS_find_item", "scope": "LIBRARY"}, "864": {"type": "MIPS_26", "symbol": "BN_bin2bn", "scope": "LIBRARY"}, "908": {"type": "MIPS_26", "symbol": "R_EITEMS_find_item", "scope": "LIBRARY"}, "944": {"type": "MIPS_26", "symbol": "BN_bin2bn", "scope": "LIBRARY"}, "984": {"type": "MIPS_26", "symbol": "BN_ME_CTX_set", "scope": "LIBRARY"}, "1032": {"type": "MIPS_26", "symbol": "BN_ME_CTX_set", "scope": "LIBRARY"}, "1096": {"type": "MIPS_26", "symbol": "R_EITEMS_find_item", "scope": "LIBRARY"}, "1116": {"type": "MIPS_26", "symbol": "BN_bin2bn", "scope": "LIBRARY"}, "1156": {"type": "MIPS_26", "symbol": "R_EITEMS_find_item", "scope": "LIBRARY"}, "1184": {"type": "MIPS_26", "symbol": "BN_bin2bn", "scope": "LIBRARY"}, "1196": {"type": "MIPS_26", "symbol": "BN_ME_CTX_new", "scope": "LIBRARY"}, "1220": {"type": "MIPS_26", "symbol": "BN_ME_CTX_set", "scope": "LIBRARY"}, "1248": {"type": "MIPS_26", "symbol": "BN_ME_CTX_set", "scope": "LIBRARY"}, "1276": {"type": "MIPS_26", "symbol": "BN_CTX_free", "scope": "LIBRARY"}}}}}, "pk_rsa_sslc": {"44b5089b763636f3700f459dba0e27ff7b77edbb": {"878d65c4": {"type": "FUNCTION", "size": 148, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "52": {"type": "MIPS_26", "symbol": "pk_rsa_private_encrypt_sslc", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "pk_rsa_public_decrypt_sslc", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "pk_rsa_private_decrypt_sslc", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "pk_rsa_public_encrypt_sslc", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "pk_rsa_verify", "scope": "LIBRARY"}}}}}, "pk_rsa_private_encrypt_sslc": {"c6812e7e1a57f24d65bcb36491805101e4946850": {"42b13182": {"type": "FUNCTION", "size": 420, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"92": {"type": "MIPS_26", "symbol": "BN_init", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "BN_init", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "BN_num_bits", "scope": "LIBRARY"}, "212": {"type": "MIPS_26", "symbol": "BN_bin2bn", "scope": "LIBRARY"}, "228": {"type": "MIPS_26", "symbol": "pk_rsa_crt_sslc", "scope": "LIBRARY"}, "244": {"type": "MIPS_26", "symbol": "BN_num_bits", "scope": "LIBRARY"}, "292": {"type": "MIPS_26", "symbol": "BN_bn2bin", "scope": "LIBRARY"}, "352": {"type": "MIPS_26", "symbol": "BN_free", "scope": "LIBRARY"}, "360": {"type": "MIPS_26", "symbol": "BN_free", "scope": "LIBRARY"}}}}}, "pk_rsa_crt_sslc": {"959fe63914fe3f8a032596f9aab0f2e7a0fbd85b": {"d52e9ace": {"type": "FUNCTION", "size": 628, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "BN_CTX_new", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "BN_init", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "BN_init", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "BN_init", "scope": "LIBRARY"}, "140": {"type": "MIPS_26", "symbol": "BN_ME_CTX_mod_exp", "scope": "LIBRARY"}, "200": {"type": "MIPS_26", "symbol": "BN_copy", "scope": "LIBRARY"}, "228": {"type": "MIPS_26", "symbol": "BN_mul", "scope": "LIBRARY"}, "268": {"type": "MIPS_26", "symbol": "BN_ME_CTX_mod_exp", "scope": "LIBRARY"}, "288": {"type": "MIPS_26", "symbol": "BN_sub", "scope": "LIBRARY"}, "320": {"type": "MIPS_26", "symbol": "BN_add", "scope": "LIBRARY"}, "356": {"type": "MIPS_26", "symbol": "BN_mod", "scope": "LIBRARY"}, "380": {"type": "MIPS_26", "symbol": "BN_add", "scope": "LIBRARY"}, "416": {"type": "MIPS_26", "symbol": "BN_mul", "scope": "LIBRARY"}, "444": {"type": "MIPS_26", "symbol": "BN_mod", "scope": "LIBRARY"}, "468": {"type": "MIPS_26", "symbol": "BN_mul", "scope": "LIBRARY"}, "488": {"type": "MIPS_26", "symbol": "BN_add", "scope": "LIBRARY"}, "544": {"type": "MIPS_26", "symbol": "BN_CTX_free", "scope": "LIBRARY"}, "552": {"type": "MIPS_26", "symbol": "BN_clear_free", "scope": "LIBRARY"}, "560": {"type": "MIPS_26", "symbol": "BN_clear_free", "scope": "LIBRARY"}, "568": {"type": "MIPS_26", "symbol": "BN_clear_free", "scope": "LIBRARY"}}}}}, "pk_rsa_private_decrypt_sslc": {"b4d92681be797b89aab0ccec323c0e03153b066d": {"04563804": {"type": "FUNCTION", "size": 336, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"84": {"type": "MIPS_26", "symbol": "BN_init", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "BN_init", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "BN_num_bits", "scope": "LIBRARY"}, "176": {"type": "MIPS_26", "symbol": "BN_bin2bn", "scope": "LIBRARY"}, "192": {"type": "MIPS_26", "symbol": "pk_rsa_crt_sslc", "scope": "LIBRARY"}, "208": {"type": "MIPS_26", "symbol": "BN_bn2bin", "scope": "LIBRARY"}, "268": {"type": "MIPS_26", "symbol": "BN_free", "scope": "LIBRARY"}, "276": {"type": "MIPS_26", "symbol": "BN_free", "scope": "LIBRARY"}}}}}, "pk_rsa_public_encrypt_sslc": {"fc0ada3656babd48938ecf49861422dece27db7c": {"26de6c0b": {"type": "FUNCTION", "size": 508, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"96": {"type": "MIPS_26", "symbol": "BN_init", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "BN_init", "scope": "LIBRARY"}, "120": {"type": "MIPS_26", "symbol": "BN_num_bits", "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "BN_bin2bn", "scope": "LIBRARY"}, "236": {"type": "MIPS_26", "symbol": "BN_CTX_new", "scope": "LIBRARY"}, "288": {"type": "MIPS_26", "symbol": "BN_ME_CTX_mod_exp", "scope": "LIBRARY"}, "308": {"type": "MIPS_26", "symbol": "BN_num_bits", "scope": "LIBRARY"}, "352": {"type": "MIPS_26", "symbol": "BN_bn2bin", "scope": "LIBRARY"}, "432": {"type": "MIPS_26", "symbol": "BN_CTX_free", "scope": "LIBRARY"}, "440": {"type": "MIPS_26", "symbol": "BN_free", "scope": "LIBRARY"}, "448": {"type": "MIPS_26", "symbol": "BN_free", "scope": "LIBRARY"}}}}}, "pk_rsa_verify": {"ff9b6b8289576493d9964e63208cee87ef2a4b85": {"a18d6711": {"type": "FUNCTION", "size": 260, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"76": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "pk_rsa_public_decrypt_sslc", "scope": "LIBRARY"}, "164": {"type": "MIPS_26", "symbol": "memcmp"}, "200": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "pk_rsa_public_decrypt_sslc": {"80a56ba9fb43e779b242aaf707a76f38b35b3941": {"6b529b32": {"type": "FUNCTION", "size": 416, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"104": {"type": "MIPS_26", "symbol": "BN_init", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "BN_init", "sc)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ope": "LIBRARY"}, "128": {"type": "MIPS_26", "symbol": "BN_num_bits", "scope": "LIBRARY"}, "192": {"type": "MIPS_26", "symbol": "BN_CTX_new", "scope": "LIBRARY"}, "224": {"type": "MIPS_26", "symbol": "BN_bin2bn", "scope": "LIBRARY"}, "256": {"type": "MIPS_26", "symbol": "BN_ME_CTX_mod_exp", "scope": "LIBRARY"}, "276": {"type": "MIPS_26", "symbol": "BN_bn2bin", "scope": "LIBRARY"}, "340": {"type": "MIPS_26", "symbol": "BN_CTX_free", "scope": "LIBRARY"}, "348": {"type": "MIPS_26", "symbol": "BN_free", "scope": "LIBRARY"}, "356": {"type": "MIPS_26", "symbol": "BN_free", "scope": "LIBRARY"}}}}}, "rsa_padding_add_pkcs1_type_1": {"f86a2ded5f762cf910c00ae946ecec77422257a8": {"0984d6e9": {"type": "FUNCTION", "size": 180, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"140": {"type": "MIPS_26", "symbol": "memset"}}}}}, "rsa_padding_check_pkcs1_type_1": {"ea4f090e8d8a380a188ebdac9975e69c6a9ca6c4": {"00000000": {"type": "FUNCTION", "size": 188, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "rsa_padding_add_pkcs1_type_2": {"ed5144aafd070dec7fe922ecef77a103c2c5656d": {"68c592ea": {"type": "FUNCTION", "size": 276, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"160": {"type": "MIPS_26", "symbol": "R_rand_bytes", "scope": "LIBRARY"}, "204": {"type": "MIPS_26", "symbol": "R_rand_bytes", "scope": "LIBRARY"}}}}}, "rsa_padding_check_pkcs1_type_2": {"aa72cfd66e8f035a7688023f0a29de669e8a4d22": {"00000000": {"type": "FUNCTION", "size": 180, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "rsa_padding_add_SSLv23": {"99a4b92bee92fbe52d8effa027ffbfb96feb98f8": {"865a89a2": {"type": "FUNCTION", "size": 328, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "rsa_padding_add_pkcs1_type_2", "scope": "LIBRARY"}, "196": {"type": "MIPS_26", "symbol": "R_rand_bytes", "scope": "LIBRARY"}, "236": {"type": "MIPS_26", "symbol": "R_rand_bytes", "scope": "LIBRARY"}, "280": {"type": "MIPS_26", "symbol": "memset"}}}}}, "rsa_padding_check_SSLv23": {"dbdac73932c8eb5a1a0c1d33dd76f0058dd5582d": {"d10f6f99": {"type": "FUNCTION", "size": 276, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "rsa_padding_check_pkcs1_type_2", "scope": "LIBRARY"}}}}}, "pk_rsa_get": {"0e447fcf5d92be84b6787c19073fafeaf25476c7": {"a68bb42c": {"type": "FUNCTION", "size": 188, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"80": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_26", "symbol": "BN_num_bits", "scope": "LIBRARY"}}}}}, "PK_encode_pkcs1_digest": {"4375c431c5c178304986a0d1a9b6d3d533125e93": {"d9b81fb4": {"type": "FUNCTION", "size": 248, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "strlen"}, "148": {"type": "MIPS_26", "symbol": "memcpy"}, "196": {"type": "MIPS_26", "symbol": "memcpy"}}}}}, "PK_encode_rsa_public_key": {"152539cc7a4d279162ebf33a9f2977c906a69a55": {"e6f06fc3": {"type": "FUNCTION", "size": 100, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "OP_rsa_pkcs1_public_key_encode", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "OP_encode", "scope": "LIBRARY"}}}}}, "PK_decode_rsa_public_key": {"152539cc7a4d279162ebf33a9f2977c906a69a55": {"f7d49591": {"type": "FUNCTION", "size": 100, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "OP_rsa_pkcs1_public_key_decode", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "OP_decode", "scope": "LIBRARY"}}}}}, "PK_decode_rsa_private_key": {"152539cc7a4d279162ebf33a9f2977c906a69a55": {"eba55a32": {"type": "FUNCTION", "size": 100, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "OP_rsa_pkcs1_private_key_decode", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "OP_decode", "scope": "LIBRARY"}}}}}, "R_EITEM_new": {"eddef79a44e9469708fdd959a4fcf304662b0721": {"9489aa6c": {"type": "FUNCTION", "size": 80, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "44": {"type": "MIPS_26", "symbol": "memset"}}}}}, "R_EITEM_init": {"d3308313a6d899e40eee25936828c12ff7944393": {"6f4fcff7": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_26", "symbol": "memset"}}}}}, "R_EITEM_set": {"c9c2161e7c09801bca16674e4ae59d0d716c000d": {"762849ed": {"type": "FUNCTION", "size": 272, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"76": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "memcpy"}, "140": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "188": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "R_EITEM_copy": {"b742c44e354ae0830a7b7f85ab3e64574f9e8ac3": {"4f55d607": {"type": "FUNCTION", "size": 104, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "R_EITEM_set", "scope": "LIBRARY"}}}}}, "R_EITEMS_dup": {"0f953ad2e53dcad197ca8ec824dff3263fba4a18": {"5cc67562": {"type": "FUNCTION", "size": 192, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "R_EITEMS_new", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "R_EITEMS_add_item", "scope": "LIBRARY"}, "152": {"type": "MIPS_26", "symbol": "R_EITEMS_free", "scope": "LIBRARY"}}}}}, "R_EITEM_free": {"71a5b3b73c5a3ad0a184019f917f63a47bfa9131": {"4c7ae9ab": {"type": "FUNCTION", "size": 96, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "R_EITEMS_new": {"eddef79a44e9469708fdd959a4fcf304662b0721": {"9489aa6c": {"type": "FUNCTION", "size": 80, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "44": {"type": "MIPS_26", "symbol": "memset"}}}}}, "R_EITEMS_free": {"7961d10a9b1d9025759fbfbdc19fca9feab5f0ce": {"b25b5511": {"type": "FUNCTION", "size": 172, "library": "libhttps", "scope": "GLOBAL", "is_interface")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "R_EITEM_free", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "148": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "R_EITEMS_add": {"9d63260645ca8e5d1eba13c938cdfe0912bd0695": {"a0e59458": {"type": "FUNCTION", "size": 64, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "R_EITEMS_add_item", "scope": "LIBRARY"}}}}}, "r_eitems_expand": {"ab84dbaaa26378ddeca8b3e3b0e9b239e9a09791": {"ebcae49e": {"type": "FUNCTION", "size": 136, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "R_realloc", "scope": "LIBRARY"}}}}}, "R_EITEMS_add_item": {"eb5fce11748561fec782050605b58435b00500f7": {"2994b6dd": {"type": "FUNCTION", "size": 224, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "R_EITEMS_delete", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "r_eitems_expand", "scope": "LIBRARY", "original": ".text"}, "112": {"type": "MIPS_26", "symbol": "R_EITEM_new", "scope": "LIBRARY"}, "144": {"type": "MIPS_26", "symbol": "R_EITEM_copy", "scope": "LIBRARY"}}}}}, "R_EITEMS_delete": {"ab4b208ee6a8c2d6b61ba98b3e055abe5402a791": {"e115e0c6": {"type": "FUNCTION", "size": 152, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "R_EITEMS_find_item", "scope": "LIBRARY"}, "48": {"type": "MIPS_26", "symbol": "R_EITEM_free", "scope": "LIBRARY"}}}}}, "R_EITEMS_find_item": {"befe0fa0be009d785e6c5947b4d735b091bd285d": {"00000000": {"type": "FUNCTION", "size": 248, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "R_EITEMS_check_list": {"d0d9b7f9e6eafcf55bf808a871a81e94efcba008": {"599b05b9": {"type": "FUNCTION", "size": 136, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"72": {"type": "MIPS_26", "symbol": "R_EITEMS_find_item", "scope": "LIBRARY"}}}}}, "R_EITEMS_compact": {"d8fb27872559075664923b3dc7379a927427499d": {"be1d2299": {"type": "FUNCTION", "size": 316, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"96": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "172": {"type": "MIPS_26", "symbol": "memcpy"}, "196": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "260": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "R_time_size": {"4a24a668bd2b5c5e6152a6c01b379c65d802bd4a": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "R_time": {"a77c923e86f60e52e69e0f6d87ab8ad64aa9b573": {"d3e72eac": {"type": "FUNCTION", "size": 52, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "R_time_get_func": {"ceaacd8dbc6550567edb1845aa0d5c1d3047b02c": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "R_time_set_func": {"379568001121d67192b561489fbcf0e0086b0eb3": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "r_lock_get_name_unsafe": {"9676b9f3f282701b2ce8834cd6d8d41fcdba5520": {"44e4bfc2": {"type": "FUNCTION", "size": 104, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}}}}}, "R_lockid_new": {"e3151bd47be9b12a030be6665cb63c8a2d3cd03d": {"e3e06888": {"type": "FUNCTION", "size": 284, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_26", "symbol": "R_lock_num", "scope": "LIBRARY", "original": ".text"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "56": {"type": "MIPS_26", "symbol": "R_lock_ctrl", "scope": "LIBRARY", "original": ".text"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_26", "symbol": "r_lock_get_name_unsafe", "scope": "LIBRARY", "original": ".text"}, "100": {"type": "MIPS_26", "symbol": "strcmp"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "148": {"type": "MIPS_26", "symbol": "sk_new", "scope": "LIBRARY"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_26", "symbol": "BUF_strdup", "scope": "LIBRARY"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "192": {"type": "MIPS_26", "symbol": "sk_push", "scope": "LIBRARY"}, "212": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "240": {"type": "MIPS_26", "symbol": "R_lock_ctrl", "scope": "LIBRARY", "original": ".text"}}}}}, "R_lockids_free": {"d81c9849d6341c665b22bc05e91c50c081326f62": {"c21b80c1": {"type": "FUNCTION", "size": 156, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_26", "symbol": "R_lock_ctrl", "scope": "LIBRARY", "original": ".text"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_26", "symbol": "sk_pop", "scope": "LIBRARY"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(80": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_26", "symbol": "sk_free", "scope": "LIBRARY"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_26", "symbol": "R_lock_ctrl", "scope": "LIBRARY", "original": ".text"}}}}}, "R_lock_num": {"29e207b1dcc4baadbb39c1f725db0eb52ddccbfe": {"447a272b": {"type": "FUNCTION", "size": 112, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_26", "symbol": "R_lock_ctrl", "scope": "LIBRARY", "original": ".text"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_26", "symbol": "R_lock_ctrl", "scope": "LIBRARY", "original": ".text"}}}}}, "R_lock_get_name": {"2a511630b8ddcb66dfe0e736e1ef53c924b518de": {"f2312496": {"type": "FUNCTION", "size": 192, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_26", "symbol": "R_lock_ctrl", "scope": "LIBRARY", "original": ".text"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "160": {"type": "MIPS_26", "symbol": "R_lock_ctrl", "scope": "LIBRARY", "original": ".text"}}}}}, "R_lock_get_cb": {"ceaacd8dbc6550567edb1845aa0d5c1d3047b02c": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "R_locked_add_get_cb": {"ceaacd8dbc6550567edb1845aa0d5c1d3047b02c": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "R_lock_set_cb": {"2f1f98b6b6623eb3ad80ae62c1826111486c3ab8": {"d0e115d3": {"type": "FUNCTION", "size": 16, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "R_locked_add_set_cb": {"2f1f98b6b6623eb3ad80ae62c1826111486c3ab8": {"d0e115d3": {"type": "FUNCTION", "size": 16, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "R_lock_ctrl": {"9d5255d4e28119f40cda27048ec7a271324b8ca2": {"d3e72eac": {"type": "FUNCTION", "size": 44, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "R_locked_add": {"b479f178a8680880d36d7f8ea1c6a895cc33ac0d": {"b5035cb0": {"type": "FUNCTION", "size": 184, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_26", "symbol": "R_lock_ctrl", "scope": "LIBRARY", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "R_lock_ctrl", "scope": "LIBRARY", "original": ".text"}}}}}, "R_thread_get_id_cb": {"ceaacd8dbc6550567edb1845aa0d5c1d3047b02c": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "R_thread_id_set_cb": {"2f1f98b6b6623eb3ad80ae62c1826111486c3ab8": {"d0e115d3": {"type": "FUNCTION", "size": 16, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "R_thread_id": {"08952e5caf24e856b71a8cdf89e4dd13b65c88c9": {"0d3bcef5": {"type": "FUNCTION", "size": 56, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_26", "symbol": "getpid"}}}}}, "R_mem_ctrl": {"b5a54d620da3344b39c3e8646fd4d3b9474eabde": {"0147858c": {"type": "FUNCTION", "size": 132, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "R_set_mem_functions": {"3aaccf8d352fe339cef710b568f6cbcb8d3c5540": {"d45261f4": {"type": "FUNCTION", "size": 76, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "<)PS2SDB", 8192}, + std::string_view{R"PS2SDB(data>", "original": ".data"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "R_set_locked_mem_functions": {"9a7100b118c87f666047ec100f07569401ade487": {"87437d07": {"type": "FUNCTION", "size": 36, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "R_get_mem_functions": {"62bb22cc4cc3c2704a02fb1a6b8d94554f45db0a": {"8b77e441": {"type": "FUNCTION", "size": 56, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "R_get_locked_mem_functions": {"b269f6944e20e12c6fa4772a353e38d966f7e38a": {"46ea8ba1": {"type": "FUNCTION", "size": 40, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "R_malloc_locked": {"4f3164b0f2df6fcf75620dffd141afcb54fa03dc": {"d3e72eac": {"type": "FUNCTION", "size": 36, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "R_free_locked": {"4f3164b0f2df6fcf75620dffd141afcb54fa03dc": {"d3e72eac": {"type": "FUNCTION", "size": 36, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "R_malloc": {"4f3164b0f2df6fcf75620dffd141afcb54fa03dc": {"d3e72eac": {"type": "FUNCTION", "size": 36, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "R_realloc": {"4f3164b0f2df6fcf75620dffd141afcb54fa03dc": {"d3e72eac": {"type": "FUNCTION", "size": 36, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "R_free": {"4f3164b0f2df6fcf75620dffd141afcb54fa03dc": {"d3e72eac": {"type": "FUNCTION", "size": 36, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "R_remalloc": {"368883bd5a0a38376445c3cd4c22e8faa9ccc310": {"8bd9428d": {"type": "FUNCTION", "size": 52, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY", "original": ".text"}, "28": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY", "original": ".text"}}}}}, "R_mtime": {"fa73447ba01de67c6f059bca3ffbe717fe02b873": {"d88b1fcb": {"type": "FUNCTION", "size": 88, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "time_mi_time", "scope": "LIBRARY"}}}}}, "R_mtime_set": {"e7648c1f9c0ead435af1efba7f45491c7ad63342": {"dab4ba52": {"type": "FUNCTION", "size": 36, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "R_mtime", "original": ".text"}, "12": {"type": "MIPS_26", "symbol": "R_time_set_func", "scope": "LIBRARY"}, "16": {"type": "MIPS_LO16", "symbol": "R_mtime", "original": ".text"}}}}}, "R_mtime_offset": {"29d6d8781bc8d020f52493e1466d0fa2432b7658": {"10df7670": {"type": "FUNCTION", "size": 176, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "memset"}, "104": {"type": "MIPS_26", "symbol": "time_mi_loffset", "scope": "LIBRARY"}}}}}, "R_mtime_cmp": {"71818f154a5cb7e375a82119cbb285ecf1b204ba": {"06b23431": {"type": "FUNCTION", "size": 172, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "memset"}, "56": {"type": "MIPS_26", "symbol": "memset"}, "136": {"type": "MIPS_26", "symbol": "time_mi_cmp", "scope": "LIBRARY"}}}}}, "R_mtime_import": {"4888b01599a0d23f6e1efb8275ade97789ee61cf": {"2c73f7d8": {"type": "FUNCTION", "size": 92, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "time_mi_import", "scope": "LIBRARY"}}}}}, "R_mtime_export": {"2c2c6cb77bf997a4e3c7f0f490891dedfb608978": {"5d9a6f2d": {"type": "FUNCTION", "size": 76, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "time_mi_export", "scope": "LIBRARY"}}}}}, "R_mtime_set_all": {"5b68b9305cae7ea6a39c3d085d6a38b45ff445a9": {"ec55003e": {"type": "FUNCTION", "size": 80, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "R_mtime_set", "scope": "LIBRARY"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "20": {"type": "MIPS_26", "symbol": "R_time_set_offset_func", "scope": "LIBRARY"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "32": {"type": "MIPS_26", "symbol": "R_time_set_cmp_func", "scope": "LIBRARY"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "44": {"type": "MIPS_26", "symbol": "R_time_set_import_func", "scope": "LIBRARY"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "56": {"type": "MIPS_26", "symbol": "R_time_set_export_func", "scope": "LIBRARY"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}}}}}, "R_rand_set_default": {"7ad)PS2SDB", 8192}, + std::string_view{R"PS2SDB(c7e1f263c32ed4828ad3d39a59174c7e1fe56": {"f6327c30": {"type": "FUNCTION", "size": 100, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "R_rand_get_default", "scope": "LIBRARY"}, "28": {"type": "MIPS_26", "symbol": "R_rand_free", "scope": "LIBRARY", "original": ".text"}}}}}, "R_rand_seed": {"1d21ba62fb9dce12e0b3cc91dde4bda4390451b3": {"00000000": {"type": "FUNCTION", "size": 52, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "R_rand_bytes": {"8c52385a220bc4cf75d8a3cd18aa75ff354d064d": {"00000000": {"type": "FUNCTION", "size": 52, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "R_rand_new": {"9f00a3cbad6e5cd3564666fc45f6847768cd0557": {"a6cc69ff": {"type": "FUNCTION", "size": 220, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "R_rand_get_default", "scope": "LIBRARY"}, "44": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "memset"}, "184": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "R_rand_free": {"aa256c9b2bbf1e8e8b3a3b994aaf6113d08d768f": {"7ad5675d": {"type": "FUNCTION", "size": 80, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "R_rand_lib_cleanup": {"8ae5fa92c9c4fb68761c1589df5c6346cea0857e": {"14a3b075": {"type": "FUNCTION", "size": 40, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "R_rand_get_default", "scope": "LIBRARY"}, "16": {"type": "MIPS_26", "symbol": "R_rand_free", "scope": "LIBRARY", "original": ".text"}}}}}, "R_rand_add_entropy": {"bdb679a9dba5c8b30adf239a41eea6171e95fa62": {"00000000": {"type": "FUNCTION", "size": 56, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "R_rand_entropy_count": {"15f3261873b5c28d174dfbec56f7022cf1b4e44b": {"00000000": {"type": "FUNCTION", "size": 88, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "R_rand_get_default": {"578dc47619a762595d9915d816d7e8d7ce5c18a7": {"02022c8d": {"type": "FUNCTION", "size": 120, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_26", "symbol": "R_rand_meth_sha1", "scope": "LIBRARY"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "R_DIAG_set_stack_datum": {"586ddd1c079ad5a720264db442ce3830005b2815": {"55159f42": {"type": "FUNCTION", "size": 24, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "R_DIAG_get_stack_datum": {"ceaacd8dbc6550567edb1845aa0d5c1d3047b02c": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "R_DIAG_check_stack": {"2fae448c44bf79fdcc81b3428dab7c29fcb75d8f": {"c75fa84c": {"type": "FUNCTION", "size": 56, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "R_DIAG_get_stack_low_water_mark": {"299e52ca3a103204ac1aefeab75162a8be141857": {"fe091a96": {"type": "FUNCTION", "size": 100, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "R_DIAG_print_stack_depth": {"b15ba5947e733b0b89b66c1901a58c19311f13d9": {"febfda2a": {"type": "FUNCTION", "size": 96, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "R_DIAG_get_stack_low_water_mark", "scope": "LIBRARY", "original": ".text"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_26", "symbol": "BIO_printf", "scope": "LIBRARY"}}}}}, "R_time_new": {"abcb63f5eaef8105f8e24b56b5465548f8a9d3d7": {"baba3e8c": {"type": "FUNCTION", "size": 92, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "40": {"type": "MIPS_26", "symbol": "R_time", "scope": "LIBRARY"}, "60": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "R_time_free": {"a639a8a356321edbeccee089cae462e9fca431ea": {"68f027a7": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "R_time_offset": {"a77c923e86f60e52e69e0f6d87ab8ad64aa9b573": {"d3e72eac": {"type": "FUNCTION", "size": 52, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"t)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ype": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "R_time_get_offset_func": {"ceaacd8dbc6550567edb1845aa0d5c1d3047b02c": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "R_time_set_offset_func": {"379568001121d67192b561489fbcf0e0086b0eb3": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "R_time_from_int": {"e801a1d2fd4a2f0e4d73895b21212dfd1bfd597f": {"7c123a86": {"type": "FUNCTION", "size": 88, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "R_time_import", "scope": "LIBRARY", "original": ".text"}}}}}, "R_time_to_int": {"b69f13e98ab341fae3b5fd4c61955344c7e5f365": {"14f238cf": {"type": "FUNCTION", "size": 88, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "R_time_export", "scope": "LIBRARY", "original": ".text"}}}}}, "R_time_cmp": {"a77c923e86f60e52e69e0f6d87ab8ad64aa9b573": {"d3e72eac": {"type": "FUNCTION", "size": 52, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "R_time_get_cmp_func": {"ceaacd8dbc6550567edb1845aa0d5c1d3047b02c": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "R_time_set_cmp_func": {"379568001121d67192b561489fbcf0e0086b0eb3": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "R_time_import": {"a77c923e86f60e52e69e0f6d87ab8ad64aa9b573": {"d3e72eac": {"type": "FUNCTION", "size": 52, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "R_time_get_import_func": {"ceaacd8dbc6550567edb1845aa0d5c1d3047b02c": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "R_time_set_import_func": {"379568001121d67192b561489fbcf0e0086b0eb3": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "R_time_export": {"a77c923e86f60e52e69e0f6d87ab8ad64aa9b573": {"d3e72eac": {"type": "FUNCTION", "size": 52, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "R_time_get_export_func": {"ceaacd8dbc6550567edb1845aa0d5c1d3047b02c": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "R_time_set_export_func": {"379568001121d67192b561489fbcf0e0086b0eb3": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "RC2_cbc_encrypt": {"ce76d5a53df5eb289e399b344943970dba69452c": {"e834331e": {"type": "FUNCTION", "size": 3452, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"528": {"type": "MIPS_26", "symbol": "RC2_encrypt", "scope": "LIBRARY", "original": ".text"}, "908": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "912": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1164": {"type": "MIPS_26", "symbol": "RC2_encrypt", "scope": "LIBRARY", "original": ".text"}, "2176": {"type": "MIPS_26", "symbol": "RC2_decrypt", "scope": "LIBRARY", "original": ".text"}, "2700": {"type": "MIPS_26", "symbol": "RC2_decrypt", "scope": "LIBRARY", "original": ".text"}, "2780": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "2784": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "RC2_encrypt": {"ac95f1138cf1fd8b90304cb9698177ffcfcfe30d": {"00000000": {"type": "FUNCTION", "size": 7720, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "RC2_decrypt": {"3d47c91b89e70dd365ad32bcfa7d93943be94fd6": {"00000000": {"type": "FUNCTION", "size": 7184, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "RC2_set_key": {"412eb128785b6eee45791e400ec5e38efdb558bb": {"d851ca84": {"type": "FUNCTION", "size": 420, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_26", "symbol": "memcpy"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "240": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "RC4": {"b2e17e94efd1d3b0d6e4fe0882e390f33c17cc10": {"00000000": {"type": "FUNCTION", "size": 188, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "RC4_set_key": {"2685b710a5d31b67215b589b3611f88cb12400e7": {"00000000": {"type": "FUNCTION", "size": 148, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "RC4_options": {"2a51c093207f3b6546ea5ac91d4ae4a6999eaed5": {"d3e72eac": {"type": "FUNCTION", ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "R_rand_meth_sha1": {"128dcd0a94221e1861432133b1fad18aab11d3bd": {"284aa8d0": {"type": "FUNCTION", "size": 120, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "EVP_sha1_digest", "scope": "LIBRARY"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_26", "symbol": "md_ctrl", "original": ".text"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "md_bytes": {"c09fff0f73025836315713ede3c677347534f83d": {"aff46d95": {"type": "FUNCTION", "size": 660, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "EVP_MD_CTX_new", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "md_seed", "scope": "LIBRARY", "original": ".text"}, "120": {"type": "MIPS_26", "symbol": "EVP_MD_size", "scope": "LIBRARY"}, "160": {"type": "MIPS_26", "symbol": "EVP_DigestInit", "scope": "LIBRARY"}, "176": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}, "192": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}, "208": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}, "236": {"type": "MIPS_26", "symbol": "EVP_DigestFinal", "scope": "LIBRARY"}, "304": {"type": "MIPS_26", "symbol": "EVP_DigestInit", "scope": "LIBRARY"}, "320": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}, "336": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}, "352": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}, "368": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}, "384": {"type": "MIPS_26", "symbol": "EVP_DigestFinal", "scope": "LIBRARY"}, "600": {"type": "MIPS_26", "symbol": "EVP_MD_CTX_free", "scope": "LIBRARY"}}}}}, "md_seed": {"b2b835420ce061795010393ad0dbece143f05aac": {"c24e8a97": {"type": "FUNCTION", "size": 428, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "EVP_MD_CTX_new", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "EVP_MD_size", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "EVP_DigestInit", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}, "132": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}, "148": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}, "176": {"type": "MIPS_26", "symbol": "EVP_DigestFinal", "scope": "LIBRARY"}, "384": {"type": "MIPS_26", "symbol": "EVP_MD_CTX_free", "scope": "LIBRARY"}}}}}, "md_ctrl": {"44a231d87afd893eea51001774f3155573d95816": {"befcb7d6": {"type": "FUNCTION", "size": 404, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"104": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "188": {"type": "MIPS_26", "symbol": "EVP_MD_CTX_new", "scope": "LIBRARY"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "256": {"type": "MIPS_26", "symbol": "EVP_MD_CTX_free", "scope": "LIBRARY"}, "284": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "324": {"type": "MIPS_26", "symbol": "sceGetTime", "scope": "LIBRARY"}, "344": {"type": "MIPS_26", "symbol": "md_seed", "scope": "LIBRARY", "original": ".text"}}}}}, "SSL_enable_RSA": {"a06a14fd35164be702df064b20c3075b220def9d": {"901ba835": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "rsa_sign_cb"}, "12": {"type": "MIPS_26", "symbol": "RSA_set_sign_cb", "scope": "LIBRARY"}, "16": {"type": "MIPS_LO16", "symbol": "rsa_sign_cb"}, "20": {"type": "MIPS_HI16", "symbol": "rsa_verify_cb"}, "24": {"type": "MIPS_26", "symbol": "RSA_set_verify_cb", "scope": "LIBRARY"}, "28": {"type": "MIPS_LO16", "symbol": "rsa_verify_cb"}, "32": {"type": "MIPS_HI16", "symbol": "rsa_sign_ASN1_OCTET_STRING_cb"}, "36": {"type": "MIPS_26", "symbol": "RSA_set_ASN1_OCTET_sign_cb", "scope": "LIBRARY"}, "40": {"type": "MIPS_LO16", "symbol": "rsa_sign_ASN1_OCTET_STRING_cb"}, "44": {"type": "MIPS_HI16", "symbol": "rsa_verify_ASN1_OCTET_STRING_cb"}, "48": {"type": "MIPS_26", "symbol": "RSA_set_ASN1_OCTET_verify_cb", "scope": "LIBRARY"}, "52": {"type": "MIPS_LO16", "symbol": "rsa_verify_ASN1_OCTET_STRING_cb"}}}}}, "RSA_new_meth": {"7fab8dabff767fdf980f661440c1343615ab220f": {"946b99c7": {"type": "FUNCTION", "size": 296, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "memset"}, "132": {"type": "MIPS_26", "symbol": "R_EITEMS_new", "scope": "LIBRARY"}, "152": {"type": "MIPS_26", "symbol": "R_rand_get_default", "scope": "LIBRARY"}, "184": {"type": "MIPS_26", "symbol": "R_EITEMS_add", "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "R_EITEMS_add", "scope": "LIBRARY"}, "248": {"type": "MIPS_26", "symbol": "R_EITEMS_free", "scope": "LIBRARY"}, "256": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "RSA_free": {"83a801b2fc79e5e36e0c7f1ad07f413b7b685bd8": {"a9690377": {"type": "FUNCTION", "size": 152, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_26", "symbol": "R_locked_add", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "PK_CTX_free", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "R_EITEMS_free", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "128": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "RSA_new": {"4d794c72fcd4aa5782920b28126e2990125845c1": {"5c5ee3c9": {"type": "FUNCTION", "size": 44, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_26", "symbol": "RSA_new_meth", "scope": "LIBRARY"}}}}}, "RSA_set_default_meth": {"379568001121d67192b561489fbcf0e0086b0eb3": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".dat)PS2SDB", 8192}, + std::string_view{R"PS2SDB(a"}}}}}, "RSA_get": {"7439b2f2012b9b73abfc69ac0b4d4f3bde3ca2c4": {"e8979f29": {"type": "FUNCTION", "size": 140, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "R_EITEMS_find_item", "scope": "LIBRARY"}}}}}, "RSA_set": {"bfcf4dfddd0db322ba1f3ac1ebae130c79784efa": {"884ad2e5": {"type": "FUNCTION", "size": 56, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "R_EITEMS_add", "scope": "LIBRARY"}}}}}, "RSA_size": {"6827db050c462c67d34ccd5ce86d87b33b49fa62": {"e8979f29": {"type": "FUNCTION", "size": 104, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "R_EITEMS_find_item", "scope": "LIBRARY"}}}}}, "RSA_verify": {"e6e801ef2bcd9916811d19823313bfd609da3a70": {"0f382168": {"type": "FUNCTION", "size": 312, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"76": {"type": "MIPS_26", "symbol": "rsa_get_pk_ctx", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "R_EITEMS_find_item", "scope": "LIBRARY"}, "144": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "184": {"type": "MIPS_26", "symbol": "PK_pub_dec", "scope": "LIBRARY"}, "228": {"type": "MIPS_26", "symbol": "memcmp"}, "256": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "RSA_sign": {"e9a21f80b18ecdb537222acf3530bdb931c42270": {"7f46e131": {"type": "FUNCTION", "size": 340, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "rsa_get_pk_ctx", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "PK_get_info", "scope": "LIBRARY"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "188": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "196": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "200": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "208": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "212": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "220": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "224": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "248": {"type": "MIPS_26", "symbol": "PK_encode_pkcs1_digest", "scope": "LIBRARY"}, "280": {"type": "MIPS_26", "symbol": "PK_sign", "scope": "LIBRARY"}}}}}, "RSA_public_encrypt": {"76e4a5104087b6772c91df2bd0b57a20b2d913b9": {"2ff47b0f": {"type": "FUNCTION", "size": 148, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "rsa_get_pk_ctx", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "PK_pub_enc", "scope": "LIBRARY"}}}}}, "RSA_private_encrypt": {"76e4a5104087b6772c91df2bd0b57a20b2d913b9": {"d3f53cd4": {"type": "FUNCTION", "size": 148, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "rsa_get_pk_ctx", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "PK_priv_enc", "scope": "LIBRARY"}}}}}, "RSA_public_decrypt": {"76e4a5104087b6772c91df2bd0b57a20b2d913b9": {"cdc2c8f3": {"type": "FUNCTION", "size": 148, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "rsa_get_pk_ctx", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "PK_pub_dec", "scope": "LIBRARY"}}}}}, "d2i_RSAPublicKey": {"e31fadee334b2d24c8cccb67b72f0adc4a21dfcb": {"38a5484e": {"type": "FUNCTION", "size": 204, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "RSA_new", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "PK_decode_rsa_public_key", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "R_EITEMS_compact", "scope": "LIBRARY"}, "144": {"type": "MIPS_26", "symbol": "RSA_free", "scope": "LIBRARY"}}}}}, "d2i_RSAPrivateKey": {"784cf404397fc673a6a9a5747c04b2e9539a2f83": {"21a77973": {"type": "FUNCTION", "size": 204, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "RSA_new", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "PK_decode_rsa_private_key", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "R_EITEMS_compact", "scope": "LIBRARY"}, "144": {"type": "MIPS_26", "symbol": "RSA_free", "scope": "LIBRARY"}}}}}, "i2d_RSAPublicKey": {"6f3e0a086ae84b371a818e2684f23579c8d9f035": {"b35b8c76": {"type": "FUNCTION", "size": 128, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "PK_encode_rsa_public_key", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "PK_encode_rsa_public_key", "scope": "LIBRARY"}}}}}, "RSA_dup": {"8ae5f37059159ff9f1407f5c410e6bac5c8fe86b": {"b6de4b6b": {"type": "FUNCTION", "size": 184, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "RSA_new_meth", "scope": "LIBRARY"}, "44": {"type": "MIPS_26", "symbol": "R_EITEMS_dup", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "152": {"type": "MIPS_26", "symbol": "RSA_free", "scope": "LIBRARY"}}}}}, "RSA_flags": {"97d6046e7899a38bcf88cfa01357d43c90522d1e": {"00000000": {"type": "FUNCTION", "size": 20, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "rsa_get_pk_ctx": {"c9bb42bf554995140e3dc08b3aec06ed659e79b3": {"15c7d26d": {"type": "FUNCTION", "size": 188, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "52": {"type": "MIPS_26", "symbol": "R_lock_ctrl", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "PK_CTX_new", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "PK_CTX_set", "scope": "LIBRARY"}, "120": {"type": "MIPS_26", "symbol": "PK_CTX_free", "scope": "LIBRARY"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "144": {"type": "MIPS_26", "symbol": "R_lock_ctrl", "scope": "LIBRARY"}}}}}, "RSA_set_sign_cb": {"379568001121d67192b561489fbcf0e0086b0eb3": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "RSA_set_ASN1_OCTET_sign_cb": {"379568001121d67192b561489fbcf0e0086b0eb3": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4)PS2SDB", 8192}, + std::string_view{R"PS2SDB(.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "RSA_set_verify_cb": {"379568001121d67192b561489fbcf0e0086b0eb3": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "RSA_set_ASN1_OCTET_verify_cb": {"379568001121d67192b561489fbcf0e0086b0eb3": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "RSA_sign_ASN1_OCTET_STRING": {"31532e70d3d625a8b328bce00c0a79f55b95125f": {"d3e72eac": {"type": "FUNCTION", "size": 44, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "RSA_verify_ASN1_OCTET_STRING": {"31532e70d3d625a8b328bce00c0a79f55b95125f": {"d3e72eac": {"type": "FUNCTION", "size": 44, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "OP_rsa_pkcs1_private_key_decode": {"2a51c093207f3b6546ea5ac91d4ae4a6999eaed5": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "OP_rsa_pkcs1_public_key_decode": {"2a51c093207f3b6546ea5ac91d4ae4a6999eaed5": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "OP_rsa_pkcs1_public_key_encode": {"2a51c093207f3b6546ea5ac91d4ae4a6999eaed5": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "ssl23_get_client_method": {"e7dbde7ee7e328ffdd28880c6547c506afe175ed": {"a6076bc8": {"type": "FUNCTION", "size": 96, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "SSLv2_client_method", "scope": "LIBRARY"}, "44": {"type": "MIPS_26", "symbol": "SSLv3_client_method", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "TLSv1_client_method", "scope": "LIBRARY"}}}}}, "SSLv23_client_method": {"a5fa97f2a4d7168c5d98254f62f3f9dd76938ded": {"ae210ee1": {"type": "FUNCTION", "size": 344, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_26", "symbol": "sslv23_base_method", "scope": "LIBRARY"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "300": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "316": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "ssl23_connect": {"411ac0031cdfa77b53933592af6be984e7bf3b47": {"90fe55e9": {"type": "FUNCTION", "size": 652, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "R_rand_get_default", "scope": "LIBRARY"}, "36": {"type": "MIPS_26", "symbol": "R_rand_add_entropy", "scope": "LIBRARY"}, "44": {"type": "MIPS_26", "symbol": "ERR_clear_error", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "__errno"}, "84": {"type": "MIPS_26", "symbol": "SSL_state", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "SSL_state", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "SSL_clear", "scope": "LIBRARY"}, "260": {"type": "MIPS_26", "symbol": "ssl23_get_server_hello", "scope": "LIBRARY", "original": ".text"}, "348": {"type": "MIPS_26", "symbol": "BUF_MEM_new", "scope": "LIBRARY"}, "368": {"type": "MIPS_26", "symbol": "BUF_MEM_grow", "scope": "LIBRARY"}, "388": {"type": "MIPS_26", "symbol": "ssl3_setup_buffers", "scope": "LIBRARY"}, "404": {"type": "MIPS_26", "symbol": "ssl3_init_finished_mac", "scope": "LIBRARY"}, "452": {"type": "MIPS_26", "symbol": "ssl23_client_hello", "scope": "LIBRARY", "original": ".text"}, "504": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "540": {"type": "MIPS_26", "symbol": "BIO_ctrl", "scope": "LIBRARY"}}}}}, "ssl23_client_hello": {"dabd405e1c5cdfa7dc6338291ac627a76f732076": {"e62e3970": {"type": "FUNCTION", "size": 656, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"124": {"type": "MIPS_26", "symbol": "R_rand_get_default", "scope": "LIBRARY"}, "144": {"type": "MIPS_26", "symbol": "R_rand_bytes", "scope": "LIBRARY"}, "308": {"type": "MIPS_26", "symbol": "SSL_get_ciphers", "scope": "LIBRARY"}, "324": {"type": "MIPS_26", "symbol": "ssl_cipher_list_to_bytes", "scope": "LIBRARY"}, "384": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "484": {"type": "MIPS_26", "symbol": "memset"}, "492": {"type": "MIPS_26", "symbol": "R_rand_get_default", "scope": "LIBRARY"}, "512": {"type": "MIPS_26", "symbol": "R_rand_bytes", "scope": "LIBRARY"}, "536": {"type": "MIPS_26", "symbol": "memcpy"}, "596": {"type": "MIPS_26", "symbol": "ssl3_finish_mac", "scope": "LIBRARY"}, "604": {"type": "MIPS_26", "symbol": "ssl23_write_bytes", "scope": "LIBRARY"}}}}}, "ssl23_get_server_hello": {"aed596200dfd9668d1a568849cc8656208d280fc": {"a1ed112c": {"type": "FUNCTION", "size": 1180, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"92": {"type": "MIPS_26", "symbol": "ssl23_read_bytes", "scope": "LIBRARY"}, "128": {"type": "MIPS_26", "symbol": "memcpy"}, "260": {"type": "MIPS_26", "symbol": "ssl2_new", "scope": "LIBRARY"}, "284": {"type": "MIPS_26", "symbol": "ssl2_clear", "scope": "LIBRARY"}, "352": {"type": "MIPS_26", "symbol": "memcpy"}, "372": {"type": "MIPS_26", "symbol": "ssl3_free", "scope": "LIBRARY"}, "384": {"type": "MIPS_26", "symbol": "BUF_MEM_grow", "scope": "L)PS2SDB", 8192}, + std::string_view{R"PS2SDB(IBRARY"}, "456": {"type": "MIPS_26", "symbol": "ssl2_setup_buffers", "scope": "LIBRARY"}, "472": {"type": "MIPS_26", "symbol": "ssl2_alloc_read_buf", "scope": "LIBRARY"}, "516": {"type": "MIPS_26", "symbol": "memcpy"}, "548": {"type": "MIPS_26", "symbol": "SSLv2_client_method", "scope": "LIBRARY"}, "556": {"type": "MIPS_HI16", "symbol": "", "original": "SSL_connect"}, "564": {"type": "MIPS_LO16", "symbol": "", "original": "SSL_connect"}, "640": {"type": "MIPS_26", "symbol": "ssl_init_wbio_buffer", "scope": "LIBRARY"}, "692": {"type": "MIPS_26", "symbol": "memcpy"}, "752": {"type": "MIPS_26", "symbol": "SSLv3_client_method", "scope": "LIBRARY"}, "796": {"type": "MIPS_26", "symbol": "TLSv1_client_method", "scope": "LIBRARY"}, "852": {"type": "MIPS_HI16", "symbol": "", "original": "SSL_connect"}, "856": {"type": "MIPS_LO16", "symbol": "", "original": "SSL_connect"}, "1052": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "1080": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "1104": {"type": "MIPS_26", "symbol": "ssl_get_new_session", "scope": "LIBRARY"}, "1124": {"type": "MIPS_26", "symbol": "SSL_connect", "scope": "LIBRARY"}}}}}, "ssl23_data_init": {"6935a38acd9b08484af2004d9d5184ac9cbba2fa": {"6d0f54c8": {"type": "FUNCTION", "size": 56, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "get_sslc_global", "scope": "LIBRARY"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "ssl_return_zero": {"0a5385cf4a659d302a43046ea0269e2b17a3ef1d": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "ssl23_default_timeout": {"9de1eeab7fc103960e43fc8f489ba7c1c6c02e7b": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sslv23_base_method": {"bc1f7376e7700120eb2754ae75d34ab3bf794f40": {"bf8baf81": {"type": "FUNCTION", "size": 36, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "ssl23_data_init", "scope": "LIBRARY", "original": ".text"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "ssl23_num_ciphers": {"66d514c11d03734eb33852143973f3b6fef8f0fe": {"45618eb1": {"type": "FUNCTION", "size": 48, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "ssl3_num_ciphers", "scope": "LIBRARY"}, "20": {"type": "MIPS_26", "symbol": "ssl2_num_ciphers", "scope": "LIBRARY"}}}}}, "ssl23_get_cipher": {"aa4030e28735eb42720ae448dd35c4ef2e16f453": {"b4a72246": {"type": "FUNCTION", "size": 76, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "ssl3_num_ciphers", "scope": "LIBRARY"}, "36": {"type": "MIPS_26", "symbol": "ssl3_get_cipher", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "ssl2_get_cipher", "scope": "LIBRARY"}}}}}, "ssl23_get_cipher_by_char": {"fab36df86582756052012d94dd0b3c153168a9cc": {"f46c2aa2": {"type": "FUNCTION", "size": 100, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "ssl3_num_ciphers", "scope": "LIBRARY"}, "60": {"type": "MIPS_26", "symbol": "ssl3_get_cipher_by_char", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "ssl2_get_cipher_by_char", "scope": "LIBRARY"}}}}}, "ssl23_put_cipher_by_char": {"596a18a643bfefc65bd70dc238e9a74157600743": {"00000000": {"type": "FUNCTION", "size": 52, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "ssl23_read": {"8876f49382d31e29cfff20b33ac643b8b5242789": {"c52eee3b": {"type": "FUNCTION", "size": 224, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__errno"}, "40": {"type": "MIPS_26", "symbol": "SSL_state", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "152": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "172": {"type": "MIPS_26", "symbol": "SSL_read", "scope": "LIBRARY"}, "188": {"type": "MIPS_26", "symbol": "ssl_undefined_function", "scope": "LIBRARY"}}}}}, "ssl23_write": {"a66388ba637dca9a8d86741c249cf5a6807e1ce6": {"d0d6129c": {"type": "FUNCTION", "size": 224, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__errno"}, "40": {"type": "MIPS_26", "symbol": "SSL_state", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "152": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "172": {"type": "MIPS_26", "symbol": "SSL_write", "scope": "LIBRARY"}, "188": {"type": "MIPS_26", "symbol": "ssl_undefined_function", "scope": "LIBRARY"}}}}}, "ssl23_write_bytes": {"62d126f16366d8a7edc26112516178bd9df8999c": {"da60624b": {"type": "FUNCTION", "size": 164, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"76": {"type": "MIPS_26", "symbol": "BIO_write", "scope": "LIBRARY"}}}}}, "ssl23_read_bytes": {"38099a92534c238e3efaf4b1430087cec66f2f40": {"b82e99c2": {"type": "FUNCTION", "size": 152, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"80": {"type": "MIPS_26", "symbol": "BIO_read", "scope": "LIBRARY"}}}}}, "ssl2_get_client_method": {"157e3a4f1208f1ada217d578a4d447f37a713227": {"750902e9": {"type": "FUNCTION", "size": 48, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "SSLv2_client_method", "scope": "LIBRARY", "original": ".text"}}}}}, "SSLv2_client_method": {"a5fa97f2a4d7168c5d98254f62f3f9dd76938ded": {"ae6a2aec": {"type": "FUNCTION", "size": 344, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_26", "symbol": "sslv2_base_method", "scope": "LIBRARY"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "300": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "316": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "320)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "ssl2_connect": {"a7848ad29bfc36aa10bc098884b91e14f2b52340": {"37550bee": {"type": "FUNCTION", "size": 1000, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "R_rand_get_default", "scope": "LIBRARY"}, "36": {"type": "MIPS_26", "symbol": "R_rand_add_entropy", "scope": "LIBRARY"}, "44": {"type": "MIPS_26", "symbol": "ERR_clear_error", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "__errno"}, "236": {"type": "MIPS_26", "symbol": "client_master_key", "scope": "LIBRARY", "original": ".text"}, "320": {"type": "MIPS_26", "symbol": "get_server_verify", "scope": "LIBRARY", "original": ".text"}, "440": {"type": "MIPS_26", "symbol": "BUF_MEM_new", "scope": "LIBRARY"}, "464": {"type": "MIPS_26", "symbol": "BUF_MEM_grow", "scope": "LIBRARY"}, "488": {"type": "MIPS_HI16", "symbol": "SSL_connect"}, "496": {"type": "MIPS_LO16", "symbol": "SSL_connect"}, "520": {"type": "MIPS_26", "symbol": "ssl2_setup_buffers", "scope": "LIBRARY"}, "548": {"type": "MIPS_26", "symbol": "client_hello", "scope": "LIBRARY", "original": ".text"}, "576": {"type": "MIPS_26", "symbol": "get_server_hello", "scope": "LIBRARY", "original": ".text"}, "636": {"type": "MIPS_26", "symbol": "ssl2_enc_init", "scope": "LIBRARY"}, "668": {"type": "MIPS_26", "symbol": "client_finished", "scope": "LIBRARY", "original": ".text"}, "696": {"type": "MIPS_26", "symbol": "get_server_finished", "scope": "LIBRARY", "original": ".text"}, "724": {"type": "MIPS_26", "symbol": "client_certificate", "scope": "LIBRARY", "original": ".text"}, "768": {"type": "MIPS_26", "symbol": "BUF_MEM_free", "scope": "LIBRARY"}, "788": {"type": "MIPS_26", "symbol": "ssl_update_cache", "scope": "LIBRARY"}, "880": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "get_server_hello": {"775adf5b371d50bd05a2e2abda76377d112f8ae3": {"f87e1450": {"type": "FUNCTION", "size": 1244, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"128": {"type": "MIPS_26", "symbol": "ssl2_read", "scope": "LIBRARY"}, "188": {"type": "MIPS_26", "symbol": "ssl2_return_error", "scope": "LIBRARY"}, "212": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "240": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "476": {"type": "MIPS_26", "symbol": "BUF_MEM_grow", "scope": "LIBRARY"}, "516": {"type": "MIPS_26", "symbol": "ssl2_read", "scope": "LIBRARY"}, "540": {"type": "MIPS_26", "symbol": "ssl2_part_read", "scope": "LIBRARY"}, "756": {"type": "MIPS_26", "symbol": "ssl_get_new_session", "scope": "LIBRARY"}, "800": {"type": "MIPS_26", "symbol": "ssl2_set_certificate", "scope": "LIBRARY", "original": ".text"}, "824": {"type": "MIPS_26", "symbol": "ssl2_return_error", "scope": "LIBRARY"}, "860": {"type": "MIPS_26", "symbol": "ssl2_return_error", "scope": "LIBRARY"}, "896": {"type": "MIPS_26", "symbol": "ssl_bytes_to_cipher_list", "scope": "LIBRARY"}, "928": {"type": "MIPS_26", "symbol": "ssl2_return_error", "scope": "LIBRARY"}, "952": {"type": "MIPS_HI16", "symbol": "ssl_cipher_ptr_id_cmp"}, "960": {"type": "MIPS_LO16", "symbol": "ssl_cipher_ptr_id_cmp"}, "964": {"type": "MIPS_26", "symbol": "sk_set_cmp_func", "scope": "LIBRARY"}, "972": {"type": "MIPS_26", "symbol": "ssl_get_ciphers_by_id", "scope": "LIBRARY"}, "1012": {"type": "MIPS_26", "symbol": "sk_find", "scope": "LIBRARY"}, "1048": {"type": "MIPS_26", "symbol": "ssl2_return_error", "scope": "LIBRARY"}, "1072": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "1120": {"type": "MIPS_26", "symbol": "SSLCERT_free", "scope": "LIBRARY"}, "1140": {"type": "MIPS_26", "symbol": "SSLCERT_reference_inc", "scope": "LIBRARY"}, "1192": {"type": "MIPS_26", "symbol": "memcpy"}}}}}, "client_hello": {"7eb5c8e5ef8808a4cb45de3d6a8fc801110c51e9": {"5b129917": {"type": "FUNCTION", "size": 548, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"108": {"type": "MIPS_26", "symbol": "ssl_get_new_session", "scope": "LIBRARY"}, "128": {"type": "MIPS_26", "symbol": "ssl2_return_error", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "SSL_get_ciphers", "scope": "LIBRARY"}, "184": {"type": "MIPS_26", "symbol": "ssl_cipher_list_to_bytes", "scope": "LIBRARY"}, "288": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "372": {"type": "MIPS_26", "symbol": "memcpy"}, "416": {"type": "MIPS_26", "symbol": "R_rand_get_default", "scope": "LIBRARY"}, "436": {"type": "MIPS_26", "symbol": "R_rand_bytes", "scope": "LIBRARY"}, "504": {"type": "MIPS_26", "symbol": "ssl2_do_write", "scope": "LIBRARY"}}}}}, "client_master_key": {"03bcc55ba6ca4a63095dc18f5a1e354b07e7d302": {"c635e7a2": {"type": "FUNCTION", "size": 628, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "R_rand_get_default", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "ssl_cipher_get_evp", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "ssl2_return_error", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "EVP_CIPHER_iv_length", "scope": "LIBRARY"}, "196": {"type": "MIPS_26", "symbol": "R_rand_bytes", "scope": "LIBRARY"}, "204": {"type": "MIPS_26", "symbol": "EVP_CIPHER_key_length", "scope": "LIBRARY"}, "232": {"type": "MIPS_26", "symbol": "R_rand_bytes", "scope": "LIBRARY"}, "272": {"type": "MIPS_26", "symbol": "ssl2_return_error", "scope": "LIBRARY"}, "324": {"type": "MIPS_26", "symbol": "memcpy"}, "376": {"type": "MIPS_26", "symbol": "ssl_rsa_public_encrypt", "scope": "LIBRARY", "original": ".text"}, "400": {"type": "MIPS_26", "symbol": "ssl2_return_error", "scope": "LIBRARY"}, "424": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "544": {"type": "MIPS_26", "symbol": "memcpy"}, "576": {"type": "MIPS_26", "symbol": "ssl2_do_write", "scope": "LIBRARY"}}}}}, "client_finished": {"c46d0530b7ad35eece4222b34449e87705a1c2b5": {"54d484d7": {"type": "FUNCTION", "size": 116, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "memcpy"}, "92": {"type": "MIPS_26", "symbol": "ssl2_do_write", "scope": "LIBRARY"}}}}}, "client_certificate": {"5036d1601d95bde787689df50d36e59e53a96cb0": {"8c16e282": {"type": "FUNCTION", "size": 1104, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"100": {"type": "MIPS_26", "symbol": "ssl2_read", "scope": "LIBRARY"}, "140": {"type": "MIPS_26", "symbol": "ssl2_part_read", "scope": "LIBRARY"}, "172": {"type": "MIPS_26", "symbol": "ssl2_return_error", "scope": "LIBRARY"}, "196": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "380": {"type": "MIPS_26", "symbol": "SSL_use_certificate", "scope": "LIBRARY"}, "396": {"type": "MIPS_26", "symbol": "SSL_use_PrivateKey", "scope": "LIBRARY"}, "416": {"type": "MIPS_26", "symbol": "SSLCERT_free", "scope": "LIBRARY"}, "424": {"type": "MIPS_26", "symbol": "SSLCERT_PKEY_free", "scope": "LIBRARY"}, "460": {"type": "MIPS_26", "symbol": "SSLCERT_free", "scope": "LIBRARY"}, "480": {"type": "MIPS_26", "symbol": "SSLCERT_PKEY_free", "scope": "LIBRARY"}, "508": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "612": {"type": "MIPS_26", "symbol": "ssl2_do_write", "scope": "LIBRARY"}, "728": {"type": "MIPS_26", "symbol": "EVP_DigestInit", "scope": "LIBRARY"}, "756": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}, "772": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}, "800": {"type": "MIPS_26", "symbol": "SSLCERT_to_binary", "scope": "LIBRARY"}, "820": {"type": "MIPS_26", "symbol": "EVP_Di)PS2SDB", 8192}, + std::string_view{R"PS2SDB(gestUpdate", "scope": "LIBRARY"}, "884": {"type": "MIPS_26", "symbol": "SSLCERT_to_binary", "scope": "LIBRARY"}, "952": {"type": "MIPS_26", "symbol": "EVP_SignFinal", "scope": "LIBRARY"}, "1040": {"type": "MIPS_26", "symbol": "ssl2_do_write", "scope": "LIBRARY"}}}}}, "get_server_verify": {"4de9ac827170d07b34d4c871fd8ccca962429117": {"85d60630": {"type": "FUNCTION", "size": 348, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "ssl2_read", "scope": "LIBRARY"}, "128": {"type": "MIPS_26", "symbol": "ssl2_return_error", "scope": "LIBRARY"}, "164": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "200": {"type": "MIPS_26", "symbol": "ssl2_read", "scope": "LIBRARY"}, "240": {"type": "MIPS_26", "symbol": "ssl2_part_read", "scope": "LIBRARY"}, "264": {"type": "MIPS_26", "symbol": "memcmp"}, "280": {"type": "MIPS_26", "symbol": "ssl2_return_error", "scope": "LIBRARY"}, "304": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "get_server_finished": {"adea4128a18e06c0838b871b61f92f13c32b87e9": {"1bf37880": {"type": "FUNCTION", "size": 484, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "ssl2_read", "scope": "LIBRARY"}, "192": {"type": "MIPS_26", "symbol": "ssl2_return_error", "scope": "LIBRARY"}, "232": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "272": {"type": "MIPS_26", "symbol": "ssl2_read", "scope": "LIBRARY"}, "304": {"type": "MIPS_26", "symbol": "ssl2_part_read", "scope": "LIBRARY"}, "360": {"type": "MIPS_26", "symbol": "memcmp"}, "376": {"type": "MIPS_26", "symbol": "ssl2_return_error", "scope": "LIBRARY"}, "400": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "ssl2_set_certificate": {"f827fd6f8d0fcc3660ce5661d95b76606460d79c": {"2a5957db": {"type": "FUNCTION", "size": 600, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"108": {"type": "MIPS_26", "symbol": "SSLCERT_from_binary", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "sk_new", "scope": "LIBRARY"}, "188": {"type": "MIPS_26", "symbol": "sk_push", "scope": "LIBRARY"}, "244": {"type": "MIPS_26", "symbol": "ssl_verify_cert_chain", "scope": "LIBRARY"}, "316": {"type": "MIPS_26", "symbol": "ssl_cert_new", "scope": "LIBRARY"}, "356": {"type": "MIPS_26", "symbol": "ssl_cert_free", "scope": "LIBRARY"}, "388": {"type": "MIPS_26", "symbol": "SSLCERT_get_pubkey", "scope": "LIBRARY"}, "496": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "512": {"type": "MIPS_26", "symbol": "ssl_set_cert_type", "scope": "LIBRARY"}, "532": {"type": "MIPS_26", "symbol": "sk_free", "scope": "LIBRARY"}, "548": {"type": "MIPS_26", "symbol": "SSLCERT_free", "scope": "LIBRARY"}}}}}, "ssl_rsa_public_encrypt": {"4616f55d8e0ed0edddac7f9ce43669dc8acac9f4": {"83a84d76": {"type": "FUNCTION", "size": 256, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "SSLCERT_get_pubkey", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "144": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "176": {"type": "MIPS_26", "symbol": "RSA_public_encrypt", "scope": "LIBRARY"}, "212": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "ssl2_enc_init": {"2bdb8b637a970d29be87512050241871b0ff5a00": {"6d7efab4": {"type": "FUNCTION", "size": 496, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "ssl_cipher_get_evp", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "ssl2_return_error", "scope": "LIBRARY"}, "128": {"type": "MIPS_26", "symbol": "EVP_MD_CTX_new", "scope": "LIBRARY"}, "156": {"type": "MIPS_26", "symbol": "EVP_DigestInit", "scope": "LIBRARY"}, "172": {"type": "MIPS_26", "symbol": "EVP_MD_size", "scope": "LIBRARY"}, "204": {"type": "MIPS_26", "symbol": "EVP_CIPHER_CTX_new", "scope": "LIBRARY"}, "228": {"type": "MIPS_26", "symbol": "EVP_CIPHER_CTX_init", "scope": "LIBRARY"}, "256": {"type": "MIPS_HI16", "symbol": "EVP_MD_CTX_free"}, "264": {"type": "MIPS_LO16", "symbol": "EVP_MD_CTX_free"}, "276": {"type": "MIPS_26", "symbol": "EVP_CIPHER_key_length", "scope": "LIBRARY"}, "300": {"type": "MIPS_26", "symbol": "ssl2_generate_key_material", "scope": "LIBRARY"}, "336": {"type": "MIPS_26", "symbol": "EVP_EncryptInit", "scope": "LIBRARY"}, "376": {"type": "MIPS_26", "symbol": "EVP_DecryptInit", "scope": "LIBRARY"}, "452": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "ssl2_enc": {"7da248bb9703486d33cd7cced7be462033872515": {"ee679bfb": {"type": "FUNCTION", "size": 164, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_26", "symbol": "EVP_CIPHER_CTX_block_size", "scope": "LIBRARY"}, "136": {"type": "MIPS_26", "symbol": "EVP_Cipher", "scope": "LIBRARY"}}}}}, "ssl2_mac": {"20b353147126990ab307759be67491011e18435f": {"33026d69": {"type": "FUNCTION", "size": 276, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"160": {"type": "MIPS_26", "symbol": "EVP_DigestInit", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "EVP_CIPHER_CTX_key_length", "scope": "LIBRARY"}, "184": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}, "200": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}, "216": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}, "232": {"type": "MIPS_26", "symbol": "EVP_DigestFinal", "scope": "LIBRARY"}}}}}, "ssl2_data_init": {"6935a38acd9b08484af2004d9d5184ac9cbba2fa": {"6d0f54c8": {"type": "FUNCTION", "size": 56, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "get_sslc_global", "scope": "LIBRARY"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "ssl2_default_timeout": {"9de1eeab7fc103960e43fc8f489ba7c1c6c02e7b": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sslv2_base_method": {"bc1f7376e7700120eb2754ae75d34ab3bf794f40": {"cdaeb827": {"type": "FUNCTION", "size": 36, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "ssl2_data_init", "scope": "LIBRARY", "original": ".text"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "ssl2_num_ciphers": {"5ccbbb80d5705e01c0a1e2ea71529636ed42aff1": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "ssl2_get_cipher": {"9742d95367818ddc42773d416890b97cdac5ba71": {"60bcc029": {"type": "FUNCTION", "size": 52, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "ssl2_pending": {")PS2SDB", 8192}, + std::string_view{R"PS2SDB(eaaef79d0e2a0227dbcfc43ccaed03702028870d": {"00000000": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "ssl2_new": {"e3614f9c6c867d066392c20dd82e910dc911e5d6": {"af12b3b1": {"type": "FUNCTION", "size": 104, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "44": {"type": "MIPS_26", "symbol": "memset"}, "64": {"type": "MIPS_26", "symbol": "ssl2_clear", "scope": "LIBRARY", "original": ".text"}}}}}, "ssl2_free": {"d71560fd0c995ade445a82e389ebf7c02bf5cf9a": {"f35ab1ae": {"type": "FUNCTION", "size": 112, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "memset"}, "80": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "ssl2_clear": {"586991ea641f0c00e2bd559259a9c6d81b2c5032": {"7860c28c": {"type": "FUNCTION", "size": 124, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "memset"}}}}}, "ssl2_ctrl": {"0a5385cf4a659d302a43046ea0269e2b17a3ef1d": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "ssl2_ctx_ctrl": {"0a5385cf4a659d302a43046ea0269e2b17a3ef1d": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "ssl2_get_cipher_by_char": {"23b6951a3da1d9cb7468f8cd21e3e5c937d7d942": {"9b62fbd1": {"type": "FUNCTION", "size": 276, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": "ssl_cipher_ptr_id_cmp"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_26", "symbol": "qsort"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": "ssl_cipher_ptr_id_cmp"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": "ssl_cipher_ptr_id_cmp"}, "192": {"type": "MIPS_LO16", "symbol": "", "original": "ssl_cipher_ptr_id_cmp"}, "200": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "212": {"type": "MIPS_26", "symbol": "OBJ_bsearch", "scope": "LIBRARY"}}}}}, "ssl2_put_cipher_by_char": {"5d9730a0e8cbadb81a8aabbb6e714a17461ed8a2": {"00000000": {"type": "FUNCTION", "size": 76, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "ssl2_shutdown": {"0cc7b8f67252ae16e6e275d03b05b037180e111e": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "ssl2_generate_key_material": {"669b61de1705c7f2581c5d6227eecabd1867e319": {"094c13f9": {"type": "FUNCTION", "size": 296, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "EVP_MD_CTX_new", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "EVP_md5_digest", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "EVP_DigestInit", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "EVP_MD_CTX_size", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "EVP_DigestInit", "scope": "LIBRARY"}, "136": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}, "152": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}, "184": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}, "204": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}, "224": {"type": "MIPS_26", "symbol": "EVP_DigestFinal", "scope": "LIBRARY"}, "252": {"type": "MIPS_26", "symbol": "EVP_MD_CTX_free", "scope": "LIBRARY"}}}}}, "ssl2_setup_buffers": {"044a901aae9917193df2f91f7b1b84bbab154863": {"dcb32927": {"type": "FUNCTION", "size": 172, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "ssl2_alloc_read_buf", "scope": "LIBRARY", "original": ".text"}, "96": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "144": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "ssl2_alloc_read_buf": {"7a4d75145c33e39cd53ae0ac08f6103e1887e04d": {"b88df57f": {"type": "FUNCTION", "size": 200, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"88": {"type": "MIPS_26", "symbol": "R_realloc", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "164": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "ssl3_send_finished": {"7a7ee03f31074c777de037e21f2adc0695391d95": {"b0666c42": {"type": "FUNCTION", "size": 208, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"176": {"type": "MIPS_26", "symbol": "ssl3_do_write", "scope": "LIBRARY"}}}}}, "ssl3_get_finished": {"4686b98996acacc46125e7c6b0c3011994748601": {"a84410e7": {"type": "FUNCTION", "size": 260, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "ssl3_get_message", "scope": "LIBRARY", "original": ".text"}, "148": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "172": {"type": "MIPS_26", "symbol": "memcmp"}, "212": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "228": {"type": "MIPS_26", "symbol": "ssl3_send_alert", "scope": "LIBRARY"}}}}}, "ssl3_send_change_cipher_spec": {"58e6b87cc0e93ed0ac5c228bfad32f9952e7ec7f": {"cabea475": {"type": "FUNCTION", "size": 80, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "ssl3_do_write", "scope": "LIBRARY"}}}}}, "ssl3_output_cert_chain": {"724957d9a8ab7cf82576ae121e55b04802291f91": {"e517f531": {"type": "FUNCTION", "size": 1084, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "BUF_MEM_grow", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "SSLCERT_STORE_CTX_new", "scope": "LIBRARY"}, "164": {"type": "MIPS_26", "symbol": "SSLCERT_STORE_CTX_init", "scope": "LIBRARY"}, "208": {"type": "MIPS_26")PS2SDB", 8192}, + std::string_view{R"PS2SDB(, "symbol": "SSLCERT_get_issuer_name", "scope": "LIBRARY"}, "228": {"type": "MIPS_26", "symbol": "SSLCERT_STORE_get_by_subject", "scope": "LIBRARY"}, "244": {"type": "MIPS_26", "symbol": "SSLCERT_free", "scope": "LIBRARY"}, "256": {"type": "MIPS_26", "symbol": "SSLCERT_to_binary", "scope": "LIBRARY"}, "284": {"type": "MIPS_26", "symbol": "BUF_MEM_grow", "scope": "LIBRARY"}, "360": {"type": "MIPS_26", "symbol": "SSLCERT_to_binary", "scope": "LIBRARY"}, "376": {"type": "MIPS_26", "symbol": "SSLCERT_get_subject_name", "scope": "LIBRARY"}, "388": {"type": "MIPS_26", "symbol": "SSLCERT_get_issuer_name", "scope": "LIBRARY"}, "400": {"type": "MIPS_26", "symbol": "SSLCERT_NAME_cmp", "scope": "LIBRARY"}, "440": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "472": {"type": "MIPS_26", "symbol": "SSLCERT_STORE_CTX_cleanup", "scope": "LIBRARY"}, "480": {"type": "MIPS_26", "symbol": "SSLCERT_STORE_CTX_free", "scope": "LIBRARY"}, "532": {"type": "MIPS_26", "symbol": "SSLCERT_to_binary", "scope": "LIBRARY"}, "560": {"type": "MIPS_26", "symbol": "BUF_MEM_grow", "scope": "LIBRARY"}, "640": {"type": "MIPS_26", "symbol": "SSLCERT_to_binary", "scope": "LIBRARY"}, "724": {"type": "MIPS_26", "symbol": "SSLCERT_to_binary", "scope": "LIBRARY"}, "752": {"type": "MIPS_26", "symbol": "BUF_MEM_grow", "scope": "LIBRARY"}, "832": {"type": "MIPS_26", "symbol": "SSLCERT_to_binary", "scope": "LIBRARY"}}}}}, "ssl3_get_message": {"ac662b70b4e75e34396bd719eeffa30daf338ef8": {"fe97677e": {"type": "FUNCTION", "size": 596, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"164": {"type": "MIPS_26", "symbol": "ssl3_read_bytes", "scope": "LIBRARY"}, "316": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "348": {"type": "MIPS_26", "symbol": "BUF_MEM_grow", "scope": "LIBRARY"}, "380": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "456": {"type": "MIPS_26", "symbol": "ssl3_read_bytes", "scope": "LIBRARY"}, "504": {"type": "MIPS_26", "symbol": "ssl3_part_read", "scope": "LIBRARY"}, "540": {"type": "MIPS_26", "symbol": "ssl3_send_alert", "scope": "LIBRARY"}}}}}, "ssl_cert_type": {"2d74fbae049220654fe33e48bfd6daed0d862e4a": {"b4975090": {"type": "FUNCTION", "size": 168, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "SSLCERT_get_pubkey", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "SSLCERT_get_signature_type", "scope": "LIBRARY"}}}}}, "ssl_verify_alarm_type": {"606422ccca94cc27a7bd60f053edb41e60aa61f8": {"64f461b1": {"type": "FUNCTION", "size": 112, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "ssl3_setup_buffers": {"1a3e5e0031598f7cd5c7fbfadb9e7878b8033717": {"1a6ce299": {"type": "FUNCTION", "size": 204, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "ssl3_alloc_read_buf", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "172": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "ssl3_alloc_read_buf": {"9458282f0a287246db81009d4ecc4dacab19761d": {"fe27a4c1": {"type": "FUNCTION", "size": 236, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"128": {"type": "MIPS_26", "symbol": "R_realloc", "scope": "LIBRARY"}, "144": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}}}}}, "ssl3_generate_key_block": {"16bd40cc1df9d8a6c7391dc1baff2ec4ee309521": {"08377716": {"type": "FUNCTION", "size": 608, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_26", "symbol": "EVP_MD_CTX_new", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "EVP_MD_CTX_new", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "EVP_md5_digest", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "EVP_DigestInit", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "EVP_sha1_digest", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "EVP_DigestInit", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "EVP_MD_CTX_size", "scope": "LIBRARY"}, "136": {"type": "MIPS_26", "symbol": "EVP_MD_CTX_size", "scope": "LIBRARY"}, "280": {"type": "MIPS_26", "symbol": "EVP_DigestInit", "scope": "LIBRARY"}, "296": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}, "316": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}, "336": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}, "356": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}, "372": {"type": "MIPS_26", "symbol": "EVP_DigestFinal", "scope": "LIBRARY"}, "384": {"type": "MIPS_26", "symbol": "EVP_DigestInit", "scope": "LIBRARY"}, "404": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}, "420": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}, "448": {"type": "MIPS_26", "symbol": "EVP_DigestFinal", "scope": "LIBRARY"}, "468": {"type": "MIPS_26", "symbol": "memcpy"}, "488": {"type": "MIPS_26", "symbol": "EVP_DigestFinal", "scope": "LIBRARY"}, "536": {"type": "MIPS_26", "symbol": "memset"}, "544": {"type": "MIPS_26", "symbol": "EVP_MD_CTX_free", "scope": "LIBRARY"}, "552": {"type": "MIPS_26", "symbol": "EVP_MD_CTX_free", "scope": "LIBRARY"}}}}}, "ssl3_change_cipher_state": {"61ab3cc0d78fb6c78a7ed5fc99da96a59447f1ed": {"8b3b0dbf": {"type": "FUNCTION", "size": 868, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"112": {"type": "MIPS_26", "symbol": "memset"}, "144": {"type": "MIPS_26", "symbol": "memset"}, "176": {"type": "MIPS_26", "symbol": "EVP_CIPHER_CTX_new", "scope": "LIBRARY"}, "200": {"type": "MIPS_HI16", "symbol": "", "original": "EVP_MD_CTX_free"}, "204": {"type": "MIPS_26", "symbol": "EVP_MD_CTX_new", "scope": "LIBRARY"}, "220": {"type": "MIPS_HI16", "symbol": "", "original": "EVP_MD_CTX_free"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": "EVP_MD_CTX_free"}, "236": {"type": "MIPS_26", "symbol": "EVP_DigestInit", "scope": "LIBRARY"}, "252": {"type": "MIPS_26", "symbol": "EVP_MD_size", "scope": "LIBRARY"}, "272": {"type": "MIPS_26", "symbol": "EVP_CIPHER_CTX_init", "scope": "LIBRARY"}, "292": {"type": "MIPS_26", "symbol": "EVP_MD_size", "scope": "LIBRARY"}, "340": {"type": "MIPS_26", "symbol": "EVP_CIPHER_key_length", "scope": "LIBRARY"}, "352": {"type": "MIPS_26", "symbol": "EVP_CIPHER_iv_length", "scope": "LIBRARY"}, "500": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "520": {"type": "MIPS_26", "symbol": "memcpy"}, "540": {"type": "MIPS_26", "symbol": "EVP_MD_CTX_new", "scope": "LIBRARY"}, "548": {"type": "MIPS_26", "symbol": "EVP_md5_digest", "scope": "LIBRARY"}, "560": {"type": "MIPS_26", "symbol": "EVP_DigestInit", "scope": "LIBRARY"}, "576": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}, "592": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}, "608": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}, "624": {"type": "MIPS_26", "symbol": "EVP_DigestFinal", "scope": "LIBRARY"}, "644": {"type": "MIPS_26", "symbol": "EVP_DigestInit", "scope": "LIBRARY"}, "660": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}, "676": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}, "696": {"type": "MIPS_26", "symbol": "EVP_DigestFinal", "scope": "LIBRAR)PS2SDB", 8192}, + std::string_view{R"PS2SDB(Y"}, "708": {"type": "MIPS_26", "symbol": "EVP_MD_CTX_free", "scope": "LIBRARY"}, "740": {"type": "MIPS_26", "symbol": "EVP_CipherInit", "scope": "LIBRARY"}, "760": {"type": "MIPS_26", "symbol": "memset"}, "776": {"type": "MIPS_26", "symbol": "memset"}, "808": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "ssl3_setup_key_block": {"bb513fced5da000e1e69a28b5313776c9f2839ab": {"f2b53891": {"type": "FUNCTION", "size": 268, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "ssl_cipher_get_evp", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "EVP_CIPHER_key_length", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "EVP_MD_size", "scope": "LIBRARY"}, "128": {"type": "MIPS_26", "symbol": "EVP_CIPHER_iv_length", "scope": "LIBRARY"}, "152": {"type": "MIPS_26", "symbol": "ssl3_cleanup_key_block", "scope": "LIBRARY", "original": ".text"}, "160": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "200": {"type": "MIPS_26", "symbol": "ssl3_generate_key_block", "scope": "LIBRARY", "original": ".text"}, "232": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "ssl3_cleanup_key_block": {"41742e4ca741a3cc5ea7272ef39b81b014587b80": {"6c2022ac": {"type": "FUNCTION", "size": 88, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "memset"}, "48": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "ssl3_enc": {"3e2151969a9abbb8d71f02a3ae394c476e20bdbb": {"45b82efb": {"type": "FUNCTION", "size": 432, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"80": {"type": "MIPS_26", "symbol": "EVP_CIPHER_CTX_cipher", "scope": "LIBRARY"}, "128": {"type": "MIPS_26", "symbol": "memcpy"}, "148": {"type": "MIPS_26", "symbol": "EVP_CIPHER_CTX_block_size", "scope": "LIBRARY"}, "268": {"type": "MIPS_26", "symbol": "EVP_Cipher", "scope": "LIBRARY"}, "348": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "364": {"type": "MIPS_26", "symbol": "ssl3_send_alert", "scope": "LIBRARY"}}}}}, "ssl3_cert_verify_mac": {"defe28c809a34ec2cf3e0e0151606a7f1ec106b4": {"2634711d": {"type": "FUNCTION", "size": 36, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "ssl3_handshake_mac", "scope": "LIBRARY", "original": ".text"}}}}}, "ssl3_final_finish_mac": {"214f60127a8204058ee4c2852f265f7d4c1ab12c": {"6474d24b": {"type": "FUNCTION", "size": 148, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "ssl3_handshake_mac", "scope": "LIBRARY", "original": ".text"}, "92": {"type": "MIPS_26", "symbol": "ssl3_handshake_mac", "scope": "LIBRARY", "original": ".text"}}}}}, "ssl3_handshake_mac": {"7d26485608760e2d481b35238cb966e2c71f9708": {"8d6dac6d": {"type": "FUNCTION", "size": 296, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "EVP_MD_CTX_copy", "scope": "LIBRARY"}, "60": {"type": "MIPS_26", "symbol": "EVP_MD_CTX_size", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}, "160": {"type": "MIPS_26", "symbol": "EVP_DigestFinal", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "EVP_MD_CTX_digest", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "EVP_DigestInit", "scope": "LIBRARY"}, "200": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}, "208": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "220": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}, "236": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}, "252": {"type": "MIPS_26", "symbol": "EVP_DigestFinal", "scope": "LIBRARY"}}}}}, "ssl3_mac": {"af2db329d59a8dd45015d06fe4e40b64100028c7": {"cf38236a": {"type": "FUNCTION", "size": 464, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"132": {"type": "MIPS_26", "symbol": "EVP_DigestInit", "scope": "LIBRARY"}, "148": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "168": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}, "184": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}, "208": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}, "244": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}, "260": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}, "276": {"type": "MIPS_26", "symbol": "EVP_DigestFinal", "scope": "LIBRARY"}, "288": {"type": "MIPS_26", "symbol": "EVP_DigestInit", "scope": "LIBRARY"}, "304": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}, "312": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "324": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}, "340": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}, "356": {"type": "MIPS_26", "symbol": "EVP_DigestFinal", "scope": "LIBRARY"}}}}}, "ssl3_generate_master_secret": {"e26b4444598973ab472fe952b9ee3466aeb0d9de": {"ad58e6df": {"type": "FUNCTION", "size": 348, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "80": {"type": "MIPS_26", "symbol": "EVP_DigestInit", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "strlen"}, "112": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}, "128": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}, "148": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}, "188": {"type": "MIPS_26", "symbol": "EVP_DigestFinal", "scope": "LIBRARY"}, "204": {"type": "MIPS_26", "symbol": "EVP_DigestInit", "scope": "LIBRARY"}, "236": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}, "256": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}, "272": {"type": "MIPS_26", "symbol": "EVP_DigestFinal", "scope": "LIBRARY"}}}}}, "ssl3_alert_code": {"069c844fc04de26537b762f8add29d740230530f": {"0bfe8910": {"type": "FUNCTION", "size": 148, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "ssl3_init_finished_mac": {"c559a1d07912a6df54b655e6bb5a852825a5a15d": {"1ba37abc": {"type": "FUNCTION", "size": 88, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01")PS2SDB", 8192}, + std::string_view{R"PS2SDB(], "relocations": {"28": {"type": "MIPS_26", "symbol": "EVP_DigestInit", "scope": "LIBRARY"}, "60": {"type": "MIPS_26", "symbol": "EVP_DigestInit", "scope": "LIBRARY"}}}}}, "ssl3_finish_mac": {"7f5a768f3ed43b14b9cb9f7c7be5c5aec061ba5a": {"27584a43": {"type": "FUNCTION", "size": 84, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}}}}}, "ssl3_default_timeout": {"5b736863961dbb616a555ca251098f9122d262b3": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sslv3_base_method": {"2a51c093207f3b6546ea5ac91d4ae4a6999eaed5": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "ssl3_num_ciphers": {"f2154d00f5e76d73c89cf845452daa8cba910c9c": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "ssl3_get_cipher": {"423720d5c71ff3ac539a79f4f9f0365ec674b974": {"60bcc029": {"type": "FUNCTION", "size": 52, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "ssl3_pending": {"d7a629860552a41f8632ded583aaaf6b45e6c57b": {"00000000": {"type": "FUNCTION", "size": 32, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "ssl3_new": {"08a7aa34d8c248372fec8253e1ad930fa5b870bd": {"4757ed42": {"type": "FUNCTION", "size": 192, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "44": {"type": "MIPS_26", "symbol": "memset"}, "52": {"type": "MIPS_26", "symbol": "EVP_MD_CTX_new", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "EVP_MD_CTX_new", "scope": "LIBRARY"}, "160": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "ssl3_free": {"7e60e3f0093f00f2f8f35c8f06b3f88b4c10cddc": {"2a45b873": {"type": "FUNCTION", "size": 188, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "EVP_MD_CTX_free", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "EVP_MD_CTX_free", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "128": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "136": {"type": "MIPS_26", "symbol": "ssl3_tmp_free", "scope": "LIBRARY", "original": ".text"}, "152": {"type": "MIPS_26", "symbol": "memset"}, "160": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "ssl3_clear": {"eedbab846440deceff8ea1a68002f080bc3ebdb6": {"5b9dfc4b": {"type": "FUNCTION", "size": 300, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"76": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "ssl3_tmp_free", "scope": "LIBRARY", "original": ".text"}, "108": {"type": "MIPS_26", "symbol": "memset"}, "184": {"type": "MIPS_26", "symbol": "memset"}, "192": {"type": "MIPS_26", "symbol": "ssl_free_wbio_buffer", "scope": "LIBRARY"}}}}}, "ssl3_tmp_free": {"aee22856ab904d668bf74fb81ca78e106f9b70f1": {"c2b98259": {"type": "FUNCTION", "size": 104, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "ssl3_cleanup_key_block", "scope": "LIBRARY"}, "36": {"type": "MIPS_26", "symbol": "DH_free", "scope": "LIBRARY"}, "68": {"type": "MIPS_HI16", "symbol": "SSLCERT_NAME_free"}, "72": {"type": "MIPS_26", "symbol": "sk_pop_free", "scope": "LIBRARY"}, "76": {"type": "MIPS_LO16", "symbol": "SSLCERT_NAME_free"}}}}}, "ssl3_ctrl": {"42f63d658cd590dbe4306bd6c023d2bef221338d": {"d6c69211": {"type": "FUNCTION", "size": 268, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_26", "symbol": "sk_new", "scope": "LIBRARY"}, "176": {"type": "MIPS_26", "symbol": "sk_push", "scope": "LIBRARY"}, "192": {"type": "MIPS_26", "symbol": "SSLCERT_reference_inc", "scope": "LIBRARY"}, "220": {"type": "MIPS_HI16", "symbol": "SSLCERT_free"}, "224": {"type": "MIPS_26", "symbol": "sk_pop_free", "scope": "LIBRARY"}, "228": {"type": "MIPS_LO16", "symbol": "SSLCERT_free"}}}}}, "set_dh": {"4f96e884083e6a613ec1713f0332daf7a8163a8d": {"462e0823": {"type": "FUNCTION", "size": 132, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "DH_params_dup", "scope": "LIBRARY"}, "40": {"type": "MIPS_26", "symbol": "DH_generate_key", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "DH_free", "scope": "LIBRARY"}}}}}, "set_rsa": {"dba2839532b44d0c02f0abc7bfdb6734d2a8267c": {"ba98e970": {"type": "FUNCTION", "size": 116, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "RSA_dup", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "RSA_free", "scope": "LIBRARY"}}}}}, "ssl3_ctx_ctrl": {"739a12b0eafb7a176dc8d8de67465e19596ab6ca": {"9fcc1ced": {"type": "FUNCTION", "size": 544, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_26", "symbol": "SSL_EVP_PKEY_size", "scope": "LIBRARY"}, "148": {"type": "MIPS_26", "symbol": "SSL_EVP_PKEY_size", "scope": "LIBRARY"}, "184": {"type": "MIPS_26", "symbol": "RSA_size", "scope": "LIBRARY"}, "208": {"type": "MIPS_26", "symbol": "set_rsa", "scope": "LIBRARY", "original": ".text"}, "240": {"type": "MIPS_26", "symbol": "set_rsa", "scope": "LIBRARY", "original": ".text"}, "268": {"type": "MIPS_26", "symbol": "set_rsa", "scope": "LIBRARY", "original": ".text"}, "292": {"type": "MIPS_26", "symbol": "set_rsa", "scope": "LIBRARY", "original": ".text"}, "348": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "364": {"type": "MIPS_26", "symbol": "DH_size", "scope": "LIBRARY"}, "388": {"type": "MIPS_26", "symbol": "set_dh", "scope": "LIBRARY", "original": ".text"}, "420": {"type": "MIPS_26", "symbol": "set_dh", "scope": "LIBRARY", "original": ".text"}, "440": {"type": "MIPS_26", "symbol": "set_dh", "scope": "L)PS2SDB", 8192}, + std::string_view{R"PS2SDB(IBRARY", "original": ".text"}, "488": {"type": "MIPS_26", "symbol": "sk_new", "scope": "LIBRARY"}, "508": {"type": "MIPS_26", "symbol": "sk_push", "scope": "LIBRARY"}}}}}, "ssl3_get_cipher_by_char": {"687095ccba55b05677fed9d724db0a9edf73ae4b": {"60140b6d": {"type": "FUNCTION", "size": 264, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": "ssl_cipher_ptr_id_cmp"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_26", "symbol": "qsort"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": "ssl_cipher_ptr_id_cmp"}, "144": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_HI16", "symbol": "", "original": "ssl_cipher_ptr_id_cmp"}, "176": {"type": "MIPS_LO16", "symbol": "", "original": "ssl_cipher_ptr_id_cmp"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "200": {"type": "MIPS_26", "symbol": "OBJ_bsearch", "scope": "LIBRARY"}}}}}, "ssl3_put_cipher_by_char": {"7c89f26408ba16e78f38f84f9d47519c9e1d9cc3": {"00000000": {"type": "FUNCTION", "size": 64, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "ssl3_choose_cipher": {"447ca4f91c1af8a9ba84e065cfa9b2466863ba9a": {"383037f9": {"type": "FUNCTION", "size": 288, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"100": {"type": "MIPS_26", "symbol": "ssl_set_cert_masks", "scope": "LIBRARY"}, "112": {"type": "MIPS_HI16", "symbol": "ssl_cipher_ptr_id_cmp"}, "120": {"type": "MIPS_LO16", "symbol": "ssl_cipher_ptr_id_cmp"}, "124": {"type": "MIPS_26", "symbol": "sk_set_cmp_func", "scope": "LIBRARY"}, "212": {"type": "MIPS_26", "symbol": "sk_find", "scope": "LIBRARY"}}}}}, "ssl3_get_req_cert_type": {"f16c7db878e2ecc5fc18f5fcf21b43ac46c29c1b": {"ac2a6101": {"type": "FUNCTION", "size": 220, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "SSL_feature_test", "scope": "LIBRARY"}, "160": {"type": "MIPS_26", "symbol": "SSL_feature_test", "scope": "LIBRARY"}}}}}, "ssl3_shutdown": {"f4d4530e65a1449b3db4d8aa745e446631640651": {"8ce14c49": {"type": "FUNCTION", "size": 328, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "SSL_ctrl", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "SSL_ctrl", "scope": "LIBRARY"}, "144": {"type": "MIPS_26", "symbol": "ssl3_send_alert", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ssl3_dispatch_alert", "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "SSL_ctrl", "scope": "LIBRARY"}, "272": {"type": "MIPS_26", "symbol": "ssl3_read_bytes", "scope": "LIBRARY"}}}}}, "ssl3_write": {"6a8f8c17fd0ccd627404f49fc4a47b4840bd2fdb": {"cd29eb64": {"type": "FUNCTION", "size": 344, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__errno"}, "56": {"type": "MIPS_26", "symbol": "ssl3_renegotiate_check", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "ssl3_write_bytes", "scope": "LIBRARY"}, "172": {"type": "MIPS_26", "symbol": "BIO_ctrl", "scope": "LIBRARY"}, "200": {"type": "MIPS_26", "symbol": "ssl_free_wbio_buffer", "scope": "LIBRARY"}, "252": {"type": "MIPS_26", "symbol": "ssl3_write_bytes", "scope": "LIBRARY"}}}}}, "ssl3_read": {"afce078edc30e4722ae181ed7b267e5471b82ac9": {"6f77567e": {"type": "FUNCTION", "size": 224, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "__errno"}, "56": {"type": "MIPS_26", "symbol": "ssl3_renegotiate_check", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "ssl3_read_bytes", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "ERR_get_error", "scope": "LIBRARY"}, "164": {"type": "MIPS_26", "symbol": "ssl3_read_bytes", "scope": "LIBRARY"}}}}}, "ssl3_peek": {"2040285bd8c049a01383ba6d64aaa7efefa78d10": {"a55b3b33": {"type": "FUNCTION", "size": 180, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "ssl3_read", "scope": "LIBRARY", "original": ".text"}, "140": {"type": "MIPS_26", "symbol": "memcpy"}}}}}, "ssl3_part_read": {"6aecd404ce5b2eb4a9006b4909a8954170218555": {"00000000": {"type": "FUNCTION", "size": 40, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "ssl3_renegotiate": {"be6ea376f41cf92a594227e326070d9c3790f5e6": {"00000000": {"type": "FUNCTION", "size": 64, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "ssl3_renegotiate_check": {"99eab9918c197d3c0692dbe1efa41de477f07b0a": {"65ec710f": {"type": "FUNCTION", "size": 156, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "SSL_state", "scope": "LIBRARY"}}}}}, "SSL_library_init": {"349a5dbfdfc1f06fde42f5ee24dbb722a64a3ce4": {"500e8dde": {"type": "FUNCTION", "size": 80, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "SSL_feature_reset", "scope": "LIBRARY"}, "16": {"type": "MIPS_26", "symbol": "SSL_library_evp_setup", "scope": "LIBRARY"}, "24": {"type": "MIPS_26", "symbol": "SSLCERT_normal_setup", "scope": "LIBRARY"}, "32": {"type": "MIPS_26", "symbol": "BN_default_init", "scope": "LIBRARY"}, "40": {"type": "MIPS_26", "symbol": "R_rand_meth_sha1", "scope": "LIBRARY"}, "48": {"type": "MIPS_26", "symbol": "R_rand_set_default", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "SSL_enable_time", "scope": "LIBRARY"}}}}}, "SSL_library_evp_setup": {"980a5e4b218d1e990251ef81d36a9b2290f386f6": {"d4a441ae": {"type": "FUNCTION", "size": 252, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "EVP_des_cbc", "scope": "LIBRARY"}, "16": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "20": {"type": "MIPS_26", "symbol": "EVP_OBJ_add_cipher", "scope": "LIBRARY"}, "28": {"type": "MIPS_26", "symbol": "EVP_des_ede3_cbc", "scope": "LIBRARY"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_26", "symbol": "EVP_OBJ_add_cipher", "scope": "LIBRARY"}, "44": {"type": "MIPS_26", "symbol": "EVP_rc4", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "EVP_OBJ_add_cipher", "scope": "LIBRARY"}, "60": {"type": "MIPS_26", "symbol": "EVP_rc2_cbc", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "EVP_OBJ_add_cipher", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "EVP_md)PS2SDB", 8192}, + std::string_view{R"PS2SDB(2", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "EVP_OBJ_add_digest", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "EVP_md5", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "EVP_OBJ_add_digest", "scope": "LIBRARY"}, "108": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_26", "symbol": "EVP_OBJ_add_digest_alias", "scope": "LIBRARY"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "132": {"type": "MIPS_26", "symbol": "EVP_OBJ_add_digest_alias", "scope": "LIBRARY"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "140": {"type": "MIPS_26", "symbol": "EVP_sha1", "scope": "LIBRARY"}, "148": {"type": "MIPS_26", "symbol": "EVP_OBJ_add_digest", "scope": "LIBRARY"}, "156": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "160": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "164": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "168": {"type": "MIPS_26", "symbol": "EVP_OBJ_add_digest_alias", "scope": "LIBRARY"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "176": {"type": "MIPS_26", "symbol": "EVP_dss1", "scope": "LIBRARY"}, "184": {"type": "MIPS_26", "symbol": "EVP_OBJ_add_digest", "scope": "LIBRARY"}, "192": {"type": "MIPS_26", "symbol": "SSL_enable_DSA", "scope": "LIBRARY"}, "200": {"type": "MIPS_26", "symbol": "SSL_feature_set", "scope": "LIBRARY"}, "208": {"type": "MIPS_26", "symbol": "SSL_enable_DH", "scope": "LIBRARY"}, "216": {"type": "MIPS_26", "symbol": "SSL_feature_set", "scope": "LIBRARY"}, "224": {"type": "MIPS_26", "symbol": "SSL_enable_RSA", "scope": "LIBRARY"}}}}}, "SSL_library_cleanup": {"566dc93fb74c06b5f2bfc287a7312dd96d8ec4d1": {"04bedff1": {"type": "FUNCTION", "size": 96, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "EVP_OBJ_cleanup", "scope": "LIBRARY"}, "16": {"type": "MIPS_26", "symbol": "R_rand_get_default", "scope": "LIBRARY"}, "24": {"type": "MIPS_26", "symbol": "R_rand_free", "scope": "LIBRARY"}, "32": {"type": "MIPS_26", "symbol": "OBJ_NAME_cleanup", "scope": "LIBRARY"}, "40": {"type": "MIPS_26", "symbol": "OBJ_cleanup", "scope": "LIBRARY"}, "48": {"type": "MIPS_26", "symbol": "SSLCERT_STORE_CTX_cleanup_ex_data", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "SSL_feature_reset", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "ERR_remove_state", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "ERR_free_strings", "scope": "LIBRARY"}}}}}, "SSL_get_ex_data_X509_STORE_CTX_idx": {"4d997b6a058cc458d3cbb67fa12f6819d6628099": {"246087d6": {"type": "FUNCTION", "size": 76, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "48": {"type": "MIPS_26", "symbol": "SSLCERT_STORE_CTX_get_ex_new_index", "scope": "LIBRARY"}, "56": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "ssl_cert_new": {"395542d24b3883a347a49df24f1a1cb0e8c5d412": {"71855bab": {"type": "FUNCTION", "size": 112, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "48": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "memset"}}}}}, "ssl_cert_free": {"333d526727af92fe9a273fc2b202974ed5d74465": {"7fc7222e": {"type": "FUNCTION", "size": 304, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "48": {"type": "MIPS_26", "symbol": "R_locked_add", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "RSA_free", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "RSA_free", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "RSA_free", "scope": "LIBRARY"}, "136": {"type": "MIPS_26", "symbol": "DH_free", "scope": "LIBRARY"}, "156": {"type": "MIPS_26", "symbol": "DH_free", "scope": "LIBRARY"}, "188": {"type": "MIPS_26", "symbol": "SSLCERT_free", "scope": "LIBRARY"}, "208": {"type": "MIPS_26", "symbol": "SSLCERT_PKEY_free", "scope": "LIBRARY"}, "236": {"type": "MIPS_HI16", "symbol": "SSLCERT_free"}, "240": {"type": "MIPS_26", "symbol": "sk_pop_free", "scope": "LIBRARY"}, "244": {"type": "MIPS_LO16", "symbol": "SSLCERT_free"}, "272": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "ssl_set_cert_type": {"84d71140811a6a2890ecbe84e15bf50adc331e59": {"00000000": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "ssl_verify_cert_chain": {"a86438cf2811548cbdc6da9e6244a8bf7e79ef5e": {"8f03ab75": {"type": "FUNCTION", "size": 176, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "SSLCERT_do_application_cb", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "SSLCERT_do_verify_cb", "scope": "LIBRARY"}, "128": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "144": {"type": "MIPS_26", "symbol": "ERR_clear_error", "scope": "LIBRARY"}}}}}, "SSL_clear": {"2f097ddf7926df8f91a0f5ba1da34acb2262515c": {"1b4b3a25": {"type": "FUNCTION", "size": 28, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "ssl_clear_internal", "scope": "LIBRARY", "original": ".text"}}}}}, "ssl_clear_internal": {"b1700ee2c83971034c7168540e0a3b7a3a77c7aa": {"56353847": {"type": "FUNCTION", "size": 308, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "ssl_clear_bad_session", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "SSL_SESSION_free", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "BUF_MEM_free", "scope": "LIBRARY"}, "192": {"type": "MIPS_26", "symbol": "ssl_clear_cipher_ctx", "scope": "LIBRARY"}, "216": {"type": "MIPS_HI16", "symbol": "SSL_accept"}, "224": {"type": "MIPS_LO16", "symbol": "SSL_accept"}, "244": {"type": "MIPS_26", "symbol": "SSL_set_ssl_method", "scope": "LIBRARY"}}}}}, "SSL_new": {"3316f20e1406e68d0995cc411e4b44db6d82c82e": {"aec90a33": {"type": "FUNCTION", "size": 536, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "get_sslc_global", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "memset"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "140": {"type": "MIPS_26", "symbol": "R_locked_add", "scope": "LIBRARY"}, "168": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "276": {"type": "MIPS_26", "symbol": "R_locked_add", "scope": "LIBRARY"}, "296": {"type": "MIPS_26", "symbol": "EVP_MD_CTX_new", "scope": "LIBRARY"}, "348": {"type": "M)PS2SDB", 8192}, + std::string_view{R"PS2SDB(IPS_26", "symbol": "EVP_MD_CTX_free", "scope": "LIBRARY"}, "356": {"type": "MIPS_26", "symbol": "SSL_CTX_free", "scope": "LIBRARY"}, "364": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "380": {"type": "MIPS_HI16", "symbol": "ssl_undefined_function"}, "388": {"type": "MIPS_LO16", "symbol": "ssl_undefined_function"}, "448": {"type": "MIPS_26", "symbol": "ssl_clear_internal", "scope": "LIBRARY"}, "464": {"type": "MIPS_26", "symbol": "CRYPTO_new_ex_data", "scope": "LIBRARY"}, "496": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "SSL_free": {"8cf4b70c13684740b006055ce435cd6fc20244ba": {"873ccdc3": {"type": "FUNCTION", "size": 444, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "get_sslc_global", "scope": "LIBRARY"}, "24": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "48": {"type": "MIPS_26", "symbol": "R_locked_add", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "CRYPTO_free_ex_data", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "BIO_pop", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "BIO_free", "scope": "LIBRARY"}, "140": {"type": "MIPS_26", "symbol": "BIO_free_all", "scope": "LIBRARY"}, "172": {"type": "MIPS_26", "symbol": "BIO_free_all", "scope": "LIBRARY"}, "192": {"type": "MIPS_26", "symbol": "BUF_MEM_free", "scope": "LIBRARY"}, "212": {"type": "MIPS_26", "symbol": "sk_free", "scope": "LIBRARY"}, "232": {"type": "MIPS_26", "symbol": "sk_free", "scope": "LIBRARY"}, "252": {"type": "MIPS_26", "symbol": "ssl_clear_bad_session", "scope": "LIBRARY"}, "260": {"type": "MIPS_26", "symbol": "SSL_SESSION_free", "scope": "LIBRARY"}, "268": {"type": "MIPS_26", "symbol": "ssl_clear_cipher_ctx", "scope": "LIBRARY"}, "288": {"type": "MIPS_HI16", "symbol": "SSLCERT_free"}, "292": {"type": "MIPS_26", "symbol": "sk_pop_free", "scope": "LIBRARY"}, "296": {"type": "MIPS_LO16", "symbol": "SSLCERT_free"}, "312": {"type": "MIPS_26", "symbol": "ssl_cert_free", "scope": "LIBRARY"}, "332": {"type": "MIPS_26", "symbol": "EVP_MD_CTX_free", "scope": "LIBRARY"}, "352": {"type": "MIPS_26", "symbol": "SSL_CTX_free", "scope": "LIBRARY"}, "368": {"type": "MIPS_HI16", "symbol": "SSLCERT_NAME_free"}, "372": {"type": "MIPS_26", "symbol": "sk_pop_free", "scope": "LIBRARY"}, "376": {"type": "MIPS_LO16", "symbol": "SSLCERT_NAME_free"}, "420": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "SSL_set_bio": {"2e4c499d00b0fb12a7fcdfe48031b7758e619397": {"c1416ccf": {"type": "FUNCTION", "size": 164, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"84": {"type": "MIPS_26", "symbol": "BIO_free_all", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "BIO_free_all", "scope": "LIBRARY"}}}}}, "SSL_get_rbio": {"3f2e95770cde9332a459df92798c8ef91b588f46": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "SSL_get_wbio": {"5ae463b7fee46cd928807353b15cf885cd41b2d6": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "SSL_get_verify_mode": {"5270dd8a8247048fe9c1fe71b555e0b1ecc3814e": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "SSL_get_verify_depth": {"5829971d5f9f51ed02cc6e5876d45ce094ed2910": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "SSL_get_verify_cb": {"0a31ce50d4dd2380e7537b47ecb03b485b7cceee": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "SSL_CTX_get_verify_mode": {"c4b6a40966b182f63e3dd243bd17d0c82b29ed93": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "SSL_CTX_get_verify_depth": {"bea34707616089dbd585ebda05d5834770819080": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "SSL_CTX_get_verify_cb": {"54fe661393e108eaecc0640a96558a573a7ec2da": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "SSL_set_verify": {"b0c736479837eb1a84d7a0ad0ee5b068d741b55f": {"00000000": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "SSL_set_verify_depth": {"81813f740156745bc146a50f7ab219e9d30db9ed": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "SSL_set_read_ahead": {"0acc9c48ef5b8687a9a1b1e787f9be95f9e9350d": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "SSL_get_read_ahead": {"52953ac0fbff55464615822cae0c262d4822e840": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "SSL_accept": {"013cf710ccbbed6220fa3697a3c821f977fcdcab": {"a19fe2fe": {"type": "FUNCTION", "size": 92, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "SSL_state", "scope": "LIBRARY"}, "32": {"type": "MIPS_26", "symbol": "SSL_state", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "ssl_clear_internal", "scope": "LIBRARY"}}}}}, "SSL_connect": {"224561f1a7d6ebaa960b2a6e47219c4ce476486e": {"a19fe2fe": {"type": "FUNCTION", "size": 92, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "SSL_state", "scope": "LIBRARY"}, "32": {"type": "MIPS_26", "symbol": "SSL_state", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "ssl_clear_internal", "scope": "LIBRARY"}}}}}, "SSL_get_default_timeout": {"10c26c146044cbbb68d32c57c14e8b4e5fb1209c": {"00000000": {"type": "FUNCTION", "size": 36, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "SSL_read": {"216183ede50e739ae25c3c9b04615622ac7a9768": {"00000000": {"type": "FUNCTION", "size": 64, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "SSL_write": {"d83d69c72fc30ed9ecfbf9bf9a518ffc85bb0b64": {"178ee74e": {"type": "FUNCTION", "size": 92, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRAR)PS2SDB", 8192}, + std::string_view{R"PS2SDB(Y"}}}}}, "SSL_shutdown": {"098094d0e9d644bf341e113ebd7f465c21e01e78": {"22a08316": {"type": "FUNCTION", "size": 100, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "SSL_state", "scope": "LIBRARY"}}}}}, "SSL_ctrl": {"e1ce9a64599a721a2c9f34079f3de73ca454640d": {"60bcc029": {"type": "FUNCTION", "size": 320, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "SSL_CTX_ctrl": {"58166e98cedbcc9867e1f1b1e10451a1cf28568f": {"60bcc029": {"type": "FUNCTION", "size": 448, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "ssl_cipher_id_cmp": {"0e1b497127d75c3f2494d749d3edc605e860b31c": {"00000000": {"type": "FUNCTION", "size": 44, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "ssl_cipher_ptr_id_cmp": {"9d2298e0c7d497f19e18da14e0fd19822c61655e": {"00000000": {"type": "FUNCTION", "size": 52, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "SSL_get_ciphers": {"ec970acf53cdeb5698af03d61a7e77f3d5efeecd": {"00000000": {"type": "FUNCTION", "size": 44, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "ssl_get_ciphers_by_id": {"4ef51841e019e21cd7a8ed07deed889dc07f8994": {"00000000": {"type": "FUNCTION", "size": 56, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "ssl_cipher_list_to_bytes": {"69778bb8719a5e67b02894b1a35d2ba40c0ae36d": {"00000000": {"type": "FUNCTION", "size": 156, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "ssl_bytes_to_cipher_list": {"403fcd817e204bdb67681e3c82dc03de2e085fd9": {"4ccfacc9": {"type": "FUNCTION", "size": 360, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"112": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "148": {"type": "MIPS_26", "symbol": "sk_new", "scope": "LIBRARY"}, "164": {"type": "MIPS_26", "symbol": "sk_zero", "scope": "LIBRARY"}, "208": {"type": "MIPS_26", "symbol": "sk_push", "scope": "LIBRARY"}, "240": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "308": {"type": "MIPS_26", "symbol": "sk_free", "scope": "LIBRARY"}}}}}, "SSL_SESSION_hash": {"d92a0df70e6abf2a8c7c09f4cb951290e10c6217": {"00000000": {"type": "FUNCTION", "size": 44, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "SSL_SESSION_cmp": {"878584c2de72591cefbaecea23b748a65b27173a": {"a2e08f90": {"type": "FUNCTION", "size": 64, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "memcmp"}}}}}, "SSL_CTX_new": {"f2aee657d90307419dfa3635f2d90cade3b5df81": {"743b911a": {"type": "FUNCTION", "size": 716, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "get_sslc_global", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "memset"}, "168": {"type": "MIPS_26", "symbol": "memset"}, "236": {"type": "MIPS_26", "symbol": "ssl_cert_new", "scope": "LIBRARY"}, "256": {"type": "MIPS_HI16", "symbol": "SSL_SESSION_hash"}, "264": {"type": "MIPS_HI16", "symbol": "SSL_SESSION_cmp"}, "268": {"type": "MIPS_LO16", "symbol": "SSL_SESSION_hash"}, "272": {"type": "MIPS_26", "symbol": "lh_new", "scope": "LIBRARY"}, "276": {"type": "MIPS_LO16", "symbol": "SSL_SESSION_cmp"}, "288": {"type": "MIPS_26", "symbol": "SSLCERT_STORE_new", "scope": "LIBRARY"}, "304": {"type": "MIPS_26", "symbol": "SSL_get_ex_data_X509_STORE_CTX_idx", "scope": "LIBRARY"}, "316": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "336": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "352": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "360": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "368": {"type": "MIPS_26", "symbol": "ssl_create_cipher_list", "scope": "LIBRARY"}, "396": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "416": {"type": "MIPS_26", "symbol": "EVP_OBJ_get_digestbyname", "scope": "LIBRARY"}, "420": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "448": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "452": {"type": "MIPS_26", "symbol": "EVP_OBJ_get_digestbyname", "scope": "LIBRARY"}, "456": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "484": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "488": {"type": "MIPS_26", "symbol": "EVP_OBJ_get_digestbyname", "scope": "LIBRARY"}, "492": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "520": {"type": "MIPS_26", "symbol": "SSL_feature_test", "scope": "LIBRARY"}, "532": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "536": {"type": "MIPS_26", "symbol": "EVP_OBJ_get_digestbyname", "scope": "LIBRARY"}, "540": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "568": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "588": {"type": "MIPS_26", "symbol": "sk_new", "scope": "LIBRARY"}, "612": {"type": "MIPS_26", "symbol": "CRYPTO_new_ex_data", "scope": "LIBRARY"}, "664": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "680": {"type": "MIPS_26", "symbol": "SSL_CTX_free", "scope": "LIBRARY", "original": ".text"}}}}}, "SSL_CTX_free": {"a8dc2cf713a255de2d8e0d1a987b55514df66162": {"b42a8780": {"type": "FUNCTION", "size": 280, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "get_sslc_global", "scope": "LIBRARY"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "52": {"type": "MIPS_26", "symbol": "R_locked_add", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "CRYPTO_free_ex_data", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "SSL_CTX_flush_sessions", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "lh_free", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "SSLCERT_STORE_free", "scope": "LIBRARY"}, "144": {"type": "MIPS_26", "symbol": "sk_free", "scope": "LIBRARY"}, "164": {"type": "MIPS_26", "symbol": "sk_free", "scope": "LIBRARY"}, "184": {"type": "MIPS_26", "symbol": "ssl_cert_free", "scope": "LIBRARY"}, "204": {"type": "MIPS_HI16", "symbol": "SSLCERT_NAME_free"}, "208": {"type": "MIPS_26", "symbol": "sk_pop_free", "scope": "LIBRARY"}, "212": {"type": "MIPS_LO16", "symbol": "SSLCERT_NAME_free"}, "224": {"type": "MIPS_HI16", "symbol": "SSLCERT_free"}, "228": {"type": "MIPS_26", "symbol": "sk_pop_free", "scope": "LIBRARY"}, "232": {"type")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: "MIPS_LO16", "symbol": "SSLCERT_free"}, "252": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "SSL_CTX_set_app_verify_cb": {"54ed073a67fb7efef90c563263a38ff5c27ba69d": {"00000000": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "SSL_CTX_set_verify": {"584edd670fbe5ce4eee9e1ef460c4ad92a8e6963": {"739fcc31": {"type": "FUNCTION", "size": 36, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "SSLCERT_STORE_set_verify_cb", "scope": "LIBRARY"}}}}}, "SSL_CTX_set_verify_depth": {"8c0859af39c012ee32790478385a41bd90bb0efc": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "ssl_set_cert_masks": {"99823f01dce2698ab6e5820346f4a9b502dc4467": {"d50c3dfd": {"type": "FUNCTION", "size": 704, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"92": {"type": "MIPS_26", "symbol": "SSL_feature_test", "scope": "LIBRARY"}, "212": {"type": "MIPS_26", "symbol": "SSL_EVP_PKEY_size", "scope": "LIBRARY"}, "240": {"type": "MIPS_26", "symbol": "SSL_EVP_PKEY_size", "scope": "LIBRARY"}, "344": {"type": "MIPS_26", "symbol": "SSL_EVP_PKEY_size", "scope": "LIBRARY"}, "392": {"type": "MIPS_26", "symbol": "SSL_EVP_PKEY_size", "scope": "LIBRARY"}, "616": {"type": "MIPS_26", "symbol": "SSL_feature_test", "scope": "LIBRARY"}}}}}, "ssl_update_cache": {"af9999d528b5d33e5cf4ab453f10c4a7d027617e": {"f32c1930": {"type": "FUNCTION", "size": 272, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"72": {"type": "MIPS_26", "symbol": "SSL_CTX_add_session", "scope": "LIBRARY"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "120": {"type": "MIPS_26", "symbol": "R_locked_add", "scope": "LIBRARY"}, "156": {"type": "MIPS_26", "symbol": "SSL_SESSION_free", "scope": "LIBRARY"}, "244": {"type": "MIPS_26", "symbol": "SSL_CTX_flush_sessions", "scope": "LIBRARY"}}}}}, "SSL_set_ssl_method": {"22650ee577ae7d2005a34c1a8930c708765f34d1": {"00000000": {"type": "FUNCTION", "size": 140, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "SSL_get_error": {"95513c2a5d83971ec5b915828e598528bf2bec85": {"e5e06488": {"type": "FUNCTION", "size": 408, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "ERR_peek_error", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "SSL_want", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "SSL_get_rbio", "scope": "LIBRARY"}, "128": {"type": "MIPS_26", "symbol": "BIO_should_read", "scope": "LIBRARY"}, "144": {"type": "MIPS_26", "symbol": "BIO_should_write", "scope": "LIBRARY"}, "160": {"type": "MIPS_26", "symbol": "BIO_should_io_special", "scope": "LIBRARY"}, "184": {"type": "MIPS_26", "symbol": "SSL_want", "scope": "LIBRARY"}, "204": {"type": "MIPS_26", "symbol": "SSL_get_wbio", "scope": "LIBRARY"}, "216": {"type": "MIPS_26", "symbol": "BIO_should_write", "scope": "LIBRARY"}, "232": {"type": "MIPS_26", "symbol": "BIO_should_read", "scope": "LIBRARY"}, "248": {"type": "MIPS_26", "symbol": "BIO_should_io_special", "scope": "LIBRARY"}, "264": {"type": "MIPS_26", "symbol": "BIO_get_retry_reason", "scope": "LIBRARY"}, "300": {"type": "MIPS_26", "symbol": "SSL_want", "scope": "LIBRARY"}}}}}, "SSL_do_handshake": {"344e4b4f702f2db6a818b268ab8a62b386d94430": {"fbc6f8d0": {"type": "FUNCTION", "size": 160, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "SSL_state", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "SSL_state", "scope": "LIBRARY"}}}}}, "SSL_set_connect_state": {"83fb35230defd30bd8b1a291a239c45d5e558af4": {"260523fd": {"type": "FUNCTION", "size": 40, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "SSL_connect"}, "8": {"type": "MIPS_LO16", "symbol": "SSL_connect"}, "32": {"type": "MIPS_26", "symbol": "ssl_clear_internal", "scope": "LIBRARY"}}}}}, "ssl_undefined_function": {"187df728468edf7f389cbfc72f36be0fd5e7634f": {"38ab8cdf": {"type": "FUNCTION", "size": 48, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "ssl_bad_method": {"f0d1ef1eb837b7443b930fa2445169be935b5862": {"38ab8cdf": {"type": "FUNCTION", "size": 48, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "SSL_get_version": {"3a16cb5613215d3249a0176b070323218e3f8b0e": {"daeeea8f": {"type": "FUNCTION", "size": 76, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "ssl_clear_cipher_ctx": {"9efbe6da242203989c06b3faa44a1f5018db234d": {"a4373fc5": {"type": "FUNCTION", "size": 160, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "EVP_CIPHER_CTX_free", "scope": "LIBRARY"}}}}}, "ssl_init_wbio_buffer": {"ce08b0a47aa7873c34f996c2f98f347db83398f1": {"77b95f73": {"type": "FUNCTION", "size": 284, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "BIO_f_buffer", "scope": "LIBRARY"}, "44": {"type": "MIPS_26", "symbol": "BIO_new", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "BIO_pop", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "BIO_ctrl", "scope": "LIBRARY"}, "132": {"type": "MIPS_26", "symbol": "BIO_int_ctrl", "scope": "LIBRARY"}, "156": {"type": "MIPS_26", "symbol": "BIO_int_ctrl", "scope": "LIBRARY"}, "184": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "BIO_push", "scope": "LIBRARY"}, "244": {"type": "MIPS_26", "symbol": "BIO_pop", "scope": "LIBRARY"}}}}}, "ssl_free_wbio_buffer": {"17edec8695d4c8b549127267b0a0d65a4a0e3c3f": {"03c18f4f": {"type": "FUNCTION", "size": 84, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "BIO_pop", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(symbol": "BIO_free", "scope": "LIBRARY"}}}}}, "SSL_set_shutdown": {"31fcd37f04a168aceae1400bc316e90d1e9b3fc5": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "SSL_get_shutdown": {"6f1fd5f8354ca2bf55d496cc72d5ce5fb8b9e71d": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "SSL_version": {"bc3f406df1b64926c4af204c6d9c18c1a685f849": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "SSL_get_SSL_CTX": {"6a6e0159fa3702fed9cae73048c479d74f3e90e0": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "SSL_set_info_cb": {"67746b219f139c2cb2a505a3cff4c71cd124f54f": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "SSL_set_alert_info_cb": {"24e2cf3d2913f3c8cdbc73f942e670b32bed6393": {"00000000": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "SSL_get_info_cb": {"a573bb48069bcd8a33ebec68ea8f94340fe1a0fe": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "SSL_get_alert_info_cb": {"3635fc6760fe579f71636c66d7f9faaa0a09aed5": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "SSL_get_alert_info_cb_arg": {"204f81324c76fc58dad21743f87dd7c8737c28cb": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "SSL_set_app_data_cb": {"8b54033616beaf854a68f97a2a3d17673f01a76e": {"00000000": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "SSL_get_app_data_cb": {"640420a36bd99b225c725b909b2db0736ee5820d": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "SSL_get_app_data_cb_arg": {"3a13f253d8f7256122cf1206a9f23b525f7882d9": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "SSL_state": {"682d5fc4790f5d3984a1e9dc9e4c3ca78839c92f": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "SSL_set_verify_result": {"00418021344d026c7a78ddf6f9d5f3d094fb4802": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "SSL_get_verify_result": {"ab1227a1d19ede2a0b2ca894f0778632547fe821": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "ssl_ok": {"98ab17e54d84a098b4240053ee845921141318c1": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "SSL_want": {"b00649096422e3defabf3beac23728730eec5e86": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "SSL_reuse": {"ed7d613af56e54f3ee8392e4e74d8ffc1b645f89": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "SSL_feature_reset": {"08d5dde95b435a4cb5c8dcfb492af9e2b06276e9": {"d0e115d3": {"type": "FUNCTION", "size": 16, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "SSL_feature_set": {"9e062d320ed962e09094338f62ab9fd6356ab01b": {"5894cd3e": {"type": "FUNCTION", "size": 32, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "SSL_feature_clear": {"4a4dd53cd2ba8de20541a0e808ef6fe87c8f2542": {"49b7b6bb": {"type": "FUNCTION", "size": 36, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "SSL_feature_test": {"054c50b51c9889d47defc7a282af07b86bb91122": {"d0e115d3": {"type": "FUNCTION", "size": 24, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "SSL_use_certificate": {"8261ce31b46b3159ec95d9b68043a89cd4e5b5f9": {"94be4847": {"type": "FUNCTION", "size": 184, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"76": {"type": "MIPS_26", "symbol": "ssl_cert_new", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "136": {"type": "MIPS_26", "symbol": "ssl_cert_free", "scope": "LIBRARY"}, "152": {"type": "MIPS_26", "symbol": "ssl_set_cert", "scope": "LIBRARY"}}}}}, "ssl_set_pkey": {"b562718b90054b7a9d1dc2a6a97e38ffbfc089c1": {"45a9b884": {"type": "FUNCTION", "size": 416, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "ssl_cert_type", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "120": {"type": "MIPS_26", "symbol": "SSLCERT_get_pubkey", "scope": "LIBRARY"}, "132": {"type": "MIPS_26", "symbol": "SSL_EVP_PKEY_copy_parameters", "scope": "LIBRARY"}, "140": {"type": "MIPS_26", "symbol": "ERR_clear_error", "scope": "LIBRARY"}, "164": {"type": "MIPS_26", "symbol": "RSA_flags", "scope": "LIBRARY"}, "188": {"type": "MIPS_26", "symbol": "SSLCERT_check_private_key", "scope": "LIBRARY"}, "248": {"type": "MIPS_26", "symbol": "SSLCERT_check_)PS2SDB", 8192}, + std::string_view{R"PS2SDB(private_key", "scope": "LIBRARY"}, "280": {"type": "MIPS_26", "symbol": "SSLCERT_free", "scope": "LIBRARY"}, "312": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "316": {"type": "MIPS_26", "symbol": "SSLCERT_PKEY_free", "scope": "LIBRARY"}, "324": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "332": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "344": {"type": "MIPS_26", "symbol": "R_locked_add", "scope": "LIBRARY"}}}}}, "SSL_use_PrivateKey": {"43704bfdb79faf0903764cc544207485003c27a5": {"a7be6517": {"type": "FUNCTION", "size": 184, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"76": {"type": "MIPS_26", "symbol": "ssl_cert_new", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "136": {"type": "MIPS_26", "symbol": "ssl_cert_free", "scope": "LIBRARY"}, "152": {"type": "MIPS_26", "symbol": "ssl_set_pkey", "scope": "LIBRARY"}}}}}, "SSL_CTX_use_certificate": {"87e0a6ab93029192f74721d3b0b7813721ac1541": {"7852f7ab": {"type": "FUNCTION", "size": 136, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "ssl_cert_new", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "ssl_set_cert", "scope": "LIBRARY"}}}}}, "ssl_set_cert": {"b95d20c18762923dd73a77fad0c2efbaf650237b": {"55c9af2a": {"type": "FUNCTION", "size": 424, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "SSLCERT_get_pubkey", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "ssl_cert_type", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "160": {"type": "MIPS_26", "symbol": "SSL_EVP_PKEY_copy_parameters", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "ERR_clear_error", "scope": "LIBRARY"}, "196": {"type": "MIPS_26", "symbol": "RSA_flags", "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "SSLCERT_check_private_key", "scope": "LIBRARY"}, "280": {"type": "MIPS_26", "symbol": "SSLCERT_check_private_key", "scope": "LIBRARY"}, "308": {"type": "MIPS_26", "symbol": "SSLCERT_PKEY_free", "scope": "LIBRARY"}, "340": {"type": "MIPS_26", "symbol": "SSLCERT_free", "scope": "LIBRARY"}, "348": {"type": "MIPS_26", "symbol": "SSLCERT_reference_inc", "scope": "LIBRARY"}}}}}, "SSL_CTX_use_certificate_file": {"16d59ff6357af58ffc028538e34146a85a7c234f": {"4e20eada": {"type": "FUNCTION", "size": 372, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "SSLCERT_get_flag", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "BIO_s_file", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "BIO_new", "scope": "LIBRARY"}, "136": {"type": "MIPS_26", "symbol": "BIO_ctrl", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "SSLCERT_from_binary_bio", "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "SSLCERT_PEM_read_bio_SSLCERT", "scope": "LIBRARY"}, "272": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "288": {"type": "MIPS_26", "symbol": "SSL_CTX_use_certificate", "scope": "LIBRARY"}, "308": {"type": "MIPS_26", "symbol": "SSLCERT_free", "scope": "LIBRARY"}, "324": {"type": "MIPS_26", "symbol": "BIO_free", "scope": "LIBRARY"}}}}}, "SSL_CTX_use_PrivateKey": {"3cb4af95cae1b1d1bf2b074e7975be591cefdaac": {"4b52dafb": {"type": "FUNCTION", "size": 136, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "ssl_cert_new", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "ssl_set_pkey", "scope": "LIBRARY"}}}}}, "SSL_CTX_use_PrivateKey_file": {"36a0dea5417a87f378bd6c151b690bdab5b89ae4": {"36e68231": {"type": "FUNCTION", "size": 276, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "BIO_s_file", "scope": "LIBRARY"}, "48": {"type": "MIPS_26", "symbol": "BIO_new", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "BIO_ctrl", "scope": "LIBRARY"}, "140": {"type": "MIPS_26", "symbol": "PEM_read_bio_PrivateKey", "scope": "LIBRARY"}, "188": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "204": {"type": "MIPS_26", "symbol": "SSL_CTX_use_PrivateKey", "scope": "LIBRARY"}, "216": {"type": "MIPS_26", "symbol": "SSLCERT_PKEY_free", "scope": "LIBRARY"}, "232": {"type": "MIPS_26", "symbol": "BIO_free", "scope": "LIBRARY"}}}}}, "ssl2_peek": {"881248a40842a053d7a8ce5091c7e0a3690fc7ef": {"cffaf6b4": {"type": "FUNCTION", "size": 80, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "ssl2_read", "scope": "LIBRARY", "original": ".text"}}}}}, "ssl2_read": {"384438c54b6b191169135a731e7686626150bebe": {"63f632c3": {"type": "FUNCTION", "size": 1276, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"72": {"type": "MIPS_26", "symbol": "ssl2_setup_buffers", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "SSL_state", "scope": "LIBRARY"}, "184": {"type": "MIPS_26", "symbol": "__errno"}, "248": {"type": "MIPS_26", "symbol": "memcpy"}, "360": {"type": "MIPS_26", "symbol": "ssl2_alloc_read_buf", "scope": "LIBRARY"}, "388": {"type": "MIPS_26", "symbol": "read_n", "scope": "LIBRARY", "original": ".text"}, "480": {"type": "MIPS_26", "symbol": "read_n", "scope": "LIBRARY", "original": ".text"}, "688": {"type": "MIPS_26", "symbol": "ssl2_alloc_read_buf", "scope": "LIBRARY"}, "732": {"type": "MIPS_26", "symbol": "read_n", "scope": "LIBRARY", "original": ".text"}, "928": {"type": "MIPS_26", "symbol": "ssl2_enc", "scope": "LIBRARY"}, "960": {"type": "MIPS_26", "symbol": "ssl2_mac", "scope": "LIBRARY"}, "1000": {"type": "MIPS_26", "symbol": "memcmp"}, "1016": {"type": "MIPS_26", "symbol": "EVP_CIPHER_CTX_block_size", "scope": "LIBRARY"}, "1120": {"type": "MIPS_26", "symbol": "ssl2_read", "scope": "LIBRARY", "original": ".text"}, "1224": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "read_n": {"ecd5d223888a9c32313f0dbdfdf53cd625b541ac": {"b8e1e1d0": {"type": "FUNCTION", "size": 552, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"220": {"type": "MIPS_26", "symbol": "memcpy"}, "252": {"type": "MIPS_26", "symbol": "memcpy"}, "304": {"type": "MIPS_26", "symbol": "__errno"}, "344": {"type": "MIPS_26", "symbol": "BIO_read", "scope": "LIBRARY"}, "376": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "ssl2_write": {"a1731208e9d86ed91793a6a6f5270a285708b6a7": {"01c3790a": {"type": "FUNCTION", "size": 420, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "SSL_state", "scope": "LIBRARY"}, "152": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "176": {"type": "MIPS_26", "symbol": "ssl2_write_error", "scope": "LIBRARY", "original": ".text"}, "196": {"type": "MIPS_26", "symbol": "__errno"}, "256": {"type": "MIPS_26", "symbol": "do_ssl_write", "scope": "LIBRARY", "original": ".text"}}}}}, "write_pending": {"6abd0871a85574fe8619b726fa5e04ef61c1a5a2": {"413ba192": {"type": "FUNCTION", "size":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( 260, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "__errno"}, "124": {"type": "MIPS_26", "symbol": "BIO_write", "scope": "LIBRARY"}, "156": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "do_ssl_write": {"a59bca88e7b7fe654e2fc0fa9cbec6b4eb0fbe6a": {"c46449b6": {"type": "FUNCTION", "size": 744, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"112": {"type": "MIPS_26", "symbol": "EVP_CIPHER_CTX_block_size", "scope": "LIBRARY"}, "376": {"type": "MIPS_26", "symbol": "memcpy"}, "420": {"type": "MIPS_26", "symbol": "ssl2_mac", "scope": "LIBRARY"}, "452": {"type": "MIPS_26", "symbol": "ssl2_enc", "scope": "LIBRARY"}, "700": {"type": "MIPS_26", "symbol": "write_pending", "scope": "LIBRARY", "original": ".text"}}}}}, "ssl2_part_read": {"940eed6e8d451800efafed3de86471348401b2e9": {"a175a1c5": {"type": "FUNCTION", "size": 172, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"88": {"type": "MIPS_26", "symbol": "ssl_mt_error", "scope": "LIBRARY", "original": ".text"}, "112": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "ssl2_do_write": {"fa00410cd5413812f29704107c36227eada9ce1e": {"d2fbfc33": {"type": "FUNCTION", "size": 116, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "ssl2_write", "scope": "LIBRARY", "original": ".text"}}}}}, "ssl_mt_error": {"a62827a42352716405e7aeccf37d542ea2c56987": {"00000000": {"type": "FUNCTION", "size": 104, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "ssl2_return_error": {"12e7177691bc652bb8c87a8351a350f5cba69776": {"26cd30c8": {"type": "FUNCTION", "size": 32, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "ssl2_write_error", "scope": "LIBRARY", "original": ".text"}}}}}, "ssl2_write_error": {"53d43826576f1a2848770d11e107d492e893645f": {"e5c237c7": {"type": "FUNCTION", "size": 256, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"76": {"type": "MIPS_26", "symbol": "ssl2_write", "scope": "LIBRARY", "original": ".text"}, "144": {"type": "MIPS_26", "symbol": "BIO_ctrl", "scope": "LIBRARY"}}}}}, "ssl3_get_client_method": {"58395d11b6fc0e1d84cb9f7629cb8d2448dc9f92": {"ccf2d901": {"type": "FUNCTION", "size": 48, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "SSLv3_client_method", "scope": "LIBRARY", "original": ".text"}}}}}, "SSLv3_client_method": {"a5fa97f2a4d7168c5d98254f62f3f9dd76938ded": {"f624d1f1": {"type": "FUNCTION", "size": 344, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_26", "symbol": "sslv3_base_method", "scope": "LIBRARY"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "300": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "316": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "ssl3_connect": {"a09e699099361ae3b2d8d8b40ba5816cbc4876f8": {"ed68e8e2": {"type": "FUNCTION", "size": 2036, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "R_rand_get_default", "scope": "LIBRARY"}, "60": {"type": "MIPS_26", "symbol": "R_rand_add_entropy", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "ERR_clear_error", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "__errno"}, "264": {"type": "MIPS_26", "symbol": "ssl3_client_hello", "scope": "LIBRARY", "original": ".text"}, "304": {"type": "MIPS_26", "symbol": "BIO_push", "scope": "LIBRARY"}, "380": {"type": "MIPS_26", "symbol": "ssl3_get_server_certificate", "scope": "LIBRARY", "original": ".text"}, "428": {"type": "MIPS_26", "symbol": "ssl3_get_certificate_request", "scope": "LIBRARY", "original": ".text"}, "512": {"type": "MIPS_26", "symbol": "ssl3_send_client_certificate", "scope": "LIBRARY", "original": ".text"}, "560": {"type": "MIPS_26", "symbol": "ssl3_send_client_verify", "scope": "LIBRARY", "original": ".text"}, "660": {"type": "MIPS_26", "symbol": "ssl3_send_finished", "scope": "LIBRARY"}, "828": {"type": "MIPS_26", "symbol": "BUF_MEM_new", "scope": "LIBRARY"}, "848": {"type": "MIPS_26", "symbol": "BUF_MEM_grow", "scope": "LIBRARY"}, "868": {"type": "MIPS_26", "symbol": "ssl3_setup_buffers", "scope": "LIBRARY"}, "884": {"type": "MIPS_26", "symbol": "ssl_init_wbio_buffer", "scope": "LIBRARY"}, "900": {"type": "MIPS_26", "symbol": "ssl3_init_finished_mac", "scope": "LIBRARY"}, "944": {"type": "MIPS_26", "symbol": "ssl3_get_server_hello", "scope": "LIBRARY", "original": ".text"}, "1008": {"type": "MIPS_26", "symbol": "ssl3_get_key_exchange", "scope": "LIBRARY", "original": ".text"}, "1036": {"type": "MIPS_26", "symbol": "ssl3_check_cert_and_algorithm", "scope": "LIBRARY", "original": ".text"}, "1060": {"type": "MIPS_26", "symbol": "ssl3_get_server_done", "scope": "LIBRARY", "original": ".text"}, "1112": {"type": "MIPS_26", "symbol": "ssl3_send_client_key_exchange", "scope": "LIBRARY", "original": ".text"}, "1176": {"type": "MIPS_26", "symbol": "ssl3_send_change_cipher_spec", "scope": "LIBRARY"}, "1428": {"type": "MIPS_26", "symbol": "ssl3_get_finished", "scope": "LIBRARY"}, "1480": {"type": "MIPS_26", "symbol": "BIO_ctrl", "scope": "LIBRARY"}, "1512": {"type": "MIPS_26", "symbol": "BIO_ctrl", "scope": "LIBRARY"}, "1584": {"type": "MIPS_HI16", "symbol": "", "original": "SSL_connect"}, "1588": {"type": "MIPS_26", "symbol": "ssl3_cleanup_key_block", "scope": "LIBRARY"}, "1608": {"type": "MIPS_26", "symbol": "BUF_MEM_free", "scope": "LIBRARY"}, "1640": {"type": "MIPS_26", "symbol": "ssl_free_wbio_buffer", "scope": "LIBRARY"}, "1660": {"type": "MIPS_26", "symbol": "ssl_update_cache", "scope": "LIBRARY"}, "1708": {"type": "MIPS_HI16", "symbol": "", "original": "SSL_connect"}, "1716": {"type": "MIPS_LO16", "symbol": "", "original": "SSL_connect"}, "1772": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "1840": {"type": "MIPS_26", "symbol": "BIO_ctrl", "scope": "LIBRARY"}, "1864": {"type": "MIPS_26", "symbol": "BIO_should_write", "scope": "LIBRARY"}}}}}, "ssl3_client_hello": {"2c3762ce34c61d7d26a8089aeafcb81dbf6e6fc0": {"a5f35efd": {"type": "FUNCTION", "size": 612, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocati)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ons": {"100": {"type": "MIPS_26", "symbol": "ssl_get_new_session", "scope": "LIBRARY"}, "120": {"type": "MIPS_26", "symbol": "R_time_new", "scope": "LIBRARY"}, "148": {"type": "MIPS_26", "symbol": "R_time_export", "scope": "LIBRARY"}, "184": {"type": "MIPS_26", "symbol": "R_rand_get_default", "scope": "LIBRARY"}, "208": {"type": "MIPS_26", "symbol": "R_rand_bytes", "scope": "LIBRARY"}, "216": {"type": "MIPS_26", "symbol": "R_time_free", "scope": "LIBRARY"}, "368": {"type": "MIPS_26", "symbol": "memcpy"}, "380": {"type": "MIPS_26", "symbol": "SSL_get_ciphers", "scope": "LIBRARY"}, "396": {"type": "MIPS_26", "symbol": "ssl_cipher_list_to_bytes", "scope": "LIBRARY"}, "432": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "560": {"type": "MIPS_26", "symbol": "ssl3_do_write", "scope": "LIBRARY"}}}}}, "ssl3_get_server_hello": {"e6426a611a613c490d36fb78ceee1e02a1c24362": {"e2f35ae6": {"type": "FUNCTION", "size": 752, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "ssl3_get_message", "scope": "LIBRARY"}, "148": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "316": {"type": "MIPS_26", "symbol": "memcmp"}, "364": {"type": "MIPS_26", "symbol": "ssl_get_new_session", "scope": "LIBRARY"}, "404": {"type": "MIPS_26", "symbol": "memcpy"}, "484": {"type": "MIPS_26", "symbol": "ssl_get_ciphers_by_id", "scope": "LIBRARY"}, "496": {"type": "MIPS_26", "symbol": "sk_find", "scope": "LIBRARY"}, "628": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "676": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "708": {"type": "MIPS_26", "symbol": "ssl3_send_alert", "scope": "LIBRARY"}}}}}, "ssl3_get_server_certificate": {"aa4afb8927f6f231cac145f5cdb81f0e5f3b28d3": {"0da85eaf": {"type": "FUNCTION", "size": 1020, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"84": {"type": "MIPS_26", "symbol": "ssl3_get_message", "scope": "LIBRARY"}, "188": {"type": "MIPS_26", "symbol": "sk_new", "scope": "LIBRARY"}, "224": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "364": {"type": "MIPS_26", "symbol": "SSLCERT_from_binary", "scope": "LIBRARY"}, "404": {"type": "MIPS_26", "symbol": "sk_push", "scope": "LIBRARY"}, "444": {"type": "MIPS_26", "symbol": "ssl_verify_cert_chain", "scope": "LIBRARY"}, "472": {"type": "MIPS_26", "symbol": "ssl_verify_alarm_type", "scope": "LIBRARY"}, "500": {"type": "MIPS_26", "symbol": "ssl_cert_new", "scope": "LIBRARY"}, "536": {"type": "MIPS_26", "symbol": "ssl_cert_free", "scope": "LIBRARY"}, "568": {"type": "MIPS_26", "symbol": "SSLCERT_get_pubkey", "scope": "LIBRARY"}, "588": {"type": "MIPS_26", "symbol": "SSL_EVP_PKEY_missing_parameters", "scope": "LIBRARY"}, "628": {"type": "MIPS_26", "symbol": "ssl_cert_type", "scope": "LIBRARY"}, "672": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "692": {"type": "MIPS_26", "symbol": "SSLCERT_reference_inc", "scope": "LIBRARY"}, "720": {"type": "MIPS_26", "symbol": "SSLCERT_free", "scope": "LIBRARY"}, "768": {"type": "MIPS_26", "symbol": "SSLCERT_free", "scope": "LIBRARY"}, "780": {"type": "MIPS_26", "symbol": "SSLCERT_reference_inc", "scope": "LIBRARY"}, "844": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "876": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "912": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "928": {"type": "MIPS_26", "symbol": "ssl3_send_alert", "scope": "LIBRARY"}, "944": {"type": "MIPS_26", "symbol": "SSLCERT_free", "scope": "LIBRARY"}, "960": {"type": "MIPS_HI16", "symbol": "SSLCERT_free"}, "964": {"type": "MIPS_26", "symbol": "sk_pop_free", "scope": "LIBRARY"}, "968": {"type": "MIPS_LO16", "symbol": "SSLCERT_free"}}}}}, "ssl3_get_key_exchange": {"7d30456bed03c55b2508088b1bf3e28f86f523b9": {"d61da2eb": {"type": "FUNCTION", "size": 2008, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"80": {"type": "MIPS_26", "symbol": "ssl3_get_message", "scope": "LIBRARY"}, "188": {"type": "MIPS_26", "symbol": "RSA_free", "scope": "LIBRARY"}, "228": {"type": "MIPS_26", "symbol": "RSA_free", "scope": "LIBRARY"}, "268": {"type": "MIPS_26", "symbol": "RSA_free", "scope": "LIBRARY"}, "308": {"type": "MIPS_26", "symbol": "DH_free", "scope": "LIBRARY"}, "348": {"type": "MIPS_26", "symbol": "DH_free", "scope": "LIBRARY"}, "372": {"type": "MIPS_26", "symbol": "ssl_cert_new", "scope": "LIBRARY"}, "424": {"type": "MIPS_26", "symbol": "RSA_new", "scope": "LIBRARY"}, "524": {"type": "MIPS_26", "symbol": "RSA_set", "scope": "LIBRARY"}, "632": {"type": "MIPS_26", "symbol": "RSA_set", "scope": "LIBRARY"}, "688": {"type": "MIPS_26", "symbol": "SSLCERT_get_pubkey", "scope": "LIBRARY"}, "788": {"type": "MIPS_26", "symbol": "DH_new", "scope": "LIBRARY"}, "888": {"type": "MIPS_26", "symbol": "DH_set", "scope": "LIBRARY"}, "992": {"type": "MIPS_26", "symbol": "DH_set", "scope": "LIBRARY"}, "1100": {"type": "MIPS_26", "symbol": "DH_set", "scope": "LIBRARY"}, "1156": {"type": "MIPS_26", "symbol": "SSLCERT_get_pubkey", "scope": "LIBRARY"}, "1188": {"type": "MIPS_26", "symbol": "SSLCERT_get_pubkey", "scope": "LIBRARY"}, "1336": {"type": "MIPS_26", "symbol": "SSL_EVP_PKEY_size", "scope": "LIBRARY"}, "1444": {"type": "MIPS_26", "symbol": "EVP_DigestInit", "scope": "LIBRARY"}, "1472": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}, "1492": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}, "1508": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}, "1524": {"type": "MIPS_26", "symbol": "EVP_DigestFinal", "scope": "LIBRARY"}, "1568": {"type": "MIPS_26", "symbol": "RSA_public_decrypt", "scope": "LIBRARY"}, "1620": {"type": "MIPS_26", "symbol": "memcmp"}, "1668": {"type": "MIPS_26", "symbol": "EVP_DigestInit", "scope": "LIBRARY"}, "1704": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "1728": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}, "1748": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}, "1764": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate", "scope": "LIBRARY"}, "1788": {"type": "MIPS_26", "symbol": "EVP_VerifyFinal", "scope": "LIBRARY"}, "1852": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "1892": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "1928": {"type": "MIPS_26", "symbol": "ssl3_send_alert", "scope": "LIBRARY"}, "1948": {"type": "MIPS_26", "symbol": "DH_free", "scope": "LIBRARY"}}}}}, "ssl3_get_certificate_request": {"f9b20c370665a2b93a90f8c496a89410aa05916b": {"e7766859": {"type": "FUNCTION", "size": 920, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"84": {"type": "MIPS_26", "symbol": "ssl3_get_message", "scope": "LIBRARY"}, "176": {"type": "MIPS_26", "symbol": "ssl3_send_alert", "scope": "LIBRARY"}, "240": {"type": "MIPS_26", "symbol": "ssl3_send_alert", "scope": "LIBRARY"}, "268": {"type": "MIPS_HI16", "symbol": "ca_dn_cmp", "original": ".text"}, "272": {"type": "MIPS_LO16", "symbol": "ca_dn_cmp", "original": ".text"}, "276": {"type": "MIPS_26", "symbol": "sk_new", "scope": "LIBRARY"}, "440": {"type": "MIPS_26", "symbol": "ssl3_send_alert", "scope": "LIBRARY"}, "464": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "552": {"type": "MIPS_26", "symbol": "ssl3_send_alert", "scope": "LIBRARY"}, "588": {"type": "MIPS_26", "symbol": "SSLCERT_NAME_from_binary", "scope": "LIBRARY"}, "628": {"type": "MIPS_26", "symbol": "ssl3_send_alert", "scope": "LIBRARY"}, "672": {"type": "MIPS_26", "symbol": "sk_push", "scope": "LIBRARY"}, "716": {"type": "MIPS_26", "symbol": "ssl3_send_alert", "scope": "LIBRARY"}, "756": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "772)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": {"type": "MIPS_26", "symbol": "ERR_clear_error", "scope": "LIBRARY"}, "816": {"type": "MIPS_HI16", "symbol": "", "original": "SSLCERT_NAME_free"}, "820": {"type": "MIPS_26", "symbol": "sk_pop_free", "scope": "LIBRARY"}, "824": {"type": "MIPS_LO16", "symbol": "", "original": "SSLCERT_NAME_free"}, "856": {"type": "MIPS_HI16", "symbol": "", "original": "SSLCERT_NAME_free"}, "860": {"type": "MIPS_26", "symbol": "sk_pop_free", "scope": "LIBRARY"}, "864": {"type": "MIPS_LO16", "symbol": "", "original": "SSLCERT_NAME_free"}}}}}, "ca_dn_cmp": {"35b1ac6d4319400d3ba6ac9302792958ddbbbd44": {"620cd8d0": {"type": "FUNCTION", "size": 32, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "SSLCERT_NAME_cmp", "scope": "LIBRARY"}}}}}, "ssl3_get_server_done": {"249c50dc1694974a4600a4dca5cebd9db158d97b": {"7069f98f": {"type": "FUNCTION", "size": 136, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "ssl3_get_message", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "ssl3_send_alert", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "ssl3_send_client_key_exchange": {"ae5a0714aa4547704a48fff07656c6855c61458b": {"aa000277": {"type": "FUNCTION", "size": 1112, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"216": {"type": "MIPS_26", "symbol": "SSLCERT_get_pubkey", "scope": "LIBRARY"}, "280": {"type": "MIPS_26", "symbol": "R_rand_get_default", "scope": "LIBRARY"}, "296": {"type": "MIPS_26", "symbol": "R_rand_bytes", "scope": "LIBRARY"}, "348": {"type": "MIPS_26", "symbol": "RSA_public_encrypt", "scope": "LIBRARY"}, "536": {"type": "MIPS_26", "symbol": "memset"}, "612": {"type": "MIPS_26", "symbol": "ssl3_send_alert", "scope": "LIBRARY"}, "636": {"type": "MIPS_26", "symbol": "DH_params_dup", "scope": "LIBRARY"}, "668": {"type": "MIPS_26", "symbol": "DH_generate_key", "scope": "LIBRARY"}, "712": {"type": "MIPS_26", "symbol": "DH_get", "scope": "LIBRARY"}, "748": {"type": "MIPS_26", "symbol": "DH_compute_key", "scope": "LIBRARY"}, "832": {"type": "MIPS_26", "symbol": "memset"}, "852": {"type": "MIPS_26", "symbol": "DH_get", "scope": "LIBRARY"}, "888": {"type": "MIPS_26", "symbol": "memcpy"}, "908": {"type": "MIPS_26", "symbol": "DH_free", "scope": "LIBRARY"}, "932": {"type": "MIPS_26", "symbol": "ssl3_send_alert", "scope": "LIBRARY"}, "956": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "1036": {"type": "MIPS_26", "symbol": "ssl3_do_write", "scope": "LIBRARY"}, "1060": {"type": "MIPS_26", "symbol": "DH_free", "scope": "LIBRARY"}}}}}, "ssl3_send_client_verify": {"d7055e16b50ac6649f9d9ecc4c76b1ba2afd0feb": {"b8c7e004": {"type": "FUNCTION", "size": 476, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"176": {"type": "MIPS_26", "symbol": "RSA_private_encrypt", "scope": "LIBRARY"}, "256": {"type": "MIPS_26", "symbol": "DSA_sign", "scope": "LIBRARY"}, "328": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "424": {"type": "MIPS_26", "symbol": "ssl3_do_write", "scope": "LIBRARY"}}}}}, "ssl3_send_client_certificate": {"b789f781c9966b168c17d797856d4b2a033c5634": {"0f6efe7b": {"type": "FUNCTION", "size": 516, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"208": {"type": "MIPS_26", "symbol": "SSL_use_certificate", "scope": "LIBRARY"}, "224": {"type": "MIPS_26", "symbol": "SSL_use_PrivateKey", "scope": "LIBRARY"}, "280": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "300": {"type": "MIPS_26", "symbol": "SSLCERT_free", "scope": "LIBRARY"}, "320": {"type": "MIPS_26", "symbol": "SSLCERT_PKEY_free", "scope": "LIBRARY"}, "368": {"type": "MIPS_26", "symbol": "ssl3_send_alert", "scope": "LIBRARY"}, "456": {"type": "MIPS_26", "symbol": "ssl3_output_cert_chain", "scope": "LIBRARY"}, "484": {"type": "MIPS_26", "symbol": "ssl3_do_write", "scope": "LIBRARY"}}}}}, "ssl3_check_cert_and_algorithm": {"e9e9850f209433cc9335f2353006493ab41dfff6": {"192640b3": {"type": "FUNCTION", "size": 704, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"72": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "196": {"type": "MIPS_26", "symbol": "SSLCERT_get_signature_type", "scope": "LIBRARY"}, "208": {"type": "MIPS_26", "symbol": "SSLCERT_get_pubkey", "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "SSL_X509_certificate_type_ex", "scope": "LIBRARY"}, "520": {"type": "MIPS_26", "symbol": "RSA_size", "scope": "LIBRARY"}, "580": {"type": "MIPS_26", "symbol": "DH_size", "scope": "LIBRARY"}, "636": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "652": {"type": "MIPS_26", "symbol": "ssl3_send_alert", "scope": "LIBRARY"}}}}}, "ssl3_read_n": {"50824a646bfb0bc1f43f28d5e064404795489fd8": {"b8e1e1d0": {"type": "FUNCTION", "size": 544, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"220": {"type": "MIPS_26", "symbol": "memcpy"}, "252": {"type": "MIPS_26", "symbol": "memcpy"}, "304": {"type": "MIPS_26", "symbol": "__errno"}, "344": {"type": "MIPS_26", "symbol": "BIO_read", "scope": "LIBRARY"}, "376": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "ssl3_get_record": {"ee3e15e58ec00e31414db21d9d5f83035794fbc8": {"9d2ea80b": {"type": "FUNCTION", "size": 912, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"104": {"type": "MIPS_26", "symbol": "ssl3_read_n", "scope": "LIBRARY", "original": ".text"}, "228": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "276": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "348": {"type": "MIPS_26", "symbol": "ssl3_alloc_read_buf", "scope": "LIBRARY"}, "384": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "452": {"type": "MIPS_26", "symbol": "ssl3_read_n", "scope": "LIBRARY", "original": ".text"}, "736": {"type": "MIPS_26", "symbol": "memcmp"}, "768": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "848": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "864": {"type": "MIPS_26", "symbol": "ssl3_send_alert", "scope": "LIBRARY", "original": ".text"}}}}}, "ssl3_write_bytes": {"2c3b41c6720bc096472b700fc1b039731d82dbea": {"8abf8974": {"type": "FUNCTION", "size": 420, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"84": {"type": "MIPS_26", "symbol": "SSL_state", "scope": "LIBRARY"}, "184": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "224": {"type": "MIPS_26", "symbol": "ssl3_lwrite", "scope": "LIBRARY", "original": ".text"}, "344": {"type": "MIPS_26", "symbol": "ssl3_finish_mac", "scope": "LIBRARY"}}}}}, "ssl3_lwrite": {"9a4ab1e37ea3cde1efbacf6cb0e608e289f6dc5e": {"e92809f6": {"type": "FUNCTION", "size": 512, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"76": {"type": "MIPS_26", "symbol": "ssl3_write_pending", "scope": "LIBRARY", "original": ".text"}, "104": {"type": "MIPS_26", "symbol": "ssl3_dispatch_alert", "scope": "LIBRARY", "original": ".text"}, "256": {"type": "MIPS_26", "symbol": "memcpy"}, "448": {"type": "MIPS_26", "symbol": "ssl3_write_pending", "scope": "LIBRARY", "original": ".text"}}}}}, "ssl3_write_pend)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ing": {"349f4fac71885f02194d7c8fd03ba4da6ca0af44": {"8e46475c": {"type": "FUNCTION", "size": 268, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"72": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "__errno"}, "132": {"type": "MIPS_26", "symbol": "BIO_write", "scope": "LIBRARY"}, "164": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "ssl3_read_bytes": {"1f12e633e32637b38f2507a6f0f393422278e117": {"0388c55b": {"type": "FUNCTION", "size": 1936, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"92": {"type": "MIPS_26", "symbol": "ssl3_setup_buffers", "scope": "LIBRARY"}, "120": {"type": "MIPS_26", "symbol": "SSL_state", "scope": "LIBRARY"}, "248": {"type": "MIPS_26", "symbol": "ssl3_get_record", "scope": "LIBRARY", "original": ".text"}, "548": {"type": "MIPS_26", "symbol": "SSL_state", "scope": "LIBRARY"}, "600": {"type": "MIPS_26", "symbol": "ssl3_renegotiate", "scope": "LIBRARY"}, "608": {"type": "MIPS_26", "symbol": "ssl3_renegotiate_check", "scope": "LIBRARY"}, "972": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "980": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "988": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "992": {"type": "MIPS_26", "symbol": "sprintf"}, "1000": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1008": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1012": {"type": "MIPS_26", "symbol": "ERR_add_error_data", "scope": "LIBRARY"}, "1036": {"type": "MIPS_26", "symbol": "SSL_CTX_remove_session", "scope": "LIBRARY"}, "1160": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "1188": {"type": "MIPS_26", "symbol": "do_change_cipher_spec", "scope": "LIBRARY", "original": ".text"}, "1372": {"type": "MIPS_26", "symbol": "SSL_get_rbio", "scope": "LIBRARY"}, "1384": {"type": "MIPS_26", "symbol": "BIO_clear_retry_flags", "scope": "LIBRARY"}, "1392": {"type": "MIPS_26", "symbol": "BIO_set_retry_read", "scope": "LIBRARY"}, "1588": {"type": "MIPS_26", "symbol": "SSL_state", "scope": "LIBRARY"}, "1648": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "1788": {"type": "MIPS_26", "symbol": "memcpy"}, "1856": {"type": "MIPS_26", "symbol": "ssl3_finish_mac", "scope": "LIBRARY"}, "1876": {"type": "MIPS_26", "symbol": "ssl3_send_alert", "scope": "LIBRARY", "original": ".text"}}}}}, "do_change_cipher_spec": {"d656d3a24e631343ab0b18065bd16585abe6d422": {"00000000": {"type": "FUNCTION", "size": 324, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "ssl3_send_alert": {"4e1bc79ce1aa2a39306d5757b9a40a96c2967ea5": {"36f879f2": {"type": "FUNCTION", "size": 176, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"84": {"type": "MIPS_26", "symbol": "SSL_CTX_remove_session", "scope": "LIBRARY"}, "136": {"type": "MIPS_26", "symbol": "ssl3_dispatch_alert", "scope": "LIBRARY", "original": ".text"}}}}}, "ssl3_dispatch_alert": {"833f502d754f6f70fb71110caa3cd9107a965011": {"6223f8cc": {"type": "FUNCTION", "size": 380, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "ssl3_lwrite", "scope": "LIBRARY", "original": ".text"}, "112": {"type": "MIPS_26", "symbol": "BIO_ctrl", "scope": "LIBRARY"}, "144": {"type": "MIPS_26", "symbol": "BIO_ctrl", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "BIO_should_write", "scope": "LIBRARY"}}}}}, "ssl3_do_write": {"59927b5d0e4805dd1640b5396156aaae1b97712e": {"3677ce70": {"type": "FUNCTION", "size": 116, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "ssl3_write_bytes", "scope": "LIBRARY", "original": ".text"}}}}}, "SIO_socket_nbio": {"f3c4d1183b3b930644a91e51a0553b1bdb6aa7ca": {"38ab8cdf": {"type": "FUNCTION", "size": 48, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "sceGetTime": {"397f9451c551d4db4ebad12d7ca02251c54e401d": {"9cd4a9a5": {"type": "FUNCTION", "size": 164, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceCdReadClock"}, "40": {"type": "MIPS_26", "symbol": "bcd_to_int", "original": ".text"}, "56": {"type": "MIPS_26", "symbol": "bcd_to_int", "original": ".text"}, "72": {"type": "MIPS_26", "symbol": "bcd_to_int", "original": ".text"}, "84": {"type": "MIPS_26", "symbol": "bcd_to_int", "original": ".text"}, "96": {"type": "MIPS_26", "symbol": "bcd_to_int", "original": ".text"}, "108": {"type": "MIPS_26", "symbol": "bcd_to_int", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "get_yday", "scope": "LIBRARY", "original": ".text"}, "144": {"type": "MIPS_26", "symbol": "mktime", "original": ".text"}}}}}, "get_yday": {"52e66ad0e901ecc478fe32409ce0aca21800f6dd": {"d3e72eac": {"type": "FUNCTION", "size": 112, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "mktime": {"1eda9d1b2441878ec1804193881ec470206f1955": {"93090db1": {"type": "FUNCTION", "size": 276, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "32": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "256": {"type": "MIPS_26", "symbol": "ydhms_tm_diff", "scope": "LIBRARY", "original": ".text"}}}}}, "ydhms_tm_diff": {"b5f2cfe5574bb26d18df5f6ed5de5cdd977e10af": {"00000000": {"type": "FUNCTION", "size": 288, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "des_set_odd_parity": {"db09e5b524d973c648e42c09f45831a1830ca9ee": {"d3e72eac": {"type": "FUNCTION", "size": 56, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "des_check_parity": {"44bd7b8ac6ced076700b8fa1b9be5c5b86be22d7": {"d3e72eac": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "des_is_weak_key": {"76e0c73c43a63ce99f33dc7624965086fce8e03c": {"bd6b3efb": {"type": "FUNCTION", "size": 112, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_26", "symbol": "memcmp"}}}}}, "des_set_key": {"901b90d453492286a782369342d6826b773c8f82": {"473e96e3": {"type": "FUNCTION", "size": 996, "library")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "get_common_global", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "des_check_parity", "scope": "LIBRARY", "original": ".text"}, "84": {"type": "MIPS_26", "symbol": "des_is_weak_key", "scope": "LIBRARY", "original": ".text"}, "292": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "300": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "320": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "448": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "652": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "660": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "des_key_sched": {"7ba17f652620d1a8770717ffc05543c774ba24f8": {"12f99f5e": {"type": "FUNCTION", "size": 28, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "des_set_key", "scope": "LIBRARY", "original": ".text"}}}}}, "dsa_verify_cb": {"1882a6f560db15d5bab764439ea50664fe428d61": {"4a1d9551": {"type": "FUNCTION", "size": 844, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "BN_CTX_new", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "BN_init", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "BN_init", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "BN_init", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "BN_init", "scope": "LIBRARY"}, "172": {"type": "MIPS_26", "symbol": "asn1_GetSequence", "scope": "LIBRARY"}, "216": {"type": "MIPS_26", "symbol": "d2i_ASN1_INTEGER", "scope": "LIBRARY"}, "276": {"type": "MIPS_26", "symbol": "BN_bin2bn", "scope": "LIBRARY"}, "304": {"type": "MIPS_26", "symbol": "d2i_ASN1_INTEGER", "scope": "LIBRARY"}, "364": {"type": "MIPS_26", "symbol": "BN_bin2bn", "scope": "LIBRARY"}, "380": {"type": "MIPS_26", "symbol": "asn1_Finish", "scope": "LIBRARY"}, "424": {"type": "MIPS_26", "symbol": "BN_MONT_CTX_new", "scope": "LIBRARY"}, "448": {"type": "MIPS_26", "symbol": "BN_MONT_CTX_set_word", "scope": "LIBRARY"}, "480": {"type": "MIPS_26", "symbol": "BN_mod_inverse", "scope": "LIBRARY"}, "500": {"type": "MIPS_26", "symbol": "BN_bin2bn", "scope": "LIBRARY"}, "528": {"type": "MIPS_26", "symbol": "BN_mod_mul", "scope": "LIBRARY"}, "556": {"type": "MIPS_26", "symbol": "BN_mod_mul", "scope": "LIBRARY"}, "596": {"type": "MIPS_26", "symbol": "BN_mod_exp2_mont", "scope": "LIBRARY"}, "620": {"type": "MIPS_26", "symbol": "BN_mod", "scope": "LIBRARY"}, "636": {"type": "MIPS_26", "symbol": "BN_ucmp", "scope": "LIBRARY"}, "684": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "716": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "736": {"type": "MIPS_26", "symbol": "ASN1_STRING_free", "scope": "LIBRARY"}, "744": {"type": "MIPS_26", "symbol": "BN_free", "scope": "LIBRARY"}, "752": {"type": "MIPS_26", "symbol": "BN_free", "scope": "LIBRARY"}, "760": {"type": "MIPS_26", "symbol": "BN_free", "scope": "LIBRARY"}, "768": {"type": "MIPS_26", "symbol": "BN_free", "scope": "LIBRARY"}, "784": {"type": "MIPS_26", "symbol": "BN_CTX_free", "scope": "LIBRARY"}}}}}, "rsa_sign_ASN1_OCTET_STRING_cb": {"730c32a48990b3e5f4a980190625fe1b7e92b5fe": {"022cb10f": {"type": "FUNCTION", "size": 300, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"72": {"type": "MIPS_26", "symbol": "i2d_ASN1_OCTET_STRING", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "RSA_size", "scope": "LIBRARY"}, "128": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "164": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "184": {"type": "MIPS_26", "symbol": "i2d_ASN1_OCTET_STRING", "scope": "LIBRARY"}, "208": {"type": "MIPS_26", "symbol": "RSA_private_encrypt", "scope": "LIBRARY"}, "240": {"type": "MIPS_26", "symbol": "memset"}, "248": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "rsa_verify_ASN1_OCTET_STRING_cb": {"e5d6a6838a3345d7a4fcc1bb27f423b1e551e5a0": {"8d1a3ee9": {"type": "FUNCTION", "size": 360, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "RSA_size", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "160": {"type": "MIPS_26", "symbol": "RSA_public_decrypt", "scope": "LIBRARY"}, "184": {"type": "MIPS_26", "symbol": "d2i_ASN1_OCTET_STRING", "scope": "LIBRARY"}, "224": {"type": "MIPS_26", "symbol": "memcmp"}, "252": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "280": {"type": "MIPS_26", "symbol": "ASN1_STRING_free", "scope": "LIBRARY"}, "296": {"type": "MIPS_26", "symbol": "memset"}, "304": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "SHA1_Setup": {"f1806d498fa06e97d42f92d842c2f66f1a5cc7fa": {"00000000": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "SHA1_Init": {"fb9661077e4d7b629b02311ea24eb2899088f4b6": {"7b008e4c": {"type": "FUNCTION", "size": 100, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "sha1_block", "original": ".text"}, "12": {"type": "MIPS_LO16", "symbol": "sha1_block", "original": ".text"}}}}}, "SHA1_Update": {"34cc5a24e51129d2179c6a8d5a1d622d519d1dce": {"00000000": {"type": "FUNCTION", "size": 1476, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "SHA1_Transform": {"cd32caa43b3692438800836771d767b7f9f1234f": {"00000000": {"type": "FUNCTION", "size": 268, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sha1_block": {"397b9e7a944545d04b5d2c33bf29a477ad280971": {"00000000": {"type": "FUNCTION", "size": 1312, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "SHA1_Final": {"486500522a237e41f9dc1a0e4799c51f26578f9a": {"df469984": {"type": "FUNCTION", "size": 756, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "dsa_sign_cb": {"7d38275348deb65aed8976887203da3c3343b104": {"14d5895e": {"type": "FUNCTION", "size": 740, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"72": {"type": "MIPS_26", "symbol": "BN_CTX_init", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "BN_init", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "BN_init", "scope": "LIBRARY"}, "128": {"type": "MIPS_26", "symbol": "BN_init", "scope": "LIBRARY"}, "136": {"type": "MIPS_26", "symbol": "BN_num_bits", "scope": "LIBRARY"}, "236": {"type": "MIPS_26", "symbol": "DSA_sign_setup", "scope": "LIBRARY"}, "280": {"type": "MIPS_26", "symbol": "BN_bin2bn", "scope": "LIBRARY"}, "308": {"type": "MIPS_26", "symbol": "BN_mod_mul", "scope": "LIBRARY"}, "328": {"type": )PS2SDB", 8192}, + std::string_view{R"PS2SDB("MIPS_26", "symbol": "BN_add", "scope": "LIBRARY"}, "348": {"type": "MIPS_26", "symbol": "BN_cmp", "scope": "LIBRARY"}, "368": {"type": "MIPS_26", "symbol": "BN_sub", "scope": "LIBRARY"}, "392": {"type": "MIPS_26", "symbol": "BN_mod_mul", "scope": "LIBRARY"}, "432": {"type": "MIPS_26", "symbol": "BN_bn2bin", "scope": "LIBRARY"}, "460": {"type": "MIPS_26", "symbol": "BN_bn2bin", "scope": "LIBRARY"}, "480": {"type": "MIPS_26", "symbol": "i2d_ASN1_INTEGER", "scope": "LIBRARY"}, "500": {"type": "MIPS_26", "symbol": "i2d_ASN1_INTEGER", "scope": "LIBRARY"}, "540": {"type": "MIPS_26", "symbol": "ASN1_put_object", "scope": "LIBRARY"}, "552": {"type": "MIPS_26", "symbol": "i2d_ASN1_INTEGER", "scope": "LIBRARY"}, "564": {"type": "MIPS_26", "symbol": "i2d_ASN1_INTEGER", "scope": "LIBRARY"}, "608": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "616": {"type": "MIPS_26", "symbol": "BN_CTX_free", "scope": "LIBRARY"}, "636": {"type": "MIPS_26", "symbol": "BN_clear_free", "scope": "LIBRARY"}, "656": {"type": "MIPS_26", "symbol": "BN_clear_free", "scope": "LIBRARY"}, "664": {"type": "MIPS_26", "symbol": "BN_clear_free", "scope": "LIBRARY"}, "672": {"type": "MIPS_26", "symbol": "BN_clear_free", "scope": "LIBRARY"}, "680": {"type": "MIPS_26", "symbol": "BN_clear_free", "scope": "LIBRARY"}}}}}, "dsa_sign_setup_cb": {"535b2c1ba5c5110cd381c4a833c87dc8c63427f7": {"ac889303": {"type": "FUNCTION", "size": 612, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"76": {"type": "MIPS_26", "symbol": "BN_CTX_new", "scope": "LIBRARY"}, "136": {"type": "MIPS_26", "symbol": "BN_MONT_CTX_new", "scope": "LIBRARY"}, "160": {"type": "MIPS_26", "symbol": "BN_MONT_CTX_set_word", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "BN_init", "scope": "LIBRARY"}, "188": {"type": "MIPS_26", "symbol": "BN_new", "scope": "LIBRARY"}, "208": {"type": "MIPS_26", "symbol": "R_rand_get_default", "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "BN_num_bits", "scope": "LIBRARY"}, "244": {"type": "MIPS_26", "symbol": "BN_rand", "scope": "LIBRARY"}, "264": {"type": "MIPS_26", "symbol": "BN_cmp", "scope": "LIBRARY"}, "284": {"type": "MIPS_26", "symbol": "BN_sub", "scope": "LIBRARY"}, "344": {"type": "MIPS_26", "symbol": "BN_mod_exp_mont", "scope": "LIBRARY"}, "368": {"type": "MIPS_26", "symbol": "BN_mod", "scope": "LIBRARY"}, "392": {"type": "MIPS_26", "symbol": "BN_mod_inverse", "scope": "LIBRARY"}, "424": {"type": "MIPS_26", "symbol": "BN_clear_free", "scope": "LIBRARY"}, "444": {"type": "MIPS_26", "symbol": "BN_clear_free", "scope": "LIBRARY"}, "496": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "512": {"type": "MIPS_26", "symbol": "BN_CTX_free", "scope": "LIBRARY"}, "528": {"type": "MIPS_26", "symbol": "BN_clear_free", "scope": "LIBRARY"}, "544": {"type": "MIPS_26", "symbol": "BN_clear_free", "scope": "LIBRARY"}, "552": {"type": "MIPS_26", "symbol": "BN_clear_free", "scope": "LIBRARY"}}}}}, "rsa_sign_cb": {"cf04fe08450da73c2b76e048670fba56d8ac4298": {"5a5f956f": {"type": "FUNCTION", "size": 404, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_26", "symbol": "OBJ_nid2obj", "scope": "LIBRARY"}, "176": {"type": "MIPS_26", "symbol": "i2d_X509_SIG", "scope": "LIBRARY"}, "188": {"type": "MIPS_26", "symbol": "RSA_size", "scope": "LIBRARY"}, "232": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "268": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "288": {"type": "MIPS_26", "symbol": "i2d_X509_SIG", "scope": "LIBRARY"}, "312": {"type": "MIPS_26", "symbol": "RSA_private_encrypt", "scope": "LIBRARY"}, "344": {"type": "MIPS_26", "symbol": "memset"}, "352": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "rsa_verify_cb": {"fa2732081ac1155b76b6d3d824473e281a2acb90": {"130c26a5": {"type": "FUNCTION", "size": 408, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"76": {"type": "MIPS_26", "symbol": "RSA_size", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "120": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "RSA_public_decrypt", "scope": "LIBRARY"}, "192": {"type": "MIPS_26", "symbol": "d2i_X509_SIG", "scope": "LIBRARY"}, "216": {"type": "MIPS_26", "symbol": "OBJ_obj2nid", "scope": "LIBRARY"}, "268": {"type": "MIPS_26", "symbol": "memcmp"}, "296": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "324": {"type": "MIPS_26", "symbol": "X509_SIG_free", "scope": "LIBRARY"}, "340": {"type": "MIPS_26", "symbol": "memset"}, "348": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "SIO_fd_should_retry": {"6d1af1d1e3e9f878d952a2a10d87a2755624f6c1": {"3d41fcff": {"type": "FUNCTION", "size": 60, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "__errno"}, "28": {"type": "MIPS_26", "symbol": "SIO_fd_non_fatal_error", "scope": "LIBRARY", "original": ".text"}}}}}, "SIO_fd_non_fatal_error": {"41370805c5451ec8997929262abed8382e665612": {"00000000": {"type": "FUNCTION", "size": 84, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "SIO_sock_should_retry": {"6d1af1d1e3e9f878d952a2a10d87a2755624f6c1": {"c89cdcb4": {"type": "FUNCTION", "size": 60, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "__sceNetGlueErrnoLoc"}, "28": {"type": "MIPS_26", "symbol": "SIO_sock_non_fatal_error", "scope": "LIBRARY", "original": ".text"}}}}}, "SIO_sock_non_fatal_error": {"41370805c5451ec8997929262abed8382e665612": {"00000000": {"type": "FUNCTION", "size": 84, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "cmp_by_name": {"5b4bb513cdba0dc9d681fb505aaff4db9f817977": {"dce3557a": {"type": "FUNCTION", "size": 40, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "strcmp"}}}}}, "cmp_by_num": {"0390d4620cf636656f243a13e6e4b5e96c85f1e2": {"00000000": {"type": "FUNCTION", "size": 64, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "load_ciphers": {"c21d843f84934a31346218031ab54938758cdf7e": {"070790d2": {"type": "FUNCTION", "size": 164, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "24": {"type": "MIPS_26", "symbol": "EVP_OBJ_get_cipherbyname", "scope": "LIBRARY"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "48": {"type": "MIPS_26", "symbol": "EVP_OBJ_get_cipherbyname", "scope": "LIBRARY"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_26", "symbol": "EVP_OBJ_get_ci)PS2SDB", 8192}, + std::string_view{R"PS2SDB(pherbyname", "scope": "LIBRARY"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_26", "symbol": "EVP_OBJ_get_cipherbyname", "scope": "LIBRARY"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_26", "symbol": "EVP_OBJ_get_cipherbyname", "scope": "LIBRARY"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "112": {"type": "MIPS_26", "symbol": "EVP_OBJ_get_digestbyname", "scope": "LIBRARY"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "120": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_26", "symbol": "EVP_OBJ_get_digestbyname", "scope": "LIBRARY"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "ssl_cipher_get_evp": {"2169c0bc645c58e368f14bb79d9937b1066661c4": {"8180b091": {"type": "FUNCTION", "size": 404, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"228": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "232": {"type": "MIPS_26", "symbol": "EVP_enc_null", "scope": "LIBRARY"}, "252": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "328": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "344": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "ll_append_tail": {"f8234485f1572be229ed39d63834db8a18a43510": {"00000000": {"type": "FUNCTION", "size": 104, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "ssl_create_cipher_list": {"9a30ee2506060e1c0cec6bbf096da22d4e51efec": {"ede3faa0": {"type": "FUNCTION", "size": 3204, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"108": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "120": {"type": "MIPS_26", "symbol": "strncmp"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_26", "symbol": "strlen"}, "144": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "176": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "196": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "200": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "204": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "304": {"type": "MIPS_26", "symbol": "strcat"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "316": {"type": "MIPS_26", "symbol": "strcat"}, "328": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "332": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "344": {"type": "MIPS_26", "symbol": "load_ciphers", "scope": "LIBRARY", "original": ".text"}, "356": {"type": "MIPS_26", "symbol": "SSL_feature_test", "scope": "LIBRARY"}, "372": {"type": "MIPS_26", "symbol": "SSL_feature_test", "scope": "LIBRARY"}, "392": {"type": "MIPS_26", "symbol": "SSL_feature_test", "scope": "LIBRARY"}, "412": {"type": "MIPS_26", "symbol": "SSL_feature_test", "scope": "LIBRARY"}, "424": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "436": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "444": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "544": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "556": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "564": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "612": {"type": "MIPS_26", "symbol": "sk_new", "scope": "LIBRARY"}, "628": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "632": {"type": "MIPS_26", "symbol": "sk_new", "scope": "LIBRARY"}, "636": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "648": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "652": {"type": "MIPS_26", "symbol": "sk_new", "scope": "LIBRARY"}, "656": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "676": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "788": {"type": "MIPS_26", "symbol": "sk_push", "scope": "LIBRARY"}, "804": {"type": "MIPS_26", "symbol": "sk_push", "scope": "LIBRARY"}, "852": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "1024": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1064": {"type": "MIPS_26", "symbol": "sk_push", "scope": "LIBRARY"}, "1204": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "1232": {"type": "MIPS_26", "symbol": "memset"}, "1900": {"type": "MIPS_26", "symbol": "sk_find", "scope": "LIBRARY"}, "2100": {"type": "MIPS_26", "symbol": "sk_find", "scope": "LIBRARY"}, "2536": {"type": "MIPS_26", "symbol": "strcmp"}, "2628": {"type": "MIPS_26", "symbol": "ll_append_tail", "scope": "LIBRARY", "original": ".text"}, "2668": {"type": "MIPS_26", "symbol": "ll_append_tail", "scope": "LIBRARY", "original": ".text"}, "2884": {"type": "MIPS_26", "symbol": "sk_push", "scope": "LIBRARY"}, "2928": {"type": "MIPS_26", "symbol": "sk_free", "scope": "LIBRARY"}, "2976": {"type": "MIPS_26", "symbol": "sk_free", "scope": "LIBRARY"}, "2984": {"type": "MIPS_26", "symbol": "sk_dup", "scope": "LIBRARY"}, "3004": {"type": "MIPS_HI16", "symbol": "ssl_cipher_ptr_id_cmp"}, "3012": {"type": "MIPS_26", "symbol": "sk_set_cmp_func", "scope": "LIBRARY"}, "3016": {"type": "MIPS_LO16", "symbol": "ssl_cipher_ptr_id_cmp"}, "3044": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "3064": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "3084": {"type": "MIPS_26", "symbol": "sk_free", "scope": "LIBRARY"}, "3104": {"type": "MIPS_26", "symbol": "sk_free", "scope": "LIBRARY"}, "3124": {"type": "MIPS_26", "symbol": "sk_free", "scope": "LIBRARY"}, "3144": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "SSL_CIPHER_description": {"dc366a23a507495e3e3e88aa1324d9985a4db82c": {"e8ea8def": {"type": "FUNCTION", "size": 1052, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"80": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "140": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "220": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "232": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "236": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "248": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "256": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "260": {"type": "MIPS_HI16", "sym)PS2SDB", 8192}, + std::string_view{R"PS2SDB(bol": "", "original": ".rodata"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "272": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "292": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "300": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "312": {"type": "MIPS_26", "symbol": "sprintf"}, "328": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "336": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "340": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "344": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "384": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "392": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "412": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "420": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "424": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "432": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "436": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "444": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "448": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "456": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "460": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "464": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "536": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "556": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "596": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "612": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "636": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "644": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "652": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "660": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "672": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "680": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "692": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "700": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "712": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "720": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "732": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "736": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "748": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "752": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "764": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "768": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "796": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "804": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "808": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "816": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "820": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "824": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "836": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "888": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "908": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "916": {"type": "MIPS_26", "symbol": "strcpy"}, "928": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "936": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "944": {"type": "MIPS_26", "symbol": "sprintf"}, "952": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "960": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "992": {"type": "MIPS_26", "symbol": "sprintf"}}}}}, "SSL_CIPHER_get_id": {"139f4a36c2aa5b34872c1aa28dbe8f63274bf0fa": {"00000000": {"type": "FUNCTION", "size": 32, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "SSL_CIPHER_get_version": {"b8d5cccce1bd8652899a69c7194dd6cfdd50050d": {"e59f1de1": {"type": "FUNCTION", "size": 80, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "SSL_CIPHER_get_name": {"577e37e42a951020c97edb2adc95287e8ff5d90d": {"b3f3108e": {"type": "FUNCTION", "size": 24, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "SSL_CIPHER_get_valid": {"bc3f406df1b64926c4af204c6d9c18c1a685f849": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "SSL_CIPHER_get_bits": {"4a7e7bac09c3c7d4a36c4ceda72e42efa5707f8a": {"dad8fe21": {"type": "FUNCTION", "size": 148, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "ssl_cipher_get_evp", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_26", "symbol": "EVP_CIPHER_key_length", "scope": "LIBRARY"}}}}}, "SSL_load_error_strings": {"7678540574197b420f17571673856a74783eb9d5": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "SSL_get_session": {"54fe661393e108eaecc0640a96558a573a7ec2da": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "SSL_SESSION_get_ex_new_index": {"1723948d96c939b042d800820bfcf2dbcfef4454": {"d4f5b30f": {"type": "FUNCTION", "size": 80, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_26", "symbol": "CRYPTO_get_ex_new_index", "scope": "LIBRARY"}}}}}, "SSL_SESSION_set_ex_data": {"c1a60e6920f7996d03bde57b101b7292302e1c6b": {"f9432b98": {"type": "FUNCTION", "size": 28, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "CRYPTO_set_ex_data", "scope": "LIBRARY"}}}}}, "SSL_SESSION_get_ex_data": {"c1a60e6920f7996d03bde57b101b7292302e1c6b": {"e76c9cd1": {"type": "FUNCTION", "size":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( 28, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "CRYPTO_get_ex_data", "scope": "LIBRARY"}}}}}, "SSL_SESSION_new": {"59f9ba8dc5659c13d1f096f5d82ff966c951d041": {"b39b220e": {"type": "FUNCTION", "size": 148, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "48": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "memset"}, "88": {"type": "MIPS_26", "symbol": "R_time_new", "scope": "LIBRARY"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "120": {"type": "MIPS_26", "symbol": "CRYPTO_new_ex_data", "scope": "LIBRARY"}}}}}, "ssl_get_new_session": {"a3667ea6801e7a679d21351c7ed8b83a20d9bc71": {"63072c7c": {"type": "FUNCTION", "size": 416, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "SSL_SESSION_new", "scope": "LIBRARY", "original": ".text"}, "76": {"type": "MIPS_26", "symbol": "SSL_get_default_timeout", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "SSL_SESSION_free", "scope": "LIBRARY", "original": ".text"}, "168": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "176": {"type": "MIPS_26", "symbol": "SSL_SESSION_free", "scope": "LIBRARY", "original": ".text"}, "204": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "212": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "224": {"type": "MIPS_26", "symbol": "R_rand_get_default", "scope": "LIBRARY"}, "240": {"type": "MIPS_26", "symbol": "R_rand_bytes", "scope": "LIBRARY"}, "260": {"type": "MIPS_26", "symbol": "R_lock_ctrl", "scope": "LIBRARY"}, "276": {"type": "MIPS_26", "symbol": "lh_retrieve", "scope": "LIBRARY"}, "300": {"type": "MIPS_26", "symbol": "R_lock_ctrl", "scope": "LIBRARY"}, "344": {"type": "MIPS_26", "symbol": "memcpy"}}}}}, "ssl_get_prev_session": {"b86271271bc69ae7e37fcaf7ca79071398fee348": {"9bba892e": {"type": "FUNCTION", "size": 704, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"72": {"type": "MIPS_26", "symbol": "memcpy"}, "96": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_26", "symbol": "R_lock_ctrl", "scope": "LIBRARY"}, "132": {"type": "MIPS_26", "symbol": "lh_retrieve", "scope": "LIBRARY"}, "156": {"type": "MIPS_26", "symbol": "R_lock_ctrl", "scope": "LIBRARY"}, "256": {"type": "MIPS_26", "symbol": "SSL_CTX_add_session", "scope": "LIBRARY", "original": ".text"}, "276": {"type": "MIPS_26", "symbol": "SSL_SESSION_free", "scope": "LIBRARY", "original": ".text"}, "320": {"type": "MIPS_26", "symbol": "memcmp"}, "344": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "464": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "472": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "484": {"type": "MIPS_26", "symbol": "R_locked_add", "scope": "LIBRARY"}, "492": {"type": "MIPS_26", "symbol": "R_time_new", "scope": "LIBRARY"}, "500": {"type": "MIPS_26", "symbol": "R_time_new", "scope": "LIBRARY"}, "524": {"type": "MIPS_26", "symbol": "R_time_offset", "scope": "LIBRARY"}, "532": {"type": "MIPS_26", "symbol": "R_time", "scope": "LIBRARY"}, "544": {"type": "MIPS_26", "symbol": "R_time_cmp", "scope": "LIBRARY"}, "556": {"type": "MIPS_26", "symbol": "R_time_free", "scope": "LIBRARY"}, "564": {"type": "MIPS_26", "symbol": "R_time_free", "scope": "LIBRARY"}, "600": {"type": "MIPS_26", "symbol": "SSL_CTX_remove_session", "scope": "LIBRARY", "original": ".text"}, "608": {"type": "MIPS_26", "symbol": "SSL_SESSION_free", "scope": "LIBRARY", "original": ".text"}, "648": {"type": "MIPS_26", "symbol": "SSL_SESSION_free", "scope": "LIBRARY", "original": ".text"}}}}}, "SSL_CTX_add_session": {"12e19497799b70e1929b34105a97a7f0b303048b": {"eaee78af": {"type": "FUNCTION", "size": 324, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "60": {"type": "MIPS_26", "symbol": "R_locked_add", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "R_lock_ctrl", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "lh_insert", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "SSL_SESSION_free", "scope": "LIBRARY", "original": ".text"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_26", "symbol": "SSL_SESSION_list_add", "scope": "LIBRARY", "original": ".text"}, "152": {"type": "MIPS_26", "symbol": "SSL_CTX_ctrl", "scope": "LIBRARY"}, "196": {"type": "MIPS_26", "symbol": "SSL_CTX_ctrl", "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "SSL_CTX_ctrl", "scope": "LIBRARY"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "252": {"type": "MIPS_26", "symbol": "ssl_ctx_remove_session_nolock", "scope": "LIBRARY", "original": ".text"}, "268": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "280": {"type": "MIPS_26", "symbol": "R_lock_ctrl", "scope": "LIBRARY"}}}}}, "SSL_CTX_remove_session": {"5a38147a48815d1117813a5756b2aef97a3b8da7": {"3fee480a": {"type": "FUNCTION", "size": 144, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "60": {"type": "MIPS_26", "symbol": "R_lock_ctrl", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "ssl_ctx_remove_session_nolock", "scope": "LIBRARY", "original": ".text"}, "96": {"type": "MIPS_26", "symbol": "R_lock_ctrl", "scope": "LIBRARY"}}}}}, "ssl_ctx_remove_session_nolock": {"d0316c4141a4e57d9b611ac4464ec79d02caba03": {"26c3184e": {"type": "FUNCTION", "size": 140, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "lh_delete", "scope": "LIBRARY"}, "60": {"type": "MIPS_26", "symbol": "SSL_SESSION_list_remove", "scope": "LIBRARY", "original": ".text"}, "100": {"type": "MIPS_26", "symbol": "SSL_SESSION_free", "scope": "LIBRARY", "original": ".text"}}}}}, "SSL_SESSION_free": {"6d87b72ffb07269918e0ad08b2d67a25d40670a0": {"a8757f79": {"type": "FUNCTION", "size": 248, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "36": {"type": "MIPS_26", "symbol": "R_locked_add", "scope": "LIBRARY"}, "52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_26", "symbol": "CRYPTO_free_ex_data", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "memset"}, "96": {"type": "MIPS_26", "symbol": "memset"}, "112": {"type": "MIPS_26", "symbol": "memset"}, "132": {"type": "MIPS_26", "symbol": "R_time_free", "scope": "LIBRARY"}, "152": {"type": "MIPS_26", "symbol": "ssl_cert_free", "scope": "LIBRARY"}, "172": {"type": "MIPS_26", "symbol": "SSLCERT_free", "scope": "LIBRARY"}, "192": {"type": "MIPS_26", "symbol": "sk_free", "scope": "LIBRARY"}, "208": {"type": "MIPS)PS2SDB", 8192}, + std::string_view{R"PS2SDB(_26", "symbol": "memset"}, "228": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "SSL_SESSION_reference_inc": {"88b9661505d413cb52436ff15273a7320d314ed6": {"93a5c2b1": {"type": "FUNCTION", "size": 28, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "20": {"type": "MIPS_26", "symbol": "R_locked_add", "scope": "LIBRARY"}}}}}, "SSL_set_session": {"2439e52c53f295779d8c85359ce4d4c0e8dd96c4": {"d938c206": {"type": "FUNCTION", "size": 328, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"112": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "136": {"type": "MIPS_26", "symbol": "SSL_set_ssl_method", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "SSL_get_default_timeout", "scope": "LIBRARY"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "200": {"type": "MIPS_26", "symbol": "R_locked_add", "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "SSL_SESSION_free", "scope": "LIBRARY", "original": ".text"}, "248": {"type": "MIPS_26", "symbol": "SSL_SESSION_free", "scope": "LIBRARY", "original": ".text"}, "280": {"type": "MIPS_26", "symbol": "SSL_set_ssl_method", "scope": "LIBRARY"}}}}}, "SSL_SESSION_set_timeout": {"8122a9cfe0e54bb5ba318857782175586570cc79": {"00000000": {"type": "FUNCTION", "size": 24, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "SSL_SESSION_get_timeout": {"88af338cd6341e8e7fb9e45e8f1a8d3f8ca39e51": {"00000000": {"type": "FUNCTION", "size": 24, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "SSL_SESSION_get_time": {"47e206b2db81f0b813c057f38993565d748e1414": {"59aa7a28": {"type": "FUNCTION", "size": 88, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "R_time_size", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "memcpy"}}}}}, "SSL_SESSION_set_time": {"73afaaa0adc8587bc55ccac3d4bcac3ae5fbcbac": {"59aa7a28": {"type": "FUNCTION", "size": 88, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "R_time_size", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "memcpy"}}}}}, "SSL_CTX_set_timeout": {"1459cdd0600e90016751e044f05eb6da04bb942e": {"00000000": {"type": "FUNCTION", "size": 24, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "SSL_CTX_get_timeout": {"8bdf981f142c7905b8cee5a1db48b754fa62aac1": {"00000000": {"type": "FUNCTION", "size": 24, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "timeout": {"9e9874c6bb30c5911c7743de2bbf8e6fd0e1a2b4": {"6ddcb18e": {"type": "FUNCTION", "size": 184, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "R_time_new", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "R_time_offset", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "R_time_cmp", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "R_time_free", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "lh_delete", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "SSL_SESSION_list_remove", "scope": "LIBRARY", "original": ".text"}, "148": {"type": "MIPS_26", "symbol": "SSL_SESSION_free", "scope": "LIBRARY", "original": ".text"}}}}}, "SSL_CTX_flush_sessions": {"d74321faa595c5c9d156fedcf194750bf969f384": {"177b850c": {"type": "FUNCTION", "size": 208, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "R_time_new", "scope": "LIBRARY"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "68": {"type": "MIPS_26", "symbol": "R_time_import", "scope": "LIBRARY"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_26", "symbol": "R_time", "scope": "LIBRARY"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "112": {"type": "MIPS_26", "symbol": "R_lock_ctrl", "scope": "LIBRARY"}, "124": {"type": "MIPS_HI16", "symbol": "timeout", "original": ".text"}, "128": {"type": "MIPS_LO16", "symbol": "timeout", "original": ".text"}, "144": {"type": "MIPS_26", "symbol": "lh_doall_arg", "scope": "LIBRARY"}, "172": {"type": "MIPS_26", "symbol": "R_lock_ctrl", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "R_time_free", "scope": "LIBRARY"}}}}}, "ssl_clear_bad_session": {"665c58ab9466734e486e3803512ee3157d5de0bc": {"a4490284": {"type": "FUNCTION", "size": 168, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "SSL_state", "scope": "LIBRARY"}, "60": {"type": "MIPS_26", "symbol": "SSL_state", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "SSL_state", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "SSL_state", "scope": "LIBRARY"}, "128": {"type": "MIPS_26", "symbol": "SSL_CTX_remove_session", "scope": "LIBRARY", "original": ".text"}}}}}, "SSL_SESSION_list_remove": {"28cf04adfbaff1a501d757a2f09e6eb7ec8b215f": {"00000000": {"type": "FUNCTION", "size": 116, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "SSL_SESSION_list_add": {"51ec66514a80af042d9482d02e8251291686bf71": {"feecef5a": {"type": "FUNCTION", "size": 128, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "SSL_SESSION_list_remove", "scope": "LIBRARY", "original": ".text"}}}}}, "SSL_SESSION_get_peer_certificate": {"e12e3375b6a1467285b81d813e7307ea44e90fe2": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "SSL_SESSION_get_master_key_length": {"5ae463b7fee46cd928807353b15cf885cd41b2d6": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "SSL_SESSION_get_master_key": {"3066a26c6b62a206476eeb572612dc73b8a266b9": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "SSL_SESSION_get_session_id_length": {"1640d49c88141abc6cafb512dc1043fa619af083": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "SSL_SESSION_get)PS2SDB", 8192}, + std::string_view{R"PS2SDB(_session_id": {"afddbd78173f46f4919b6d6b492d6c832db69274": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "get_sslc_global": {"2a51c093207f3b6546ea5ac91d4ae4a6999eaed5": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "SSL_EVP_PKEY_bits": {"d9f55e515f77e7cdfb81469e99a42bdf4398dc6a": {"2112c7c3": {"type": "FUNCTION", "size": 80, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "SSL_feature_test", "scope": "LIBRARY"}, "48": {"type": "MIPS_26", "symbol": "EVP_PKEY_bits", "scope": "LIBRARY"}}}}}, "SSL_EVP_PKEY_size": {"ed86f41253e9be7a732633d3596b226467de4b7e": {"5c342c02": {"type": "FUNCTION", "size": 88, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "SSL_feature_test", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "EVP_PKEY_size", "scope": "LIBRARY"}}}}}, "SSL_EVP_PKEY_save_parameters": {"f445c15510cde5486324228fb6fb5d21a1105af7": {"f333e680": {"type": "FUNCTION", "size": 80, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "SSL_feature_test", "scope": "LIBRARY"}, "40": {"type": "MIPS_26", "symbol": "EVP_PKEY_save_parameters", "scope": "LIBRARY"}}}}}, "SSL_EVP_PKEY_copy_parameters": {"f445c15510cde5486324228fb6fb5d21a1105af7": {"d53d53ef": {"type": "FUNCTION", "size": 80, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "SSL_feature_test", "scope": "LIBRARY"}, "40": {"type": "MIPS_26", "symbol": "EVP_PKEY_copy_parameters", "scope": "LIBRARY"}}}}}, "SSL_EVP_PKEY_missing_parameters": {"a3efa7550bce487d70df92c8b5bac5dd03ca0f8a": {"280bec1f": {"type": "FUNCTION", "size": 64, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "SSL_feature_test", "scope": "LIBRARY"}, "32": {"type": "MIPS_26", "symbol": "EVP_PKEY_missing_parameters", "scope": "LIBRARY"}}}}}, "SSL_EVP_PKEY_cmp_parameters": {"929739addc48d38edf3bef70fd97415f25a84b82": {"3d95f35b": {"type": "FUNCTION", "size": 80, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "SSL_feature_test", "scope": "LIBRARY"}, "40": {"type": "MIPS_26", "symbol": "EVP_PKEY_cmp_parameters", "scope": "LIBRARY"}}}}}, "SSL_EVP_PKEY_new": {"7ba17f652620d1a8770717ffc05543c774ba24f8": {"3ba257b1": {"type": "FUNCTION", "size": 28, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "EVP_PKEY_new", "scope": "LIBRARY"}}}}}, "SSL_EVP_PKEY_reference_inc": {"a639a8a356321edbeccee089cae462e9fca431ea": {"14edf80c": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_26", "symbol": "EVP_PKEY_reference_inc", "scope": "LIBRARY"}}}}}, "SSL_EVP_PKEY_assign": {"7ba17f652620d1a8770717ffc05543c774ba24f8": {"a0db4269": {"type": "FUNCTION", "size": 28, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "EVP_PKEY_assign", "scope": "LIBRARY"}}}}}, "SSL_EVP_PKEY_key_type": {"7ba17f652620d1a8770717ffc05543c774ba24f8": {"3e2238af": {"type": "FUNCTION", "size": 28, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "EVP_PKEY_key_type", "scope": "LIBRARY"}}}}}, "SSL_EVP_PKEY_free": {"a639a8a356321edbeccee089cae462e9fca431ea": {"fe0fab5b": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_26", "symbol": "EVP_PKEY_free", "scope": "LIBRARY"}}}}}, "SSL_X509_certificate_type_ex": {"c53e0e86d4ba075002c2f406de51cc8a76f82a40": {"b5c76a3f": {"type": "FUNCTION", "size": 200, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "SSL_EVP_PKEY_key_type", "scope": "LIBRARY", "original": ".text"}, "148": {"type": "MIPS_26", "symbol": "SSL_EVP_PKEY_size", "scope": "LIBRARY", "original": ".text"}}}}}, "SSL_X509_certificate_type": {"b1b3f7938135d18a19952381a42e0f06eae34671": {"538aaac6": {"type": "FUNCTION", "size": 104, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "SSLCERT_get_pubkey", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "SSLCERT_get_signature_type", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "SSL_X509_certificate_type_ex", "scope": "LIBRARY", "original": ".text"}}}}}, "sk_set_cmp_func": {"740db277c7fcdc7fdc6b38a9e660b52b459ca247": {"00000000": {"type": "FUNCTION", "size": 20, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sk_dup": {"02e850b12ebd06e25d332bbea67a0bc411fbb2a0": {"c47d9956": {"type": "FUNCTION", "size": 148, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "sk_new", "scope": "LIBRARY"}, "48": {"type": "MIPS_26", "symbol": "R_realloc", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "memcpy"}}}}}, "sk_new": {"73e2f6c2376c61c4f09df98d1ab8340d615b9be2": {"f13c06da": {"type": "FUNCTION", "size": 156, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "40": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "sk_insert": {"84a4245863bdb4af1d863b8cc1936bbf70d20b12": {"bf85cca9": {"type": "FUNCTION", "size": 252, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "R_realloc", "scope": "LIBRARY"}}}}}, "sk_delete_ptr": {"a7805c0160b846da6c7a75b60d9a382670621cc8": {"b14fd633": {"type": "FUNCTION", "size": 92, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "sk_delete", "scope": "LIBRARY"}}}}}, "sk_delete": {"704547144a31732ac95e3334c40813ca81a4f01b": {"00000000": {"type": "FUNCTION", "size": 132, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "co)PS2SDB", 8192}, + std::string_view{R"PS2SDB(mpiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sk_find": {"6459cb62120de272052ee8189e326ebea3c9d216": {"86f2009c": {"type": "FUNCTION", "size": 280, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"124": {"type": "MIPS_26", "symbol": "qsort"}, "164": {"type": "MIPS_26", "symbol": "bsearch"}}}}}, "sk_move": {"d3004e8a21e60ef332d172f8921a40e1b13dbb0e": {"5075bfec": {"type": "FUNCTION", "size": 136, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "sk_delete", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "sk_push", "scope": "LIBRARY", "original": ".text"}, "104": {"type": "MIPS_26", "symbol": "sk_insert", "scope": "LIBRARY"}}}}}, "sk_push": {"0d345dff412b6733f55c35af6e9dee8b098b0643": {"c7c33c74": {"type": "FUNCTION", "size": 32, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sk_insert", "scope": "LIBRARY"}}}}}, "sk_unshift": {"e1e028210078668942189d5d8a2c4d8d4b00a4fa": {"4dbf5917": {"type": "FUNCTION", "size": 28, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sk_insert", "scope": "LIBRARY"}}}}}, "sk_shift": {"0bba589c31a2d077748f08361ebe38a590ee99fe": {"7c7f4149": {"type": "FUNCTION", "size": 48, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "sk_delete", "scope": "LIBRARY"}}}}}, "sk_pop": {"8f36634ef150f92f35c3fdce4e261a441695f815": {"f52d497c": {"type": "FUNCTION", "size": 52, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "sk_delete", "scope": "LIBRARY"}}}}}, "sk_zero": {"a1eeaccab952b0ef370d9174c3db4626b4317506": {"777e140f": {"type": "FUNCTION", "size": 64, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "memset"}}}}}, "sk_clear": {"2542a0c744f016097c55e236b296a5a45a23bca1": {"670628b1": {"type": "FUNCTION", "size": 144, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"112": {"type": "MIPS_26", "symbol": "sk_zero", "scope": "LIBRARY"}}}}}, "sk_pop_free": {"a783a097dcfe6f63bc3367c4851277d9d2372d90": {"35f16647": {"type": "FUNCTION", "size": 40, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sk_clear", "scope": "LIBRARY", "original": ".text"}, "32": {"type": "MIPS_26", "symbol": "sk_free", "scope": "LIBRARY", "original": ".text"}}}}}, "sk_free": {"d7dfd719c5a125f992651ebcff02496108e0756e": {"d537bc40": {"type": "FUNCTION", "size": 76, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "tls1_get_client_method": {"d1663b1f10ef3b3232e21f831cdec1093e722015": {"2745b103": {"type": "FUNCTION", "size": 48, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "TLSv1_client_method", "scope": "LIBRARY", "original": ".text"}}}}}, "TLSv1_client_method": {"a5fa97f2a4d7168c5d98254f62f3f9dd76938ded": {"3d52e8b4": {"type": "FUNCTION", "size": 344, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "32": {"type": "MIPS_26", "symbol": "tlsv1_base_method", "scope": "LIBRARY"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_HI16", "symbol": "", "original": "ssl3_connect"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "176": {"type": "MIPS_HI16", "symbol": "", "original": "ssl3_connect"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "296": {"type": "MIPS_LO16", "symbol": "", "original": "ssl3_connect"}, "300": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "316": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "320": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "tls1_P_hash": {"9ec18be53f3cffc21552e3d966e6e730841d7a63": {"d82e94e0": {"type": "FUNCTION", "size": 452, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "EVP_MD_size", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "HMAC_new", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "HMAC_new", "scope": "LIBRARY"}, "120": {"type": "MIPS_26", "symbol": "HMAC_Init", "scope": "LIBRARY"}, "140": {"type": "MIPS_26", "symbol": "HMAC_Update", "scope": "LIBRARY"}, "160": {"type": "MIPS_26", "symbol": "HMAC_Final", "scope": "LIBRARY"}, "184": {"type": "MIPS_26", "symbol": "HMAC_Init", "scope": "LIBRARY"}, "204": {"type": "MIPS_26", "symbol": "HMAC_Update", "scope": "LIBRARY"}, "216": {"type": "MIPS_26", "symbol": "HMAC_copy", "scope": "LIBRARY"}, "236": {"type": "MIPS_26", "symbol": "HMAC_Update", "scope": "LIBRARY"}, "264": {"type": "MIPS_26", "symbol": "HMAC_Final", "scope": "LIBRARY"}, "296": {"type": "MIPS_26", "symbol": "HMAC_Final", "scope": "LIBRARY"}, "316": {"type": "MIPS_26", "symbol": "HMAC_Final", "scope": "LIBRARY"}, "336": {"type": "MIPS_26", "symbol": "memcpy"}, "360": {"type": "MIPS_26", "symbol": "HMAC_free", "scope": "LIBRARY"}, "376": {"type": "MIPS_26", "symbol": "HMAC_free", "scope": "LIBRARY"}, "392": {"type": "MIPS_26", "symbol": "memset"}}}}}, "tls1_PRF": {"bb3b23ebaa4b723a0b6789a6b37ef1826782f50b": {"7877c927": {"type": "FUNCTION", "size": 268, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"108": {"type": "MIPS_26", "symbol": "tls1_P_hash", "scope": "LIBRARY", "original": ".text"}, "144": {"type": "MIPS_26", "symbol": "tls1_P_hash", "scope": "LIBRARY", "original": ".text"}}}}}, "tls1_generate_key_block": {"824959cc6edd7a481bc274d664c3df056204fac9": {"704825f8": {"type": "FUNCTION", "size": 248, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "228": {"type": "MIPS_26", "symbol": "tls1_PRF", "scope": "LIBRARY", "original": ".text"}}}}}, "tls1_change_cipher_state": {"2b87c0e5d8fbbbdd0702b27366a8c5d9af8c217c": {"14a2b0c5": {"type": "FUNCTION", "size": 1196, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"112": {"type": "MIPS_26", "symbol": "memset"}, "144)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": {"type": "MIPS_26", "symbol": "memset"}, "176": {"type": "MIPS_26", "symbol": "EVP_CIPHER_CTX_new", "scope": "LIBRARY"}, "200": {"type": "MIPS_HI16", "symbol": "", "original": "HMAC_free"}, "204": {"type": "MIPS_26", "symbol": "HMAC_new", "scope": "LIBRARY"}, "220": {"type": "MIPS_HI16", "symbol": "", "original": "HMAC_free"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": "HMAC_free"}, "244": {"type": "MIPS_26", "symbol": "HMAC_Init", "scope": "LIBRARY"}, "260": {"type": "MIPS_26", "symbol": "EVP_MD_size", "scope": "LIBRARY"}, "280": {"type": "MIPS_26", "symbol": "EVP_CIPHER_CTX_init", "scope": "LIBRARY"}, "300": {"type": "MIPS_26", "symbol": "EVP_MD_size", "scope": "LIBRARY"}, "340": {"type": "MIPS_26", "symbol": "EVP_CIPHER_key_length", "scope": "LIBRARY"}, "352": {"type": "MIPS_26", "symbol": "EVP_CIPHER_iv_length", "scope": "LIBRARY"}, "416": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "428": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "448": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "464": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "512": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "532": {"type": "MIPS_26", "symbol": "memcpy"}, "556": {"type": "MIPS_26", "symbol": "memcpy"}, "700": {"type": "MIPS_26", "symbol": "EVP_CIPHER_key_length", "scope": "LIBRARY"}, "752": {"type": "MIPS_26", "symbol": "tls1_PRF", "scope": "LIBRARY", "original": ".text"}, "780": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "784": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "948": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "964": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "984": {"type": "MIPS_26", "symbol": "tls1_PRF", "scope": "LIBRARY", "original": ".text"}, "1036": {"type": "MIPS_26", "symbol": "EVP_CipherInit", "scope": "LIBRARY"}, "1056": {"type": "MIPS_26", "symbol": "memset"}, "1072": {"type": "MIPS_26", "symbol": "memset"}, "1088": {"type": "MIPS_26", "symbol": "memset"}, "1104": {"type": "MIPS_26", "symbol": "memset"}, "1136": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "tls1_setup_key_block": {"b57e569ea3c81354f100238629db7eed9b8979be": {"742ec4d0": {"type": "FUNCTION", "size": 344, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "ssl_cipher_get_evp", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "EVP_CIPHER_key_length", "scope": "LIBRARY"}, "136": {"type": "MIPS_26", "symbol": "EVP_MD_size", "scope": "LIBRARY"}, "148": {"type": "MIPS_26", "symbol": "EVP_CIPHER_iv_length", "scope": "LIBRARY"}, "172": {"type": "MIPS_26", "symbol": "ssl3_cleanup_key_block", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "200": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "244": {"type": "MIPS_26", "symbol": "tls1_generate_key_block", "scope": "LIBRARY", "original": ".text"}, "264": {"type": "MIPS_26", "symbol": "memset"}, "272": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "304": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "tls1_enc": {"61b48393991ffe612aaea45800fcf3ced14c9b2d": {"0337945d": {"type": "FUNCTION", "size": 720, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"92": {"type": "MIPS_26", "symbol": "EVP_CIPHER_CTX_cipher", "scope": "LIBRARY"}, "140": {"type": "MIPS_26", "symbol": "memcpy"}, "160": {"type": "MIPS_26", "symbol": "EVP_CIPHER_CTX_block_size", "scope": "LIBRARY"}, "348": {"type": "MIPS_26", "symbol": "EVP_Cipher", "scope": "LIBRARY"}, "428": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "432": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "440": {"type": "MIPS_26", "symbol": "memcmp"}, "536": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "552": {"type": "MIPS_26", "symbol": "ssl3_send_alert", "scope": "LIBRARY"}, "584": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "600": {"type": "MIPS_26", "symbol": "ssl3_send_alert", "scope": "LIBRARY"}}}}}, "tls1_cert_verify_mac": {"8c5034008a1f1310a0f0f629d339fa26c299fa76": {"6576bb90": {"type": "FUNCTION", "size": 84, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "EVP_MD_CTX_copy", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "EVP_DigestFinal", "scope": "LIBRARY"}}}}}, "tls1_final_finish_mac": {"54dd337cad110f3aed6d68c8badd04687815b721": {"63db4e40": {"type": "FUNCTION", "size": 276, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "memcpy"}, "88": {"type": "MIPS_26", "symbol": "EVP_MD_CTX_copy", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "EVP_DigestFinal", "scope": "LIBRARY"}, "132": {"type": "MIPS_26", "symbol": "EVP_MD_CTX_copy", "scope": "LIBRARY"}, "164": {"type": "MIPS_26", "symbol": "EVP_DigestFinal", "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "tls1_PRF", "scope": "LIBRARY", "original": ".text"}}}}}, "tls1_mac": {"b8665aefdf6618ff5c272635b922507d21394775": {"73ce45b1": {"type": "FUNCTION", "size": 340, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"80": {"type": "MIPS_26", "symbol": "HMAC_digest", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "EVP_MD_size", "scope": "LIBRARY"}, "156": {"type": "MIPS_26", "symbol": "HMAC_Init", "scope": "LIBRARY"}, "176": {"type": "MIPS_26", "symbol": "HMAC_Update", "scope": "LIBRARY"}, "192": {"type": "MIPS_26", "symbol": "HMAC_Update", "scope": "LIBRARY"}, "208": {"type": "MIPS_26", "symbol": "HMAC_Update", "scope": "LIBRARY"}, "224": {"type": "MIPS_26", "symbol": "HMAC_Final", "scope": "LIBRARY"}}}}}, "tls1_generate_master_secret": {"b27df6b77ab664c441290f376929bea9a68105e5": {"0b276a57": {"type": "FUNCTION", "size": 252, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "12": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "220": {"type": "MIPS_26", "symbol": "tls1_PRF", "scope": "LIBRARY", "original": ".text"}}}}}, "tls1_alert_code": {"bc286e592b8afc1225a60f37ba8f607e96f6f89d": {"0bfe8910": {"type": "FUNCTION", "size": 236, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "tls1_default_timeout": {"5b736863961dbb616a555ca251098f9122d262b3": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "tlsv1_base_method": {"2a51c093207f3b6546ea5ac91d4ae4a6999eaed5": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "tls1_new": {"0a9383fb697a7dbd78e451f70f20f987cb594fcc": {"93819b81": {"type": "FU)PS2SDB", 8192}, + std::string_view{R"PS2SDB(NCTION", "size": 68, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "ssl3_new", "scope": "LIBRARY"}}}}}, "tls1_free": {"a639a8a356321edbeccee089cae462e9fca431ea": {"942a0c5a": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_26", "symbol": "ssl3_free", "scope": "LIBRARY"}}}}}, "tls1_clear": {"d00e8e1ee67cd158ad48c81fc32c5dc3d42bf674": {"5c4bd46b": {"type": "FUNCTION", "size": 44, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "ssl3_clear", "scope": "LIBRARY"}}}}}, "ASN1_UTCTIME_print": {"3ad9bf1af5f3f6e8111a4ace412e7f22a8892fc6": {"378ad856": {"type": "FUNCTION", "size": 596, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"340": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "432": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "440": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "444": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "452": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "468": {"type": "MIPS_26", "symbol": "BIO_printf", "scope": "LIBRARY"}, "492": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "500": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "512": {"type": "MIPS_26", "symbol": "BIO_printf", "scope": "LIBRARY"}, "540": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "548": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "552": {"type": "MIPS_26", "symbol": "BIO_write", "scope": "LIBRARY"}}}}}, "SSL_enable_time": {"e9e558166fedba636e656e8053b21e9aa7417163": {"0313e890": {"type": "FUNCTION", "size": 84, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "R_mtime"}, "12": {"type": "MIPS_26", "symbol": "R_time_set_func", "scope": "LIBRARY"}, "16": {"type": "MIPS_LO16", "symbol": "R_mtime"}, "20": {"type": "MIPS_HI16", "symbol": "R_mtime_offset"}, "24": {"type": "MIPS_26", "symbol": "R_time_set_offset_func", "scope": "LIBRARY"}, "28": {"type": "MIPS_LO16", "symbol": "R_mtime_offset"}, "32": {"type": "MIPS_HI16", "symbol": "R_mtime_cmp"}, "36": {"type": "MIPS_26", "symbol": "R_time_set_cmp_func", "scope": "LIBRARY"}, "40": {"type": "MIPS_LO16", "symbol": "R_mtime_cmp"}, "44": {"type": "MIPS_HI16", "symbol": "R_mtime_import"}, "48": {"type": "MIPS_26", "symbol": "R_time_set_import_func", "scope": "LIBRARY"}, "52": {"type": "MIPS_LO16", "symbol": "R_mtime_import"}, "56": {"type": "MIPS_HI16", "symbol": "R_mtime_export"}, "60": {"type": "MIPS_26", "symbol": "R_time_set_export_func", "scope": "LIBRARY"}, "64": {"type": "MIPS_LO16", "symbol": "R_mtime_export"}}}}}, "time_mi_cmp": {"e3105ac8508f53dcd0b774fd1943030bb10e0ac1": {"7274598e": {"type": "FUNCTION", "size": 196, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "memset"}}}}}, "time_mi_export": {"8c9d99636d2423e3a27a1585c883bee2662591e7": {"a1f651af": {"type": "FUNCTION", "size": 2008, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_26", "symbol": "get_common_global", "scope": "LIBRARY"}, "136": {"type": "MIPS_26", "symbol": "BN_new", "scope": "LIBRARY"}, "240": {"type": "MIPS_26", "symbol": "BN_set_word", "scope": "LIBRARY"}, "256": {"type": "MIPS_26", "symbol": "BN_lshift", "scope": "LIBRARY"}, "268": {"type": "MIPS_26", "symbol": "BN_add_word", "scope": "LIBRARY"}, "292": {"type": "MIPS_26", "symbol": "BN_div_word", "scope": "LIBRARY"}, "316": {"type": "MIPS_26", "symbol": "BN_div_word", "scope": "LIBRARY"}, "340": {"type": "MIPS_26", "symbol": "BN_div_word", "scope": "LIBRARY"}, "360": {"type": "MIPS_26", "symbol": "BN_dup", "scope": "LIBRARY"}, "388": {"type": "MIPS_26", "symbol": "BN_mul_word", "scope": "LIBRARY"}, "404": {"type": "MIPS_26", "symbol": "BN_div_word", "scope": "LIBRARY"}, "412": {"type": "MIPS_26", "symbol": "BN_dup", "scope": "LIBRARY"}, "444": {"type": "MIPS_26", "symbol": "BN_add_word", "scope": "LIBRARY"}, "452": {"type": "MIPS_26", "symbol": "BN_dup", "scope": "LIBRARY"}, "496": {"type": "MIPS_26", "symbol": "BN_sub_word", "scope": "LIBRARY"}, "508": {"type": "MIPS_26", "symbol": "BN_mul_word", "scope": "LIBRARY"}, "520": {"type": "MIPS_26", "symbol": "BN_div_word", "scope": "LIBRARY"}, "536": {"type": "MIPS_26", "symbol": "BN_add", "scope": "LIBRARY"}, "548": {"type": "MIPS_26", "symbol": "BN_div_word", "scope": "LIBRARY"}, "564": {"type": "MIPS_26", "symbol": "BN_sub", "scope": "LIBRARY"}, "576": {"type": "MIPS_26", "symbol": "BN_div_word", "scope": "LIBRARY"}, "592": {"type": "MIPS_26", "symbol": "BN_add", "scope": "LIBRARY"}, "604": {"type": "MIPS_26", "symbol": "BN_sub_word", "scope": "LIBRARY"}, "640": {"type": "MIPS_26", "symbol": "BN_mod_word", "scope": "LIBRARY"}, "656": {"type": "MIPS_26", "symbol": "BN_mod_word", "scope": "LIBRARY"}, "676": {"type": "MIPS_26", "symbol": "BN_mod_word", "scope": "LIBRARY"}, "696": {"type": "MIPS_26", "symbol": "BN_add_word", "scope": "LIBRARY"}, "712": {"type": "MIPS_26", "symbol": "BN_sub", "scope": "LIBRARY"}, "732": {"type": "MIPS_26", "symbol": "BN_sub_word", "scope": "LIBRARY"}, "744": {"type": "MIPS_26", "symbol": "BN_mod_word", "scope": "LIBRARY"}, "760": {"type": "MIPS_26", "symbol": "BN_mod_word", "scope": "LIBRARY"}, "780": {"type": "MIPS_26", "symbol": "BN_mod_word", "scope": "LIBRARY"}, "800": {"type": "MIPS_26", "symbol": "BN_add_word", "scope": "LIBRARY"}, "812": {"type": "MIPS_26", "symbol": "BN_get_word", "scope": "LIBRARY"}, "832": {"type": "MIPS_26", "symbol": "BN_mod_word", "scope": "LIBRARY"}, "848": {"type": "MIPS_26", "symbol": "BN_mod_word", "scope": "LIBRARY"}, "868": {"type": "MIPS_26", "symbol": "BN_mod_word", "scope": "LIBRARY"}, "900": {"type": "MIPS_26", "symbol": "BN_add_word", "scope": "LIBRARY"}, "928": {"type": "MIPS_26", "symbol": "BN_add_word", "scope": "LIBRARY"}, "944": {"type": "MIPS_26", "symbol": "BN_mod_word", "scope": "LIBRARY"}, "960": {"type": "MIPS_26", "symbol": "BN_mod_word", "scope": "LIBRARY"}, "980": {"type": "MIPS_26", "symbol": "BN_mod_word", "scope": "LIBRARY"}, "1152": {"type": "MIPS_26", "symbol": "BN_get_word", "scope": "LIBRARY"}, "1228": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1248": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1272": {"type": "MIPS_26", "symbol": "sprintf"}, "1300": {"type": "MIPS_26", "symbol": "BN_get_word", "scope": "LIBRARY"}, "1376": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1396": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1424": {"type": "MIPS_26", "symbol": "sprintf"}, "1452": {"type": "MIPS_26", "symbol": "BN_get_word", "scope": "LIBRARY"}, "1528": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "1540": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "1556": {"type": "MIPS_26", "symbol": "sprintf"}, "1564": {"type": "MIPS_26", "symbol": "BN_free", "scope": "LIBRARY"}, "1572": {"type": "MIPS_26", "symbol": "BN_free", "scope": "LIBRARY"}, "1580": {"type": "MIPS_26", "symbol": "BN_free", "scope": "LIBRARY"}, "1588": {"type": "MIPS_26", "symbol": "BN_free", "scope": "LIBRARY"}, "1784": {"type": "MIPS_26", "symbol": "memset"}}}}}, "time_mi_import": {"ed6755b6d8788f108819551bd8f20b319fd3e499": {"c4697809": {"type": "FUNCTION", "size": 1972, "library": "libhttps", "scope": ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "get_common_global", "scope": "LIBRARY"}, "132": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "352": {"type": "MIPS_26", "symbol": "BN_new", "scope": "LIBRARY"}, "452": {"type": "MIPS_26", "symbol": "str_to_ints", "scope": "LIBRARY", "original": ".text"}, "660": {"type": "MIPS_26", "symbol": "BN_set_word", "scope": "LIBRARY"}, "724": {"type": "MIPS_26", "symbol": "BN_set_word", "scope": "LIBRARY"}, "740": {"type": "MIPS_26", "symbol": "BN_mod_word", "scope": "LIBRARY"}, "756": {"type": "MIPS_26", "symbol": "BN_mod_word", "scope": "LIBRARY"}, "776": {"type": "MIPS_26", "symbol": "BN_mod_word", "scope": "LIBRARY"}, "968": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "976": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "1020": {"type": "MIPS_26", "symbol": "BN_dup", "scope": "LIBRARY"}, "1048": {"type": "MIPS_26", "symbol": "BN_sub_word", "scope": "LIBRARY"}, "1072": {"type": "MIPS_26", "symbol": "BN_sub_word", "scope": "LIBRARY"}, "1084": {"type": "MIPS_26", "symbol": "BN_mul_word", "scope": "LIBRARY"}, "1096": {"type": "MIPS_26", "symbol": "BN_div_word", "scope": "LIBRARY"}, "1112": {"type": "MIPS_26", "symbol": "BN_add", "scope": "LIBRARY"}, "1124": {"type": "MIPS_26", "symbol": "BN_div_word", "scope": "LIBRARY"}, "1140": {"type": "MIPS_26", "symbol": "BN_sub", "scope": "LIBRARY"}, "1152": {"type": "MIPS_26", "symbol": "BN_div_word", "scope": "LIBRARY"}, "1168": {"type": "MIPS_26", "symbol": "BN_add", "scope": "LIBRARY"}, "1180": {"type": "MIPS_26", "symbol": "BN_sub_word", "scope": "LIBRARY"}, "1216": {"type": "MIPS_26", "symbol": "BN_add_word", "scope": "LIBRARY"}, "1252": {"type": "MIPS_26", "symbol": "BN_add_word", "scope": "LIBRARY"}, "1268": {"type": "MIPS_26", "symbol": "BN_add_word", "scope": "LIBRARY"}, "1280": {"type": "MIPS_26", "symbol": "BN_mul_word", "scope": "LIBRARY"}, "1292": {"type": "MIPS_26", "symbol": "BN_add_word", "scope": "LIBRARY"}, "1304": {"type": "MIPS_26", "symbol": "BN_mul_word", "scope": "LIBRARY"}, "1316": {"type": "MIPS_26", "symbol": "BN_add_word", "scope": "LIBRARY"}, "1328": {"type": "MIPS_26", "symbol": "BN_mul_word", "scope": "LIBRARY"}, "1340": {"type": "MIPS_26", "symbol": "BN_add_word", "scope": "LIBRARY"}, "1352": {"type": "MIPS_26", "symbol": "BN_init", "scope": "LIBRARY"}, "1364": {"type": "MIPS_26", "symbol": "BN_copy", "scope": "LIBRARY"}, "1376": {"type": "MIPS_26", "symbol": "BN_mask_bits", "scope": "LIBRARY"}, "1416": {"type": "MIPS_26", "symbol": "BN_num_bits", "scope": "LIBRARY"}, "1456": {"type": "MIPS_26", "symbol": "BN_bn2bin", "scope": "LIBRARY"}, "1464": {"type": "MIPS_26", "symbol": "BN_free", "scope": "LIBRARY"}, "1636": {"type": "MIPS_26", "symbol": "BN_free", "scope": "LIBRARY"}, "1644": {"type": "MIPS_26", "symbol": "BN_free", "scope": "LIBRARY"}, "1708": {"type": "MIPS_26", "symbol": "time_mi_offset", "scope": "LIBRARY"}}}}}, "str_to_ints": {"383146f66d0b229e23a30d97b23cd7e3a420a26b": {"f677003d": {"type": "FUNCTION", "size": 292, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}, "152": {"type": "MIPS_HI16", "symbol": "", "original": "_ctype_"}, "160": {"type": "MIPS_LO16", "symbol": "", "original": "_ctype_"}}}}}, "time_mi_loffset": {"248407deb9f2f5ffc0fad58affd32dabf1eab624": {"e994e705": {"type": "FUNCTION", "size": 316, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "get_common_global", "scope": "LIBRARY"}}}}}, "time_mi_offset": {"4ffb306b924e2ff91ff306a2de1b9396e2379dae": {"c71f1a70": {"type": "FUNCTION", "size": 368, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "get_common_global", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "__moddi3"}, "132": {"type": "MIPS_26", "symbol": "__divdi3"}}}}}, "time_mi_time": {"ab465089942edc6bcc32c10b179a7df4d551e48a": {"f70d1183": {"type": "FUNCTION", "size": 108, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "sceGetTime", "scope": "LIBRARY"}}}}}, "X509_subject_name_cmp": {"f99ce4162711f95259c347933c1a6e524c1abcb6": {"c02d3d67": {"type": "FUNCTION", "size": 40, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "X509_NAME_cmp", "scope": "LIBRARY"}}}}}, "X509_get_issuer_name": {"1028e729726cb12cc355a5656253a3346aead92f": {"00000000": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "X509_get_subject_name": {"6d99c935c91b0fbea5ce23f9554c91a53c3672f3": {"00000000": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "X509_get_serialNumber": {"9bcbe1520a739a10687b333b2816eccfcb6a2e9d": {"00000000": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "X509_NAME_cmp": {"9e260c19ba4d1b7a00ba251b427c808f1ee56080": {"80b5c9de": {"type": "FUNCTION", "size": 320, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"152": {"type": "MIPS_26", "symbol": "memcmp"}, "260": {"type": "MIPS_26", "symbol": "OBJ_cmp", "scope": "LIBRARY"}}}}}, "X509_NAME_hash": {"cfa0ac5b576c02bf2924968b6ac486b15f1d0800": {"1b8bb0e1": {"type": "FUNCTION", "size": 192, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "i2d_X509_NAME", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "i2d_X509_NAME", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "MD5", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "X509_find_by_subject": {"34819bc90821df65c297db01735066af46a2886b": {"882b89b3": {"type": "FUNCTION", "size": 144, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "X509_get_subject_name", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "X509_NAME_cmp", "scope": "LIBRARY"}}}}}, "X509_get_pubkey": {"37ea6ddffc31737a84623ea73079ea5a5ffb1cca": {"f9f9b539": {"type": "FUNCTION", "size": 52, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "X509_PUBKEY_get", "scope": "LIBRARY"}}}}}, "X509_get_ext_count": {"6b01c763666bef35919761e3120be2abe0cffdfb": {"ce9aa638": {"type": "FUNCTION", "size": 32, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "X509v3_get_ext_count", "scope": "LIBRARY"}}}}}, "X509_get_notBefore_str": {"2db5c0)PS2SDB", 8192}, + std::string_view{R"PS2SDB(7efe1b6b9df9c55eb6bcaf64dcc054f0bf": {"65dd8a06": {"type": "FUNCTION", "size": 32, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "X509_get_notBefore", "scope": "LIBRARY"}}}}}, "X509_get_notBefore_buf": {"c7325953c5ff0ddd111bb42b127da687cba8f9a4": {"ae09c7d5": {"type": "FUNCTION", "size": 160, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "BIO_s_mem", "scope": "LIBRARY"}, "44": {"type": "MIPS_26", "symbol": "BIO_new", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "X509_get_notBefore", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "ASN1_UTCTIME_print", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "BIO_gets", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "BIO_free", "scope": "LIBRARY"}, "120": {"type": "MIPS_26", "symbol": "BIO_free", "scope": "LIBRARY"}}}}}, "X509_get_notAfter_str": {"2db5c07efe1b6b9df9c55eb6bcaf64dcc054f0bf": {"d261fab1": {"type": "FUNCTION", "size": 32, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "X509_get_notAfter", "scope": "LIBRARY"}}}}}, "X509_get_notAfter_buf": {"c7325953c5ff0ddd111bb42b127da687cba8f9a4": {"bd1f8c59": {"type": "FUNCTION", "size": 160, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "BIO_s_mem", "scope": "LIBRARY"}, "44": {"type": "MIPS_26", "symbol": "BIO_new", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "X509_get_notAfter", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "ASN1_UTCTIME_print", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "BIO_gets", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "BIO_free", "scope": "LIBRARY"}, "120": {"type": "MIPS_26", "symbol": "BIO_free", "scope": "LIBRARY"}}}}}, "X509_get_version": {"d30c42d9aa9e348534632a67c12038a9b7f3ed30": {"29f801ff": {"type": "FUNCTION", "size": 32, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "ASN1_INTEGER_get", "scope": "LIBRARY"}}}}}, "X509_get_notBefore": {"84b2d09eea03412988b3eacaf6953ab85a8c3231": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "X509_get_notAfter": {"73c01023d9837c20e88aaa6fd270e37467985880": {"00000000": {"type": "FUNCTION", "size": 16, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "X509_get_signature_type": {"8c534c2d2b875ad5c5b40eb0ef10b1b9829593b3": {"b7376078": {"type": "FUNCTION", "size": 40, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "OBJ_obj2nid", "scope": "LIBRARY"}, "20": {"type": "MIPS_26", "symbol": "EVP_PKEY_type", "scope": "LIBRARY"}}}}}, "X509_get_pubkey_bits": {"7957a2269426b9dbfcbd66302afe468ba97be039": {"c7ce66b5": {"type": "FUNCTION", "size": 36, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "X509_get_pubkey", "scope": "LIBRARY"}, "16": {"type": "MIPS_26", "symbol": "EVP_PKEY_bits", "scope": "LIBRARY"}}}}}, "X509_get_serialNumber_buf": {"f8811d901ea59ae9f583871778fa7531c968d880": {"a75e730b": {"type": "FUNCTION", "size": 140, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "BIO_s_mem", "scope": "LIBRARY"}, "44": {"type": "MIPS_26", "symbol": "BIO_new", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "X509_get_serialNumber", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "i2a_ASN1_INTEGER", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "BIO_gets", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "BIO_free", "scope": "LIBRARY"}}}}}, "X509_NAME_ENTRY_get_data_ptr": {"bfb912d6b2b9781881b154893e5092edc6f43b28": {"00000000": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "X509_NAME_ENTRY_get_oid_buf": {"1bbc9bccd3e50a50e9d1ba7157b14368908d64fc": {"8f1081a3": {"type": "FUNCTION", "size": 68, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "i2t_ASN1_OBJECT_ex", "scope": "LIBRARY"}}}}}, "X509_LOOKUP_new": {"50b215e4df6f4611adc16b1b2cd36539d078934a": {"4b018e73": {"type": "FUNCTION", "size": 124, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "X509_LOOKUP_free": {"3db4c08fa4c0e02d158d905ec050f56b9f48a0d5": {"58939057": {"type": "FUNCTION", "size": 88, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "X509_LOOKUP_shutdown": {"7d4c33ab8ee5aa239bd5082eff0360bead889f16": {"00000000": {"type": "FUNCTION", "size": 64, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "X509_LOOKUP_ctrl": {"3b12ac9d21b2b6b7087db6110da4ea4d2a921ce9": {"00000000": {"type": "FUNCTION", "size": 64, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "X509_LOOKUP_by_subject": {"65e32fac60a670d3c271d9f0d19ccbaea20f54ac": {"00000000": {"type": "FUNCTION", "size": 64, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "x509_object_hash": {"6b64da201321a9cff8c4c15208378f5716599b63": {"b8bcbdae": {"type": "FUNCTION", "size": 60, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "X509_get_subject_name", "scope": "LIBRARY"}, "32": {"type": "MIPS_26", "symbol": "X509_NAME_hash", "scope": "LIBRARY"}}}}}, "x509_object_cmp": {"9867ef53175230ee85d78fa6fcce9a65d11dc91e": {"99abd0f6": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "X509_subject_name_cmp", "scope": "LIBRARY"}}}}}, "X509_STORE_new": {"adc61b39c46b81cd9f91de10c9553e82900ee4e9": {"a45957b1": {"type": "FUNCTION", "size": 168, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".text"},)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "52": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "56": {"type": "MIPS_26", "symbol": "lh_new", "scope": "LIBRARY"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "80": {"type": "MIPS_26", "symbol": "sk_new", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "memset"}, "116": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "132": {"type": "MIPS_26", "symbol": "CRYPTO_new_ex_data", "scope": "LIBRARY"}}}}}, "cleanup": {"fd54f231716aaba2a1a885048796d8215dcacfff": {"049f4db3": {"type": "FUNCTION", "size": 60, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "X509_free", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "X509_STORE_free": {"4e212aa92d4af2eea787c6fe8203f4194ff809fe": {"de1b1184": {"type": "FUNCTION", "size": 228, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "88": {"type": "MIPS_26", "symbol": "X509_LOOKUP_shutdown", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "X509_LOOKUP_free", "scope": "LIBRARY"}, "128": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "140": {"type": "MIPS_26", "symbol": "sk_free", "scope": "LIBRARY"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_26", "symbol": "CRYPTO_free_ex_data", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "lh_doall", "scope": "LIBRARY"}, "172": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "176": {"type": "MIPS_26", "symbol": "lh_free", "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "X509_STORE_add_lookup": {"8db5b794029530faeb1e304070adb01445f1bb67": {"6abe9339": {"type": "FUNCTION", "size": 160, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"80": {"type": "MIPS_26", "symbol": "X509_LOOKUP_new", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "sk_push", "scope": "LIBRARY"}, "128": {"type": "MIPS_26", "symbol": "X509_LOOKUP_free", "scope": "LIBRARY"}}}}}, "X509_OBJECT_up_ref_count": {"b2918cc81e0a3b44ddb79b15fd5a65eface0471e": {"ba0838f8": {"type": "FUNCTION", "size": 32, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "X509_reference_inc", "scope": "LIBRARY"}}}}}, "X509_OBJECT_free_contents": {"b2918cc81e0a3b44ddb79b15fd5a65eface0471e": {"7af0e4a4": {"type": "FUNCTION", "size": 32, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "X509_free", "scope": "LIBRARY"}}}}}, "X509_STORE_get_by_subject": {"c2c0ccc0f0908e3018577c011add4cc0b1128a6b": {"69bb0786": {"type": "FUNCTION", "size": 232, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "X509_OBJECT_retrieve_by_subject", "scope": "LIBRARY"}, "120": {"type": "MIPS_26", "symbol": "X509_LOOKUP_by_subject", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "X509_OBJECT_up_ref_count", "scope": "LIBRARY"}}}}}, "X509_OBJECT_retrieve_by_subject": {"9f536892148b4a5ac22522b57519c7f3a9a1d7eb": {"9c25dba1": {"type": "FUNCTION", "size": 60, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "lh_retrieve", "scope": "LIBRARY"}}}}}, "X509_STORE_add_cert": {"783a6dbf322dc2459361b964e0ff0d32bc6f6355": {"3b3bdb1c": {"type": "FUNCTION", "size": 288, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "128": {"type": "MIPS_26", "symbol": "R_lock_ctrl", "scope": "LIBRARY"}, "136": {"type": "MIPS_26", "symbol": "X509_OBJECT_up_ref_count", "scope": "LIBRARY"}, "148": {"type": "MIPS_26", "symbol": "lh_insert", "scope": "LIBRARY"}, "172": {"type": "MIPS_26", "symbol": "lh_delete", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "X509_OBJECT_free_contents", "scope": "LIBRARY"}, "188": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "200": {"type": "MIPS_26", "symbol": "lh_insert", "scope": "LIBRARY"}, "224": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "244": {"type": "MIPS_26", "symbol": "R_lock_ctrl", "scope": "LIBRARY"}}}}}, "X509_STORE_add_crl": {"55d8c4c13e41204626eb17fa1c700bcc0bde86e8": {"7e66e126": {"type": "FUNCTION", "size": 276, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "84": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "116": {"type": "MIPS_26", "symbol": "R_lock_ctrl", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "X509_OBJECT_up_ref_count", "scope": "LIBRARY"}, "136": {"type": "MIPS_26", "symbol": "lh_insert", "scope": "LIBRARY"}, "160": {"type": "MIPS_26", "symbol": "lh_delete", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "X509_OBJECT_free_contents", "scope": "LIBRARY"}, "176": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "188": {"type": "MIPS_26", "symbol": "lh_insert", "scope": "LIBRARY"}, "212": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "232": {"type": "MIPS_26", "symbol": "R_lock_ctrl", "scope": "LIBRARY"}}}}}, "X509_STORE_CTX_get_ex_new_index": {"1723948d96c939b042d800820bfcf2dbcfef4454": {"d4f5b30f": {"type": "FUNCTION", "size": 80, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_26", "symbol": "CRYPTO_get_ex_new_index", "scope": "LIBRARY"}}}}}, "X509_STORE_CTX_cleanup_ex_data": {"8866f400a08e000b071864f5dface63a56c787b8": {"88445779": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_HI16", "symbol": "CRYPTO_EX_DATA_FUNCS_free"}, "32": {"type": "MIPS_26", "symbol": "sk_pop_free", "scope": "LIBRARY"}, "36": {"type": "MIPS_LO16", "symbol": "CRYPTO_EX_DATA_FUNCS_free"}, "40": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "44": {"type": "MIPS_LO1)PS2SDB", 8192}, + std::string_view{R"PS2SDB(6", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "X509_STORE_CTX_set_ex_data": {"86612f75408df20caad374591408759825e95b49": {"f9432b98": {"type": "FUNCTION", "size": 28, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "CRYPTO_set_ex_data", "scope": "LIBRARY"}}}}}, "X509_STORE_CTX_get_ex_data": {"86612f75408df20caad374591408759825e95b49": {"e76c9cd1": {"type": "FUNCTION", "size": 28, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "CRYPTO_get_ex_data", "scope": "LIBRARY"}}}}}, "X509_STORE_CTX_new": {"b724b1f562add465a74bcd5a843a316c28b13bbd": {"ba6fbc2d": {"type": "FUNCTION", "size": 76, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "48": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "X509_STORE_CTX_init": {"59ac1f0e47ec75b57ea61b2ccaf7632f5a845584": {"327e6da0": {"type": "FUNCTION", "size": 124, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"80": {"type": "MIPS_26", "symbol": "memset"}, "88": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "116": {"type": "MIPS_26", "symbol": "CRYPTO_new_ex_data", "scope": "LIBRARY"}}}}}, "X509_STORE_CTX_free": {"3f472bc78a4067dd1502dbb58294259b79fbc07d": {"5e939b8a": {"type": "FUNCTION", "size": 56, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "X509_STORE_CTX_cleanup", "scope": "LIBRARY", "original": ".text"}, "48": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "X509_STORE_CTX_cleanup": {"37fee8331c84beb744168037ca79fbe66d34a10f": {"4fa750e0": {"type": "FUNCTION", "size": 100, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "X509_free"}, "32": {"type": "MIPS_26", "symbol": "sk_pop_free", "scope": "LIBRARY"}, "36": {"type": "MIPS_LO16", "symbol": "X509_free"}, "44": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_26", "symbol": "CRYPTO_free_ex_data", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "memset"}}}}}, "X509_STORE_CTX_set_depth": {"cc28dca5348f9c52727985d4f9c5ad319e04a28e": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "X509_STORE_CTX_get_error": {"0dcb67a5b25504dba06f1288b11bde9216a8d1b9": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "X509_STORE_CTX_set_error": {"49f2b64a8ac17683a743c8d517e7276d4d33a5bd": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "X509_STORE_CTX_get_error_depth": {"77bb6a8892faca17a5374129383d12e1d4bf0bb8": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "X509_STORE_CTX_get_current_cert": {"e7b505edd644f34906961bf238efb74966b505f8": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "X509_check_private_key": {"ab4ea6d048f8db72279e8038c59da220403a6281": {"32a24c20": {"type": "FUNCTION", "size": 396, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "X509_get_pubkey", "scope": "LIBRARY"}, "48": {"type": "MIPS_26", "symbol": "EVP_PKEY_key_type", "scope": "LIBRARY"}, "60": {"type": "MIPS_26", "symbol": "EVP_PKEY_key_type", "scope": "LIBRARY"}, "148": {"type": "MIPS_26", "symbol": "RSA_get", "scope": "LIBRARY"}, "184": {"type": "MIPS_26", "symbol": "RSA_get", "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "memcmp"}, "248": {"type": "MIPS_26", "symbol": "RSA_get", "scope": "LIBRARY"}, "276": {"type": "MIPS_26", "symbol": "RSA_get", "scope": "LIBRARY"}, "312": {"type": "MIPS_26", "symbol": "memcmp"}, "340": {"type": "MIPS_26", "symbol": "BN_cmp", "scope": "LIBRARY"}}}}}, "X509_verify": {"6a5fe57ccead30aece10f2074bee0a50ecacd585": {"b8214579": {"type": "FUNCTION", "size": 52, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "i2d_X509_CINF"}, "24": {"type": "MIPS_LO16", "symbol": "i2d_X509_CINF"}, "32": {"type": "MIPS_26", "symbol": "ASN1_verify", "scope": "LIBRARY"}}}}}, "X509_EXTENSION_dup": {"2dda7fa9853c9b2c64e6099dcf7bb506f35bf9f9": {"0b917b47": {"type": "FUNCTION", "size": 44, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "i2d_X509_EXTENSION"}, "12": {"type": "MIPS_HI16", "symbol": "d2i_X509_EXTENSION"}, "20": {"type": "MIPS_LO16", "symbol": "i2d_X509_EXTENSION"}, "24": {"type": "MIPS_26", "symbol": "ASN1_dup", "scope": "LIBRARY"}, "28": {"type": "MIPS_LO16", "symbol": "d2i_X509_EXTENSION"}}}}}, "d2i_X509_bio": {"323a42b30d3366ded9dbef7ecfbc693fb79a5a77": {"88b02d35": {"type": "FUNCTION", "size": 48, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "X509_new"}, "16": {"type": "MIPS_HI16", "symbol": "d2i_X509"}, "24": {"type": "MIPS_LO16", "symbol": "X509_new"}, "28": {"type": "MIPS_26", "symbol": "ASN1_d2i_bio", "scope": "LIBRARY"}, "32": {"type": "MIPS_LO16", "symbol": "d2i_X509"}}}}}, "d2i_X509_CRL_bio": {"323a42b30d3366ded9dbef7ecfbc693fb79a5a77": {"25cc987b": {"type": "FUNCTION", "size": 48, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "X509_CRL_new"}, "16": {"type": "MIPS_HI16", "symbol": "d2i_X509_CRL"}, "24": {"type": "MIPS_LO16", "symbol": "X509_CRL_new"}, "28": {"type": "MIPS_26", "symbol": "ASN1_d2i_bio", "scope": "LIBRARY"}, "32": {"type": "MIPS_LO16", "symbol": "d2i_X509_CRL"}}}}}, "X509_NAME_dup": {"2dda7fa9853c9b2c64e6099dcf7bb506f35bf9f9": {"a46d529c": {"type": "FUNCTION", "size": 44, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "i2d_X509_NAME"}, "12": {"type": "MIPS_HI16", "symbol": "d2i_X509_NAME"}, "20": {"type": "MIPS_LO16", "symbol": "i2d_X509_NAME"}, "24": {"type": "MIPS_26", "symbol": "ASN1_dup", "scope": "LIBRARY"}, "28": {"type": "MIPS_LO16", "symbol": "d2i_X509_NAME"}}}}}, "X509_NAME_ENTRY_dup": {"2dda7fa9853c9b2c64e6099dcf7bb506f35bf9f9": {"4a48c2ce": {"type": "FUNCTION", "size": 44, "library": "libhttps", "scope": )PS2SDB", 8192}, + std::string_view{R"PS2SDB("GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "i2d_X509_NAME_ENTRY"}, "12": {"type": "MIPS_HI16", "symbol": "d2i_X509_NAME_ENTRY"}, "20": {"type": "MIPS_LO16", "symbol": "i2d_X509_NAME_ENTRY"}, "24": {"type": "MIPS_26", "symbol": "ASN1_dup", "scope": "LIBRARY"}, "28": {"type": "MIPS_LO16", "symbol": "d2i_X509_NAME_ENTRY"}}}}}, "X509_digest": {"94332689eb2b302f9265636b6348d2a98211afa9": {"6750999d": {"type": "FUNCTION", "size": 52, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_HI16", "symbol": "i2d_X509"}, "24": {"type": "MIPS_LO16", "symbol": "i2d_X509"}, "32": {"type": "MIPS_26", "symbol": "ASN1_digest", "scope": "LIBRARY"}}}}}, "X509_gmtime_adj": {"1d356ca5c1e2cfc35ef5e64a5cf7a3f49deaa1cd": {"129e6168": {"type": "FUNCTION", "size": 120, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "R_time_new", "scope": "LIBRARY"}, "36": {"type": "MIPS_26", "symbol": "R_time", "scope": "LIBRARY"}, "60": {"type": "MIPS_26", "symbol": "R_time_offset", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "ASN1_UTCTIME_set", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "R_time_free", "scope": "LIBRARY"}}}}}, "X509_cmp_current_time": {"eb3b61900ad064e5e04f931d8497675564396eff": {"bcaef557": {"type": "FUNCTION", "size": 144, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "R_time_new", "scope": "LIBRARY"}, "28": {"type": "MIPS_26", "symbol": "R_time_new", "scope": "LIBRARY"}, "40": {"type": "MIPS_26", "symbol": "R_time", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "R_time_import", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "R_time_cmp", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "R_time_free", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "R_time_free", "scope": "LIBRARY"}}}}}, "X509_STORE_set_default_paths": {"be04d8e814f3fb245c3c58eb110cb07109e714dd": {"8715394c": {"type": "FUNCTION", "size": 144, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "X509_LOOKUP_file", "scope": "LIBRARY"}, "24": {"type": "MIPS_26", "symbol": "X509_STORE_add_lookup", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "X509_LOOKUP_ctrl", "scope": "LIBRARY"}, "60": {"type": "MIPS_26", "symbol": "X509_LOOKUP_hash_dir", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "X509_STORE_add_lookup", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "X509_LOOKUP_ctrl", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "ERR_clear_error", "scope": "LIBRARY"}}}}}, "X509_STORE_load_locations": {"c435ff559d81f36fc73876796ea3bb21d8a477c7": {"37938ae3": {"type": "FUNCTION", "size": 340, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "X509_LOOKUP_file", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "X509_STORE_add_lookup", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "X509_LOOKUP_ctrl", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "X509_LOOKUP_hash_dir", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "X509_STORE_add_lookup", "scope": "LIBRARY"}, "152": {"type": "MIPS_26", "symbol": "X509_LOOKUP_ctrl", "scope": "LIBRARY"}, "196": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "X509_get_default_private_dir": {"2a51c093207f3b6546ea5ac91d4ae4a6999eaed5": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "X509_get_default_cert_area": {"2a51c093207f3b6546ea5ac91d4ae4a6999eaed5": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "X509_get_default_cert_dir": {"2a51c093207f3b6546ea5ac91d4ae4a6999eaed5": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "X509_get_default_cert_file": {"2a51c093207f3b6546ea5ac91d4ae4a6999eaed5": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "X509_get_default_cert_dir_env": {"2a51c093207f3b6546ea5ac91d4ae4a6999eaed5": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "X509_get_default_cert_file_env": {"2a51c093207f3b6546ea5ac91d4ae4a6999eaed5": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}}}}}, "X509_get_pubkey_parameters": {"e3bf25c8a8510394c5502383aff4d50f67c64308": {"640e2355": {"type": "FUNCTION", "size": 296, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "EVP_PKEY_missing_parameters", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "X509_get_pubkey", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "EVP_PKEY_missing_parameters", "scope": "LIBRARY"}, "152": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "X509_get_pubkey", "scope": "LIBRARY"}, "232": {"type": "MIPS_26", "symbol": "EVP_PKEY_copy_parameters", "scope": "LIBRARY"}, "256": {"type": "MIPS_26", "symbol": "EVP_PKEY_copy_parameters", "scope": "LIBRARY"}}}}}, "X509_NAME_oneline": {"6bee15eae0cdbf26b61f5bfffc5de8d2272f5019": {"5de8b9e9": {"type": "FUNCTION", "size": 964, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "88": {"type": "MIPS_26", "symbol": "BUF_MEM_new", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "BUF_MEM_grow", "scope": "LIBRARY"}, "204": {"type": "MIPS_26", "symbol": "OBJ_obj2nid", "scope": "LIBRARY"}, "224": {"type": "MIPS_26", "symbol": "OBJ_nid2sn", "scope": "LIBRARY"}, "252": {"type": "MIPS_26", ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(symbol": "i2t_ASN1_OBJECT", "scope": "LIBRARY"}, "260": {"type": "MIPS_26", "symbol": "strlen"}, "548": {"type": "MIPS_26", "symbol": "BUF_MEM_grow", "scope": "LIBRARY"}, "616": {"type": "MIPS_26", "symbol": "memcpy"}, "724": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "732": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "844": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "888": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "904": {"type": "MIPS_26", "symbol": "BUF_MEM_free", "scope": "LIBRARY"}}}}}, "X509v3_get_ext_count": {"63b523ed7073a189c4e9b25ee8d0d6c20db61607": {"00000000": {"type": "FUNCTION", "size": 24, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "X509v3_get_ext_by_NID": {"dd53925ece894efaf837cfcff99163e9a093a1a9": {"cf9de60c": {"type": "FUNCTION", "size": 80, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "OBJ_nid2obj", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "X509v3_get_ext_by_OBJ", "scope": "LIBRARY", "original": ".text"}}}}}, "X509v3_get_ext_by_OBJ": {"52833fbc3b9949fb8480714aab8291a44e0e93d5": {"bd51fef9": {"type": "FUNCTION", "size": 168, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"104": {"type": "MIPS_26", "symbol": "OBJ_cmp", "scope": "LIBRARY"}}}}}, "X509v3_get_ext_by_critical": {"e7f4feaf266cfd13a4f67bde254a5707e28f544b": {"00000000": {"type": "FUNCTION", "size": 120, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "X509v3_get_ext": {"185021dfd9eafb0a309231e10992fbfc84a43aa3": {"00000000": {"type": "FUNCTION", "size": 56, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "X509v3_delete_ext": {"a04578105d57e8fb75f8af9c323db09dcab7b065": {"b0d8e098": {"type": "FUNCTION", "size": 64, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "sk_delete", "scope": "LIBRARY"}}}}}, "X509v3_add_ext": {"6d67291deb9e2b1c101bfef068f8c5a75e67d566": {"8b26d5a7": {"type": "FUNCTION", "size": 280, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_26", "symbol": "sk_new", "scope": "LIBRARY"}, "132": {"type": "MIPS_26", "symbol": "X509_EXTENSION_dup", "scope": "LIBRARY"}, "156": {"type": "MIPS_26", "symbol": "sk_insert", "scope": "LIBRARY"}, "204": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "X509_EXTENSION_free", "scope": "LIBRARY"}, "236": {"type": "MIPS_26", "symbol": "sk_free", "scope": "LIBRARY"}}}}}, "X509_EXTENSION_create_by_NID": {"c770e4f153554e500c9f1b7159cc260e32e009ad": {"7c7fa7fa": {"type": "FUNCTION", "size": 156, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "OBJ_nid2obj", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "X509_EXTENSION_create_by_OBJ", "scope": "LIBRARY", "original": ".text"}, "116": {"type": "MIPS_26", "symbol": "ASN1_OBJECT_free", "scope": "LIBRARY"}}}}}, "X509_EXTENSION_create_by_OBJ": {"65dd7e3baf48bd92101dd3fef4395ae23beb38f5": {"27a29eb6": {"type": "FUNCTION", "size": 256, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "X509_EXTENSION_new", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "X509_EXTENSION_set_object", "scope": "LIBRARY", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "X509_EXTENSION_set_critical", "scope": "LIBRARY", "original": ".text"}, "148": {"type": "MIPS_26", "symbol": "X509_EXTENSION_set_data", "scope": "LIBRARY", "original": ".text"}, "212": {"type": "MIPS_26", "symbol": "X509_EXTENSION_free", "scope": "LIBRARY"}}}}}, "X509_EXTENSION_set_object": {"acddd68ece02d04aa8c7f4b0ec4eb7a1620eca74": {"843e10cf": {"type": "FUNCTION", "size": 88, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "ASN1_OBJECT_free", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "OBJ_dup", "scope": "LIBRARY"}}}}}, "X509_EXTENSION_set_critical": {"3c22a9dac45dc2f14d632e2e9032193c08d5e9a1": {"00000000": {"type": "FUNCTION", "size": 44, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "X509_EXTENSION_set_data": {"43e5996a50ecf05e4cba08fe50e9cdd384fef51d": {"ab9f987b": {"type": "FUNCTION", "size": 52, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "ASN1_STRING_set", "scope": "LIBRARY"}}}}}, "X509_EXTENSION_get_object": {"63b523ed7073a189c4e9b25ee8d0d6c20db61607": {"00000000": {"type": "FUNCTION", "size": 24, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "X509_EXTENSION_get_data": {"dcfd937f983e001bb21704a9f68255198c0f1b85": {"00000000": {"type": "FUNCTION", "size": 24, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "X509_EXTENSION_get_critical": {"320057c00379484f521a2f37908a72a8814d04ea": {"00000000": {"type": "FUNCTION", "size": 24, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "X509v3_data_type_by_OBJ": {"37c2386fef9eddfdc5e85da3b634b00f2ea753a6": {"f74b26b0": {"type": "FUNCTION", "size": 52, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "OBJ_obj2nid", "scope": "LIBRARY"}, "32": {"type": "MIPS_26", "symbol": "X509v3_data_type_by_NID", "scope": "LIBRARY", "original": ".text"}}}}}, "X509v3_data_type_by_NID": {"4d2c9b91abf0c2e753ddfdc1c4320aaeb03f8b15": {"f1716ac3": {"type": "FUNCTION", "size": 40, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "find_by_nid", "scope": "LIBRARY", "original": ".text"}}}}}, "X509v3_pack_type_by_OBJ": {"f44da2edafb76fe6fa4327db19ae84ed33a75b9b": {"fc7da423": {"type": "FUNCTION", "size": 52, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "OBJ_obj2nid", "scope": "LIBRARY"}, "32": {"type": "MIPS_26", "symbol": "X509v3_pack_type_by_NID", "scope": "LIBRARY", "original": ".text"}}}}}, "X509v3_pack_type_by_NID": {"9df0485c0fba6fd33d8c1953220b41549d837513": {"f1716ac3": {"type": "FUNCTION", "size": 40, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "r)PS2SDB", 8192}, + std::string_view{R"PS2SDB(elocations": {"8": {"type": "MIPS_26", "symbol": "find_by_nid", "scope": "LIBRARY", "original": ".text"}}}}}, "find_by_nid": {"9b5407319158432a9900d1103384f4e0114637f7": {"c7dd7ed6": {"type": "FUNCTION", "size": 88, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "28": {"type": "MIPS_26", "symbol": "sk_find", "scope": "LIBRARY"}, "44": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "xem_cmp": {"a61b6cd1abf643a740bd74640d5f932509e0dadd": {"00000000": {"type": "FUNCTION", "size": 24, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "X509v3_cleanup_extensions": {"42f09929435828c08b6912b9e636be2dc5317b7b": {"20f86b44": {"type": "FUNCTION", "size": 136, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "48": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "72": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "96": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_26", "symbol": "sk_free", "scope": "LIBRARY"}, "104": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "X509v3_add_extension": {"bd775e56a9028bb9bd63647614ee304602640398": {"61f09dd9": {"type": "FUNCTION", "size": 176, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_HI16", "symbol": "xem_cmp", "original": ".text"}, "40": {"type": "MIPS_26", "symbol": "sk_new", "scope": "LIBRARY"}, "44": {"type": "MIPS_LO16", "symbol": "xem_cmp", "original": ".text"}, "52": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "56": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_26", "symbol": "sk_push", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "140": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "null_cb": {"e76f4eb6c6308b87e67e6813cb81c9dcccb566f4": {"00000000": {"type": "FUNCTION", "size": 8, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "X509_verify_cert": {"6d001ea680d8670a9c417db2b5167e83111f8d5a": {"9ae21d4d": {"type": "FUNCTION", "size": 1220, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"84": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "116": {"type": "MIPS_HI16", "symbol": "null_cb", "original": ".text"}, "120": {"type": "MIPS_LO16", "symbol": "null_cb", "original": ".text"}, "140": {"type": "MIPS_26", "symbol": "sk_new", "scope": "LIBRARY"}, "160": {"type": "MIPS_26", "symbol": "sk_push", "scope": "LIBRARY"}, "172": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "180": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "196": {"type": "MIPS_26", "symbol": "R_locked_add", "scope": "LIBRARY"}, "224": {"type": "MIPS_26", "symbol": "sk_dup", "scope": "LIBRARY"}, "260": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "312": {"type": "MIPS_26", "symbol": "X509_find_by_subject", "scope": "LIBRARY"}, "336": {"type": "MIPS_26", "symbol": "sk_push", "scope": "LIBRARY"}, "348": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "364": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "368": {"type": "MIPS_26", "symbol": "R_locked_add", "scope": "LIBRARY"}, "384": {"type": "MIPS_26", "symbol": "sk_delete_ptr", "scope": "LIBRARY"}, "420": {"type": "MIPS_26", "symbol": "X509_get_issuer_name", "scope": "LIBRARY"}, "432": {"type": "MIPS_26", "symbol": "X509_get_subject_name", "scope": "LIBRARY"}, "444": {"type": "MIPS_26", "symbol": "X509_NAME_cmp", "scope": "LIBRARY"}, "484": {"type": "MIPS_26", "symbol": "X509_get_subject_name", "scope": "LIBRARY"}, "496": {"type": "MIPS_26", "symbol": "X509_get_issuer_name", "scope": "LIBRARY"}, "508": {"type": "MIPS_26", "symbol": "X509_NAME_cmp", "scope": "LIBRARY"}, "592": {"type": "MIPS_26", "symbol": "sk_pop", "scope": "LIBRARY"}, "656": {"type": "MIPS_26", "symbol": "X509_STORE_get_by_subject", "scope": "LIBRARY"}, "696": {"type": "MIPS_26", "symbol": "X509_OBJECT_free_contents", "scope": "LIBRARY"}, "720": {"type": "MIPS_26", "symbol": "sk_push", "scope": "LIBRARY"}, "748": {"type": "MIPS_26", "symbol": "X509_get_issuer_name", "scope": "LIBRARY"}, "760": {"type": "MIPS_26", "symbol": "X509_get_subject_name", "scope": "LIBRARY"}, "772": {"type": "MIPS_26", "symbol": "X509_NAME_cmp", "scope": "LIBRARY"}, "788": {"type": "MIPS_26", "symbol": "X509_get_issuer_name", "scope": "LIBRARY"}, "800": {"type": "MIPS_26", "symbol": "X509_get_subject_name", "scope": "LIBRARY"}, "812": {"type": "MIPS_26", "symbol": "X509_NAME_cmp", "scope": "LIBRARY"}, "836": {"type": "MIPS_26", "symbol": "X509_get_subject_name", "scope": "LIBRARY"}, "848": {"type": "MIPS_26", "symbol": "X509_NAME_cmp", "scope": "LIBRARY"}, "900": {"type": "MIPS_26", "symbol": "sk_push", "scope": "LIBRARY"}, "964": {"type": "MIPS_26", "symbol": "X509_get_pubkey_parameters", "scope": "LIBRARY"}, "1004": {"type": "MIPS_26", "symbol": "internal_verify", "scope": "LIBRARY", "original": ".text"}, "1020": {"type": "MIPS_26", "symbol": "X509_OBJECT_free_contents", "scope": "LIBRARY"}, "1044": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "1060": {"type": "MIPS_26", "symbol": "X509_OBJECT_free_contents", "scope": "LIBRARY"}, "1084": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "1116": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "1128": {"type": "MIPS_26", "symbol": "X509_get_pubkey_parameters", "scope": "LIBRARY"}, "1144": {"type": "MIPS_26", "symbol": "sk_free", "scope": "LIBRARY"}, "1160": {"type": "MIPS_26", "symbol": "X509_free", "scope": "LIBRARY"}}}}}, "internal_verify": {"ec396d9ccc43a7b9439248b66d67654157d84eab": {"ddc13dc5": {"type": "FUNCTION", "size": 608, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "null_cb", "original": ".text"}, "56": {"type": "MIPS_LO16", "symbol": "null_cb", "original": ".text"}, "92": {"type": "MIPS_26", "symbol": "X509_get_subject_name", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "X509_get_issuer_name", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "X509_NAME_cmp", "scope": "LIBRARY"}, "224": {"type": "MIPS_26", "symbol": "X509_get_pubkey", "scope": "LIBRARY"}, "276": {"type": "MIPS_26", "symbol": "X509_verify", "scope": "LIBRARY"}, "320": {"type": "MIPS_26", "symbol": "X509_get_notBefore", "scope": "LIBRARY"}, "328": {"type": "MIPS_26", "symbol": "X509_cmp_current_time", "scope": "LIBRARY"}, "420": {"type": "MIPS_26", "symbol": "X509_get_notAfter", "scope": "LIBRARY"}, "428": {"type": "MIPS_26", "symbol": "X509_cmp_current_time", "scope": "LIBRARY"}}}}}, "X509_NAME_get_text_by_NID": {"34ceec62f783aa6b4bf1ec4bd7c4e93254fb7223": {"95a3d7b0": {"type": "FUNCTION", "size": 96, "library": "libhttps", "scope": "GLOBAL", "is_interf)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ace": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "OBJ_nid2obj", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "X509_NAME_get_text_by_OBJ", "scope": "LIBRARY", "original": ".text"}}}}}, "X509_NAME_get_text_by_OBJ": {"161788de715cd35c9c49538ca75f48ad1b50af0b": {"3e3c560c": {"type": "FUNCTION", "size": 172, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "X509_NAME_get_index_by_OBJ", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_26", "symbol": "X509_NAME_get_entry", "scope": "LIBRARY", "original": ".text"}, "76": {"type": "MIPS_26", "symbol": "X509_NAME_ENTRY_get_data", "scope": "LIBRARY", "original": ".text"}, "124": {"type": "MIPS_26", "symbol": "memcpy"}}}}}, "X509_NAME_get_entry_count": {"da6c862a2bf54510f44598c0651fa70e6bc46f26": {"00000000": {"type": "FUNCTION", "size": 24, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "X509_NAME_get_entries": {"a1198da59a0ebf6e99cccc452dca943894ad070f": {"00000000": {"type": "FUNCTION", "size": 24, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "X509_NAME_get_index_by_NID": {"dd53925ece894efaf837cfcff99163e9a093a1a9": {"c59ddfd2": {"type": "FUNCTION", "size": 80, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "OBJ_nid2obj", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "X509_NAME_get_index_by_OBJ", "scope": "LIBRARY", "original": ".text"}}}}}, "X509_NAME_get_index_by_OBJ": {"ae2d6289dfbed4663346ab3c2f149ba3a8885314": {"ba2813d6": {"type": "FUNCTION", "size": 152, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"88": {"type": "MIPS_26", "symbol": "OBJ_cmp", "scope": "LIBRARY"}}}}}, "X509_NAME_get_entry": {"46377121bb8ce92faa6339a6cf0b0b6a33ef3ab0": {"00000000": {"type": "FUNCTION", "size": 60, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "X509_NAME_delete_entry": {"3c313ffc23d692856bd794018424a5c4309bf382": {"3d6f69fc": {"type": "FUNCTION", "size": 260, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "sk_delete", "scope": "LIBRARY"}}}}}, "X509_NAME_add_entry": {"7d66de8e38c8eab022217a63831b91989c738af0": {"1808a983": {"type": "FUNCTION", "size": 404, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"208": {"type": "MIPS_26", "symbol": "X509_NAME_ENTRY_dup", "scope": "LIBRARY"}, "236": {"type": "MIPS_26", "symbol": "sk_insert", "scope": "LIBRARY"}, "264": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "360": {"type": "MIPS_26", "symbol": "X509_NAME_ENTRY_free", "scope": "LIBRARY"}}}}}, "X509_NAME_ENTRY_create_by_NID": {"732097c14f5f28f302b97a20c81ddc9d1ac11499": {"b2512d25": {"type": "FUNCTION", "size": 136, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "OBJ_nid2obj", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "X509_NAME_ENTRY_create_by_OBJ", "scope": "LIBRARY", "original": ".text"}}}}}, "X509_NAME_ENTRY_create_by_OBJ": {"bcbfdf9c3dd8eb31b709cb1a0d5b8cc7a67514e2": {"23e7af0d": {"type": "FUNCTION", "size": 236, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "X509_NAME_ENTRY_new", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "X509_NAME_ENTRY_set_object", "scope": "LIBRARY", "original": ".text"}, "124": {"type": "MIPS_26", "symbol": "X509_NAME_ENTRY_set_data", "scope": "LIBRARY", "original": ".text"}, "188": {"type": "MIPS_26", "symbol": "X509_NAME_ENTRY_free", "scope": "LIBRARY"}}}}}, "X509_NAME_ENTRY_set_object": {"0f1fd0aedcdf50e1de84240aa8ce34535c98a46e": {"e26d5f50": {"type": "FUNCTION", "size": 112, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "ASN1_OBJECT_free", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "OBJ_dup", "scope": "LIBRARY"}}}}}, "X509_NAME_ENTRY_set_data": {"a73024c1556cb22e4d615adbb42402579d7049e5": {"f35ae868": {"type": "FUNCTION", "size": 196, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"76": {"type": "MIPS_26", "symbol": "strlen"}, "96": {"type": "MIPS_26", "symbol": "ASN1_STRING_set", "scope": "LIBRARY"}, "140": {"type": "MIPS_26", "symbol": "ASN1_PRINTABLE_type", "scope": "LIBRARY"}}}}}, "X509_NAME_ENTRY_get_object": {"a1198da59a0ebf6e99cccc452dca943894ad070f": {"00000000": {"type": "FUNCTION", "size": 24, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "X509_NAME_ENTRY_get_data": {"dcfd937f983e001bb21704a9f68255198c0f1b85": {"00000000": {"type": "FUNCTION", "size": 24, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "X509_NAME_dup_stack": {"b5d390d378c54dc22f325321006e8dfcfe51d0fe": {"59636ea4": {"type": "FUNCTION", "size": 172, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "sk_new", "scope": "LIBRARY"}, "52": {"type": "MIPS_HI16", "symbol": "X509_NAME_free"}, "72": {"type": "MIPS_26", "symbol": "X509_NAME_dup", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "sk_push", "scope": "LIBRARY"}, "108": {"type": "MIPS_26", "symbol": "sk_pop_free", "scope": "LIBRARY"}, "112": {"type": "MIPS_LO16", "symbol": "X509_NAME_free"}}}}}, "i2d_X509_ALGOR": {"34498be9d7628c9660bf47ce76b5a18f79d109d1": {"04ee10bb": {"type": "FUNCTION", "size": 208, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "i2d_ASN1_OBJECT", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "i2d_ASN1_TYPE", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "ASN1_object_size", "scope": "LIBRARY"}, "128": {"type": "MIPS_26", "symbol": "ASN1_put_object", "scope": "LIBRARY"}, "140": {"type": "MIPS_26", "symbol": "i2d_ASN1_OBJECT", "scope": "LIBRARY"}, "160": {"type": "MIPS_26", "symbol": "i2d_ASN1_TYPE", "scope": "LIBRARY"}}}}}, "d2i_X509_ALGOR": {"dac74fe14e0d3d1b5406e3dfec943918ad534336": {"b488f905": {"type": "FUNCTION", "size": 504, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "X509_ALGOR_new", "scope": "LIBRARY", "original": ".text"}, "140": {"type": "MIPS_26", "symbol": "asn1_GetSequence", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "d2i_ASN1_OBJECT", "scope": "LIBRA)PS2SDB", 8192}, + std::string_view{R"PS2SDB(RY"}, "256": {"type": "MIPS_26", "symbol": "ASN1_check_infinite_end", "scope": "LIBRARY"}, "288": {"type": "MIPS_26", "symbol": "d2i_ASN1_TYPE", "scope": "LIBRARY"}, "340": {"type": "MIPS_26", "symbol": "ASN1_TYPE_free", "scope": "LIBRARY"}, "352": {"type": "MIPS_26", "symbol": "asn1_Finish", "scope": "LIBRARY"}, "416": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "432": {"type": "MIPS_26", "symbol": "asn1_add_error", "scope": "LIBRARY"}, "468": {"type": "MIPS_26", "symbol": "X509_ALGOR_free", "scope": "LIBRARY", "original": ".text"}}}}}, "X509_ALGOR_new": {"8222336798f0cb80803f022b38f7a98c551dfa02": {"9ecd3958": {"type": "FUNCTION", "size": 104, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "32": {"type": "MIPS_26", "symbol": "OBJ_nid2obj", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}}}}}, "X509_ALGOR_free": {"f0a688e4125882b0690a0877a403c8610ecbc3b8": {"616fa0ea": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "ASN1_OBJECT_free", "scope": "LIBRARY"}, "28": {"type": "MIPS_26", "symbol": "ASN1_TYPE_free", "scope": "LIBRARY"}, "48": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "i2d_X509_CINF": {"b290fab53b571ba9ae67dc7cadcb20cc80b323f5": {"f763e2d2": {"type": "FUNCTION", "size": 680, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"76": {"type": "MIPS_26", "symbol": "i2d_ASN1_INTEGER", "scope": "LIBRARY"}, "96": {"type": "MIPS_26", "symbol": "ASN1_object_size", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "i2d_ASN1_INTEGER", "scope": "LIBRARY"}, "128": {"type": "MIPS_26", "symbol": "i2d_X509_ALGOR", "scope": "LIBRARY"}, "144": {"type": "MIPS_26", "symbol": "i2d_X509_NAME", "scope": "LIBRARY"}, "160": {"type": "MIPS_26", "symbol": "i2d_X509_VAL", "scope": "LIBRARY"}, "176": {"type": "MIPS_26", "symbol": "i2d_X509_NAME", "scope": "LIBRARY"}, "192": {"type": "MIPS_26", "symbol": "i2d_X509_PUBKEY", "scope": "LIBRARY"}, "212": {"type": "MIPS_26", "symbol": "i2d_ASN1_BIT_STRING", "scope": "LIBRARY"}, "236": {"type": "MIPS_26", "symbol": "i2d_ASN1_BIT_STRING", "scope": "LIBRARY"}, "268": {"type": "MIPS_HI16", "symbol": "", "original": "i2d_X509_EXTENSION"}, "276": {"type": "MIPS_LO16", "symbol": "", "original": "i2d_X509_EXTENSION"}, "284": {"type": "MIPS_26", "symbol": "i2d_ASN1_SET", "scope": "LIBRARY"}, "304": {"type": "MIPS_26", "symbol": "ASN1_object_size", "scope": "LIBRARY"}, "324": {"type": "MIPS_26", "symbol": "ASN1_object_size", "scope": "LIBRARY"}, "364": {"type": "MIPS_26", "symbol": "ASN1_put_object", "scope": "LIBRARY"}, "396": {"type": "MIPS_26", "symbol": "ASN1_put_object", "scope": "LIBRARY"}, "408": {"type": "MIPS_26", "symbol": "i2d_ASN1_INTEGER", "scope": "LIBRARY"}, "420": {"type": "MIPS_26", "symbol": "i2d_ASN1_INTEGER", "scope": "LIBRARY"}, "432": {"type": "MIPS_26", "symbol": "i2d_X509_ALGOR", "scope": "LIBRARY"}, "444": {"type": "MIPS_26", "symbol": "i2d_X509_NAME", "scope": "LIBRARY"}, "456": {"type": "MIPS_26", "symbol": "i2d_X509_VAL", "scope": "LIBRARY"}, "468": {"type": "MIPS_26", "symbol": "i2d_X509_NAME", "scope": "LIBRARY"}, "480": {"type": "MIPS_26", "symbol": "i2d_X509_PUBKEY", "scope": "LIBRARY"}, "500": {"type": "MIPS_26", "symbol": "i2d_ASN1_BIT_STRING", "scope": "LIBRARY"}, "536": {"type": "MIPS_26", "symbol": "i2d_ASN1_BIT_STRING", "scope": "LIBRARY"}, "596": {"type": "MIPS_26", "symbol": "ASN1_put_object", "scope": "LIBRARY"}, "604": {"type": "MIPS_HI16", "symbol": "", "original": "i2d_X509_EXTENSION"}, "612": {"type": "MIPS_LO16", "symbol": "", "original": "i2d_X509_EXTENSION"}, "624": {"type": "MIPS_26", "symbol": "i2d_ASN1_SET", "scope": "LIBRARY"}}}}}, "d2i_X509_CINF": {"340cdc188b521ec665afd9b930e9e8d7f521a104": {"4ddde5f8": {"type": "FUNCTION", "size": 1432, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"80": {"type": "MIPS_26", "symbol": "X509_CINF_new", "scope": "LIBRARY", "original": ".text"}, "152": {"type": "MIPS_26", "symbol": "asn1_GetSequence", "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "ASN1_get_object", "scope": "LIBRARY"}, "288": {"type": "MIPS_26", "symbol": "d2i_ASN1_INTEGER", "scope": "LIBRARY"}, "368": {"type": "MIPS_26", "symbol": "ASN1_STRING_free", "scope": "LIBRARY"}, "396": {"type": "MIPS_26", "symbol": "d2i_ASN1_INTEGER", "scope": "LIBRARY"}, "456": {"type": "MIPS_26", "symbol": "d2i_X509_ALGOR", "scope": "LIBRARY"}, "516": {"type": "MIPS_26", "symbol": "d2i_X509_NAME", "scope": "LIBRARY"}, "576": {"type": "MIPS_26", "symbol": "d2i_X509_VAL", "scope": "LIBRARY"}, "636": {"type": "MIPS_26", "symbol": "d2i_X509_NAME", "scope": "LIBRARY"}, "696": {"type": "MIPS_26", "symbol": "d2i_X509_PUBKEY", "scope": "LIBRARY"}, "760": {"type": "MIPS_26", "symbol": "ASN1_STRING_free", "scope": "LIBRARY"}, "784": {"type": "MIPS_26", "symbol": "ASN1_STRING_free", "scope": "LIBRARY"}, "852": {"type": "MIPS_26", "symbol": "d2i_ASN1_BIT_STRING", "scope": "LIBRARY"}, "964": {"type": "MIPS_26", "symbol": "d2i_ASN1_BIT_STRING", "scope": "LIBRARY"}, "1056": {"type": "MIPS_26", "symbol": "sk_pop", "scope": "LIBRARY"}, "1064": {"type": "MIPS_26", "symbol": "X509_EXTENSION_free", "scope": "LIBRARY"}, "1124": {"type": "MIPS_26", "symbol": "ASN1_get_object", "scope": "LIBRARY"}, "1196": {"type": "MIPS_HI16", "symbol": "d2i_X509_EXTENSION"}, "1200": {"type": "MIPS_HI16", "symbol": "X509_EXTENSION_free"}, "1204": {"type": "MIPS_LO16", "symbol": "d2i_X509_EXTENSION"}, "1208": {"type": "MIPS_LO16", "symbol": "X509_EXTENSION_free"}, "1224": {"type": "MIPS_26", "symbol": "d2i_ASN1_SET", "scope": "LIBRARY"}, "1272": {"type": "MIPS_26", "symbol": "asn1_Finish", "scope": "LIBRARY"}, "1336": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "1352": {"type": "MIPS_26", "symbol": "asn1_add_error", "scope": "LIBRARY"}, "1388": {"type": "MIPS_26", "symbol": "X509_CINF_free", "scope": "LIBRARY", "original": ".text"}}}}}, "X509_CINF_new": {"ccd114c13650e870c7e3167a967a22fc65315384": {"39a20999": {"type": "FUNCTION", "size": 200, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "ASN1_STRING_type_new", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "X509_ALGOR_new", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "X509_NAME_new", "scope": "LIBRARY"}, "120": {"type": "MIPS_26", "symbol": "X509_VAL_new", "scope": "LIBRARY"}, "136": {"type": "MIPS_26", "symbol": "X509_NAME_new", "scope": "LIBRARY"}, "152": {"type": "MIPS_26", "symbol": "X509_PUBKEY_new", "scope": "LIBRARY"}}}}}, "X509_CINF_free": {"db67bbbf63eecc3facdd22f0b9b0612102d89f57": {"cc8ed7b5": {"type": "FUNCTION", "size": 144, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "ASN1_STRING_free", "scope": "LIBRARY"}, "28": {"type": "MIPS_26", "symbol": "ASN1_STRING_free", "scope": "LIBRARY"}, "36": {"type": "MIPS_26", "symbol": "X509_ALGOR_free", "scope": "LIBRARY"}, "44": {"type": "MIPS_26", "symbol": "X509_NAME_free", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "X509_VAL_free", "scope": "LIBRARY"}, "60": {"type": "MIPS_26", "symbol": "X509_NAME_free", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "X509_PUBKEY_free", "scope": "LIBRARY"}, "76": {"type": "MIPS_26", "symbol": "ASN)PS2SDB", 8192}, + std::string_view{R"PS2SDB(1_STRING_free", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "ASN1_STRING_free", "scope": "LIBRARY"}, "96": {"type": "MIPS_HI16", "symbol": "X509_EXTENSION_free"}, "100": {"type": "MIPS_26", "symbol": "sk_pop_free", "scope": "LIBRARY"}, "104": {"type": "MIPS_LO16", "symbol": "X509_EXTENSION_free"}, "120": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "i2d_X509_REVOKED": {"e68f21e0f77a32a3bb286e3f8e0ff302d837b07f": {"5a2a52e3": {"type": "FUNCTION", "size": 284, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "i2d_ASN1_INTEGER", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "i2d_ASN1_UTCTIME", "scope": "LIBRARY"}, "92": {"type": "MIPS_HI16", "symbol": "", "original": "i2d_X509_EXTENSION"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": "i2d_X509_EXTENSION"}, "108": {"type": "MIPS_26", "symbol": "i2d_ASN1_SET", "scope": "LIBRARY"}, "128": {"type": "MIPS_26", "symbol": "ASN1_object_size", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "ASN1_put_object", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "i2d_ASN1_INTEGER", "scope": "LIBRARY"}, "192": {"type": "MIPS_26", "symbol": "i2d_ASN1_UTCTIME", "scope": "LIBRARY"}, "220": {"type": "MIPS_HI16", "symbol": "", "original": "i2d_X509_EXTENSION"}, "228": {"type": "MIPS_LO16", "symbol": "", "original": "i2d_X509_EXTENSION"}, "236": {"type": "MIPS_26", "symbol": "i2d_ASN1_SET", "scope": "LIBRARY"}}}}}, "d2i_X509_REVOKED": {"4e3e05edf835ce2de261b12073edbcfa6f195c0f": {"310c3353": {"type": "FUNCTION", "size": 536, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "X509_REVOKED_new", "scope": "LIBRARY", "original": ".text"}, "140": {"type": "MIPS_26", "symbol": "asn1_GetSequence", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "d2i_ASN1_INTEGER", "scope": "LIBRARY"}, "240": {"type": "MIPS_26", "symbol": "d2i_ASN1_UTCTIME", "scope": "LIBRARY"}, "304": {"type": "MIPS_HI16", "symbol": "d2i_X509_EXTENSION"}, "308": {"type": "MIPS_HI16", "symbol": "X509_EXTENSION_free"}, "316": {"type": "MIPS_LO16", "symbol": "d2i_X509_EXTENSION"}, "320": {"type": "MIPS_LO16", "symbol": "X509_EXTENSION_free"}, "336": {"type": "MIPS_26", "symbol": "d2i_ASN1_SET", "scope": "LIBRARY"}, "384": {"type": "MIPS_26", "symbol": "asn1_Finish", "scope": "LIBRARY"}, "448": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "464": {"type": "MIPS_26", "symbol": "asn1_add_error", "scope": "LIBRARY"}, "500": {"type": "MIPS_26", "symbol": "X509_REVOKED_free", "scope": "LIBRARY", "original": ".text"}}}}}, "i2d_X509_CRL_INFO": {"98ee58235e70c2db525c9be2b4365b745731d2db": {"7604d1f6": {"type": "FUNCTION", "size": 628, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"72": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "84": {"type": "MIPS_26", "symbol": "qsort"}, "104": {"type": "MIPS_26", "symbol": "ASN1_INTEGER_get", "scope": "LIBRARY"}, "128": {"type": "MIPS_26", "symbol": "i2d_ASN1_INTEGER", "scope": "LIBRARY"}, "144": {"type": "MIPS_26", "symbol": "i2d_X509_ALGOR", "scope": "LIBRARY"}, "160": {"type": "MIPS_26", "symbol": "i2d_X509_NAME", "scope": "LIBRARY"}, "176": {"type": "MIPS_26", "symbol": "i2d_ASN1_UTCTIME", "scope": "LIBRARY"}, "196": {"type": "MIPS_26", "symbol": "i2d_ASN1_UTCTIME", "scope": "LIBRARY"}, "228": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "244": {"type": "MIPS_26", "symbol": "i2d_ASN1_SET", "scope": "LIBRARY"}, "276": {"type": "MIPS_HI16", "symbol": "", "original": "i2d_X509_EXTENSION"}, "284": {"type": "MIPS_LO16", "symbol": "", "original": "i2d_X509_EXTENSION"}, "292": {"type": "MIPS_26", "symbol": "i2d_ASN1_SET", "scope": "LIBRARY"}, "312": {"type": "MIPS_26", "symbol": "ASN1_object_size", "scope": "LIBRARY"}, "332": {"type": "MIPS_26", "symbol": "ASN1_object_size", "scope": "LIBRARY"}, "372": {"type": "MIPS_26", "symbol": "ASN1_put_object", "scope": "LIBRARY"}, "400": {"type": "MIPS_26", "symbol": "i2d_ASN1_INTEGER", "scope": "LIBRARY"}, "412": {"type": "MIPS_26", "symbol": "i2d_X509_ALGOR", "scope": "LIBRARY"}, "424": {"type": "MIPS_26", "symbol": "i2d_X509_NAME", "scope": "LIBRARY"}, "436": {"type": "MIPS_26", "symbol": "i2d_ASN1_UTCTIME", "scope": "LIBRARY"}, "456": {"type": "MIPS_26", "symbol": "i2d_ASN1_UTCTIME", "scope": "LIBRARY"}, "484": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "492": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "500": {"type": "MIPS_26", "symbol": "i2d_ASN1_SET", "scope": "LIBRARY"}, "544": {"type": "MIPS_26", "symbol": "ASN1_put_object", "scope": "LIBRARY"}, "552": {"type": "MIPS_HI16", "symbol": "", "original": "i2d_X509_EXTENSION"}, "560": {"type": "MIPS_LO16", "symbol": "", "original": "i2d_X509_EXTENSION"}, "572": {"type": "MIPS_26", "symbol": "i2d_ASN1_SET", "scope": "LIBRARY"}}}}}, "d2i_X509_CRL_INFO": {"443bb6662a101ebaee390249045f528be747050f": {"5b5c994c": {"type": "FUNCTION", "size": 1212, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"76": {"type": "MIPS_26", "symbol": "X509_CRL_INFO_new", "scope": "LIBRARY", "original": ".text"}, "148": {"type": "MIPS_26", "symbol": "asn1_GetSequence", "scope": "LIBRARY"}, "212": {"type": "MIPS_26", "symbol": "d2i_ASN1_INTEGER", "scope": "LIBRARY"}, "296": {"type": "MIPS_26", "symbol": "ASN1_STRING_free", "scope": "LIBRARY"}, "324": {"type": "MIPS_26", "symbol": "d2i_X509_ALGOR", "scope": "LIBRARY"}, "384": {"type": "MIPS_26", "symbol": "d2i_X509_NAME", "scope": "LIBRARY"}, "444": {"type": "MIPS_26", "symbol": "d2i_ASN1_UTCTIME", "scope": "LIBRARY"}, "524": {"type": "MIPS_26", "symbol": "d2i_ASN1_UTCTIME", "scope": "LIBRARY"}, "600": {"type": "MIPS_26", "symbol": "sk_pop", "scope": "LIBRARY"}, "608": {"type": "MIPS_26", "symbol": "X509_REVOKED_free", "scope": "LIBRARY", "original": ".text"}, "656": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "660": {"type": "MIPS_HI16", "symbol": "", "original": ".text"}, "668": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "672": {"type": "MIPS_LO16", "symbol": "", "original": ".text"}, "688": {"type": "MIPS_26", "symbol": "d2i_ASN1_SET", "scope": "LIBRARY"}, "840": {"type": "MIPS_26", "symbol": "sk_pop", "scope": "LIBRARY"}, "848": {"type": "MIPS_26", "symbol": "X509_EXTENSION_free", "scope": "LIBRARY"}, "908": {"type": "MIPS_26", "symbol": "ASN1_get_object", "scope": "LIBRARY"}, "980": {"type": "MIPS_HI16", "symbol": "d2i_X509_EXTENSION"}, "984": {"type": "MIPS_HI16", "symbol": "X509_EXTENSION_free"}, "988": {"type": "MIPS_LO16", "symbol": "d2i_X509_EXTENSION"}, "992": {"type": "MIPS_LO16", "symbol": "X509_EXTENSION_free"}, "1008": {"type": "MIPS_26", "symbol": "d2i_ASN1_SET", "scope": "LIBRARY"}, "1056": {"type": "MIPS_26", "symbol": "asn1_Finish", "scope": "LIBRARY"}, "1120": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "1136": {"type": "MIPS_26", "symbol": "asn1_add_error", "scope": "LIBRARY"}, "1172": {"type": "MIPS_26", "symbol": "X509_CRL_INFO_free", "scope": "LIBRARY", "original": ".text"}}}}}, "i2d_X509_CRL": {"50e09f025d7e0454714fdac31e7c26e077a3bac8": {"04b11e0c": {"type": "FUNCTION", "size": 224, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "i2d_X509_CRL_INFO", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_26", "symbol": "i2d_X509_ALGOR", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "i2d)PS2SDB", 8192}, + std::string_view{R"PS2SDB(_ASN1_BIT_STRING", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "ASN1_object_size", "scope": "LIBRARY"}, "140": {"type": "MIPS_26", "symbol": "ASN1_put_object", "scope": "LIBRARY"}, "152": {"type": "MIPS_26", "symbol": "i2d_X509_CRL_INFO", "scope": "LIBRARY", "original": ".text"}, "164": {"type": "MIPS_26", "symbol": "i2d_X509_ALGOR", "scope": "LIBRARY"}, "176": {"type": "MIPS_26", "symbol": "i2d_ASN1_BIT_STRING", "scope": "LIBRARY"}}}}}, "d2i_X509_CRL": {"1481dc7768737437ab12f739bcea9472ab56d426": {"b7c40263": {"type": "FUNCTION", "size": 500, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "X509_CRL_new", "scope": "LIBRARY", "original": ".text"}, "140": {"type": "MIPS_26", "symbol": "asn1_GetSequence", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "d2i_X509_CRL_INFO", "scope": "LIBRARY", "original": ".text"}, "240": {"type": "MIPS_26", "symbol": "d2i_X509_ALGOR", "scope": "LIBRARY"}, "300": {"type": "MIPS_26", "symbol": "d2i_ASN1_BIT_STRING", "scope": "LIBRARY"}, "348": {"type": "MIPS_26", "symbol": "asn1_Finish", "scope": "LIBRARY"}, "412": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "428": {"type": "MIPS_26", "symbol": "asn1_add_error", "scope": "LIBRARY"}, "464": {"type": "MIPS_26", "symbol": "X509_CRL_free", "scope": "LIBRARY", "original": ".text"}}}}}, "X509_REVOKED_new": {"d90cf77e668c24a67bdbfc8d2987b1eeab0ba076": {"352800e9": {"type": "FUNCTION", "size": 124, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "ASN1_STRING_type_new", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "ASN1_STRING_type_new", "scope": "LIBRARY"}}}}}, "X509_CRL_INFO_new": {"b65d8e25d2e2fb237055b61e8eb981533367af5d": {"56609024": {"type": "FUNCTION", "size": 188, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "X509_ALGOR_new", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "X509_NAME_new", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "ASN1_STRING_type_new", "scope": "LIBRARY"}, "120": {"type": "MIPS_26", "symbol": "sk_new", "scope": "LIBRARY"}, "136": {"type": "MIPS_26", "symbol": "sk_new", "scope": "LIBRARY"}, "156": {"type": "MIPS_HI16", "symbol": "X509_REVOKED_cmp", "original": ".text"}, "160": {"type": "MIPS_LO16", "symbol": "X509_REVOKED_cmp", "original": ".text"}}}}}, "X509_CRL_new": {"1cd89f996b76346c385e7709f05fbbb056155ca2": {"475f2384": {"type": "FUNCTION", "size": 140, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "X509_CRL_INFO_new", "scope": "LIBRARY", "original": ".text"}, "88": {"type": "MIPS_26", "symbol": "X509_ALGOR_new", "scope": "LIBRARY"}, "104": {"type": "MIPS_26", "symbol": "ASN1_STRING_type_new", "scope": "LIBRARY"}}}}}, "X509_REVOKED_free": {"de605de32447355b9b42e446adf52c0d13ffebdb": {"0cc66006": {"type": "FUNCTION", "size": 88, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "ASN1_STRING_free", "scope": "LIBRARY"}, "28": {"type": "MIPS_26", "symbol": "ASN1_STRING_free", "scope": "LIBRARY"}, "40": {"type": "MIPS_HI16", "symbol": "X509_EXTENSION_free"}, "44": {"type": "MIPS_26", "symbol": "sk_pop_free", "scope": "LIBRARY"}, "48": {"type": "MIPS_LO16", "symbol": "X509_EXTENSION_free"}, "64": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "X509_CRL_INFO_free": {"d34c2d9d0b31e538ab726b45c4d92128f39ee651": {"ceedca4f": {"type": "FUNCTION", "size": 140, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "ASN1_STRING_free", "scope": "LIBRARY"}, "28": {"type": "MIPS_26", "symbol": "X509_ALGOR_free", "scope": "LIBRARY"}, "36": {"type": "MIPS_26", "symbol": "X509_NAME_free", "scope": "LIBRARY"}, "44": {"type": "MIPS_26", "symbol": "ASN1_STRING_free", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "ASN1_STRING_free", "scope": "LIBRARY"}, "76": {"type": "MIPS_HI16", "symbol": "X509_REVOKED_free", "original": ".text"}, "80": {"type": "MIPS_26", "symbol": "sk_pop_free", "scope": "LIBRARY"}, "84": {"type": "MIPS_LO16", "symbol": "X509_REVOKED_free", "original": ".text"}, "92": {"type": "MIPS_HI16", "symbol": "X509_EXTENSION_free"}, "96": {"type": "MIPS_26", "symbol": "sk_pop_free", "scope": "LIBRARY"}, "100": {"type": "MIPS_LO16", "symbol": "X509_EXTENSION_free"}, "116": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "X509_CRL_free": {"2edeb529baccbedb73294b094cc7b036c1e8da5f": {"a3258caf": {"type": "FUNCTION", "size": 116, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_26", "symbol": "R_locked_add", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "X509_CRL_INFO_free", "scope": "LIBRARY", "original": ".text"}, "64": {"type": "MIPS_26", "symbol": "X509_ALGOR_free", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "ASN1_STRING_free", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "X509_REVOKED_cmp": {"88e5aa5fa729252af041764fdd7a5e7b164be1a1": {"5dff7c6c": {"type": "FUNCTION", "size": 40, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "ASN1_STRING_cmp", "scope": "LIBRARY"}}}}}, "X509_REVOKED_seq_cmp": {"ba6f71fa186c54e336f0b6e3773b7a7f134f9abb": {"00000000": {"type": "FUNCTION", "size": 24, "library": "libhttps", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "i2d_X509_EXTENSION": {"89f8d8c9ce1bebe7ae39cc3e5f99124aed56a264": {"3258da65": {"type": "FUNCTION", "size": 248, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"84": {"type": "MIPS_26", "symbol": "ASN1_object_size", "scope": "LIBRARY"}, "120": {"type": "MIPS_26", "symbol": "ASN1_put_object", "scope": "LIBRARY"}, "132": {"type": "MIPS_26", "symbol": "i2d_ASN1_OBJECT", "scope": "LIBRARY"}, "168": {"type": "MIPS_26", "symbol": "i2d_ASN1_BOOLEAN", "scope": "LIBRARY"}, "188": {"type": "MIPS_26", "symbol": "i2d_ASN1_OCTET_STRING", "scope": "LIBRARY"}}}}}, "d2i_X509_EXTENSION": {"242499804f6ea43ba27f2835bc841b9564675bb1": {"f8a9d29d": {"type": "FUNCTION", "size": 588, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"72": {"type": "MIPS_26", "symbol": "X509_EXTENSION_new", "scope": "LIBRARY", "original": ".text"}, "144": {"type": "MIPS_26", "symbol": "asn1_GetSequence", "scope": "LIBRARY"}, "184": {"type": "MIPS_26", "symbol": "d2i_ASN1_OBJECT", "scope": "LIBRARY"}, "308": {"type": "MIPS_26", "symbol": "d2i_ASN1_BOOLEAN",)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "scope": "LIBRARY"}, "384": {"type": "MIPS_26", "symbol": "d2i_ASN1_OCTET_STRING", "scope": "LIBRARY"}, "432": {"type": "MIPS_26", "symbol": "asn1_Finish", "scope": "LIBRARY"}, "496": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "512": {"type": "MIPS_26", "symbol": "asn1_add_error", "scope": "LIBRARY"}, "548": {"type": "MIPS_26", "symbol": "X509_EXTENSION_free", "scope": "LIBRARY", "original": ".text"}}}}}, "X509_EXTENSION_new": {"ef3a762a9b8567cc4c0581d1e3685f1c7518376a": {"8f4a176d": {"type": "FUNCTION", "size": 144, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "OBJ_nid2obj", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "ASN1_STRING_type_new", "scope": "LIBRARY"}}}}}, "X509_EXTENSION_free": {"e081145be77250b581aa7e2ff11b54df78541981": {"383510fa": {"type": "FUNCTION", "size": 104, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "ASN1_OBJECT_free", "scope": "LIBRARY"}, "60": {"type": "MIPS_26", "symbol": "ASN1_STRING_free", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "i2d_X509_PUBKEY": {"4ffb5ef3b37277794cab504ab8216f1fecee0e65": {"f69561c8": {"type": "FUNCTION", "size": 196, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "i2d_X509_ALGOR", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "i2d_ASN1_BIT_STRING", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "ASN1_object_size", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "ASN1_put_object", "scope": "LIBRARY"}, "136": {"type": "MIPS_26", "symbol": "i2d_X509_ALGOR", "scope": "LIBRARY"}, "148": {"type": "MIPS_26", "symbol": "i2d_ASN1_BIT_STRING", "scope": "LIBRARY"}}}}}, "d2i_X509_PUBKEY": {"168886c0fa6c3dc2415ba0edbe686e0ebf8ccde1": {"a4b5a607": {"type": "FUNCTION", "size": 464, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "X509_PUBKEY_new", "scope": "LIBRARY", "original": ".text"}, "140": {"type": "MIPS_26", "symbol": "asn1_GetSequence", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "d2i_X509_ALGOR", "scope": "LIBRARY"}, "240": {"type": "MIPS_26", "symbol": "d2i_ASN1_BIT_STRING", "scope": "LIBRARY"}, "300": {"type": "MIPS_26", "symbol": "EVP_PKEY_free", "scope": "LIBRARY"}, "312": {"type": "MIPS_26", "symbol": "asn1_Finish", "scope": "LIBRARY"}, "376": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "392": {"type": "MIPS_26", "symbol": "asn1_add_error", "scope": "LIBRARY"}, "428": {"type": "MIPS_26", "symbol": "X509_PUBKEY_free", "scope": "LIBRARY", "original": ".text"}}}}}, "X509_PUBKEY_new": {"ea628f3113e35b1b00fed75c623559258fa20979": {"db7bbd5b": {"type": "FUNCTION", "size": 124, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "X509_ALGOR_new", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "ASN1_STRING_type_new", "scope": "LIBRARY"}}}}}, "X509_PUBKEY_free": {"9093ea55183d616e279baaa51dafb8f548bcb91f": {"851d3c03": {"type": "FUNCTION", "size": 92, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "X509_ALGOR_free", "scope": "LIBRARY"}, "28": {"type": "MIPS_26", "symbol": "ASN1_STRING_free", "scope": "LIBRARY"}, "48": {"type": "MIPS_26", "symbol": "EVP_PKEY_free", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "X509_PUBKEY_set": {"bc756d07eab11272437f1345961ceac0393f6ba2": {"d31f62dd": {"type": "FUNCTION", "size": 564, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "X509_PUBKEY_new", "scope": "LIBRARY", "original": ".text"}, "84": {"type": "MIPS_26", "symbol": "EVP_PKEY_key_type", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "OBJ_nid2obj", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "ASN1_OBJECT_free", "scope": "LIBRARY"}, "172": {"type": "MIPS_26", "symbol": "ASN1_TYPE_free", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "ASN1_TYPE_new", "scope": "LIBRARY"}, "224": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "248": {"type": "MIPS_26", "symbol": "ASN1_TYPE_free", "scope": "LIBRARY"}, "260": {"type": "MIPS_26", "symbol": "i2d_DSAparams", "scope": "LIBRARY"}, "272": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "292": {"type": "MIPS_26", "symbol": "i2d_DSAparams", "scope": "LIBRARY"}, "300": {"type": "MIPS_26", "symbol": "ASN1_TYPE_new", "scope": "LIBRARY"}, "316": {"type": "MIPS_26", "symbol": "ASN1_STRING_new", "scope": "LIBRARY"}, "344": {"type": "MIPS_26", "symbol": "ASN1_STRING_set", "scope": "LIBRARY"}, "352": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "364": {"type": "MIPS_26", "symbol": "i2d_PublicKey", "scope": "LIBRARY"}, "376": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "400": {"type": "MIPS_26", "symbol": "i2d_PublicKey", "scope": "LIBRARY"}, "416": {"type": "MIPS_26", "symbol": "ASN1_STRING_set", "scope": "LIBRARY"}, "432": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "440": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "448": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "460": {"type": "MIPS_26", "symbol": "R_locked_add", "scope": "LIBRARY"}, "484": {"type": "MIPS_26", "symbol": "X509_PUBKEY_free", "scope": "LIBRARY", "original": ".text"}, "512": {"type": "MIPS_26", "symbol": "X509_PUBKEY_free", "scope": "LIBRARY", "original": ".text"}}}}}, "X509_PUBKEY_get": {"5d0dcc8d277b6fb6190b7d20b1ebe0edd905f053": {"c86ccc71": {"type": "FUNCTION", "size": 288, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "OBJ_obj2nid", "scope": "LIBRARY"}, "88": {"type": "MIPS_26", "symbol": "d2i_PublicKey", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "216": {"type": "MIPS_26", "symbol": "d2i_DSAparams", "scope": "LIBRARY"}, "256": {"type": "MIPS_26", "symbol": "EVP_PKEY_free", "scope": "LIBRARY"}}}}}, "i2d_X509_SIG": {"4ffb5ef3b37277794cab504ab8216f1fecee0e65": {"90c56808": {"type": "FUNCTION", "size": 196, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "i2d_X509_ALGOR", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "i2d_ASN1_OCTET_STRING", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "ASN1_object_size", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "ASN1_put_object", "scope": "LIBRARY"}, "136": {"type": "MIPS_26", "symbol": "i2d_X509_ALGOR", "scope": "LIBRARY"}, "148": {"type": "MIPS_26", "symbol": "i2d_ASN1_OCTET_STRING", "scope": "LIBRARY"}}}}}, "d2i_X509_SIG": {"b0d09a50f68cbfc3bb65863c03381987d44ca6dc": {"4c6d1898": {"type": "FUNCTION", "size": 440, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_version)PS2SDB", 8192}, + std::string_view{R"PS2SDB(s": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "X509_SIG_new", "scope": "LIBRARY", "original": ".text"}, "140": {"type": "MIPS_26", "symbol": "asn1_GetSequence", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "d2i_X509_ALGOR", "scope": "LIBRARY"}, "240": {"type": "MIPS_26", "symbol": "d2i_ASN1_OCTET_STRING", "scope": "LIBRARY"}, "288": {"type": "MIPS_26", "symbol": "asn1_Finish", "scope": "LIBRARY"}, "352": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "368": {"type": "MIPS_26", "symbol": "asn1_add_error", "scope": "LIBRARY"}, "404": {"type": "MIPS_26", "symbol": "X509_SIG_free", "scope": "LIBRARY", "original": ".text"}}}}}, "X509_SIG_new": {"d7a3fc7f0d3d26a1ab425f05dffcc6be431e9be3": {"8e5290e7": {"type": "FUNCTION", "size": 128, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "X509_ALGOR_new", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "ASN1_STRING_type_new", "scope": "LIBRARY"}}}}}, "X509_SIG_free": {"f0a688e4125882b0690a0877a403c8610ecbc3b8": {"29e7c96e": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "X509_ALGOR_free", "scope": "LIBRARY"}, "28": {"type": "MIPS_26", "symbol": "ASN1_STRING_free", "scope": "LIBRARY"}, "48": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "i2d_X509_VAL": {"4ffb5ef3b37277794cab504ab8216f1fecee0e65": {"8db98b05": {"type": "FUNCTION", "size": 196, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "i2d_ASN1_UTCTIME", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "i2d_ASN1_UTCTIME", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "ASN1_object_size", "scope": "LIBRARY"}, "124": {"type": "MIPS_26", "symbol": "ASN1_put_object", "scope": "LIBRARY"}, "136": {"type": "MIPS_26", "symbol": "i2d_ASN1_UTCTIME", "scope": "LIBRARY"}, "148": {"type": "MIPS_26", "symbol": "i2d_ASN1_UTCTIME", "scope": "LIBRARY"}}}}}, "d2i_X509_VAL": {"8e64f3e540bd91aee0d3a0ddf4bfc8fdf4176f52": {"24572675": {"type": "FUNCTION", "size": 440, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "X509_VAL_new", "scope": "LIBRARY", "original": ".text"}, "140": {"type": "MIPS_26", "symbol": "asn1_GetSequence", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "d2i_ASN1_UTCTIME", "scope": "LIBRARY"}, "240": {"type": "MIPS_26", "symbol": "d2i_ASN1_UTCTIME", "scope": "LIBRARY"}, "288": {"type": "MIPS_26", "symbol": "asn1_Finish", "scope": "LIBRARY"}, "352": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "368": {"type": "MIPS_26", "symbol": "asn1_add_error", "scope": "LIBRARY"}, "404": {"type": "MIPS_26", "symbol": "X509_VAL_free", "scope": "LIBRARY", "original": ".text"}}}}}, "X509_VAL_new": {"f6bfe4c137f79f7d9e32378fab2ca28805b1ee79": {"60012d55": {"type": "FUNCTION", "size": 128, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "52": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "68": {"type": "MIPS_26", "symbol": "ASN1_STRING_type_new", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "ASN1_STRING_type_new", "scope": "LIBRARY"}}}}}, "X509_VAL_free": {"f0a688e4125882b0690a0877a403c8610ecbc3b8": {"b839665f": {"type": "FUNCTION", "size": 72, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "ASN1_STRING_free", "scope": "LIBRARY"}, "28": {"type": "MIPS_26", "symbol": "ASN1_STRING_free", "scope": "LIBRARY"}, "48": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}, "X509_asn1_meth": {"2a51c093207f3b6546ea5ac91d4ae4a6999eaed5": {"d3e72eac": {"type": "FUNCTION", "size": 12, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "i2d_X509": {"38ae5b795b883818e0f54d981057c05705185af5": {"7b7bb5c9": {"type": "FUNCTION", "size": 224, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "i2d_X509_CINF", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "i2d_X509_ALGOR", "scope": "LIBRARY"}, "80": {"type": "MIPS_26", "symbol": "i2d_ASN1_BIT_STRING", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "ASN1_object_size", "scope": "LIBRARY"}, "140": {"type": "MIPS_26", "symbol": "ASN1_put_object", "scope": "LIBRARY"}, "152": {"type": "MIPS_26", "symbol": "i2d_X509_CINF", "scope": "LIBRARY"}, "164": {"type": "MIPS_26", "symbol": "i2d_X509_ALGOR", "scope": "LIBRARY"}, "176": {"type": "MIPS_26", "symbol": "i2d_ASN1_BIT_STRING", "scope": "LIBRARY"}}}}}, "d2i_X509": {"f85953fef53d0aef5573f9f9ac758484ffb30a2d": {"7a83a176": {"type": "FUNCTION", "size": 544, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_26", "symbol": "X509_new", "scope": "LIBRARY", "original": ".text"}, "140": {"type": "MIPS_26", "symbol": "asn1_GetSequence", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "d2i_X509_CINF", "scope": "LIBRARY"}, "240": {"type": "MIPS_26", "symbol": "d2i_X509_ALGOR", "scope": "LIBRARY"}, "300": {"type": "MIPS_26", "symbol": "d2i_ASN1_BIT_STRING", "scope": "LIBRARY"}, "360": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "380": {"type": "MIPS_26", "symbol": "X509_NAME_oneline", "scope": "LIBRARY"}, "392": {"type": "MIPS_26", "symbol": "asn1_Finish", "scope": "LIBRARY"}, "456": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "472": {"type": "MIPS_26", "symbol": "asn1_add_error", "scope": "LIBRARY"}, "508": {"type": "MIPS_26", "symbol": "X509_free", "scope": "LIBRARY", "original": ".text"}}}}}, "X509_new": {"b16829d108e26a86c811b325664b575b1d1dbf01": {"32bcf180": {"type": "FUNCTION", "size": 152, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "R_malloc", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "ERR_put_error", "scope": "LIBRARY"}, "84": {"type": "MIPS_26", "symbol": "X509_CINF_new", "scope": "LIBRARY"}, "100": {"type": "MIPS_26", "symbol": "X509_ALGOR_new", "scope": "LIBRARY"}, "116": {"type": "MIPS_26", "symbol": "ASN1_STRING_type_new", "scope": "LIBRARY"}}}}}, "X509_reference_inc": {"4ffb0f9829631611f3fd884d50426ea186033579": {"93a5c2b1": {"type": "FUNCTION", "size": 28, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "20": {"type": "MIPS_26", "symbol": "R_locked_add", "scope": "LIBRARY"}}}}}, "X509_free": {"de086930710d0e156e6538627deb39b689aabca4": {"7a6257c6": {"type": "FUNCTION", "size": 136, "library": "libhttps", "scope": "GLOBAL", "is_interface": false, "versions": ["2.)PS2SDB", 8192}, + std::string_view{R"PS2SDB(8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "28": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "40": {"type": "MIPS_26", "symbol": "R_locked_add", "scope": "LIBRARY"}, "56": {"type": "MIPS_26", "symbol": "X509_CINF_free", "scope": "LIBRARY"}, "64": {"type": "MIPS_26", "symbol": "X509_ALGOR_free", "scope": "LIBRARY"}, "72": {"type": "MIPS_26", "symbol": "ASN1_STRING_free", "scope": "LIBRARY"}, "92": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}, "112": {"type": "MIPS_26", "symbol": "R_free", "scope": "LIBRARY"}}}}}}, "netglue_eenet": {"__sceNetGlueErrnoLoc": {"6bd63bada8cfcdaf526a7c3487c5452035cfea46": {"6b66c22d": {"type": "FUNCTION", "size": 160, "library": "netglue_eenet", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "__sceEENetThreadErrno"}, "92": {"type": "MIPS_26", "symbol": "__sceEENetThreadErrno"}, "108": {"type": "MIPS_26", "symbol": "__sceEENetThreadErrno"}, "124": {"type": "MIPS_26", "symbol": "__sceEENetThreadErrno"}, "140": {"type": "MIPS_26", "symbol": "__sceEENetThreadErrno"}}}}}, "__sceNetGlueHErrnoLoc": {"7ba17f652620d1a8770717ffc05543c774ba24f8": {"a1df2107": {"type": "FUNCTION", "size": 28, "library": "netglue_eenet", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "__sceEENetThreadHErrno"}}}}}, "sceNetGlueAbort": {"cbb5e17bee345242bfa01c19a34b85425a010a1c": {"2d6c1b33": {"type": "FUNCTION", "size": 68, "library": "netglue_eenet", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "sceEENetSocketAbort"}, "36": {"type": "MIPS_26", "symbol": "sceEENetCloseWithRST"}}}}}, "sceNetGlueAbortResolver": {"7ba17f652620d1a8770717ffc05543c774ba24f8": {"ffd67dc9": {"type": "FUNCTION", "size": 28, "library": "netglue_eenet", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceEENetThreadAbort"}}}}}, "sceNetGlueThreadInit": {"0a5385cf4a659d302a43046ea0269e2b17a3ef1d": {"00000000": {"type": "FUNCTION", "size": 8, "library": "netglue_eenet", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceNetGlueThreadTerminate": {"ddd8e32f9e36739a53671a300121ec6445eb7bd6": {"982b329c": {"type": "FUNCTION", "size": 32, "library": "netglue_eenet", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceEENetFreeThreadinfo"}}}}}, "sceNetGlueGethostbyaddr": {"7ba17f652620d1a8770717ffc05543c774ba24f8": {"b52be863": {"type": "FUNCTION", "size": 28, "library": "netglue_eenet", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceEENetGethostbyaddr"}}}}}, "sceNetGlueGethostbyname": {"7ba17f652620d1a8770717ffc05543c774ba24f8": {"b9920450": {"type": "FUNCTION", "size": 28, "library": "netglue_eenet", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceEENetGethostbyname"}}}}}, "sceNetGlueInetAddr": {"7ba17f652620d1a8770717ffc05543c774ba24f8": {"4cf61b43": {"type": "FUNCTION", "size": 28, "library": "netglue_eenet", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceEENetInetAddr"}}}}}, "sceNetGlueInetAton": {"7ba17f652620d1a8770717ffc05543c774ba24f8": {"a7253db7": {"type": "FUNCTION", "size": 28, "library": "netglue_eenet", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceEENetInetAton"}}}}}, "sceNetGlueInetLnaof": {"02ccc12b883cbec0d6dbb2e1a1738dcaa36da2b1": {"f6b2c1bf": {"type": "FUNCTION", "size": 44, "library": "netglue_eenet", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "sceEENetInetLnaof"}}}}}, "sceNetGlueInetMakeaddr": {"c4928a64b3ba31b99e8956f9ca627d6f42363c72": {"d0c5a158": {"type": "FUNCTION", "size": 76, "library": "netglue_eenet", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceEENetInetMakeaddr"}}}}}, "sceNetGlueInetNetof": {"02ccc12b883cbec0d6dbb2e1a1738dcaa36da2b1": {"419e7445": {"type": "FUNCTION", "size": 44, "library": "netglue_eenet", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "sceEENetInetNetof"}}}}}, "sceNetGlueInetNetwork": {"7ba17f652620d1a8770717ffc05543c774ba24f8": {"9ebd9d31": {"type": "FUNCTION", "size": 28, "library": "netglue_eenet", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceEENetInetNetwork"}}}}}, "sceNetGlueInetNtoa": {"02ccc12b883cbec0d6dbb2e1a1738dcaa36da2b1": {"c60e7a31": {"type": "FUNCTION", "size": 44, "library": "netglue_eenet", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_26", "symbol": "sceEENetInetNtoa"}}}}}, "sceNetGlueHtonl": {"7ba17f652620d1a8770717ffc05543c774ba24f8": {"543871d5": {"type": "FUNCTION", "size": 28, "library": "netglue_eenet", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceEENetHtonl"}}}}}, "sceNetGlueHtons": {"d585bbb471c771a740b98e8ec5bd4ae524787f67": {"d9307c20": {"type": "FUNCTION", "size": 28, "library": "netglue_eenet", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceEENetHtons"}}}}}, "sceNetGlueNtohl": {"7ba17f652620d1a8770717ffc05543c774ba24f8": {"8d2223f3": {"type": "FUNCTION", "size": 28, "library": "netglue_eenet", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceEENetNtohl"}}}}}, "sceNetGlueNtohs": {"d585bbb471c771a740b98e8ec5bd4ae524787f67": {"002a2e06": {"type": "FUNCTION", "size": 28, "library": "netglue_eenet", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceEENetNtohs"}}}}}, "sceNetGlueAccept": {"7ba17f652620d1a8770717ffc05543c774ba24f8": {"26bc53dc": {"type": "FUNCTION", "size": 28, "library": "netglue_eenet", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceEENetAccept"}}}}}, "sceNetGlueBind": {"7ba17f652620d1a8770717ffc05543c774ba24f8": {"6bc184a4": {"type": "FUNCTION", "size": 28, "library": "netglue_eenet", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceEENetBind"}}}}}, "sceNetGlueConnect": {"7ba17f652620d1a8770717ffc05543c774ba24f8": {"da8b0feb": {"type": "FUNCTION", "size": 28, "library": "netglue_eenet", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceEENetConnect"}}}}}, "sceNetGlueGetpeer)PS2SDB", 8192}, + std::string_view{R"PS2SDB(name": {"7ba17f652620d1a8770717ffc05543c774ba24f8": {"444d9b48": {"type": "FUNCTION", "size": 28, "library": "netglue_eenet", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceEENetGetpeername"}}}}}, "sceNetGlueGetsockname": {"7ba17f652620d1a8770717ffc05543c774ba24f8": {"d51bd50b": {"type": "FUNCTION", "size": 28, "library": "netglue_eenet", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceEENetGetsockname"}}}}}, "sceNetGlueGetsockopt": {"7ba17f652620d1a8770717ffc05543c774ba24f8": {"428e7e86": {"type": "FUNCTION", "size": 28, "library": "netglue_eenet", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceEENetGetsockopt"}}}}}, "sceNetGlueListen": {"7ba17f652620d1a8770717ffc05543c774ba24f8": {"57b8d915": {"type": "FUNCTION", "size": 28, "library": "netglue_eenet", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceEENetListen"}}}}}, "sceNetGlueRecv": {"7ba17f652620d1a8770717ffc05543c774ba24f8": {"74d5255a": {"type": "FUNCTION", "size": 28, "library": "netglue_eenet", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceEENetRecv"}}}}}, "sceNetGlueRecvfrom": {"7ba17f652620d1a8770717ffc05543c774ba24f8": {"880b4ec2": {"type": "FUNCTION", "size": 28, "library": "netglue_eenet", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceEENetRecvfrom"}}}}}, "sceNetGlueSend": {"7ba17f652620d1a8770717ffc05543c774ba24f8": {"8a7e4d3a": {"type": "FUNCTION", "size": 28, "library": "netglue_eenet", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceEENetSend"}}}}}, "sceNetGlueSendto": {"7ba17f652620d1a8770717ffc05543c774ba24f8": {"fa43bbee": {"type": "FUNCTION", "size": 28, "library": "netglue_eenet", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceEENetSendto"}}}}}, "sceNetGlueSetsockopt": {"7ba17f652620d1a8770717ffc05543c774ba24f8": {"6ccb5f14": {"type": "FUNCTION", "size": 28, "library": "netglue_eenet", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceEENetSetsockopt"}}}}}, "sceNetGlueShutdown": {"8c2ea31d5a0e571be9d8ec63c37a3d4bd0facd20": {"2dc53a68": {"type": "FUNCTION", "size": 52, "library": "netglue_eenet", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "sceEENetShutdown"}, "28": {"type": "MIPS_26", "symbol": "sceEENetClose"}}}}}, "sceNetGlueSocket": {"7ba17f652620d1a8770717ffc05543c774ba24f8": {"9079d653": {"type": "FUNCTION", "size": 28, "library": "netglue_eenet", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "sceEENetSocket"}}}}}}, "base64": {"sceBASE64Encoder": {"c95199aa47a7e5981b9c86e3e2c8aad3ea84d848": {"5492eccb": {"type": "FUNCTION", "size": 320, "library": "base64", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "144": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "208": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "216": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "244": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceBASE64LineDecoder": {"718bd477caab51c7552db31754cfe607c82d156e": {"84748575": {"type": "FUNCTION", "size": 368, "library": "base64", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["2.8.1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "180": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}}, "libtimer": {"sceTimerInit": {"3a468d1416d60d5444f1482a0270817a647405c1": {"d062f269": {"type": "FUNCTION", "size": 352, "library": "libtimer", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_26", "symbol": "memset"}, "140": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "144": {"type": "MIPS_26", "symbol": "_sceTimerAlarmInit", "scope": "LIBRARY"}, "152": {"type": "MIPS_HI16", "symbol": "cbTimerHandler", "original": ".text"}, "160": {"type": "MIPS_LO16", "symbol": "cbTimerHandler", "original": ".text"}, "168": {"type": "MIPS_26", "symbol": "AddIntcHandler2"}, "184": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "200": {"type": "MIPS_26", "symbol": "DIntr"}, "292": {"type": "MIPS_26", "symbol": "EnableIntc"}}}}}, "cbTimerHandler": {"8338414b94d8b4f5fdb863ff7e3b443c1ee0c9f2": {"0cf669aa": {"type": "FUNCTION", "size": 1136, "library": "libtimer", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"68": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "156": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "416": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "440": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "472": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "504": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "548": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "560": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "588": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "620": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1008": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "1040": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "isceTimerStartCounter": {"31d25d61654e0b9e4ab13081b5baf7acd7c24347": {"c36e9bc6": {"type": "FUNCTION", "size": 636, "library": "libtimer", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "264": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "280": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "isceTimerStopCounter": {"b621ea3b29473d56991bce0)PS2SDB", 8192}, + std::string_view{R"PS2SDB(d5a4050f15fa58cab": {"99a6b6a2": {"type": "FUNCTION", "size": 596, "library": "libtimer", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "100": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "224": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "236": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "isceTimerSetHandler": {"02691994d8b85eaa8e6bf4f8aaf5c7721a0b7408": {"52081d35": {"type": "FUNCTION", "size": 732, "library": "libtimer", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "188": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "288": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "308": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "324": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceTimerEnd": {"d5f73f4d9feacd16e514218e029adc9d56f8aedb": {"2a7d5f7e": {"type": "FUNCTION", "size": 196, "library": "libtimer", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "76": {"type": "MIPS_26", "symbol": "DIntr"}, "92": {"type": "MIPS_26", "symbol": "RemoveIntcHandler"}, "108": {"type": "MIPS_26", "symbol": "DisableIntc"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceTimerGetPreScaleFactor": {"a58c919a8d5f1342393713239b759fadaadbe807": {"d6ed632d": {"type": "FUNCTION", "size": 44, "library": "libtimer", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceTimerUSec2BusClock": {"df11877703d0130a7a28c056bd6af075364b4421": {"1eb27f7f": {"type": "FUNCTION", "size": 112, "library": "libtimer", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"84": {"type": "MIPS_26", "symbol": "__udivdi3"}}}}}, "sceTimerBusClock2USec": {"dde2d1f92c1d2ffc2645983f38e99ac99d93f34f": {"edc1ee1a": {"type": "FUNCTION", "size": 168, "library": "libtimer", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "__udivdi3"}, "124": {"type": "MIPS_26", "symbol": "__udivdi3"}}}}}, "sceTimerBusClock2Freq": {"17f973ef5167a3da189e7b4cd66c77bdb725f844": {"ed28014a": {"type": "FUNCTION", "size": 84, "library": "libtimer", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "__floatdisf"}, "36": {"type": "MIPS_26", "symbol": "__floatdisf"}}}}}, "sceTimerFreq2BusClock": {"ea630b1b8a5e1d94131b5d0507ac95c980c46a17": {"3ab1c097": {"type": "FUNCTION", "size": 52, "library": "libtimer", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "__fixunssfdi"}}}}}, "sceTimerStartSystemTime": {"0c746cee9876893f3deb1ed5ad5f2e4bde86e60d": {"ee7daf9f": {"type": "FUNCTION", "size": 148, "library": "libtimer", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "DIntr"}, "96": {"type": "MIPS_26", "symbol": "isceTimerGetSystemTime", "scope": "LIBRARY", "original": ".text"}, "104": {"type": "MIPS_26", "symbol": "SetNextComp", "original": ".text"}}}}}, "sceTimerStopSystemTime": {"d0687bb529dedc723133ad2df8af7f3fab11a4ad": {"122904e9": {"type": "FUNCTION", "size": 120, "library": "libtimer", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "DIntr"}}}}}, "sceTimerGetSystemTime": {"8ca432d6d219647604fdcf7584326670a9b8877f": {"97a2938a": {"type": "FUNCTION", "size": 116, "library": "libtimer", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "DIntr"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "isceTimerGetSystemTime": {"5a8d3bf1fc0ef25e877c70e31bb67cc1462a9360": {"b3f3108e": {"type": "FUNCTION", "size": 76, "library": "libtimer", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"4": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "20": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceTimerAllocCounter": {"549822dfb5ae9ff684d2287c71776e1f056d9a40": {"8681e80f": {"type": "FUNCTION", "size": 156, "library": "libtimer", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "DIntr"}, "20": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "24": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "isceTimerAllocCounter": {"181dc8e247aea603d25725ab79ed171a5bce5851": {"d6ed632d": {"type": "FUNCTION", "size": 112, "library": "libtimer", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceTimerFreeCounter": {"f61f9e47e5ccdca2bbc7aa38ffbf46666e4e953d": {"2497ffa6": {"type": "FUNCTION", "size": 224, "library": "libtimer", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "DIntr"}, "48": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "isceTimerFreeCounter": {"080008422a1ec9c399b076d0274750aa8f05fa2f": {"3770b1f4": {"type": "FUNCTION", "size": 168, "library": "libtimer", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"24": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "40": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceTimerStartCounter": {"39866015b8d05e02549d1aa3d8666f7af96c0f39": {"e19f22dd": {"type": "FUNCTION", "size": 72, "library": "libtimer", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "DIntr"}, "28": {"type": "MIPS_26", "symbol": "isceTimerStartCounter", "scope": "LIBRARY", "original": ".text"}}}}}, "sceTimerStopCounter": {"39866015b8d05e02549d1aa3d8666f7af96c0f39": {"656ee8ad": {"type": "FUNCTION", "size": 72, "library": "libtimer", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "DIntr"}, "28": {"type": "MIPS_26", "symbol": "isceTimerStopCounter", "scope": "L)PS2SDB", 8192}, + std::string_view{R"PS2SDB(IBRARY", "original": ".text"}}}}}, "sceTimerSetCount": {"64bc069ba0e5256fa62d5fe079b5cccd790d2d9a": {"4b288707": {"type": "FUNCTION", "size": 260, "library": "libtimer", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "DIntr"}, "64": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}, "136": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceTimerGetBaseTime": {"7b014dd68481d69f5744a07e9965a3bb3870b4f8": {"a2f0776b": {"type": "FUNCTION", "size": 116, "library": "libtimer", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "DIntr"}}}}}, "isceTimerGetBaseTime": {"3f2e4380b042b3e55c91edc5ccc79ad1422001b1": {"00000000": {"type": "FUNCTION", "size": 72, "library": "libtimer", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {}}}}, "sceTimerGetCount": {"a373d624d39398d3e3283510c40298e2109b7edc": {"b6c48e14": {"type": "FUNCTION", "size": 188, "library": "libtimer", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"12": {"type": "MIPS_26", "symbol": "DIntr"}, "76": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "92": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "isceTimerGetCount": {"c1ddc9df4ad6332c50678c8166ef1f835ddaebac": {"0e35cbc5": {"type": "FUNCTION", "size": 136, "library": "libtimer", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "68": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceTimerSetHandler": {"6adc8aaebf2c24bbbc65faf0cd8214978c6d95a0": {"200c30e8": {"type": "FUNCTION", "size": 120, "library": "libtimer", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_26", "symbol": "DIntr"}, "64": {"type": "MIPS_26", "symbol": "isceTimerSetHandler", "scope": "LIBRARY", "original": ".text"}}}}}, "sceTimerGetUsedUnusedCounters": {"f5aad2132c354465de81d3a4c2a8e14dde1bd421": {"723c3a7e": {"type": "FUNCTION", "size": 144, "library": "libtimer", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "DIntr"}, "32": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "36": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "isceTimerGetUsedUnusedCounters": {"d8f6d22575785642fcb477098ea14cacfe4286f6": {"d6ed632d": {"type": "FUNCTION", "size": 80, "library": "libtimer", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "4": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "SetNextComp": {"fe8122c2a0ea8bc507c1b8c9f123bbda3ce9f1fd": {"d3e72eac": {"type": "FUNCTION", "size": 360, "library": "libtimer", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".data"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".data"}}}}}, "sceTimerSetAlarm": {"d2fd5067304453abe96e56f59903bd903f6d3a33": {"050aa114": {"type": "FUNCTION", "size": 300, "library": "libtimer", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_26", "symbol": "DIntr"}, "68": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "72": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_26", "symbol": "EIntr"}, "128": {"type": "MIPS_26", "symbol": "sceTimerAllocCounter", "scope": "LIBRARY"}, "148": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "152": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "172": {"type": "MIPS_26", "symbol": "EIntr"}, "188": {"type": "MIPS_HI16", "symbol": "AlarmHandler", "original": ".text"}, "196": {"type": "MIPS_LO16", "symbol": "AlarmHandler", "original": ".text"}, "212": {"type": "MIPS_26", "symbol": "sceTimerSetHandler", "scope": "LIBRARY"}, "220": {"type": "MIPS_26", "symbol": "sceTimerStartCounter", "scope": "LIBRARY"}, "236": {"type": "MIPS_26", "symbol": "EIntr"}}}}}, "isceTimerSetAlarm": {"1e35e1f804095e78a5ed5a15ebad244e3a29d921": {"dbbd78b9": {"type": "FUNCTION", "size": 240, "library": "libtimer", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "80": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "104": {"type": "MIPS_26", "symbol": "isceTimerAllocCounter", "scope": "LIBRARY"}, "124": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "128": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "148": {"type": "MIPS_HI16", "symbol": "AlarmHandler", "original": ".text"}, "156": {"type": "MIPS_LO16", "symbol": "AlarmHandler", "original": ".text"}, "172": {"type": "MIPS_26", "symbol": "isceTimerSetHandler", "scope": "LIBRARY"}, "180": {"type": "MIPS_26", "symbol": "isceTimerStartCounter", "scope": "LIBRARY"}}}}}, "sceTimerReleaseAlarm": {"0290bda1a00c63380f5b3410245e3dc23b9ee788": {"3ae992f7": {"type": "FUNCTION", "size": 168, "library": "libtimer", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "DIntr"}, "72": {"type": "MIPS_26", "symbol": "EIntr"}, "96": {"type": "MIPS_26", "symbol": "sceTimerFreeCounter", "scope": "LIBRARY"}, "104": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "108": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "112": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "132": {"type": "MIPS_26", "symbol": "EIntr"}}}}}, "isceTimerReleaseAlarm": {"90de0cf6d6b52a980aefffbeafa206e514d59c2f": {"8188e03f": {"type": "FUNCTION", "size": 120, "library": "libtimer", "scope": "GLOBAL", "is_interface": true, "versions": ["2.8.1"], "sdk": ["3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "isceTimerFreeCounter", "scope": "LIBRARY"}, "80": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "88": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "_sceTimerAlarmInit": {"b38d1998c2cc3c694055b44636d9b40c28167369": {"d3940191": {"type": "FUNCTION", "size": 76, "library": "libtimer", "scope": "GLOBAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"0": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "4": {"type": "MIPS_HI16", "symbol": "", "original": ".bss"}, "8": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "16": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}, "AlarmHandler": {"204be2d3cc14f29e088eb5229d29565b9717ec5d": {"20baa3c6": {"type": "FUNCTION", "size": 92, "library": "libtimer", "scope": "LOCAL", "is_interface": false, "versions": ["2.8.1"], "sdk": ["3.0.1-1"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_HI16", "symbol)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": "", "original": ".bss"}, "60": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".bss"}}}}}}, "libnet": {"CallRpc": {"aa23f97c2794937da00e176ea59b7c596b4c3e6e": {"6606c455": {"type": "FUNCTION", "size": 124, "library": "libnet", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"40": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "56": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "64": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "72": {"type": "MIPS_26", "symbol": "scePrintf"}, "104": {"type": "MIPS_26", "symbol": "sceSifMCallRpc"}}}}}, "MemcpyD": {"cfe4b3c108d67d73726b2fe87e2c2ceef65dc915": {"2848b6d4": {"type": "FUNCTION", "size": 84, "library": "libnet", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "memcpy"}}}}}, "MemcpyS": {"d6c96cc0596f819649dc43109b0ff22e009c6243": {"2848b6d4": {"type": "FUNCTION", "size": 84, "library": "libnet", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "memcpy"}}}}}, "StrcpyD": {"d6fa8769911e8f242cc0338bd36045b0b249624a": {"918692e0": {"type": "FUNCTION", "size": 140, "library": "libnet", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "strlen"}, "96": {"type": "MIPS_26", "symbol": "strcpy"}}}}}, "StrcpyS": {"3e5c37b9b1093c57bbc78e74d2cae2f3635e307a": {"5a5381c2": {"type": "FUNCTION", "size": 44, "library": "libnet", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"20": {"type": "MIPS_26", "symbol": "strcpy"}}}}}, "sceInetPoll": {"3ece10587d749ab801e861b97cc47decb1cbc742": {"ce9c0dea": {"type": "FUNCTION", "size": 164, "library": "libnet", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"56": {"type": "MIPS_26", "symbol": "MemcpyD", "scope": "LIBRARY", "original": ".text"}, "84": {"type": "MIPS_26", "symbol": "CallRpc", "scope": "LIBRARY", "original": ".text"}, "120": {"type": "MIPS_26", "symbol": "MemcpyS", "scope": "LIBRARY", "original": ".text"}}}}}, "sceInetName2Address": {"941f021a0c8fa90f44b23b2c8c2aa192eb2a63d8": {"391dafe9": {"type": "FUNCTION", "size": 156, "library": "libnet", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "StrcpyD", "scope": "LIBRARY", "original": ".text"}, "80": {"type": "MIPS_26", "symbol": "CallRpc", "scope": "LIBRARY", "original": ".text"}, "116": {"type": "MIPS_26", "symbol": "MemcpyS", "scope": "LIBRARY", "original": ".text"}}}}}, "sceInetAddress2String": {"8507cc186fd8b09c051cbd59f53a5786bfb0c520": {"5b5e01c9": {"type": "FUNCTION", "size": 156, "library": "libnet", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "MemcpyD", "scope": "LIBRARY", "original": ".text"}, "80": {"type": "MIPS_26", "symbol": "CallRpc", "scope": "LIBRARY", "original": ".text"}, "112": {"type": "MIPS_26", "symbol": "StrcpyS", "scope": "LIBRARY", "original": ".text"}}}}}, "sceInetAddress2Name": {"927416dc5f222a5d8ab2daedb63ddd814b6e24ce": {"c50d66d7": {"type": "FUNCTION", "size": 168, "library": "libnet", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"64": {"type": "MIPS_26", "symbol": "MemcpyD", "scope": "LIBRARY", "original": ".text"}, "92": {"type": "MIPS_26", "symbol": "CallRpc", "scope": "LIBRARY", "original": ".text"}, "124": {"type": "MIPS_26", "symbol": "StrcpyS", "scope": "LIBRARY", "original": ".text"}}}}}, "sceInetCreate": {"f7ed98516c00e18853ae95f13eb18e72533d16bc": {"a69ff641": {"type": "FUNCTION", "size": 112, "library": "libnet", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "MemcpyD", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_26", "symbol": "CallRpc", "scope": "LIBRARY", "original": ".text"}}}}}, "sceInetOpen": {"452271b844833753baf550e4012f63a015624d09": {"2e9ae4cb": {"type": "FUNCTION", "size": 72, "library": "libnet", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "CallRpc", "scope": "LIBRARY", "original": ".text"}}}}}, "sceInetClose": {"a6cff6f96af795cd164f2373913a2ea22f243f7e": {"2e9ae4cb": {"type": "FUNCTION", "size": 72, "library": "libnet", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "CallRpc", "scope": "LIBRARY", "original": ".text"}}}}}, "sceInetRecv": {"a31abc22a03f1df314c5c54a9fc96c095efa6a2f": {"de10ee35": {"type": "FUNCTION", "size": 200, "library": "libnet", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"92": {"type": "MIPS_26", "symbol": "CallRpc", "scope": "LIBRARY", "original": ".text"}, "156": {"type": "MIPS_26", "symbol": "MemcpyS", "scope": "LIBRARY", "original": ".text"}}}}}, "sceInetRecvFrom": {"3f735ab21661e8de06bb63de41aea01e7a68de53": {"e2c04883": {"type": "FUNCTION", "size": 272, "library": "libnet", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"112": {"type": "MIPS_26", "symbol": "CallRpc", "scope": "LIBRARY", "original": ".text"}, "172": {"type": "MIPS_26", "symbol": "MemcpyS", "scope": "LIBRARY", "original": ".text"}, "220": {"type": "MIPS_26", "symbol": "MemcpyS", "scope": "LIBRARY", "original": ".text"}}}}}, "sceInetSend": {"db7fccd9ca83d34a260ad8b8433a1e77ef32db14": {"4a61c425": {"type": "FUNCTION", "size": 176, "library": "libnet", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"84": {"type": "MIPS_26", "symbol": "MemcpyD", "scope": "LIBRARY", "original": ".text"}, "112": {"type": "MIPS_26", "symbol": "CallRpc", "scope": "LIBRARY", "original": ".text"}}}}}, "sceInetSendTo": {"38366c70c6b5677a02dd03339586c7d339d235c3": {"09256aed": {"type": "FUNCTION", "size": 228, "library": "libnet", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"104": {"type": "MIPS_26", "symbol": "MemcpyD", "scope": "LIBRARY", "original": ".text"}, "132": {"type": "MIPS_26", "symbol": "MemcpyD", "scope": "LIBRARY", "original": ".text"}, "160": {"type": "MIPS_26", "symbol": "CallRpc", "scope": "LIBRARY", "original": ".text"}}}}}, "sceInetAbort": {"add1a5d03d7a456b5b3c0c495e452c6e1ca14a05": {"2e9ae4cb": {"type": "FUNCTION", "size": 72, "library": "libnet", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "CallRpc", "scope": "LIBRARY", "original": ".text"}}}}}, "sceInetControl": {"5376b12db4df8603c18ef7d66430694d10afb327": {"90cdf4fb": {"type": "FUNCTION", "size": 168, "library": "libnet", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "MemcpyD", "scope": "LIBRARY", "original": ".text"}, "88": {"type": "MIPS_26", "symbol": "CallRpc", "scope": "LIBRARY", "original": ".text"}, "124": {"type": "MIPS_26", "symbol": "MemcpyS", "scope": "LIBRARY", "original": ".text"}}}}}, "sceInetGetInterfaceList": {"66bff95c68757c050a4f160162a047aa55428b9b": {"4012f473": {"type": "FUNCTION", ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(size": 136, "library": "libnet", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "CallRpc", "scope": "LIBRARY", "original": ".text"}, "96": {"type": "MIPS_26", "symbol": "MemcpyS", "scope": "LIBRARY", "original": ".text"}}}}}, "sceInetInterfaceControl": {"5fffb1a99f7bc9d6fc77705494bfbc684379a1e1": {"90cdf4fb": {"type": "FUNCTION", "size": 168, "library": "libnet", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "MemcpyD", "scope": "LIBRARY", "original": ".text"}, "88": {"type": "MIPS_26", "symbol": "CallRpc", "scope": "LIBRARY", "original": ".text"}, "124": {"type": "MIPS_26", "symbol": "MemcpyS", "scope": "LIBRARY", "original": ".text"}}}}}, "sceInetGetRoutingTable": {"bb7cc37ec0796ac64b62d138605d5a843792445c": {"8f816034": {"type": "FUNCTION", "size": 152, "library": "libnet", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "CallRpc", "scope": "LIBRARY", "original": ".text"}, "108": {"type": "MIPS_26", "symbol": "MemcpyS", "scope": "LIBRARY", "original": ".text"}}}}}, "sceInetGetNameServers": {"535561c0d8fce81feada30e4aa0cd49dc0de2cfd": {"4012f473": {"type": "FUNCTION", "size": 136, "library": "libnet", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"52": {"type": "MIPS_26", "symbol": "CallRpc", "scope": "LIBRARY", "original": ".text"}, "96": {"type": "MIPS_26", "symbol": "MemcpyS", "scope": "LIBRARY", "original": ".text"}}}}}, "sceInetChangeThreadPriority": {"888cce207faae4d58a5ba26e8f1f9c4f039f6d95": {"ee238e5d": {"type": "FUNCTION", "size": 68, "library": "libnet", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "CallRpc", "scope": "LIBRARY", "original": ".text"}}}}}, "sceInetGetLog": {"68f4639d9ad8036d50357c0cd52a87e656a23e6b": {"153bd9cf": {"type": "FUNCTION", "size": 140, "library": "libnet", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "CallRpc", "scope": "LIBRARY", "original": ".text"}, "96": {"type": "MIPS_26", "symbol": "MemcpyS", "scope": "LIBRARY", "original": ".text"}}}}}, "sceInetAbortLog": {"06be39686d8dd96d2dd4d84e0470fb45dcdfd044": {"73e0da89": {"type": "FUNCTION", "size": 64, "library": "libnet", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "CallRpc", "scope": "LIBRARY", "original": ".text"}}}}}, "sceInetCtlUpInterface": {"97d576fcc6e90dee8344b74d149b554ae98e71da": {"ee238e5d": {"type": "FUNCTION", "size": 68, "library": "libnet", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "CallRpc", "scope": "LIBRARY", "original": ".text"}}}}}, "sceInetCtlDownInterface": {"0b58ff8b4bf3d622e3329bc18776e81ce1d8e936": {"ee238e5d": {"type": "FUNCTION", "size": 68, "library": "libnet", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "CallRpc", "scope": "LIBRARY", "original": ".text"}}}}}, "sceInetCtlSetAutoMode": {"76775b0784a6aeb1cb7b129449d1bcbf8ed9a1e3": {"ee238e5d": {"type": "FUNCTION", "size": 68, "library": "libnet", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "CallRpc", "scope": "LIBRARY", "original": ".text"}}}}}, "sceInetCtlGetState": {"43d4b45cba903cdde44923229351774fd70312a0": {"c09e917c": {"type": "FUNCTION", "size": 116, "library": "libnet", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "CallRpc", "scope": "LIBRARY", "original": ".text"}}}}}, "sceLibnetInitialize": {"c8f8dc1a17cc385a09338c8a8867fdaf90807148": {"c2f25b95": {"type": "FUNCTION", "size": 216, "library": "libnet", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"76": {"type": "MIPS_HI16", "symbol": "", "original": ".rodata"}, "80": {"type": "MIPS_26", "symbol": "scePrintf"}, "84": {"type": "MIPS_LO16", "symbol": "", "original": ".rodata"}, "156": {"type": "MIPS_26", "symbol": "sceSifMBindRpcParam"}}}}}, "sceLibnetTerminate": {"e11dae4fe7673dae21f46e44215c5b1a8c0f6a0b": {"2f162ada": {"type": "FUNCTION", "size": 128, "library": "libnet", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"72": {"type": "MIPS_26", "symbol": "sceSifMUnBindRpc"}}}}}, "sceLibnetRegisterHandler": {"8114a582682e40ff52685f1d833ab83a20dfff58": {"73e0da89": {"type": "FUNCTION", "size": 64, "library": "libnet", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "CallRpc", "scope": "LIBRARY", "original": ".text"}}}}}, "sceLibnetUnregisterHandler": {"257643a73991ce9c699cd97689a6d382fa5e6d1f": {"73e0da89": {"type": "FUNCTION", "size": 64, "library": "libnet", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"28": {"type": "MIPS_26", "symbol": "CallRpc", "scope": "LIBRARY", "original": ".text"}}}}}, "sceLibnetSetConfiguration": {"9d536da1bf6a1dbb75c09be09aef19ff8b941afd": {"ee238e5d": {"type": "FUNCTION", "size": 68, "library": "libnet", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"32": {"type": "MIPS_26", "symbol": "CallRpc", "scope": "LIBRARY", "original": ".text"}}}}}, "WaitInterface": {"4aad41d4e8906eb5ef0b86c9aff6308b845686e6": {"5a242887": {"type": "FUNCTION", "size": 144, "library": "libnet", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "CallRpc", "scope": "LIBRARY", "original": ".text"}}}}}, "WaitInterfaceAttached": {"53140fa569e39d97c5a32a7a864ef8f30bcacf61": {"1aec5748": {"type": "FUNCTION", "size": 28, "library": "libnet", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "WaitInterface", "scope": "LIBRARY", "original": ".text"}}}}}, "WaitInterfaceStarted": {"e2bf4b6f3c8e33b416c825a2c539cb1e931afed1": {"1aec5748": {"type": "FUNCTION", "size": 28, "library": "libnet", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"8": {"type": "MIPS_26", "symbol": "WaitInterface", "scope": "LIBRARY", "original": ".text"}}}}}, "GetInterfaceID": {"638168b963784e39b697256bfaf01ab9fe1f365e": {"173c9c94": {"type": "FUNCTION", "size": 224, "library": "libnet", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"48": {"type": "MIPS_26", "symbol": "sceInetGetInterfaceList", "scope": "LIBRARY", "original": ".text"}, "128": {"type": "MIPS_26", "symbol": "sceInetInterfaceControl", "scope": "LIBRARY", "original": ".text"}}}}}, "GetMyAddress": {"406da9743648ca5ba01942fb72d7e0f3a591aa2b": {"058fdfe2": {"type": "FUNCTION", "size": 36, "library": "libnet", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "sceInetInterfaceControl", "scope": "LIBRARY", "original": ".text"}}}}}, "WaitGetAddressAu)PS2SDB", 8192}, + std::string_view{R"PS2SDB(toUpIf": {"83d76d5700b0987a413fdf899be87f9f3a80768f": {"071a0be3": {"type": "FUNCTION", "size": 152, "library": "libnet", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"44": {"type": "MIPS_26", "symbol": "GetInterfaceID", "scope": "LIBRARY", "original": ".text"}, "72": {"type": "MIPS_26", "symbol": "WaitInterfaceStarted", "scope": "LIBRARY", "original": ".text"}, "100": {"type": "MIPS_26", "symbol": "GetMyAddress", "scope": "LIBRARY", "original": ".text"}}}}}, "WaitGetAddressNoAutoUpIf": {"611c4659e82df3afd2242e6c6a211fc853238953": {"91cfb0f8": {"type": "FUNCTION", "size": 108, "library": "libnet", "scope": "LOCAL", "is_interface": false, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"36": {"type": "MIPS_26", "symbol": "WaitInterfaceStarted", "scope": "LIBRARY", "original": ".text"}, "60": {"type": "MIPS_26", "symbol": "GetMyAddress", "scope": "LIBRARY", "original": ".text"}}}}}, "sceLibnetWaitGetInterfaceID": {"3067371889dd5dd500598c3f35d8959a39e707ef": {"ba4fa93c": {"type": "FUNCTION", "size": 140, "library": "libnet", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"60": {"type": "MIPS_26", "symbol": "GetInterfaceID", "scope": "LIBRARY", "original": ".text"}, "88": {"type": "MIPS_26", "symbol": "WaitInterfaceAttached", "scope": "LIBRARY", "original": ".text"}}}}}, "sceLibnetWaitGetAddress": {"777a9fe58b46a6429bae63a0052012570a0687be": {"28f87e58": {"type": "FUNCTION", "size": 52, "library": "libnet", "scope": "GLOBAL", "is_interface": true, "versions": [], "sdk": ["2.5.5"], "compiler_versions": ["2.4.1.01"], "relocations": {"16": {"type": "MIPS_26", "symbol": "WaitGetAddressAutoUpIf", "scope": "LIBRARY", "original": ".text"}, "32": {"type": "MIPS_26", "symbol": "WaitGetAddressNoAutoUpIf", "scope": "LIBRARY", "original": ".text"}}}}}}})PS2SDB", 1964}, + }; + + inline constexpr std::string_view kTreeJsonChunks[] = { + std::string_view{R"PS2SDB({"skip": 0, "offset": 0, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 610467840, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2084569088}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 0}, "child": {"skip": 140, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "b9242ca6119dbda004ec6761ed32a14ba87c07bc", "variant": 998628801, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 2894200832}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 12, "offset": 36, "next": [], "symbols": [{"name": "_lmcGetClientPtr", "hash": "15c6dbdd0f883e2df1004698140593fbc11f4c3e", "variant": 2297323119, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 608307208}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 604372991}, "child": {"skip": 68, "offset": 92, "next": [], "symbols": [{"name": "_sceMcFatInit", "hash": "d390aa5e5779756ce4a68e8ef521e3f92719df97", "variant": 1427480386, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 610795520, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 608632833}, "child": {"skip": 96, "offset": 116, "next": [], "symbols": [{"name": "__sceEENetether_sprintf", "hash": "05d43c2cfbdafa96db8d897efdcbb11c483a9e71", "variant": 1978414925, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2889875456, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2891972608, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 16, "offset": 36, "next": [], "symbols": [{"name": "sceSifInitRebootNotify", "hash": "027c8faca4c6399237a96ce8e47f4f50f1f97886", "variant": 3736647026, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2889875456, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2891972608, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2894069760, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 8, "offset": 36, "next": [], "symbols": [{"name": "__sceEENetmbinit", "hash": "4a802f31bc07382aa8d2a80d7d95649edd0d2ec9", "variant": 229288864, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4141}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2891972608, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 12, "offset": 40, "next": [], "symbols": [{"name": "__sceEENetuser_mem_func_term", "hash": "22529b10150c9eca23e67e54ede92f2f6cec2d80", "variant": 794486585, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2890137600, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2892234752, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 24, "next": [], "symbols": [{"name": "R_DIAG_set_stack_datum", "hash": "586ddd1c079ad5a720264db442ce3830005b2815", "variant": 1427480386, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 65011720}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2892300288, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 20, "next": [], "symbols": [{"name": "sceCccSetTable", "hash": "722a91784091909b5ae5a4c8fc068c7ee05cc1bd", "variant": 1543978815, "library": "libccc"}, {"name": "sceEENetSetResolvTO", "hash": "722a91784091909b5ae5a4c8fc068c7ee05cc1bd", "variant": 1543978815, "library": "libeenet"}]}}, {"match": {"value": 2892234752, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 20, "next": [], "symbols": [{"name": "resetTbp", "hash": "03164edaf899d1b61854dbd03292c5117e7045c7", "variant": 1543978815, "library": "libhip"}, {"name": "resetCbp", "hash": "03164edaf899d1b61854dbd03292c5117e7045c7", "variant": 1543978815, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 4141}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 24, "next": [], "symbols": [{"name": "sceHiRegistTable", "hash": "ad6d0616b9021cbfc4d4c42c6c47ee823c4e2428", "variant": 1593902144, "library": "libhig"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2355298304, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8409133}, "child": {"skip": 60, "offset": 76, "next": [{"match": {"value": 4470795}, "child": {"skip": 0, "offset": 80, "next": [{"match": {"value": 10692641}, "child": {"skip": 28, "offset": 112, "next": [], "symbols": [{"name": "sceHiMemGetUsedSize", "hash": "1e9cf8323fd7ab86dc24210fa7416e9ddd1aec60", "variant": 1543978815, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 4470794}, "child": {"skip": 0, "offset": 80, "next": [{"match": {"value": 10692641}, "child": {"skip": 28, "offset": 112, "next": [], "symbols": [{"name": "sceHiMemGetNousedSize", "hash": "76740f38953f4a5c1b6c15d0f2ca0bd719b5c148", "variant": 1543978815, "library": "libhig"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2353463296, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2898722816}, "child": {"skip": 20, "offset": 36, "next": [], "symbols": [{"name": "__register_global_object", "hash": "c81322f6e4ccfe3e2a5cf408605d501647a66138", "variant": 1210976571, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 608436224, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2424438790}, "child": {"skip": 60, "offset": 76, "next": [], "symbols": [{"name": "SetResult_GetLocation", "hash": "4da1d4c630591ed6cabddbd3cb6e117b81bb9006", "variant": 1593902144, "library": "libusbkb"}]}}], "symbols": []}}, {"match": {"value": 1007091712, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2890137600, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 16, "offset": 32, "next": [], "symbols": [{"name": "sceEENetRegDevmanIfNameFunc", "hash": "44d5ad4aff5f0f3c990214997bde99220ad3efc4", "variant": 555400921, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2889875456, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 20, "next": [], "symbols": [{"name": "__sceEENetroutecommon_init", "hash": "93e79986dc217bc035e25064b448ee2defcbb878", "variant": 1543978815, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 666763152}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2353463296, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 4, "offset": 20, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, )PS2SDB", 8192}, + std::string_view{R"PS2SDB("offset": 24, "next": [{"match": {"value": 4289789968}, "child": {"skip": 264, "offset": 292, "next": [], "symbols": [{"name": "_pictureData0", "hash": "2b70bed9067d662f173adbd143f5c1583485afff", "variant": 4155368230, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289789968}, "child": {"skip": 260, "offset": 288, "next": [], "symbols": [{"name": "_pictureData0", "hash": "133d51c4d5c304161679e69069158a43c7d0d08b", "variant": 1739839210, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666763248}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2353332224, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2355494912, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 24, "offset": 44, "next": [], "symbols": [{"name": "sceEENetGethostbyname", "hash": "78414712804fc3b223daeab7629dca0ea6458662", "variant": 141634611, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2353397760, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2355560448, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 24, "offset": 44, "next": [], "symbols": [{"name": "sceEENetGethostbyname2", "hash": "a069c4ed4dfb55ecc5406807a465be9f2ee47024", "variant": 1859510206, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2353463296, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2355625984, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 24, "offset": 44, "next": [], "symbols": [{"name": "sceEENetGethostbyaddr", "hash": "c2d4c675f09b2a0689818a6527868b9c61fddab9", "variant": 1437002729, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 8407085}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2353397760, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 72, "offset": 92, "next": [], "symbols": [{"name": "wrterror", "hash": "e14211388ec153ff237c08b0a311ac5610ee98f0", "variant": 3742651199, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "sceTtyInit"}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2889875456, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [], "symbols": [{"name": "sceResetttyinit", "hash": "a0dfb0d7281961e5d117ce62cbe368e57ebc50a5", "variant": 3795194929, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 608370688, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2890137600, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 610533392}, "child": {"skip": 20, "offset": 36, "next": [], "symbols": [{"name": "QueueInit", "hash": "e684f85e06c233a7605e7ca44f7103514ceba174", "variant": 2240227075, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 2355232776}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 71368708}, "child": {"skip": 4, "offset": 20, "next": [{"match": {"value": 1006796800}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 65011720}, "child": {"skip": 52, "offset": 80, "next": [], "symbols": [{"name": "iGetTimerUsedUnusedCounters", "hash": "071728dd9f58e3464340b6448a6f410b8c8b6fe4", "variant": 3605881645, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006797062}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 65011720}, "child": {"skip": 52, "offset": 80, "next": [], "symbols": [{"name": "isceTimerGetUsedUnusedCounters", "hash": "d8f6d22575785642fcb477098ea14cacfe4286f6", "variant": 3605881645, "library": "libtimer"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 610533888}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 6557739}, "child": {"skip": 44, "offset": 60, "next": [], "symbols": [{"name": "initZeroBuf", "hash": "10ce5bf8a60150b2a8ec8cc96e5dd81351a86b2b", "variant": 3605881645, "library": "liblout"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "SignalSema"}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2353266688, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [], "symbols": [{"name": "_sceFsSigSema", "hash": "3887f1de7e61e4ad19b4f8bb2aa8b864094372d9", "variant": 2092981903, "library": "libkernl"}, {"name": "__sceEENeteenet_netintr", "hash": "3887f1de7e61e4ad19b4f8bb2aa8b864094372d9", "variant": 3887314011, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2420310016, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2426667008, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 16, "offset": 32, "next": [], "symbols": [{"name": "SetResult_SetLEDStatus", "hash": "5cfd7dc6fb775bcf2b59bf647dfb64e9a327476a", "variant": 1427480386, "library": "libusbkb"}, {"name": "SetResult_SetLEDMode", "hash": "5cfd7dc6fb775bcf2b59bf647dfb64e9a327476a", "variant": 1427480386, "library": "libusbkb"}]}}], "symbols": []}}, {"match": {"value": 666763184}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 604176385}, "child": {"skip": 80, "offset": 96, "next": [], "symbols": [{"name": "supplement_crt0", "hash": "5bfe37752de07f87d88a7c437ca85a4947915cdd", "variant": 2459828846, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2353201152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 73465860}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006833664}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1006796800}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 65011720}, "child": {"skip": 20, "offset": 44, "next": [], "symbols": [{"name": "GetTimerPreScaleFactor", "hash": "056d2623657b41ed2994a2d5700b23469ebc12c8", "variant": 3605881645, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006797062}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 65011720}, "child": {"skip": 20, "offset": 44, "next": [], "symbols": [{"name": "sceTimerGetPreScaleFactor", "hash": "a58c919a8d5f1342393713239b759fadaadbe807", "variant": 3605881645, "library": "libtimer"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2896429064}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2896363540}, "child": {"skip": 24, "offset": 40, "next": [], "symbols": [{"name": "__register_frame_info", "hash": "0282ef312729fb8d5d7d2b988b818e0a920aa6c2", "variant": 2408823809, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 65011720}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2892234840}, "child": {"skip": 0, "offset": 16, "next": [], "symbols": [{"name": "srand", "hash": "435f71dbfa5255fc37ac761336ccd6507277baea", "variant": 3605881645, "library": "libc"}]}}, {"match": {"value": 2355232776}, "child": {"skip": 0, "offset": 16, "next": [], "symbols": [{"name": "sceHiGsGeneralStatus", "hash": "dda2e83879e8ec8472e168637cfb51fac29f8227", "variant": 3605881645, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 2355429440}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 20, "next": [], "symbols": [{"name": "sceMpegSetImageBuff", "has)PS2SDB", 8192}, + std::string_view{R"PS2SDB(h": "a679e3680fe65b8690c910faa9f32948847e4ac0", "variant": 3605881645, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 341835783}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006899200}, "child": {"skip": 32, "offset": 48, "next": [], "symbols": [{"name": "sceSynthesizerRestorDma", "hash": "6b3dc3c15e746caa4241707335c86a600daff0df", "variant": 3605881645, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 274726921}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 40, "offset": 56, "next": [], "symbols": [{"name": "__sceEENetpffinddomain", "hash": "52ceabe1b50ae8135803081de105a4790bf74ffe", "variant": 3605881645, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 274726916}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2355252864}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1346437116}, "child": {"skip": 12, "offset": 36, "next": [], "symbols": [{"name": "pppoe_find_softc_by_deny_huniq", "hash": "747d4cc25637613628d28bd54770549327327e3d", "variant": 3605881645, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2355232772}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1413808124}, "child": {"skip": 12, "offset": 36, "next": [], "symbols": [{"name": "search_handler", "hash": "7f4c5355d6bb597bda62e9fa2f0cb69594314340", "variant": 3605881645, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 274726918}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 4, "offset": 20, "next": [{"match": {"value": 1413808124}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2355298304}, "child": {"skip": 24, "offset": 52, "next": [], "symbols": [{"name": "check_valid_type", "hash": "e717b60dc92d97c81c423b2576b6305ce2284ffc", "variant": 3605881645, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 1417871356}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2355298304}, "child": {"skip": 24, "offset": 52, "next": [], "symbols": [{"name": "eenet_search_device", "hash": "e8d3cf4520cf4a61f0d1ed568d42adc3165ca996", "variant": 3605881645, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 73531397}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2357526528}, "child": {"skip": 32, "offset": 48, "next": [], "symbols": [{"name": "names_lh_free", "hash": "9b337b070248ace19716ef10ae16a1dfaf6f5725", "variant": 2824839104, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 608632832, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2363883540}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 348127236}, "child": {"skip": 4, "offset": 20, "next": [{"match": {"value": 1006796800}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 65011720}, "child": {"skip": 84, "offset": 112, "next": [], "symbols": [{"name": "iAllocTimerCounter", "hash": "3acbf949afa1faa69d6f3c5a3d0f82413610ca1c", "variant": 3605881645, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006797062}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 65011720}, "child": {"skip": 84, "offset": 112, "next": [], "symbols": [{"name": "isceTimerAllocCounter", "hash": "181dc8e247aea603d25725ab79ed171a5bce5851", "variant": 3605881645, "library": "libtimer"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1753415687}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1820524544}, "child": {"skip": 12, "offset": 28, "next": [], "symbols": [{"name": "sceScfSetT10kConfig", "hash": "3fee7c63dfda2dfa32be0ef7f61c0411691afe07", "variant": 3605881645, "library": "libscf"}]}}], "symbols": []}}, {"match": {"value": 2296578051}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2565013504}, "child": {"skip": 12, "offset": 28, "next": [], "symbols": [{"name": "__sceEENetrip_disconnect", "hash": "26fcf9549378b3d6e665d56bb39c30088aa80036", "variant": 3605881645, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "iSignalSema"}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2353266688, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [], "symbols": [{"name": "mceSifRpcEndFunc", "hash": "3887f1de7e61e4ad19b4f8bb2aa8b864094372d9", "variant": 3272156519, "library": "libmc"}, {"name": "rpccall_end", "hash": "3887f1de7e61e4ad19b4f8bb2aa8b864094372d9", "variant": 3272156519, "library": "libusbkb"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "_cleanup_r"}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2353266688, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [], "symbols": [{"name": "_cleanup", "hash": "3887f1de7e61e4ad19b4f8bb2aa8b864094372d9", "variant": 1687358023, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 8527905}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2424438784}, "child": {"skip": 4, "offset": 20, "next": [{"match": {"value": 809631748}, "child": {"skip": 0, "offset": 24, "next": [], "symbols": [{"name": "isdigit", "hash": "4db9dee77b6fcaa48b6d459d77258a24b53d9082", "variant": 3605881645, "library": "libc"}]}}, {"match": {"value": 809631745}, "child": {"skip": 0, "offset": 24, "next": [], "symbols": [{"name": "isupper", "hash": "cf243779ded9540320c257ec0c4e3b37b82a3a1d", "variant": 3605881645, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2894200844}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 16, "offset": 32, "next": [], "symbols": [{"name": "__FindExceptionTable__FP13ExceptionInfoPc", "hash": "56c31c49263c25c36c52034bb97c8ff683cfc296", "variant": 1404560405, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2353135616, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1413480449}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2889875496}, "child": {"skip": 88, "offset": 104, "next": [], "symbols": [{"name": "sceMpegClearRefBuff", "hash": "fb2a6e8a10931545b7329d26d1e8b809c1c842d3", "variant": 2646488608, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 1413480451}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2353135624}, "child": {"skip": 20, "offset": 36, "next": [], "symbols": [{"name": "sceHiDMAGet_BufferPtr", "hash": "ea3a0e84db7a6625f8531fb9767f84efe8846de0", "variant": 3605881645, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 1413480455}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2353332232}, "child": {"skip": 48, "offset": 64, "next": [], "symbols": [{"name": "sceHiGsMemRestSize", "hash": "d9d6a9a94bd2941438b92b47ce92022a2339e53e", "variant": 646765006, "library": "libhig"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1007419392, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2353201152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 220, "offset": 232, "next": [], "symbols": [{"name": "_initRefImages", "hash": "15eef923f57e47cfa6c028e3ccfd9cafe62eda56", "variant": 1543978815, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 1007091712, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: 8405037}, "child": {"skip": 384, "offset": 396, "next": [], "symbols": [{"name": "sceHiGsDisplaySize", "hash": "be5472815fccc385c5a58751d5ff68dd1fac3293", "variant": 3295075069, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "DeleteSema"}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2353266688, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [], "symbols": [{"name": "__sceEENetcallout_term", "hash": "3887f1de7e61e4ad19b4f8bb2aa8b864094372d9", "variant": 805074145, "library": "libeenet"}, {"name": "__sceEENeteenet_slpque_term", "hash": "3887f1de7e61e4ad19b4f8bb2aa8b864094372d9", "variant": 805074145, "library": "libeenet"}, {"name": "__sceEENeteenet_tplsid_term", "hash": "3887f1de7e61e4ad19b4f8bb2aa8b864094372d9", "variant": 805074145, "library": "libeenet"}, {"name": "__sceEENetterm_threadinfo", "hash": "3887f1de7e61e4ad19b4f8bb2aa8b864094372d9", "variant": 805074145, "library": "libeenet"}, {"name": "__sceEENetkernclock_term", "hash": "3887f1de7e61e4ad19b4f8bb2aa8b864094372d9", "variant": 805074145, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 1007353856, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2353594368, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 104, "offset": 116, "next": [], "symbols": [{"name": "map_pages", "hash": "32591edd44a352ec18682791244a2a6c2695b14c", "variant": 1060140173, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2353594368, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 287309844}, "child": {"skip": 172, "offset": 184, "next": [], "symbols": [{"name": "__sceEENetif_clone_lookup", "hash": "e9cb540c6bd96c85202023e3536669e790907d65", "variant": 3605881645, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2353397760, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 281018389}, "child": {"skip": 92, "offset": 104, "next": [], "symbols": [{"name": "__sceEENetifa_ifwithaf", "hash": "46624923271dd7e0a07af972043620fd2f07a09c", "variant": 3124133222, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2353266688, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 276824078}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10285}, "child": {"skip": 72, "offset": 88, "next": [], "symbols": [{"name": "__sceEENetin_setmaxmtu", "hash": "eaa769be010f8075b9a47fda395cd859af8ae00a", "variant": 622630770, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 276824079}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 604372997}, "child": {"skip": 64, "offset": 80, "next": [], "symbols": [{"name": "check_all_ifaces_stopped", "hash": "fa5a57b7c15a0fe5e3d0a40b2c7e6af0740ba741", "variant": 3605881645, "library": "eenetctl"}]}}], "symbols": []}}, {"match": {"value": 411041806}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 108, "offset": 124, "next": [], "symbols": [{"name": "signal_output", "hash": "1e8d6449ea8cb57d298b0fe97d0647746406ad42", "variant": 2192351966, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2890137600, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 58730541}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": "cooked_malloc"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 20, "offset": 40, "next": [], "symbols": [{"name": "sceEENetSetMallocFunction", "hash": "ef3f3c3b3a8b3bfe9ccb3a92a05860d5b9f886f5", "variant": 311779696, "library": "libeenet"}, {"name": "sceHTTPSetMallocFunction", "hash": "ef3f3c3b3a8b3bfe9ccb3a92a05860d5b9f886f5", "variant": 311779696, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": "cooked_realloc"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 20, "offset": 40, "next": [], "symbols": [{"name": "sceEENetSetReallocFunction", "hash": "ef3f3c3b3a8b3bfe9ccb3a92a05860d5b9f886f5", "variant": 3782012965, "library": "libeenet"}, {"name": "sceHTTPSetReallocFunction", "hash": "ef3f3c3b3a8b3bfe9ccb3a92a05860d5b9f886f5", "variant": 3782012965, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": "cooked_memalign"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 20, "offset": 40, "next": [], "symbols": [{"name": "sceEENetSetMemalignFunction", "hash": "ef3f3c3b3a8b3bfe9ccb3a92a05860d5b9f886f5", "variant": 1675458002, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": "cooked_free"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 20, "offset": 40, "next": [], "symbols": [{"name": "sceEENetSetFreeFunction", "hash": "ef3f3c3b3a8b3bfe9ccb3a92a05860d5b9f886f5", "variant": 1237790327, "library": "libeenet"}, {"name": "sceHTTPSetFreeFunction", "hash": "ef3f3c3b3a8b3bfe9ccb3a92a05860d5b9f886f5", "variant": 1237790327, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "WaitSema"}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2353266688, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [], "symbols": [{"name": "__sce_eenetctl_wait_eenet_ifcnf", "hash": "3887f1de7e61e4ad19b4f8bb2aa8b864094372d9", "variant": 3915238829, "library": "eenetctl"}]}}], "symbols": []}}, {"match": {"value": 2151874560, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 8, "offset": 20, "next": [], "symbols": [{"name": "EVP_get_pw_prompt", "hash": "66bf9492cbb773b923c7e7ad959feedd9468db86", "variant": 2240227075, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2353528832, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 285212692}, "child": {"skip": 88, "offset": 100, "next": [], "symbols": [{"name": "R_DIAG_get_stack_low_water_mark", "hash": "299e52ca3a103204ac1aefeab75162a8be141857", "variant": 4262009494, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 65011720}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [], "symbols": [{"name": "sceGsGetGParam", "hash": "2a51c093207f3b6546ea5ac91d4ae4a6999eaed5", "variant": 3555143340, "library": "libgraph"}, {"name": "sceSifGetDataTable", "hash": "2a51c093207f3b6546ea5ac91d4ae4a6999eaed5", "variant": 3555143340, "library": "libkernl"}, {"name": "what__C9bad_alloc", "hash": "2a51c093207f3b6546ea5ac91d4ae4a6999eaed5", "variant": 3555143340, "library": "libgcc"}, {"name": "_localeconv_r", "hash": "2a51c093207f3b6546ea5ac91d4ae4a6999eaed5", "variant": 3555143340, "library": "libc"}, {"name": "sceHiGsDisplayStatus", "hash": "2a51c093207f3b6546ea5ac91d4ae4a6999eaed5", "variant": 3555143340, "library": "libhig"}, {"name": "sceHiGetErrStatePtr", "hash": "2a51c093207f3b)PS2SDB", 8192}, + std::string_view{R"PS2SDB(6546ea5ac91d4ae4a6999eaed5", "variant": 3555143340, "library": "libhig"}, {"name": "what__Q23std9exceptionCFv", "hash": "2a51c093207f3b6546ea5ac91d4ae4a6999eaed5", "variant": 3555143340, "library": "mslgcc_ps2"}, {"name": "what__Q23std9bad_allocCFv", "hash": "2a51c093207f3b6546ea5ac91d4ae4a6999eaed5", "variant": 3555143340, "library": "mslgcc_ps2"}, {"name": "what__Q23std13bad_exceptionCFv", "hash": "2a51c093207f3b6546ea5ac91d4ae4a6999eaed5", "variant": 3555143340, "library": "mslgcc_ps2"}, {"name": "what__Q23std10bad_typeidCFv", "hash": "2a51c093207f3b6546ea5ac91d4ae4a6999eaed5", "variant": 3555143340, "library": "mslgcc_ps2"}, {"name": "what__Q23std8bad_castCFv", "hash": "2a51c093207f3b6546ea5ac91d4ae4a6999eaed5", "variant": 3555143340, "library": "mslgcc_ps2"}, {"name": "__sce_eenet_get_dns", "hash": "2a51c093207f3b6546ea5ac91d4ae4a6999eaed5", "variant": 3555143340, "library": "libeenet"}, {"name": "__sceEENetIpstat", "hash": "2a51c093207f3b6546ea5ac91d4ae4a6999eaed5", "variant": 3555143340, "library": "libeenet"}, {"name": "__sceEENetTcpstat", "hash": "2a51c093207f3b6546ea5ac91d4ae4a6999eaed5", "variant": 3555143340, "library": "libeenet"}, {"name": "__sceEENetUdpstat", "hash": "2a51c093207f3b6546ea5ac91d4ae4a6999eaed5", "variant": 3555143340, "library": "libeenet"}, {"name": "BIO_f_buffer", "hash": "2a51c093207f3b6546ea5ac91d4ae4a6999eaed5", "variant": 3555143340, "library": "libhttps"}, {"name": "BN_value_one", "hash": "2a51c093207f3b6546ea5ac91d4ae4a6999eaed5", "variant": 3555143340, "library": "libhttps"}, {"name": "BN_ME_METH_word", "hash": "2a51c093207f3b6546ea5ac91d4ae4a6999eaed5", "variant": 3555143340, "library": "libhttps"}, {"name": "BN_get_default_exp_table", "hash": "2a51c093207f3b6546ea5ac91d4ae4a6999eaed5", "variant": 3555143340, "library": "libhttps"}, {"name": "BIO_s_file", "hash": "2a51c093207f3b6546ea5ac91d4ae4a6999eaed5", "variant": 3555143340, "library": "libhttps"}, {"name": "BIO_s_mem", "hash": "2a51c093207f3b6546ea5ac91d4ae4a6999eaed5", "variant": 3555143340, "library": "libhttps"}, {"name": "BIO_s_socket", "hash": "2a51c093207f3b6546ea5ac91d4ae4a6999eaed5", "variant": 3555143340, "library": "libhttps"}, {"name": "X509_LOOKUP_hash_dir", "hash": "2a51c093207f3b6546ea5ac91d4ae4a6999eaed5", "variant": 3555143340, "library": "libhttps"}, {"name": "X509_LOOKUP_file", "hash": "2a51c093207f3b6546ea5ac91d4ae4a6999eaed5", "variant": 3555143340, "library": "libhttps"}, {"name": "EVP_des_ede_cbc", "hash": "2a51c093207f3b6546ea5ac91d4ae4a6999eaed5", "variant": 3555143340, "library": "libhttps"}, {"name": "EVP_des_ede3_cbc", "hash": "2a51c093207f3b6546ea5ac91d4ae4a6999eaed5", "variant": 3555143340, "library": "libhttps"}, {"name": "EVP_des_cbc", "hash": "2a51c093207f3b6546ea5ac91d4ae4a6999eaed5", "variant": 3555143340, "library": "libhttps"}, {"name": "EVP_rc2_cbc", "hash": "2a51c093207f3b6546ea5ac91d4ae4a6999eaed5", "variant": 3555143340, "library": "libhttps"}, {"name": "EVP_rc2_64_cbc", "hash": "2a51c093207f3b6546ea5ac91d4ae4a6999eaed5", "variant": 3555143340, "library": "libhttps"}, {"name": "EVP_rc2_40_cbc", "hash": "2a51c093207f3b6546ea5ac91d4ae4a6999eaed5", "variant": 3555143340, "library": "libhttps"}, {"name": "EVP_enc_null", "hash": "2a51c093207f3b6546ea5ac91d4ae4a6999eaed5", "variant": 3555143340, "library": "libhttps"}, {"name": "EVP_rc4", "hash": "2a51c093207f3b6546ea5ac91d4ae4a6999eaed5", "variant": 3555143340, "library": "libhttps"}, {"name": "EVP_rc4_40", "hash": "2a51c093207f3b6546ea5ac91d4ae4a6999eaed5", "variant": 3555143340, "library": "libhttps"}, {"name": "EVP_dss1", "hash": "2a51c093207f3b6546ea5ac91d4ae4a6999eaed5", "variant": 3555143340, "library": "libhttps"}, {"name": "EVP_md2", "hash": "2a51c093207f3b6546ea5ac91d4ae4a6999eaed5", "variant": 3555143340, "library": "libhttps"}, {"name": "EVP_md5", "hash": "2a51c093207f3b6546ea5ac91d4ae4a6999eaed5", "variant": 3555143340, "library": "libhttps"}, {"name": "EVP_md5_digest", "hash": "2a51c093207f3b6546ea5ac91d4ae4a6999eaed5", "variant": 3555143340, "library": "libhttps"}, {"name": "EVP_sha1_digest", "hash": "2a51c093207f3b6546ea5ac91d4ae4a6999eaed5", "variant": 3555143340, "library": "libhttps"}, {"name": "EVP_sha1", "hash": "2a51c093207f3b6546ea5ac91d4ae4a6999eaed5", "variant": 3555143340, "library": "libhttps"}, {"name": "MD2_options", "hash": "2a51c093207f3b6546ea5ac91d4ae4a6999eaed5", "variant": 3555143340, "library": "libhttps"}, {"name": "OP_all_funcs", "hash": "2a51c093207f3b6546ea5ac91d4ae4a6999eaed5", "variant": 3555143340, "library": "libhttps"}, {"name": "OP_read_funcs", "hash": "2a51c093207f3b6546ea5ac91d4ae4a6999eaed5", "variant": 3555143340, "library": "libhttps"}, {"name": "PK_METH_dh", "hash": "2a51c093207f3b6546ea5ac91d4ae4a6999eaed5", "variant": 3555143340, "library": "libhttps"}, {"name": "PK_METH_rsa_pkcs1", "hash": "2a51c093207f3b6546ea5ac91d4ae4a6999eaed5", "variant": 3555143340, "library": "libhttps"}, {"name": "PK_METH_rsa_pkcs1_SSLv23", "hash": "2a51c093207f3b6546ea5ac91d4ae4a6999eaed5", "variant": 3555143340, "library": "libhttps"}, {"name": "RC4_options", "hash": "2a51c093207f3b6546ea5ac91d4ae4a6999eaed5", "variant": 3555143340, "library": "libhttps"}, {"name": "OP_rsa_pkcs1_private_key_decode", "hash": "2a51c093207f3b6546ea5ac91d4ae4a6999eaed5", "variant": 3555143340, "library": "libhttps"}, {"name": "OP_rsa_pkcs1_public_key_decode", "hash": "2a51c093207f3b6546ea5ac91d4ae4a6999eaed5", "variant": 3555143340, "library": "libhttps"}, {"name": "OP_rsa_pkcs1_public_key_encode", "hash": "2a51c093207f3b6546ea5ac91d4ae4a6999eaed5", "variant": 3555143340, "library": "libhttps"}, {"name": "sslv3_base_method", "hash": "2a51c093207f3b6546ea5ac91d4ae4a6999eaed5", "variant": 3555143340, "library": "libhttps"}, {"name": "get_sslc_global", "hash": "2a51c093207f3b6546ea5ac91d4ae4a6999eaed5", "variant": 3555143340, "library": "libhttps"}, {"name": "tlsv1_base_method", "hash": "2a51c093207f3b6546ea5ac91d4ae4a6999eaed5", "variant": 3555143340, "library": "libhttps"}, {"name": "X509_get_default_private_dir", "hash": "2a51c093207f3b6546ea5ac91d4ae4a6999eaed5", "variant": 3555143340, "library": "libhttps"}, {"name": "X509_get_default_cert_area", "hash": "2a51c093207f3b6546ea5ac91d4ae4a6999eaed5", "variant": 3555143340, "library": "libhttps"}, {"name": "X509_get_default_cert_dir", "hash": "2a51c093207f3b6546ea5ac91d4ae4a6999eaed5", "variant": 3555143340, "library": "libhttps"}, {"name": "X509_get_default_cert_file", "hash": "2a51c093207f3b6546ea5ac91d4ae4a6999eaed5", "variant": 3555143340, "library": "libhttps"}, {"name": "X509_get_default_cert_dir_env", "hash": "2a51c093207f3b6546ea5ac91d4ae4a6999eaed5", "variant": 3555143340, "library": "libhttps"}, {"name": "X509_get_default_cert_file_env", "hash": "2a51c093207f3b6546ea5ac91d4ae4a6999eaed5", "variant": 3555143340, "library": "libhttps"}, {"name": "X509_asn1_meth", "hash": "2a51c093207f3b6546ea5ac91d4ae4a6999eaed5", "variant": 3555143340, "library": "libhttps"}]}}, {"match": {"value": 2889875456, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [], "symbols": [{"name": "sceResetttyinit", "hash": "ad519239883ac4b9a4f922906bdcfe8b22f333cd", "variant": 3555143340, "library": "libkernl"}, {"name": "sceHiDMARegistClear", "hash": "ad519239883ac4b9a4f922906bdcfe8b22f333cd", "variant": 3555143340, "library": "libhig"}, {"name": "sceSifMExitRpc", "hash": "ad519239883ac4b9a4f922906bdcfe8b22f333cd", "variant": 3555143340, "library": "libmrpc"}, {"name": "__sceEENetsppp_init", "hash": "ad519239883ac4b9a4f922906bdcfe8b22f333cd", "variant": 3555143340, "library": "libeenet"}, {"name": "__sceEENetraw_init", "hash": "ad519239883ac4b9a4f922906bdcfe8b22f333cd", "variant": 3555143340, "library": "libeenet"}, {"name": "BN_bnme_clear", "hash": "ad519239883ac4b9a4f922906bdcfe8b22f333cd", "variant": 3555143340, "library": "libhttps"}]}}, {"match": {"value": 2890137600, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [], "symbols": [{"name": "sceSdCallBack", "hash": "379568001121d67192b561489fbcf0e0086b0eb3", "variant": 3555143340, "library": "libsdr"}, {"name": "sceSpu2RemoteCallBack", "hash": "379568001121d67192b5)PS2SDB", 8192}, + std::string_view{R"PS2SDB(61489fbcf0e0086b0eb3", "variant": 3555143340, "library": "librspu2"}, {"name": "sceNetcnfifSetFNoDecode", "hash": "379568001121d67192b561489fbcf0e0086b0eb3", "variant": 3555143340, "library": "netcnfif"}, {"name": "__sceEENetsrandom", "hash": "379568001121d67192b561489fbcf0e0086b0eb3", "variant": 3555143340, "library": "libeenet"}, {"name": "__sceEENetres_send_setqhook", "hash": "379568001121d67192b561489fbcf0e0086b0eb3", "variant": 3555143340, "library": "libeenet"}, {"name": "__sceEENetres_send_setrhook", "hash": "379568001121d67192b561489fbcf0e0086b0eb3", "variant": 3555143340, "library": "libeenet"}, {"name": "DH_set_default_meth", "hash": "379568001121d67192b561489fbcf0e0086b0eb3", "variant": 3555143340, "library": "libhttps"}, {"name": "R_time_set_func", "hash": "379568001121d67192b561489fbcf0e0086b0eb3", "variant": 3555143340, "library": "libhttps"}, {"name": "R_time_set_offset_func", "hash": "379568001121d67192b561489fbcf0e0086b0eb3", "variant": 3555143340, "library": "libhttps"}, {"name": "R_time_set_cmp_func", "hash": "379568001121d67192b561489fbcf0e0086b0eb3", "variant": 3555143340, "library": "libhttps"}, {"name": "R_time_set_import_func", "hash": "379568001121d67192b561489fbcf0e0086b0eb3", "variant": 3555143340, "library": "libhttps"}, {"name": "R_time_set_export_func", "hash": "379568001121d67192b561489fbcf0e0086b0eb3", "variant": 3555143340, "library": "libhttps"}, {"name": "RSA_set_default_meth", "hash": "379568001121d67192b561489fbcf0e0086b0eb3", "variant": 3555143340, "library": "libhttps"}, {"name": "RSA_set_sign_cb", "hash": "379568001121d67192b561489fbcf0e0086b0eb3", "variant": 3555143340, "library": "libhttps"}, {"name": "RSA_set_ASN1_OCTET_sign_cb", "hash": "379568001121d67192b561489fbcf0e0086b0eb3", "variant": 3555143340, "library": "libhttps"}, {"name": "RSA_set_verify_cb", "hash": "379568001121d67192b561489fbcf0e0086b0eb3", "variant": 3555143340, "library": "libhttps"}, {"name": "RSA_set_ASN1_OCTET_verify_cb", "hash": "379568001121d67192b561489fbcf0e0086b0eb3", "variant": 3555143340, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 8237}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 40, "offset": 52, "next": [], "symbols": [{"name": "sceDevConsInit", "hash": "c634212ebed8bb841a461f7b4fcd305e8c10f42e", "variant": 3555143340, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 666763248}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2353201152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 274726917}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707456}, "child": {"skip": 36, "offset": 56, "next": [], "symbols": [{"name": "isceSifSetDma", "hash": "e5e286a2d8cdd37b77b255ad2381d43d1b741cb2", "variant": 3562163468, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 274726919}, "child": {"skip": 52, "offset": 72, "next": [], "symbols": [{"name": "_pad_intr_hdr", "hash": "492b1f488d41b36cc69cf47e5ced1d20b1e58782", "variant": 419683018, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 274726916}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707456}, "child": {"skip": 24, "offset": 44, "next": [], "symbols": [{"name": "_sceCd_Poff_Intr", "hash": "6af865bcc23c72da31a8d4764f16011cbd445e93", "variant": 3005940654, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 408944644}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707456}, "child": {"skip": 4, "offset": 24, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "scePrintf"}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 40, "offset": 72, "next": [], "symbols": [{"name": "sceCdStStat", "hash": "eea59dd06431d2779f111d516121a861a30a01d4", "variant": 890584835, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "printf"}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 40, "offset": 72, "next": [], "symbols": [{"name": "sceCdStStat", "hash": "eea59dd06431d2779f111d516121a861a30a01d4", "variant": 2665916953, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707456}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 6354953}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 3753836544}, "child": {"skip": 8, "offset": 36, "next": [], "symbols": [{"name": "__terminate", "hash": "e7071523f021aba02e257a327b60cc88961f6270", "variant": 3555143340, "library": "libgcc"}]}}], "symbols": [{"name": "terminate__Fv", "hash": "fd57dd2a158bdaa16db7d46b15ff6a25feead2ff", "variant": 3555143340, "library": "libgcc"}, {"name": "unexpected__Fv", "hash": "fd57dd2a158bdaa16db7d46b15ff6a25feead2ff", "variant": 3555143340, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 274726915}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 604110849}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 6354953}, "child": {"skip": 16, "offset": 44, "next": [], "symbols": [{"name": "R_lock_ctrl", "hash": "9d5255d4e28119f40cda27048ec7a271324b8ca2", "variant": 3555143340, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 4141}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 6354953}, "child": {"skip": 16, "offset": 44, "next": [], "symbols": [{"name": "RSA_sign_ASN1_OCTET_STRING", "hash": "31532e70d3d625a8b328bce00c0a79f55b95125f", "variant": 3555143340, "library": "libhttps"}, {"name": "RSA_verify_ASN1_OCTET_STRING", "hash": "31532e70d3d625a8b328bce00c0a79f55b95125f", "variant": 3555143340, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604110851}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 274857989}, "child": {"skip": 40, "offset": 60, "next": [], "symbols": [{"name": "_decodeOrSkip", "hash": "4f9189a56926f4de28ad73b74191acf3eb363cdd", "variant": 1194394165, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 608370688, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2353266688, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 44, "offset": 60, "next": [], "symbols": [{"name": "GetSystemCallTableEntry", "hash": "ff7ba10bf970fe8a90018a3529ba9a5a8170c8b4", "variant": 1990172767, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 2353266688, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707456}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "DeleteSema"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "DeleteSema"}}, "child": {"skip": 48, "offset": 80, "next": [], "symbols": [{"name": "cdvd_exit", "hash": "5eb601c62432a2ae7065c061b6d911925d5daa99", "variant": 3665677822, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 3753836544}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4141}, "child": {"skip": 8, "offset": 40, "next": [], "symbols": [{"name": "_sce_eenet_unbind_ent_devm_rpcs", "hash": "538039083ec32410c1ee646d66ac564125c98845", "variant": 1548200371, "library": "libeenet"}]}}], "symbols": []}}], "symbols": [)PS2SDB", 8192}, + std::string_view{R"PS2SDB(]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_localeconv_r"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 0}, "child": {"skip": 12, "offset": 36, "next": [], "symbols": [{"name": "localeconv", "hash": "962b2bfbb1cb7206515a99984a92d47334361f8e", "variant": 2109077363, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_init_signal_r"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 0}, "child": {"skip": 12, "offset": 36, "next": [], "symbols": [{"name": "_init_signal", "hash": "962b2bfbb1cb7206515a99984a92d47334361f8e", "variant": 777580576, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "iSignalSema"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 0}, "child": {"skip": 20, "offset": 44, "next": [], "symbols": [{"name": "sceMc2SifCallback", "hash": "10031d2e07154789fe0129bc2b111d1dd5e010ca", "variant": 2524741193, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "ReleaseTimerAlarm"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 0}, "child": {"skip": 60, "offset": 84, "next": [], "symbols": [{"name": "__sceEENetkernclock_stop", "hash": "30efcd89bc488ba09a924d0bb57830f460935b5a", "variant": 2783311155, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "SignalSema"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 0}, "child": {"skip": 16, "offset": 40, "next": [], "symbols": [{"name": "_sce_eenetctl_signalevent", "hash": "538039083ec32410c1ee646d66ac564125c98845", "variant": 2120710595, "library": "eenetctl"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "WaitSema"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 0}, "child": {"skip": 16, "offset": 40, "next": [], "symbols": [{"name": "_sce_eenetctl_waitsetconfig", "hash": "538039083ec32410c1ee646d66ac564125c98845", "variant": 43687085, "library": "eenetctl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2353332224, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 608567296, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707456}, "child": {"skip": 96, "offset": 116, "next": [], "symbols": [{"name": "__sceEENetin_purgemkludge", "hash": "31e6de183a488997fde4d91cb93448570aa813c0", "variant": 2429592138, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 278921224}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707456}, "child": {"skip": 40, "offset": 60, "next": [], "symbols": [{"name": "_sceCd_Poff_Intr", "hash": "2d366e150dba40274127404c32214d71fa03647e", "variant": 1573886893, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 4290707456}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "localtime_r"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 614793340}, "child": {"skip": 12, "offset": 36, "next": [], "symbols": [{"name": "localtime", "hash": "8d77ffbd44e13d3856fb3cf5728c68c11b7e34b8", "variant": 677308551, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "asctime_r"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 614793312}, "child": {"skip": 12, "offset": 36, "next": [], "symbols": [{"name": "asctime", "hash": "e324d1a9e70437f5f6a14e4845490a3dd6be12c5", "variant": 2375598887, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707464}, "child": {"skip": 28, "offset": 48, "next": [], "symbols": [{"name": "mallinfo", "hash": "a7838e89b0663e3464046cf22cdf3cc1beb9a28f", "variant": 2351349949, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 278921227}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707456}, "child": {"skip": 72, "offset": 92, "next": [], "symbols": [{"name": "sceEENetUnregDriver", "hash": "2bd63e6e302bb87343ee1646ad9707c65e909499", "variant": 1802178886, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2353266688, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 16, "offset": 32, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "scePrintf"}}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 40, "offset": 80, "next": [], "symbols": [{"name": "sceCdStPause", "hash": "a1f578d83c935cc5c3e3579b28d10748af7c6af0", "variant": 551053375, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "printf"}}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 40, "offset": 80, "next": [], "symbols": [{"name": "sceCdStPause", "hash": "a1f578d83c935cc5c3e3579b28d10748af7c6af0", "variant": 2308771235, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707456}, "child": {"skip": 32, "offset": 48, "next": [], "symbols": [{"name": "_$_13bad_exception", "hash": "a96cc119edc2c298d8f4796c995baa0693b1aa9c", "variant": 1712255952, "library": "libgcc"}, {"name": "_$_9exception", "hash": "a96cc119edc2c298d8f4796c995baa0693b1aa9c", "variant": 1712255952, "library": "libgcc"}, {"name": "_$_9bad_alloc", "hash": "a96cc119edc2c298d8f4796c995baa0693b1aa9c", "variant": 1712255952, "library": "libgcc"}, {"name": "_$_10bad_typeid", "hash": "a96cc119edc2c298d8f4796c995baa0693b1aa9c", "variant": 1712255952, "library": "libgcc"}, {"name": "_$_8bad_cast", "hash": "a96cc119edc2c298d8f4796c995baa0693b1aa9c", "variant": 1712255952, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 2353397760, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707456}, "child": {"skip": 20, "offset": 36, "next": [], "symbols": [{"name": "strtok", "hash": "a0ff8d9cae0be4d061ae464ed0f25a1a535a0bc4", "variant": 3985103567, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 3695509504, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707456}, "child": {"skip": 32, "offset": 48, "next": [], "symbols": [{"name": "sceHiPlugTim2Num", "hash": "f4b3513a1d10ed02e5f28c38eb3f60e21c3fb3f5", "variant": 2322680357, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 2353135616, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 272629765}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707456}, "child": {"skip": 8, "offset": 28, "next": [{"match": {"value": 268435460}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 3753836544}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__sceEENeteenet_malloc_internal"}}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 0}, "child": {"skip": 12, "offset": 56, "next": [], "symbols": [{"name": "sceEENetMalloc", "hash": "1da0524b9eadace6bdf5dbd7803c4879d79faaaf", "variant": 513887564, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__sceEENeteenet_realloc_internal"}}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 0}, "child": {"skip": 12, "offset": 56, "next": [], "symbols": [{"name": "sceEENetRealloc", "hash": "1da0524b9eadace6bdf5dbd7803c4879d79faaaf", "variant": 2571450415, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__sceEENeteenet_memalign_internal"}}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 0}, "child": {"skip": 12, "offset": 56, "next": [], "symbols": [{"name": "sceEENetMemalign", "hash": "1da0524b9eadace6bdf5dbd7803c4879d79faaaf", "variant": 3966815958, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "malloc"}}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 0}, "child": {"skip": 12, "offset": 56, "next": [], "symbols": [{"name": "xmalloc", "hash": "1da0524b9eadace6bdf5dbd7803c4879d79faaaf", "variant": 94792214, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "realloc"}}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 0}, "child": {"skip": 12, "offset": 56, "next": [], "symbols": [{"name": "xrealloc", "hash": "1da0524b9eadace6bdf5dbd7803c4879d79faaaf", "variant": 2920044417, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 268435459}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 3753836544}, "child": {"skip": 16, "offset": 52, "next": [], "symbols": [{"name": "R_time", "hash": "a77c923e86f60e52e69e0f6d87ab8ad64aa9b573", "variant": 3555143340, "library": "libhttps"}, {"name": "R_time_offset", "hash": "a77c923e86f60e52e69e0f6d87ab8ad64aa9b573", "variant": 3555143340, "library": "libhttps"}, {"name": "R_time_cmp", "hash": "a77c923e86f60e52e69e0f6d87ab8ad64aa9b573", "variant": 3555143340, "library": "libhttps"}, {"name": "R_time_import", "hash": "a77c923e86f60e52e69e0f6d87ab8ad64aa9b573", "variant": 3555143340, "library": "libhttps"}, {"name": "R_time_export", "hash": "a77c923e86f60e52e69e0f6d87ab8ad64aa9b573", "variant": 3555143340, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 339738628}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707456}, "child": {"skip": 4, "offset": 24, "next": [{"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "__sceEENeteenet_free_internal"}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 666697744}, "child": {"skip": 20, "offset": 52, "next": [], "symbols": [{"name": "sceEENetFree", "hash": "97cad9d41148fa45e1a7686b7dffc3d967f065a4", "variant": 2252442975, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "free"}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 666697744}, "child": {"skip": 20, "offset": 52, "next": [], "symbols": [{"name": "xfree", "hash": "97cad9d41148fa45e1a7686b7dffc3d967f065a4", "variant": 4144061142, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 339738633}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707456}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 604241946}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 604307588}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604373006}, "child": {"skip": 40, "offset": 72, "next": [], "symbols": [{"name": "SSLCERT_new", "hash": "c9dd1d16cb74a41f9463323ba83c32d0b64a2988", "variant": 2701440243, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604307606}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604373006}, "child": {"skip": 40, "offset": 72, "next": [], "symbols": [{"name": "SSLCERT_verify", "hash": "57ab4365e2cd4d45aad70db39487908feff5d0ec", "variant": 2701440243, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604307566}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604373006}, "child": {"skip": 40, "offset": 72, "next": [], "symbols": [{"name": "SSLCERT_digest", "hash": "84135a9d244ea2cdfa8d7336744b1b99b561b977", "variant": 2701440243, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604307562}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604373006}, "child": {"skip": 40, "offset": 72, "next": [], "symbols": [{"name": "SSLCERT_to_binary", "hash": "93753bb3ea0bc956b24e2043e0395e5da8f058a5", "variant": 2701440243, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604307561}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604373006}, "child": {"skip": 40, "offset": 72, "next": [], "symbols": [{"name": "SSLCERT_from_binary", "hash": "70f52a99a8663cbe1cb15463df9801db0d9d55dc", "variant": 2701440243, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604307575}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604373006}, "child": {"skip": 40, "offset": 72, "next": [], "symbols": [{"name": "SSLCERT_get_signature_type", "hash": "be8cf9729c3dbe5b6be129e928eae8750aba821f", "variant": 2701440243, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604307605}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604373006}, "child": {"skip": 40, "offset": 72, "next": [], "symbols": [{"name": "SSLCERT_subject_name_cmp", "hash": "66705356a255417291319bedf6f6e9eb3e4e477b", "variant": 2701440243, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604307570}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604373006}, "child": {"skip": 40, "offset": 72, "next": [], "symbols": [{"name": "SSLCERT_get_issuer_name", "hash": "2b7a110b67f751b644bedbff2b1782341b7be289", "variant": 2701440243, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604307576}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604373006}, "child": {"skip": 40, "offset": 72, "next": [], "symbols": [{"name": "SSLCERT_get_subject_name", "hash": "ee5925920b99259b567b2d1e4e1df19d9776f530", "variant": 2701440243, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604307573}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604373006}, "child": {"skip": 40, "offset": 72, "next": [], "symbols": [{"name": "SSLCERT_get_pubkey", "hash": "57d5aef1bb22112d89c274ceb3ce6e6bd119c4d2", "variant": 2701440243, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604307586}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604373006}, "child": {"skip": 40, "offset": 72, "next": [], "symbols": [{"name": "SSLCERT_NAME_new", "hash": "31d4b06554cdeef5e0a155cd5eb1398df8a62743", "variant": 2701440243, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604307578}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604373006}, "child": {"skip": 40, "offset": 72, "next": [], "symbols": [{"name": "SSLCERT_NAME_dup", "hash": "5c1aa9e14a0414a954de540e5f3c3cee1621fedc", "variant": 2701440243, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604307585}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604373006}, "child": {"skip": 40, "offset": 72, "next": [], "symbols": [{"name": "SSLCERT_NAME_hash", "hash": "cfef84f6c5f5af23b11a941840196d24eca58cf4", "variant": 2701440243, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604307577}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604373006}, "child": {"skip": 40, "offset": 72, "next": [], "symbols": [{"name": "SSLCERT_NAME_cmp", "hash": "0ba586e7e0cc5cfa46a47bd09ef035855ff190f6", "variant": 2701440243, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604307581}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604373006}, "child": {"skip": 40, "offset": 72, "next": [], "symbols": [{"name": "SSLCERT_NAME_from_binary", )PS2SDB", 8192}, + std::string_view{R"PS2SDB("hash": "dd28c632beeb8bff685547da600e437e81eb9141", "variant": 2701440243, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604307587}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604373006}, "child": {"skip": 40, "offset": 72, "next": [], "symbols": [{"name": "SSLCERT_NAME_to_binary", "hash": "8a82dbe87298caf9ba3cb07bb6f41bde193632de", "variant": 2701440243, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604307583}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604373006}, "child": {"skip": 40, "offset": 72, "next": [], "symbols": [{"name": "SSLCERT_NAME_get_entry_count", "hash": "28e15b0126de7afaed236983e8099afed53906bf", "variant": 2701440243, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604307582}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604373006}, "child": {"skip": 40, "offset": 72, "next": [], "symbols": [{"name": "SSLCERT_NAME_get_entry", "hash": "de8992c24c7d1e8193f363c038d651581a082ad1", "variant": 2701440243, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604307604}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604373006}, "child": {"skip": 40, "offset": 72, "next": [], "symbols": [{"name": "SSLCERT_STORE_new", "hash": "e7269f047757e5826899a62eb33e8b01d01ae812", "variant": 2701440243, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604307559}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604373006}, "child": {"skip": 40, "offset": 72, "next": [], "symbols": [{"name": "SSLCERT_STORE_load_locations", "hash": "2b2ee76a830af238d8f510d4698c9f72aca76cb8", "variant": 2701440243, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604307560}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604373006}, "child": {"skip": 40, "offset": 72, "next": [], "symbols": [{"name": "SSLCERT_STORE_set_default_paths", "hash": "9ef6fc1024246a43aba0b8616a9fb3d048e08649", "variant": 2701440243, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604307603}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604373006}, "child": {"skip": 40, "offset": 72, "next": [], "symbols": [{"name": "SSLCERT_STORE_get_by_subject", "hash": "7b0c38eeb53709add47caa497656d7fe0213e35f", "variant": 2701440243, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604307609}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604373006}, "child": {"skip": 40, "offset": 72, "next": [], "symbols": [{"name": "SSLCERT_STORE_CTX_new", "hash": "639e0e3bf0e5b3d271beea1488060018f027d8d3", "variant": 2701440243, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604307558}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604373006}, "child": {"skip": 40, "offset": 72, "next": [], "symbols": [{"name": "SSLCERT_STORE_CTX_get_ex_new_index", "hash": "815148ccd202c3f68bc90ac996f673f5d9b2ce37", "variant": 2701440243, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604307594}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604373006}, "child": {"skip": 40, "offset": 72, "next": [], "symbols": [{"name": "SSLCERT_STORE_CTX_cleanup_ex_data", "hash": "4dfe50944035a348a1de30ac6ef06d2f3be105e7", "variant": 2701440243, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604307601}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604373006}, "child": {"skip": 40, "offset": 72, "next": [], "symbols": [{"name": "SSLCERT_STORE_CTX_set_ex_data", "hash": "a0d79a90ada63a9253ba339eb1fa3236bcffaef3", "variant": 2701440243, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604307598}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604373006}, "child": {"skip": 40, "offset": 72, "next": [], "symbols": [{"name": "SSLCERT_STORE_CTX_get_ex_data", "hash": "212f460880af3f14801b4052fedcadcaddf0e33c", "variant": 2701440243, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604307596}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604373006}, "child": {"skip": 40, "offset": 72, "next": [], "symbols": [{"name": "SSLCERT_STORE_CTX_get_error", "hash": "d361a3ceb0da012c6bcb4f9ff0550fdd95b103f9", "variant": 2701440243, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604307597}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604373006}, "child": {"skip": 40, "offset": 72, "next": [], "symbols": [{"name": "SSLCERT_STORE_CTX_get_error_depth", "hash": "38983db2cf758f5891fa1760823e35284d171113", "variant": 2701440243, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604307595}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604373006}, "child": {"skip": 40, "offset": 72, "next": [], "symbols": [{"name": "SSLCERT_STORE_CTX_get_current_cert", "hash": "bf338c13b15fb4eef12df16619d9818de878bccf", "variant": 2701440243, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604307567}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604373006}, "child": {"skip": 40, "offset": 72, "next": [], "symbols": [{"name": "SSLCERT_do_application_cb", "hash": "f70d985ebd9e762425f5ab5c2f70b0a4a0319dea", "variant": 2701440243, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604307556}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604373006}, "child": {"skip": 40, "offset": 72, "next": [], "symbols": [{"name": "SSLCERT_do_verify_cb", "hash": "f933d685a3c79306e6b674316188f375d9f5e9e5", "variant": 2701440243, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604307565}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604373006}, "child": {"skip": 40, "offset": 72, "next": [], "symbols": [{"name": "SSLCERT_check_private_key", "hash": "161e317b502c0b3105f44844431925bffc1b4502", "variant": 2701440243, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604307589}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604373006}, "child": {"skip": 40, "offset": 72, "next": [], "symbols": [{"name": "SSLCERT_PEM_read_bio_SSLCERT", "hash": "53a879f5397aae1c49086ad2bbec93a312642dc3", "variant": 2701440243, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604307569}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604373006}, "child": {"skip": 40, "offset": 72, "next": [], "symbols": [{"name": "SSLCERT_from_binary_bio", "hash": "eb9b0360e44ad9cd0a624c2948b523779cb76179", "variant": 2701440243, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604307591}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604373006}, "child": {"skip": 40, "offset": 72, "next": [], "symbols": [{"name": "SSLCERT_PKEY_new", "hash": "1801f7a585a1e1e5f4822f44d362fd40984393aa", "variant": 2701440243, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604307563}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604373006}, "child": {"skip": 40, "offset": 72, "next": [], "symbols": [{"name": "SSLCERT_PKEY_from_binary", "hash": "857505347f2326527ce5ec13cdfd186b06b5b1f9", "variant": 2701440243, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604307564}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604373006}, "child": {"skip": 40, "offset": 72, "next": [], "symbols": [{"name": "SSLCERT_PKEY_from_PUBKEY_binary", "hash": "9ebeccb23ec704f4f3c5a99c380ec404bea35a55", "variant": 2701440243, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604307607}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604373006}, "child": {"skip": 40, "offset": 72, "next": [], "symbols": [{"name": "SSLCERT_get_version", "hash": "69e254edd1b1e326b97804f7ad5847be2f2e5cd7", "variant": 2701440243, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 3753836544}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 604241946}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604307568}, "child": {"skip": )PS2SDB", 8192}, + std::string_view{R"PS2SDB(0, "offset": 32, "next": [{"match": {"value": 604373006}, "child": {"skip": 36, "offset": 72, "next": [], "symbols": [{"name": "SSLCERT_free", "hash": "a7c92d1f3468aefd1f81ed0eec6e862a844aeb5c", "variant": 2829429110, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604307592}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 604373006}, "child": {"skip": 36, "offset": 72, "next": [], "symbols": [{"name": "SSLCERT_reference_inc", "hash": "fe69dc169b01de6139d94069b5fb9a8b6b9ada8c", "variant": 2829429110, "library": "libhttps"}, {"name": "SSLCERT_PKEY_reference_inc", "hash": "fe69dc169b01de6139d94069b5fb9a8b6b9ada8c", "variant": 2829429110, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604307580}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 604373006}, "child": {"skip": 36, "offset": 72, "next": [], "symbols": [{"name": "SSLCERT_NAME_free", "hash": "1573381859a510c2eda980a11e6fc85a6be7e488", "variant": 2829429110, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604307602}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 604373006}, "child": {"skip": 36, "offset": 72, "next": [], "symbols": [{"name": "SSLCERT_STORE_free", "hash": "6d2d3e4804837ff61ae4c51b6fd95cd9d4061d63", "variant": 2829429110, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604307599}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 604373006}, "child": {"skip": 36, "offset": 72, "next": [], "symbols": [{"name": "SSLCERT_STORE_CTX_init", "hash": "bc605e0fa68a190408881a70e18fff41a3a42723", "variant": 2829429110, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604307608}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 604373006}, "child": {"skip": 36, "offset": 72, "next": [], "symbols": [{"name": "SSLCERT_STORE_CTX_free", "hash": "d8b67f161672ba1aa6ef0b56b64764776bafed11", "variant": 2829429110, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604307593}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 604373006}, "child": {"skip": 36, "offset": 72, "next": [], "symbols": [{"name": "SSLCERT_STORE_CTX_cleanup", "hash": "54c6999880f3fe2eb2dd6311bebaf0f967ec3e0f", "variant": 2829429110, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604307600}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 604373006}, "child": {"skip": 36, "offset": 72, "next": [], "symbols": [{"name": "SSLCERT_STORE_CTX_set_error", "hash": "c0d87974542cd4e97690eaaeedb08b0e4948f8ad", "variant": 2829429110, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604307590}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 604373006}, "child": {"skip": 36, "offset": 72, "next": [], "symbols": [{"name": "SSLCERT_PKEY_free", "hash": "bcb8d431219b11132d122c035b9be851c9827084", "variant": 2829429110, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 339738627}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707456}, "child": {"skip": 28, "offset": 48, "next": [], "symbols": [{"name": "SSLCERT_STORE_set_verify_cb", "hash": "29d692a9121b0036883a90b964ad5d20c96d2f4e", "variant": 3555143340, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 339738629}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707456}, "child": {"skip": 36, "offset": 56, "next": [], "symbols": [{"name": "R_thread_id", "hash": "08952e5caf24e856b71a8cdf89e4dd13b65c88c9", "variant": 222023413, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": "lmalloc"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2353266688, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 44, "offset": 60, "next": [], "symbols": [{"name": "sceHTTPLibTerminateMemory", "hash": "6d45c5ea23167b601513805d619377aff8a66848", "variant": 286216767, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 1006895103}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2353266688, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 56, "offset": 72, "next": [], "symbols": [{"name": "sceHiDMAMake_DBufStart", "hash": "6b2bcf5b98a9a271a679950b3f1cdab840c56269", "variant": 2573585637, "library": "libhig"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666763232}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2353332224, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 268416}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707472}, "child": {"skip": 32, "offset": 52, "next": [], "symbols": [{"name": "GetSystemCallEntry", "hash": "1611a7de0f7373d45f0050caf902c7a884101acc", "variant": 1582051288, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 4290707472}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 278921228}, "child": {"skip": 64, "offset": 84, "next": [], "symbols": [{"name": "_sceCd_Poff_Intr", "hash": "8f29f8b97715f54ac995c68b5e3d33f0f54a3278", "variant": 3337760854, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2353201152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 608501760, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707472}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 274726927}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289724416}, "child": {"skip": 92, "offset": 120, "next": [], "symbols": [{"name": "__deregister_frame_info", "hash": "9896f925021cc55b697400968e0052c55e7ec011", "variant": 4034150258, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 274726929}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289724416}, "child": {"skip": 100, "offset": 128, "next": [], "symbols": [{"name": "__deregister_frame_info", "hash": "24cf65da54119d9efff22b3f7edf08ef437762be", "variant": 1877141144, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707472}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 274726919}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289724416}, "child": {"skip": 48, "offset": 72, "next": [], "symbols": [{"name": "_pad_intr_hdr", "hash": "6ad48c074db2fcac538d8d59d7b10f63efe0459a", "variant": 419683018, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 274726921}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289724416}, "child": {"skip": 60, "offset": 84, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "DeleteSema"}}, "child": {"skip": 0, "offset": 88, "next": [{"match": {"value": 2382626816, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 12, "offset": 104, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceSifRemoveCmdHandler"}}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 881066002}, "child": {"skip": 16, "offset": 128, "next": [], "symbols": [{"name": "cdvd_exit", "hash": "a20545fd534d55cf49b66379bb0aa7f42522ab90", "variant": 1359423795, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 4227117}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceSifRemoveCmdHandler"}}, "child": {"skip": 36, "offset": 148, "next": [], "symbols": [{"name": "cdvd_exit", "hash": "2c871a7c7e8e226a9d7f5b354adb0ae55ef684c4", "variant": 2203224063, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 88, "next": [{"match)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "DeleteSema"}}, "child": {"skip": 68, "offset": 160, "next": [], "symbols": [{"name": "cdvd_exit", "hash": "b42afae5a30c429b192b3dbf65f20179d5230772", "variant": 1142382769, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 2382626816, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 88, "next": [{"match": {"value": 3753836560}, "child": {"skip": 12, "offset": 104, "next": [], "symbols": [{"name": "cdvd_exit", "hash": "a9f10bced96a35f94489d6fe24c6c2f48498d09b", "variant": 306077598, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 274726922}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289724416}, "child": {"skip": 156, "offset": 180, "next": [], "symbols": [{"name": "cdvd_exit", "hash": "714f74e05893c1a7fb969199d110f73e57897d93", "variant": 531792621, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 274726915}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289724416}, "child": {"skip": 68, "offset": 92, "next": [], "symbols": [{"name": "_sce_eenet_term_sifcmd_handler", "hash": "20c532bc5f2844d9f778a48369ea0311a4b2c8e7", "variant": 3646274271, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 3695575040, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 60827693}, "child": {"skip": 28, "offset": 44, "next": [], "symbols": [{"name": "sceHiPlugMicroGetData", "hash": "9a58778c7b069eb3a0829bcb562a01575b4ceecc", "variant": 2984214330, "library": "libhip"}, {"name": "sceHiPlugShadowBoxGetData", "hash": "9a58778c7b069eb3a0829bcb562a01575b4ceecc", "variant": 2984214330, "library": "libhip"}, {"name": "sceHiPlugCameraGetData", "hash": "9a58778c7b069eb3a0829bcb562a01575b4ceecc", "variant": 2984214330, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 2353135616, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 6189}, "child": {"skip": 180, "offset": 196, "next": [], "symbols": [{"name": "__sceEENetDriverRegTerm", "hash": "cadb31bb0759ccd13d2912ee703a8918b4cb4ec5", "variant": 4064328204, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 1006837760}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 52, "offset": 68, "next": [], "symbols": [{"name": "sceDeci2Open", "hash": "a4e5bbdc0dfde518fe224995f72760017cd47a2b", "variant": 2946870945, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 8398893}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2353266688, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 24, "offset": 40, "next": [], "symbols": [{"name": "getenv", "hash": "085ae66ef7a764cee3bc49d1e94c8870c6a97849", "variant": 2503145637, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 270464}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8523809}, "child": {"skip": 28, "offset": 48, "next": [], "symbols": [{"name": "_hig_sys_err", "hash": "1ace9adbfe680831d3937760b248141e983b67a7", "variant": 658197928, "library": "libhig"}, {"name": "_hig_dma_err", "hash": "1ace9adbfe680831d3937760b248141e983b67a7", "variant": 658197928, "library": "libhig"}, {"name": "_hig_gsmem_err", "hash": "1ace9adbfe680831d3937760b248141e983b67a7", "variant": 658197928, "library": "libhig"}, {"name": "_hig_gsdsp_err", "hash": "1ace9adbfe680831d3937760b248141e983b67a7", "variant": 658197928, "library": "libhig"}, {"name": "_hig_gsctx_err", "hash": "1ace9adbfe680831d3937760b248141e983b67a7", "variant": 658197928, "library": "libhig"}, {"name": "_hig_drw_err", "hash": "1ace9adbfe680831d3937760b248141e983b67a7", "variant": 658197928, "library": "libhig"}, {"name": "_hip_micro_err", "hash": "1ace9adbfe680831d3937760b248141e983b67a7", "variant": 658197928, "library": "libhip"}, {"name": "_hip_tex2d_err", "hash": "1ace9adbfe680831d3937760b248141e983b67a7", "variant": 658197928, "library": "libhip"}, {"name": "_hip_shape_err", "hash": "1ace9adbfe680831d3937760b248141e983b67a7", "variant": 658197928, "library": "libhip"}, {"name": "_hip_hrchy_err", "hash": "1ace9adbfe680831d3937760b248141e983b67a7", "variant": 658197928, "library": "libhip"}, {"name": "_hip_anime_err", "hash": "1ace9adbfe680831d3937760b248141e983b67a7", "variant": 658197928, "library": "libhip"}, {"name": "_hip_share_err", "hash": "1ace9adbfe680831d3937760b248141e983b67a7", "variant": 658197928, "library": "libhip"}, {"name": "_hip_tim2_err", "hash": "1ace9adbfe680831d3937760b248141e983b67a7", "variant": 658197928, "library": "libhip"}, {"name": "_hip_clutbump_err", "hash": "1ace9adbfe680831d3937760b248141e983b67a7", "variant": 658197928, "library": "libhip"}, {"name": "_hip_err", "hash": "1ace9adbfe680831d3937760b248141e983b67a7", "variant": 658197928, "library": "libhip"}, {"name": "_hip_fish_err", "hash": "1ace9adbfe680831d3937760b248141e983b67a7", "variant": 658197928, "library": "libhip"}, {"name": "_hip_refle_err", "hash": "1ace9adbfe680831d3937760b248141e983b67a7", "variant": 658197928, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 8527905}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 65011720}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2357329920}, "child": {"skip": 0, "offset": 24, "next": [], "symbols": [{"name": "sceSifGetSreg", "hash": "f17faf3a611157355539f328e83eb27d052ff2dd", "variant": 3555143340, "library": "libkernl"}]}}, {"match": {"value": 2894397440}, "child": {"skip": 0, "offset": 24, "next": [], "symbols": [{"name": "setLocalTbp", "hash": "56ae8e4ebe3a3f5ef58789cbbcf30ace1bcd4d68", "variant": 3555143340, "library": "libhip"}, {"name": "setLocalCbp", "hash": "56ae8e4ebe3a3f5ef58789cbbcf30ace1bcd4d68", "variant": 3555143340, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 10489901}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 28, "next": [], "symbols": [{"name": "sceSifSetSreg", "hash": "47760f568f1cf6a164f3df6775d057dbdc4b4d74", "variant": 3555143340, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666763216}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608567296, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1007099904}, "child": {"skip": 944, "offset": 960, "next": [], "symbols": [{"name": "_sceFs_Rcv_Intr", "hash": "cfd221066f605a33365e946f60a96166d7d2d9f4", "variant": 1775053899, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 2353201152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8402989}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707488}, "child": {"skip": 108, "offset": 128, "next": [], "symbols": [{"name": "sceSifAllocSysMemory", "hash": "140f1b18e5e9c3d6444b11a9261e355dbb8c967c", "variant": 4017622387, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 8400941}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707488}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 73465859}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289724432}, "child": {"skip": 212, "offset": 240, "next": [], "symbols": [{"name": "sceSifLoadIopHeap", "hash": "65d723d9237c44b92a8ab73bce7a0710f6a9756b", "variant": 878442437, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 4289724432}, "child": {"skip": 0, "o)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ffset": 24, "next": [{"match": {"value": 73400365}, "child": {"skip": 196, "offset": 224, "next": [], "symbols": [{"name": "sceSifLoadIopHeap", "hash": "47e0b128c1f078224516f5f177a411bbddc3e216", "variant": 980072411, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707488}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 73465859}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289724432}, "child": {"skip": 24, "offset": 48, "next": [{"match": {"value": 604307461}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 12333}, "child": {"skip": 56, "offset": 112, "next": [], "symbols": [{"name": "sceSifQueryMemSize", "hash": "bb648774b6ddaedeae8f013d2b0b30a1d9223b89", "variant": 2094307153, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604307462}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 12333}, "child": {"skip": 56, "offset": 112, "next": [], "symbols": [{"name": "sceSifQueryMaxFreeMemSize", "hash": "074885dccabab7207732714235939c616a1af8f6", "variant": 2094307153, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604307463}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 12333}, "child": {"skip": 56, "offset": 112, "next": [], "symbols": [{"name": "sceSifQueryTotalFreeMemSize", "hash": "62aef5e04d1dfcf1810323439fc93e915f3fe3aa", "variant": 2094307153, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724432}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 274726956}, "child": {"skip": 132, "offset": 156, "next": [{"match": {"value": 604504704}, "child": {"skip": 0, "offset": 160, "next": [{"match": {"value": 14698541}, "child": {"skip": 52, "offset": 216, "next": [], "symbols": [{"name": "sceDbcCreateSocket", "hash": "3af14785db8ae4b240bad9e057d86084d10b3a3c", "variant": 1650750187, "library": "libdbc"}]}}], "symbols": []}}, {"match": {"value": 604504208}, "child": {"skip": 0, "offset": 160, "next": [{"match": {"value": 14698541}, "child": {"skip": 52, "offset": 216, "next": [], "symbols": [{"name": "sceDbcCreateSocket", "hash": "dfb5c723ec3569a8184c9bf140b2e795b0c705a6", "variant": 1650750187, "library": "libdbc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8398893}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707488}, "child": {"skip": 116, "offset": 136, "next": [], "symbols": [{"name": "sceMcGetSlotMax", "hash": "a0413ec3bf8c59dfee6c4929b6351ebe7ed09d87", "variant": 3919277692, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2890137600, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10285}, "child": {"skip": 84, "offset": 100, "next": [], "symbols": [{"name": "__sceEENeteenet_tplsid_init", "hash": "ea297096adedcb239465dd163ca75fedd4821d44", "variant": 4243715123, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 608370688, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2889875456, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 80, "offset": 96, "next": [], "symbols": [{"name": "__sceEENetinit_threadinfo", "hash": "33d3e5d77bca4e0bff1e9e6b01a7a7d40abf12ae", "variant": 3052692163, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 3695706112, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 608370688, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 80, "offset": 96, "next": [], "symbols": [{"name": "sceEENetInetNtoa", "hash": "d2093f6af58e1fa171083773dcf0bae782fb8cd9", "variant": 2280516777, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666763200}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2353201152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10285}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707504}, "child": {"skip": 148, "offset": 168, "next": [{"match": {"value": 274727069}, "child": {"skip": 0, "offset": 172, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 756, "offset": 932, "next": [], "symbols": [{"name": "_sceFs_Rcv_Intr", "hash": "69ba3c8ca3483ccf7a6213940a5560dc85debeef", "variant": 2316473522, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 274727073}, "child": {"skip": 0, "offset": 172, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 772, "offset": 948, "next": [], "symbols": [{"name": "_sceFs_Rcv_Intr", "hash": "4093e2924b4c06ca9ae41e4cd5dd812109811295", "variant": 934263277, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 274727061}, "child": {"skip": 0, "offset": 172, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 724, "offset": 900, "next": [], "symbols": [{"name": "_sceFs_Rcv_Intr", "hash": "5da540c250c60ea2184889a6cc8d7d0fc0fc0787", "variant": 32828004, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855520}, "child": {"skip": 196, "offset": 216, "next": [], "symbols": [{"name": "_pictureDisplayExtension", "hash": "c6e730a1b3f5f9a93a3604de5e6c71db709b3ca8", "variant": 3221323235, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 341835780}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707504}, "child": {"skip": 4, "offset": 24, "next": [{"match": {"value": 268435484}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 876773377}, "child": {"skip": 120, "offset": 152, "next": [], "symbols": [{"name": "sceMc2CreateSocket", "hash": "a955544d846387c6c688014decbd5f25e803a6aa", "variant": 2964570525, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 268435474}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 876773377}, "child": {"skip": 80, "offset": 112, "next": [], "symbols": [{"name": "sceMc2SearchSocket", "hash": "7cad2deef981e342d7d867b4918dd6ad79654858", "variant": 130850856, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604176385}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 84, "offset": 100, "next": [], "symbols": [{"name": "sceHTTPInit", "hash": "c0b085f8d64de5529efd09c8bf08665619ed4ec2", "variant": 878756154, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666763056}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608370688, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 4, "offset": 16, "next": [{"match": {"value": 4289003672}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4227117}, "child": {"skip": 8, "offset": 32, "next": [{"match": {"value": 4289331392}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 610664452}, "child": {"skip": 472, "offset": 512, "next": [], "symbols": [{"name": "sceSdRemote", "hash": "47cb570c1e46d941fb55867ac76148db530af4c3", "variant": 2077720569, "library": "libsdr"}]}}], "symbols": []}}, {"match": {"value": 4289265848}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 610664452}, "child": {"skip": 488, "offset": 528, "next": [], "symbols": [{"name": "sceSdRemote", "hash": "ab8c2b77a44c7b44e4fbf1aa4b0e915990d2a9bf", "variant": 3375071926, "library": "libsdr"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289069216}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4227117}, )PS2SDB", 8192}, + std::string_view{R"PS2SDB("child": {"skip": 360, "offset": 384, "next": [], "symbols": [{"name": "sceSdRemote", "hash": "d62ccdeca1d87e5fd2ac46bb03e11343d6a31e8a", "variant": 2660693617, "library": "libsdr"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604241921}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2353201152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 342097926}, "child": {"skip": 32, "offset": 48, "next": [], "symbols": [{"name": "sceCdGetReadPos", "hash": "beaeb9017c169708c72456f351eda031a17d06a9", "variant": 3643516558, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "_ipuSetMPEG1"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2889875456, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [], "symbols": [{"name": "_initSeqAgain", "hash": "be2f94fccb629b757358e319352d6a3beb5cef90", "variant": 3038411223, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666763152}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2353201152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1007157248, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 324, "offset": 340, "next": [], "symbols": [{"name": "sceCdReadIOPm", "hash": "84b39d5f788210bc6e906dd7b26f21acdbc46816", "variant": 316081723, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 2353528832, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 604111368}, "child": {"skip": 68, "offset": 84, "next": [], "symbols": [{"name": "vsprintf", "hash": "d6f018a208db36422fe0225c01a966a1976a613c", "variant": 647618346, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006837760}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2353332224, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 48, "offset": 60, "next": [{"match": {"value": 274726915}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 0}, "child": {"skip": 16, "offset": 84, "next": [], "symbols": [{"name": "mceGetInfoApdx", "hash": "ab3dd4f1585281fff24f8a08c4425781d1002e49", "variant": 1194072603, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 274726916}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 20, "offset": 88, "next": [], "symbols": [{"name": "mceGetInfoApdx", "hash": "a23e960dfe692fcc292d1e28f9a26fbbfa31a516", "variant": 1717476122, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8402989}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608894976, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 112, "offset": 124, "next": [], "symbols": [{"name": "mceEncEcc", "hash": "3266b72bfc6f42a45cc9f79ebf849d4978b0b1b5", "variant": 3555143340, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 604176392}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 508, "offset": 520, "next": [], "symbols": [{"name": "init_reg_size_table", "hash": "449bee4b197916866940d87ee01cdb55877a16eb", "variant": 156586761, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 2894397440}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 8, "offset": 20, "next": [{"match": {"value": 8392749}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 32, "next": [], "symbols": [{"name": "__17__class_type_infoPCcPCQ217__class_type_info9base_infoUi", "hash": "9ea615facdefb8e5def3cac52b4ef9850aad49a7", "variant": 3555143340, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 65011720}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 8392749}, "child": {"skip": 0, "offset": 28, "next": [], "symbols": [{"name": "__14__si_type_infoPCcRC16__user_type_info", "hash": "1bf175d6599019196793aa415e5be9a96c3363dd", "variant": 3555143340, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666763072}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2353856512, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 604111368}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1006862335}, "child": {"skip": 52, "offset": 72, "next": [{"match": {"value": 3886809200}, "child": {"skip": 0, "offset": 76, "next": [{"match": {"value": 3886874740}, "child": {"skip": 36, "offset": 116, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "vfprintf"}}, "child": {"skip": 0, "offset": 120, "next": [{"match": {"value": 2947284992}, "child": {"skip": 20, "offset": 144, "next": [], "symbols": [{"name": "sprintf", "hash": "671644dd5685d41de8616e26531b8c5972972558", "variant": 1305852406, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "vfiprintf"}}, "child": {"skip": 0, "offset": 120, "next": [{"match": {"value": 2947284992}, "child": {"skip": 20, "offset": 144, "next": [], "symbols": [{"name": "siprintf", "hash": "671644dd5685d41de8616e26531b8c5972972558", "variant": 2121013561, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2812411916}, "child": {"skip": 0, "offset": 76, "next": [{"match": {"value": 2947285008}, "child": {"skip": 32, "offset": 112, "next": [], "symbols": [{"name": "sprintf", "hash": "f5be632473b5015820e7d58a6dbce450468c08d0", "variant": 2159132974, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006862335}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8413229}, "child": {"skip": 92, "offset": 112, "next": [], "symbols": [{"name": "sprintf", "hash": "4574a0d39d9d4a6a50ad902d6dca33517f7e06f3", "variant": 2159132974, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2353201152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707520}, "child": {"skip": 188, "offset": 204, "next": [], "symbols": [{"name": "__sceEENetlog", "hash": "77d35c256f0e92ab0c059dec5d0a7e3c8a63da44", "variant": 3300051078, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666763040}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2353856512, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 52, "offset": 64, "next": [{"match": {"value": 2812411916}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 2947285008}, "child": {"skip": 40, "offset": 112, "next": [], "symbols": [{"name": "sprintf", "hash": "16fe70c105028548d361e29f4547ed954cc9c5bc", "variant": 2159132974, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 3886809248}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 3886940324}, "child": {"skip": 56, "offset": 128, "next": [], "symbols": [{"name": "sprintf", "hash": "b80a5222fc352037cc25a169e416b77bfb0cf55f", "variant": 728204698, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006862335}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2353528832, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 72, "offset": 84, "next": [], "symbols": [{"name": "vsprintf", "hash": "0dec173a98ca55a298f6d9a7ff3ab78a6aed342f", "variant": 647618346, "library": "libc"}]}}], "symbols": []}}, {"match": {")PS2SDB", 8192}, + std::string_view{R"PS2SDB(value": 8405037}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 10504237}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 609026048, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2164719616}, "child": {"skip": 144, "offset": 164, "next": [], "symbols": [{"name": "strcasecmp", "hash": "21cedeef74de4a91c281ca038992eb17dfaa3ee9", "variant": 1491478457, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 608960512, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2433417216}, "child": {"skip": 148, "offset": 168, "next": [], "symbols": [{"name": "strcasecmp", "hash": "c78a47ec8ba428e9b95f1917989ab2fde2cfd7df", "variant": 1649411103, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 270396}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2353201152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 12, "offset": 24, "next": [], "symbols": [{"name": "srand", "hash": "d1687ebedd97b3b4de5b895f2089ec7a86027165", "variant": 3555143340, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 1006911942}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2353332224, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 36, "offset": 48, "next": [], "symbols": [{"name": "rand", "hash": "13544c4e9bfba186d43cdc24f25cc5f74c869e9b", "variant": 3555143340, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4460577}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2420244480, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 4, "offset": 16, "next": [{"match": {"value": 809631751}, "child": {"skip": 0, "offset": 20, "next": [], "symbols": [{"name": "isalnum", "hash": "11cd6d84467ac7554a7fdabf3ce99b4ad22937b1", "variant": 3555143340, "library": "libc"}]}}, {"match": {"value": 809631747}, "child": {"skip": 0, "offset": 20, "next": [], "symbols": [{"name": "isalpha", "hash": "50557d63b53a4ba8e92922d6819a7d19fa995905", "variant": 3555143340, "library": "libc"}]}}, {"match": {"value": 809631748}, "child": {"skip": 0, "offset": 20, "next": [], "symbols": [{"name": "isdigit", "hash": "f76d07dc132b0f5a5cc6e1aab12de489c859f2f1", "variant": 3555143340, "library": "libc"}]}}, {"match": {"value": 809631812}, "child": {"skip": 0, "offset": 20, "next": [], "symbols": [{"name": "isxdigit", "hash": "456d340e68011887f824ac6a5de2e10cf89a161b", "variant": 3555143340, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666763168}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2353201152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289986624}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8585242}, "child": {"skip": 56, "offset": 76, "next": [{"match": {"value": 310378514}, "child": {"skip": 0, "offset": 80, "next": [{"match": {"value": 1122560}, "child": {"skip": 736, "offset": 820, "next": [], "symbols": [{"name": "_motionComp0", "hash": "bd9660168096edb44e1dd35b5d41d1c773ba63e9", "variant": 167378385, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 310378517}, "child": {"skip": 0, "offset": 80, "next": [{"match": {"value": 1122560}, "child": {"skip": 736, "offset": 820, "next": [], "symbols": [{"name": "_motionComp0", "hash": "09e26eb67319709ecff6859a37dcc3cf86cba5ff", "variant": 3336978714, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707536}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289986624}, "child": {"skip": 220, "offset": 240, "next": [], "symbols": [{"name": "_pictureDisplayExtension", "hash": "abe2cebcfd237a628b3d572c7c17b61ca5419036", "variant": 1691089182, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 3695509504, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289921072}, "child": {"skip": 256, "offset": 272, "next": [], "symbols": [{"name": "sceHiPlugTex2DSize", "hash": "382581885cc69f920d7ccd07e09dc82595fda65b", "variant": 768873541, "library": "libhip"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4210733}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2353201152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 384, "offset": 396, "next": [], "symbols": [{"name": "_dualPrimeVector", "hash": "8bc76224b9c98b49975f73a417c9f48a22aa70f2", "variant": 613406256, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 604241923}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2353201152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1007091712, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 188, "offset": 208, "next": [], "symbols": [{"name": "_updateTempTackData", "hash": "3d4f88be7a3af65156f81ca95686b2eec4d2d2ee", "variant": 2136744032, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 274989085}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 204, "offset": 224, "next": [], "symbols": [{"name": "_updateTempTackData", "hash": "66caaaa3af178fdcb03812dcf322ce0172fc0f59", "variant": 2198026301, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604307458}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2353201152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 44, "offset": 56, "next": [], "symbols": [{"name": "_markOutput", "hash": "2f90bbbe04ab18a2f830c444fbeb7ebb9e61e83c", "variant": 347678984, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 8394797}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 666763232}, "child": {"skip": 76, "offset": 88, "next": [], "symbols": [{"name": "_Error", "hash": "eb31fb0cb6b9b7f7fba92f9935e8146b08de6ca3", "variant": 3959328324, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 1006833663}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4225069}, "child": {"skip": 200, "offset": 212, "next": [{"match": {"value": 65011720}, "child": {"skip": 0, "offset": 216, "next": [{"match": {"value": 2892103680}, "child": {"skip": 0, "offset": 220, "next": [], "symbols": [{"name": "_sendDataToIPU", "hash": "b333340a76ec84d2d2ec95af77f84d4b53c04b88", "variant": 3994435576, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2892103680}, "child": {"skip": 0, "offset": 216, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 224, "next": [], "symbols": [{"name": "_sendDataToIPU", "hash": "14efde6efffd0edc4eb627a119792979481574cf", "variant": 3994435576, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 814022655}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2353201152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "sceCccJIStoUCS", "hash": "0a7b19b8c2764b30ed35202178aede4711fb79fe", "variant": 3555143340, "library": "libccc"}]}}], "symbols": []}}, {"match": {"value": 604307520}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2353397760, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 32, "offset": 44, "next": [], "symbols": [{"name": "_get_slice", "hash": "2a504e041cc75de96373099fc40b93c16aa32cd8", "variant": 3555143340, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 12333}, "child": {"skip": 0, "offset": 8, "next": [{)PS2SDB", 8192}, + std::string_view{R"PS2SDB("match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 60, "offset": 72, "next": [], "symbols": [{"name": "sceHiGsMemRestSizePlus", "hash": "1e14782516fae032133ee81a2ea32c997538487d", "variant": 3555143340, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 604241919}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2353135616, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 608370687}, "child": {"skip": 104, "offset": 120, "next": [], "symbols": [{"name": "sceSynthesizerTransposeMatrix", "hash": "24cd173775297d504e6c50b889b6f84dd4652bf6", "variant": 3555143340, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 2353266688, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 277020675}, "child": {"skip": 4, "offset": 20, "next": [{"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "ReleaseTimerAlarm"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 0}, "child": {"skip": 8, "offset": 36, "next": [], "symbols": [{"name": "sceHTTPLibReleaseDateTimer", "hash": "68831eb9be95c33f808c83310edf4f7ec7ba9b63", "variant": 2188071235, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "DeleteSema"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 0}, "child": {"skip": 8, "offset": 36, "next": [], "symbols": [{"name": "lock_terminate", "hash": "68831eb9be95c33f808c83310edf4f7ec7ba9b63", "variant": 2289493300, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10285}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2353266688, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 8, "offset": 20, "next": [], "symbols": [{"name": "sceSynthesizerWaitDmaFromSPR", "hash": "58f836fa9a32c8872367709e6e15aa0cb421f123", "variant": 2478051397, "library": "libssyn"}, {"name": "sceSynthesizerWaitDmaToSPR", "hash": "58f836fa9a32c8872367709e6e15aa0cb421f123", "variant": 2478051397, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 666763024}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608370688, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 620, "offset": 632, "next": [], "symbols": [{"name": "sceSpu2Remote", "hash": "a3524a9aca924aa0f3e1038b941f721aa6e383b5", "variant": 4209988293, "library": "librspu2"}]}}], "symbols": []}}, {"match": {"value": 604307455}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 604372993}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 608307208}, "child": {"skip": 76, "offset": 96, "next": [], "symbols": [{"name": "_sceMcFatInit", "hash": "79e6a3649aca5e1fcd9332d22ae4a0b922d5a647", "variant": 2870663254, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 604176385}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 610533375}, "child": {"skip": 32, "offset": 52, "next": [], "symbols": [{"name": "_sceMcpInit", "hash": "d5e27ae59c075d5eefa4eee07a0d503c6b904857", "variant": 3555143340, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604372991}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608370688, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 40, "offset": 52, "next": [], "symbols": [{"name": "_sceMcpInit", "hash": "75a83566bed4761f79e8de20d65a7693ca51e418", "variant": 3555143340, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 6189}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608436224, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 40, "offset": 56, "next": [], "symbols": [{"name": "_get_free_slot", "hash": "82523fcfac7c3257b768adac87c04d05e911a1f6", "variant": 3555143340, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 608501760, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 52, "offset": 68, "next": [], "symbols": [{"name": "_sceMcCoreChangeSocketTypeDbc2Mc", "hash": "3c7486cb0b621d7f18a044e32a8ef7edf7843191", "variant": 3555143340, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604184576}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 64, "offset": 76, "next": [], "symbols": [{"name": "__sceEENetbpfilterattach", "hash": "936fc7bd94be4947d547f1cd30f9e09976c93f16", "variant": 1794065808, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 746848257}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2890137600, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 8, "offset": 20, "next": [], "symbols": [{"name": "sceEENetCtlSetAutoMode", "hash": "ad361fd420d44ef7968812d1863844ff7882dd88", "variant": 3555143340, "library": "eenetctl"}]}}], "symbols": []}}, {"match": {"value": 8409133}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608894976, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10504237}, "child": {"skip": 88, "offset": 104, "next": [], "symbols": [{"name": "sceHTTPLibStrcasecmp", "hash": "dd90f232279507b4dd9565495df9d0fe6c6ba1be", "variant": 3555143340, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2353201180}, "child": {"skip": 344, "offset": 360, "next": [], "symbols": [{"name": "SetNextComp", "hash": "fe8122c2a0ea8bc507c1b8c9f123bbda3ce9f1fd", "variant": 3555143340, "library": "libtimer"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2156199936}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608567296, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 72, "offset": 84, "next": [], "symbols": [{"name": "digit2", "hash": "8c1e8efbe8a57d9d1ebdad9617f3415dff419c92", "variant": 3555143340, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2156462080}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608501760, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 152, "offset": 164, "next": [], "symbols": [{"name": "digit4", "hash": "9abac7d88dbb9340b675268b13ae76f91e920e89", "variant": 3555143340, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 666763184}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2353201152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 120, "offset": 132, "next": [], "symbols": [{"name": "OBJ_ln2nid", "hash": "a02dc591e2b2b520d0b40b56fd68ed9c85b413a2", "variant": 4289021397, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 337984}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608698368, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 100, "offset": 112, "next": [], "symbols": [{"name": "get_yday", "hash": "52e66ad0e901ecc478fe32409ce0aca21800f6dd", "variant": 3555143340, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 612696072}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608567296, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 44, "offset": 56, "next": [], "symbols": [{"name": "des_set_odd_parity", "hash": "db09e5b524d973c648e42c09f45831a1830ca9ee", "variant": 3555143340, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 84)PS2SDB", 8192}, + std::string_view{R"PS2SDB(00941}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608632832, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 60, "offset": 72, "next": [], "symbols": [{"name": "des_check_parity", "hash": "44bd7b8ac6ced076700b8fa1b9be5c5b86be22d7", "variant": 3555143340, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "Exit"}}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 8229}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "_exit", "hash": "25d59f79e5e5c6dbf2686684189604eed62bf8eb", "variant": 1342502908, "library": "crt0"}]}}, {"match": {"value": 0}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "_exit", "hash": "a639a8a356321edbeccee089cae462e9fca431ea", "variant": 1342502908, "library": "crt0"}]}}, {"match": {"value": 8237}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "_exit", "hash": "972cebc63fbbd50e4674df9040f313bc6157cfc2", "variant": 1342502908, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": ""}}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "_exit", "hash": "a639a8a356321edbeccee089cae462e9fca431ea", "variant": 28446602, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 2273509376, "relocation": {"type": "MIPS_GPREL16", "symbol": "sceGsVersion"}}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604110849}, "child": {"skip": 152, "offset": 160, "next": [], "symbols": [{"name": "sceGsPutDispEnv", "hash": "5139e95a7fe9335206fbc6b79d71f7d6a58f4203", "variant": 126688669, "library": "libgraph"}]}}], "symbols": []}}, {"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 610795520, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1761935367}, "child": {"skip": 44, "offset": 56, "next": [], "symbols": [{"name": "sceDmaGetEnv", "hash": "1f259f8a2a54b043f90d45a5e40f25eb5260e401", "variant": 3605881645, "library": "libdma"}]}}], "symbols": []}}, {"match": {"value": 2355232768, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2892234752, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 58728493}, "child": {"skip": 12, "offset": 28, "next": [], "symbols": [{"name": "sceSdCallBack", "hash": "26bdc2ea573999bc0283ea4213072051ae866e8c", "variant": 426959994, "library": "libsdr"}]}}], "symbols": []}}, {"match": {"value": 610598912, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 272629764}, "child": {"skip": 44, "offset": 60, "next": [], "symbols": [{"name": "__sceEENetif_clone_attach", "hash": "ab9b1917cca3914cdf1f08d226e52ca4f4e68574", "variant": 1992729337, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 65011720}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2892234752, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [], "symbols": [{"name": "sceDmaDebug", "hash": "0f72143bbde701febfcbee128cbe1f2870065c43", "variant": 2256608380, "library": "libdma"}, {"name": "sceSdCallBack", "hash": "0f72143bbde701febfcbee128cbe1f2870065c43", "variant": 2256608380, "library": "libsdr"}, {"name": "set_terminate__FPFv_v", "hash": "0f72143bbde701febfcbee128cbe1f2870065c43", "variant": 2256608380, "library": "libgcc"}, {"name": "set_unexpected__FPFv_v", "hash": "0f72143bbde701febfcbee128cbe1f2870065c43", "variant": 2256608380, "library": "libgcc"}, {"name": "set_new_handler__FPFv_v", "hash": "0f72143bbde701febfcbee128cbe1f2870065c43", "variant": 2256608380, "library": "libgcc"}, {"name": "sceCccSetErrorCharUTF8", "hash": "0f72143bbde701febfcbee128cbe1f2870065c43", "variant": 2256608380, "library": "libccc"}, {"name": "sceCccSetErrorCharUTF16", "hash": "0f72143bbde701febfcbee128cbe1f2870065c43", "variant": 2256608380, "library": "libccc"}]}}, {"match": {"value": 608305272}, "child": {"skip": 0, "offset": 16, "next": [], "symbols": [{"name": "sceHiGsContextStatus", "hash": "613313e4523eb8c0edd846234c29b8ab45b97441", "variant": 3605881645, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 2896429068}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2896298004}, "child": {"skip": 24, "offset": 40, "next": [], "symbols": [{"name": "__register_frame_info_table", "hash": "b07c71a7b301e32a739b9ba46d13cb910a48f943", "variant": 2408823809, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 10620971}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 339738627}, "child": {"skip": 92, "offset": 108, "next": [], "symbols": [{"name": "sceSSyn_SetOutPortVolume", "hash": "d81e96b66a210039364e0fdb5cc667037a239984", "variant": 2408823809, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 4460587}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 272629763}, "child": {"skip": 24, "offset": 40, "next": [], "symbols": [{"name": "Vumem1CheckRest", "hash": "003e7077028e5037f9ac361dbb933c8cf79b1236", "variant": 2463986760, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 8523818}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 339738627}, "child": {"skip": 28, "offset": 44, "next": [], "symbols": [{"name": "BN_bnme_get_info", "hash": "52e63c6bad71af6a6605f8afb0858ba24706d916", "variant": 2214465485, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 4464673}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 20, "next": [], "symbols": [{"name": "OBJ_new_nid", "hash": "f1ef29549a2316fce6fedf28575de0e2b0037008", "variant": 2408823809, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 610467840, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2355232788}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2892300312}, "child": {"skip": 8, "offset": 24, "next": [], "symbols": [{"name": "sceSifSetCmdBuffer", "hash": "237ab43dd01a1922ddedcaa4c450bcbfdccb0c65", "variant": 3605881645, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 2355232780}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2892300304}, "child": {"skip": 8, "offset": 24, "next": [], "symbols": [{"name": "sceSifSetSysCmdBuffer", "hash": "cbab9fb03e5e7bc22f40bc15b229036a2a22c5a0", "variant": 3605881645, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 2355232768}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 20, "next": [], "symbols": [{"name": "sceSdCallBack", "hash": "486e430e72adf3e1135de3e589157f4f84cf745e", "variant": 3605881645, "library": "libsdr"}]}}], "symbols": []}}, {"match": {"value": 8589349}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 809631751}, "child": {"skip": 152, "offset": 168, "next": [{"match": {"value": 1751449607}, "child": {"skip": 0, "offset": 172, "next": [{"match": {"value": 1818558464}, "child": {"skip": 32, "offset": 208, "next": [], "symbols": [{"name": "sceNetcnfifGetResult", "hash": "962c2d22f17ea78e930f10e1516fa2ded148e973", "variant": 3605881645, "library": "netcnfif"}]}}], "symbols": []}}, {"match": {"value": 1751252999}, "child": {"skip": 0, "offset": 172, "next": [{"match": {"value": 1818361856}, "child": {"skip": 28, "offset": 204, "next": [], "symbols": [{"name": "sceNetcnfifGetResult", "hash": "679a9ca7d5d578139f9346c6d526e67ded0882ba", "variant": 3605881645, "library": "netcnfif"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 663093248, "relocation": )PS2SDB", 8192}, + std::string_view{R"PS2SDB({"type": "MIPS_GPREL16", "symbol": ".sdata"}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 610467840, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "_lmcGetClientPtr", "hash": "cd5d1b66ee1a3f1b38d634c83e6f36acc2aad66b", "variant": 2383260069, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 2489450496, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 16, "next": [], "symbols": [{"name": "sceCccSetErrorCharSJIS", "hash": "dd63d5874ab021cb6724476baf5fb831baa9ba81", "variant": 2256608380, "library": "libccc"}]}}], "symbols": []}}, {"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2353463296, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 610795520, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 72, "offset": 88, "next": [], "symbols": [{"name": "SetResult_GetInfo", "hash": "abcb713580b00f78432f83137080d0ce6ed20304", "variant": 181357108, "library": "libusbkb"}]}}], "symbols": []}}, {"match": {"value": 610467840, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 56, "offset": 72, "next": [], "symbols": [{"name": "_sceSkSsSTRADPCM_InitVariables", "hash": "71b8e4e6139eede80e4bae2f58c2c3a2ee88eae6", "variant": 1427480386, "library": "libsk"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666763200}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2355232768, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707504}, "child": {"skip": 8, "offset": 24, "next": [{"match": {"value": 339738711}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4289724416}, "child": {"skip": 368, "offset": 400, "next": [], "symbols": [{"name": "sceSifInitRpc", "hash": "6fdfed13fc40244120396d9f9d44b8b51e480d61", "variant": 3617455977, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 339738713}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4289724416}, "child": {"skip": 376, "offset": 408, "next": [], "symbols": [{"name": "sceSifInitRpc", "hash": "a6da2f5bc484195ae3434ddecf225938e6459b91", "variant": 1647439008, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2355494912, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006797057}, "child": {"skip": 4, "offset": 20, "next": [{"match": {"value": 281018396}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 876773377}, "child": {"skip": 120, "offset": 148, "next": [], "symbols": [{"name": "sceMc2CreateSocket", "hash": "8fae063dd27e049e909608c501012a9809459a41", "variant": 2694057169, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 8402989}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 281018385}, "child": {"skip": 80, "offset": 108, "next": [], "symbols": [{"name": "sceMc2SearchSocket", "hash": "0e7bfac862302211e29af69e23372f3a19712a41", "variant": 3401813564, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2355691520, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006797057}, "child": {"skip": 136, "offset": 152, "next": [{"match": {"value": 604110853}, "child": {"skip": 0, "offset": 156, "next": [{"match": {"value": 2920415232}, "child": {"skip": 64, "offset": 224, "next": [], "symbols": [{"name": "sceMc2ReadFileAsync", "hash": "29009e3ebc4edf95e2e868d166240ae46ec0634d", "variant": 2398906452, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 604110854}, "child": {"skip": 0, "offset": 156, "next": [{"match": {"value": 2920415232}, "child": {"skip": 64, "offset": 224, "next": [], "symbols": [{"name": "sceMc2WriteFileAsync", "hash": "23a488987111e0972ca9f016ebc965ae945a4b3b", "variant": 2398906452, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2355757056, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006797057}, "child": {"skip": 224, "offset": 240, "next": [], "symbols": [{"name": "sceMc2GetDirAsync", "hash": "f6b6c6f5b341764f3a5cd80d1f1a6ee27bb41306", "variant": 3930329866, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4141}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 65011720}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2891972608, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [], "symbols": [{"name": "sceFsReset", "hash": "cfaf9fb7a176229a6d2415ff621875ffc2228998", "variant": 3504412115, "library": "libkernl"}]}}, {"match": {"value": 2892234752, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [], "symbols": [{"name": "sceNetcnfifSetFNoDecode", "hash": "91a00cf99e86fad5d436769a2a61b51e29e4a0be", "variant": 3504412115, "library": "netcnfif"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666763216}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2355232768, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8398893}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707488}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 71303185}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289724432}, "child": {"skip": 84, "offset": 112, "next": [], "symbols": [{"name": "sceSifAllocIopHeap", "hash": "855359b390fa6655457f1fb5b8c64b3be89a29f2", "variant": 1233227514, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 71368707}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289724432}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 268435474}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4141}, "child": {"skip": 84, "offset": 120, "next": [], "symbols": [{"name": "sceSifFreeSysMemory", "hash": "24e378871789e2dbd2676fb5a75d5570ca2bd3ff", "variant": 1618094313, "library": "libkernl"}, {"name": "sceSifFreeIopHeap", "hash": "24e378871789e2dbd2676fb5a75d5570ca2bd3ff", "variant": 1618094313, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 268435475}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4141}, "child": {"skip": 28, "offset": 64, "next": [{"match": {"value": 604307464}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 12333}, "child": {"skip": 52, "offset": 124, "next": [], "symbols": [{"name": "sceSifQueryBlockTopAddress", "hash": "d5c0a2859bbdd0aa30201c72fd7eff1cba33baed", "variant": 1618094313, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604307465}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 12333}, "child": {"skip": 52, "offset": 124, "next": [], "symbols": [{"name": "sceSifQueryBlockSize", "hash": "72f60df1136e80b9f3623bb77ee8ae790eef659f", "variant": 1618094313, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707488}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 339738637}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289724416}, "child": {"skip": 76, "offset": 104, "next": [], "symbols": [{"name": "eh_context_static", "hash": ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(4508e443bd4254478739b86dc44a11f5b4c1ea8a", "variant": 1362731635, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 339738662}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289724416}, "child": {"skip": 168, "offset": 196, "next": [], "symbols": [{"name": "sceSifMInitRpc", "hash": "9fcf991eabf3efa710db2bd100f2ab82f6066f37", "variant": 3338722392, "library": "libmrpc"}]}}], "symbols": []}}, {"match": {"value": 339738671}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289724416}, "child": {"skip": 204, "offset": 232, "next": [], "symbols": [{"name": "sceSifMInitRpc", "hash": "3031e4dbfd034a899c92ff7a10922ec6132caa7a", "variant": 3735377036, "library": "libmrpc"}]}}], "symbols": []}}, {"match": {"value": 272629833}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289724416}, "child": {"skip": 4, "offset": 32, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sslv23_base_method"}}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 1007681536, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 304, "offset": 344, "next": [], "symbols": [{"name": "SSLv23_client_method", "hash": "a5fa97f2a4d7168c5d98254f62f3f9dd76938ded", "variant": 2921402081, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sslv2_base_method"}}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 1007681536, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 304, "offset": 344, "next": [], "symbols": [{"name": "SSLv2_client_method", "hash": "a5fa97f2a4d7168c5d98254f62f3f9dd76938ded", "variant": 2926193388, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sslv3_base_method"}}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 1007681536, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 304, "offset": 344, "next": [], "symbols": [{"name": "SSLv3_client_method", "hash": "a5fa97f2a4d7168c5d98254f62f3f9dd76938ded", "variant": 4129608177, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "tlsv1_base_method"}}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 1007681536, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 304, "offset": 344, "next": [], "symbols": [{"name": "TLSv1_client_method", "hash": "a5fa97f2a4d7168c5d98254f62f3f9dd76938ded", "variant": 1028843700, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8400941}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707488}, "child": {"skip": 56, "offset": 76, "next": [{"match": {"value": 604504704}, "child": {"skip": 0, "offset": 80, "next": [{"match": {"value": 33572909}, "child": {"skip": 52, "offset": 136, "next": [], "symbols": [{"name": "sceDbcDeleteSocket", "hash": "4adb685bc09e0236a946224a5c7dc65ab967db59", "variant": 3002346155, "library": "libdbc"}]}}], "symbols": []}}, {"match": {"value": 604504208}, "child": {"skip": 0, "offset": 80, "next": [{"match": {"value": 33572909}, "child": {"skip": 52, "offset": 136, "next": [], "symbols": [{"name": "sceDbcDeleteSocket", "hash": "2f06741ca02b95147962f03797bb8bb3469703f3", "variant": 3002346155, "library": "libdbc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2355560448, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006797057}, "child": {"skip": 12, "offset": 28, "next": [{"match": {"value": 8425517}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4289921048}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 12621869}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 4289724416}, "child": {"skip": 148, "offset": 192, "next": [], "symbols": [{"name": "sceMc2ChdirAsync", "hash": "d18b85d386b47b276ddfe75438135e5b62549c9f", "variant": 1839718644, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 819199999}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 4289724416}, "child": {"skip": 148, "offset": 192, "next": [], "symbols": [{"name": "sceMc2ChmodAsync", "hash": "6723541539ef6ebc6177bfea1c7ebcaebdc2e051", "variant": 1839718644, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 12619821}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4289921048}, "child": {"skip": 196, "offset": 232, "next": [], "symbols": [{"name": "sceMc2RenameAsync", "hash": "be85724b8fcdd96f990d431c50acad8d62408de4", "variant": 3599693461, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 65011720}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2355232768, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [], "symbols": [{"name": "__sceKernlGetEhSemaId", "hash": "ceaacd8dbc6550567edb1845aa0d5c1d3047b02c", "variant": 3555143340, "library": "libkernl"}, {"name": "__errno", "hash": "ceaacd8dbc6550567edb1845aa0d5c1d3047b02c", "variant": 3555143340, "library": "libc"}, {"name": "sceHiGsCtxGetDefault", "hash": "ceaacd8dbc6550567edb1845aa0d5c1d3047b02c", "variant": 3555143340, "library": "libhig"}, {"name": "sceHiGsEnvGetDefault", "hash": "ceaacd8dbc6550567edb1845aa0d5c1d3047b02c", "variant": 3555143340, "library": "libhig"}, {"name": "Vumem1ISize", "hash": "ceaacd8dbc6550567edb1845aa0d5c1d3047b02c", "variant": 3555143340, "library": "libhip"}, {"name": "getTbp", "hash": "ceaacd8dbc6550567edb1845aa0d5c1d3047b02c", "variant": 3555143340, "library": "libhip"}, {"name": "getCbp", "hash": "ceaacd8dbc6550567edb1845aa0d5c1d3047b02c", "variant": 3555143340, "library": "libhip"}, {"name": "__sceEENetspllock_owner", "hash": "ceaacd8dbc6550567edb1845aa0d5c1d3047b02c", "variant": 3555143340, "library": "libeenet"}, {"name": "sceHTTPLibGetMemoryFunctionRA", "hash": "ceaacd8dbc6550567edb1845aa0d5c1d3047b02c", "variant": 3555143340, "library": "libhttps"}, {"name": "R_time_get_func", "hash": "ceaacd8dbc6550567edb1845aa0d5c1d3047b02c", "variant": 3555143340, "library": "libhttps"}, {"name": "R_lock_get_cb", "hash": "ceaacd8dbc6550567edb1845aa0d5c1d3047b02c", "variant": 3555143340, "library": "libhttps"}, {"name": "R_locked_add_get_cb", "hash": "ceaacd8dbc6550567edb1845aa0d5c1d3047b02c", "variant": 3555143340, "library": "libhttps"}, {"name": "R_thread_get_id_cb", "hash": "ceaacd8dbc6550567edb1845aa0d5c1d3047b02c", "variant": 3555143340, "library": "libhttps"}, {"name": "R_DIAG_get_stack_datum", "hash": "ceaacd8dbc6550567edb1845aa0d5c1d3047b02c", "variant": 3555143340, "library": "libhttps"}, {"name": "R_time_get_offset_func", "hash": "ceaacd8dbc6550567edb1845aa0d5c1d3047b02c", "variant": 3555143340, "library": "libhttps"}, {"name": "R_time_get_cmp_func", "hash": "ceaacd8dbc6550567edb1845aa0d5c1d3047b02c", "variant": 3555143340, "library": "libhttps"}, {"name": "R_time_get_import_func", "hash": "ceaacd8dbc6550567edb1845aa0d5c1d3047b02c", "variant": 3555143340, "library": "libhttps"}, {"name": "R_time_get_export_func", "hash": "ceaacd8dbc6550567edb1845aa0d5c1d3047b02c", "variant": 3555143340, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604110849}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 65011720}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2892234752, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [], "symbols": [{"name": "scePadSetFlushRate", "hash": "2f1f98b6b6623eb3ad80ae62c1826111486c3ab8", "variant": 3504412115, "library": "libpad"}, {"name": "R_lock_set_cb", "hash": "2f1f98b6b6623eb3ad80ae62c1826111486c3ab8", "variant": 3504412115, "library": "libhttps"}, {"name": "R_locked_add_set_cb", "hash": "2f1f98b6b6623eb3ad80ae62c1826111486c3a)PS2SDB", 8192}, + std::string_view{R"PS2SDB(b8", "variant": 3504412115, "library": "libhttps"}, {"name": "R_thread_id_set_cb", "hash": "2f1f98b6b6623eb3ad80ae62c1826111486c3ab8", "variant": 3504412115, "library": "libhttps"}]}}, {"match": {"value": 2891972608, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [], "symbols": [{"name": "SSL_feature_reset", "hash": "08d5dde95b435a4cb5c8dcfb492af9e2b06276e9", "variant": 3504412115, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666763248}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 604110849}, "child": {"skip": 20, "offset": 36, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "scePrintf"}}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 40, "offset": 84, "next": [], "symbols": [{"name": "sceCdStResume", "hash": "6c9eb9759860d4377e90948ca20ee29f4cd6915a", "variant": 3643237067, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "printf"}}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 40, "offset": 84, "next": [], "symbols": [{"name": "sceCdStResume", "hash": "6c9eb9759860d4377e90948ca20ee29f4cd6915a", "variant": 754353628, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2355232768, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707456}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4257801}, "child": {"skip": 4, "offset": 24, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "DH_new_meth"}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4202541}, "child": {"skip": 12, "offset": 44, "next": [], "symbols": [{"name": "DH_new", "hash": "4d794c72fcd4aa5782920b28126e2990125845c1", "variant": 4174024192, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "RSA_new_meth"}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4202541}, "child": {"skip": 12, "offset": 44, "next": [], "symbols": [{"name": "RSA_new", "hash": "4d794c72fcd4aa5782920b28126e2990125845c1", "variant": 1549722569, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 3753836544}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 65011720}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 36, "next": [], "symbols": [{"name": "__get_eh_context", "hash": "4f3164b0f2df6fcf75620dffd141afcb54fa03dc", "variant": 3555143340, "library": "libgcc"}, {"name": "R_malloc_locked", "hash": "4f3164b0f2df6fcf75620dffd141afcb54fa03dc", "variant": 3555143340, "library": "libhttps"}, {"name": "R_free_locked", "hash": "4f3164b0f2df6fcf75620dffd141afcb54fa03dc", "variant": 3555143340, "library": "libhttps"}, {"name": "R_malloc", "hash": "4f3164b0f2df6fcf75620dffd141afcb54fa03dc", "variant": 3555143340, "library": "libhttps"}, {"name": "R_realloc", "hash": "4f3164b0f2df6fcf75620dffd141afcb54fa03dc", "variant": 3555143340, "library": "libhttps"}, {"name": "R_free", "hash": "4f3164b0f2df6fcf75620dffd141afcb54fa03dc", "variant": 3555143340, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 608305160}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 40, "next": [], "symbols": [{"name": "__get_eh_info", "hash": "3a1dd97bd03e115710c873e2eb3555c8f6d65b68", "variant": 3555143340, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 608305156}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 40, "next": [], "symbols": [{"name": "__get_dynamic_handler_chain", "hash": "1a301868b8c46130ac53888a6a01ba6f668aed76", "variant": 3555143340, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 272629765}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707456}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_hig_drw_err"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 604241922}, "child": {"skip": 32, "offset": 60, "next": [], "symbols": [{"name": "sceHiGsCtxSetMax", "hash": "83305f4696103e061366ac9d79857136f0c692a1", "variant": 1610674765, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2891972608, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 24, "offset": 52, "next": [], "symbols": [{"name": "BN_default_init", "hash": "c042040424831fbc1594c464bd2f31bae5a1fb61", "variant": 1231338301, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 339738627}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707456}, "child": {"skip": 52, "offset": 72, "next": [], "symbols": [{"name": "sceDbcEnd", "hash": "6f5bf332f8abfe5387af995baf34d53516575b58", "variant": 1323747711, "library": "libdbc"}]}}], "symbols": []}}, {"match": {"value": 8407085}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707456}, "child": {"skip": 232, "offset": 252, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": ""}}, "child": {"skip": 0, "offset": 256, "next": [{"match": {"value": 14692397}, "child": {"skip": 56, "offset": 316, "next": [], "symbols": [{"name": "sceSynthesizerSendShortMessage", "hash": "742f0f68d75babad0a801e96a8b16888f21bb597", "variant": 1848475875, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "ControlChangeMessage"}}, "child": {"skip": 0, "offset": 256, "next": [{"match": {"value": 14692397}, "child": {"skip": 56, "offset": 316, "next": [], "symbols": [{"name": "sceSynthesizerSendShortMessage", "hash": "742f0f68d75babad0a801e96a8b16888f21bb597", "variant": 3670474193, "library": "libssyn"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8411181}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707456}, "child": {"skip": 436, "offset": 456, "next": [], "symbols": [{"name": "sceSynthesizerHsMessage", "hash": "efd6e179dbba98464c0fb2a531f8809da96fca1f", "variant": 3948786496, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 339738628}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707456}, "child": {"skip": 76, "offset": 96, "next": [], "symbols": [{"name": "sceMc2DeleteSocket", "hash": "7868d89f1cd79ea147500ae08f1ec522ce838b3d", "variant": 2861696587, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 272629777}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2946760704}, "child": {"skip": 132, "offset": 152, "next": [], "symbols": [{"name": "__sceEENetin_localaddr", "hash": "525f830067dae657997b30a58ec9ad42144184a6", "variant": 3722599124, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 340000772}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707456}, "child": {"skip": 72, "offset": 92, "next": [], "symbols": [{"name": "ifc_detach", "hash": "4cdf0a6faf4dfc82b68fbcabaf6d77c165834ca0", "variant": 2674256601, "library": "eenetctl"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2355429376, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006797057}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( 4290707456}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 278921228}, "child": {"skip": 60, "offset": 84, "next": [], "symbols": [{"name": "sceMc2DeleteSocket", "hash": "ed945ee9d96d4569997308f849f4af5bd58dfffd", "variant": 1537368311, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8421421}, "child": {"skip": 64, "offset": 88, "next": [{"match": {"value": 604110851}, "child": {"skip": 0, "offset": 92, "next": [{"match": {"value": 2895118336}, "child": {"skip": 28, "offset": 124, "next": [], "symbols": [{"name": "sceMc2FormatAsync", "hash": "9935948ddc022af2ecff302152fb474992a03ef3", "variant": 1866187893, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 604110852}, "child": {"skip": 0, "offset": 92, "next": [{"match": {"value": 2895118336}, "child": {"skip": 28, "offset": 124, "next": [], "symbols": [{"name": "sceMc2UnformatAsync", "hash": "7c29d73cedcd6bf22318793d6629eee1892b4be0", "variant": 1866187893, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 604110948}, "child": {"skip": 0, "offset": 92, "next": [{"match": {"value": 2895118336}, "child": {"skip": 28, "offset": 124, "next": [], "symbols": [{"name": "sceMc2GetDirAll", "hash": "7180055beca3f4160e7ef81fb0b138be2b3eda6e", "variant": 1866187893, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666761392}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2355232768, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 116, "offset": 128, "next": [{"match": {"value": 272629792}, "child": {"skip": 0, "offset": 132, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 144, "offset": 280, "next": [], "symbols": [{"name": "__sjpopnthrow", "hash": "30f957b89696e2244678ebb5bb7e0d638335abbd", "variant": 246211787, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 272629787}, "child": {"skip": 0, "offset": 132, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 128, "offset": 264, "next": [], "symbols": [{"name": "__sjpopnthrow", "hash": "0f364047e250a2066f133d7eabe5d67f44961bbc", "variant": 1255046020, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666761488}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2355232768, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 220, "offset": 232, "next": [], "symbols": [{"name": "__sjpopnthrow", "hash": "52e3a07c2cac5a4fc5f4e36c4cd9ac08837244ed", "variant": 3201844372, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 8392749}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 610467840, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 65011720}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2894266368}, "child": {"skip": 0, "offset": 20, "next": [], "symbols": [{"name": "__13bad_exception", "hash": "56b1830bad8eac8addc076fb7a2554c1c9b2d5ab", "variant": 3555143340, "library": "libgcc"}, {"name": "__9exception", "hash": "56b1830bad8eac8addc076fb7a2554c1c9b2d5ab", "variant": 3555143340, "library": "libgcc"}, {"name": "__10bad_typeid", "hash": "56b1830bad8eac8addc076fb7a2554c1c9b2d5ab", "variant": 3555143340, "library": "libgcc"}, {"name": "__8bad_cast", "hash": "56b1830bad8eac8addc076fb7a2554c1c9b2d5ab", "variant": 3555143340, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 2890203136}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 24, "next": [], "symbols": [{"name": "__16__user_type_infoPCc", "hash": "e37cb136753d8d46404bd24dc63362827ca5387b", "variant": 3555143340, "library": "libgcc"}, {"name": "__9type_infoPCc", "hash": "e37cb136753d8d46404bd24dc63362827ca5387b", "variant": 3555143340, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2355560448, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2898722816}, "child": {"skip": 16, "offset": 32, "next": [], "symbols": [{"name": "__register_global_object", "hash": "1b7c4fd22ca349944ea29496dada5b02ae89a41c", "variant": 831673185, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 612761568}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 610467840, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 24, "offset": 36, "next": [], "symbols": [{"name": "toupper", "hash": "84adea816b9326692dfb45fae82c9155d5b329b4", "variant": 3555143340, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 612696096}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 610467840, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 24, "offset": 36, "next": [], "symbols": [{"name": "tolower", "hash": "6be5847c79e0f847c293c9fb51ce400d51f11ce1", "variant": 3555143340, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 666763168}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2355232768, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 800, "offset": 812, "next": [], "symbols": [{"name": "_motionComp0", "hash": "b7dbfe92e831a6416760c20c45718d8ca54de521", "variant": 2650751364, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 8413229}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2355363840, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 480, "offset": 492, "next": [], "symbols": [{"name": "_cpr8", "hash": "b6988c2ec5e6406aa538b6f06c7d4db9843be575", "variant": 3406751348, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 604373004}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2355429376, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 60, "offset": 72, "next": [], "symbols": [{"name": "sceSpu2MemQuit", "hash": "372b3c2063954a42ff45a28d038b1df9ae1f8b20", "variant": 4176300283, "library": "libspu2m"}]}}], "symbols": []}}, {"match": {"value": 813957127}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 610467840, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 36, "offset": 48, "next": [], "symbols": [{"name": "sceGpChkNumPtoV", "hash": "ee2f1c2b49bd2c693f1958819c12b4b7daf377b5", "variant": 406927059, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 8400941}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2355232768, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 8, "offset": 20, "next": [{"match": {"value": 610533376, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 32, "next": [{"match": {"value": 748814338}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 339738627}, "child": {"skip": 36, "offset": 76, "next": [], "symbols": [{"name": "sceUsbKbSetCodeType", "hash": "a920de4bbc01ef25a547dc515614afe9b7bc78d9", "variant": 933111199, "library": "libusbkb"}]}}], "symbols": []}}, {"match": {"value": 748814339}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 339738627}, "child": {"skip": 36, "offset": 76, "next": [], "symbols": [{"name": "sceUsbKbSetArrangement", "hash": "6fa1ae3b3c5a6f271d52ebaf21edc962d0ca6a96", "variant": 933111199, "library": "libusbkb"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 610729984, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 65011720}, "child": {"skip": 80, "offset": 108, "next": [], "symbols": [{"name": "sceUsbKbSetReadMode", "hash": "a7c0613e6caeeee599b9f5fb76e)PS2SDB", 8192}, + std::string_view{R"PS2SDB(f407c8d842e7d", "variant": 933111199, "library": "libusbkb"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666763232}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2355494912, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 614596608, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 80, "offset": 100, "next": [], "symbols": [{"name": "sceSpu2StreamEnvSet", "hash": "a5f6c775618c070deb72f07001afc88ce82cfe31", "variant": 2786126505, "library": "librspu2"}]}}], "symbols": []}}, {"match": {"value": 1006797057}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8421421}, "child": {"skip": 116, "offset": 140, "next": [], "symbols": [{"name": "sceMc2GetInfoAsync", "hash": "db7fc67c9f57dfcd2095c88ab1031733aba92da6", "variant": 4097875282, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 4289789960}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 10520621}, "child": {"skip": 16, "offset": 40, "next": [{"match": {"value": 281018397}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 4290707480}, "child": {"skip": 80, "offset": 128, "next": [{"match": {"value": 604110855}, "child": {"skip": 0, "offset": 132, "next": [{"match": {"value": 2920415232}, "child": {"skip": 48, "offset": 184, "next": [], "symbols": [{"name": "sceMc2CreateFileAsync", "hash": "c9d122a22ceae6c449a1a7ad69c8a74f9875a86c", "variant": 2610546719, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 604110859}, "child": {"skip": 0, "offset": 132, "next": [{"match": {"value": 2920415232}, "child": {"skip": 48, "offset": 184, "next": [], "symbols": [{"name": "sceMc2MkdirAsync", "hash": "002e3dec5d9693b6a98e410996d647ccdf5cdcbf", "variant": 2610546719, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 281018396}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 4290707480}, "child": {"skip": 80, "offset": 128, "next": [{"match": {"value": 604110856}, "child": {"skip": 0, "offset": 132, "next": [{"match": {"value": 2920415232}, "child": {"skip": 44, "offset": 180, "next": [], "symbols": [{"name": "sceMc2DeleteAsync", "hash": "8863411913e670fa236eedd7f0cdebcc2f67c901", "variant": 1613005540, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 604110863}, "child": {"skip": 0, "offset": 132, "next": [{"match": {"value": 2920415232}, "child": {"skip": 44, "offset": 180, "next": [], "symbols": [{"name": "sceMc2GetEntSpaceAsync", "hash": "39d9e89428b96e1256ae8c9e98b16a4d7a3d7109", "variant": 1613005540, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666762704}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2355560448, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 180, "offset": 192, "next": [], "symbols": [{"name": "sceMc2SearchFileAsync", "hash": "1f1c3c756d7b9e15a1d03b3a5875e8b43505e892", "variant": 1839718644, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 666763120}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2355232768, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 508, "offset": 520, "next": [], "symbols": [{"name": "malloc_pages", "hash": "955236db18b2e4dd87e392026afa014abcc69f50", "variant": 3558189885, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 666762064}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2355232768, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 136, "offset": 148, "next": [], "symbols": [{"name": "BIO_printf", "hash": "40a9c36a2efe43516510984269c24f2a3505eb4c", "variant": 628225261, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 270396}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 270399}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2355429376, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 270375}, "child": {"skip": 16, "offset": 36, "next": [], "symbols": [{"name": "SSL_feature_clear", "hash": "4a4dd53cd2ba8de20541a0e808ef6fe87c8f2542", "variant": 1236776635, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2355232768, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 24, "next": [], "symbols": [{"name": "SSL_feature_test", "hash": "054c50b51c9889d47defc7a282af07b86bb91122", "variant": 3504412115, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8415277}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2355363840, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 68, "offset": 80, "next": [], "symbols": [{"name": "SSL_SESSION_get_ex_new_index", "hash": "1723948d96c939b042d800820bfcf2dbcfef4454", "variant": 3572871951, "library": "libhttps"}, {"name": "X509_STORE_CTX_get_ex_new_index", "hash": "1723948d96c939b042d800820bfcf2dbcfef4454", "variant": 3572871951, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2407661568, "relocation": {"type": "MIPS_GPREL16", "symbol": ".sdata"}}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 12, "next": [], "symbols": [{"name": "sceDmaDebug", "hash": "b1cd0e53a071459bf192cefcc48af7740a12611c", "variant": 1978406238, "library": "libdma"}]}}], "symbols": []}}, {"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "printf"}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [], "symbols": [{"name": "sceDmaSendM", "hash": "53b68b1d1ac1d1fdb21709ed9bc31f21b0f7173e", "variant": 3099508123, "library": "libdma"}, {"name": "sceDmaLastSyncTime", "hash": "53b68b1d1ac1d1fdb21709ed9bc31f21b0f7173e", "variant": 3099508123, "library": "libdma"}]}}], "symbols": []}}, {"match": {"value": 2357329920, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 339738632}, "child": {"skip": 40, "offset": 52, "next": [], "symbols": [{"name": "__tfv", "hash": "90248c8691a5618ecf93af893ae4bfe19decdb83", "variant": 97307799, "library": "libgcc"}, {"name": "__tfx", "hash": "90248c8691a5618ecf93af893ae4bfe19decdb83", "variant": 97307799, "library": "libgcc"}, {"name": "__tfl", "hash": "90248c8691a5618ecf93af893ae4bfe19decdb83", "variant": 97307799, "library": "libgcc"}, {"name": "__tfi", "hash": "90248c8691a5618ecf93af893ae4bfe19decdb83", "variant": 97307799, "library": "libgcc"}, {"name": "__tfs", "hash": "90248c8691a5618ecf93af893ae4bfe19decdb83", "variant": 97307799, "library": "libgcc"}, {"name": "__tfb", "hash": "90248c8691a5618ecf93af893ae4bfe19decdb83", "variant": 97307799, "library": "libgcc"}, {"name": "__tfc", "hash": "90248c8691a5618ecf93af893ae4bfe19decdb83", "variant": 97307799, "library": "libgcc"}, {"name": "__tfw", "hash": "90248c8691a5618ecf93af893ae4bfe19decdb83", "variant": 97307799, "library": "libgcc"}, {"name": "__tfr", "hash": "90248c8691a5618ecf93af893ae4bfe19decdb83", "variant": 97307799, "library": "libgcc"}, {"name": "__tfd", "hash": "90248c8691a5618ecf93af893ae4bfe19decdb83", "variant": 97307799, "library": "libgcc"}, {"name": "__tff", "hash": "90248c8691a5618ecf93af893ae4bfe19decdb83", "variant": 97307799, "library": "libgcc"}, {"name": "__tfU)PS2SDB", 8192}, + std::string_view{R"PS2SDB(i", "hash": "90248c8691a5618ecf93af893ae4bfe19decdb83", "variant": 97307799, "library": "libgcc"}, {"name": "__tfUl", "hash": "90248c8691a5618ecf93af893ae4bfe19decdb83", "variant": 97307799, "library": "libgcc"}, {"name": "__tfUx", "hash": "90248c8691a5618ecf93af893ae4bfe19decdb83", "variant": 97307799, "library": "libgcc"}, {"name": "__tfUs", "hash": "90248c8691a5618ecf93af893ae4bfe19decdb83", "variant": 97307799, "library": "libgcc"}, {"name": "__tfUc", "hash": "90248c8691a5618ecf93af893ae4bfe19decdb83", "variant": 97307799, "library": "libgcc"}, {"name": "__tfSc", "hash": "90248c8691a5618ecf93af893ae4bfe19decdb83", "variant": 97307799, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "_Error"}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [], "symbols": [{"name": "_sequenceScalableExtension", "hash": "53b68b1d1ac1d1fdb21709ed9bc31f21b0f7173e", "variant": 1029316114, "library": "libmpeg"}, {"name": "_unknown_extension", "hash": "53b68b1d1ac1d1fdb21709ed9bc31f21b0f7173e", "variant": 1029316114, "library": "libmpeg"}, {"name": "_pictureSpatialScalableExtension", "hash": "53b68b1d1ac1d1fdb21709ed9bc31f21b0f7173e", "variant": 1029316114, "library": "libmpeg"}, {"name": "_pictureTemporalScalableExtension", "hash": "53b68b1d1ac1d1fdb21709ed9bc31f21b0f7173e", "variant": 1029316114, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1007026176, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 24, "offset": 36, "next": [], "symbols": [{"name": "mwInit", "hash": "4249997da2795fd41556f312b2f70723655bb816", "variant": 1310424048, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2357592064, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 52, "offset": 68, "next": [], "symbols": [{"name": "Vumem1Reset", "hash": "36234343c6dee63844a36d687f9598eec45cec5a", "variant": 26789213, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 2357395456, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 16, "offset": 32, "next": [], "symbols": [{"name": "getLocalTbp", "hash": "ab426885fc62f3c7306a686a1280b5c9342d389b", "variant": 1427480386, "library": "libhip"}, {"name": "getLocalCbp", "hash": "ab426885fc62f3c7306a686a1280b5c9342d389b", "variant": 1427480386, "library": "libhip"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2357395456, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 341835786}, "child": {"skip": 48, "offset": 60, "next": [], "symbols": [{"name": "__sceEENetuser_mem_func_is_specified", "hash": "7c048e3c7713774472c1d515f59e41acfb05d670", "variant": 836566784, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 0}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1107296313}, "child": {"skip": 100, "offset": 112, "next": [], "symbols": [{"name": "new_iob", "hash": "6bb069f4d022f62d14ab690e01fcba68f9f61890", "variant": 3470571733, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604110849}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2894200832, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 108, "offset": 120, "next": [], "symbols": [{"name": "_clearEach", "hash": "8f3073eb66b77be142991e968a1bb088e94e6049", "variant": 915628331, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 666763248}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2357329920, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 48, "offset": 60, "next": [], "symbols": [{"name": "sceHiDMAMake_DBufEnd", "hash": "88e2816ec42439c702f905760e7a8a98f1d1f06a", "variant": 3170146284, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 604308240}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "bzero"}}, "child": {"skip": 4, "offset": 16, "next": [], "symbols": [{"name": "sceNetcnfifInit", "hash": "a868ca567b294602642490193fef5083317f2d94", "variant": 3425596471, "library": "netcnfif"}]}}], "symbols": []}}, {"match": {"value": 666763184}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2357329920, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 68, "offset": 80, "next": [{"match": {"value": 2382495784}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 0}, "child": {"skip": 104, "offset": 192, "next": [], "symbols": [{"name": "__sceEENetpfslowtimo", "hash": "eb788a19bc249df46a1e3d74e3cbe6ff52dbb07c", "variant": 3124371069, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2382495780}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 0}, "child": {"skip": 104, "offset": 192, "next": [], "symbols": [{"name": "__sceEENetpffasttimo", "hash": "1c83d4c2b0d95a5591ca48d3dcb9c47a93249587", "variant": 3124371069, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604176512}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2894266368, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "__sceEENetsoinit", "hash": "e3feeb8160c7ae8404b042aea23104cb196cbd45", "variant": 2192009160, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 10285}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 8, "offset": 20, "next": [], "symbols": [{"name": "sslcert_set_clear", "hash": "91c26d27c9c32497aac52947d77994ad1b37d199", "variant": 954306485, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1007419392, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006833663}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2374303744, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 368, "offset": 380, "next": [], "symbols": [{"name": "chaMemAlloc", "hash": "9858320ebc23c70fbef511a90c54017ee22b298c", "variant": 112257204, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 1006768127}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2374303744, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 268, "offset": 280, "next": [], "symbols": [{"name": "chaMemFree", "hash": "a498c9720e471d08ccbe5fca5aca998ca5864b99", "variant": 2496209091, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 8409133}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2374107136, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 212, "offset": 224, "next": [], "symbols": [{"name": "set_api", "hash": "f5f7e8cafeba67d49596c0f281c44ff9ec8badf4", "variant": 1006803538, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 1006829567}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 612630543}, "child": {"skip": 516, "offset": 528, "next": [], "symbols": [{"name": "sceSpu2MemAllocate", "hash": "0f581687220012edddbfec13e6166074491a0cc6", "variant": 1145262584, "library": "libspu2m"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1007157248, "relocation": {"type": "MIPS_HI16", "symbol": ""})PS2SDB", 8192}, + std::string_view{R"PS2SDB(}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 621281280, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 3640983552}, "child": {"skip": 68, "offset": 80, "next": [{"match": {"value": 1267139517}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 1241514943}, "child": {"skip": 28, "offset": 116, "next": [], "symbols": [{"name": "_sceVu0ecossin", "hash": "47fd575e9b8674147eccee0acd89e2d6c0440ad8", "variant": 3605881645, "library": "libvu0"}]}}], "symbols": []}}, {"match": {"value": 1269236669}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 1241514943}, "child": {"skip": 28, "offset": 116, "next": [], "symbols": [{"name": "_sceVu0ecossin", "hash": "15b006f984af69018bde2df98fd38e888b35852f", "variant": 3605881645, "library": "libvu0"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2366111744, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1218990080}, "child": {"skip": 396, "offset": 408, "next": [], "symbols": [{"name": "sceSynthesizerTvfProcI", "hash": "6d7f38e494f705c7add78fe1fce08d3748ddd14d", "variant": 2079730542, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 604110851}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2365784064, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 380, "offset": 392, "next": [], "symbols": [{"name": "_dualPrimeVector", "hash": "d15a0a0521abb577baabd0cb9ba5179fdd041b06", "variant": 2765231929, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 8402989}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2365718528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 164, "offset": 176, "next": [], "symbols": [{"name": "_get_unpack_size", "hash": "8b697b9226319d6f77a167695423ea63552cd2d4", "variant": 3816272, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 14381}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2365718528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 196, "offset": 208, "next": [], "symbols": [{"name": "_erase_gsctx", "hash": "19936b5aa7359c71a3187d3fd597cd2bfba9269f", "variant": 2486894490, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 1006829569}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2365849600, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 84, "offset": 96, "next": [], "symbols": [{"name": "__sceEENetrandom", "hash": "f9e73f1454f550113972e651e3b155df17fc5c23", "variant": 1935280866, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 604307749}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1007026176, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 96, "offset": 108, "next": [], "symbols": [{"name": "__sceEENetin_proto_init", "hash": "0644234008e5b6eacf74e86be231678ff80feba5", "variant": 1424138502, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 604316672}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1007026176, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 84, "offset": 96, "next": [], "symbols": [{"name": "__sceEENetudp_init", "hash": "26051690a9a3147bdf8d3b45e6c3698ab94a7c44", "variant": 1965058982, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 614596608, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 64, "offset": 76, "next": [], "symbols": [{"name": "_InitAlarm", "hash": "b38d1998c2cc3c694055b44636d9b40c28167369", "variant": 3549692305, "library": "libkernl"}, {"name": "_sceTimerAlarmInit", "hash": "b38d1998c2cc3c694055b44636d9b40c28167369", "variant": 3549692305, "library": "libtimer"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "_Error"}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [], "symbols": [{"name": "_sequenceScalableExtension", "hash": "c6533793ba6790ef969bee79cef58f7427fb5f6e", "variant": 1029316114, "library": "libmpeg"}, {"name": "_unknown_extension", "hash": "c6533793ba6790ef969bee79cef58f7427fb5f6e", "variant": 1029316114, "library": "libmpeg"}, {"name": "_pictureSpatialScalableExtension", "hash": "c6533793ba6790ef969bee79cef58f7427fb5f6e", "variant": 1029316114, "library": "libmpeg"}, {"name": "_pictureTemporalScalableExtension", "hash": "c6533793ba6790ef969bee79cef58f7427fb5f6e", "variant": 1029316114, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "_sceMpegError"}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [], "symbols": [{"name": "_sequenceScalableExtension", "hash": "c6533793ba6790ef969bee79cef58f7427fb5f6e", "variant": 1461185151, "library": "libmpeg"}, {"name": "_unknown_extension", "hash": "c6533793ba6790ef969bee79cef58f7427fb5f6e", "variant": 1461185151, "library": "libmpeg"}, {"name": "_pictureSpatialScalableExtension", "hash": "c6533793ba6790ef969bee79cef58f7427fb5f6e", "variant": 1461185151, "library": "libmpeg"}, {"name": "_pictureTemporalScalableExtension", "hash": "c6533793ba6790ef969bee79cef58f7427fb5f6e", "variant": 1461185151, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2359427072, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 406847514}, "child": {"skip": 120, "offset": 132, "next": [], "symbols": [{"name": "vblank_e_handler", "hash": "c4bb1ede0ac2b7ae7a7db6e48cd224806d6e1e54", "variant": 2562484183, "library": "libusbkb"}]}}], "symbols": []}}, {"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2359689216, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2353201152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 28, "offset": 44, "next": [], "symbols": [{"name": "getTbp", "hash": "39cbb73993770213c2bba8ad270be761e1aeed99", "variant": 4115279643, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 2359492608, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2353397760, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 28, "offset": 44, "next": [], "symbols": [{"name": "getCbp", "hash": "3c7f9b43ce848202aec9d38f4a774d4e2100dbe6", "variant": 1242057721, "library": "libhip"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666763216}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1007034368}, "child": {"skip": 940, "offset": 952, "next": [], "symbols": [{"name": "_sceFs_Rcv_Intr", "hash": "3f7d6fe77ce232a48060a41c345219b24b92392b", "variant": 141013673, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 612564960}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "toupper", "hash": "7c5328bcfd6686b525d78bfe0eff7bfab845fb69", "variant": 3555143340, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 612499488}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: 20, "offset": 32, "next": [], "symbols": [{"name": "tolower", "hash": "595e6d53a3d07d854d4b7c9337a6523c008c269b", "variant": 3555143340, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 8400941}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 666763248}, "child": {"skip": 176, "offset": 188, "next": [], "symbols": [{"name": "eenet_remove_driver_list", "hash": "801dd4af93f88f5b65b09645e1a93828bdc94ea0", "variant": 279872425, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 746717193}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 10500141}, "child": {"skip": 120, "offset": 132, "next": [], "symbols": [{"name": "R_mem_ctrl", "hash": "b5a54d620da3344b39c3e8646fd4d3b9474eabde", "variant": 21464460, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 270396}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 270399}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "SSL_feature_set", "hash": "9e062d320ed962e09094338f62ab9fd6356ab01b", "variant": 1486146878, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1008336896, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 660209664, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 192, "offset": 200, "next": [{"match": {"value": 1007157248, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 204, "next": [{"match": {"value": 621281280, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 76, "offset": 284, "next": [], "symbols": [{"name": "_kTLBException", "hash": "4370e7cde566469c0ec2cb8077e3f4ecd30ceceb", "variant": 3765033687, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1074313216}, "child": {"skip": 0, "offset": 204, "next": [{"match": {"value": 1007222784, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 76, "offset": 284, "next": [], "symbols": [{"name": "_kDebugException", "hash": "de5e408f262116b755b989a8e026b94a9ff6bd6e", "variant": 3396432429, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "InitTLB"}}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "TerminateLibrary", "hash": "a639a8a356321edbeccee089cae462e9fca431ea", "variant": 1847708960, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "iSignalSema"}}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12591149}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "CB_DelayTh", "hash": "f0ba8beba54aa6bc4e337e6b93db005fe4e6b800", "variant": 4161159239, "library": "libcdvd"}, {"name": "mcHearAlarm", "hash": "f0ba8beba54aa6bc4e337e6b93db005fe4e6b800", "variant": 4161159239, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 1007026176, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 616955904, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 32, "offset": 48, "next": [], "symbols": [{"name": "_lmcGetClientPtr", "hash": "fc463ac8fa1b02c9c33053f69f65300fd4cae0db", "variant": 635183279, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 2361589760, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8237}, "child": {"skip": 100, "offset": 116, "next": [], "symbols": [{"name": "__sceEENetsyn_cache_init", "hash": "1628ed5b85c405ce2351e938eed1c7d9dfdbbcea", "variant": 2212193753, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2361720832, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "sceHiDMASwap", "hash": "1189007f7143abe42aa4b72d9f130ffb924bdc36", "variant": 2681594821, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 813957127}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 616955904, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 52, "offset": 64, "next": [], "symbols": [{"name": "sceGpChkNumVtoP", "hash": "d930f92e3ef5465706a5cae2a6ff0082fc8026d1", "variant": 406927059, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 338944}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 616955904, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 280, "offset": 292, "next": [], "symbols": [{"name": "__sceEENettcp_xmit_timer", "hash": "5cc5f077e3710353126016e88146126d37df80b6", "variant": 3555143340, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "iWakeupThread"}}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12591149}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "mcHearAlarm", "hash": "f0ba8beba54aa6bc4e337e6b93db005fe4e6b800", "variant": 767687442, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": "regMain"}}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 120, "offset": 128, "next": [], "symbols": [{"name": "mceRegistSifFunc", "hash": "68734688289b02daf7d6b8d711abb8c968db9d2e", "variant": 1158004044, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": "eh_context_specific"}}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 12, "offset": 20, "next": [], "symbols": [{"name": "eh_threads_initialize", "hash": "04f92af72b1fbda575847f38c4cfa72a372369e9", "variant": 20322983, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": "eh_context_static"}}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 666763248}, "child": {"skip": 32, "offset": 40, "next": [], "symbols": [{"name": "eh_context_initialize", "hash": "44cc566b1c3af87e0a36cb485f84c62fc164c555", "variant": 4086054873, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "__terminate"}}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "__pure_virtual", "hash": "a639a8a356321edbeccee089cae462e9fca431ea", "variant": 546542514, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 1007616000, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 65011720}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2380398592, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [], "symbols": [{"name": "__errno", "hash": "2934fd7c492a9cbee2410d9388982dfbff88b3e2", "variant": 3555143340, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 613285856}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 636420096, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 24, "offset": 36, "next": [], "symbols": [{"name": "toupper", "hash": "6fde3c722982901c685b60d4a09636c66317833b", "variant": 3555143340, "li)PS2SDB", 8192}, + std::string_view{R"PS2SDB(brary": "libc"}]}}], "symbols": []}}, {"match": {"value": 270396}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2381185024, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 12, "offset": 24, "next": [], "symbols": [{"name": "srand", "hash": "0e6e763c2c3c25e05190e068ea342a526d397212", "variant": 3555143340, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 1006768127}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 635633664, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 200, "offset": 212, "next": [], "symbols": [{"name": "_sendDataToIPU", "hash": "db8431273b7f21fc45bb4e212c2fee71969bc279", "variant": 1364540545, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": "__sread"}}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": "__swrite"}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1007157248, "relocation": {"type": "MIPS_HI16", "symbol": "__sseek"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1007222784, "relocation": {"type": "MIPS_HI16", "symbol": "__sclose"}}, "child": {"skip": 60, "offset": 76, "next": [{"match": {"value": 2894069780}, "child": {"skip": 0, "offset": 80, "next": [{"match": {"value": 2894069784}, "child": {"skip": 8, "offset": 92, "next": [], "symbols": [{"name": "std", "hash": "b02f67136f0068ef9fbda25db6c3f5ff52d56f65", "variant": 2003818240, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 2894069784}, "child": {"skip": 0, "offset": 80, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 88, "next": [], "symbols": [{"name": "std", "hash": "b04d3052dcc2cec3a8a85eee334bef0d80065155", "variant": 2003818240, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "__sread"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 610467840, "relocation": {"type": "MIPS_LO16", "symbol": "__swrite"}}, "child": {"skip": 76, "offset": 92, "next": [], "symbols": [{"name": "std", "hash": "75b77ab397f9dff098ffb5bc8f89e997a5d2c38d", "variant": 3825411642, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2894528596}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": "__swrite"}}, "child": {"skip": 80, "offset": 92, "next": [], "symbols": [{"name": "std", "hash": "5c831045f15d146e261f4e6e9a7ec1cd6256b0b7", "variant": 1693076220, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1007616000, "relocation": {"type": "MIPS_HI16", "symbol": "__sread"}}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 2894528596}, "child": {"skip": 84, "offset": 92, "next": [], "symbols": [{"name": "std", "hash": "b2182a65d1ff830493b175d42b468868d6d703a6", "variant": 1693076220, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "fflush"}}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "_fwalk"}}, "child": {"skip": 4, "offset": 12, "next": [], "symbols": [{"name": "_cleanup_r", "hash": "c6533793ba6790ef969bee79cef58f7427fb5f6e", "variant": 1132069464, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": "_cleanup_r"}}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 2894070232}, "child": {"skip": 120, "offset": 128, "next": [], "symbols": [{"name": "__sinit", "hash": "c11bc144a47e786d16704f9807aab6f93b810caa", "variant": 983746010, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 1007616000, "relocation": {"type": "MIPS_HI16", "symbol": "_cleanup_r"}}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 2894070232}, "child": {"skip": 120, "offset": 128, "next": [], "symbols": [{"name": "__sinit", "hash": "6aa48b1360c0ec99417e86cd52df22c60e3da11a", "variant": 983746010, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 1007288320, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604372988}, "child": {"skip": 144, "offset": 152, "next": [], "symbols": [{"name": "__malloc_update_mallinfo", "hash": "4b081fb4b40bcb14c6a2866719e61f15734ea6d5", "variant": 258269346, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 2407661568, "relocation": {"type": "MIPS_GPREL16", "symbol": "_widthMB"}}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 666763168}, "child": {"skip": 780, "offset": 788, "next": [], "symbols": [{"name": "_motionComp0", "hash": "54b7b63980110c442565fdafde12029ca81c35b1", "variant": 254035820, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2407727104, "relocation": {"type": "MIPS_GPREL16", "symbol": "_picture_structure"}}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604110851}, "child": {"skip": 376, "offset": 384, "next": [], "symbols": [{"name": "_dualPrimeVector", "hash": "8d6ccb4ec7a5c1dd4d100ee12f96105b4bc7a8d9", "variant": 1623894280, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "_sceMpegFlushBuf"}}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "_flushBuf", "hash": "a639a8a356321edbeccee089cae462e9fca431ea", "variant": 1933400428, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2407727104, "relocation": {"type": "MIPS_GPREL16", "symbol": "_picture_coding_type"}}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604110851}, "child": {"skip": 144, "offset": 152, "next": [], "symbols": [{"name": "_updateTempTackData", "hash": "bd584cc24e0ffb246e68dbfe8e12736857e99c80", "variant": 3043376623, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2407661568, "relocation": {"type": "MIPS_GPREL16", "symbol": "_picture_structure"}}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604504068}, "child": {"skip": 708, "offset": 716, "next": [], "symbols": [{"name": "_updateRefImage", "hash": "3edf9c9ecc72168375544987adcfe44ce403cf0e", "variant": 3124744740, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2407727104, "relocation": {"type": "MIPS_GPREL16", "symbol": "_theSceMpeg"}}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604241922}, "child": {"skip": 36, "offset": 44, "next": [], "symbols": [{"name": "_markOutput", "hash": "f159752015b476d0314e36969096666af64a706e", "variant": 2084727654, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2407661568, "relocation": {"type": "MIPS_GPREL16", "symbol": "_forwFrame"}}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1413480449}, "child": {"skip": 72, "offset": 80, "next": [], "symbols": [{"name": "sceMpegClearRefBuff", "hash": "07e15facc3a051811f15d28f6d94f83bb1c0d726", "variant": 2838045486, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2407661568, "relocation": {"type": "MIPS_GPREL16", "symbol": "_theSceMpeg"}}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 2353201216}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "sceMpegSetImageBuff", "hash": "644882639939b609a31f3a7ec4b3ec6ad498f840", "variant": 2133970851, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2944401408, "relocation": {"type": "MIPS_GPREL16", "symbol": "_isMpeg2"}}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "_ipuSetMPEG1"}}, "child": {"skip": 4, "offset": 12, "next": [], "symbols": [{"name": "_initSeqAgain", "hash": "4be19f5e0a8c8329b399a4d162d066d70f2407a8", "variant": 2735808679, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2407661568, "rel)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ocation": {"type": "MIPS_GPREL16", "symbol": "_picHeight"}}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 666763184}, "child": {"skip": 216, "offset": 224, "next": [], "symbols": [{"name": "_initRefImages", "hash": "893a0ae810e1b10ce79fa6302767277f344764eb", "variant": 4142155362, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "_flushBuf"}}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604307488}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "flushBuf32", "hash": "a1b018d687c75580e2e0da5fe36e17f7c579bd97", "variant": 3778663328, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "AdjustTime"}}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604372452}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "sceScfGetGMTfromRTC", "hash": "cf15a656230f23cfcbf1fe5bf410127a0248bd6c", "variant": 255287012, "library": "libscf"}]}}], "symbols": []}}, {"match": {"value": 1007091712, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1007026176, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 24, "offset": 36, "next": [], "symbols": [{"name": "Vumem1SetParam", "hash": "6769e22ebd361b7f91466cb08a13c77dfc943057", "variant": 2693997208, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 2363621376, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 8523818}, "child": {"skip": 144, "offset": 156, "next": [], "symbols": [{"name": "__sceEENetip_next_mtu", "hash": "1538c1450eea827a73e0b941a0a0202621034c1b", "variant": 2040579758, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 8405037}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2363621376, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 272629786}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 10285}, "child": {"skip": 108, "offset": 128, "next": [], "symbols": [{"name": "sceHiDMADel_Chain", "hash": "eafe4e81edffefb8c59245b1b96bdb9645a66627", "variant": 863009247, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 406847504}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 10285}, "child": {"skip": 68, "offset": 88, "next": [], "symbols": [{"name": "_register_gsctx", "hash": "ae211f8e3260b9f41e23ad60370f4801d58de6e8", "variant": 3428408077, "library": "libhig"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666763248}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2363883520, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 116, "offset": 128, "next": [], "symbols": [{"name": "__sceEENeteenet_memalign_internal", "hash": "9568f68b702056a09ef9c14a3c4dc292e663b4d2", "variant": 330415687, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 612630536}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 619118592, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 16, "offset": 28, "next": [], "symbols": [{"name": "EVP_PKEY_reference_inc", "hash": "5e3d7111567c2e517a07beb80bb51507b0a553ea", "variant": 2477114033, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 612630680}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 619118592, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 16, "offset": 28, "next": [], "symbols": [{"name": "SSL_SESSION_reference_inc", "hash": "88b9661505d413cb52436ff15273a7320d314ed6", "variant": 2477114033, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 612630548}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 619118592, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 16, "offset": 28, "next": [], "symbols": [{"name": "X509_reference_inc", "hash": "4ffb0f9829631611f3fd884d50426ea186033579", "variant": 2477114033, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "sceHiGsCtxSetByDBuff"}}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 614793232}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "_set_stdgsctx", "hash": "347b1c103efbf30803044199fdd37cc71d006912", "variant": 1776919339, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "__destroy_global_chain"}}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "mwExit", "hash": "a639a8a356321edbeccee089cae462e9fca431ea", "variant": 261750452, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 2407727104, "relocation": {"type": "MIPS_GPREL16", "symbol": "__global_destructor_chain"}}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1887442472}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2898460672}, "child": {"skip": 16, "offset": 28, "next": [], "symbols": [{"name": "__register_global_object", "hash": "e65af27757f9c99f426b8bd2441bf5fc09a76251", "variant": 3957646085, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 8392749}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2898460672}, "child": {"skip": 16, "offset": 28, "next": [], "symbols": [{"name": "__register_global_object", "hash": "a66894ade9e639116164d334689f90f9ff4a6b36", "variant": 3957646085, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006698496, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 2351104000, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1887442472}, "child": {"skip": 24, "offset": 36, "next": [], "symbols": [{"name": "__register_global_object", "hash": "845e96cadaefd307eee8a2af5d2cf7a11502e975", "variant": 1374892915, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 8392749}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2351104000, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 24, "offset": 36, "next": [], "symbols": [{"name": "__register_global_object", "hash": "516741aceae876deced4ba7dd531ea8bd7fe7b23", "variant": 3406751348, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "__call_static_initializers__FPPFv_vPPFv_v"}}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "__initialize_cpp_rts", "hash": "a639a8a356321edbeccee089cae462e9fca431ea", "variant": 2027673665, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "free"}}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "__dla__FPv", "hash": "a639a8a356321edbeccee089cae462e9fca431ea", "variant": 688987396, "library": "mslgcc_ps2"}, {"name": "__dl__FPv", "hash": "a639a8a356321edbeccee089cae462e9fca431ea", "variant": 688987396, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "malloc"}}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "__nwa__FUi", "hash": "a639a8a356321edbeccee089cae462e9fca431ea", "variant": 1328790573, "library": "mslgcc_ps2"}, {"name": "__nw__FUi", "hash": "a639a8a356321edbeccee08)PS2SDB", 8192}, + std::string_view{R"PS2SDB(9cae462e9fca431ea", "variant": 1328790573, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "mwExit"}}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "__do_global_dtors", "hash": "a639a8a356321edbeccee089cae462e9fca431ea", "variant": 360193250, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "_clrMem"}}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604307584}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "sceSynthesizerClearKeyMap", "hash": "79fce1a19743f271a2005f48b836ab29755429fc", "variant": 3344604651, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "ChangePartVolumeExpression"}}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 3834380332}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "sceSynthesizerChangeOutVol", "hash": "e9d8319e8a338406af63e76def891d946f3d6ab7", "variant": 2842547122, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "sceVu0CopyMatrix"}}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "scePFontSetScreenMatrix", "hash": "a639a8a356321edbeccee089cae462e9fca431ea", "variant": 3656524320, "library": "libpfont"}]}}, {"match": {"value": 612631248}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "scePFontSetFontMatrix", "hash": "b7618e72f28203b142447b93bc42b098ade5f753", "variant": 3656524320, "library": "libpfont"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "sceVu0CopyVector"}}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 612631328}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "scePFontSetLocate", "hash": "4609b447f127111a66e11b84045d8cf4cbd174d2", "variant": 984558516, "library": "libpfont"}]}}, {"match": {"value": 612631312}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "scePFontSetColor", "hash": "ba1ffdef24538e39d82bde719201208aa3ad5c6a", "variant": 984558516, "library": "libpfont"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "sce_sync"}}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "sceNetcnfifSync", "hash": "a639a8a356321edbeccee089cae462e9fca431ea", "variant": 2948920611, "library": "netcnfif"}]}}, {"match": {"value": 604241921}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "sceNetcnfifCheck", "hash": "cd214a811aa1d3236114d66613d96c2bdf0f217a", "variant": 2948920611, "library": "netcnfif"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "__callout_stop"}}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 10285}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "__sceEENetcallout_stop", "hash": "5b7985d7990655afa4ff57ef5f75fb3c394daef7", "variant": 1055045783, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "__sceEENetselwakeup"}}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 612630644}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "__sceEENetsohasoutofband", "hash": "c21dcee855f14337d570b8c260161d7341ed3ca3", "variant": 3210200556, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "sceEENetFree"}}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "__sceEENethashdone", "hash": "a639a8a356321edbeccee089cae462e9fca431ea", "variant": 2867118518, "library": "libeenet"}, {"name": "__sceEENetifafree", "hash": "a639a8a356321edbeccee089cae462e9fca431ea", "variant": 2867118518, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "pppoe_input"}}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "__sceEENetpppoeintr", "hash": "a639a8a356321edbeccee089cae462e9fca431ea", "variant": 3255378216, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": "__sceEENetcallout_thread"}}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 116, "offset": 124, "next": [], "symbols": [{"name": "__sceEENeteenet_callout_start", "hash": "f27be44fdf8295a37826c7c5a026209e3b187a26", "variant": 2640022037, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "xfree"}}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "sceHTTPFreeMemory", "hash": "a639a8a356321edbeccee089cae462e9fca431ea", "variant": 973086757, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 1007222784, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 2368143360, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 8851498}, "child": {"skip": 124, "offset": 136, "next": [], "symbols": [{"name": "BN_bnme_delete", "hash": "34d7a36b6fb1494b774c56dd4d9b4a281e66b88f", "variant": 2839001711, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 666763248}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2367881216, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 192, "offset": 204, "next": [], "symbols": [{"name": "BN_bnme_insert", "hash": "faaf6e7fb821378892babd5c4f577fe7c805fe88", "variant": 2466009035, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 8405037}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2367815680, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 44, "offset": 56, "next": [], "symbols": [{"name": "R_DIAG_check_stack", "hash": "2fae448c44bf79fdcc81b3428dab7c29fcb75d8f", "variant": 3344934988, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "R_free"}}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "EVP_ENCODE_CTX_free", "hash": "a639a8a356321edbeccee089cae462e9fca431ea", "variant": 1760569255, "library": "libhttps"}, {"name": "R_time_free", "hash": "a639a8a356321edbeccee089cae462e9fca431ea", "variant": 1760569255, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "EVP_DigestUpdate"}}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 2357460996}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "HMAC_Update", "hash": "f0a3fc59b1daf25f1c595f3c1a014039a1692dd2", "variant": 2075416677, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "lh_doall_arg"}}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12333}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "lh_doall", "hash": "518de07cc1e2c0af725e2f8d0a222d294a25a700", "variant": 3811764872, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "SSL_connect"}}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 8394797}, "child": {"skip": 32, "offset": 40, "next": [], "sy)PS2SDB", 8192}, + std::string_view{R"PS2SDB(mbols": [{"name": "SSL_set_connect_state", "hash": "83fb35230defd30bd8b1a291a239c45d5e558af4", "variant": 637871101, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": "sha1_block"}}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006856005}, "child": {"skip": 92, "offset": 100, "next": [], "symbols": [{"name": "SHA1_Init", "hash": "fb9661077e4d7b629b02311ea24eb2899088f4b6", "variant": 2063633996, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "EVP_PKEY_reference_inc"}}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "SSL_EVP_PKEY_reference_inc", "hash": "a639a8a356321edbeccee089cae462e9fca431ea", "variant": 351139852, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "EVP_PKEY_free"}}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "SSL_EVP_PKEY_free", "hash": "a639a8a356321edbeccee089cae462e9fca431ea", "variant": 4262439771, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "ssl3_free"}}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "tls1_free", "hash": "a639a8a356321edbeccee089cae462e9fca431ea", "variant": 2485783642, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 1879051304}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1879053352}, "child": {"skip": 268, "offset": 276, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 280, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 8, "offset": 292, "next": [{"match": {"value": 2084569088}, "child": {"skip": 0, "offset": 296, "next": [{"match": {"value": 0}, "child": {"skip": 136, "offset": 436, "next": [{"match": {"value": 608501764}, "child": {"skip": 8, "offset": 448, "next": [], "symbols": [{"name": "_start", "hash": "d8633b5d5212f1e8e2ad7722ed9618f20d05c19c", "variant": 2906145101, "library": "crt0"}]}}], "symbols": [{"name": "_start", "hash": "4346e832b599080b5d6a5524458dd6e555e99bdb", "variant": 657393563, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 809762831}, "child": {"skip": 0, "offset": 296, "next": [{"match": {"value": 276824070}, "child": {"skip": 196, "offset": 496, "next": [{"match": {"value": 1107296312}, "child": {"skip": 28, "offset": 528, "next": [], "symbols": [{"name": "_start", "hash": "802da8ec7d522faed1af9143a5dadfbe0090de87", "variant": 124142899, "library": "crt0"}]}}], "symbols": [{"name": "_start", "hash": "d651ca9f3bcba86e4872c1f369cb0fcdaebddd03", "variant": 650820006, "library": "crt0"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764063}, "child": {"skip": 0, "offset": 280, "next": [{"match": {"value": 1006830063}, "child": {"skip": 0, "offset": 284, "next": [{"match": {"value": 608339712}, "child": {"skip": 148, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "c7588964b2e25d2e3ec1fe16f4df077aa8a6802e", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829683}, "child": {"skip": 0, "offset": 284, "next": [{"match": {"value": 608353920}, "child": {"skip": 148, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "070f2b795c78e9455f0f0df54e74af9762704ea1", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829611}, "child": {"skip": 0, "offset": 284, "next": [{"match": {"value": 608330112}, "child": {"skip": 208, "offset": 496, "next": [], "symbols": [{"name": "_start", "hash": "5a90de7f1139c8a61b447dc24390ab107c0ea9de", "variant": 107749811, "library": "crt0"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764071}, "child": {"skip": 0, "offset": 280, "next": [{"match": {"value": 1006830061}, "child": {"skip": 0, "offset": 284, "next": [{"match": {"value": 608335104}, "child": {"skip": 148, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "4ae483ec83a24a19c2de4c49d62c77631126fe90", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006830076}, "child": {"skip": 0, "offset": 284, "next": [{"match": {"value": 608324480}, "child": {"skip": 148, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "6cd8975b8a99d3f4ba03ce353781397f59a4451e", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764097}, "child": {"skip": 0, "offset": 280, "next": [{"match": {"value": 1006829662}, "child": {"skip": 152, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "9a0ef2867ca84860a3fc1de8b5ee4f7038bb244c", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006764116}, "child": {"skip": 0, "offset": 280, "next": [{"match": {"value": 1006830073}, "child": {"skip": 152, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "6b89d6aed680ee1e0f1126ba75d0acaddf9cb498", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006764117}, "child": {"skip": 0, "offset": 280, "next": [{"match": {"value": 1006830076}, "child": {"skip": 0, "offset": 284, "next": [{"match": {"value": 608331648}, "child": {"skip": 0, "offset": 288, "next": [{"match": {"value": 610517504}, "child": {"skip": 144, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "3b8e9fcccfba36995dd1410b47de6cb945d8ed7a", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 608314880}, "child": {"skip": 0, "offset": 288, "next": [{"match": {"value": 610500608}, "child": {"skip": 144, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "ae55033d87f2260a11906ecfd858e0a32515f836", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006829709}, "child": {"skip": 0, "offset": 284, "next": [{"match": {"value": 608331904}, "child": {"skip": 240, "offset": 528, "next": [], "symbols": [{"name": "_start", "hash": "522b2f73b982d985e5755feffee3133b9094e120", "variant": 2671634970, "library": "crt0"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764128}, "child": {"skip": 0, "offset": 280, "next": [{"match": {"value": 1006830077}, "child": {"skip": 0, "offset": 284, "next": [{"match": {"value": 608366848}, "child": {"skip": 148, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "3dc6813881cb639277324411f7093253d61f2288", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829752}, "child": {"skip": 0, "offset": 284, "next": [{"match": {"value": 608324352}, "child": {"skip": 148, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "be53df317ed67bdb75f928ceb25f738745ece24b", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764060}, "child": {"skip": 0, "offset": 280, "next": [{"match": {"value": 1006829604}, "child": {"skip": 0, "offset": 284, "next": [{"match": {"value": 608316416}, "child": {"skip": 148, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "b11d9db00d2445197ea9687e0972be3193d70565", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829850}, "child": {"skip": 0, "offset": 284, "next": [{"match": {"value": 608348160}, "child": {"skip": 148, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "f214263618da46643adcd5aeffc720712bcaf8c6", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764076}, "child": {"skip": 0, "offset": 280, "next": [{"match": {"value": 1006829844}, "child": {"skip": 152, "offset": 436, "next": [], "symbols": [{"name": "_start", )PS2SDB", 8192}, + std::string_view{R"PS2SDB("hash": "d83da63f733e3be057ff89cc71bf8a88272ed6d7", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006764064}, "child": {"skip": 0, "offset": 280, "next": [{"match": {"value": 1006830012}, "child": {"skip": 0, "offset": 284, "next": [{"match": {"value": 608322176}, "child": {"skip": 148, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "36ec220115df914206213c12eebe361db38005e3", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829608}, "child": {"skip": 0, "offset": 284, "next": [{"match": {"value": 608331904}, "child": {"skip": 148, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "8706bc0b89d5fdc8f540e4a4547fa5d0270c60f4", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829774}, "child": {"skip": 0, "offset": 284, "next": [{"match": {"value": 608317184}, "child": {"skip": 208, "offset": 496, "next": [], "symbols": [{"name": "_start", "hash": "bc17be467a7af4e0724ea8b8929a3881e657f0ba", "variant": 107749811, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829805}, "child": {"skip": 0, "offset": 284, "next": [{"match": {"value": 608313600}, "child": {"skip": 208, "offset": 496, "next": [], "symbols": [{"name": "_start", "hash": "c850dbd213e5a1742231b78a7af126da0201a41b", "variant": 107749811, "library": "crt0"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764079}, "child": {"skip": 0, "offset": 280, "next": [{"match": {"value": 1006829634}, "child": {"skip": 0, "offset": 284, "next": [{"match": {"value": 608344576}, "child": {"skip": 148, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "3308c0e7d94ed48267727cbf03aeb5e4f1b7a1a9", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829640}, "child": {"skip": 0, "offset": 284, "next": [{"match": {"value": 608340736}, "child": {"skip": 148, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "3fc5dceb2b99638b9efbb4fce39bf9840757843f", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764093}, "child": {"skip": 0, "offset": 280, "next": [{"match": {"value": 1006829692}, "child": {"skip": 0, "offset": 284, "next": [{"match": {"value": 608360704}, "child": {"skip": 148, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "9a5f948f87baf6d311579b662925390e516675ba", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829632}, "child": {"skip": 0, "offset": 284, "next": [{"match": {"value": 608330240}, "child": {"skip": 148, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "cd53ed16edb2ef9b2dd610aacaa9ec5777fe433c", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764436}, "child": {"skip": 0, "offset": 280, "next": [{"match": {"value": 1006830025}, "child": {"skip": 152, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "234843585dc009eb580a6a1b9dfb2b9ca51aed4b", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006764056}, "child": {"skip": 0, "offset": 280, "next": [{"match": {"value": 1006829597}, "child": {"skip": 0, "offset": 284, "next": [{"match": {"value": 608339456}, "child": {"skip": 148, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "c803285d5a069cba13d13baf00416c2734509ae1", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829601}, "child": {"skip": 0, "offset": 284, "next": [{"match": {"value": 608339456}, "child": {"skip": 0, "offset": 288, "next": [{"match": {"value": 610478720}, "child": {"skip": 0, "offset": 292, "next": [{"match": {"value": 2084569088}, "child": {"skip": 140, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "164d06f2aea6777eb095ced10022c9ea6bb6350f", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 610479104}, "child": {"skip": 0, "offset": 292, "next": [{"match": {"value": 2084569088}, "child": {"skip": 140, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "05bc0c1f16fa34ae08ce7f8d03b6bae9bc444965", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764053}, "child": {"skip": 0, "offset": 280, "next": [{"match": {"value": 1006829598}, "child": {"skip": 0, "offset": 284, "next": [{"match": {"value": 608338816}, "child": {"skip": 148, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "42e80a09dfa1fdc3b58e06f299ab83de40d7c429", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829595}, "child": {"skip": 0, "offset": 284, "next": [{"match": {"value": 608318720}, "child": {"skip": 148, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "4a252fc9de813cff43fe142d10b99e26c12cd76c", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006830074}, "child": {"skip": 0, "offset": 284, "next": [{"match": {"value": 608316800}, "child": {"skip": 148, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "c97c0bee30968d40daa0115edb9bd299161a28d4", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764136}, "child": {"skip": 0, "offset": 280, "next": [{"match": {"value": 1006829793}, "child": {"skip": 152, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "a037fb03a153673c466baa4da18ea0f4ccdf0c77", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006764066}, "child": {"skip": 0, "offset": 280, "next": [{"match": {"value": 1006829632}, "child": {"skip": 0, "offset": 284, "next": [{"match": {"value": 608322304}, "child": {"skip": 148, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "972dd0f022c54a7af3e3f50685611b1246db8735", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829603}, "child": {"skip": 0, "offset": 284, "next": [{"match": {"value": 608323712}, "child": {"skip": 148, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "6baff4955abb4941f809b6ec42473c7ee351e3b3", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764077}, "child": {"skip": 0, "offset": 280, "next": [{"match": {"value": 1006829641}, "child": {"skip": 0, "offset": 284, "next": [{"match": {"value": 608338944}, "child": {"skip": 148, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "753965e5c95469c42b99b0e1238e66139886ecc9", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829643}, "child": {"skip": 0, "offset": 284, "next": [{"match": {"value": 608320384}, "child": {"skip": 148, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "83db6518c819195e50960ee7187065b0b26f02c2", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829648}, "child": {"skip": 0, "offset": 284, "next": [{"match": {"value": 608332160}, "child": {"skip": 148, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "e2d535c269cd2560bfb4af14e4ecc919c1a3635f", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764102}, "child": {"skip": 0, "offset": 280, "next": [{"match": {"value": 1006830027}, "child": {"skip": 152, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "f97e3650053efb12aa6f31baec008cf81fde5400", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006764081}, "child": {"skip": 0, "offset": 280, "next": [{"match": {"value": 1006829632}, "child": {"skip": 0, "offset": 284, "next": [{"match": {"value": 608334720}, "child": {"skip": 148, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "bdab5ed834bedb9a5e7015e29e39e3b8dd13effc", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829654}, "child": {"skip": 0, "offset": 284, "nex)PS2SDB", 8192}, + std::string_view{R"PS2SDB(t": [{"match": {"value": 608357120}, "child": {"skip": 148, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "6ec4ba0cdf66a358c7e2bf6d7f5d0e5d5e2bdd37", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764126}, "child": {"skip": 0, "offset": 280, "next": [{"match": {"value": 1006830077}, "child": {"skip": 152, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "10006a593a306264c6bab231b2b038aa5343f9a5", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006764072}, "child": {"skip": 0, "offset": 280, "next": [{"match": {"value": 1006829613}, "child": {"skip": 0, "offset": 284, "next": [{"match": {"value": 608324864}, "child": {"skip": 148, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "ed41256729f2362b4ce1825af9ad00cacf6a16e5", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829611}, "child": {"skip": 0, "offset": 284, "next": [{"match": {"value": 608344960}, "child": {"skip": 148, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "09d16520177162826a6e442695dcd420a3667c56", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006830072}, "child": {"skip": 0, "offset": 284, "next": [{"match": {"value": 608359936}, "child": {"skip": 208, "offset": 496, "next": [], "symbols": [{"name": "_start", "hash": "f7b06d0bc554c3c382e3e0680fdd09b528aefc38", "variant": 107749811, "library": "crt0"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764074}, "child": {"skip": 0, "offset": 280, "next": [{"match": {"value": 1006830053}, "child": {"skip": 0, "offset": 284, "next": [{"match": {"value": 608336256}, "child": {"skip": 148, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "325f394e0cb9030b6f669f4aa227eab8026702a7", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006830058}, "child": {"skip": 0, "offset": 284, "next": [{"match": {"value": 608305152}, "child": {"skip": 208, "offset": 496, "next": [], "symbols": [{"name": "_start", "hash": "0607366c8a3c2ccfbc1ac6f7f38355f9ce4bc5f0", "variant": 107749811, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829612}, "child": {"skip": 0, "offset": 284, "next": [{"match": {"value": 608321024}, "child": {"skip": 148, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "bb8c6b6a577de2dfbf9633dad59d2ec8c073164a", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006830059}, "child": {"skip": 0, "offset": 284, "next": [{"match": {"value": 608320000}, "child": {"skip": 208, "offset": 496, "next": [], "symbols": [{"name": "_start", "hash": "3ef908cbee8f62dc3a699d0d14d3ee24200e6ca5", "variant": 107749811, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006830063}, "child": {"skip": 0, "offset": 284, "next": [{"match": {"value": 608345984}, "child": {"skip": 148, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "64e3fe6e6dc38b42c6cc0d9e262d660b6e425899", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764121}, "child": {"skip": 0, "offset": 280, "next": [{"match": {"value": 1006829706}, "child": {"skip": 152, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "0aa37b07014a89d8df4647100aaddcd3e6d0cfca", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006764105}, "child": {"skip": 0, "offset": 280, "next": [{"match": {"value": 1006829647}, "child": {"skip": 0, "offset": 284, "next": [{"match": {"value": 608355840}, "child": {"skip": 148, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "84e7ae2e8015c11a8298a6da1837b4fd06a2fc26", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829659}, "child": {"skip": 0, "offset": 284, "next": [{"match": {"value": 608315776}, "child": {"skip": 0, "offset": 288, "next": [{"match": {"value": 610476032}, "child": {"skip": 144, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "2b008aa517f05bacae5cb79c055c4f1150e228fa", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 608349696}, "child": {"skip": 0, "offset": 288, "next": [{"match": {"value": 610476032}, "child": {"skip": 144, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "1d861a1babcf85fc7974841d43b964483b62ed01", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764067}, "child": {"skip": 0, "offset": 280, "next": [{"match": {"value": 1006829623}, "child": {"skip": 152, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "c9ba2294cca67aa74df47aaf8600baa4fb046e5b", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006764092}, "child": {"skip": 0, "offset": 280, "next": [{"match": {"value": 1006829704}, "child": {"skip": 0, "offset": 284, "next": [{"match": {"value": 608332544}, "child": {"skip": 148, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "a1eade5990e02b92de52f8920f6ddc04a00dadbe", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829637}, "child": {"skip": 0, "offset": 284, "next": [{"match": {"value": 608325504}, "child": {"skip": 148, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "db946fd818573c2480515c0d0a7a922b157d6d4c", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829699}, "child": {"skip": 0, "offset": 284, "next": [{"match": {"value": 608359552}, "child": {"skip": 0, "offset": 288, "next": [{"match": {"value": 610521472}, "child": {"skip": 144, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "6b67d144a654d900c8ad9e7b46ecd375d540434e", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 608368256}, "child": {"skip": 0, "offset": 288, "next": [{"match": {"value": 610530304}, "child": {"skip": 144, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "04f22b2ad4ff0c7fca293ba44fa968ec05d65b04", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006829629}, "child": {"skip": 0, "offset": 284, "next": [{"match": {"value": 608318336}, "child": {"skip": 148, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "9398774d5d1d2df9b6515b1d009a0015e35e653c", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764107}, "child": {"skip": 0, "offset": 280, "next": [{"match": {"value": 1006829775}, "child": {"skip": 0, "offset": 284, "next": [{"match": {"value": 608316544}, "child": {"skip": 0, "offset": 288, "next": [{"match": {"value": 610510720}, "child": {"skip": 144, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "976bc984aef5652d98d11302d6e5d821fc10642c", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 608316800}, "child": {"skip": 0, "offset": 288, "next": [{"match": {"value": 610510976}, "child": {"skip": 144, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "6e7e00c660d3b72b3979ef1ec3cb7468cbc93c10", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006829659}, "child": {"skip": 0, "offset": 284, "next": [{"match": {"value": 608352000}, "child": {"skip": 208, "offset": 496, "next": [], "symbols": [{"name": "_start", "hash": "7b58acdfa7c552f25953e254af595b52319dac59", "variant": 107749811, "library": "crt0"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764109}, "child": {"skip": 0, "offset": 280, "next": [{"match": {"value": 1006829662}, "child": {"skip": 212, "offset": 496, "next": [], "symbols": [{"name": "_start", "hash": "d699b8b2fa97c177c58143a1402f8fa5ec8b9513", "variant": 107749811, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006764106}, "child": {"skip": 0, "offset": 280, "next": [{"match": {"value": 1006829658}, "child")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: {"skip": 0, "offset": 284, "next": [{"match": {"value": 608324480}, "child": {"skip": 208, "offset": 496, "next": [], "symbols": [{"name": "_start", "hash": "66048923764b983c6bb662a93dfdf8fe73bc919c", "variant": 107749811, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829656}, "child": {"skip": 0, "offset": 284, "next": [{"match": {"value": 608343680}, "child": {"skip": 208, "offset": 496, "next": [], "symbols": [{"name": "_start", "hash": "80ba67f09c99ee469433b13b80f1aa3086a8ddab", "variant": 107749811, "library": "crt0"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764113}, "child": {"skip": 0, "offset": 280, "next": [{"match": {"value": 1006829665}, "child": {"skip": 212, "offset": 496, "next": [], "symbols": [{"name": "_start", "hash": "dc6773c04e43cd669c704d7014b6990795d8e57e", "variant": 107749811, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006764110}, "child": {"skip": 0, "offset": 280, "next": [{"match": {"value": 1006829662}, "child": {"skip": 212, "offset": 496, "next": [], "symbols": [{"name": "_start", "hash": "a5a2a806c65b5ca56f7a014c7bee6018cff7d984", "variant": 107749811, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006764101}, "child": {"skip": 0, "offset": 280, "next": [{"match": {"value": 1006829654}, "child": {"skip": 152, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "85358e1c25264d1f61826eb9b92ce12d6f64fd1a", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006764057}, "child": {"skip": 0, "offset": 280, "next": [{"match": {"value": 1006829993}, "child": {"skip": 0, "offset": 284, "next": [{"match": {"value": 608356352}, "child": {"skip": 148, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "41e09ea5c421e29e3d507f80374ab8df194f5580", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829595}, "child": {"skip": 0, "offset": 284, "next": [{"match": {"value": 608349568}, "child": {"skip": 0, "offset": 288, "next": [{"match": {"value": 610468224}, "child": {"skip": 144, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "836417d5f3a6ca06635dac8d05e121f1cb25b4be", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 608349696}, "child": {"skip": 0, "offset": 288, "next": [{"match": {"value": 610468352}, "child": {"skip": 144, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "1cbaa987e1f38592da96e40e316b2e825b102022", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 608349056}, "child": {"skip": 0, "offset": 288, "next": [{"match": {"value": 610533248}, "child": {"skip": 144, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "baf9c6bf5f45c423f16cf1680669c869859205bb", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 608349312}, "child": {"skip": 0, "offset": 288, "next": [{"match": {"value": 610467968}, "child": {"skip": 144, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "a784db24e3fe758d91f1441918016716ff79d2f4", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006829593}, "child": {"skip": 0, "offset": 284, "next": [{"match": {"value": 608342400}, "child": {"skip": 148, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "493cf05f535b2bfd3373484b2bf3630f7bcef875", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764065}, "child": {"skip": 0, "offset": 280, "next": [{"match": {"value": 1006830063}, "child": {"skip": 0, "offset": 284, "next": [{"match": {"value": 608358784}, "child": {"skip": 148, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "b401b2ee474f2fbaf451261414aff7950161a440", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829602}, "child": {"skip": 0, "offset": 284, "next": [{"match": {"value": 608342272}, "child": {"skip": 148, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "8cb1dcad251b529d9b0cc128ad76a097c578de3d", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829627}, "child": {"skip": 0, "offset": 284, "next": [{"match": {"value": 608310528}, "child": {"skip": 208, "offset": 496, "next": [], "symbols": [{"name": "_start", "hash": "f6193171d0979b61bbd784c6347d6472ef6ae6ee", "variant": 107749811, "library": "crt0"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764054}, "child": {"skip": 0, "offset": 280, "next": [{"match": {"value": 1006829625}, "child": {"skip": 152, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "4543d0451963d094a87ddb84c3a421f1414b55f4", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006764075}, "child": {"skip": 0, "offset": 280, "next": [{"match": {"value": 1006829645}, "child": {"skip": 0, "offset": 284, "next": [{"match": {"value": 608336768}, "child": {"skip": 148, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "4ebd05b28e50e72b9033f8afd00b78463b5b4543", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006830043}, "child": {"skip": 0, "offset": 284, "next": [{"match": {"value": 608331264}, "child": {"skip": 148, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "88787f0a7560be75dcc20a76ef66974ee63785dc", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829617}, "child": {"skip": 0, "offset": 284, "next": [{"match": {"value": 608331008}, "child": {"skip": 148, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "5dad6267a5fac35479512be6d6bfc08cf25eb182", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006830068}, "child": {"skip": 0, "offset": 284, "next": [{"match": {"value": 608338944}, "child": {"skip": 208, "offset": 496, "next": [], "symbols": [{"name": "_start", "hash": "3cdbcb581bd61ace635aa788d7757eb1b82aa7ff", "variant": 107749811, "library": "crt0"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764115}, "child": {"skip": 0, "offset": 280, "next": [{"match": {"value": 1006829661}, "child": {"skip": 152, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "f82a3bb7f7076ad24b4ec89f63e332497299a5f1", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006764069}, "child": {"skip": 0, "offset": 280, "next": [{"match": {"value": 1006830015}, "child": {"skip": 152, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "adedf3912cda47d7cadd3a41af386b6a3b2c8e8c", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006764104}, "child": {"skip": 0, "offset": 280, "next": [{"match": {"value": 1006829765}, "child": {"skip": 0, "offset": 284, "next": [{"match": {"value": 608337280}, "child": {"skip": 148, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "d447f0d892921a028eaa2ba0ebc4ccb6b3db50a3", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829699}, "child": {"skip": 0, "offset": 284, "next": [{"match": {"value": 608317184}, "child": {"skip": 0, "offset": 288, "next": [{"match": {"value": 610476032}, "child": {"skip": 144, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "e9253ce9d88b3b16171363ffddd314b3ef37957a", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 608312576}, "child": {"skip": 0, "offset": 288, "next": [{"match": {"value": 610476032}, "child": {"skip": 144, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "e9bcc582d85a6efb37fa894974d4cdd94f2435b8", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764099}, "child": {"skip": 0, "offset": 280, "next": [{"match": {"value": 1006829701}, "child": {"skip": 152, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "14ebde3ab891429460102b6bb485d74483a4bd1b", "variant": 1319573460, "library")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006764089}, "child": {"skip": 0, "offset": 280, "next": [{"match": {"value": 1006829671}, "child": {"skip": 152, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "f69677da7982da470cd6c79555f2229bc0b247b6", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006764094}, "child": {"skip": 0, "offset": 280, "next": [{"match": {"value": 1006829762}, "child": {"skip": 152, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "e7f0fb048246e3646cee6193e2b5bc292ea56a10", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006764088}, "child": {"skip": 0, "offset": 280, "next": [{"match": {"value": 1006829629}, "child": {"skip": 152, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "92ac9059c76d9ed35bd2d7518d900c60738b00a8", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006764082}, "child": {"skip": 0, "offset": 280, "next": [{"match": {"value": 1006830068}, "child": {"skip": 212, "offset": 496, "next": [], "symbols": [{"name": "_start", "hash": "f9e0c5177e4c47e943b39f2f74cf0f578174b2ee", "variant": 107749811, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006764091}, "child": {"skip": 0, "offset": 280, "next": [{"match": {"value": 1006829684}, "child": {"skip": 152, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "1d17eec7b1d10b536b7560ab754e3308236da2b2", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006764083}, "child": {"skip": 0, "offset": 280, "next": [{"match": {"value": 1006829996}, "child": {"skip": 0, "offset": 284, "next": [{"match": {"value": 608343936}, "child": {"skip": 148, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "35ddc0da4c2f7c972a7a2eed5f7f1156bf0ee76c", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829639}, "child": {"skip": 0, "offset": 284, "next": [{"match": {"value": 608362112}, "child": {"skip": 148, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "bd75887f78949176cd1430a798d163727c1da65f", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829626}, "child": {"skip": 0, "offset": 284, "next": [{"match": {"value": 608308224}, "child": {"skip": 148, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "29ce80ec76048461445e4c55c167cfd28c878def", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764137}, "child": {"skip": 0, "offset": 280, "next": [{"match": {"value": 1006829971}, "child": {"skip": 152, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "6cb8d868f864170203be69f326e2746969f82698", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006764179}, "child": {"skip": 0, "offset": 280, "next": [{"match": {"value": 1006830006}, "child": {"skip": 152, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "e9a51daba1efb57e66fdb758a6b76824c3c581a8", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006764156}, "child": {"skip": 0, "offset": 280, "next": [{"match": {"value": 1006830063}, "child": {"skip": 212, "offset": 496, "next": [], "symbols": [{"name": "_start", "hash": "046a1a7fc98424fb18aaea0000c93a88c3f80a02", "variant": 107749811, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006764242}, "child": {"skip": 0, "offset": 280, "next": [{"match": {"value": 1006830055}, "child": {"skip": 212, "offset": 496, "next": [], "symbols": [{"name": "_start", "hash": "7a1c4a081c24bcf85058f0a98ec9a4b967114c03", "variant": 107749811, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006764131}, "child": {"skip": 0, "offset": 280, "next": [{"match": {"value": 1006829966}, "child": {"skip": 212, "offset": 496, "next": [], "symbols": [{"name": "_start", "hash": "e15136c3d5dacb7fb62c2076449058eee2a7ec76", "variant": 107749811, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006764168}, "child": {"skip": 0, "offset": 280, "next": [{"match": {"value": 1006830001}, "child": {"skip": 152, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "1ad6e36ada4d7e3a3c8818e4a2a885b36e6df05b", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006764205}, "child": {"skip": 0, "offset": 280, "next": [{"match": {"value": 1006829983}, "child": {"skip": 152, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "28006dd62ee15a4bb0d7c0ce4ea53ef1aaaf23bb", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006764232}, "child": {"skip": 0, "offset": 280, "next": [{"match": {"value": 1006830048}, "child": {"skip": 212, "offset": 496, "next": [], "symbols": [{"name": "_start", "hash": "c693f93fe0a276fcaab5a8240f0ddf6aa2a5ad50", "variant": 107749811, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006764100}, "child": {"skip": 0, "offset": 280, "next": [{"match": {"value": 1006829654}, "child": {"skip": 152, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "437b79923ad9eba5cfc364d7e6636a32babb46b5", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006764090}, "child": {"skip": 0, "offset": 280, "next": [{"match": {"value": 1006829626}, "child": {"skip": 152, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "fb8c311458f82cf340dccdfe398c964a9affc770", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006764140}, "child": {"skip": 0, "offset": 280, "next": [{"match": {"value": 1006829697}, "child": {"skip": 152, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "1c1de42a2d3386a1b2de6c56bed0067dcf8a86f8", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006764163}, "child": {"skip": 0, "offset": 280, "next": [{"match": {"value": 1006829726}, "child": {"skip": 0, "offset": 284, "next": [{"match": {"value": 608313088}, "child": {"skip": 0, "offset": 288, "next": [{"match": {"value": 610519808}, "child": {"skip": 144, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "4f146c0483457e57ec19bbaf66183101c67b19cf", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 608354688}, "child": {"skip": 0, "offset": 288, "next": [{"match": {"value": 610492800}, "child": {"skip": 144, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "4a2563cb3e9278a595478871d412916bf61098ce", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764119}, "child": {"skip": 0, "offset": 280, "next": [{"match": {"value": 1006829812}, "child": {"skip": 152, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "ff14b928f1cb48016f4047c0e68cc93b026efd09", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006764122}, "child": {"skip": 0, "offset": 280, "next": [{"match": {"value": 1006829714}, "child": {"skip": 0, "offset": 284, "next": [{"match": {"value": 608344064}, "child": {"skip": 0, "offset": 288, "next": [{"match": {"value": 610477056}, "child": {"skip": 144, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "dd12f4089a6d88cb994502f45e0c7ed089543b97", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 608354048}, "child": {"skip": 0, "offset": 288, "next": [{"match": {"value": 610472832}, "child": {"skip": 144, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "bc2730041ef60946eacc768668aa4e3924401fad", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 608356096}, "child": {"skip": 0, "offset": 288, "next": [{"match": {"value": 610489088}, "child": {"skip": 144, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "e60863746c25dd195d362a40f7408df5d1630b57", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"valu)PS2SDB", 8192}, + std::string_view{R"PS2SDB(e": 1006829715}, "child": {"skip": 0, "offset": 284, "next": [{"match": {"value": 608314112}, "child": {"skip": 148, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "a5e1e357766de53e5a8a8ff5b37d196373d47421", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764354}, "child": {"skip": 0, "offset": 280, "next": [{"match": {"value": 1006829980}, "child": {"skip": 152, "offset": 436, "next": [], "symbols": [{"name": "_start", "hash": "3443a9f2f493514504113b9bf19b8bf3cef88d06", "variant": 1319573460, "library": "crt0"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764094}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829671}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608334976}, "child": {"skip": 152, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "88015042daf2b8755d0016cc7e3e4707996c9345", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829648}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608343936}, "child": {"skip": 152, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "54c5eabfe1cf7355d81fad0d4e18155527013ea0", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829665}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608329600}, "child": {"skip": 152, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "cb3b27e2cf3e6c387d11814399bdf09e84e1350a", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 608456864}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006764094}, "child": {"skip": 24, "offset": 36, "next": [], "symbols": [{"name": "mwInit", "hash": "4342318b332e9dac0968542d0cabfed23fcd6faa", "variant": 1436154619, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 608357584}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2894200844}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "__FindExceptionTable__FP13ExceptionInfoPc", "hash": "8dbe5d59ffbc0e565bccee426a5403b21f743d0d", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 608328864}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2894200844}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "__FindExceptionTable__FP13ExceptionInfoPc", "hash": "0945eab22ac80d7c10a3ea1b10fb4d9c8729b55d", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764052}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829730}, "child": {"skip": 156, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "95ea0e424a8903918eebecf579201c5864377b67", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006764066}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829632}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608324480}, "child": {"skip": 140, "offset": 152, "next": [], "symbols": [{"name": "_start", "hash": "613cee5d5218ed0087f7287bfe966660f47085b5", "variant": 1739448368, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829628}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608354688}, "child": {"skip": 152, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "52a8090dadf456153468f7295ae509ebf5cb06a8", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829603}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608362496}, "child": {"skip": 152, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "8eeb256069083a1d566604804cf71fb8da43268f", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829613}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608327808}, "child": {"skip": 148, "offset": 160, "next": [], "symbols": [{"name": "_start", "hash": "fd48b38da5fdb23b8eda1910485fd349806eaaa9", "variant": 1258719478, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 608353920}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2894200844}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "__FindExceptionTable__FP13ExceptionInfoPc", "hash": "d55f06a50b7b1c88de1c0036a83af3968a7fc2fc", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 608324704}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2894200844}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "__FindExceptionTable__FP13ExceptionInfoPc", "hash": "95071c30c761e223f788d596a52a031d6e79b320", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764069}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829608}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608359680}, "child": {"skip": 152, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "ff261f5e9d6fd4db7bbacc197a8fa1ecd541f18f", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829633}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608351616}, "child": {"skip": 152, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "e4ede3bf604942d917d0632bfc0a99273a67b361", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829615}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608370560}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 610478592}, "child": {"skip": 144, "offset": 160, "next": [], "symbols": [{"name": "_start", "hash": "10fc3bcf380c973904ca1194a92409d9274f72da", "variant": 1258719478, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 608305408}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 610478976}, "child": {"skip": 144, "offset": 160, "next": [], "symbols": [{"name": "_start", "hash": "891ff571151914502185daa81f269b2a9f279d30", "variant": 1258719478, "library": "crt0"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006829619}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608334336}, "child": {"skip": 140, "offset": 152, "next": [], "symbols": [{"name": "_start", "hash": "1a17f175bc796c4e27418ce6f2fb1f39ec445b27", "variant": 1739448368, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 608476272}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006764069}, "child": {"skip": 24, "offset": 36, "next": [], "symbols": [{"name": "mwInit", "hash": "4a5d4485eed75717c3eb67718b2cb4e450c9aca8", "variant": 1436154619, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764054}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829920}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608368256}, "child": {"skip": 148, "offset": 160, "next": [], "symbols": [{"name": "_start", "hash": "8832a6afcdeb40748b0f4c03859dc70b709f7ce3", "variant": 2055588478, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829922}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608307200}, "child": {"skip": 148, "offset": 160, "next": [], "symbols": [{"name": "_start", "hash": "e9440fd6ad4ca124b0f43e79898a211eee2cabb0", "variant": 2055588478, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829921}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608356480}, "child": {"skip": 148, "offset": 160, "next": [], "symbols": [{"name": "_start", "hash": "dfd942ea75733be6ea12727a2fe8e34d47e620d9", "variant": 2055588478, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006830074}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608347264}, "child": {"skip": 152, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "027c3271c842507c2b57b09fcab60b759e3de480", "varian)PS2SDB", 8192}, + std::string_view{R"PS2SDB(t": 2157300109, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829771}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608312960}, "child": {"skip": 152, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "02f663efc1ac0aa3a69d20fad00c1da757c9b355", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 608475888}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006764054}, "child": {"skip": 24, "offset": 36, "next": [], "symbols": [{"name": "mwInit", "hash": "076ee506c3e5850957b52d7a29959f2805032b91", "variant": 1436154619, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 608443312}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006764054}, "child": {"skip": 24, "offset": 36, "next": [], "symbols": [{"name": "mwInit", "hash": "160b4495149113c92329529bcff2ec45839e8978", "variant": 1436154619, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 608356944}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2894200844}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "__FindExceptionTable__FP13ExceptionInfoPc", "hash": "fb489a802932416034bece6da66739dc88c6e292", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 608312416}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2894200844}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "__FindExceptionTable__FP13ExceptionInfoPc", "hash": "58d790f466e5d564c7f95e3c3ca97f99cea734b2", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764070}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829681}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608327808}, "child": {"skip": 152, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "c65ce5dcf557e55561ca26148f55f1a314207ef4", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006830041}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608360960}, "child": {"skip": 148, "offset": 160, "next": [], "symbols": [{"name": "_start", "hash": "ff8af2c8216d3a77d37c0489b14ff7db0135f530", "variant": 3960754396, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829615}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608308864}, "child": {"skip": 140, "offset": 152, "next": [], "symbols": [{"name": "_start", "hash": "64bd7146fa1c233963df65784eebf11ca5f2d5f1", "variant": 1739448368, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829616}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608336128}, "child": {"skip": 152, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "b7bff437119d2d66103b17edfb58abcd99df7efe", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829619}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608343552}, "child": {"skip": 140, "offset": 152, "next": [], "symbols": [{"name": "_start", "hash": "e1434c3ca1dbcdf31143a1178ab6863e69009947", "variant": 1739448368, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829614}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608366336}, "child": {"skip": 152, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "3b7e7285637d9164caef8b5dae8204f376bfc37a", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829607}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608344320}, "child": {"skip": 152, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "d61671c1db435b3150d9e628f5008e9a3957fc6e", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006830061}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608352128}, "child": {"skip": 152, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "329a5b3340d906fc266379f012d40db0fa1c7fc2", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 608343104}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2894200844}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "__FindExceptionTable__FP13ExceptionInfoPc", "hash": "d8d890f2423d60f69d810907873c3846aaf7ffa2", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764086}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829634}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608314112}, "child": {"skip": 140, "offset": 152, "next": [], "symbols": [{"name": "_start", "hash": "0fb9beb7ff8d0d4e384cd3b4c1eef237c29d0b62", "variant": 1739448368, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006830052}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608306560}, "child": {"skip": 148, "offset": 160, "next": [], "symbols": [{"name": "_start", "hash": "2bf3464af1fe7ab6050c90664b15bef417dfc514", "variant": 1258719478, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829674}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608344448}, "child": {"skip": 152, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "00cb170e63f13149ea8a2d5591ddc7e113926add", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829666}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608311936}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 610496000}, "child": {"skip": 148, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "5ea939c7fa95f4d9399c3f4a7789671176b0346f", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 608369664}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 610488192}, "child": {"skip": 148, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "727afbae553499cd76b89bf2c3494a1526c03917", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 608341088}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2894200844}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "__FindExceptionTable__FP13ExceptionInfoPc", "hash": "1abd39e463d367de57d40b4e486fc0fc6379a1af", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764084}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829632}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608326912}, "child": {"skip": 140, "offset": 152, "next": [], "symbols": [{"name": "_start", "hash": "be3303c1e8af100b01690b2a531596c270128edb", "variant": 1739448368, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829724}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608357248}, "child": {"skip": 148, "offset": 160, "next": [], "symbols": [{"name": "_start", "hash": "eb277e626129ddb69f973fd4d46a0f954ddd098a", "variant": 3960754396, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829650}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608323072}, "child": {"skip": 140, "offset": 152, "next": [], "symbols": [{"name": "_start", "hash": "8323567f5cca9444e5a0ad1c4ff4d57980289492", "variant": 1739448368, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 608483168}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006764084}, "child": {"skip": 24, "offset": 36, "next": [], "symbols": [{"name": "mwInit", "hash": "0f3609140c94449101e27fe836e6375f4b4c5f5f", "variant": 1436154619, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 608500176}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006764084}, "child": {"skip": 24, "offset": 36, "next": [], "symbols": [{"name": "mwInit", "hash": "57ae3e2bef7b0275808577ffe0792c984006be1b", "variant": 1436154619, "library": "mslgcc_ps2"}]}}], "symbols": []}})PS2SDB", 8192}, + std::string_view{R"PS2SDB(, {"match": {"value": 608322496}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2894200844}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "__FindExceptionTable__FP13ExceptionInfoPc", "hash": "a665ba9619b2e906766a71c6efbefc17a36944e8", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764076}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829625}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608329600}, "child": {"skip": 152, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "8f4fa7eaf6a4d9233f722a11d889ce7b354b7d4a", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829621}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608313728}, "child": {"skip": 152, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "2ed66c2de2a02cea3ca154a4f5a324974a93337e", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764061}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829637}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608343680}, "child": {"skip": 152, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "9bd1a13ff8cc6b0f1ea9cb95783279c18985fd4a", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829713}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608340480}, "child": {"skip": 140, "offset": 152, "next": [], "symbols": [{"name": "_start", "hash": "7e65920d49183770849a61548a761716b9deb372", "variant": 1739448368, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 608469088}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006764061}, "child": {"skip": 24, "offset": 36, "next": [], "symbols": [{"name": "mwInit", "hash": "8d2a4fed27b5c1b825ab832feac849e54e49c5d1", "variant": 1436154619, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764095}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829655}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608328448}, "child": {"skip": 152, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "de1f0a2f0793632910b212e4c84a632b5769cb3d", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829657}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608332160}, "child": {"skip": 152, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "31307a5999e579c442bea5388b0744892de660ed", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006830048}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608353792}, "child": {"skip": 152, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "d18edf594bb7753452a858e7c148bc11dc3b1513", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006830047}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608347136}, "child": {"skip": 152, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "8264b7d6c2bb7f39508b423bb771e24a8becc2a6", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829686}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608307072}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 610518528}, "child": {"skip": 144, "offset": 160, "next": [], "symbols": [{"name": "_start", "hash": "e2bb950a868ecd748bdeff509cea88b4b45a142d", "variant": 1258719478, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 608316544}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 610528000}, "child": {"skip": 144, "offset": 160, "next": [], "symbols": [{"name": "_start", "hash": "da62f57274d98b6f5e5a5100d329a4334d6b9ea5", "variant": 1258719478, "library": "crt0"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764073}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829654}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608343552}, "child": {"skip": 148, "offset": 160, "next": [], "symbols": [{"name": "_start", "hash": "5049cdd27691dfc752c9c1a28f210ef1ba717940", "variant": 1258719478, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006830028}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608345600}, "child": {"skip": 140, "offset": 152, "next": [], "symbols": [{"name": "_start", "hash": "ca23d5f91e3268415ca8c6c193722659873da99d", "variant": 1739448368, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 608473472}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006764073}, "child": {"skip": 44, "offset": 56, "next": [], "symbols": [{"name": "mwInit", "hash": "8f7f3f390cd4b2c7e718383ce017bf7eda8e3d17", "variant": 624376974, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 608342832}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2894200844}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "__FindExceptionTable__FP13ExceptionInfoPc", "hash": "e8d13c8d79949b162be19f3b23addb2b286d2c57", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764068}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829826}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608359808}, "child": {"skip": 140, "offset": 152, "next": [], "symbols": [{"name": "_start", "hash": "14b006b591f17c88787d54fd77c3510c4ef35bfb", "variant": 1739448368, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829614}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608368384}, "child": {"skip": 148, "offset": 160, "next": [], "symbols": [{"name": "_start", "hash": "b2fe7834afdb49ff13757e25926e7926471bb4c2", "variant": 1258719478, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829610}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608347264}, "child": {"skip": 152, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "c64da60fc60e5874f2b7735bc3405769ca230b33", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829638}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608311552}, "child": {"skip": 152, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "3b5af5e92c0b769b5a2b434c678dd79d9b39741e", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 608480656}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006764068}, "child": {"skip": 24, "offset": 36, "next": [], "symbols": [{"name": "mwInit", "hash": "1de77855b163a0d001e1e0c5b45f72503dc934af", "variant": 1436154619, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 608359088}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2894200844}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "__FindExceptionTable__FP13ExceptionInfoPc", "hash": "2780419cc6e8f74b53bdc1359bee851b43fe6d32", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 608310688}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2894200844}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "__FindExceptionTable__FP13ExceptionInfoPc", "hash": "2479755d71ad40a4f4a4d4e3ea81ce81b2b89584", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764181}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829800}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608312448}, "child": {"skip": 152, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "e8d160ab8ac93b3a64189ceed3231697a8c559f5", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 608442880}, "child": {"skip": 0, "offset": 8, "next": [{"matc)PS2SDB", 8192}, + std::string_view{R"PS2SDB(h": {"value": 1006764181}, "child": {"skip": 24, "offset": 36, "next": [], "symbols": [{"name": "mwInit", "hash": "549a2434acd0e700cc8d186d2e96f25032bc2a83", "variant": 1436154619, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764082}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829733}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608338688}, "child": {"skip": 140, "offset": 152, "next": [], "symbols": [{"name": "_start", "hash": "868c420b33b6e4a365917e686cc06704349b7a42", "variant": 1739448368, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829734}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608309504}, "child": {"skip": 148, "offset": 160, "next": [], "symbols": [{"name": "_start", "hash": "46142537e9d3df6abce01c102662239eca4c24e2", "variant": 1258719478, "library": "crt0"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764087}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006830067}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608355456}, "child": {"skip": 152, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "2dcba51ab7a1eae78500ca29567e807db24e7a46", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006830069}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608359296}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 610523392}, "child": {"skip": 148, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "7a147bd8597ea8cc1fc69f286b521f7278cf5b6d", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 608361216}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 610525184}, "child": {"skip": 148, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "7839f852c47208f47bb60a932c227003d02231b4", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006829679}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608327936}, "child": {"skip": 152, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "1de0d80d6df8a62f9cf8ac4451512d461738f468", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 608353728}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2894200844}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "__FindExceptionTable__FP13ExceptionInfoPc", "hash": "e75f86f922630c5657a7023c260644e353cff7fe", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 608357488}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2894200844}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "__FindExceptionTable__FP13ExceptionInfoPc", "hash": "207875bc23cba3409f8a31055942cf16b2913805", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 608359408}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2894200844}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "__FindExceptionTable__FP13ExceptionInfoPc", "hash": "01e99861ec94bf254597e3186cdaf1903bcc1fca", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 608324512}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2894200844}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "__FindExceptionTable__FP13ExceptionInfoPc", "hash": "900819a66ed0017d141a5cee992fee720529fcd9", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764072}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006830066}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608326016}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 610527872}, "child": {"skip": 136, "offset": 152, "next": [], "symbols": [{"name": "_start", "hash": "0716843b6816ae8f0d62d725980f2bb6f1ff7f4c", "variant": 1739448368, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 608325376}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 610526976}, "child": {"skip": 136, "offset": 152, "next": [], "symbols": [{"name": "_start", "hash": "e49649d306b6323ab3a137754a2354780ac9d955", "variant": 1739448368, "library": "crt0"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006829613}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608354944}, "child": {"skip": 152, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "9ba9861583acdd13c043658d820d7c3edb0457bc", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829618}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608345728}, "child": {"skip": 140, "offset": 152, "next": [], "symbols": [{"name": "_start", "hash": "3c5cb26b3281c37d5fe2c66a4f7b1025412d2107", "variant": 1739448368, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829640}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608332160}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 610511616}, "child": {"skip": 148, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "67aaebdd8ee2df86e621c1d12b1e4d1b9b62859d", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 608331136}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 610510464}, "child": {"skip": 148, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "716ebeeb545bbd6aa0af72cfbf947db6292ed649", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764071}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829613}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608316928}, "child": {"skip": 152, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "2dea05f9ee4ce2e01d5bc4855bd14e96e26f71cb", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829638}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608352512}, "child": {"skip": 140, "offset": 152, "next": [], "symbols": [{"name": "_start", "hash": "b245b4426970ec8d14974feff91d3baad093f228", "variant": 1739448368, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829724}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608328960}, "child": {"skip": 140, "offset": 152, "next": [], "symbols": [{"name": "_start", "hash": "6fbf83a5bd3a8653ae8caa5b4466717303c23e5b", "variant": 1739448368, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829682}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608362880}, "child": {"skip": 152, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "1321c1cea23eba73697d62d02b934c5db94ec532", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006830059}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608314752}, "child": {"skip": 152, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "131f77a0bcd7a4394572457ab571149c9ce56c3e", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 608456352}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006764071}, "child": {"skip": 24, "offset": 36, "next": [], "symbols": [{"name": "mwInit", "hash": "975847ef1cb44dacb7c96364c7fcfb730b558a50", "variant": 1436154619, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 608454464}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006764071}, "child": {"skip": 24, "offset": 36, "next": [], "symbols": [{"name": "mwInit", "hash": "9e1bbc5951313f020b17dcd30e49712fb5d3cfdc", "variant": 1436154619, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 608330160}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2894200844}, "child": {"skip": 20, "offset": 32, "next": [], "symbol)PS2SDB", 8192}, + std::string_view{R"PS2SDB(s": [{"name": "__FindExceptionTable__FP13ExceptionInfoPc", "hash": "359e82559db26b25360e327929032dcdf583b455", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764055}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829597}, "child": {"skip": 156, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "cae4d81baa757f80f88fafcd78dfa72cc46ba416", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006764058}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829624}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608319232}, "child": {"skip": 152, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "4f752eb90ed60505f5fad0bb687f2add865fb2a8", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829996}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608315776}, "child": {"skip": 140, "offset": 152, "next": [], "symbols": [{"name": "_start", "hash": "6124a1395e242659ad79784b4a1ca8d08ded8dfc", "variant": 1739448368, "library": "crt0"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764120}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006830064}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608354048}, "child": {"skip": 148, "offset": 160, "next": [], "symbols": [{"name": "_start", "hash": "abc9887ae1fc7ee88d8933c52c2610d4112cf5fc", "variant": 3960754396, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829739}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608369152}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 610520448}, "child": {"skip": 148, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "e2054efbf45653ef6c468b006bfc8bbd2b994654", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 608369280}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 610520576}, "child": {"skip": 148, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "d585436dc58da855ebf45521c41241b4096a1345", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764091}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006830064}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608316672}, "child": {"skip": 148, "offset": 160, "next": [], "symbols": [{"name": "_start", "hash": "993da063f6cb2bc499905693cdc1dbf1146a785d", "variant": 1258719478, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829646}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608336896}, "child": {"skip": 152, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "2a18f7f8f00d3652924cfad14ec97f170a5b90ce", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829807}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608331136}, "child": {"skip": 148, "offset": 160, "next": [], "symbols": [{"name": "_start", "hash": "fb002bb2942ce78811ff46157400347494299c69", "variant": 1258719478, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829669}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608352384}, "child": {"skip": 140, "offset": 152, "next": [], "symbols": [{"name": "_start", "hash": "1e96bffd7549d1ff796976995e2f8033660c03c5", "variant": 1739448368, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829670}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608321664}, "child": {"skip": 140, "offset": 152, "next": [], "symbols": [{"name": "_start", "hash": "21c37023956298401fc8c50548884db1f8ae44ba", "variant": 1739448368, "library": "crt0"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764106}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006830064}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608321792}, "child": {"skip": 148, "offset": 160, "next": [], "symbols": [{"name": "_start", "hash": "692f664801504f85b4dae1def23774b37e328e4c", "variant": 3960754396, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 608466656}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006764106}, "child": {"skip": 24, "offset": 36, "next": [], "symbols": [{"name": "mwInit", "hash": "c14dca69fd57a2634b8fdc04772e695a11de2055", "variant": 1436154619, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 608466912}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006764106}, "child": {"skip": 24, "offset": 36, "next": [], "symbols": [{"name": "mwInit", "hash": "00a6b5bb7a82498c6e96a67260159c78eb17da1e", "variant": 1436154619, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764090}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829656}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608343168}, "child": {"skip": 140, "offset": 152, "next": [], "symbols": [{"name": "_start", "hash": "fc84b7cf63260c06fd50b33c432bee82ccd197cc", "variant": 1739448368, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 608342996}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2894200844}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "__FindExceptionTable__FP13ExceptionInfoPc", "hash": "b2c842ea14244e87659bd7e28638ffdbb09d03e1", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764089}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829686}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608317824}, "child": {"skip": 152, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "45abef32c0ff3050848521d5d927b18bfe9a5ed8", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006830006}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608339072}, "child": {"skip": 148, "offset": 160, "next": [], "symbols": [{"name": "_start", "hash": "250ca465badc49ef9aa886b8d5aa4ed42b320d8c", "variant": 2951003140, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 608466672}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006764089}, "child": {"skip": 24, "offset": 36, "next": [], "symbols": [{"name": "mwInit", "hash": "6780a55dd8575f13e24c7eed258c3ad9001cf6e8", "variant": 1436154619, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 608314304}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2894200844}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "__FindExceptionTable__FP13ExceptionInfoPc", "hash": "e4dce82766d83947aff18bd6662fceb27ebf740a", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764112}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829952}, "child": {"skip": 144, "offset": 152, "next": [], "symbols": [{"name": "_start", "hash": "976ed22bf453b2ce04d9aad39310810224c8bd96", "variant": 1739448368, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006764079}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829972}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608366336}, "child": {"skip": 152, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "b54d3cbb260c5ab3181c6d2ff2cc8fd8f0b417d7", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 608490048}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006764079}, "child": {"skip": 24, "offset": 36, "next": [], "symbols": [{"name": "mwInit", "hash": "f3a864c8baf2b4f2bd83a6b986f4e891a4e30c41", "variant": 1436154619, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764096}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006830067}, "child": {"skip": 0, "offset": 8, "next": [{"mat)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ch": {"value": 608361216}, "child": {"skip": 152, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "ce4b62f1f9a886c693dd4ea8d52b2aaabf159c21", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829825}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608330496}, "child": {"skip": 152, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "c48989b5009040c0cfa39bb703dffe03a913d260", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764078}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829683}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608322048}, "child": {"skip": 148, "offset": 160, "next": [], "symbols": [{"name": "_start", "hash": "e018d0867519a70dd6e451970c1cfe01b6bafa52", "variant": 1258719478, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829682}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608357248}, "child": {"skip": 148, "offset": 160, "next": [], "symbols": [{"name": "_start", "hash": "da9e77a4a1cd7757804a868473e372df77f948af", "variant": 1258719478, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829635}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608313216}, "child": {"skip": 152, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "f706274d89084588c873c2b34ef82c862c4c081c", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829642}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608354432}, "child": {"skip": 152, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "463b8b815d350572b7db36cc66df03b309c94c1e", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829643}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608350464}, "child": {"skip": 140, "offset": 152, "next": [], "symbols": [{"name": "_start", "hash": "881310974d6eb63ad330d2ca4a3cee2eb06e6a92", "variant": 1739448368, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 608471184}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006764078}, "child": {"skip": 24, "offset": 36, "next": [], "symbols": [{"name": "mwInit", "hash": "865bae735bea587abf517f2aca111b8c7e26627d", "variant": 1436154619, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 608349856}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2894200844}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "__FindExceptionTable__FP13ExceptionInfoPc", "hash": "9eecf558663e52e562b4fe2e2d609122e26ab911", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764093}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829647}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608347136}, "child": {"skip": 152, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "ce43e99f24b7a76ddb605af9331fb770a977a56c", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829648}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608334848}, "child": {"skip": 152, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "d8a5fdb380ef3ed6ac001034d7a83025185457f8", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764097}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829645}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608357504}, "child": {"skip": 148, "offset": 160, "next": [], "symbols": [{"name": "_start", "hash": "72a3521fd4485815ce7ce71da1f7e2ca35207c1a", "variant": 3960754396, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829644}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608312320}, "child": {"skip": 148, "offset": 160, "next": [], "symbols": [{"name": "_start", "hash": "769bd5d35e0904a1ae7113c5e66972b33354a3a3", "variant": 3960754396, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 608482640}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006764097}, "child": {"skip": 24, "offset": 36, "next": [], "symbols": [{"name": "mwInit", "hash": "bce4cee01d27ea9a5ef26d6eea5e9a7de36351c4", "variant": 1436154619, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764100}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829649}, "child": {"skip": 152, "offset": 160, "next": [], "symbols": [{"name": "_start", "hash": "8062c2b8bd0fa9d619e9618cbf132abd4aa4d969", "variant": 3960754396, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006764064}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829715}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608352768}, "child": {"skip": 148, "offset": 160, "next": [], "symbols": [{"name": "_start", "hash": "9bef2e181314021ff6abdd2a1c7f61be2bf406b4", "variant": 1258719478, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829631}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608348672}, "child": {"skip": 148, "offset": 160, "next": [], "symbols": [{"name": "_start", "hash": "1d0e69b6f114059a8f60a2d4736a862e8ffb62b5", "variant": 1258719478, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829611}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608323328}, "child": {"skip": 152, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "7a4875079eeb5fff200ee6605fa7d110878e87eb", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 2894069768}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2894200832}, "child": {"skip": 8, "offset": 20, "next": [], "symbols": [{"name": "get_mem_info", "hash": "7da7c99f3ecc3a4495c613c08819d3c0580396c8", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 608461072}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006764064}, "child": {"skip": 24, "offset": 36, "next": [], "symbols": [{"name": "mwInit", "hash": "f7e1308483cb6a3b92165485f979e87747ba2353", "variant": 1436154619, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 608480176}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006764064}, "child": {"skip": 24, "offset": 36, "next": [], "symbols": [{"name": "mwInit", "hash": "c757388dd1e72cc4edd6bbf058e57fbb47d63d47", "variant": 1436154619, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 608478608}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006764064}, "child": {"skip": 24, "offset": 36, "next": [], "symbols": [{"name": "mwInit", "hash": "77f77093dcd43b338b3cb185b153802bdd48abac", "variant": 1436154619, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 608331296}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2894200844}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "__FindExceptionTable__FP13ExceptionInfoPc", "hash": "ee7d32d4d14b772a5bc7750f7001d7c4743d3bcd", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 608348128}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2894200844}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "__FindExceptionTable__FP13ExceptionInfoPc", "hash": "a165645c68744f7b2ed0b10040c218e12c9655d1", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 608320156}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2894200844}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "__FindExceptionTable__FP13ExceptionInfoPc", "hash": "b01ef812036615fe0b18acec7aeeacf39ebcaba5", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764081}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829675}, "chil)PS2SDB", 8192}, + std::string_view{R"PS2SDB(d": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608356992}, "child": {"skip": 152, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "f877f6fb84e6fe1f69449c30ab52258314597fbf", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 608321680}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2894200844}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "__FindExceptionTable__FP13ExceptionInfoPc", "hash": "f6460af3f29063e29caacbd615c9a3706ae20e0f", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 608327872}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2894200844}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "__FindExceptionTable__FP13ExceptionInfoPc", "hash": "893a7d3d0934b8659bbc1f4de3a1ad7c554909eb", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764142}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006830060}, "child": {"skip": 144, "offset": 152, "next": [], "symbols": [{"name": "_start", "hash": "a1b42359ef2f3466a7d046ecae85944e7a95a5cd", "variant": 1739448368, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006764161}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006830054}, "child": {"skip": 156, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "76251ff3072a6c374313bd7bef26de4cd2d20e20", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006764434}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006830013}, "child": {"skip": 156, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "bb726ff67eb3c44f7f4ea3c9f1659b1818e51f99", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006764062}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829618}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608367104}, "child": {"skip": 148, "offset": 160, "next": [], "symbols": [{"name": "_start", "hash": "b524a2f7765f749470f99d2eb9319178f577334b", "variant": 2055588478, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006830079}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608348672}, "child": {"skip": 140, "offset": 152, "next": [], "symbols": [{"name": "_start", "hash": "22e0b59a49b7265de814f9b42273634a5552549b", "variant": 1739448368, "library": "crt0"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764158}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829971}, "child": {"skip": 144, "offset": 152, "next": [], "symbols": [{"name": "_start", "hash": "7a6c7bfdeafe204b12306312bde2eacbcf8ba8a8", "variant": 1739448368, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006764077}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829948}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608361984}, "child": {"skip": 148, "offset": 160, "next": [], "symbols": [{"name": "_start", "hash": "9973a32f08742f50255392b1aac06b7cb69c3114", "variant": 3960754396, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 608478256}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006764077}, "child": {"skip": 24, "offset": 36, "next": [], "symbols": [{"name": "mwInit", "hash": "9f55da5c71fad5ab0c887727289615f55fa5b6f5", "variant": 1436154619, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 608462816}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006764077}, "child": {"skip": 24, "offset": 36, "next": [], "symbols": [{"name": "mwInit", "hash": "3929f7ee105f33bc235acbdd3c30f70ce4ffa712", "variant": 1436154619, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764160}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829714}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608347776}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 610521088}, "child": {"skip": 148, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "b3674c8a3c2f746c4d9a045ff14f35d286f8da67", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 608345984}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 610519168}, "child": {"skip": 144, "offset": 160, "next": [], "symbols": [{"name": "_start", "hash": "20be5cb052bf2e81e0871cd92b845368c8c141f6", "variant": 3960754396, "library": "crt0"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 608438384}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006764160}, "child": {"skip": 24, "offset": 36, "next": [], "symbols": [{"name": "mwInit", "hash": "93b9198705a34ffacb3aadd79d8132986a2845ea", "variant": 1436154619, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764117}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829666}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608367104}, "child": {"skip": 148, "offset": 160, "next": [], "symbols": [{"name": "_start", "hash": "61adc33df01450ec9bd2bdf7a7395f46794d5d13", "variant": 1258719478, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829811}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608308352}, "child": {"skip": 152, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "bf241d9a5803c95de631a657ed34fe152f82cf8d", "variant": 693790609, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 608492896}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006764117}, "child": {"skip": 24, "offset": 36, "next": [], "symbols": [{"name": "mwInit", "hash": "231e5d977e35d8208c97c3b9453d6dd705d03914", "variant": 1436154619, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 608476144}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006764117}, "child": {"skip": 24, "offset": 36, "next": [], "symbols": [{"name": "mwInit", "hash": "47cd089fda3a38158b94ba46faf916a4c23d6b0a", "variant": 1436154619, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 608367796}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2894200844}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "__FindExceptionTable__FP13ExceptionInfoPc", "hash": "ef4b3635e7c603d825c561b0c5cb134f4691f829", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764171}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829734}, "child": {"skip": 156, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "d337da0435d306c5cc9943fb04709ab69c24e437", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006764092}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829683}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608364160}, "child": {"skip": 148, "offset": 160, "next": [], "symbols": [{"name": "_start", "hash": "1fe1522b97eac76ba728090ddd3eb4b2a90942b9", "variant": 1258719478, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 608459664}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006764092}, "child": {"skip": 24, "offset": 36, "next": [], "symbols": [{"name": "mwInit", "hash": "4cfa4144b0d7e6b9df5c492ea76858ee71fbaf9c", "variant": 1436154619, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 608329920}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2894200844}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "__FindExceptionTable__FP13ExceptionInfoPc", "hash": "4b312946741b40e50bd812d225a7def03b14db7e", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764050}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829586}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 60833792)PS2SDB", 8192}, + std::string_view{R"PS2SDB(0}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 610521984}, "child": {"skip": 136, "offset": 152, "next": [], "symbols": [{"name": "_start", "hash": "fc03f340b081f8d8a3447e39480528bd47e0f05d", "variant": 1739448368, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 608341248}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 610528512}, "child": {"skip": 144, "offset": 160, "next": [], "symbols": [{"name": "_start", "hash": "c43ce829209de1e97015d94868d6846717c8485f", "variant": 1258719478, "library": "crt0"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006829973}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608315648}, "child": {"skip": 148, "offset": 160, "next": [], "symbols": [{"name": "_start", "hash": "45dcc18e369b7f19e0646ef435337b8537128974", "variant": 3960754396, "library": "crt0"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764098}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829646}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608348032}, "child": {"skip": 152, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "fc48f716346a8787b05510cc47de03c18310bc5e", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 608345912}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2894200844}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "__FindExceptionTable__FP13ExceptionInfoPc", "hash": "021cfce8250571061e25d5fc4f68a2af842c2d18", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764067}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829606}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608366848}, "child": {"skip": 152, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "58201db13d9ccc9fcf3fc59cea07daf175d2493f", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 608346288}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2894200844}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "__FindExceptionTable__FP13ExceptionInfoPc", "hash": "c1349a9744444d516240237138990d3954de626f", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764051}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829690}, "child": {"skip": 144, "offset": 152, "next": [], "symbols": [{"name": "_start", "hash": "49d8dca2d86a4b825bfc0945548d8acfce9e497b", "variant": 1739448368, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006764074}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829617}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608317056}, "child": {"skip": 152, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "c794db684427cdf10cb962b0dd3cc7104e95da17", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829618}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608308096}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 610520704}, "child": {"skip": 148, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "34955d9b07b0e6b311ebaab29de7808ec3d247ed", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 608324096}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 610513408}, "child": {"skip": 148, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "26a29e558cdbbf1ee2a935803d9a261b134dc12f", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006829722}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608346752}, "child": {"skip": 152, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "fda869bfebabd553770c8cc34ccfbadddcfcfab9", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 608437600}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006764074}, "child": {"skip": 24, "offset": 36, "next": [], "symbols": [{"name": "mwInit", "hash": "9eb84c4b74fa56e28dbf211ecd2b65469edd82da", "variant": 1436154619, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764065}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006830079}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608316544}, "child": {"skip": 140, "offset": 152, "next": [], "symbols": [{"name": "_start", "hash": "ad5ce99dbd74b73ebfbce3f2bbaf579c3fb5cb1d", "variant": 1739448368, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 608309280}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2894200844}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "__FindExceptionTable__FP13ExceptionInfoPc", "hash": "7dd5d7ef3a6efd38c97840332e99ecbba3948afe", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764099}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006830062}, "child": {"skip": 156, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "ca62631902f9428287b036e3919dae58056bdf35", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006764080}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829661}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608316288}, "child": {"skip": 152, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "65dcdc6d4e7b1be547da72734d926d10df0b724a", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 608501024}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006764080}, "child": {"skip": 24, "offset": 36, "next": [], "symbols": [{"name": "mwInit", "hash": "c76ea1f95e4bdb7f0c4145dc67c0cbdac2971d56", "variant": 1436154619, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 608315264}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2894200844}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "__FindExceptionTable__FP13ExceptionInfoPc", "hash": "a813dc906520be7d2e45d3feca7e77ae0961ae1b", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764103}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829647}, "child": {"skip": 156, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "7615e654c61e0b97e0c00394b57b01116c18bd64", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006764056}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006830079}, "child": {"skip": 156, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "c938957cba24ffefd1cf8ffde3ced5d445a2e02e", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006764198}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829766}, "child": {"skip": 156, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "859a96ead87d8cab00d6caba201f7799766eb1ce", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006764110}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829695}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608343296}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 610469760}, "child": {"skip": 144, "offset": 160, "next": [], "symbols": [{"name": "_start", "hash": "f8750729c176362f626ea7b1abc4e1e957d29453", "variant": 3960754396, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 608339584}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 610530432}, "child": {"skip": 144, "offset": 160, "next": [], "symbols": [{"name": "_start", "hash": "b2b91551387e0ee5a49c3b42ae5042a4c418bb92", "variant": 3960754396, "library": "crt0"}]}}], "symbols": []}}], "symbols": []})PS2SDB", 8192}, + std::string_view{R"PS2SDB(}], "symbols": []}}, {"match": {"value": 1006764109}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829694}, "child": {"skip": 152, "offset": 160, "next": [], "symbols": [{"name": "_start", "hash": "18710da71d4f8ff68152ddfaf6040c4868720f84", "variant": 3960754396, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006764083}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829810}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608370432}, "child": {"skip": 148, "offset": 160, "next": [], "symbols": [{"name": "_start", "hash": "5513377763db68e7011972d8d78a3a71e76d7248", "variant": 3960754396, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829714}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608338560}, "child": {"skip": 152, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "1141faa298142b01e77fbe3088cac43ae0453f9c", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 608361312}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2894200844}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "__FindExceptionTable__FP13ExceptionInfoPc", "hash": "a06d65173ee9a8c9e6ef1b8cb550ca1e3e60060f", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 608308016}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2894200844}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "__FindExceptionTable__FP13ExceptionInfoPc", "hash": "bfe73dbfa99863908fab5cfa0fcdf6486dbf047d", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764057}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829595}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608349312}, "child": {"skip": 152, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "aca7b0f3626ca64a654066538706195377666e97", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829618}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608306816}, "child": {"skip": 140, "offset": 152, "next": [], "symbols": [{"name": "_start", "hash": "8b85fad584607e61beea267142f2af80b40ae009", "variant": 1739448368, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 608343380}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2894200844}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "__FindExceptionTable__FP13ExceptionInfoPc", "hash": "b82f949f9446915d2baba5873e7536dc47e09a49", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 608305936}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2894200844}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "__FindExceptionTable__FP13ExceptionInfoPc", "hash": "0d38df1dedd3d1ab2a6769ace547b2fa826ae836", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764101}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829648}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608314240}, "child": {"skip": 152, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "e697509e4dccc0c2ee6ab89fd22793728aedfc0c", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829744}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608328576}, "child": {"skip": 148, "offset": 160, "next": [], "symbols": [{"name": "_start", "hash": "77ea6fb27c5435512ad799d8742df8bcf81f4d4a", "variant": 3960754396, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 608464464}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006764101}, "child": {"skip": 24, "offset": 36, "next": [], "symbols": [{"name": "mwInit", "hash": "5d05c0fd5cb1ca4e800c9baab103bfe5e467bebd", "variant": 1436154619, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 608474736}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006764101}, "child": {"skip": 24, "offset": 36, "next": [], "symbols": [{"name": "mwInit", "hash": "95fc94e2dc8852ccb6c9011d3540a55ed968867c", "variant": 1436154619, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 608452720}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006764101}, "child": {"skip": 24, "offset": 36, "next": [], "symbols": [{"name": "mwInit", "hash": "27c6ba5058d3c76a94d3169c4c1e7d99eac435da", "variant": 1436154619, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 608314000}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2894200844}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "__FindExceptionTable__FP13ExceptionInfoPc", "hash": "9ece84a61ed1ade5a3bbf5a869fa79f16c685ee7", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764114}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829808}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608353920}, "child": {"skip": 152, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "aecb80ca2372eb66c9a42da423421d5b9569e71f", "variant": 693790609, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 608347924}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2894200844}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "__FindExceptionTable__FP13ExceptionInfoPc", "hash": "43979538115f99dbc89e851aeafac1b80a648d42", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764059}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829620}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608314240}, "child": {"skip": 152, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "a07d9e64e9783af9fb3f146be4ec4186721ff5e5", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006829631}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608306304}, "child": {"skip": 152, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "c4fae83a70d458ab8b016d078ff5a19a3cbb2075", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 608306016}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2894200844}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "__FindExceptionTable__FP13ExceptionInfoPc", "hash": "4be28ac7902efe50be433dd5f66600e01ab990db", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764102}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829706}, "child": {"skip": 156, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "ee110244f85f0c09d1d1644f322e408c372c8357", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006764126}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829669}, "child": {"skip": 156, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "0cd27fd99aa70e3247d8ff7a6363fc2e1942f798", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 1006764107}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829750}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608366336}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 610469632}, "child": {"skip": 148, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "e3c2ce3a2d0fa6262a91070d41a8c9a1ee915eef", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 608367872}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 610471168}, "child": {"skip": 148, "offset": 164, "next": [], "symbols": [{"name": "_start", "hash": "05641d3fdbbd498058b63ca5856a9370ceab20e6", "variant": 2157300109, "library": "crt0"}]}}], "symbols": []}}], "sym)PS2SDB", 8192}, + std::string_view{R"PS2SDB(bols": []}}, {"match": {"value": 608489696}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006764107}, "child": {"skip": 24, "offset": 36, "next": [], "symbols": [{"name": "mwInit", "hash": "91c82ec7c86dd4cea7ffaaabd76045bbbe2fddc0", "variant": 1436154619, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 608491232}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006764107}, "child": {"skip": 24, "offset": 36, "next": [], "symbols": [{"name": "mwInit", "hash": "6f21ee8fc6b5459068b3ecd61ddb9f32ac64f24b", "variant": 1436154619, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764088}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006830078}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608361088}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 610467840}, "child": {"skip": 144, "offset": 160, "next": [], "symbols": [{"name": "_start", "hash": "ada0cd80eabd9776abc2032bffa82529095b8fa5", "variant": 1258719478, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 608361344}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 610467840}, "child": {"skip": 144, "offset": 160, "next": [], "symbols": [{"name": "_start", "hash": "93cc285a1e97e266fc2331824683f4ad92e923fb", "variant": 1258719478, "library": "crt0"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604176419}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 12, "next": [], "symbols": [{"name": "_root", "hash": "b571daaed43ba2ab7c933faa4df64171f5f7ad37", "variant": 0, "library": "crt0"}]}}, {"match": {"value": 65011720}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 16, "next": [], "symbols": [{"name": "ExitThread", "hash": "e87fe69a489f0354c7f231c62d9434dafd4f2cf2", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}], "symbols": [{"name": "_root", "hash": "0d9e97e09d563abde3723d9d5ae81570be48587c", "variant": 0, "library": "crt0"}]}}], "symbols": []}}, {"match": {"value": 666763184}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2353463296, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 604373332}, "child": {"skip": 184, "offset": 200, "next": [], "symbols": [{"name": "bn_expand2", "hash": "2c542000f03f0fc033e925bfd6fc3afaf2b25bc6", "variant": 4126677361, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 4289921072}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789968}, "child": {"skip": 120, "offset": 140, "next": [], "symbols": [{"name": "_fs_version", "hash": "db4e90d7867018764d3d227af738c9ad812e582d", "variant": 1761894568, "library": "libkernl"}, {"name": "_lf_version", "hash": "db4e90d7867018764d3d227af738c9ad812e582d", "variant": 1761894568, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855520}, "child": {"skip": 156, "offset": 176, "next": [], "symbols": [{"name": "scePadGetState", "hash": "c601e6e549947a3527b70479c88790e3903fcf0e", "variant": 146423110, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 270464}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855520}, "child": {"skip": 128, "offset": 148, "next": [], "symbols": [{"name": "sceSynthesizerSelectPatch", "hash": "dc552a06d700a65859345171714bd9894806a51e", "variant": 1988267798, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8427565}, "child": {"skip": 620, "offset": 640, "next": [], "symbols": [{"name": "irealloc", "hash": "e2e088a07da5b3d5d0b9fdc92cce9e56a7dc16ea", "variant": 2765710247, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724432}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006862336}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 609222656, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 8, "offset": 28, "next": [{"match": {"value": 878903557}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4290707520}, "child": {"skip": 156, "offset": 192, "next": [], "symbols": [{"name": "scePadSetMainMode", "hash": "faa937ff5db3d2a9345efc8cc16c20dec1d90ec2", "variant": 1016280540, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 878903561}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4290707520}, "child": {"skip": 152, "offset": 188, "next": [], "symbols": [{"name": "scePadSetButtonInfo", "hash": "eb614faa2ef935fb555fadc5c41121e859a69067", "variant": 195546114, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604176394}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 609222656, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 88, "offset": 108, "next": [{"match": {"value": 268435466}, "child": {"skip": 0, "offset": 112, "next": [{"match": {"value": 4141}, "child": {"skip": 60, "offset": 176, "next": [], "symbols": [{"name": "scePadSetButtonInfo", "hash": "5bdc2b681201dcea355376a77a0e38654854e198", "variant": 4174302356, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 268435465}, "child": {"skip": 0, "offset": 112, "next": [{"match": {"value": 4141}, "child": {"skip": 56, "offset": 172, "next": [], "symbols": [{"name": "scePadSetButtonInfo", "hash": "182b90c0cf4420d15ce704bb1e8a2814bff6c7fe", "variant": 4174302356, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604505088}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 609222656, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 216, "offset": 236, "next": [], "symbols": [{"name": "sceDbcReceiveData", "hash": "5781002d371617597f1cc97c465acbad0b1190db", "variant": 2975626157, "library": "libdbc"}]}}], "symbols": []}}, {"match": {"value": 604504704}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 609222656, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 216, "offset": 236, "next": [], "symbols": [{"name": "sceDbcReceiveData", "hash": "b530945a60804d736ea242ad4747263824da0e3a", "variant": 2975626157, "library": "libdbc"}]}}], "symbols": []}}, {"match": {"value": 604504208}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 609222656, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 216, "offset": 236, "next": [], "symbols": [{"name": "sceDbcReceiveData", "hash": "8852037ded3acdda1e4eb59d100920f3009045df", "variant": 2975626157, "library": "libdbc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855536}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 604176395}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724432}, "child": {"skip": 116, "offset": 136, "next": [{"match": {"value": 268435466}, "child": {"skip": 0, "offset": 140, "next": [{"match": {"value": 4141}, "child": {"skip": 60, "offset": 204, "next": [], "symbols": [{"name": "scePadSetVrefParam", "hash": "da712bc74731f7029d083cbf5594f570730d8373", "variant": 1076513762, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 268435465}, "child": {"skip": 0, "offset": 140, "next": [{"match": {"value": 4141}, "child": {"skip": 56, "offset": 200, "next": [], "symbols": [{"name": "scePadSetVrefParam", "hash": "0e13fdeec06fc9fb68a304a7e0d14cc8c540e60b", "variant": 1076513762, "libr)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ary": "libpad"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10502189}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4231213}, "child": {"skip": 288, "offset": 308, "next": [], "symbols": [{"name": "sceMcWrite", "hash": "07a1a73cd83befb3da74eb3318eb325fc7efdcce", "variant": 2847525917, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724464}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 92, "offset": 108, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 112, "next": [{"match": {"value": 610467840, "relocation": {"type": "MIPS_LO16", "symbol": "_sdrCBThread"}}, "child": {"skip": 96, "offset": 212, "next": [], "symbols": [{"name": "sceSdRemoteCallbackInit", "hash": "1f3970482d6e7e738fff471bb1bd3052ef904523", "variant": 609854467, "library": "libsdr"}]}}], "symbols": []}}, {"match": {"value": 1006960685}, "child": {"skip": 0, "offset": 112, "next": [{"match": {"value": 610467840, "relocation": {"type": "MIPS_LO16", "symbol": "_sdrCBThread"}}, "child": {"skip": 4, "offset": 120, "next": [{"match": {"value": 614844912}, "child": {"skip": 0, "offset": 124, "next": [{"match": {"value": 604377088}, "child": {"skip": 84, "offset": 212, "next": [], "symbols": [{"name": "sceSdRemoteCallbackInit", "hash": "49bc401b7ec380d7e54dd51ab44e6b2c498e650f", "variant": 983043243, "library": "libsdr"}]}}], "symbols": []}}, {"match": {"value": 614858608}, "child": {"skip": 0, "offset": 124, "next": [{"match": {"value": 604377088}, "child": {"skip": 84, "offset": 212, "next": [], "symbols": [{"name": "sceSdRemoteCallbackInit", "hash": "a7e8bb9e4ea817e1b7a47eb3bb68f0dd513bc86a", "variant": 3778311643, "library": "libsdr"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006960675}, "child": {"skip": 0, "offset": 112, "next": [{"match": {"value": 610467840, "relocation": {"type": "MIPS_LO16", "symbol": "_sdrCBThread"}}, "child": {"skip": 96, "offset": 212, "next": [], "symbols": [{"name": "sceSdRemoteCallbackInit", "hash": "52f10bc25fee728e6b62d81141bdcee3299ee426", "variant": 3778311643, "library": "libsdr"}]}}], "symbols": []}}, {"match": {"value": 1006960686}, "child": {"skip": 0, "offset": 112, "next": [{"match": {"value": 610467840, "relocation": {"type": "MIPS_LO16", "symbol": "_sdrCBThread"}}, "child": {"skip": 96, "offset": 212, "next": [], "symbols": [{"name": "sceSdRemoteCallbackInit", "hash": "7c55d9bcb58caea4368f127b4e5ebffde13e9dec", "variant": 3778311643, "library": "libsdr"}]}}], "symbols": []}}, {"match": {"value": 1006960677}, "child": {"skip": 0, "offset": 112, "next": [{"match": {"value": 610467840, "relocation": {"type": "MIPS_LO16", "symbol": "_sdrCBThread"}}, "child": {"skip": 96, "offset": 212, "next": [], "symbols": [{"name": "sceSdRemoteCallbackInit", "hash": "c79665f4de1e3a518683c0d0308758d167482120", "variant": 983043243, "library": "libsdr"}]}}], "symbols": []}}, {"match": {"value": 1006960690}, "child": {"skip": 0, "offset": 112, "next": [{"match": {"value": 610467840, "relocation": {"type": "MIPS_LO16", "symbol": "_sdrCBThread"}}, "child": {"skip": 96, "offset": 212, "next": [], "symbols": [{"name": "sceSdRemoteCallbackInit", "hash": "f6cf3a207326c868f6e33b47a00c496050173870", "variant": 3778311643, "library": "libsdr"}]}}], "symbols": []}}, {"match": {"value": 1006960680}, "child": {"skip": 0, "offset": 112, "next": [{"match": {"value": 610467840, "relocation": {"type": "MIPS_LO16", "symbol": "_sdrCBThread"}}, "child": {"skip": 96, "offset": 212, "next": [], "symbols": [{"name": "sceSdRemoteCallbackInit", "hash": "4761765f4fd8c5499750be1250c9fa5fa956b600", "variant": 3778311643, "library": "libsdr"}]}}], "symbols": []}}, {"match": {"value": 1006960735}, "child": {"skip": 0, "offset": 112, "next": [{"match": {"value": 610467840, "relocation": {"type": "MIPS_LO16", "symbol": "_sdrCBThread"}}, "child": {"skip": 96, "offset": 212, "next": [], "symbols": [{"name": "sceSdRemoteCallbackInit", "hash": "e60179a27a4fc5b4ceb4b94751aff6ddda69065e", "variant": 3778311643, "library": "libsdr"}]}}], "symbols": []}}, {"match": {"value": 1006960665}, "child": {"skip": 0, "offset": 112, "next": [{"match": {"value": 610467840, "relocation": {"type": "MIPS_LO16", "symbol": "_sdrCBThread"}}, "child": {"skip": 4, "offset": 120, "next": [{"match": {"value": 614811376}, "child": {"skip": 0, "offset": 124, "next": [{"match": {"value": 604377088}, "child": {"skip": 84, "offset": 212, "next": [], "symbols": [{"name": "sceSdRemoteCallbackInit", "hash": "098128be5983e89089d3e338fff2db56f48c8009", "variant": 3778311643, "library": "libsdr"}]}}], "symbols": []}}, {"match": {"value": 614804208}, "child": {"skip": 0, "offset": 124, "next": [{"match": {"value": 604377088}, "child": {"skip": 84, "offset": 212, "next": [], "symbols": [{"name": "sceSdRemoteCallbackInit", "hash": "de1c8721eb802b8bde110e5a31c90147e256693b", "variant": 3778311643, "library": "libsdr"}]}}], "symbols": []}}, {"match": {"value": 614804336}, "child": {"skip": 0, "offset": 124, "next": [{"match": {"value": 604377088}, "child": {"skip": 84, "offset": 212, "next": [], "symbols": [{"name": "sceSdRemoteCallbackInit", "hash": "440b3bef2755482b1e63568ceedc9f72df9db037", "variant": 3778311643, "library": "libsdr"}]}}], "symbols": []}}, {"match": {"value": 614803696}, "child": {"skip": 0, "offset": 124, "next": [{"match": {"value": 604377088}, "child": {"skip": 84, "offset": 212, "next": [], "symbols": [{"name": "sceSdRemoteCallbackInit", "hash": "d2c9217f6a95e601910a021c8a69050c9925cd43", "variant": 3778311643, "library": "libsdr"}]}}], "symbols": []}}, {"match": {"value": 614803952}, "child": {"skip": 0, "offset": 124, "next": [{"match": {"value": 604377088}, "child": {"skip": 84, "offset": 212, "next": [], "symbols": [{"name": "sceSdRemoteCallbackInit", "hash": "1b70873ecf38052449c79d3b3da9a83039463213", "variant": 3778311643, "library": "libsdr"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006960708}, "child": {"skip": 0, "offset": 112, "next": [{"match": {"value": 610467840, "relocation": {"type": "MIPS_LO16", "symbol": "_sdrCBThread"}}, "child": {"skip": 96, "offset": 212, "next": [], "symbols": [{"name": "sceSdRemoteCallbackInit", "hash": "a66347c1933db2a1deba45309075d5df1c6e4262", "variant": 983043243, "library": "libsdr"}]}}], "symbols": []}}, {"match": {"value": 1006960673}, "child": {"skip": 0, "offset": 112, "next": [{"match": {"value": 610467840, "relocation": {"type": "MIPS_LO16", "symbol": "_sdrCBThread"}}, "child": {"skip": 96, "offset": 212, "next": [], "symbols": [{"name": "sceSdRemoteCallbackInit", "hash": "f9417e8e9916e542c8864a20dcaa479332a1146a", "variant": 3778311643, "library": "libsdr"}]}}], "symbols": []}}, {"match": {"value": 1006960737}, "child": {"skip": 0, "offset": 112, "next": [{"match": {"value": 610467840, "relocation": {"type": "MIPS_LO16", "symbol": "_sdrCBThread"}}, "child": {"skip": 96, "offset": 212, "next": [], "symbols": [{"name": "sceSdRemoteCallbackInit", "hash": "06a171053d4d9b78ae51eb439185cf32100d2bb1", "variant": 3778311643, "library": "libsdr"}]}}], "symbols": []}}, {"match": {"value": 1006960699}, "child": {"skip": 0, "offset": 112, "next": [{"match": {"value": 610467840, "relocation": {"type": "MIPS_LO16", "symbol": "_sdrCBThread"}}, "child": {"skip": 96, "offset": 212, "next": [], "symbols": [{"name": "sceSdRemoteCallbackInit", "hash": "2d3cbda515d93e422d495cf23ceef52cbaba6ab5", "variant": 3778311643, "library": "libsdr"}]}}], "symbols": []}}, {"match": {"value": 1006960745}, "child": {"skip": 0, "offset": 112, "next": [{"match": {"value": 610467840, "relocation": {"type": "MIPS_LO16", "symbol": "_sdrCBThread"}}, "child": {"skip": 96, "offset": 212, "next": [], "symbols": [{"name": "sceSdRemoteCallbackInit", "hash": "b469d309cfc1c99d731deb547e80f58f1071b787", "variant": 3778311643, "library": "libsdr"}]}}], "symbols": []}}, {"match": {"value": 1006960787}, "child": {"skip": 0, "offset": 112, "next": [{"match": {"value)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": 610467840, "relocation": {"type": "MIPS_LO16", "symbol": "_sdrCBThread"}}, "child": {"skip": 96, "offset": 212, "next": [], "symbols": [{"name": "sceSdRemoteCallbackInit", "hash": "a862b51e521fe6807ee3f8d1332682ee8f846d8a", "variant": 3778311643, "library": "libsdr"}]}}], "symbols": []}}, {"match": {"value": 1006960776}, "child": {"skip": 0, "offset": 112, "next": [{"match": {"value": 610467840, "relocation": {"type": "MIPS_LO16", "symbol": "_sdrCBThread"}}, "child": {"skip": 96, "offset": 212, "next": [], "symbols": [{"name": "sceSdRemoteCallbackInit", "hash": "51bd2dd445c323e9d85db557f1f4f175c4948528", "variant": 3778311643, "library": "libsdr"}]}}], "symbols": []}}, {"match": {"value": 1006960814}, "child": {"skip": 0, "offset": 112, "next": [{"match": {"value": 610467840, "relocation": {"type": "MIPS_LO16", "symbol": "_sdrCBThread"}}, "child": {"skip": 96, "offset": 212, "next": [], "symbols": [{"name": "sceSdRemoteCallbackInit", "hash": "4c7996fa4c96cd783783fbea08ed6cfdaf70e532", "variant": 3778311643, "library": "libsdr"}]}}], "symbols": []}}, {"match": {"value": 1006960668}, "child": {"skip": 0, "offset": 112, "next": [{"match": {"value": 610467840, "relocation": {"type": "MIPS_LO16", "symbol": "_sdrCBThread"}}, "child": {"skip": 96, "offset": 212, "next": [], "symbols": [{"name": "sceSdRemoteCallbackInit", "hash": "0208e119e36d1ed4e373e4e24b5080a2ac5a52c7", "variant": 983043243, "library": "libsdr"}]}}], "symbols": []}}, {"match": {"value": 1006960749}, "child": {"skip": 0, "offset": 112, "next": [{"match": {"value": 610467840, "relocation": {"type": "MIPS_LO16", "symbol": "_sdrCBThread"}}, "child": {"skip": 96, "offset": 212, "next": [], "symbols": [{"name": "sceSdRemoteCallbackInit", "hash": "8c9964394551dca126f9a57e0c54562a9d27885c", "variant": 3778311643, "library": "libsdr"}]}}], "symbols": []}}, {"match": {"value": 1006960692}, "child": {"skip": 0, "offset": 112, "next": [{"match": {"value": 610467840, "relocation": {"type": "MIPS_LO16", "symbol": "_sdrCBThread"}}, "child": {"skip": 96, "offset": 212, "next": [], "symbols": [{"name": "sceSdRemoteCallbackInit", "hash": "3634df20eab34b5c42379e64e9294024943cbfd7", "variant": 3778311643, "library": "libsdr"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 609353728, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289724416}, "child": {"skip": 168, "offset": 192, "next": [], "symbols": [{"name": "mceSifEntry", "hash": "afcd0260b620d0c3959fb154ab28dd833c6a43b1", "variant": 3220365460, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 10522669}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2353201152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 24, "offset": 48, "next": [{"match": {"value": 268435488}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 876773377}, "child": {"skip": 72, "offset": 128, "next": [{"match": {"value": 604110855}, "child": {"skip": 0, "offset": 132, "next": [{"match": {"value": 1006797057}, "child": {"skip": 32, "offset": 168, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceMcCoreSetAlaram"}}, "child": {"skip": 0, "offset": 172, "next": [{"match": {"value": 2919432204}, "child": {"skip": 32, "offset": 208, "next": [], "symbols": [{"name": "sceMc2CreateFileAsync", "hash": "bae0f0f8b8ca3d81b8118b82aec8134bb1428ab4", "variant": 1823089449, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceMcCoreExecSubs"}}, "child": {"skip": 0, "offset": 172, "next": [{"match": {"value": 2919432204}, "child": {"skip": 32, "offset": 208, "next": [], "symbols": [{"name": "sceMc2CreateFileAsync", "hash": "bae0f0f8b8ca3d81b8118b82aec8134bb1428ab4", "variant": 1721130149, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604110859}, "child": {"skip": 0, "offset": 132, "next": [{"match": {"value": 1006797057}, "child": {"skip": 32, "offset": 168, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceMcCoreSetAlaram"}}, "child": {"skip": 0, "offset": 172, "next": [{"match": {"value": 2919432204}, "child": {"skip": 32, "offset": 208, "next": [], "symbols": [{"name": "sceMc2MkdirAsync", "hash": "624627259f2c80edd2d878401c8686b4975173c5", "variant": 1823089449, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceMcCoreExecSubs"}}, "child": {"skip": 0, "offset": 172, "next": [{"match": {"value": 2919432204}, "child": {"skip": 32, "offset": 208, "next": [], "symbols": [{"name": "sceMc2MkdirAsync", "hash": "624627259f2c80edd2d878401c8686b4975173c5", "variant": 1721130149, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 268435487}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 876773377}, "child": {"skip": 72, "offset": 128, "next": [{"match": {"value": 604110856}, "child": {"skip": 0, "offset": 132, "next": [{"match": {"value": 1006797057}, "child": {"skip": 28, "offset": 164, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceMcCoreSetAlaram"}}, "child": {"skip": 0, "offset": 168, "next": [{"match": {"value": 0}, "child": {"skip": 32, "offset": 204, "next": [], "symbols": [{"name": "sceMc2DeleteAsync", "hash": "e220383f6ba5fe75c6a425856d63d8d99a199ee8", "variant": 3139238501, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceMcCoreExecSubs"}}, "child": {"skip": 0, "offset": 168, "next": [{"match": {"value": 0}, "child": {"skip": 32, "offset": 204, "next": [], "symbols": [{"name": "sceMc2DeleteAsync", "hash": "e220383f6ba5fe75c6a425856d63d8d99a199ee8", "variant": 3718118980, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604110863}, "child": {"skip": 0, "offset": 132, "next": [{"match": {"value": 1006797057}, "child": {"skip": 28, "offset": 164, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceMcCoreSetAlaram"}}, "child": {"skip": 0, "offset": 168, "next": [{"match": {"value": 0}, "child": {"skip": 32, "offset": 204, "next": [], "symbols": [{"name": "sceMc2GetEntSpaceAsync", "hash": "894635674e4c0768d8ac338a380ca54911c35650", "variant": 3139238501, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceMcCoreExecSubs"}}, "child": {"skip": 0, "offset": 168, "next": [{"match": {"value": 0}, "child": {"skip": 32, "offset": 204, "next": [], "symbols": [{"name": "sceMc2GetEntSpaceAsync", "hash": "894635674e4c0768d8ac338a380ca54911c35650", "variant": 3718118980, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604241924}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789968}, "child": {"skip": 128, "offset": 148, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_nextBit"}}, "child": {"skip": 0, "offset": 152, "next": [{"match": {"value": 2898460672}, "child": {"skip": 400, "offset": 556, "next": [], "symbols": [{"name": "_pictureCodingExtension", "hash": "825cff67bfb9a0a47e263507d30d74f110093074", "variant": 2247578103, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2898460672}, "child": {"skip": 0, "offset": 152, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_nextBit"}}, "child": {"skip": 404, "offset": 560, "next": [], "symbols": [{"name": "_pictureCodingExtension", "hash": "6e56a4a6d2d59070d84ed760e32c25309f4d89de", "variant": 1713267140, "library": "libmpeg"}]}}], "symbols":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604700676}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1007812608, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 968, "offset": 988, "next": [], "symbols": [{"name": "_updateRefImage", "hash": "0ef03a24de104b0dbc3bbe7dd6e436ab132d13e7", "variant": 1974836992, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789984}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8423469}, "child": {"skip": 220, "offset": 240, "next": [], "symbols": [{"name": "scePad2GetButtonProfile", "hash": "a41ab762b583d62aaf4578a14109ccd15125f168", "variant": 1244742654, "library": "libpad2"}]}}], "symbols": []}}, {"match": {"value": 604241924}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855536}, "child": {"skip": 68, "offset": 88, "next": [{"match": {"value": 1007026176, "relocation": {"type": "MIPS_HI16", "symbol": "_$_8bad_cast"}}, "child": {"skip": 0, "offset": 92, "next": [{"match": {"value": 4204589}, "child": {"skip": 32, "offset": 128, "next": [], "symbols": [{"name": "__throw_bad_cast", "hash": "ad0b5551b83b7c8cc823c8f0340791ff42e2c6f8", "variant": 894631101, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 1007026176, "relocation": {"type": "MIPS_HI16", "symbol": "_$_10bad_typeid"}}, "child": {"skip": 0, "offset": 92, "next": [{"match": {"value": 4204589}, "child": {"skip": 32, "offset": 128, "next": [], "symbols": [{"name": "__throw_bad_typeid", "hash": "ad0b5551b83b7c8cc823c8f0340791ff42e2c6f8", "variant": 1626815324, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 816120063}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8423469}, "child": {"skip": 196, "offset": 216, "next": [], "symbols": [{"name": "sceUsbKbSetLEDStatus", "hash": "112bf495a210406ef821b7f10217d7867f4fa237", "variant": 3919311273, "library": "libusbkb"}]}}], "symbols": []}}, {"match": {"value": 10498093}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8423469}, "child": {"skip": 232, "offset": 252, "next": [], "symbols": [{"name": "sceUsbKbSetLEDMode", "hash": "f9ba5f0b653802716253e880c926890c417738bf", "variant": 100308938, "library": "libusbkb"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290117680}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 337980}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 609615872, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289921048}, "child": {"skip": 576, "offset": 600, "next": [], "symbols": [{"name": "malloc_extend_top", "hash": "10b49cc83e7f3448c4127c6430dfcf324581043d", "variant": 887459784, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4289921048}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 337982}, "child": {"skip": 576, "offset": 600, "next": [], "symbols": [{"name": "malloc_extend_top", "hash": "d674535c6eb434bb18c82fc9fdbdd521d505d510", "variant": 1448417338, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289003544}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8398893}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707456}, "child": {"skip": 56, "offset": 76, "next": [], "symbols": [{"name": "printf", "hash": "dbf540fb376449a0fbe545979a09adb64854b61e", "variant": 2831598203, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4289069088}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707456}, "child": {"skip": 56, "offset": 76, "next": [], "symbols": [{"name": "printf", "hash": "6af87d6ecf8f925afc03c963dbfb46cbb8c6517a", "variant": 227009556, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289921048}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 14719021}, "child": {"skip": 280, "offset": 296, "next": [], "symbols": [{"name": "_GetFreeEntrySize", "hash": "aef60265812fdb23f482f27d7b6a1a5fe5861b10", "variant": 1030194161, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 4289790000}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 60825645}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 605094015}, "child": {"skip": 148, "offset": 168, "next": [], "symbols": [{"name": "_sceMcCoreInit", "hash": "6e13886437090fbc77d5cb6789f5e8171b15fd03", "variant": 3345577262, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 4289724448}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 12617773}, "child": {"skip": 112, "offset": 132, "next": [], "symbols": [{"name": "SSLCERT_NAME_get_info", "hash": "0672560823cb621194ac0bce68619a6b496ee332", "variant": 3617995400, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 608370688, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2354118656, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 192, "offset": 212, "next": [], "symbols": [{"name": "__sceEENettcp_drain", "hash": "5a01783fa7f231a68f285df5746f3cd2c442ab7c", "variant": 3984351618, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 10520621}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724416}, "child": {"skip": 120, "offset": 140, "next": [], "symbols": [{"name": "sceHiPlugTim2SetData", "hash": "c52fc85b1261b92cd26636b937c40f1bd5caaa8f", "variant": 4143984072, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 4289921072}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855520}, "child": {"skip": 132, "offset": 152, "next": [], "symbols": [{"name": "__sceEENetpfctlinput", "hash": "29cd92c0370fe15c27d7124a9a1497133a43466e", "variant": 3069795599, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2354118656, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 12, "offset": 32, "next": [{"match": {"value": 304087082}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 4289724416}, "child": {"skip": 196, "offset": 236, "next": [], "symbols": [{"name": "__sceEENetifa_ifwithaddr", "hash": "26c949cc106e977cf952af217be08a77a70a44ef", "variant": 2574739882, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 304087074}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 4289724416}, "child": {"skip": 164, "offset": 204, "next": [], "symbols": [{"name": "__sceEENetifa_ifwithdstaddr", "hash": "aad44b2999d1cb9dab64684e30ea75372617df47", "variant": 3947038259, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8423469}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289921072}, "child": {"skip": 952, "offset": 972, "next": [], "symbols": [{"name": "sceHTTPSOpen", "hash": "dd240dbe15a807ba398e59f72c13f35eaaa8b415", "variant": 3846721482, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289921072}, "child": {"skip": 152, "offset": 168, "next": [], "symbols": [{"name": "__sceEENetbpf_change_type", "hash": "b0b10d4e541cee188598b33334c6044d424e020f", "variant": 3830241873, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4290707520}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289789984}, "child": {"skip": 164, "offset": 180, "next": [], "symbols": [{"name": "__sceEENetif_clone_list", "hash": "28a4f8bda6071a9a3412704c51f48d2fe52e711f", "variant": 1453030687, "library": "libeenet"}]}}], "symbols": []}}, {"match": {)PS2SDB", 8192}, + std::string_view{R"PS2SDB("value": 2946760704}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2353266688, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 112, "offset": 128, "next": [], "symbols": [{"name": "OBJ_sn2nid", "hash": "aa8903bca2393096e3a26272116ba86687fe94d7", "variant": 376727824, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289921072}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 610467840, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 160, "offset": 176, "next": [], "symbols": [{"name": "scePadGetState", "hash": "441ff44a7f3bb789dce52f9c175d78a35b729ca4", "variant": 146423110, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 4289724432}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 604110854}, "child": {"skip": 96, "offset": 112, "next": [{"match": {"value": 268435466}, "child": {"skip": 0, "offset": 116, "next": [{"match": {"value": 4141}, "child": {"skip": 60, "offset": 180, "next": [], "symbols": [{"name": "scePadSetMainMode", "hash": "76f9da1db829d1a642b244ddf32e8cfa10a72d2b", "variant": 3662324268, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 268435465}, "child": {"skip": 0, "offset": 116, "next": [{"match": {"value": 4141}, "child": {"skip": 56, "offset": 176, "next": [], "symbols": [{"name": "scePadSetMainMode", "hash": "5540bb8a430476811e2824d0ef6594b144245e4c", "variant": 3662324268, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855536}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 604110856}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789984}, "child": {"skip": 64, "offset": 84, "next": [{"match": {"value": 2692939776}, "child": {"skip": 0, "offset": 88, "next": [{"match": {"value": 339804153}, "child": {"skip": 56, "offset": 148, "next": [{"match": {"value": 268435466}, "child": {"skip": 0, "offset": 152, "next": [{"match": {"value": 4141}, "child": {"skip": 60, "offset": 216, "next": [], "symbols": [{"name": "scePadSetActAlign", "hash": "307b0d6003f7d0308758607ee7ca7b7b8e5e728a", "variant": 2424104754, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 268435465}, "child": {"skip": 0, "offset": 152, "next": [{"match": {"value": 4141}, "child": {"skip": 56, "offset": 212, "next": [], "symbols": [{"name": "scePadSetActAlign", "hash": "ec69d89081269a1e55666644808d9528a2fed2a9", "variant": 2424104754, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 339804154}, "child": {"skip": 0, "offset": 88, "next": [{"match": {"value": 2692939776}, "child": {"skip": 116, "offset": 208, "next": [], "symbols": [{"name": "scePadSetActAlign", "hash": "517560190c6c6628e7d8bc6e63c14064c6e24c0b", "variant": 1676275012, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006796800}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724432}, "child": {"skip": 200, "offset": 220, "next": [], "symbols": [{"name": "scePadSetActAlign", "hash": "caf5f84ba75de944796b6d179c8ce625f0d0caf6", "variant": 677349201, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789984}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2355232768, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8423469}, "child": {"skip": 12, "offset": 32, "next": [{"match": {"value": 35786794}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 339738627}, "child": {"skip": 136, "offset": 176, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "scePrintf"}}, "child": {"skip": 0, "offset": 180, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 52, "offset": 236, "next": [], "symbols": [{"name": "sceUsbKbSetLEDMode", "hash": "bc1e6cd2051336c8f500686b69b8893815576725", "variant": 54267168, "library": "libusbkb"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "printf"}}, "child": {"skip": 0, "offset": 180, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 52, "offset": 236, "next": [], "symbols": [{"name": "sceUsbKbSetLEDMode", "hash": "bc1e6cd2051336c8f500686b69b8893815576725", "variant": 4246888299, "library": "libusbkb"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 35786795}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 339738627}, "child": {"skip": 96, "offset": 136, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "scePrintf"}}, "child": {"skip": 0, "offset": 140, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 76, "offset": 220, "next": [], "symbols": [{"name": "sceUsbKbClearRbuf", "hash": "0a5c586a749837ef6f7d0db59ff904d428af455c", "variant": 2253259467, "library": "libusbkb"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "printf"}}, "child": {"skip": 0, "offset": 140, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 76, "offset": 220, "next": [], "symbols": [{"name": "sceUsbKbClearRbuf", "hash": "0a5c586a749837ef6f7d0db59ff904d428af455c", "variant": 4289004931, "library": "libusbkb"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724432}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 611385344, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 20, "offset": 40, "next": [{"match": {"value": 268435485}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 604176284}, "child": {"skip": 32, "offset": 80, "next": [{"match": {"value": 619118592, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 35659821}, "child": {"skip": 96, "offset": 184, "next": [], "symbols": [{"name": "sceMcChangeThreadPriority", "hash": "38c04ea6180a92f31108741c083646f0b270ca6c", "variant": 3033407549, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 2901409792, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 35659821}, "child": {"skip": 12, "offset": 100, "next": [{"match": {"value": 604307459}, "child": {"skip": 0, "offset": 104, "next": [{"match": {"value": 604372993}, "child": {"skip": 76, "offset": 184, "next": [], "symbols": [{"name": "sceMcClose", "hash": "7a90a6040e5aff863e1c7428ae76cea76c6ccae7", "variant": 337939996, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 604307466}, "child": {"skip": 0, "offset": 104, "next": [{"match": {"value": 604372993}, "child": {"skip": 76, "offset": 184, "next": [], "symbols": [{"name": "sceMcFlush", "hash": "a02e4bce918904c5449bcf4568986f8f00357702", "variant": 337939996, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 268435486}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 604176284}, "child": {"skip": 32, "offset": 80, "next": [{"match": {"value": 619118592, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 1007353856, "relocation": {"type": "MIPS_HI16", "symbol": "mceSifRpcEndFunc"}}, "child": {"skip": 40, "offset": 128, "next": [{"match": {"value": 4227117}, "child": {"skip": 0, "offset": 132, "next": [{"match": {"value": 369098756}, "child": {"skip": 52, "offset": 188, "next": [], "symbols": [{"name": "sceMcChangeThreadPriority", "hash": "8d5d78c661f71cd4fd157ccf7)PS2SDB", 8192}, + std::string_view{R"PS2SDB(360466e00dcf9f1", "variant": 4120620989, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 272629765}, "child": {"skip": 0, "offset": 132, "next": [{"match": {"value": 604110868}, "child": {"skip": 52, "offset": 188, "next": [], "symbols": [{"name": "sceMcChangeThreadPriority", "hash": "4a3e650756e5b59ee57af62e1b5315973c7e8972", "variant": 1678479422, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2901409792, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 1007353856, "relocation": {"type": "MIPS_HI16", "symbol": "mceSifRpcEndFunc"}}, "child": {"skip": 20, "offset": 108, "next": [{"match": {"value": 604307459}, "child": {"skip": 0, "offset": 112, "next": [{"match": {"value": 604372993}, "child": {"skip": 72, "offset": 188, "next": [], "symbols": [{"name": "sceMcClose", "hash": "1d571025507a5c0b62b615582020d51e98abd007", "variant": 3706879967, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 604307466}, "child": {"skip": 0, "offset": 112, "next": [{"match": {"value": 604372993}, "child": {"skip": 72, "offset": 188, "next": [], "symbols": [{"name": "sceMcFlush", "hash": "14ea011f7b12047e7321960a3582fc72a83a5dfe", "variant": 3706879967, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1007353856, "relocation": {"type": "MIPS_HI16", "symbol": "mceSifRpcEndFunc"}}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 2901409792, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 20, "offset": 108, "next": [{"match": {"value": 604307459}, "child": {"skip": 0, "offset": 112, "next": [{"match": {"value": 604372993}, "child": {"skip": 72, "offset": 188, "next": [], "symbols": [{"name": "sceMcClose", "hash": "3b60806f04cace878e2e38c6f162a19faeb90090", "variant": 1669699446, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 604307466}, "child": {"skip": 0, "offset": 112, "next": [{"match": {"value": 604372993}, "child": {"skip": 72, "offset": 188, "next": [], "symbols": [{"name": "sceMcFlush", "hash": "e0e1dbd21fe375478727985306be08bfec141d70", "variant": 1669699446, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 816120063}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2355232768, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 124, "offset": 144, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "scePrintf"}}, "child": {"skip": 0, "offset": 148, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 52, "offset": 204, "next": [], "symbols": [{"name": "sceUsbKbSetLEDStatus", "hash": "577269de54997bdf6d0b905dc0360e95d3df2579", "variant": 679731557, "library": "libusbkb"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "printf"}}, "child": {"skip": 0, "offset": 148, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 52, "offset": 204, "next": [], "symbols": [{"name": "sceUsbKbSetLEDStatus", "hash": "577269de54997bdf6d0b905dc0360e95d3df2579", "variant": 2996642341, "library": "libusbkb"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604176383}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8423469}, "child": {"skip": 212, "offset": 232, "next": [], "symbols": [{"name": "sceUsbKbClearRbuf", "hash": "faef0aa5633a43564d96beadc62138f9edf9a934", "variant": 2502441247, "library": "libusbkb"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2407661568, "relocation": {"type": "MIPS_GPREL16", "symbol": ".sdata"}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707520}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10500141}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855536}, "child": {"skip": 84, "offset": 104, "next": [{"match": {"value": 604307648}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 1007222784, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 24, "offset": 136, "next": [{"match": {"value": 604307461}, "child": {"skip": 0, "offset": 140, "next": [{"match": {"value": 604372993}, "child": {"skip": 60, "offset": 204, "next": [], "symbols": [{"name": "sceMcRead", "hash": "ca2ddd7ada91ab6325f64b7f6e0e06df4294179a", "variant": 3477575649, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 604307571}, "child": {"skip": 0, "offset": 140, "next": [{"match": {"value": 604372993}, "child": {"skip": 60, "offset": 204, "next": [], "symbols": [{"name": "sceMcRead", "hash": "508e234575f2674708d121b433755ab8259b8498", "variant": 3477575649, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604307520}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 1007222784, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 92, "offset": 204, "next": [], "symbols": [{"name": "sceMcRead", "hash": "bde2e9a3a9508a0ba4f93b4f789671122788d2bf", "variant": 3477575649, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855536}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789984}, "child": {"skip": 204, "offset": 224, "next": [{"match": {"value": 604307457}, "child": {"skip": 0, "offset": 228, "next": [{"match": {"value": 604372993}, "child": {"skip": 60, "offset": 292, "next": [], "symbols": [{"name": "sceMcGetInfo", "hash": "e9b4bd6891fdb18225a40aaf1f0fb9b03ddb823a", "variant": 2040877514, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 604307576}, "child": {"skip": 0, "offset": 228, "next": [{"match": {"value": 604372993}, "child": {"skip": 60, "offset": 292, "next": [], "symbols": [{"name": "sceMcGetInfo", "hash": "b1129d86061b499c51b4f62b5557666a33fb3af8", "variant": 2040877514, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 12619821}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289724416}, "child": {"skip": 204, "offset": 228, "next": [], "symbols": [{"name": "sceMcSync", "hash": "e99e4e201c1c2a707342d3032b0b7a8226020862", "variant": 3326349067, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 10522669}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289724416}, "child": {"skip": 216, "offset": 240, "next": [], "symbols": [{"name": "sceMcSync", "hash": "aa5e78b2a80a4f33b62451a36cf0a1e644536c71", "variant": 3326349067, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1007616000, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290117680}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 337980}, "child": {"skip": 580, "offset": 596, "next": [], "symbols": [{"name": "malloc_extend_top", "hash": "088eb5278f588ba94652f49b57ca660bf2e607c6", "variant": 3259879981, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4289003544}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289069088}, "child": {"skip": 60, "offset": 76, "next": [], "symbols": [{"name": "printf", "hash": "8e15cef2b87a6b98b8a7091abea92082c23715a3", "variant": 227009556, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2407661568, "relocation": {"type": "MIPS_GPREL16", "symbol": "_isTop32dirty"}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289921072}, "child": {"skip": 236, "offset": 248, "next": [], "symbols": [{"name": "_peepBit", "ha)PS2SDB", 8192}, + std::string_view{R"PS2SDB(sh": "9583ecf0f29cca73823aa8c7932d336ca09a0b38", "variant": 1985980881, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": "__sceEENetif_nulloutput"}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855520}, "child": {"skip": 312, "offset": 324, "next": [], "symbols": [{"name": "__sceEENetifaof_ifpforaddr", "hash": "225e51afa7fbc5dea3dbe6d229e773293861a705", "variant": 2593831940, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 1007091712, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855520}, "child": {"skip": 292, "offset": 304, "next": [], "symbols": [{"name": "ssl_cert_free", "hash": "333d526727af92fe9a273fc2b202974ed5d74465", "variant": 2143756846, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 271360}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289921072}, "child": {"skip": 40, "offset": 52, "next": [{"match": {"value": 604110849}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 276955185}, "child": {"skip": 340, "offset": 400, "next": [], "symbols": [{"name": "sceGsResetGraph", "hash": "91f06c88d1f9e41c22e805efda7c401bfa5e0db0", "variant": 3743346451, "library": "libgraph"}]}}], "symbols": []}}, {"match": {"value": 276824070}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 498691}, "child": {"skip": 212, "offset": 272, "next": [], "symbols": [{"name": "sceGsResetGraph", "hash": "ce57abd501c5429c37f38339d2a327c1e589fc75", "variant": 1173363349, "library": "libgraph"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 338944}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 260, "offset": 272, "next": [], "symbols": [{"name": "sceGsResetGraph", "hash": "dc897ef4ce781cd8a7335cc1d9e884fe08926b79", "variant": 2033497563, "library": "libgraph"}]}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1007812608, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707520}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2386821120, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 256, "offset": 276, "next": [], "symbols": [{"name": "sceHiDMAMake_DynamicChainEnd", "hash": "f96dfa720ebb586ba5cad57f607f54b5c2b1c71c", "variant": 477443866, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2386690048, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 280, "offset": 300, "next": [], "symbols": [{"name": "__sceEENetsppp_attach", "hash": "efe17ed636664444fe552d19338eaff0d0ea89af", "variant": 620956989, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289921072}, "child": {"skip": 192, "offset": 212, "next": [], "symbols": [{"name": "sceEENetCtlUnregIfName", "hash": "91945400d9c23d1679025d348e364d55627c1d08", "variant": 3551667576, "library": "eenetctl"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10522669}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8423469}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290707520}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 1007681792}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4289921072}, "child": {"skip": 96, "offset": 132, "next": [], "symbols": [{"name": "WatchDma", "hash": "99eaea644dfea631017bfedc8ca7d6cf4d2357ce", "variant": 2017915806, "library": "libdma"}]}}], "symbols": []}}, {"match": {"value": 12615725}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 301989903}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 4289921072}, "child": {"skip": 92, "offset": 132, "next": [], "symbols": [{"name": "_setlocale_r", "hash": "94dfdbd76df0786d5d673187bcf61aa9f30c5648", "variant": 3705633818, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 100728838}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 4289921072}, "child": {"skip": 180, "offset": 220, "next": [], "symbols": [{"name": "ASN1_STRING_set", "hash": "af033dfdf8c25fcacbd692c548491ff5701c038e", "variant": 496742440, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 12615725}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4289921072}, "child": {"skip": 76, "offset": 108, "next": [], "symbols": [{"name": "WaitGetAddressNoAutoUpIf", "hash": "611c4659e82df3afd2242e6c6a211fc853238953", "variant": 2446307576, "library": "libnet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707520}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8423469}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289921072}, "child": {"skip": 144, "offset": 172, "next": [], "symbols": [{"name": "sceDevConsRollup", "hash": "2a4e0f36515cd63a738ba76f432e705736877454", "variant": 2687491628, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 1006960641}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 883249536}, "child": {"skip": 692, "offset": 720, "next": [], "symbols": [{"name": "localtime_r", "hash": "40e41a329b16ba69eaa866a87b8939171c8c1a1c", "variant": 2261359288, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4289921072}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289724416}, "child": {"skip": 116, "offset": 144, "next": [], "symbols": [{"name": "__sceEENetbpf_tap", "hash": "752ec030c9bd1c70d378593db01f4a19620688a2", "variant": 1733645998, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 34861}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289921072}, "child": {"skip": 172, "offset": 200, "next": [], "symbols": [{"name": "__sceEENetbpf_mtap", "hash": "8db6b6792ffb8a2cf02b8fc2bb2eb62dbabe7249", "variant": 3857065435, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8425517}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 10520621}, "child": {"skip": 36, "offset": 60, "next": [{"match": {"value": 1258291651}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 1258699308}, "child": {"skip": 68, "offset": 136, "next": [], "symbols": [{"name": "sceVu0InterVector", "hash": "7bf1c6fe82d6a7291074946b610dee424e73239b", "variant": 1472176980, "library": "libvu0"}]}}], "symbols": []}}, {"match": {"value": 1244209980}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 1258291651}, "child": {"skip": 72, "offset": 140, "next": [], "symbols": [{"name": "sceVu0InterVectorXYZ", "hash": "b1190ea99551da0da7408578573556a3e6132f9a", "variant": 3882275030, "library": "libvu0"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289921072}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 12617773}, "child": {"skip": 148, "offset": 172, "next": [], "symbols": [{"name": "X509_NAME_get_text_by_OBJ", "hash": "161788de715cd35c9c49538ca75f48ad1b50af0b", "variant": 1044141580, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 12619821}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8423469}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289921072}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4290707520}, "child": {"skip": 52, "offset": 84, "next": [{"match": {"value": 201326592, "relocat)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ion": {"type": "MIPS_26", "symbol": "SyncDCache"}}, "child": {"skip": 0, "offset": 88, "next": [{"match": {"value": 637862143}, "child": {"skip": 252, "offset": 344, "next": [], "symbols": [{"name": "scePadGetDmaStr", "hash": "a0b3161aa44c340cb87a20f8818feed4d8775438", "variant": 4040380072, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "iInvalidDCache"}}, "child": {"skip": 0, "offset": 88, "next": [{"match": {"value": 637862143}, "child": {"skip": 252, "offset": 344, "next": [], "symbols": [{"name": "scePadGetDmaStr", "hash": "a0b3161aa44c340cb87a20f8818feed4d8775438", "variant": 706961459, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707520}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 10518573}, "child": {"skip": 16, "offset": 48, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "GetImageQWSize"}}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 2516975628}, "child": {"skip": 308, "offset": 364, "next": [], "symbols": [{"name": "sceGpSetLoadImage", "hash": "68029ececc1356d2c1e82916acc4cfd0414e8b04", "variant": 3190030867, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": ""}}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 2516975628}, "child": {"skip": 316, "offset": 372, "next": [], "symbols": [{"name": "sceGpSetLoadImage", "hash": "d8e4d43e0582d90c0de646cf1d388aacefda16c8", "variant": 3630259515, "library": "libgp"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10520621}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289724416}, "child": {"skip": 88, "offset": 112, "next": [], "symbols": [{"name": "sceHiCreatePlugBlk", "hash": "95924b534a716ac4e4f78ef83a659ada56999764", "variant": 1948889190, "library": "libhig"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 14716973}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 10520621}, "child": {"skip": 136, "offset": 156, "next": [], "symbols": [{"name": "sceInetAddress2String", "hash": "8507cc186fd8b09c051cbd59f53a5786bfb0c520", "variant": 1532887497, "library": "libnet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 36909}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789968}, "child": {"skip": 356, "offset": 376, "next": [], "symbols": [{"name": "printfloat", "hash": "fdd0a1a3f04eab7c1857c2d8596a0498c799886d", "variant": 3555955950, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 8425517}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 10518573}, "child": {"skip": 364, "offset": 388, "next": [], "symbols": [{"name": "_make_path", "hash": "076e2014b59ea0d4dd50c5e7a0cc7542ed449d4c", "variant": 2127225669, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 4289921072}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289789968}, "child": {"skip": 164, "offset": 188, "next": [], "symbols": [{"name": "__sceEENetsolisten", "hash": "6c146218c90c6dd789af23bc14f84371509bc44f", "variant": 602676123, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 14716973}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 84, "offset": 104, "next": [], "symbols": [{"name": "BER_ITEM_set_all", "hash": "cace352fa05c47fc9ea42327bcdf731c7619dbdf", "variant": 2299226924, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 10522669}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707520}, "child": {"skip": 176, "offset": 196, "next": [], "symbols": [{"name": "rc2_cbc_init_key", "hash": "361541a674926c5894ba3b72fc8d189015276223", "variant": 1823056265, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 16814125}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 10518573}, "child": {"skip": 148, "offset": 168, "next": [], "symbols": [{"name": "sceInetAddress2Name", "hash": "927416dc5f222a5d8ab2daedb63ddd814b6e24ce", "variant": 3305989847, "library": "libnet"}]}}], "symbols": []}}, {"match": {"value": 18911277}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 10518573}, "child": {"skip": 60, "offset": 80, "next": [{"match": {"value": 604307475}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 33566765}, "child": {"skip": 80, "offset": 168, "next": [], "symbols": [{"name": "sceInetControl", "hash": "5376b12db4df8603c18ef7d66430694d10afb327", "variant": 2429416699, "library": "libnet"}]}}], "symbols": []}}, {"match": {"value": 604307465}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 33566765}, "child": {"skip": 80, "offset": 168, "next": [], "symbols": [{"name": "sceInetInterfaceControl", "hash": "5fffb1a99f7bc9d6fc77705494bfbc684379a1e1", "variant": 2429416699, "library": "libnet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 3887398984}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8425517}, "child": {"skip": 688, "offset": 704, "next": [], "symbols": [{"name": "__kernel_tanf", "hash": "6d53622e45c7365fe618d3e5585df5475f57abac", "variant": 441706383, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 1007845375}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707520}, "child": {"skip": 388, "offset": 404, "next": [], "symbols": [{"name": "_GetEntryByPos", "hash": "d2e2a7539e71ae7869d1e870dfd25a5047078842", "variant": 1939874129, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 4290707520}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8425517}, "child": {"skip": 336, "offset": 352, "next": [], "symbols": [{"name": "__sceEENetsbdroprecord", "hash": "4411037a665163090dd3e148e8b8708ece6c5213", "variant": 1279772622, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 8425517}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289921072}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290707520}, "child": {"skip": 12, "offset": 40, "next": [{"match": {"value": 2386821492}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 638582784, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 192, "offset": 240, "next": [], "symbols": [{"name": "sppp_chap_TO", "hash": "d5efe05eb260e950476613238756c5fa79195e9e", "variant": 3734545085, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2386821488}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 638582784, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 176, "offset": 224, "next": [], "symbols": [{"name": "sppp_pap_TO", "hash": "3107e5d062877000ea4058aa3e656f92ecd90dd7", "variant": 3335611359, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 642973960}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289724416}, "child": {"skip": 104, "offset": 132, "next": [], "symbols": [{"name": "ERR_STATE_free", "hash": "2f5f989fddfc22e8dd96b425876dc9f4c721ce51", "variant": 1381296094, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724416}, "child": {"skip": 152, "offset": 172, "next": [], "symbols": [{"name": "X509_NAME_dup_stack", "hash": "b5d390d378c54dc22f325321006e8dfcfe51d0fe", "variant": 1499688612, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289921072}, "child": {"skip": 0, "offset": 12, "next")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: [{"match": {"value": 8425517}, "child": {"skip": 104, "offset": 120, "next": [], "symbols": [{"name": "__sceEENetget_ifindex", "hash": "4f11e02ed07a81cf659a8ebdf2f01a26ba7cfc48", "variant": 2140204917, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006768128}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289790000}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 876797952}, "child": {"skip": 132, "offset": 148, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "memclr"}}, "child": {"skip": 0, "offset": 152, "next": [{"match": {"value": 2892103680}, "child": {"skip": 64, "offset": 220, "next": [], "symbols": [{"name": "sceDmaReset", "hash": "a769ac74d20e8d8fbe9cf1699177d61a6a95dd9a", "variant": 3236268829, "library": "libdma"}]}}], "symbols": []}}, {"match": {"value": 2892103680}, "child": {"skip": 0, "offset": 152, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "memclr"}}, "child": {"skip": 68, "offset": 224, "next": [], "symbols": [{"name": "sceDmaReset", "hash": "05a0d7d6a1150dfb5daac6b441154d5628a4ed93", "variant": 1712096286, "library": "libdma"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 876748816}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707520}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1006993408}, "child": {"skip": 140, "offset": 164, "next": [], "symbols": [{"name": "_waitIpuIdle", "hash": "0d812c730393d1c744fb0f84d36f6d423cf32070", "variant": 1041760270, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1006862336}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290707520}, "child": {"skip": 348, "offset": 376, "next": [], "symbols": [{"name": "_ipuVdec", "hash": "7e19416311e75524ef3c9c5359acbfb5b4041ded", "variant": 158485309, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 1007058944}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290707520}, "child": {"skip": 36, "offset": 64, "next": [{"match": {"value": 341966868}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 1007878144, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 264, "offset": 336, "next": [], "symbols": [{"name": "_nextBit", "hash": "7eda821fbaff852e2a11864fd048c4c915b4bb14", "variant": 2853905313, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 341966875}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 1007878144, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 292, "offset": 364, "next": [], "symbols": [{"name": "_nextBit", "hash": "320c447dfd039b4c89da19f18846c4af9b172170", "variant": 3800673981, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707520}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 876748816}, "child": {"skip": 148, "offset": 164, "next": [], "symbols": [{"name": "_waitIpuIdle", "hash": "1500fa4db0fb86b12ca56ddd9338acff90936986", "variant": 1307445393, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 4289921072}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 876748816}, "child": {"skip": 220, "offset": 236, "next": [], "symbols": [{"name": "_flushBuf", "hash": "6caa19761d429a4990ce453339c0797f7b3fea44", "variant": 2423515661, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289921072}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1007878144, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2388787200, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8425517}, "child": {"skip": 308, "offset": 332, "next": [], "symbols": [{"name": "scePadInit", "hash": "428f888bbcbe339a64301b04f760e0f43c5db5aa", "variant": 871999617, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8425517}, "child": {"skip": 240, "offset": 264, "next": [], "symbols": [{"name": "eenet_add_driver_list", "hash": "de7c8a55ae76451faf8ad28ff51755f66e171456", "variant": 3351860206, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707520}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2388787200, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 292, "offset": 312, "next": [], "symbols": [{"name": "sceSdRemoteCallbackQuit", "hash": "c72ad2f22888f4e39ab8fdfdc1eda08db7e71eed", "variant": 126279687, "library": "libsdr"}]}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2388852736, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 156, "offset": 176, "next": [], "symbols": [{"name": "OBJ_NAME_cleanup", "hash": "a53cff4b312aadd5c88b1a6aa049cb2f0f1e0914", "variant": 2397702679, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1007878144, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8423469}, "child": {"skip": 256, "offset": 276, "next": [], "symbols": [{"name": "sceEENetFreeThreadinfo", "hash": "ceb59116e736125920dcf3d5aada0ce718f6da23", "variant": 381165754, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 10524717}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724416}, "child": {"skip": 84, "offset": 104, "next": [{"match": {"value": 6299693}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 0}, "child": {"skip": 104, "offset": 216, "next": [], "symbols": [{"name": "sceDmaSend", "hash": "c94241418a258bfd3e56d1ce821e8ad4a44f2d97", "variant": 985629605, "library": "libdma"}]}}], "symbols": []}}, {"match": {"value": 0}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 0}, "child": {"skip": 104, "offset": 216, "next": [], "symbols": [{"name": "sceDmaSend", "hash": "97ff2dd054856ca83884950af327356868bae1ee", "variant": 985629605, "library": "libdma"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8427565}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1007747072, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289855520}, "child": {"skip": 428, "offset": 452, "next": [], "symbols": [{"name": "sceHiDMAMake_LoadPtr", "hash": "128cbc259d69c81e20a8ec810bc51000f3662fa2", "variant": 1478108566, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 12617773}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 10518573}, "child": {"skip": 40, "offset": 68, "next": [{"match": {"value": 750915776}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 272629766}, "child": {"skip": 16, "offset": 92, "next": [{"match": {"value": 268435555}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 4141}, "child": {"skip": 420, "offset": 520, "next": [], "symbols": [{"name": "sceMpegCreate", "hash": "be9a4ad80ebbf5bdb8889b2a92338dccb960abc9", "variant": 1317507046, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 268435556}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 4141}, "child": {"skip": 0, "offset": 100, "next": [{"match": {"value": 642842888}, "child": {"skip": 0, "offset": 104, "next": [{"match": {"value": 2926706752}, "child": {"skip": 41)PS2SDB", 8192}, + std::string_view{R"PS2SDB(6, "offset": 524, "next": [], "symbols": [{"name": "sceMpegCreate", "hash": "9139081ade708d32493a2956fa31bcd3490962b0", "variant": 1317507046, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 642842912}, "child": {"skip": 0, "offset": 104, "next": [{"match": {"value": 2926706752}, "child": {"skip": 416, "offset": 524, "next": [], "symbols": [{"name": "sceMpegCreate", "hash": "5ba75e5c56987fb65ea878af3e10e2f0a0e46280", "variant": 1317507046, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 683809184}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 272629766}, "child": {"skip": 492, "offset": 568, "next": [], "symbols": [{"name": "sceMpegCreate", "hash": "4496b2e12c5c240f650ea86c20d4bda1c8221113", "variant": 986707103, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 750915712}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 272629766}, "child": {"skip": 444, "offset": 520, "next": [], "symbols": [{"name": "sceMpegCreate", "hash": "7a1034914321fc091a89e1781a0df176f50f4347", "variant": 1317507046, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10520621}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290707520}, "child": {"skip": 192, "offset": 220, "next": [], "symbols": [{"name": "ssl3_get_req_cert_type", "hash": "f16c7db878e2ecc5fc18f5fcf21b43ac46c29c1b", "variant": 2888458497, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707520}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 10520621}, "child": {"skip": 360, "offset": 384, "next": [], "symbols": [{"name": "isWildFit", "hash": "10a42595a7b9c93d899fae87e8bd66a62a509225", "variant": 1366346602, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707520}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8423469}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289855520}, "child": {"skip": 408, "offset": 432, "next": [], "symbols": [{"name": "parse_sub", "hash": "c6ec2ab95ec1029013c3a94738a187c107e9ce92", "variant": 3556502647, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__sceEENetspllock"}}, "child": {"skip": 188, "offset": 212, "next": [], "symbols": [{"name": "__sceEENetMReclaim", "hash": "81818656b9cddf9e9225ddd5996e262a93c493a8", "variant": 2447893135, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 10520621}, "child": {"skip": 212, "offset": 232, "next": [], "symbols": [{"name": "smap_rpc_server_func", "hash": "bab9caab38a8c24b10233cea3dbd115c27c65cc6", "variant": 533210261, "library": "ent_smap"}]}}], "symbols": []}}, {"match": {"value": 38957}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707520}, "child": {"skip": 276, "offset": 296, "next": [], "symbols": [{"name": "RSA_new_meth", "hash": "7fab8dabff767fdf980f661440c1343615ab220f", "variant": 2490079687, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1007878144, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1007812608, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289724416}, "child": {"skip": 96, "offset": 124, "next": [], "symbols": [{"name": "topThread", "hash": "17f10ce1d47143473f051abbc04a03a99680d571", "variant": 507218510, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 12619821}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289724416}, "child": {"skip": 232, "offset": 260, "next": [], "symbols": [{"name": "sceMc2Sync2", "hash": "8f310da5942fffe1dd230dc6b95cd56a9efa98fa", "variant": 2494850568, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8427565}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 10522669}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 12617773}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4290707520}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "DIntr"}}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 14712877}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 3661889536}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 3661955088}, "child": {"skip": 112, "offset": 164, "next": [], "symbols": [{"name": "sceVu0RotTransPers", "hash": "d352b407657143436cdcb36f446529ac2137af59", "variant": 2056294964, "library": "libvu0"}]}}], "symbols": []}}, {"match": {"value": 3661692928}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 3659661312}, "child": {"skip": 136, "offset": 188, "next": [], "symbols": [{"name": "set_rot_quat", "hash": "7cbe99ae4588b2865b8226bb665d5d28eb33607c", "variant": 1856354234, "library": "libhip"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604241984}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceHiMemAlign"}}, "child": {"skip": 120, "offset": 164, "next": [], "symbols": [{"name": "sceHiMakeDataBlk", "hash": "68745f47d440c89d186c34cd82968a27b228c903", "variant": 2455560252, "library": "libhig"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 14714925}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4290707520}, "child": {"skip": 156, "offset": 192, "next": [], "symbols": [{"name": "Vu0Weight_Rigid", "hash": "481dbee849e24d94ff4ee58d218498bc5bd4c7e1", "variant": 1289055841, "library": "libhip"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 12619821}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 10520621}, "child": {"skip": 312, "offset": 340, "next": [{"match": {"value": 629997567}, "child": {"skip": 0, "offset": 344, "next": [{"match": {"value": 2363621376}, "child": {"skip": 52, "offset": 400, "next": [], "symbols": [{"name": "__mdiff", "hash": "95381c69bf8e32b52a6f2e4f4e6a82b2bd3627a4", "variant": 2326187386, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 2363621376}, "child": {"skip": 0, "offset": 344, "next": [{"match": {"value": 0}, "child": {"skip": 52, "offset": 400, "next": [], "symbols": [{"name": "__mdiff", "hash": "97da1896a1004fe6fb41bb4aeca78db19ac4e00a", "variant": 2326187386, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 14716973}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289724416}, "child": {"skip": 156, "offset": 184, "next": [], "symbols": [{"name": "sceHiGsFrameRegs", "hash": "6649b6a82ea49902871b522bd458ae8e1c1b6428", "variant": 4197736383, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 4290707520}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 10520621}, "child": {"skip": 136, "offset": 164, "next": [], "symbols": [{"name": "append_phone", "hash": "945a43e018c3a75cf19d0a72702890cbeb823905", "variant": 2365532125, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 36909}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290707520}, "child": {"skip": 268, "offset": 296, "next": [], "symbols": [{"name": "X509_get_pubkey_parameters", "hash": "e3bf25c8a8510394c5502383aff4d50f67c64308", "variant": 1678648149, "library": "libhttps"}]})PS2SDB", 8192}, + std::string_view{R"PS2SDB(}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707520}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 10522669}, "child": {"skip": 36, "offset": 60, "next": [{"match": {"value": 304087048}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 639762452}, "child": {"skip": 76, "offset": 144, "next": [], "symbols": [{"name": "sceEENetMGet", "hash": "5be2463acaef83ff8d2f9ad08c1483670d828e2e", "variant": 926712485, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 304087050}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 639762464}, "child": {"skip": 84, "offset": 152, "next": [], "symbols": [{"name": "sceEENetMGethdr", "hash": "6f8edef30f6fd626ad56ec56909e4d46faa81d49", "variant": 3548215164, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 371195912}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 39854125}, "child": {"skip": 100, "offset": 168, "next": [], "symbols": [{"name": "sceEENetMGetclr", "hash": "9ff0d8e8628440440bad4ef6583517af35a7148c", "variant": 2963613909, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 36909}, "child": {"skip": 100, "offset": 124, "next": [], "symbols": [{"name": "__sce_eenetctl_check_def_reginfo", "hash": "9a13027e64b11b1a43fece5717f54391a4e50fcc", "variant": 37981696, "library": "eenetctl"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 12621869}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 10522669}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290707520}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 814874623}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4289724416}, "child": {"skip": 100, "offset": 136, "next": [], "symbols": [{"name": "SetAlarm", "hash": "3c9d08ab4869c108819cfaba66ec00d031c6b765", "variant": 4220958758, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 8423469}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 845283344}, "child": {"skip": 188, "offset": 224, "next": [], "symbols": [{"name": "R_EITEMS_add_item", "hash": "eb5fce11748561fec782050605b58435b00500f7", "variant": 697611997, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4290707520}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceNetcnfifInit"}}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 8423469}, "child": {"skip": 36, "offset": 76, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 80, "next": [{"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 12, "offset": 96, "next": [{"match": {"value": 604372995}, "child": {"skip": 0, "offset": 100, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sce_call_rpc"}}, "child": {"skip": 32, "offset": 136, "next": [], "symbols": [{"name": "sceNetcnfifAddEntry", "hash": "599d53f50ce0894f3890d6547283c1f3c1d0fb82", "variant": 1996830072, "library": "netcnfif"}]}}], "symbols": []}}, {"match": {"value": 604373002}, "child": {"skip": 0, "offset": 100, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sce_call_rpc"}}, "child": {"skip": 32, "offset": 136, "next": [], "symbols": [{"name": "sceNetcnfifCheckSpecialProvider", "hash": "3f94936ccb6f8b99405fb3150b15390153a96ed2", "variant": 1996830072, "library": "netcnfif"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 80, "next": [{"match": {"value": 33564717}, "child": {"skip": 8, "offset": 92, "next": [{"match": {"value": 604372997}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 3753836608}, "child": {"skip": 24, "offset": 124, "next": [], "symbols": [{"name": "sceNetcnfifDeleteEntry", "hash": "d8ae413292fc7ab2416c8fd9c9115ca2d42b99b1", "variant": 2345131695, "library": "netcnfif"}]}}], "symbols": []}}, {"match": {"value": 604372998}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 3753836608}, "child": {"skip": 24, "offset": 124, "next": [], "symbols": [{"name": "sceNetcnfifSetLatestEntry", "hash": "06c3177010087787eb31b2daf5a6adf0167dad1c", "variant": 2345131695, "library": "netcnfif"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__sceEENetthread_enter"}}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 8423469}, "child": {"skip": 4, "offset": 44, "next": [{"match": {"value": 369098755}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 35659821}, "child": {"skip": 60, "offset": 112, "next": [], "symbols": [{"name": "sceEENetBpfIoctl", "hash": "e29106c69bbee974ad912764f713b874615e8fd2", "variant": 1989488883, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 301989910}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 604176383}, "child": {"skip": 112, "offset": 164, "next": [], "symbols": [{"name": "sceEENetInetPton", "hash": "6e470d06a4a6f96e009b9f1cf26ba4fbbadf9e2f", "variant": 3412743811, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2357329932}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 609288191}, "child": {"skip": 92, "offset": 132, "next": [], "symbols": [{"name": "sceHiGetPlug", "hash": "ab918cad88ac7fc4885142510cf25d60cc47aba7", "variant": 2965692902, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 8421421}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 637861893}, "child": {"skip": 268, "offset": 308, "next": [], "symbols": [{"name": "setupStartVoicePanpot", "hash": "cbf48ab9561ecab72f64cd2b2239d55d0b849f3b", "variant": 1127517255, "library": "libssyn"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 644939780}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 8421421}, "child": {"skip": 144, "offset": 180, "next": [], "symbols": [{"name": "rt_xaddrs", "hash": "daf3aece5cdea37053ffcca609bf60289f40f50a", "variant": 2977583593, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8425517}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290707520}, "child": {"skip": 4, "offset": 32, "next": [{"match": {"value": 2453864449}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 274726918}, "child": {"skip": 216, "offset": 256, "next": [], "symbols": [{"name": "__sceEENetether_multiaddr", "hash": "aba4609627c75463154df366b9f44badcf05cd1c", "variant": 4240029858, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2386821120}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 343932950}, "child": {"skip": 196, "offset": 236, "next": [], "symbols": [{"name": "CRYPTO_set_ex_data", "hash": "54af10ef7632cf5964e996e50879d1f9b989b94d", "variant": 780871230, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 36909}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289724416}, "child": {"skip": 8, "offset": 36, "next": [{"match": {"value": 301989907}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 4290707520}, "child": {"skip": 104, "offset": 148, "next": [], "symbols": [{"name": "scefd_read", "hash": "52c6017555ae12f9c3743404d1c43f5eba6ae1fb", "variant": 4199174728, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 301989909}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 4290707520}, "child": {"skip": 112, "offset":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( 156, "next": [], "symbols": [{"name": "sock_read", "hash": "c461115b3845fbc82cb91a1ffe4b1a8d326b36d4", "variant": 1869548662, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707520}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289724416}, "child": {"skip": 152, "offset": 180, "next": [], "symbols": [{"name": "ssl3_peek", "hash": "2040285bd8c049a01383ba6d64aaa7efefa78d10", "variant": 2774219571, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 10522669}, "child": {"skip": 4, "offset": 28, "next": [{"match": {"value": 8421421}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 100728840}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 4289789968}, "child": {"skip": 144, "offset": 184, "next": [], "symbols": [{"name": "sceSifAddRebootNotifyHandler", "hash": "ddd9b94c6df95381cbcd31453a9761c431f950ff", "variant": 94846052, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 301989895}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 4289789968}, "child": {"skip": 12, "offset": 52, "next": [{"match": {"value": 2353135628}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 1413480453}, "child": {"skip": 224, "offset": 284, "next": [], "symbols": [{"name": "BIO_read", "hash": "b2bca4c84ef244832f29f8cfd1018c9ec114ded7", "variant": 1272076653, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2353135636}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 1413480453}, "child": {"skip": 200, "offset": 260, "next": [], "symbols": [{"name": "BIO_gets", "hash": "d01009d6a535c84ef95c567717d1997a1a1d4a23", "variant": 1272076653, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 301989965}, "child": {"skip": 336, "offset": 376, "next": [], "symbols": [{"name": "BIO_write", "hash": "efe1d4fc4bc2bd485aa56e5a28f91287259aa5e2", "variant": 337598888, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2453798912}, "child": {"skip": 144, "offset": 180, "next": [], "symbols": [{"name": "append_chat", "hash": "788b6d26401990762c7f9cb0e374859c645b61df", "variant": 3495867613, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 14719021}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 12619821}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289724416}, "child": {"skip": 8, "offset": 36, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "TerminateLibrary"}}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 8421421}, "child": {"skip": 48, "offset": 92, "next": [], "symbols": [{"name": "ExecPS2", "hash": "5ba9cd6405085309e9ec5f20c3a15c40cf18e66f", "variant": 4270324942, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "get_common_global"}}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 8421421}, "child": {"skip": 88, "offset": 132, "next": [], "symbols": [{"name": "DSA_sign_setup", "hash": "4131b42cb53924342e706264e5e81c5335afea81", "variant": 2244051051, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "OP_rsa_pkcs1_public_key_encode"}}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 8421421}, "child": {"skip": 56, "offset": 100, "next": [], "symbols": [{"name": "PK_encode_rsa_public_key", "hash": "152539cc7a4d279162ebf33a9f2977c906a69a55", "variant": 3874516931, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "OP_rsa_pkcs1_public_key_decode"}}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 8421421}, "child": {"skip": 56, "offset": 100, "next": [], "symbols": [{"name": "PK_decode_rsa_public_key", "hash": "152539cc7a4d279162ebf33a9f2977c906a69a55", "variant": 4157904273, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "OP_rsa_pkcs1_private_key_decode"}}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 8421421}, "child": {"skip": 56, "offset": 100, "next": [], "symbols": [{"name": "PK_decode_rsa_private_key", "hash": "152539cc7a4d279162ebf33a9f2977c906a69a55", "variant": 3953482290, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10522669}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289724416}, "child": {"skip": 4, "offset": 32, "next": [{"match": {"value": 4290707520}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 12615725}, "child": {"skip": 76, "offset": 116, "next": [], "symbols": [{"name": "OP_CTX_encode", "hash": "61de0e91fbce3eadb02f0ace3e6704c1eaaa5c0e", "variant": 794464481, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 12615725}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 369098755}, "child": {"skip": 100, "offset": 140, "next": [], "symbols": [{"name": "sceLibnetWaitGetInterfaceID", "hash": "3067371889dd5dd500598c3f35d8959a39e707ef", "variant": 3125782844, "library": "libnet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10524717}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1007812608, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289724416}, "child": {"skip": 96, "offset": 124, "next": [], "symbols": [{"name": "_setlocale_r", "hash": "4ae380e58c98011b1e9ef240c11f377612f84f80", "variant": 4288508937, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 14716973}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289724416}, "child": {"skip": 180, "offset": 208, "next": [], "symbols": [{"name": "sceAtokDicRegWord", "hash": "255aca06b0939d3b1f50beda5437b4541158c04c", "variant": 2901771445, "library": "libatok"}]}}], "symbols": []}}, {"match": {"value": 12619821}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290707520}, "child": {"skip": 208, "offset": 236, "next": [], "symbols": [{"name": "__sceEENetMD5Update", "hash": "e74a9b665665bf4948b93ee1ba53d7135bf09426", "variant": 3813628538, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4290707520}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 8423469}, "child": {"skip": 148, "offset": 176, "next": [], "symbols": [{"name": "__sceEENeticmp_send", "hash": "fd0c681652f430497af7f59cf0f803737791fa98", "variant": 1138634162, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 8425517}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290707520}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 12617773}, "child": {"skip": 200, "offset": 232, "next": [], "symbols": [{"name": "mem_gets", "hash": "3c632993f61a70be38f1111b1312b36e3d8c08bb", "variant": 2424450389, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 12617773}, "child": {"skip": 164, "offset": 196, "next": [], "symbols": [{"name": "X509_NAME_ENTRY_set_data", "hash": "a73024c1556cb22e4d615adbb42402579d7049e5", "variant": 4082821224, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290707520}, "child": {"skip": 156, "offset": 184, "next": [], "symbols": [{"name": "timeout", "hash": )PS2SDB", 8192}, + std::string_view{R"PS2SDB("9e9874c6bb30c5911c7743de2bbf8e6fd0e1a2b4", "variant": 1843179918, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707520}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289789968}, "child": {"skip": 256, "offset": 280, "next": [], "symbols": [{"name": "__sceEENetrn_walktree", "hash": "d5d5febee206b2717affb2a245285304f39dd75c", "variant": 0, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8425517}, "child": {"skip": 4, "offset": 28, "next": [{"match": {"value": 12615725}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 369098758}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 4289789968}, "child": {"skip": 280, "offset": 320, "next": [], "symbols": [{"name": "BN_bin2bn", "hash": "6434210ee77dc59e651227c6f029ab42edc52ed2", "variant": 3469055442, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "BIO_clear_retry_flags"}}, "child": {"skip": 180, "offset": 220, "next": [], "symbols": [{"name": "mem_read", "hash": "5595633872959430f0d063cf6082ad3905f9d1ac", "variant": 2819998287, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 373293059}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 4289789968}, "child": {"skip": 128, "offset": 168, "next": [], "symbols": [{"name": "X509v3_get_ext_by_OBJ", "hash": "52833fbc3b9949fb8480714aab8291a44e0e93d5", "variant": 3176267513, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2386690048}, "child": {"skip": 108, "offset": 144, "next": [], "symbols": [{"name": "X509_find_by_subject", "hash": "34819bc90821df65c297db01735066af46a2886b", "variant": 2284554675, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 605225394}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789968}, "child": {"skip": 168, "offset": 188, "next": [], "symbols": [{"name": "_extensionAndUserData", "hash": "44083fa273680bb72492537852e10121a1e48131", "variant": 483392576, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 605224961}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789968}, "child": {"skip": 20, "offset": 40, "next": [{"match": {"value": 2382758104}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 818020415}, "child": {"skip": 320, "offset": 368, "next": [], "symbols": [{"name": "_getpic", "hash": "2ec5a07827d6e2b546f46838d96b94535f3de8d2", "variant": 3244798401, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2382692568}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 815923263}, "child": {"skip": 296, "offset": 344, "next": [], "symbols": [{"name": "_getpic", "hash": "9089c00882cadcf9dcf14a72042d06bf3dbc32c9", "variant": 1512618179, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 38957}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 605159425}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290707520}, "child": {"skip": 12, "offset": 40, "next": [{"match": {"value": 2382758128}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 818020415}, "child": {"skip": 388, "offset": 436, "next": [], "symbols": [{"name": "_getpic", "hash": "cd832cd80e9485acc22bbc77d53ea2d186594251", "variant": 865048883, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2382758124}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 818020415}, "child": {"skip": 388, "offset": 436, "next": [], "symbols": [{"name": "_getpic", "hash": "030ef474b6ffce61037cb52106286e56efe6d783", "variant": 2907489005, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8425517}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289724416}, "child": {"skip": 488, "offset": 516, "next": [], "symbols": [{"name": "__sceEENetsbcompress", "hash": "14317fac7bb01ca12ebdf06cd7214abe6ae564c1", "variant": 209585077, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 10522669}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289724416}, "child": {"skip": 112, "offset": 140, "next": [], "symbols": [{"name": "ssl_ctx_remove_session_nolock", "hash": "d0316c4141a4e57d9b611ac4464ec79d02caba03", "variant": 650319950, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4290707520}, "child": {"skip": 312, "offset": 336, "next": [], "symbols": [{"name": "sceIpuRestartDMA", "hash": "cfdc9b4a0181444dc7637b1ff308fa296d71fb88", "variant": 1020631272, "library": "libipu"}]}}], "symbols": []}}, {"match": {"value": 10522669}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4290707520}, "child": {"skip": 384, "offset": 408, "next": [], "symbols": [{"name": "__sceEENetsonewconn1", "hash": "24977fd73b6d7670506b722ee9243098f422b187", "variant": 2306941517, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 36909}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289724416}, "child": {"skip": 212, "offset": 236, "next": [], "symbols": [{"name": "ssl3_alloc_read_buf", "hash": "9458282f0a287246db81009d4ecc4dacab19761d", "variant": 4264010945, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 821231871}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789968}, "child": {"skip": 140, "offset": 160, "next": [], "symbols": [{"name": "sceHiGsClearColor", "hash": "ef257b19ae24d608afb8555b73da72518f32ed1e", "variant": 874482388, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 615776248}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707520}, "child": {"skip": 88, "offset": 108, "next": [], "symbols": [{"name": "phaseChange2HoldAll", "hash": "c08ddef048e89275cb386f3a8226b9d8135e6b24", "variant": 4162295355, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 605290495}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789968}, "child": {"skip": 120, "offset": 140, "next": [], "symbols": [{"name": "_scePFontDefaultFilter", "hash": "2f05b50cb22384657456a6b74ef31f283973cd49", "variant": 0, "library": "libpfont"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707520}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10524717}, "child": {"skip": 152, "offset": 168, "next": [], "symbols": [{"name": "sceSifExecNotifyHandler", "hash": "24d1c9e3098f34e33ce966c82fcc974f83998f1e", "variant": 1066424665, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 8427565}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289855520}, "child": {"skip": 128, "offset": 144, "next": [], "symbols": [{"name": "__cp_push_exception", "hash": "489c329ed3aeffa05e47902aac0f7573686b7db5", "variant": 2517899693, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8427565}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855520}, "child": {"skip": 148, "offset": 168, "next": [], "symbols": [{"name": "sceGpCallChain", "hash": "cb3087831e0c9f3dc5c71a66117649130e64494a", "variant": 3012673293, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 4290707520}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855520}, "child": {"skip": 156, "offset": 176, "next": [], "symbols": [{"name": "__sceEENetif_slowtimo", "hash": "b8bf22d702f630dcee5acf592f9724d39eb09b9c", )PS2SDB", 8192}, + std::string_view{R"PS2SDB("variant": 1379020527, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 10524717}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707520}, "child": {"skip": 132, "offset": 152, "next": [], "symbols": [{"name": "X509_NAME_get_index_by_OBJ", "hash": "ae2d6289dfbed4663346ab3c2f149ba3a8885314", "variant": 3123188694, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 605225032}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289724416}, "child": {"skip": 136, "offset": 152, "next": [], "symbols": [{"name": "sceInetGetRoutingTable", "hash": "bb7cc37ec0796ac64b62d138605d5a843792445c", "variant": 2407620660, "library": "libnet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604110849}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289789968}, "child": {"skip": 120, "offset": 136, "next": [{"match": {"value": 6299693}, "child": {"skip": 0, "offset": 140, "next": [{"match": {"value": 0}, "child": {"skip": 64, "offset": 208, "next": [], "symbols": [{"name": "sceDmaWatch", "hash": "38c683836dce5e07afd9f5add452ad763d2d91f7", "variant": 1610443465, "library": "libdma"}]}}], "symbols": []}}, {"match": {"value": 0}, "child": {"skip": 0, "offset": 140, "next": [{"match": {"value": 0}, "child": {"skip": 64, "offset": 208, "next": [], "symbols": [{"name": "sceDmaWatch", "hash": "ffa830587378cbc9a8eaa0fa5311a529c63d47d9", "variant": 1610443465, "library": "libdma"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707520}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 60825645}, "child": {"skip": 56, "offset": 72, "next": [], "symbols": [{"name": "supplement_crt0", "hash": "45f42b3e740578bffbc781f96e92959cc5b8918e", "variant": 2887183176, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 4289790000}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 814874623}, "child": {"skip": 88, "offset": 104, "next": [], "symbols": [{"name": "sceCdDelayThread", "hash": "dff9762df2a970acdcdaef79b130389360ee6713", "variant": 2052427313, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289921072}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 816906274}, "child": {"skip": 324, "offset": 344, "next": [], "symbols": [{"name": "sceUsbKbCnvRawCode", "hash": "e5adb1bdb8d9ab4fffb34bce58dd88158773db88", "variant": 1213669857, "library": "libusbkb"}]}}], "symbols": []}}, {"match": {"value": 4290707520}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 10520621}, "child": {"skip": 344, "offset": 364, "next": [], "symbols": [{"name": "eenetctl_rpc_server_func", "hash": "d9580a9feaa54acda3dc66d77ecb368293702bb0", "variant": 1556510657, "library": "eenetctl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1007747072, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289921072}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2183266304, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 56, "offset": 76, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "printf"}}, "child": {"skip": 0, "offset": 80, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 72, "offset": 156, "next": [], "symbols": [{"name": "GetRomName", "hash": "cfdb76c20d0c55c7e375c5abca8bc94be0e41ced", "variant": 2230726143, "library": "libscf"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "scePrintf"}}, "child": {"skip": 0, "offset": 80, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 72, "offset": 156, "next": [], "symbols": [{"name": "GetRomName", "hash": "cfdb76c20d0c55c7e375c5abca8bc94be0e41ced", "variant": 4208989514, "library": "libscf"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289921072}, "child": {"skip": 48, "offset": 68, "next": [{"match": {"value": 2218983424}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 604110849}, "child": {"skip": 188, "offset": 264, "next": [], "symbols": [{"name": "sceHiGsDisplaySwap", "hash": "1f10531651d9e43cf4f7302d963703516ab2d36a", "variant": 1303392570, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 3695378432}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 604241921}, "child": {"skip": 212, "offset": 288, "next": [], "symbols": [{"name": "sceHiGsDisplaySwap", "hash": "f3d0453afdaa9616bdc4c4e3a54b5c0ad00be918", "variant": 639174905, "library": "libhig"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8423469}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289921072}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855520}, "child": {"skip": 16, "offset": 36, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceGifPkTerminate"}}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 14712877}, "child": {"skip": 4, "offset": 48, "next": [{"match": {"value": 1006899200}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 33849381}, "child": {"skip": 60, "offset": 116, "next": [], "symbols": [{"name": "sceGifPkCnt", "hash": "5ca47012ce67c32c6ed5cba78fdd2429f188382e", "variant": 4240886678, "library": "libpkt"}]}}], "symbols": []}}, {"match": {"value": 1006923776}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 33849381}, "child": {"skip": 60, "offset": 116, "next": [], "symbols": [{"name": "sceGifPkEnd", "hash": "8d4d1c0391e7a09b886feabfb4176cf35f86536c", "variant": 4240886678, "library": "libpkt"}]}}], "symbols": []}}, {"match": {"value": 1006919680}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 33849381}, "child": {"skip": 60, "offset": 116, "next": [], "symbols": [{"name": "sceGifPkRet", "hash": "81aaaec97a5da9641c20c6199a823fdf587ef08d", "variant": 4240886678, "library": "libpkt"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceDmaPkTerminate"}}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 14712877}, "child": {"skip": 4, "offset": 48, "next": [{"match": {"value": 1006899200}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 33849381}, "child": {"skip": 60, "offset": 116, "next": [], "symbols": [{"name": "sceDmaPkCnt", "hash": "5ca47012ce67c32c6ed5cba78fdd2429f188382e", "variant": 881225044, "library": "libpkt"}]}}], "symbols": []}}, {"match": {"value": 1006923776}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 33849381}, "child": {"skip": 60, "offset": 116, "next": [], "symbols": [{"name": "sceDmaPkEnd", "hash": "8d4d1c0391e7a09b886feabfb4176cf35f86536c", "variant": 881225044, "library": "libpkt"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724416}, "child": {"skip": 184, "offset": 204, "next": [], "symbols": [{"name": "SetTimerCount", "hash": "79e277250f310d41de8ae0735e4d78f7e2ce5396", "variant": 2522351117, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 4290707520}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289921072}, "child": {"skip": 64, "offset": 84, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "SSL_state"}}, "child": {"skip": 0, "offset": 88, "next": [{"match": {"value": 35659821}, "child": {"skip": 560, "offset": 652, "next": [], "symbols)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": [{"name": "ssl23_connect", "hash": "411ac0031cdfa77b53933592af6be984e7bf3b47", "variant": 2432587241, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2384592924}, "child": {"skip": 0, "offset": 88, "next": [{"match": {"value": 2385510448}, "child": {"skip": 908, "offset": 1000, "next": [], "symbols": [{"name": "ssl2_connect", "hash": "a7848ad29bfc36aa10bc098884b91e14f2b52340", "variant": 928320494, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10520621}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289921072}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289855520}, "child": {"skip": 100, "offset": 124, "next": [], "symbols": [{"name": "sceSifSetRebootNotifyBuffer", "hash": "6ba88c72912403a3b509b9d1749e8c27e2350bf4", "variant": 1580189001, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 4290707520}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8421421}, "child": {"skip": 4, "offset": 28, "next": [{"match": {"value": 301989897}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4289855520}, "child": {"skip": 252, "offset": 288, "next": [], "symbols": [{"name": "_strtok", "hash": "71fbec7ca84db7a45940cc91b4827eb7f8338a53", "variant": 2936544482, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2383544388}, "child": {"skip": 188, "offset": 224, "next": [], "symbols": [{"name": "__sceEENettcp_newreno", "hash": "9da05a8ae70634a7b4eed012bea490d6749c150d", "variant": 4252455039, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 14714925}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 10518573}, "child": {"skip": 120, "offset": 140, "next": [], "symbols": [{"name": "sceInetGetLog", "hash": "68f4639d9ad8036d50357c0cd52a87e656a23e6b", "variant": 356243919, "library": "libnet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289921072}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 12617773}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855520}, "child": {"skip": 236, "offset": 256, "next": [], "symbols": [{"name": "_pow5mult", "hash": "3687b327bf8363b988c802747c9d9bcd6c41f555", "variant": 3105907478, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 8423469}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4290707520}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 36909}, "child": {"skip": 404, "offset": 432, "next": [], "symbols": [{"name": "__sceEENetsoclose", "hash": "da4d3bf03043e6ce2ef643bf66d961101e90b11f", "variant": 524828979, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 14719021}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289724416}, "child": {"skip": 128, "offset": 156, "next": [], "symbols": [{"name": "X509_EXTENSION_create_by_NID", "hash": "c770e4f153554e500c9f1b7159cc260e32e009ad", "variant": 2088740858, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707520}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289855520}, "child": {"skip": 512, "offset": 536, "next": [], "symbols": [{"name": "SSL_new", "hash": "3316f20e1406e68d0995cc411e4b44db6d82c82e", "variant": 2932410931, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10520621}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8427565}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290707520}, "child": {"skip": 112, "offset": 140, "next": [], "symbols": [{"name": "__sceEENetarp_ifinit", "hash": "dc6c634e1330e1e80e798682bdafae9e9ba9d17a", "variant": 3494563906, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 12621869}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289724416}, "child": {"skip": 28, "offset": 56, "next": [{"match": {"value": 301989906}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 4141}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "X509_get_notBefore"}}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 37756973}, "child": {"skip": 88, "offset": 160, "next": [], "symbols": [{"name": "X509_get_notBefore_buf", "hash": "c7325953c5ff0ddd111bb42b127da687cba8f9a4", "variant": 2919876565, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "X509_get_notAfter"}}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 37756973}, "child": {"skip": 88, "offset": 160, "next": [], "symbols": [{"name": "X509_get_notAfter_buf", "hash": "c7325953c5ff0ddd111bb42b127da687cba8f9a4", "variant": 3172961369, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1375731725}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 4141}, "child": {"skip": 76, "offset": 140, "next": [], "symbols": [{"name": "X509_get_serialNumber_buf", "hash": "f8811d901ea59ae9f583871778fa7531c968d880", "variant": 2807984907, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707520}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8423469}, "child": {"skip": 12, "offset": 28, "next": [{"match": {"value": 2385510408}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2449735687}, "child": {"skip": 304, "offset": 340, "next": [], "symbols": [{"name": "__sceEENetin_revarpinput", "hash": "1fa4b2c0bcfc8db70295e91a5568e379f4d5799c", "variant": 1674617917, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2385510412}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 301989907}, "child": {"skip": 156, "offset": 192, "next": [], "symbols": [{"name": "__sceEENetip_freef", "hash": "f45ddffd585813b895dd6153aa03d0f2b04a856c", "variant": 634224675, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 8421421}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289921072}, "child": {"skip": 4, "offset": 20, "next": [{"match": {"value": 16816173}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289789968}, "child": {"skip": 4, "offset": 32, "next": [{"match": {"value": 4290707520}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceVu0CopyVector"}}, "child": {"skip": 64, "offset": 104, "next": [], "symbols": [{"name": "sceVu0LightColorMatrix", "hash": "47f8e9fa0b2646bba739f3776468f1d5c16d1b6e", "variant": 787496310, "library": "libvu0"}]}}], "symbols": []}}, {"match": {"value": 12617773}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 4290707520}, "child": {"skip": 96, "offset": 136, "next": [], "symbols": [{"name": "X509_NAME_ENTRY_create_by_NID", "hash": "732097c14f5f28f302b97a20c81ddc9d1ac11499", "variant": 2991664421, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707520}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "EVP_MD_type"}}, "child": {"skip": 200, "offset": 228, "next": [], "symbols": [{"name": "EVP_OBJ_add_digest", "hash": "acd3ca6e64adb5bf2c0b2cdb5f3f1480f8d32219", "variant": 1354330685, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289921072}, "child": {"skip": 0, "offset": 12, "next": [{")PS2SDB", 8192}, + std::string_view{R"PS2SDB(match": {"value": 4289855520}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789968}, "child": {"skip": 656, "offset": 676, "next": [], "symbols": [{"name": "sceHiGsDimxRegs", "hash": "ff113fadf9b518d7dc59b26152f1971cd1193eff", "variant": 958521699, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 8421421}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 38957}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290707520}, "child": {"skip": 112, "offset": 140, "next": [], "symbols": [{"name": "sceEENetSocketAbort", "hash": "61b92ad9034c642d7399c756343b03fa99326c92", "variant": 3558504658, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 10524717}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290707520}, "child": {"skip": 100, "offset": 128, "next": [], "symbols": [{"name": "sceHTTPLibDelHeaderByName", "hash": "5e4489c6b45c647378ceaf8cc6af243290bed9ba", "variant": 2405068707, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8237}, "child": {"skip": 260, "offset": 284, "next": [], "symbols": [{"name": "BER_ITEMS_recalc_length", "hash": "563e13b60ef8c4cc6ec276d71318b58b3d4b088d", "variant": 33534900, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10518573}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8427565}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289789968}, "child": {"skip": 148, "offset": 176, "next": [], "symbols": [{"name": "sceInetSend", "hash": "db7fccd9ca83d34a260ad8b8433a1e77ef32db14", "variant": 1247921189, "library": "libnet"}]}}], "symbols": []}}, {"match": {"value": 12621869}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289789968}, "child": {"skip": 188, "offset": 216, "next": [], "symbols": [{"name": "sceLibnetInitialize", "hash": "c8f8dc1a17cc385a09338c8a8867fdaf90807148", "variant": 3270663061, "library": "libnet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707520}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8421421}, "child": {"skip": 144, "offset": 160, "next": [], "symbols": [{"name": "sceAtokExit", "hash": "d31bc39500318b2cead7314cd419f84294ae1015", "variant": 434563148, "library": "libatok"}]}}], "symbols": []}}, {"match": {"value": 816906239}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289789968}, "child": {"skip": 136, "offset": 152, "next": [], "symbols": [{"name": "sppp_print_string", "hash": "3807955612652a985ff44550b49958d3ae1a50a9", "variant": 3714910063, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10518573}, "child": {"skip": 1264, "offset": 1280, "next": [], "symbols": [{"name": "ssl_alert_cb", "hash": "d663b73c00a27d9046640183582a61748ede07e8", "variant": 296994738, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 10518573}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289921072}, "child": {"skip": 148, "offset": 164, "next": [], "symbols": [{"name": "sceInetPoll", "hash": "3ece10587d749ab801e861b97cc47decb1cbc742", "variant": 3466333674, "library": "libnet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006829569}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707520}, "child": {"skip": 44, "offset": 56, "next": [{"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 1007026176, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 568, "offset": 632, "next": [], "symbols": [{"name": "sceSifInitCmd", "hash": "edf23655086f5bb90a963e091645a7ba701d972f", "variant": 1882492009, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 0}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 568, "offset": 632, "next": [], "symbols": [{"name": "sceSifInitCmd", "hash": "1f24d7f4e379adc09fcc2d6b5823c4046f70cbef", "variant": 2700127133, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855536}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1007812608, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707520}, "child": {"skip": 8, "offset": 24, "next": [{"match": {"value": 71368754}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4289724432}, "child": {"skip": 224, "offset": 256, "next": [], "symbols": [{"name": "_lf_bind", "hash": "2426aece103d8d125220d478f93a733b91934e84", "variant": 3506490559, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 339738696}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4289724432}, "child": {"skip": 308, "offset": 340, "next": [], "symbols": [{"name": "sceMcSetFileInfo", "hash": "4a3cffe4eb8849b1572193a5db8523734fc5c12e", "variant": 2472154969, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789984}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8425517}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1007747072, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289724432}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2384723968, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4290707520}, "child": {"skip": 80, "offset": 112, "next": [{"match": {"value": 604307472}, "child": {"skip": 0, "offset": 116, "next": [{"match": {"value": 2946498560}, "child": {"skip": 80, "offset": 200, "next": [], "symbols": [{"name": "sceMcFormat", "hash": "4fa51b950b37d18666741c433596d1dfef121ae7", "variant": 2066672618, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 604307473}, "child": {"skip": 0, "offset": 116, "next": [{"match": {"value": 2946498560}, "child": {"skip": 80, "offset": 200, "next": [], "symbols": [{"name": "sceMcUnformat", "hash": "d917d24e21c0d85c8b8d1287665ab8c0ee698d18", "variant": 2066672618, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 639893504, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4290707520}, "child": {"skip": 216, "offset": 248, "next": [{"match": {"value": 883230979}, "child": {"skip": 0, "offset": 252, "next": [{"match": {"value": 12333}, "child": {"skip": 72, "offset": 328, "next": [], "symbols": [{"name": "sceDbcGetDepNumber", "hash": "b9907d7e5eafe46cf08883024060084b304b7f34", "variant": 3342795497, "library": "libdbc"}]}}], "symbols": []}}, {"match": {"value": 883233539}, "child": {"skip": 0, "offset": 252, "next": [{"match": {"value": 12333}, "child": {"skip": 4, "offset": 260, "next": [{"match": {"value": 604504704}, "child": {"skip": 0, "offset": 264, "next": [{"match": {"value": 33572909}, "child": {"skip": 60, "offset": 328, "next": [], "symbols": [{"name": "sceDbcGetDepNumber", "hash": "ea1dc7aa471f17e8d2e65436985d90b0d87ba7b4", "variant": 3342795497, "library": "libdbc"}]}}], "symbols": []}}, {"match": {"value": 604504208}, "child": {"skip": 0, "offset": 264, "next": [{"match": {"value": 33572909}, "child": {"skip": 60, "offset": 328, "next": [], "symbols": [{"name": "sceDbcGetDepNumber", "hash": "347189a0bda3fd8b3f211ca9c3ba9f74c3673bc2", "variant": 3342795497, "library": "libdbc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": )PS2SDB", 8192}, + std::string_view{R"PS2SDB({"value": 4289724432}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 10520621}, "child": {"skip": 16, "offset": 40, "next": [{"match": {"value": 1007091712, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 268435493}, "child": {"skip": 172, "offset": 220, "next": [], "symbols": [{"name": "sceSifSetIopAddr", "hash": "61165350e86bba0a2d17eff2ae5d89f9bbb0926d", "variant": 647962685, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 268435494}, "child": {"skip": 176, "offset": 224, "next": [], "symbols": [{"name": "sceSifSetIopAddr", "hash": "9f8696f0c8b29b32e2685add97224bc790f71c72", "variant": 3891609576, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707520}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 10520621}, "child": {"skip": 132, "offset": 156, "next": [], "symbols": [{"name": "_sce_eenet_wait_for_cable_connected", "hash": "f0e0e44b733de1591e0d38491c1502cdc755de01", "variant": 3207277072, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10522669}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724432}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8423469}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290707520}, "child": {"skip": 84, "offset": 112, "next": [], "symbols": [{"name": "sceVprintf", "hash": "dce1031d825f9e6994ac24f48bf460b5717ef930", "variant": 3024723366, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 4290707520}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceNetcnfifInit"}}, "child": {"skip": 96, "offset": 124, "next": [], "symbols": [{"name": "sceNetcnfifGetCount", "hash": "e1eb10f1ec74fed2dccf206bb697c3e4299e6bc3", "variant": 1659536514, "library": "netcnfif"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707520}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8423469}, "child": {"skip": 16, "offset": 40, "next": [{"match": {"value": 268435492}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 4141}, "child": {"skip": 164, "offset": 212, "next": [], "symbols": [{"name": "_sceCdRI", "hash": "256401d8d2e813febf1594a602074e9891781fa2", "variant": 1171816608, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 268435496}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 4141}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 609222656, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 172, "offset": 228, "next": [], "symbols": [{"name": "_sceCdRM", "hash": "9ac987037a545633580add2b91a6ce34462d09e9", "variant": 1963385239, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 604307464}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 609222656, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 172, "offset": 228, "next": [], "symbols": [{"name": "_sceCdWI", "hash": "bf27a6d371742471bb0312887a5de7d58ff4f87b", "variant": 455210507, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 268435495}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 604176383}, "child": {"skip": 176, "offset": 224, "next": [], "symbols": [{"name": "sceCdTrayReq", "hash": "ead08e2f851991b1d4d4173077f884fdb7f33012", "variant": 1339666151, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 268435500}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 4141}, "child": {"skip": 196, "offset": 244, "next": [], "symbols": [{"name": "_sceCdWM", "hash": "e9258bb477185ed745705bafac9aeaf9c756a7b7", "variant": 2677027036, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724432}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707520}, "child": {"skip": 224, "offset": 244, "next": [], "symbols": [{"name": "sceMcInit", "hash": "486b7d750959508aebd20d34b488bd0c7504b0c0", "variant": 1228199845, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 12619821}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724432}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 10520621}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290707520}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 8421421}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2449670144}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 811728960}, "child": {"skip": 72, "offset": 112, "next": [{"match": {"value": 268435650}, "child": {"skip": 0, "offset": 116, "next": [{"match": {"value": 2690646684}, "child": {"skip": 800, "offset": 920, "next": [], "symbols": [{"name": "execute_cfa_insn", "hash": "60ef5ecd3b650c748f871c66815e7fb3a9c06768", "variant": 373760010, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 268435645}, "child": {"skip": 0, "offset": 116, "next": [{"match": {"value": 2690646684}, "child": {"skip": 780, "offset": 900, "next": [], "symbols": [{"name": "execute_cfa_insn", "hash": "6d334398744f5529fded147c62edc974c0d71159", "variant": 849015103, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 301989952}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 604166379}, "child": {"skip": 276, "offset": 316, "next": [], "symbols": [{"name": "sceAtokEditConv", "hash": "ed3f48a25e4fbc36b5cd8cb57ca237c9d051504d", "variant": 1022756788, "library": "libatok"}]}}], "symbols": []}}, {"match": {"value": 301989915}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 604166379}, "child": {"skip": 128, "offset": 168, "next": [], "symbols": [{"name": "sceAtokConvAll", "hash": "255b965199e27c366e8322065e9b7a3c7f0ce2b8", "variant": 4052744056, "library": "libatok"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8421421}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4290707520}, "child": {"skip": 164, "offset": 196, "next": [], "symbols": [{"name": "time_mi_cmp", "hash": "e3105ac8508f53dcd0b774fd1943030bb10e0ac1", "variant": 1920227726, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8423469}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290707520}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceHiDMAMake_ChainStart"}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 10518573}, "child": {"skip": 112, "offset": 148, "next": [], "symbols": [{"name": "MicroMakeCODEPacket", "hash": "e921dc1fc3a76e4beb9e9453d3a8f18541504a87", "variant": 1925223328, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 2384723996}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 343932931}, "child": {"skip": 256, "offset": 292, "next": [], "symbols": [{"name": "crypto_sslc_dh_key_exch_phase_1", "hash": "6a17dd418bace158fbbd511e22d273f97a525b16", "variant": 464513378, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 14712877}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4290707520}, "child": {"skip": 464, "offset": 496, "next": [], "symbols": [{"name": "OP_default_callback", "hash": "5513cfbd306a0ac64ed7822c7e7fa1e0a879a2bb", "variant": 1046605398, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707520}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8423469}, "child": {"skip": 176, "offset": 196, "n)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ext": [], "symbols": [{"name": "skin_calc", "hash": "9cd8f89243c3c564468216fba7bd4ab093c8ffd8", "variant": 828358439, "library": "libhip"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724432}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10522669}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707520}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8421421}, "child": {"skip": 184, "offset": 208, "next": [], "symbols": [{"name": "sceCdTrayReq", "hash": "21ab89fbb8410d409246a4b4bc8d5049f981b83c", "variant": 3915746765, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 12593197}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8421421}, "child": {"skip": 196, "offset": 220, "next": [], "symbols": [{"name": "_fopen_r", "hash": "d51bd5faf2a266765259eb6cf63c6cffd1da0992", "variant": 1341915413, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 14716973}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707520}, "child": {"skip": 176, "offset": 196, "next": [], "symbols": [{"name": "sceNetcnfifCreateCallbackThread", "hash": "87830824cf87f47d2e0dbfbbb9617fe88e517d05", "variant": 1043272177, "library": "netcnfif"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707520}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8425517}, "child": {"skip": 8, "offset": 24, "next": [{"match": {"value": 346030118}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604176274}, "child": {"skip": 172, "offset": 204, "next": [], "symbols": [{"name": "sceMcDelete", "hash": "d4d3a9c0bcb79d8a5b1a826d6faf9d6362de8b06", "variant": 2846114298, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 2386690132}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2353201540}, "child": {"skip": 236, "offset": 268, "next": [], "symbols": [{"name": "ssl3_setup_key_block", "hash": "bb513fced5da000e1e69a28b5313776c9f2839ab", "variant": 4071962769, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8425517}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707520}, "child": {"skip": 240, "offset": 256, "next": [], "symbols": [{"name": "_sceMcFatUnFormat", "hash": "e68e48ae4af120f119df9290cc4bae7bb4a67bbb", "variant": 4219308194, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289790000}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1007747072, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707520}, "child": {"skip": 112, "offset": 128, "next": [], "symbols": [{"name": "_sce_eenetctl_waitevent", "hash": "954daa250339b31bb6401aa5527a60cdbbdddcf0", "variant": 2613131938, "library": "eenetctl"}]}}], "symbols": []}}, {"match": {"value": 4290707520}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8423469}, "child": {"skip": 184, "offset": 200, "next": [], "symbols": [{"name": "DelayThread", "hash": "00a31e89018185bfa2f37fdab8b3322ac6218238", "variant": 2153088479, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 4289724448}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707520}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 956, "offset": 976, "next": [], "symbols": [{"name": "validate_structure", "hash": "155a14119e6690a587b3af77c69e5f6a29cd57eb", "variant": 3768097560, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 10520621}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4290707520}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "strlen"}}, "child": {"skip": 104, "offset": 132, "next": [], "symbols": [{"name": "_puts_r", "hash": "1c7ad492cc7555ec5aa57146d94019d5cb14797c", "variant": 4209973550, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 301989895}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290707520}, "child": {"skip": 76, "offset": 104, "next": [], "symbols": [{"name": "sceEENetGettimeofday", "hash": "9ebf1a63cea149ceaac9b68c30922d26304b533a", "variant": 1965819901, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 60827693}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1007747072, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 104, "offset": 120, "next": [], "symbols": [{"name": "_sce_eenetctl_pollevent", "hash": "d348a91558f2145fd8220b7c600de5d8159126c9", "variant": 34765818, "library": "eenetctl"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 266882}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289921072}, "child": {"skip": 232, "offset": 244, "next": [], "symbols": [{"name": "iSetTimerHandler", "hash": "3f3cfe89c0d5046092b0565e42dbb543cf84cfc1", "variant": 3939887283, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 4289724432}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789984}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8421421}, "child": {"skip": 304, "offset": 320, "next": [], "symbols": [{"name": "sceFsSetIopBuf", "hash": "37935b9c33bceb354729a84fddd320ac259f9b22", "variant": 2498094290, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 4289855536}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8421421}, "child": {"skip": 20, "offset": 36, "next": [{"match": {"value": 272826402}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 640811008, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 160, "offset": 204, "next": [], "symbols": [{"name": "sceCdSeek", "hash": "dc499a0c52c7f745c10bf62f31418810fcc7484f", "variant": 588871372, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 272826403}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 640811008, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 164, "offset": 208, "next": [], "symbols": [{"name": "sceCdSeek", "hash": "8fb87926b9a1b6b99c90cdcdb9b79a8295e85415", "variant": 3229766512, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707520}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 605028358}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855536}, "child": {"skip": 176, "offset": 196, "next": [], "symbols": [{"name": "sceCdStop", "hash": "fc3fabb2cf21d97bb2e627be40a4db29d6215b27", "variant": 3125648013, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 8421421}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855536}, "child": {"skip": 612, "offset": 632, "next": [], "symbols": [{"name": "bound", "hash": "24c28d6522e52debbc0fc54822c36914293470ce", "variant": 2319641682, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10518573}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 604307457}, "child": {"skip": 372, "offset": 388, "next": [], "symbols": [{"name": "_d2b", "hash": "1fe539b0d89ef830d2258b6bb062295acfb2fdae", "variant": 3126704324, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4289986608}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290052152}, "child": {"skip": 36, "offset": 52, "next": [{"match": {"value": 4229165}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 1056831}, "child": {"skip": 316, "offset": 376, "next": [], "symbols": [{"name": "_d2b", "hash": "a225b4457ac23747a3821a37d920ecb4e0baf90e", "variant": 2827126610, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 1007648767}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 1075263}, "child": {"skip": 312, "offset": 372, "next": [], "sym)PS2SDB", 8192}, + std::string_view{R"PS2SDB(bols": [{"name": "_d2b", "hash": "e8219613658486081c9b1ba6eda4be19686b2bd2", "variant": 3086613565, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8421421}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289855536}, "child": {"skip": 140, "offset": 156, "next": [], "symbols": [{"name": "_unsetenv_r", "hash": "63afb78636718dfadb06d39f3c7eef057bf78c59", "variant": 2561997663, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604176496}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789968}, "child": {"skip": 64, "offset": 76, "next": [{"match": {"value": 268435474}, "child": {"skip": 0, "offset": 80, "next": [{"match": {"value": 4141}, "child": {"skip": 8, "offset": 92, "next": [{"match": {"value": 35659821}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 4227117}, "child": {"skip": 80, "offset": 180, "next": [], "symbols": [{"name": "scePadRead", "hash": "9d6398e3de6bbcf98cc9df7c164a45e23b822ab5", "variant": 1712054892, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 12333}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 4227117}, "child": {"skip": 80, "offset": 180, "next": [], "symbols": [{"name": "scePadSetReqState", "hash": "1027066a972d6f19fa33cb29263bc68c14f47c00", "variant": 4290964653, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 268435470}, "child": {"skip": 0, "offset": 80, "next": [{"match": {"value": 4141}, "child": {"skip": 80, "offset": 164, "next": [], "symbols": [{"name": "scePadSetReqState", "hash": "0e07417f8cec54c2d919f2a21d47cb0056750880", "variant": 1580431479, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604110944}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855520}, "child": {"skip": 172, "offset": 184, "next": [], "symbols": [{"name": "scePadGetState", "hash": "2c700b6d4586166d8cbf37ab58334c4b728f61a5", "variant": 178650221, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 1006862336}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855536}, "child": {"skip": 204, "offset": 216, "next": [], "symbols": [{"name": "scePadSetVrefParam", "hash": "fa6690ac7cfba8f959c68e6c39faebdd0ff2272b", "variant": 3296222458, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 604241919}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289790000}, "child": {"skip": 4, "offset": 16, "next": [{"match": {"value": 4290707520}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2384592896, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 124, "offset": 148, "next": [], "symbols": [{"name": "cmd_sem_init", "hash": "e1671e019f0c93907933b213954533008f2fed78", "variant": 1971836187, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 4289724448}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2384592896, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 16, "offset": 40, "next": [{"match": {"value": 339935251}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 3753836608}, "child": {"skip": 88, "offset": 136, "next": [], "symbols": [{"name": "cmd_sem_init", "hash": "b76623ba3a0798a23cd1e711af679fdff30a2f59", "variant": 1713687659, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 339935252}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 3753836608}, "child": {"skip": 92, "offset": 140, "next": [], "symbols": [{"name": "cmd_sem_init", "hash": "f55f1336519b0f179c28dd5dadc491a9a0194b9e", "variant": 3436114761, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789984}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724432}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1007747072, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855536}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8421421}, "child": {"skip": 24, "offset": 48, "next": [{"match": {"value": 268435486}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 4141}, "child": {"skip": 140, "offset": 196, "next": [], "symbols": [{"name": "sceCdMmode", "hash": "8757ce2815dfc60d6270a8c9528660978e812255", "variant": 3026253314, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 268435489}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 4141}, "child": {"skip": 152, "offset": 208, "next": [], "symbols": [{"name": "sceCdMmode", "hash": "a5cfb223a7302aee8db23ef7de0aa189a6b56694", "variant": 1080208547, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 268435487}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 4141}, "child": {"skip": 144, "offset": 200, "next": [], "symbols": [{"name": "sceCdMmode", "hash": "cb0f2479927c02673444f8e6da3b3758c8c48daa", "variant": 3395858232, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8421421}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4290707520}, "child": {"skip": 168, "offset": 192, "next": [], "symbols": [{"name": "sceMcGetSlotMax", "hash": "2cd5b014000f9602aa6d17b3394baf92eff65848", "variant": 1326984825, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10520621}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289855536}, "child": {"skip": 168, "offset": 192, "next": [], "symbols": [{"name": "_ratio", "hash": "9d34e48ed2273bfebc37c567ed6c77dd2020d37e", "variant": 4190894158, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4290707520}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8421421}, "child": {"skip": 212, "offset": 236, "next": [], "symbols": [{"name": "lh_insert", "hash": "32d823eb20403fa0ad3a9a171f0e688aa6b51f45", "variant": 572739657, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707520}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8423469}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855536}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceCdNcmdDiskReady"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289724432}, "child": {"skip": 4, "offset": 32, "next": [{"match": {"value": 272826405}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 4141}, "child": {"skip": 168, "offset": 208, "next": [], "symbols": [{"name": "sceCdSeek", "hash": "1fb8a8ad64d947b629f05ff709e349ae75db6aa8", "variant": 2121307344, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 272826410}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 4141}, "child": {"skip": 4, "offset": 44, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 272629792}, "child": {"skip": 176, "offset": 228, "next": [], "symbols": [{"name": "sceCdSeek", "hash": "7beb8d60c8c412a099eb0026e0d8a9840a29aaa8", "variant": 3057040185, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 604241929}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 272629792}, "child": {"skip": 176, "offset": 228, "next": [], "symbols": [{"name": "sceCdSeek", "hash": "03f2ec6b8fbcb5c9a7534921b3649b76c6cceb88", "variant": 3057040185, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 272826411}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 4141}, "child": {"skip": 192, "offset": 232, "next": [], "symbols": [{"name": "sceCdSeek", "hash": "440ef2d70983462f4f7744b2fdb33eebaf9ad535", "variant": 421163210, "library": "libcdvd"}]}}], "symbols": []}}, {"matc)PS2SDB", 8192}, + std::string_view{R"PS2SDB(h": {"value": 272826406}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 4141}, "child": {"skip": 172, "offset": 212, "next": [], "symbols": [{"name": "sceCdSeek", "hash": "3ff687a7063c885f1aa3504bef5af89444c65954", "variant": 2568859476, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2946826240}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289724432}, "child": {"skip": 252, "offset": 280, "next": [], "symbols": [{"name": "sk_find", "hash": "6459cb62120de272052ee8189e326ebea3c9d216", "variant": 2264006812, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 605093894}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855536}, "child": {"skip": 8, "offset": 28, "next": [{"match": {"value": 273743902}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4141}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "ncmd_prechk"}}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 604241931}, "child": {"skip": 132, "offset": 176, "next": [], "symbols": [{"name": "sceCdStop", "hash": "44045c0699370b36ed59c7bcec8379318f1514d5", "variant": 728405088, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceCd_ncmd_prechk"}}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 604241931}, "child": {"skip": 132, "offset": 176, "next": [], "symbols": [{"name": "sceCdStop", "hash": "44045c0699370b36ed59c7bcec8379318f1514d5", "variant": 3036730049, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 273743907}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4141}, "child": {"skip": 160, "offset": 196, "next": [], "symbols": [{"name": "sceCdStop", "hash": "93020aaa9227fa7ec98a127030b9899caa12cee6", "variant": 3125648013, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 273743908}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4141}, "child": {"skip": 164, "offset": 200, "next": [], "symbols": [{"name": "sceCdStop", "hash": "b235418acefa0cf512df6518507e66f923d76e29", "variant": 267454468, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855536}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724432}, "child": {"skip": 972, "offset": 992, "next": [], "symbols": [{"name": "__ieee754_rem_pio2f", "hash": "af41b4f3155e9e8e59da8c9a5179b8e902be171e", "variant": 1550145952, "library": "libm"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855536}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8423469}, "child": {"skip": 12, "offset": 28, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "scmd_prechk"}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 604241924}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 339738627}, "child": {"skip": 4, "offset": 44, "next": [{"match": {"value": 268435492}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 4141}, "child": {"skip": 164, "offset": 216, "next": [], "symbols": [{"name": "_sceCdRI", "hash": "aa006b171aa6af6911bd51930cf4da8a18230514", "variant": 2993813548, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 268435493}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 4141}, "child": {"skip": 168, "offset": 220, "next": [], "symbols": [{"name": "_sceCdRI", "hash": "2acd6e1db56b7426093a3b537c97744ab7c6ef28", "variant": 557488713, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604241925}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 339738627}, "child": {"skip": 4, "offset": 44, "next": [{"match": {"value": 268435496}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 4141}, "child": {"skip": 180, "offset": 232, "next": [], "symbols": [{"name": "_sceCdRM", "hash": "42b2e4aa98a3e19a7df7115a1a4614706ec1e201", "variant": 3647962619, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 268435497}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 4141}, "child": {"skip": 184, "offset": 236, "next": [], "symbols": [{"name": "_sceCdRM", "hash": "9ba1e8ec874ed6267fee69c4925b803910c97e9a", "variant": 1243881374, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604241946}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 339738627}, "child": {"skip": 188, "offset": 228, "next": [], "symbols": [{"name": "sceCdTrayReq", "hash": "a207a1ef73b2484c02d9cf6b52bfd27d488a97cf", "variant": 2678548695, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 604241926}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 339738627}, "child": {"skip": 4, "offset": 44, "next": [{"match": {"value": 268435497}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 4141}, "child": {"skip": 184, "offset": 236, "next": [], "symbols": [{"name": "_sceCdWI", "hash": "8503c8f814c8c08e13e1e6906e3dca67a91c1ef4", "variant": 1145153743, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 268435496}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 4141}, "child": {"skip": 180, "offset": 232, "next": [], "symbols": [{"name": "_sceCdWI", "hash": "5df7fbd7ed67c13febf02d9f0fac7a189ace4296", "variant": 2875179073, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604241927}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 339738627}, "child": {"skip": 4, "offset": 44, "next": [{"match": {"value": 268435501}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 4141}, "child": {"skip": 200, "offset": 252, "next": [], "symbols": [{"name": "_sceCdWM", "hash": "cef2dc6be5d47e93cd0e9386d0265991aac4dd2f", "variant": 2250833062, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 268435500}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 4141}, "child": {"skip": 196, "offset": 248, "next": [], "symbols": [{"name": "_sceCdWM", "hash": "49cd30d8171da7f4c91021d7e88842b1f938ba93", "variant": 299481540, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceCd_scmd_prechk"}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 604241959}, "child": {"skip": 172, "offset": 208, "next": [], "symbols": [{"name": "sceCdReadDvdDualInfo", "hash": "2585989f7813676576bfb816434e3ac8b55d7799", "variant": 3800342470, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8423469}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289855536}, "child": {"skip": 144, "offset": 160, "next": [], "symbols": [{"name": "ssl_clear_cipher_ctx", "hash": "9efbe6da242203989c06b3faa44a1f5018db234d", "variant": 2755084229, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707520}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855536}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289789984}, "child": {"skip": 156, "offset": 172, "next": [{"match": {"value": 604307648}, "child": {"skip": 0, "offset": 176, "next": [{"match": {"value": 1007222784, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 92, "offset": 272, "next": [], "symbols": [{"name": "sceMcGetInfo", "hash": "4e7e440ca849473203a908ec068ff4c1e295293f", "variant": 912605414, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 604307520}, "child": {"skip": 0, "offset": 176, "next": [{"match": {"value": 1007222784, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 92, "offset": 272, "next": [], "symbols": [{"name": "sceMcGetInfo", "hash": ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(a5aa9e3843d247055bfb44b61d991f5881e1c2e7", "variant": 912605414, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2142437424}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2142371872}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 10524717}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2142306320}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 12619821}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 14714925}, "child": {"skip": 8, "offset": 40, "next": [{"match": {"value": 304087049}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 8618017}, "child": {"skip": 4, "offset": 52, "next": [{"match": {"value": 33562669}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 39909385}, "child": {"skip": 48, "offset": 108, "next": [], "symbols": [{"name": "__destroy_arr", "hash": "29ca348d44f0a06433aedad57333a0917daa4e57", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 604372991}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 39909385}, "child": {"skip": 8, "offset": 68, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 371261433}, "child": {"skip": 32, "offset": 108, "next": [], "symbols": [{"name": "__destroy_arr", "hash": "c2388c24e49270e2fc55eb9b67bf82db927085bb", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 371261434}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 0}, "child": {"skip": 32, "offset": 108, "next": [], "symbols": [{"name": "__destroy_arr", "hash": "0fb399ea37229c80052460dd05c8adf1d76d99f9", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 371195907}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 8618017}, "child": {"skip": 68, "offset": 116, "next": [], "symbols": [{"name": "__destroy_arr", "hash": "a5e6a77bf28cfe9743cea940ff3015109cc13338", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 9635883}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2142240768}, "child": {"skip": 88, "offset": 120, "next": [], "symbols": [{"name": "__initialize_cpp_rts", "hash": "a612706da53619cf3cf7f8692a23ec874586c94e", "variant": 3235935833, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 2142240768}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 8423469}, "child": {"skip": 92, "offset": 124, "next": [], "symbols": [{"name": "mwOverlayInit", "hash": "a918fea54dc8cea6f4c6b36bd9123dba4a2029b6", "variant": 804134913, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 8425517}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2142240768}, "child": {"skip": 96, "offset": 128, "next": [], "symbols": [{"name": "mwOverlayInit", "hash": "148949dd472c77bd57bdbc6341da418cf977d9c3", "variant": 91928287, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 604307457}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2142240768}, "child": {"skip": 8, "offset": 40, "next": [{"match": {"value": 32813}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 4231213}, "child": {"skip": 188, "offset": 236, "next": [], "symbols": [{"name": "mwLoadOverlay", "hash": "b609121055997278bdb6b870a0af3fc2b99c9a37", "variant": 627323448, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 36909}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 4227117}, "child": {"skip": 192, "offset": 240, "next": [], "symbols": [{"name": "mwLoadOverlay", "hash": "7d5c4901eda80bf9bb9ebf8b9f07735385e763ba", "variant": 267429094, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2142306320}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1891669544}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1893764648}, "child": {"skip": 80, "offset": 108, "next": [], "symbols": [{"name": "__destroy_arr", "hash": "6cbc29132545dcbaf372d06543f09b7ba0308913", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 2142240768}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2358378516}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 1887471144}, "child": {"skip": 92, "offset": 124, "next": [], "symbols": [{"name": "mwOverlayInit", "hash": "5c147e9dc2e20ad72a06d5766b8f44698f0c9e45", "variant": 804134913, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 10524717}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 8421421}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 8423469}, "child": {"skip": 104, "offset": 140, "next": [], "symbols": [{"name": "mwOverlayInit", "hash": "8439a07f48f0c317e6669c8f85fbb2451378fcd0", "variant": 3290639588, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 34861}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "mwBload"}}, "child": {"skip": 132, "offset": 168, "next": [], "symbols": [{"name": "mwLoadOverlay", "hash": "0c26d376ec1f6cacf6f45ff10b3ebe08bea27cf8", "variant": 2073405442, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1889574440}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 1879084584}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "mwBload"}}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 0}, "child": {"skip": 128, "offset": 168, "next": [], "symbols": [{"name": "mwLoadOverlay", "hash": "3b5380b9e11c6f7cee744dba1d31ec4509237e65", "variant": 2073405442, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 604307457}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceOpen"}}, "child": {"skip": 172, "offset": 212, "next": [], "symbols": [{"name": "mwBload", "hash": "3c5374f134e842f2d0b9c9b7834c302874e767bd", "variant": 4194810299, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8427565}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 10522669}, "child": {"skip": 200, "offset": 232, "next": [], "symbols": [{"name": "mwBload", "hash": "e98e9d35b5a4e0cdbad4b43fdfdcfabb0205f8f0", "variant": 2407954652, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10500141}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855536}, "child": {"skip": 172, "offset": 184, "next": [], "symbols": [{"name": "sceMcGetEntSpace", "hash": "0603e0e45ea2675519c41cf37ca9c98e7c70736f", "variant": 1024040623, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 8394797}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 1532, "offset": 1544, "next": [], "symbols": [{"name": "__ieee754_log", "hash": "692c1f7b0d717bc5df669f8b84a7424e15460be6", "variant": 1783615959, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 1006764047}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289921048}, "child": {"skip": 1436, "offset": 1448, "next": [], "symbols": [{"name": "__ieee754_log", "hash": "b6df31183692d56a10466f3e07ddeca22f080626", "variant": 3047109561, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 1141006336}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789968}, "child": {"skip": 912, "offset": 924, "next": [], "symbols": [{"name": "__ieee754_asinf", "hash": "8cc9362d84ef5d488ec86450ac542af2f1dd1fdd", "variant": 616536185, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 4289789960}, "c)PS2SDB", 8192}, + std::string_view{R"PS2SDB(hild": {"skip": 0, "offset": 8, "next": [{"match": {"value": 8423469}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289724416}, "child": {"skip": 1608, "offset": 1624, "next": [], "symbols": [{"name": "__ieee754_asin", "hash": "482dd1aefb4bd56f8e574ee2dd311c90b964652d", "variant": 3154929386, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 10520621}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289855504}, "child": {"skip": 1424, "offset": 1440, "next": [], "symbols": [{"name": "_realloc_r", "hash": "075d61d7dd054fc11af70a9fc97186fbd88ea948", "variant": 1828681022, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 605093889}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289855504}, "child": {"skip": 324, "offset": 340, "next": [], "symbols": [{"name": "_sceMcpMakeSpecoutBlock", "hash": "f63d5c07bc2be1894f3e8801bb9223abf4616998", "variant": 2659069485, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289921048}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 8427565}, "child": {"skip": 1080, "offset": 1092, "next": [], "symbols": [{"name": "__ieee754_hypot", "hash": "a5e07e499014a2cef9fbb3f46960b776285320e5", "variant": 3739005939, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 665059376}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 60827693}, "child": {"skip": 36, "offset": 48, "next": [{"match": {"value": 33564717}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 60825645}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_fpadd_parts"}}, "child": {"skip": 28, "offset": 88, "next": [], "symbols": [{"name": "fpadd", "hash": "7046a37723bed0bc03b068e4eb47702e23bd2c74", "variant": 4214624274, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 2409758740}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 60825645}, "child": {"skip": 40, "offset": 100, "next": [], "symbols": [{"name": "fpsub", "hash": "713eed84447faa61a5590e2da3050fb5328733aa", "variant": 299083742, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2409758720}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 943849474}, "child": {"skip": 372, "offset": 428, "next": [], "symbols": [{"name": "fpmul", "hash": "c6ac785340289036cfbca81626837f0e4340965e", "variant": 4199918749, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724464}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1007681536, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2946760704}, "child": {"skip": 72, "offset": 88, "next": [], "symbols": [{"name": "find_by_nid", "hash": "9b5407319158432a9900d1103384f4e0114637f7", "variant": 3353181910, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 665059360}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707520}, "child": {"skip": 32, "offset": 48, "next": [{"match": {"value": 2410086400}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 753008642}, "child": {"skip": 8, "offset": 64, "next": [{"match": {"value": 268435521}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 60825645}, "child": {"skip": 280, "offset": 352, "next": [], "symbols": [{"name": "fpdiv", "hash": "14ae099c382513947f733a058c2454d00cdab63c", "variant": 3075944544, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 268435519}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 60825645}, "child": {"skip": 272, "offset": 344, "next": [], "symbols": [{"name": "fpdiv", "hash": "259b22c801c377d8792ee4c6684ba77ff6297652", "variant": 2215521878, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 33564717}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__fpcmp_parts_f"}}, "child": {"skip": 20, "offset": 76, "next": [], "symbols": [{"name": "fpcmp", "hash": "6627343ec2f3800a86b4046a2de86035c8035c21", "variant": 1792563946, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10518573}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289790008}, "child": {"skip": 224, "offset": 240, "next": [], "symbols": [{"name": "_mallinfo_r", "hash": "1c3c1074a3ca3f0b99641261b961516416e92637", "variant": 2969299369, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4290707520}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "R_malloc"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 604241944}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4227117}, "child": {"skip": 124, "offset": 148, "next": [], "symbols": [{"name": "X509_NAME_new", "hash": "3b3516a841cad7c18974bf3d5981df64a003270a", "variant": 3631571523, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604241940}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4227117}, "child": {"skip": 92, "offset": 116, "next": [], "symbols": [{"name": "X509_NAME_ENTRY_new", "hash": "09dbaa7fe35a877969d5232915d465e6d9d9cf39", "variant": 1904880692, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604241928}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4227117}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 301989895}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604110912}, "child": {"skip": 72, "offset": 104, "next": [], "symbols": [{"name": "X509_ALGOR_new", "hash": "8222336798f0cb80803f022b38f7a98c551dfa02", "variant": 2664249688, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 369098762}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604110903}, "child": {"skip": 8, "offset": 40, "next": [{"match": {"value": 604307675}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 604373025}, "child": {"skip": 80, "offset": 128, "next": [], "symbols": [{"name": "X509_SIG_new", "hash": "d7a3fc7f0d3d26a1ab425f05dffcc6be431e9be3", "variant": 2387775719, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604307677}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 604373025}, "child": {"skip": 80, "offset": 128, "next": [], "symbols": [{"name": "X509_VAL_new", "hash": "f6bfe4c137f79f7d9e32378fab2ca28805b1ee79", "variant": 1610689877, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604241960}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4227117}, "child": {"skip": 176, "offset": 200, "next": [], "symbols": [{"name": "X509_CINF_new", "hash": "ccd114c13650e870c7e3167a967a22fc65315384", "variant": 966920601, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604241936}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4227117}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 369098762}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604111053}, "child": {"skip": 92, "offset": 124, "next": [], "symbols": [{"name": "X509_REVOKED_new", "hash": "d90cf77e668c24a67bdbfc8d2987b1eeab0ba076", "variant": 891814121, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 1442840587}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604110849}, "child": {"skip": 108, "offset": 140, "next": [], "symbols": [{"name": "X509_CRL_new", "hash": "1cd89f996b76346c385e7709f05fbbb056155ca2", "variant": 1197417348, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604241948}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4227117}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 369098762}, "child": {"skip": 0, "offs)PS2SDB", 8192}, + std::string_view{R"PS2SDB(et": 28, "next": [{"match": {"value": 604111066}, "child": {"skip": 156, "offset": 188, "next": [], "symbols": [{"name": "X509_CRL_INFO_new", "hash": "b65d8e25d2e2fb237055b61e8eb981533367af5d", "variant": 1449168932, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 1442840587}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604110849}, "child": {"skip": 120, "offset": 152, "next": [], "symbols": [{"name": "X509_new", "hash": "b16829d108e26a86c811b325664b575b1d1dbf01", "variant": 851243392, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604241952}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4227117}, "child": {"skip": 120, "offset": 144, "next": [], "symbols": [{"name": "X509_EXTENSION_new", "hash": "ef3a762a9b8567cc4c0581d1e3685f1c7518376a", "variant": 2403997549, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604241932}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4227117}, "child": {"skip": 100, "offset": 124, "next": [], "symbols": [{"name": "X509_PUBKEY_new", "hash": "ea628f3113e35b1b00fed75c623559258fa20979", "variant": 3682319707, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "ssl3_num_ciphers"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 80, "offset": 100, "next": [], "symbols": [{"name": "ssl23_get_cipher_by_char", "hash": "fab36df86582756052012d94dd0b3c153168a9cc", "variant": 4100729506, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2946760736}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2946826276}, "child": {"skip": 36, "offset": 48, "next": [{"match": {"value": 2410086400}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 753008642}, "child": {"skip": 296, "offset": 352, "next": [], "symbols": [{"name": "fpdiv", "hash": "fca7b6b9c36a48f391649eec47b63c722774ea6b", "variant": 3075944544, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 33564717}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__fpcmp_parts_f"}}, "child": {"skip": 20, "offset": 76, "next": [], "symbols": [{"name": "fpcmp", "hash": "9d265b46027298ebca20e3e042fd1345ff6f83e4", "variant": 1792563946, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8392749}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789984}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707520}, "child": {"skip": 44, "offset": 60, "next": [{"match": {"value": 272629770}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 1007681536, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 192, "offset": 260, "next": [], "symbols": [{"name": "extract_cie_info", "hash": "0eaf364bb270be8e134400e2a624c8370064726d", "variant": 3232165643, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 272629773}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 208, "offset": 276, "next": [], "symbols": [{"name": "extract_cie_info", "hash": "582604237e5741d20630b1163fec80f759001aa2", "variant": 1167983081, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289921072}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289855520}, "child": {"skip": 176, "offset": 192, "next": [], "symbols": [{"name": "R_EITEMS_dup", "hash": "0f953ad2e53dcad197ca8ec824dff3263fba4a18", "variant": 1556510050, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4141}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789960}, "child": {"skip": 980, "offset": 992, "next": [], "symbols": [{"name": "__sfvwrite", "hash": "987c17dc61f34465f0bc01f3637d4507cef1f8d7", "variant": 4191223918, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 6189}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289921048}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8427565}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290052136}, "child": {"skip": 928, "offset": 948, "next": [], "symbols": [{"name": "__sfvwrite", "hash": "e4846048a4d6829fcede96935c5195e509f942f7", "variant": 1543539972, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4290052136}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724416}, "child": {"skip": 944, "offset": 964, "next": [], "symbols": [{"name": "__sfvwrite", "hash": "9037de799b85be2b3a660c1cbc9e0b0f6e350573", "variant": 741054624, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289921072}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289855520}, "child": {"skip": 296, "offset": 312, "next": [], "symbols": [{"name": "BN_sub", "hash": "9d394eeaa6f30c0b856a55a859024ba9ac798ef1", "variant": 113630898, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 28717}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289921048}, "child": {"skip": 952, "offset": 964, "next": [], "symbols": [{"name": "__sfvwrite", "hash": "44d1225d8eda39652cb5331cfce0d283bf01b5cf", "variant": 2846911147, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 10489901}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 604307457}, "child": {"skip": 380, "offset": 392, "next": [], "symbols": [{"name": "_d2b", "hash": "b7b521d72e65c08d8406be4f4bb64e620b39fff7", "variant": 2513350898, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4289855504}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 12619821}, "child": {"skip": 192, "offset": 204, "next": [], "symbols": [{"name": "bsearch", "hash": "952006f9ab6f7b1568f42960ae26dce12785c119", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4290052136}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1008009216, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 316, "offset": 328, "next": [], "symbols": [{"name": "_findenv_r", "hash": "9ad77b27176c583797d6f24048d6eda63af4882f", "variant": 1767288951, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 604176383}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289921072}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289789968}, "child": {"skip": 36, "offset": 52, "next": [{"match": {"value": 33562669}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 2382495752}, "child": {"skip": 80, "offset": 140, "next": [{"match": {"value": 2382692632}, "child": {"skip": 0, "offset": 144, "next": [{"match": {"value": 33562669}, "child": {"skip": 128, "offset": 276, "next": [], "symbols": [{"name": "_decodeOrSkipFrame", "hash": "20fd3b3c3fd704be024c1cd944b807ae5e4c6b95", "variant": 1754491801, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2382500000}, "child": {"skip": 0, "offset": 144, "next": [{"match": {"value": 339738652}, "child": {"skip": 140, "offset": 288, "next": [], "symbols": [{"name": "_decodeOrSkipFrame", "hash": "1465550f61221dc9a07cb64c4a21271ae36e8f5a", "variant": 283007159, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8237}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 2382495752}, "child": {"skip": 200, "offset": 260, "next": [], "symbols": [{"name": "_decodeOrSkipFrame", "hash": "a50b7b45a7a08a88d22756cdb682ea7cef3d36aa", "variant": 1599551387, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289724416}, "child": {"skip": 400, "offset": 416, "next": [], "symbols": [{"name": "BN_lshift", )PS2SDB", 8192}, + std::string_view{R"PS2SDB("hash": "4eef5a27e90b7363974cffc74e290f81893f50df", "variant": 471845721, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1007554559}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2409758840}, "child": {"skip": 212, "offset": 224, "next": [], "symbols": [{"name": "_initRefImages", "hash": "bf332bf23d20d9ecf7ecfa4d9a08a1bc1da58dbf", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 604110850}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289790000}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8423469}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724448}, "child": {"skip": 160, "offset": 180, "next": [], "symbols": [{"name": "_setDefaultQM", "hash": "d7164b8d6762e252c007866abd7dd2d2a91fe680", "variant": 786072025, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 4290707520}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8423469}, "child": {"skip": 116, "offset": 136, "next": [], "symbols": [{"name": "_sce_eenet_delete_default_route", "hash": "15efcf1551d8dcdd9f4f55f8ea22d1f510da1f02", "variant": 1730104771, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707520}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8423469}, "child": {"skip": 320, "offset": 340, "next": [], "symbols": [{"name": "sceHiPlugShadowBox", "hash": "5bcf2eebd37658635b7ba23a12ca9f7a0107714f", "variant": 3944034294, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8423469}, "child": {"skip": 184, "offset": 204, "next": [], "symbols": [{"name": "sppp_lcp_tld", "hash": "fb6f9fb5c2d1944c096ace8d664228d23219db74", "variant": 2503044624, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2142371872}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2142306320}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8425517}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2142240768}, "child": {"skip": 208, "offset": 232, "next": [], "symbols": [{"name": "sceCccSJIStoUTF8", "hash": "81f9dfe9a7fc78bb7b6c1933f2ad6d41cbb2a10a", "variant": 494715735, "library": "libccc"}]}}], "symbols": []}}, {"match": {"value": 10522669}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2142240768}, "child": {"skip": 24, "offset": 48, "next": [{"match": {"value": 272629853}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 1054780}, "child": {"skip": 392, "offset": 448, "next": [], "symbols": [{"name": "FindExceptionRecord__FPcP13ExceptionInfo", "hash": "bf0e2fa404ba0d7625b884b72f7954baf261f7df", "variant": 2139598633, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 272629852}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 1054780}, "child": {"skip": 388, "offset": 444, "next": [], "symbols": [{"name": "FindExceptionRecord__FPcP13ExceptionInfo", "hash": "2f8457358ace7f8535b5fb365412e5268630db09", "variant": 1661640906, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2142240768}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2896166916}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2896166920}, "child": {"skip": 412, "offset": 440, "next": [], "symbols": [{"name": "FindExceptionRecord__FPcP13ExceptionInfo", "hash": "2982f4fa8b3266e83b72fa8e59edf41cf058b058", "variant": 930656209, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 10520621}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2896166916}, "child": {"skip": 408, "offset": 436, "next": [], "symbols": [{"name": "FindExceptionRecord__FPcP13ExceptionInfo", "hash": "1f26220201357ad6828cb73e42ee8082483b460b", "variant": 3250773132, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2143158304}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2142306320}, "child": {"skip": 4, "offset": 20, "next": [{"match": {"value": 8423469}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "DIntr"}}, "child": {"skip": 176, "offset": 204, "next": [], "symbols": [{"name": "__nw__FUi", "hash": "c591d5231618bdfcbe51eb739dbd60239ac09329", "variant": 2287399758, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 2142240768}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 8423469}, "child": {"skip": 64, "offset": 92, "next": [{"match": {"value": 371195908}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 48, "offset": 148, "next": [], "symbols": [{"name": "__get_typeid", "hash": "e54187ce7a4de509cafa8ce75624c680b201b107", "variant": 1466977575, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 371195907}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 35655725}, "child": {"skip": 36, "offset": 136, "next": [], "symbols": [{"name": "__get_typeid", "hash": "ad806e65e81e87ecef0d08f8c948d7dce9c3587a", "variant": 1047974776, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289789968}, "child": {"skip": 176, "offset": 192, "next": [], "symbols": [{"name": "sceSSyn_SetPortVolume", "hash": "70e9d9b2bdea208c4d1621383e710a1a158e3944", "variant": 2402938613, "library": "libssyn"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2142437424}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2142371872}, "child": {"skip": 12, "offset": 24, "next": [{"match": {"value": 2409758784}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2354184192}, "child": {"skip": 192, "offset": 224, "next": [], "symbols": [{"name": "sceCccDecodeUTF8", "hash": "0596590d0b43fd238695c6c994ef8746ef2f83f2", "variant": 2813256241, "library": "libccc"}]}}], "symbols": []}}, {"match": {"value": 2946826312}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2409758784}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2420244480}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 810549503}, "child": {"skip": 252, "offset": 292, "next": [], "symbols": [{"name": "__DecodeUnsignedNumber__FPcPUi", "hash": "4d331a080ae17d80f65b49a39fd83c2e0f74211e", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 2151809024}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 165436}, "child": {"skip": 256, "offset": 296, "next": [], "symbols": [{"name": "__DecodeSignedNumber__FPcPi", "hash": "10b029091c6bd1bcc322de9a5b98343223ff8c2c", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604307712}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289790000}, "child": {"skip": 620, "offset": 632, "next": [], "symbols": [{"name": "sceHiGsCtxCreate", "hash": "faf3e673e2eed56d46afec06fa9b0f4318797daa", "variant": 3261711618, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 2143223872}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2142437424}, "child": {"skip": 8, "offset": 20, "next": [{"match": {"value": 1891669544}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1893764648}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 38869016}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2142240768}, "child": {"skip": 16, "offset": 52, "next": [{"match": {"value": 604372991}, "child": {"s)PS2SDB", 8192}, + std::string_view{R"PS2SDB(kip": 0, "offset": 56, "next": [{"match": {"value": 39909385}, "child": {"skip": 48, "offset": 108, "next": [], "symbols": [{"name": "__destroy_arr", "hash": "9e3d1657a00501725ba4ad57284a500e6fdd8c59", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 1912612392}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 39909385}, "child": {"skip": 48, "offset": 108, "next": [], "symbols": [{"name": "__destroy_arr", "hash": "4ef25695c6fce471c9a19573e2e0e98490589dde", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2142240768}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 38869016}, "child": {"skip": 4, "offset": 40, "next": [{"match": {"value": 304087049}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 8618017}, "child": {"skip": 60, "offset": 108, "next": [], "symbols": [{"name": "__destroy_arr", "hash": "f118d725e64f0209134c398989c56f85e0c55edd", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 304087048}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 8618017}, "child": {"skip": 56, "offset": 104, "next": [], "symbols": [{"name": "__destroy_arr", "hash": "ff6be5eb98e5951a52769015af8c7f07ad18edaa", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2142240768}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1889574440}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 1887471144}, "child": {"skip": 108, "offset": 140, "next": [], "symbols": [{"name": "mwOverlayInit", "hash": "b4d287070061542893f6a2efc729076de68aa821", "variant": 3290639588, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 2358378516}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 1887471144}, "child": {"skip": 92, "offset": 124, "next": [], "symbols": [{"name": "mwOverlayInit", "hash": "2e59140dcad7086ab2c3e33146a94c0160c8d3df", "variant": 804134913, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707456}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2946760720}, "child": {"skip": 36, "offset": 48, "next": [], "symbols": [{"name": "__initialize_cpp_rts", "hash": "fde436ddea9c2c57625e180e013b4ea446bf1583", "variant": 2765367038, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 2143223824}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2143158272}, "child": {"skip": 4, "offset": 16, "next": [{"match": {"value": 2948857928}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2411987016}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__dl__FPv"}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 0}, "child": {"skip": 52, "offset": 84, "next": [], "symbols": [{"name": "__dla__FPv", "hash": "3181ee3554f384fff6186b1bea1f83a8370fc0ce", "variant": 3073578144, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "free"}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 0}, "child": {"skip": 52, "offset": 84, "next": [], "symbols": [{"name": "__dl__FPv", "hash": "3181ee3554f384fff6186b1bea1f83a8370fc0ce", "variant": 2238532635, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2948857920}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2814705736}, "child": {"skip": 116, "offset": 140, "next": [], "symbols": [{"name": "__dt__Q23std9exceptionFv", "hash": "749776d49e0b501809bbaebad5d7ab84a9a65dc7", "variant": 1870279803, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2143223840}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2143158288}, "child": {"skip": 8, "offset": 20, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "DIntr"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 60878881}, "child": {"skip": 64, "offset": 92, "next": [], "symbols": [{"name": "__dl__FPv", "hash": "df0a9e20d40af6e2d576b30f9214863f1ce57800", "variant": 10225696, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 301989895}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 60878881}, "child": {"skip": 24, "offset": 52, "next": [{"match": {"value": 268435461}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 1912608296}, "child": {"skip": 40, "offset": 100, "next": [], "symbols": [{"name": "__dt__Q23std9exceptionFv", "hash": "6bed860f7248d263d8cd4443dff77c9d8348b51f", "variant": 2130188260, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 62973985}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 1912608296}, "child": {"skip": 36, "offset": 96, "next": [], "symbols": [{"name": "__dt__Q23std9exceptionFv", "hash": "52d91f9579e5a6138da6cced32a9e5383c2ecce1", "variant": 2244650686, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 301989897}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 60878881}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 332860}, "child": {"skip": 72, "offset": 108, "next": [], "symbols": [{"name": "__dt__Q23std9exceptionFv", "hash": "ecb1024caca789cb35a1906964ca4c7e32f5801e", "variant": 4129555512, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 332860}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 72, "offset": 108, "next": [], "symbols": [{"name": "__dt__Q23std9exceptionFv", "hash": "a69b55d270105751d21fb8423d380eba747fdf0b", "variant": 2747121291, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 301989900}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 60878881}, "child": {"skip": 32, "offset": 60, "next": [{"match": {"value": 1912608296}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__dl__FPv"}}, "child": {"skip": 52, "offset": 120, "next": [], "symbols": [{"name": "__dt__Q23std9bad_allocFv", "hash": "87910af936f904765fca79a532895932eb48658f", "variant": 2296962391, "library": "mslgcc_ps2"}, {"name": "__dt__Q23std13bad_exceptionFv", "hash": "87910af936f904765fca79a532895932eb48658f", "variant": 2296962391, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 62973985}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__dl__FPv"}}, "child": {"skip": 48, "offset": 116, "next": [], "symbols": [{"name": "__dt__Q23std9bad_allocFv", "hash": "ff16778df4a27971bb699e0ef528b2c17d5bdc22", "variant": 4211947903, "library": "mslgcc_ps2"}, {"name": "__dt__Q23std13bad_exceptionFv", "hash": "ff16778df4a27971bb699e0ef528b2c17d5bdc22", "variant": 4211947903, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 301989902}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 60878881}, "child": {"skip": 104, "offset": 132, "next": [], "symbols": [{"name": "__dt__Q23std9bad_allocFv", "hash": "543f7105e6ba1001e8ae3de64f2a5a79b97a0cec", "variant": 4082954882, "library": "mslgcc_ps2"}, {"name": "__dt__Q23std13bad_exceptionFv", "hash": "543f7105e6ba1001e8ae3de64f2a5a79b97a0cec", "variant": 4082954882, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707488}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2143158288}, "child": {"skip": 108, "offset": 120, "next": [], ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(symbols": [{"name": "__dl__FPv", "hash": "07072d30bbb124d755e2411ec06d72bda9d8ca86", "variant": 476410154, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 4290707472}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2143158272}, "child": {"skip": 92, "offset": 104, "next": [], "symbols": [{"name": "__dl__FPv", "hash": "9bfe97c65baf7ee49ee8d373c63bf8d1740a259e", "variant": 2238532635, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 2143223856}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2143158304}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2142306320}, "child": {"skip": 4, "offset": 20, "next": [{"match": {"value": 1887471144}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "DIntr"}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 60878881}, "child": {"skip": 180, "offset": 212, "next": [], "symbols": [{"name": "__nw__FUi", "hash": "e76815c035dcfe74287501866c9e16ce07cfca09", "variant": 2142243340, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 60878881}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 369098762}, "child": {"skip": 112, "offset": 144, "next": [], "symbols": [{"name": "__get_typeid", "hash": "c33489b22f77d23956c269e8aed8b78e33dac6cd", "variant": 1279667939, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1887473192}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 60878881}, "child": {"skip": 108, "offset": 136, "next": [], "symbols": [{"name": "__get_typeid", "hash": "7eafd95c564e9aad809c90e06767dd79096c5848", "variant": 1329599900, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2142371872}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2142306320}, "child": {"skip": 4, "offset": 20, "next": [{"match": {"value": 2896166916}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2896166920}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 1887473192}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 1889568296}, "child": {"skip": 12, "offset": 48, "next": [{"match": {"value": 272629846}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 2382626832}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 2382954508}, "child": {"skip": 4, "offset": 68, "next": [{"match": {"value": 202815}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 604372990}, "child": {"skip": 344, "offset": 420, "next": [], "symbols": [{"name": "FindExceptionRecord__FPcP13ExceptionInfo", "hash": "0feb2565f32f869d962f7ef4d097e2ef7b6ff93c", "variant": 3558490414, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 604372990}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 202815}, "child": {"skip": 344, "offset": 420, "next": [], "symbols": [{"name": "FindExceptionRecord__FPcP13ExceptionInfo", "hash": "d6c4f8920a14f75254e1e6ecdc8832ec6f951ee8", "variant": 3558490414, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2382561292}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 2382692368}, "child": {"skip": 356, "offset": 420, "next": [], "symbols": [{"name": "FindExceptionRecord__FPcP13ExceptionInfo", "hash": "24b1cdc9ac6b7eacecf0540f1a0132412e7d2a5c", "variant": 3558490414, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 272629851}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 0}, "child": {"skip": 384, "offset": 440, "next": [], "symbols": [{"name": "FindExceptionRecord__FPcP13ExceptionInfo", "hash": "466f0c7b2eddff4242a690063bbf6622ec7807fb", "variant": 930656209, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 272629845}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 0}, "child": {"skip": 360, "offset": 416, "next": [], "symbols": [{"name": "FindExceptionRecord__FPcP13ExceptionInfo", "hash": "5633ee6dab49a7e7b20d356757e0469376f68bf3", "variant": 1304042652, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1887471144}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 1889572392}, "child": {"skip": 404, "offset": 440, "next": [], "symbols": [{"name": "FindExceptionRecord__FPcP13ExceptionInfo", "hash": "b60bf1134e3f94e88e77005154f0ae2dca6a8839", "variant": 930656209, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2946760768}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2946826312}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2410741824}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2410676288}, "child": {"skip": 104, "offset": 140, "next": [], "symbols": [{"name": "mwOverlayInit", "hash": "066961830fb9ec0db1c76ca406682c1ffd91ec6f", "variant": 3808256822, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 605093887}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 1879086632}, "child": {"skip": 84, "offset": 120, "next": [{"match": {"value": 1912612392}, "child": {"skip": 0, "offset": 124, "next": [{"match": {"value": 2409955400}, "child": {"skip": 68, "offset": 196, "next": [], "symbols": [{"name": "mwBload", "hash": "a34d38c54377a4e6799766447a8323db2595cb16", "variant": 3256199198, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 2409955400}, "child": {"skip": 0, "offset": 124, "next": [{"match": {"value": 1912612392}, "child": {"skip": 68, "offset": 196, "next": [], "symbols": [{"name": "mwBload", "hash": "c615796a3aa3f63d695c59427beb03b36039c691", "variant": 3256199198, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 614793217}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789968}, "child": {"skip": 240, "offset": 252, "next": [], "symbols": [{"name": "sceSpu2MemInit", "hash": "3ae1a450916ccaa39c0715037f9da0dd409d3359", "variant": 3626573925, "library": "libspu2m"}]}}], "symbols": []}}, {"match": {"value": 604177200}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789984}, "child": {"skip": 304, "offset": 316, "next": [], "symbols": [{"name": "scePad2GetState", "hash": "5711a71c114b4ba36a87bd4c7029079c9775a6b2", "variant": 2259534965, "library": "libpad2"}]}}], "symbols": []}}, {"match": {"value": 604177204}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789984}, "child": {"skip": 52, "offset": 64, "next": [{"match": {"value": 71303223}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 4141}, "child": {"skip": 240, "offset": 312, "next": [], "symbols": [{"name": "scePad2GetState", "hash": "0d98ca1bd8b8398d084be8854611fd1498683b3f", "variant": 2582251146, "library": "libpad2"}]}}], "symbols": []}}, {"match": {"value": 71303225}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 4141}, "child": {"skip": 248, "offset": 320, "next": [], "symbols": [{"name": "scePad2GetState", "hash": "8e1a66a78c8b996e8810fe721f1c32d6484edee3", "variant": 1459490482, "library": "libpad2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 816120063}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707520}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8423469}, "child": {"skip": 268, "offset": 288, "next": [], "symbols": [{"name": "sceSynthesizerChangePartModuration", "hash": "1d47e9207fa9c360083162cf1b09fb2ef4979ac5", "variant": 253366871, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": 8423469}, "child": {"skip": 80, "offset": 100, "next": [], "symbols": [{"name": "sceSynthesizerChangePartHsExpression", "hash": "45a21fa171fb1eabe554343f69e8f3ab7c5d61ef", "variant": 3957033564, "library": "libssyn"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 872801825}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724464}, "child": {"skip": 24, "offset": 36, "next": [{"match": {"value": 610467840, "relocation": {"type": "MIPS_LO16", "symbol": "_spuCBThread"}}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 84, "offset": 128, "next": [], "symbols": [{"name": "sceSpu2CallbackInit", "hash": "6d1d9fda0115181df4b845ecceb980aeaf16cc90", "variant": 2746370247, "library": "librspu2"}]}}], "symbols": []}}, {"match": {"value": 1006960672}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 610467840, "relocation": {"type": "MIPS_LO16", "symbol": "_spuCBThread"}}, "child": {"skip": 84, "offset": 128, "next": [], "symbols": [{"name": "sceSpu2CallbackInit", "hash": "1b71c36dae3e3be5146d71a401166fef4518455f", "variant": 1869193471, "library": "librspu2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604110860}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789968}, "child": {"skip": 224, "offset": 236, "next": [], "symbols": [{"name": "_PsceSkSsSTRADPCM_ATick2", "hash": "0c263b15880d3ffb6d74c2a7a282c18e37d2141e", "variant": 2507400970, "library": "libsk"}]}}], "symbols": []}}, {"match": {"value": 8439853}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289986624}, "child": {"skip": 872, "offset": 884, "next": [], "symbols": [{"name": "_scePFontRefLoadImage", "hash": "a5ebb2113d65f44d051b56b11f995f763c2fcf80", "variant": 0, "library": "libpfont"}]}}], "symbols": []}}, {"match": {"value": 10491949}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 610795775}, "child": {"skip": 312, "offset": 324, "next": [], "symbols": [{"name": "_sceMcFatWriteFatData", "hash": "4b83a0fe8b4ea66116397237637b50eb7b8c2da4", "variant": 2050650119, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 4289921064}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1007910911}, "child": {"skip": 436, "offset": 448, "next": [], "symbols": [{"name": "_SetEntryByPos", "hash": "7c5a2fb3790a173fd26b9656dbbc93010f2d4cb2", "variant": 3072233725, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 12601389}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855520}, "child": {"skip": 212, "offset": 224, "next": [], "symbols": [{"name": "Constant", "hash": "4b95fd3508808cf91dfc06adf10ad642f2ac4b9b", "variant": 3208531689, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 604176448}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855520}, "child": {"skip": 552, "offset": 564, "next": [], "symbols": [{"name": "sppp_lcp_tlu", "hash": "50a2d56f2674103ea1f3c3d3b4394c7b3f1db95c", "variant": 2038192290, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 604176387}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855520}, "child": {"skip": 252, "offset": 264, "next": [], "symbols": [{"name": "sppp_phase_network", "hash": "201cf961f82ab5cb64bbcbb2cc59947137fdc7c0", "variant": 1984694277, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 14696493}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855536}, "child": {"skip": 192, "offset": 204, "next": [], "symbols": [{"name": "__sceEENetsl_uncompress_tcp", "hash": "4ab566e838101f6e7a29a8cc7544d532aac73eb8", "variant": 1341254835, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 604307457}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855536}, "child": {"skip": 292, "offset": 304, "next": [], "symbols": [{"name": "__sceEENetrevarprequest", "hash": "a540eb90cbde6d0960a3f2c7ea7de6e2de20415c", "variant": 294646320, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 8400941}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707520}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289921072}, "child": {"skip": 280, "offset": 296, "next": [], "symbols": [{"name": "__sceEENetin_savemkludge", "hash": "6464e5904ed6fe5254a7e327830baf1c22cab0c9", "variant": 2753916135, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289790000}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 60825645}, "child": {"skip": 100, "offset": 116, "next": [], "symbols": [{"name": "asn1_add_error", "hash": "e50bbed1fe3b37fe6a94c25d425097da27f57c6c", "variant": 4121358085, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724448}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289790000}, "child": {"skip": 192, "offset": 204, "next": [], "symbols": [{"name": "__sceEENetin_delmulti", "hash": "eb616a1656f6df1c8507c74f2b5ec79861bd936c", "variant": 4079873529, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 604438529}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289921072}, "child": {"skip": 292, "offset": 304, "next": [], "symbols": [{"name": "ip_mloopback", "hash": "db6ece0683bb989fd92b88ac5ab90e570407e134", "variant": 1354270937, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 604373016}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289790000}, "child": {"skip": 64, "offset": 76, "next": [], "symbols": [{"name": "create_semafore", "hash": "531fb786549a55461d4294e05854316862c4ed52", "variant": 3712678725, "library": "libeenet"}, {"name": "create_start_sema", "hash": "531fb786549a55461d4294e05854316862c4ed52", "variant": 3712678725, "library": "libeenet"}, {"name": "create_start_sema", "hash": "531fb786549a55461d4294e05854316862c4ed52", "variant": 3712678725, "library": "eenetctl"}]}}], "symbols": []}}, {"match": {"value": 604373012}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289790000}, "child": {"skip": 116, "offset": 128, "next": [], "symbols": [{"name": "_sce_eenet_sppp_state", "hash": "6f921b7d378bfb4b38e72b3ddb0929103e66e2ad", "variant": 1811154577, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 10498093}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789984}, "child": {"skip": 244, "offset": 256, "next": [], "symbols": [{"name": "dhclient_arp_resolv", "hash": "934aacbb79e1e7470b2bd9baeaa169630f1f4422", "variant": 1767353261, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 604176399}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289921072}, "child": {"skip": 320, "offset": 332, "next": [], "symbols": [{"name": "handle_str", "hash": "777f7a9469a9583c735f7344c42031df228df167", "variant": 3694179449, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 612696170}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289790000}, "child": {"skip": 88, "offset": 100, "next": [], "symbols": [{"name": "generate_xid", "hash": "e6c5945b445927323f861f6758339e3800b0e832", "variant": 2463944036, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 10285}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724448}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 604373024}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 248, "offset": 268, "next": [], "symbols": [{"name": "pppoe_create", "hash": "6a426eab64cf46861bf49c3bd7bcb9e84eeab04b", "variant": 3520104462, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 604373012}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 204, "offset": 224, "next": [], "symbols": [{"name": "ppp_asyncconf", "hash": "1635999e8d0abdd19adb4209a63895eee7f52128", "variant": 2812944600, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {")PS2SDB", 8192}, + std::string_view{R"PS2SDB(value": 4289789984}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8423469}, "child": {"skip": 360, "offset": 376, "next": [], "symbols": [{"name": "transaction", "hash": "3150563efd5365b4da4c610f01c6b232194f1ee1", "variant": 602938947, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 604373296}, "child": {"skip": 108, "offset": 124, "next": [], "symbols": [{"name": "ssl2_clear", "hash": "586991ea641f0c00e2bd559259a9c6d81b2c5032", "variant": 2019607180, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 12591149}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724464}, "child": {"skip": 44, "offset": 56, "next": [{"match": {"value": 2382627156}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 876740612}, "child": {"skip": 56, "offset": 120, "next": [], "symbols": [{"name": "ralarm_handler", "hash": "82e157a9493b97af375ac2bac8a4eedab800b4d2", "variant": 1108465532, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2382627164}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 876740612}, "child": {"skip": 56, "offset": 120, "next": [], "symbols": [{"name": "salarm_handler", "hash": "4bda30c947eb94eba6839bc611cb0674491d5a09", "variant": 1108465532, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604372993}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855536}, "child": {"skip": 120, "offset": 132, "next": [], "symbols": [{"name": "i2d_ASN1_BOOLEAN", "hash": "bda1b18110c603fee1d847a9b9f8a6e7de391aeb", "variant": 3543002334, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 12599341}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289790000}, "child": {"skip": 172, "offset": 184, "next": [], "symbols": [{"name": "d2i_ASN1_BOOLEAN", "hash": "733e0071b87cc987f0da9c4efe980fa55bf62a25", "variant": 233675771, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 681705485}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289921072}, "child": {"skip": 348, "offset": 360, "next": [], "symbols": [{"name": "sock_ctrl", "hash": "278c6a861c80196e9970038243d8a7f3cfde2990", "variant": 404136334, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 10502189}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707520}, "child": {"skip": 244, "offset": 256, "next": [], "symbols": [{"name": "MD5_Transform", "hash": "b262347f72b212f0fa5847c53a466dccec6babd4", "variant": 4072024966, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 14381}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855536}, "child": {"skip": 116, "offset": 128, "next": [], "symbols": [{"name": "i2d_RSAPublicKey", "hash": "6f3e0a086ae84b371a818e2684f23579c8d9f035", "variant": 3009121398, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604115312}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724432}, "child": {"skip": 504, "offset": 516, "next": [], "symbols": [{"name": "ssl3_send_client_certificate", "hash": "b789f781c9966b168c17d797856d4b2a033c5634", "variant": 258932347, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604307477}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289921072}, "child": {"skip": 368, "offset": 380, "next": [], "symbols": [{"name": "ssl3_dispatch_alert", "hash": "833f502d754f6f70fb71110caa3cd9107a965011", "variant": 1646524620, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 16783405}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 188, "offset": 200, "next": [], "symbols": [{"name": "sceInetRecv", "hash": "a31abc22a03f1df314c5c54a9fc96c095efa6a2f", "variant": 3725651509, "library": "libnet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666763136}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289790048}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289724496}, "child": {"skip": 84, "offset": 100, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "scePrintf"}}, "child": {"skip": 0, "offset": 104, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 164, "offset": 272, "next": [], "symbols": [{"name": "sceSifRebootIop", "hash": "bf5d948151d24286291e5161702db4d49bf65643", "variant": 4259243123, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "printf"}}, "child": {"skip": 0, "offset": 104, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 164, "offset": 272, "next": [], "symbols": [{"name": "sceSifRebootIop", "hash": "bf5d948151d24286291e5161702db4d49bf65643", "variant": 3178499339, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290052176}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289986624}, "child": {"skip": 236, "offset": 252, "next": [], "symbols": [{"name": "InitSystemCallTableAddress", "hash": "65617944971c8e522ac2ff1e785b86eead94e4fc", "variant": 473354513, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 4289921088}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 264, "offset": 280, "next": [], "symbols": [{"name": "SetArg", "hash": "cb69d9bcbcf0542cc0a196c06ce6b86c68678596", "variant": 1248819748, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 4290052192}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289986640}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 609550336, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289921088}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 10526765}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4289789984}, "child": {"skip": 248, "offset": 280, "next": [], "symbols": [{"name": "sceMcDelete", "hash": "7771c7f4a8c36c1671caa63cf786a36b18986156", "variant": 1989756519, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 8429613}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4289789984}, "child": {"skip": 120, "offset": 152, "next": [{"match": {"value": 1007222784, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 156, "next": [{"match": {"value": 1007353856, "relocation": {"type": "MIPS_HI16", "symbol": "mceSifRpcEndFunc"}}, "child": {"skip": 124, "offset": 284, "next": [], "symbols": [{"name": "sceMcDelete", "hash": "657c31b9f33f75419e21bb82db490f424cb9fea1", "variant": 2740997776, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 2893217796}, "child": {"skip": 0, "offset": 156, "next": [{"match": {"value": 1007222784, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 124, "offset": 284, "next": [], "symbols": [{"name": "sceMcDelete", "hash": "13e8f7f3c80d981c63998e8d4cf6f30be500480a", "variant": 3305155459, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8431661}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289855536}, "child": {"skip": 340, "offset": 364, "next": [], "symbols": [{"name": "DecodeTim2", "hash": "3bc97cbd8938f09b126f76ea546ac6147c2eb312", "variant": 3767710583, "library": "libhip"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289986640}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289921088}, "child": {"skip": 16, "offset": 32, "next": [{"matc)PS2SDB", 8192}, + std::string_view{R"PS2SDB(h": {"value": 12619821}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 4290707568}, "child": {"skip": 232, "offset": 272, "next": [], "symbols": [{"name": "sceMcReadFast", "hash": "ac85c954d5dc0ad5c5513f19c3ecac8f3cd29258", "variant": 2557577550, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 10522669}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 4290707568}, "child": {"skip": 216, "offset": 256, "next": [], "symbols": [{"name": "sceMcWriteFast", "hash": "015d103d64b1b1c14190b4164f030b30d0e95419", "variant": 1550162509, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724464}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289921120}, "child": {"skip": 280, "offset": 296, "next": [], "symbols": [{"name": "_extensionAndUserData", "hash": "0e444613c572ae47843223377229547c00525888", "variant": 4243360631, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 4290117728}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 604241924}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855520}, "child": {"skip": 536, "offset": 556, "next": [], "symbols": [{"name": "_pictureCodingExtension", "hash": "df4d21b288c506051580b71ccc8dd36d9c4e3b02", "variant": 1458144658, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 4290052176}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4239405}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289921072}, "child": {"skip": 352, "offset": 376, "next": [], "symbols": [{"name": "_decodeOrSkipField", "hash": "d29bccf72f144a041f5a0edd320d83e5ff4df860", "variant": 463669800, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 14725165}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289986624}, "child": {"skip": 128, "offset": 152, "next": [{"match": {"value": 604110853}, "child": {"skip": 0, "offset": 156, "next": [{"match": {"value": 1006797057}, "child": {"skip": 36, "offset": 196, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceMcCoreSetAlaram"}}, "child": {"skip": 0, "offset": 200, "next": [{"match": {"value": 2920677392}, "child": {"skip": 44, "offset": 248, "next": [], "symbols": [{"name": "sceMc2ReadFileAsync", "hash": "62e03fd136291f25e457068f5c55b38ead77fff8", "variant": 3432187289, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceMcCoreExecSubs"}}, "child": {"skip": 0, "offset": 200, "next": [{"match": {"value": 2920677392}, "child": {"skip": 44, "offset": 248, "next": [], "symbols": [{"name": "sceMc2ReadFileAsync", "hash": "62e03fd136291f25e457068f5c55b38ead77fff8", "variant": 1431475269, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604110854}, "child": {"skip": 0, "offset": 156, "next": [{"match": {"value": 1006797057}, "child": {"skip": 36, "offset": 196, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceMcCoreSetAlaram"}}, "child": {"skip": 0, "offset": 200, "next": [{"match": {"value": 2920677392}, "child": {"skip": 44, "offset": 248, "next": [], "symbols": [{"name": "sceMc2WriteFileAsync", "hash": "ea949d01a8f9d1ec6da2b7b027f177bd14d539f7", "variant": 3432187289, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceMcCoreExecSubs"}}, "child": {"skip": 0, "offset": 200, "next": [{"match": {"value": 2920677392}, "child": {"skip": 44, "offset": 248, "next": [], "symbols": [{"name": "sceMc2WriteFileAsync", "hash": "ea949d01a8f9d1ec6da2b7b027f177bd14d539f7", "variant": 1431475269, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289986624}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4239405}, "child": {"skip": 344, "offset": 364, "next": [], "symbols": [{"name": "_decodeOrSkipField", "hash": "13241fbaafe783398d8f16be9352a89eee263d2e", "variant": 3000994448, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724448}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 604176386}, "child": {"skip": 176, "offset": 192, "next": [{"match": {"value": 604307480}, "child": {"skip": 0, "offset": 196, "next": [{"match": {"value": 2382626816}, "child": {"skip": 140, "offset": 340, "next": [], "symbols": [{"name": "_csc_storeRefImage", "hash": "39cdc27cfbf867de49932a6b74848e9d8bc352bb", "variant": 2620224842, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 0}, "child": {"skip": 0, "offset": 196, "next": [{"match": {"value": 604307480}, "child": {"skip": 144, "offset": 344, "next": [], "symbols": [{"name": "_csc_storeRefImage", "hash": "f133f414381dab4648aff15a252b8af7bba9ccbf", "variant": 1541191362, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290117728}, "child": {"skip": 172, "offset": 188, "next": [], "symbols": [{"name": "sceEENetGetDeviceInfo", "hash": "7ac49b2e50196a7a76a4f042188eaea4b4b12420", "variant": 486140454, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290117728}, "child": {"skip": 204, "offset": 220, "next": [], "symbols": [{"name": "sceEENetCtlGetErrorCode", "hash": "b8996ba64d8257db44e677a53ee346760c824bec", "variant": 3291353337, "library": "eenetctl"}]}}], "symbols": []}}, {"match": {"value": 4290707568}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2357395540}, "child": {"skip": 232, "offset": 248, "next": [], "symbols": [{"name": "tls1_generate_key_block", "hash": "824959cc6edd7a481bc274d664c3df056204fac9", "variant": 1883776504, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724496}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289790048}, "child": {"skip": 12, "offset": 28, "next": [{"match": {"value": 272629769}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 611385344, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 612630529}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 2156003328}, "child": {"skip": 204, "offset": 248, "next": [], "symbols": [{"name": "sceSifRebootIop", "hash": "9ff31ad5641f76f1abccc3e1cc5813b62d901a7c", "variant": 3277051357, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 0}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 612630529}, "child": {"skip": 204, "offset": 248, "next": [], "symbols": [{"name": "sceSifRebootIop", "hash": "5394ae326363de7c874d9aab65a654d5bcc4e021", "variant": 3277051357, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 272629771}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 611385344, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 96, "offset": 132, "next": [{"match": {"value": 2183266304}, "child": {"skip": 0, "offset": 136, "next": [{"match": {"value": 60825645}, "child": {"skip": 116, "offset": 256, "next": [], "symbols": [{"name": "sceSifRebootIop", "hash": "24506c42b358da9f84466ded4fe458178660c5b9", "variant": 1571989038, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 2183331840}, "child": {"skip": 0, "offset": 136, "next": [{"match": {"value": 60825645}, "child": {"skip": 116, "offset": 256, "next": [], "symbols": [{"name": "sceSifRebootIop", "hash": "dd066cf7ac3df695a9595b0c79630868868a66f7", "variant": 1571989038, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": 4290052192}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1008009216, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 68, "offset": 84, "next": [{"match": {"value": 272826457}, "child": {"skip": 0, "offset": 88, "next": [{"match": {"value": 4141}, "child": {"skip": 388, "offset": 480, "next": [], "symbols": [{"name": "sceCdRead", "hash": "029665df153379309b5e4b64b9d6e0b08e81965a", "variant": 3482955398, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 272826458}, "child": {"skip": 0, "offset": 88, "next": [{"match": {"value": 4141}, "child": {"skip": 392, "offset": 484, "next": [], "symbols": [{"name": "sceCdRead", "hash": "ed57156a499cb5b83ed7228ff71b291e5778ce57", "variant": 4260407540, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290183280}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 818085887}, "child": {"skip": 492, "offset": 508, "next": [], "symbols": [{"name": "_id2type", "hash": "10fa70f1f5bb1d7ddcf7d8c5d8f0783dda91553e", "variant": 2831478793, "library": "libmpeg"}, {"name": "_sceMpegId2type", "hash": "10fa70f1f5bb1d7ddcf7d8c5d8f0783dda91553e", "variant": 2831478793, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2407661568, "relocation": {"type": "MIPS_GPREL16", "symbol": "_theSceMpeg"}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290117728}, "child": {"skip": 416, "offset": 428, "next": [], "symbols": [{"name": "_dispRefImageField", "hash": "5747159fd3a58288fb3d0cf2b45771af8389cd01", "variant": 1948217443, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 338944}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289921072}, "child": {"skip": 308, "offset": 320, "next": [], "symbols": [{"name": "sceGsResetGraph", "hash": "cf717a112b123d8a95d1c3d0e6b736e7d655af1e", "variant": 2480524744, "library": "libgraph"}]}}], "symbols": []}}, {"match": {"value": 4290117728}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10530861}, "child": {"skip": 140, "offset": 156, "next": [], "symbols": [{"name": "sceDevConsRef", "hash": "7b02934fa2ab74d28279976ada26043da3c182bc", "variant": 397642882, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 4290052176}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1008074752, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289986624}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1008009216, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 164, "offset": 188, "next": [], "symbols": [{"name": "_Cdvd_cbLoop", "hash": "7e793a9bb1f0bff868d0093baadd38ce0707dccf", "variant": 3134906013, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 4290707568}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1008009216, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 260, "offset": 284, "next": [], "symbols": [{"name": "pppoe_input", "hash": "70cf67d4cb3306bed43f7010df3b8f5b02135d61", "variant": 2933953644, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10530861}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289986624}, "child": {"skip": 452, "offset": 472, "next": [], "symbols": [{"name": "printfloat", "hash": "34781667424032b2c3dbcdc5109d60f56dcaff26", "variant": 3869370735, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 21016621}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289986624}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8431661}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289921072}, "child": {"skip": 88, "offset": 116, "next": [{"match": {"value": 4202541}, "child": {"skip": 0, "offset": 120, "next": [{"match": {"value": 2357395512}, "child": {"skip": 84, "offset": 208, "next": [], "symbols": [{"name": "sceSifRegisterRpc", "hash": "7e66c91ced63c87cbffdf9fb1dafbb6a4d6e7104", "variant": 4203507131, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 4200493}, "child": {"skip": 0, "offset": 120, "next": [{"match": {"value": 2355232824}, "child": {"skip": 84, "offset": 208, "next": [], "symbols": [{"name": "sceSifRegisterRpc", "hash": "629114184f8c7c534732190db1d749042c1c6572", "variant": 4203507131, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 18917421}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289921072}, "child": {"skip": 252, "offset": 280, "next": [], "symbols": [{"name": "sceHiGsTex1Regs", "hash": "ed441fd5cc02066a095e77883bda731144c3472c", "variant": 2179364924, "library": "libhig"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8433709}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289986624}, "child": {"skip": 4, "offset": 24, "next": [{"match": {"value": 4290707568}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 10526765}, "child": {"skip": 20, "offset": 52, "next": [{"match": {"value": 1006796800}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 268435506}, "child": {"skip": 240, "offset": 300, "next": [], "symbols": [{"name": "SetTimerAlarm", "hash": "71f5fd41393b08fe898d588486b081b6a43da80f", "variant": 3649265351, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006797062}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 268435506}, "child": {"skip": 240, "offset": 300, "next": [], "symbols": [{"name": "sceTimerSetAlarm", "hash": "d2fd5067304453abe96e56f59903bd903f6d3a33", "variant": 84582676, "library": "libtimer"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289921072}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 10526765}, "child": {"skip": 328, "offset": 360, "next": [], "symbols": [{"name": "ssl_bytes_to_cipher_list", "hash": "403fcd817e204bdb67681e3c82dc03de2e085fd9", "variant": 1288678601, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 605421602}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289986624}, "child": {"skip": 228, "offset": 248, "next": [], "symbols": [{"name": "_mbAddressIncrement", "hash": "986b77b33bbc5ad31fb97fead0e18fa691b34c82", "variant": 1127872890, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 14725165}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289986624}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 12625965}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289921072}, "child": {"skip": 672, "offset": 700, "next": [], "symbols": [{"name": "__sceEENetsbappendaddr", "hash": "6c857eaf936d8aa9a98ea58bedc8144e2807d5ae", "variant": 3563040159, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 8431661}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289921072}, "child": {"skip": 404, "offset": 432, "next": [], "symbols": [{"name": "getline", "hash": "edc5dc12d7b4d148e5d48e4c855b4818c45c4668", "variant": 3247026910, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 45101}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289986624}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8431661}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289921072}, "child": {"skip": 204, "offset": 232, "next": [], "symbols": [{"name": "__sceEENetsysctl_string", "hash": "0e9a0a6648c73f923277f8a0f70033c27b43d8ef", "variant": 1625717130, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 12625965}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289921072}, "child": {"skip": 100, "offset": 128, "next": [{"match": {"value": 604307680}, "child": {"skip": 0, "offset": 132, "next")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: [{"match": {"value": 268435506}, "child": {"skip": 332, "offset": 468, "next": [], "symbols": [{"name": "X509_load_cert_file", "hash": "c93705ade633a8e0b8bb3c77aea6e50911bea8f5", "variant": 3789848896, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604307681}, "child": {"skip": 0, "offset": 132, "next": [{"match": {"value": 268435506}, "child": {"skip": 332, "offset": 468, "next": [], "symbols": [{"name": "X509_load_crl_file", "hash": "324d8ca6ac9e772d72f2dfdcd0bd39aae6f243f4", "variant": 852818912, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4290707568}, "child": {"skip": 1220, "offset": 1244, "next": [], "symbols": [{"name": "get_server_hello", "hash": "775adf5b371d50bd05a2e2abda76377d112f8ae3", "variant": 4169012304, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 16822317}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289921072}, "child": {"skip": 576, "offset": 596, "next": [], "symbols": [{"name": "__sceEENetroute_usrreq", "hash": "482682f8740a6327b2f9f16bf4e2d4128ff54e5a", "variant": 3521335701, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 12628013}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289986624}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 10528813}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 14721069}, "child": {"skip": 240, "offset": 272, "next": [], "symbols": [{"name": "sceEENetSetsockopt", "hash": "ee92d9e975cfedd5f9013e48daa8e572c043a11c", "variant": 3334163403, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 14721069}, "child": {"skip": 312, "offset": 344, "next": [], "symbols": [{"name": "EVP_EncryptUpdate", "hash": "78c3e0699811b725b62253b8cdff7fba7a1645bb", "variant": 781993451, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 18917421}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289921072}, "child": {"skip": 568, "offset": 596, "next": [], "symbols": [{"name": "ssl3_get_message", "hash": "ac662b70b4e75e34396bd719eeffa30daf338ef8", "variant": 4271335294, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 605421578}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289986624}, "child": {"skip": 348, "offset": 368, "next": [], "symbols": [{"name": "buffer_gets", "hash": "0294da099f9791c9799ed79aafaf417279353b1d", "variant": 2360931107, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 1008078607}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 919998223}, "child": {"skip": 16, "offset": 36, "next": [{"match": {"value": 1007943935}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 915669247}, "child": {"skip": 388, "offset": 432, "next": [], "symbols": [{"name": "des_encrypt3", "hash": "92b322934a5e0ef4e988cff147310c1c2c1f154e", "variant": 3966644692, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 10526765}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 4289855520}, "child": {"skip": 392, "offset": 436, "next": [], "symbols": [{"name": "des_decrypt3", "hash": "07e77e5c605d51d00c91007cd16b46edf6044444", "variant": 3640662173, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289986624}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 12628013}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289921072}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 10526765}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 47487000}, "child": {"skip": 28, "offset": 56, "next": [{"match": {"value": 268435500}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 4141}, "child": {"skip": 212, "offset": 276, "next": [], "symbols": [{"name": "fread", "hash": "0109727b58a529c07453f0f21c3a33cacd591323", "variant": 196256191, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 268435502}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 4141}, "child": {"skip": 220, "offset": 284, "next": [], "symbols": [{"name": "fread", "hash": "62489a6583b10263235b0ca908e2cf66090d17a1", "variant": 3913880746, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 14721069}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289855520}, "child": {"skip": 336, "offset": 364, "next": [], "symbols": [{"name": "EVP_EncodeUpdate", "hash": "597f2399f11d222769b8f7ad231a4a378b3f9eec", "variant": 3714938111, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8433709}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 434499}, "child": {"skip": 352, "offset": 376, "next": [], "symbols": [{"name": "_lshift", "hash": "7710e58e3f8dcbd8a813affb42554be9cc43af5a", "variant": 3465968211, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4290707568}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4290052176}, "child": {"skip": 680, "offset": 704, "next": [], "symbols": [{"name": "ssl3_check_cert_and_algorithm", "hash": "e9e9850f209433cc9335f2353006493ab41dfff6", "variant": 421937331, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289921072}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10530861}, "child": {"skip": 320, "offset": 336, "next": [], "symbols": [{"name": "_pack_header", "hash": "5fbefa8aca759bfa00e6957333c10c34a4e9cae0", "variant": 1713022180, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8433709}, "child": {"skip": 240, "offset": 256, "next": [], "symbols": [{"name": "sceEENetSifSendCmd", "hash": "9555660f81691da22933aa547f39fb54585696f8", "variant": 1204017039, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 619184127}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290117728}, "child": {"skip": 344, "offset": 356, "next": [], "symbols": [{"name": "sceDevConsFrame", "hash": "356ccbffbb73a125ce77d1f7c00957c73c29b5ed", "variant": 2619706069, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 4289986672}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 8429613}, "child": {"skip": 164, "offset": 176, "next": [], "symbols": [{"name": "sceVu0CameraMatrix", "hash": "2fe4404763f0a0c043eabc2ef5b7fc913d9ce669", "variant": 414460111, "library": "libvu0"}]}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 8423469}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290117728}, "child": {"skip": 200, "offset": 216, "next": [], "symbols": [{"name": "topThread", "hash": "044cd0bf2d8de3705bfbae1353d218339f85818c", "variant": 921872263, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10520621}, "child": {"skip": 388, "offset": 404, "next": [], "symbols": [{"name": "ShapeMakeVertexPacket", "hash": "dbb81c91d32af3d625484b8f0bb7f99689f7cb39", "variant": 4217738437, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 4290707568}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8423469}, "child": {"skip": 296, "offset": 312, "next": [], "symbols": [{"name": "smap_start", "hash": "e5512ac2245bedf080f2f55692d3aab1f6c3b520", "variant": 1262879823, "library": "ent_smap"}]}}], "symbols": []}}, {"match": {"value": 4290117728}, "child": {"skip": 0, "offset": 12, "next": [{"match": {")PS2SDB", 8192}, + std::string_view{R"PS2SDB(value": 8423469}, "child": {"skip": 404, "offset": 420, "next": [], "symbols": [{"name": "ssl2_write", "hash": "a1731208e9d86ed91793a6a6f5270a285708b6a7", "variant": 29587722, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724496}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1007681536, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 8, "offset": 20, "next": [{"match": {"value": 473956380}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289790048}, "child": {"skip": 40, "offset": 68, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 136, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "454c268a15f4f06f0df8709d1609c03becf4353f", "variant": 79760821, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006960671}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 4, "offset": 80, "next": [{"match": {"value": 614794864}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "6fca9555c4c6755d7caee66e6fbf1b3dbfe1030c", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614808816}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "940d01ea8312d5784432f94ef7f75f0cd6869374", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006960703}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 4, "offset": 80, "next": [{"match": {"value": 614850032}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "f8f0e662bb94ed775dfc204a1689cf8e3f572af7", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614808304}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "e01c4e833f8b9d829247f7d046fba92e258f65ad", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614801648}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "8f11c20311f5de28b28bb8a05072c9de64cfb40e", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614831856}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "09a246bb11263b8e73b01dc8413776ffb1e62858", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614849776}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "19b61797166c85abbb07d386888b797c72d28678", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006960680}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 4, "offset": 80, "next": [{"match": {"value": 614855664}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "22eb367a38691047cbd2cb09d0becb1d7ec12117", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614810096}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "fd90ddea458e90143989a04c35d67725f1a7151d", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614837616}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "f2ebe7198d1e9b8c8d6500be07a8fdc02b028ff8", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614840816}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "18289b7fbbdd25ce5654c41487438188d5587d03", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614851056}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "2a064e072db71f1266a3eac7ef92642f4165d857", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614814960}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "ca10ce0247fbd64f99df51565044053960f35037", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614835056}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "7408d676b9a1bfe853bb27b74e647269844d15d8", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006960661}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 4, "offset": 80, "next": [{"match": {"value": 614831088}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "9415e18c76ce959d792917a9de1aab213a2997c3", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614793968}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "6f3f79d1e5ea965d0e6e1af8f86bb50f6a7f7cb9", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006960675}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 4, "offset": 80, "next": [{"match": {"value": 614844912}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "b13738ea00e3bd46b5b443172ba282f16195b6e8", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614842352}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "5c177fcef0eafc7210838eff7617e3ca039eb49f", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614801648}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "8dbac72218e51d537a07fd89e1a0e8c9dfad4a97", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"ma)PS2SDB", 8192}, + std::string_view{R"PS2SDB(tch": {"value": 614845552}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "9d09bfc59afca6c3632571a511318492defaf13f", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614821744}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "cde398aea3e8f0a1df27f914c62992c6123891ec", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614844400}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "c3021f94f7c506bdfb3ddd9598a3ac2a12067a2b", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006960677}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 4, "offset": 80, "next": [{"match": {"value": 614814576}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "45376a42882a5af4c47093629d72564ab510c233", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614805616}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "a11192f54f739742c3b0e8448aa6c72a8a811d1c", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614825072}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "dddab5e78fa95d3fdc8f9ba96f832057551c4c13", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614825456}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "746a7b6ba0b13800acba8c5563638eaad570a338", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614806768}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "39d71803fa4a94402ef0fc209b2689259d884581", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614831600}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "4fa8bde09506dfbd83ee3d1824d755dc4a943604", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006960662}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 4, "offset": 80, "next": [{"match": {"value": 614823280}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "987bb0a02cded6366a60e92cbb6c510206f31270", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614811504}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "8a384c80991750d58dc6a5c1386b751b02d2add5", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614839408}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "ffec19c2ec80bc30be608aa638576e0e51c7e0c1", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614802544}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "7d5c258b3e43d536ddd2681961797c80f2de36cc", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614837616}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "9db9720a828da0ad788f04d15cc77357c50cdceb", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614812272}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "f61f2439729b5f9f491c124c97b57831d6a93ed8", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006960663}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 4, "offset": 80, "next": [{"match": {"value": 614827760}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "d9633de86470ba3c12d32ca86b2415015a7a7f00", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614833264}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "1257ed6248dc736128525bbd41e6295c0a1914ce", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006960705}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 4, "offset": 80, "next": [{"match": {"value": 614836464}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "d853eee04d8f72583753ab6b86635d5cb5b66baa", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614806512}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "7aac886e525987cb48025f19404b7c5333257350", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614850416}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "aa552faa2262179e7909d6a59f5a55f9e0931df4", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006960679}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 4, "offset": 80, "next": [{"match": {"value": 614832624}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "720f3ad4934d3941cbf22341aeda6a5a515b28dd", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614856432}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "9abbc1c61c9b1ea642402ac1aa24dfcaded5288b", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614802160}, "child": {"skip": 0, "offset": 84)PS2SDB", 8192}, + std::string_view{R"PS2SDB(, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "5de2df9de33e5130e409afd40ccb026cff7e18a6", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006960724}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 136, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "065a1c6b1c8ee5da7649e15653cb60df60ef5a91", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006960726}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 4, "offset": 80, "next": [{"match": {"value": 614847600}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "7f24075e56f37c7d309c0133cb9cde3eef0a57fc", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614830832}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "5238d0439ee0573e23d5dbcd077f16607b8445ed", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614849776}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "9dc78753e9727c85ac49e39e25a122c79bc67920", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006960736}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 136, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "3cccada33c0c7247c1c6625b27c81b5375d1cd2d", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006960695}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 4, "offset": 80, "next": [{"match": {"value": 614826736}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "525c04cf02fe47fa99ed26e99bf2fe8329cd11cc", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614809072}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "274eb51b32c5e827d82a40671fbd4117193794cc", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614812784}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "14d058a362e5efff718007087713b3df937a6355", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614814704}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "393b8e4289aab9398399924a97962ad542e19596", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006960685}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 4, "offset": 80, "next": [{"match": {"value": 614844912}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "cc3dbaeee3c711618f3b9e545a41008e8fdf406a", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614858608}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "5168f959a11baca9505c40ee0c6db9097f04cb32", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614803952}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "ad36e25071610deb647e9872526d6d554a4be010", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614834288}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "4a601a38e9d180fdf3d44f2f3135ab193f115c2b", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006960669}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 4, "offset": 80, "next": [{"match": {"value": 614837104}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "488746396ee20e9486ffefbf8151471a5a822b22", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614850928}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "0d9e00349b4f645adef6e348852f7ae1f2f5727d", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006960684}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 4, "offset": 80, "next": [{"match": {"value": 614798192}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "ba2f9d46c87fde4433efe6157cfd968a30b80dff", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614856944}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "da7c1fc7145799652479e64116ac6ab4ff4cc27c", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614851440}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "7e09e6c7acab16315c8b9a87f9be8afecab037e7", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614851824}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "49c4f87fd939340761d414b6dbe7371c6e5c488c", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006960704}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 4, "offset": 80, "next": [{"match": {"value": 614840304}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "8224b0e4046df03cd08901ee82998aefb28eadc2", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614844016}, "child": {"skip": 0, "offset": 84, ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "37dbe33a38e9ad815ac25bcfe4b67f7841be88ff", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614815728}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "56d726e4c45bfb35507db0b17138ad5277033c13", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006960673}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 4, "offset": 80, "next": [{"match": {"value": 614842736}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "823aae543d13386627ed6fc92b1c08ad78a66df8", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614852208}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "8319b2b829399f291520206b08c062dcf1bacde7", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614837744}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "51f2b9dd8c5502f08ed5748f62925ca3c013a6b8", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614834160}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "65c43c730066e0b2943d29688aae3c2ff1d43023", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614813808}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "b574e44352f414f16d5e0266e13bdcea0e3036ba", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614795376}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "772562a0ea6be526c2f44cfa5806741c62674f1d", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614841072}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "aeb08acc467edb477cf062162703fc4b84e4e037", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006960687}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 4, "offset": 80, "next": [{"match": {"value": 614794736}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "a90360b9811be300eab97d49b2c31303c4c98199", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614820592}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "e4c5f9b34d56262aa2026d5ffc9c8b8ac69a6f17", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614842224}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "77353b55a585cc4deeb1b8d66652cf1d6483c385", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614794480}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "b901d0bdd19b0c79c4b2f0ddb315548700cbda36", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006960701}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 4, "offset": 80, "next": [{"match": {"value": 614810608}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "114b5dda933313564539bfd7490ab2bedef0b9c7", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614801264}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "3c785ff6b6e91fc7904c38e4210f8e6fab2b5d86", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614850800}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "c14fb55785516b59a6e833cdf122c86c5f43ce37", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614837232}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "640bc637210585fed15614a9306f1ebc3a713d21", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614815856}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "4e8be4ff6d167754f19d9147596978752a0d22d7", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614838128}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "03edabbc364e64975dc56b8e24d0205768e10717", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006960674}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 4, "offset": 80, "next": [{"match": {"value": 614809328}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "99a9d3c60143b35a38eb03ece423707b8e60ed28", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614817648}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "755c7d1f06fa8e04763de494e724f95a6685b672", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614830192}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "14ce34f69d7a06c5c8ec7a9d9be404bd873b130d", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006960790}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 136, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "72732818d5f8403c61bb98a83023afbe3dc8c2e9", "variant": 3991438361, "library": "l)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ibkernl"}]}}], "symbols": []}}, {"match": {"value": 1006961044}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 136, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "16b5758a0fa75c947d70c625e4fddcee319098ac", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006960664}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 4, "offset": 80, "next": [{"match": {"value": 614844144}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "b107dd7c2c2a32ee28f51ca13fd7cef790589ff0", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614794608}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "e0f0b0bfb1ca1b7cae8aeec626f14e8ce4a32a49", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006960744}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 136, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "e23d9d2d3401ded91f6539fcf92f664173b9fe90", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006960686}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 4, "offset": 80, "next": [{"match": {"value": 614840048}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "87b177abbba78e571ac6c9d020866be6c9784b77", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614811888}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "be816dc5c23597fbed242ed44156ec51be0784ad", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614852208}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "c2342a9d3b96f5251c116ac4e1e5d1d6000a53c2", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614823536}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "eecba0fac89ed73940b761fe061f60b1c6fcb0e7", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614808688}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "a55c8fc6fde37bb12867ecf6221bd094b7fa71fc", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006960667}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 136, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "efa1cc311dff6e1cc891936c2fbda33626732237", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006960728}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 4, "offset": 80, "next": [{"match": {"value": 614809200}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "41f2b862bffeac6e8b50802385489b58b97a58fe", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614818544}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "e701bcd76081ee2646cd46e92387058f34d79a58", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614818672}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "8731b040ca466684972a4bc01c07977f2d8d70e8", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614842352}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "fae9d569d1ff57eb31f2bb0b45e8f7dc69273e6d", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006960715}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 4, "offset": 80, "next": [{"match": {"value": 614842480}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "fd2fc3210efcbae257a0ac7c180871caffd6fe6c", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614807152}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "ade069a6eda2f03586d4d3d56258dcdab819e2ed", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614845168}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "9ffc9993afbec193df8d713fa6d50ad67e7b1510", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614820080}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "fe8378b3eaba87b80b1c7fdf3545e0702bab6bed", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614821616}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "87b13a1475b709af7989dc32279a3194a543b442", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006960696}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 4, "offset": 80, "next": [{"match": {"value": 614845424}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "bc9c627d41f252d36bf6020c9f591d80dfc95a86", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614822000}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "60552e3dbbf6e9f74997b6f3e89ad640fe1220c1", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614816368}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "h)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ash": "1b1998a0697901c93c7e04d52f77ca62245db786", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614816624}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "9c1a0494dc8f821575a77856a6311540a6c33bc1", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006960694}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 4, "offset": 80, "next": [{"match": {"value": 614796400}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "08bec96a22dd5d6ab15ea0972738057a8565f357", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614824432}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "411fa9a2dad5e57c62ac8fd330f688680f7a605b", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614816624}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "c5e568348bc7b30857cc7edfb102f3680f6bc475", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006960698}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 4, "offset": 80, "next": [{"match": {"value": 614835184}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "060497e2753f8e5aad4cff2c56b52d5342d0809f", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614856048}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "f95f760fb4e96db5130ab0875f51277224caa6b7", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614810480}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "142ea0491896c53c5cec046df39d5d176eae3a5d", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006960676}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 4, "offset": 80, "next": [{"match": {"value": 614822896}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "cd13c9c8af4314d965cd40226def5e873b68a34a", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614802032}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "e6aaa74cb36bb68646979ea02012bfc3b7958aac", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006960710}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 4, "offset": 80, "next": [{"match": {"value": 614813808}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "c2e14f87f772ccb10d9c4c845bf12b7fdd1208d2", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614834928}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "672a00184f78b1e76bab7ea32e214cca015ebaa5", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614848240}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "829f75a56dd21d15c07135faeee9260f707e754c", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006960702}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 4, "offset": 80, "next": [{"match": {"value": 614798064}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "f1987daed074ea598a4d63fe871502d0320bd467", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614854512}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "a95e6b80202c618477cd048043a19f02f08cb3ec", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006960700}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 4, "offset": 80, "next": [{"match": {"value": 614856560}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "c4601fea6c9eeee685437c254d092a1274fa558f", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614851312}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "56cae4b9030550df2b7677fa15865f5c2b16bc19", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614811632}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "d4a9258e990749cc58004335dd1b974f120db0be", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614820336}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "66aa00976b9b2c0c75ff211bd6a6f6046b76ee8f", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006960690}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 4, "offset": 80, "next": [{"match": {"value": 614848752}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "f18c8743cd6b1a37090354eceef8dc947108465a", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614813936}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "96c90ce5439e5a1f07c805769c8739f8a90f3b2b", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006960735}, "c)PS2SDB", 8192}, + std::string_view{R"PS2SDB(hild": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 4, "offset": 80, "next": [{"match": {"value": 614827248}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "93da5ec2b9f657ccd20887b02a3389dc54be4720", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614826352}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "333d62292c8d84c87317c6726a7dfd47d326c697", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006960706}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 4, "offset": 80, "next": [{"match": {"value": 614832368}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "ace59085e24acb00816a82413aaedac687ef74b8", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614801264}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "cfae8da3bd6319d51c4edc992bb913ad8110fd01", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006960708}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 4, "offset": 80, "next": [{"match": {"value": 614824048}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "22090e5b44dfa225e9ebeb0564354eb998cf903a", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614844784}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "6b6b82a2abccd97afd18b46c3cedf6d8b7c81d24", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614840688}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "f636a1e771a2929ca194cc794289a6f6e1c32f52", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614858736}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "47388719178d02640191470fa0d980be389cf859", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006960681}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 4, "offset": 80, "next": [{"match": {"value": 614843504}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "653f46a6a3f25ed01f97a22c6044673df384b8a5", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614841584}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "82aa82bcd362af5843c6e69c7f734eaed86c02ba", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614851056}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "fa05cfa1be4208492506daaa99bea62c78428d4f", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614850032}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "f43d4f0e31e1dbe2f4948dbaf8e19aafdd632e28", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006960672}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 4, "offset": 80, "next": [{"match": {"value": 614807280}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "f1daa1d1ec61dd2dfaa1ecbc2c8baf86b8a7044b", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614803440}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "b6d9c4e52871b785245a52f1d12370d418a2890c", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614850800}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "0e061e55577ad00314da721c5b00ba54cc1b8f4d", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006960689}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 4, "offset": 80, "next": [{"match": {"value": 614810864}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "aeaa4088c009c3905555fd5725d4298205f48e32", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614811504}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "e4070e64e63abbc3ec0a6ffaad5d138d8940342e", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614836208}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "e868c1b4d2166dab4e6f9493656460e4e3d9465f", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614827248}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "e65c6dede664c2d3b0a22edcfe4ae154cbc7e72d", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006960683}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 4, "offset": 80, "next": [{"match": {"value": 614856944}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "abff8d708621cf8106e03fd70bff20d593b7abdf", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614837872}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "63ea5fee3eb9c9d37f2ba1457f5551c03ee61b8d", "variant": 3991)PS2SDB", 8192}, + std::string_view{R"PS2SDB(438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614841712}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "9020b9e1dd7a83ac678b5cee4af1dbf9a353905a", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614827888}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "4316130db7dfc398f4500281edf5f080fe97add4", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614844528}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "8d0ebaab9716674ba3b7afa125f9d2631997f511", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614793840}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "b6fe897ad0675ac2de37ebe8cf9b94acee4b7d97", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006960730}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 4, "offset": 80, "next": [{"match": {"value": 614831600}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "1298c7bd402c7f404057f3cf3021628a2aed482c", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614798320}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "251d917f1e8850a6289bc8ab4c494525a4ebd273", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614809328}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "fcb44432203ce9fb2952ccfdeb70d78eaea5769f", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614810352}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "e2d36c649ee7db2bb6fa493dee35e193f5e7639a", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006960678}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 4, "offset": 80, "next": [{"match": {"value": 614815984}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "9ddc1acd29c271f0e5780f160c8e5871e9e855be", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614819952}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "b0871e8271e8ac213e5be76842ede4cfe65ee639", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614798448}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "d7d1a284ad9e2e68b69f8468012f2847bc125304", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614806896}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "fd97e54506e1fa8db1fa57fd41c6e5c915da5cc1", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006960713}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 4, "offset": 80, "next": [{"match": {"value": 614807920}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "fb283163307a4f5cb768598c4c6c9a058216c463", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614804592}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "c9c20dc9338322fc1e5665e382a090f5bdcec04d", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614854256}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "026434fc463d6a181f30c0b9f7194d83f30f39a3", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614835440}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "4030c86b87a4a345bf321ab09d6750ef7071764f", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614830832}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "1591f6d5eacfc786d956debf59766d0c774ed492", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006960692}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 4, "offset": 80, "next": [{"match": {"value": 614811376}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "cc978e4469b0efad120a035a6e5323e77df36efd", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614828912}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "c938b183098bea139ee30b78db72d67deed4b37c", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006960716}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 4, "offset": 80, "next": [{"match": {"value": 614836464}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "8e393d6c7980cbf8fdd9004d0143398dc3de0dc1", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614836720}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "28b2474e88fe4f037f6f91122466655cd0cbcba1", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006960769}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 136, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "50e386913383ff884bd3e3)PS2SDB", 8192}, + std::string_view{R"PS2SDB(383cd516757e2101a8", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006961042}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 136, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "31280f67101742ab2936246c94b7ad34503671cd", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006960670}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 136, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "067bd57bf2fc8b820194a0a5c9e1d4d7946f111f", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006960768}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 4, "offset": 80, "next": [{"match": {"value": 614803056}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "7c927ecb848d66959c27befa5b60f300aaad8307", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614801264}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "cc0dc1ca5ad9f1d3328f8872690af55bfd696ffd", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006960725}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 136, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "0dfa87d323b426dc30cfd4bdbe261af8a7277166", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006960780}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 136, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "4aedc8c62771c058ad96bbd50418f33085c0e9ff", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006960718}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 4, "offset": 80, "next": [{"match": {"value": 614855792}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "148873c83c2538163081de40e867408f209311fe", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614794224}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "2f0ac2dc97d7f5fedb1ae7bc0884ccd216b654a8", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614797168}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "1e15cf2cbda4a903960ad10adcd628dc3e99e513", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614793456}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "2bdab4161347df3a502844341e783046a70db0a6", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006960722}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 136, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "95abe7a1009575c4ab76697056f530bac434c851", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006960714}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 4, "offset": 80, "next": [{"match": {"value": 614798832}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "e5ef53c019d1166974f8cc6e43d1f067e26d41cf", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614836208}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "4fe4df8d364777a54ec6ced34bef00e594b999df", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006960658}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 136, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "a35b3fd0a46f28cf5508d39137e2deae43d0bd63", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006960709}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 136, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "d962ef6238ef0e5a40c911268ee77479dc9c4399", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006960665}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 4, "offset": 80, "next": [{"match": {"value": 614811376}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "56a38533a00c091310e1e5fbde64675ad0466d7e", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614804208}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "fe9684b47ffc5fd25e93e61d893c556f4d1c1b52", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614804336}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "268ac17478aee02e399012eb536ceb7fd926e2ba", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614803696}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "803dec30190bbc98455ece295de3c0ed1d252b90", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614803952}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "bd39323d5d4c4b884522d104dd1cbc45b83af235", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614834800}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "9f927ad38c2456710d6e70da9376bc1cb9113d7c", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614797552}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 21)PS2SDB", 8192}, + std::string_view{R"PS2SDB(2, "next": [], "symbols": [{"name": "InitThread", "hash": "90c55eb09a668107979bffb5da379e8c2687e750", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006960659}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 4, "offset": 80, "next": [{"match": {"value": 614800368}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "b6d4214ae9f51947b1910f07dba24e93dedc8c70", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614835056}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "b8e3a3d4c98dbb6b27270dad6742053472bccf8b", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006960723}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 136, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "17e641585c85a4e1ccee3f97221d3ed6acafe6d3", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006960691}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 4, "offset": 80, "next": [{"match": {"value": 614837488}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "d466b6c7727ba1eb5d389fe38929db0420b66f55", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614799088}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "d55906bd7d475a8b309f5b8b71bf5afe93a5a31a", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614825584}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "f65499a94a4fe08bbda3c5b0e7e96ee95f448317", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614850416}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "ed3fd0fae8676114aa801ef1f6e100aea93f5857", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614816624}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "d6d31cd4f806b251fbd4cf368a83c8c76cf44ef5", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006960712}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 136, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "828071d3409279c6b09a3945109ffc4e98eb02e0", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006960737}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 136, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "eb7e9a84a78422c9f90ce5c2601006d3bc8daeef", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006960806}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 136, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "0f56885ef89a6a76f836eceaf20d57c5f07a8a30", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006960699}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 136, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "72e4e8d88ece5e29ed3e42bb9026dafe4ec2fce0", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006960717}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 136, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "89d8ec7c64452dbaeed53a05d0ed011b3a0461ed", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006960668}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 4, "offset": 80, "next": [{"match": {"value": 614802928}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "d8507514ea15ce51ae9e90b1b66400189632920b", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614834032}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "65148d68e99d4ee50974754b13d56ec2cfb06bb5", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614826864}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "9af4ea39aabc50e6a869cd054dacf08ee3e05847", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006960745}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 136, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "ae11c537906963a0b692d35fac53ef3c46330c20", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006960787}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 136, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "c7083a7b84a03497161a56f698137dc8d4cfe199", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006960739}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 136, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "ba5c61d5abee9cfc83f5d3faa5c4ec5def61bb26", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006960776}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 136, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "6cb2f508aebb22143b3d389d6f1ff8d1a6cc0000", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006960814}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 136, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "94fb300724eeb513012b5503b2b425d8c59aeb64", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": [)PS2SDB", 8192}, + std::string_view{R"PS2SDB(]}}, {"match": {"value": 1006960841}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 136, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "53b5107754de1baebed91622691a63c091761cbe", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006960711}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 136, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "bb20ae9b225e60c6fcb0f37dff1f66a6a8b6d82e", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006960682}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 4, "offset": 80, "next": [{"match": {"value": 614801136}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "d07d5db5664a3137e9ae212afa621b99c9b81f22", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614799600}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 124, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "110db2a9a39bc37210fc471114c58749c5b4b985", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006960749}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 136, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "34f8c5433963d33073731acebccaeb8b9445ab59", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006960772}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 136, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "f08e21a85a660ba48339dc78e467c4cba738526b", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006960771}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 136, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "7ec35424724a2bf22766f8b371d71f3410bdb042", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006960731}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 136, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "61e03decac8992a181898c0905abec4d69b0f28e", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006960963}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 136, "offset": 212, "next": [], "symbols": [{"name": "InitThread", "hash": "1947db342e1b7e4b9f7f528e6c48ece59a68eba5", "variant": 3991438361, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 473956379}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289790048}, "child": {"skip": 4, "offset": 32, "next": [{"match": {"value": 2946498616}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 2946629684}, "child": {"skip": 28, "offset": 68, "next": [{"match": {"value": 1006960681}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 4, "offset": 80, "next": [{"match": {"value": 614798192}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 112, "offset": 200, "next": [], "symbols": [{"name": "InitThread", "hash": "fa28ef15a25da30f78999f5e78f2678941b3d14d", "variant": 2398550838, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614799600}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 112, "offset": 200, "next": [], "symbols": [{"name": "InitThread", "hash": "06da15c0ec4a12af735bdf4571b432d5c250d9f5", "variant": 2398550838, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006960676}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 124, "offset": 200, "next": [], "symbols": [{"name": "InitThread", "hash": "c28034a6112d90f6ddc5a230ce6810721e171b3b", "variant": 2398550838, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006960700}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 4, "offset": 80, "next": [{"match": {"value": 614837360}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 112, "offset": 200, "next": [], "symbols": [{"name": "InitThread", "hash": "1abca1c0a6950a161448683117a62c18778e0ab2", "variant": 2398550838, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614818416}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 112, "offset": 200, "next": [], "symbols": [{"name": "InitThread", "hash": "28df336784916f471e94c6a78824bf9ccc63b88f", "variant": 2398550838, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006960704}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 4, "offset": 80, "next": [{"match": {"value": 614826992}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 112, "offset": 200, "next": [], "symbols": [{"name": "InitThread", "hash": "306fd0ad7074b26a4b4100b8a27c44c492136459", "variant": 2398550838, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 614836464}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604374016}, "child": {"skip": 112, "offset": 200, "next": [], "symbols": [{"name": "InitThread", "hash": "95d8dcb624e31deb1213d68f027e38d790614520", "variant": 2398550838, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006960667}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 124, "offset": 200, "next": [], "symbols": [{"name": "InitThread", "hash": "9915c84b6e0a36f40b7d308ce3a5c75ce29f2be1", "variant": 2398550838, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006960699}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 124, "offset": 200, "next": [], "symbols": [{"name": "InitThread", "hash": "18f7b35a5162aadeb194fe38d5d9b192d02c9e1b", "variant": 2398550838, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2946498608}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 2946629684}, "child": {"skip": 28, "offset": 68, "next": [{"match": {"value": 1006960690}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 124, "offset": 200, "next": [], "symbols": [{"name": "InitThread", "hash": "904361e65e6cbefe41748de328024893f3b954b1", "variant": 2398550838, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006960679}, "chil)PS2SDB", 8192}, + std::string_view{R"PS2SDB(d": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 124, "offset": 200, "next": [], "symbols": [{"name": "InitThread", "hash": "19aa754e4f6c462bf0b098a81a8a873fac7c826f", "variant": 2398550838, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006960658}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 124, "offset": 200, "next": [], "symbols": [{"name": "InitThread", "hash": "992346e20bcd4c724948e20f0bb42ebc87775588", "variant": 2398550838, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006960678}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 124, "offset": 200, "next": [], "symbols": [{"name": "InitThread", "hash": "9d00f05c45d6cdfb6b8cf6cafd4f8932160139d6", "variant": 2398550838, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006960674}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 124, "offset": 200, "next": [], "symbols": [{"name": "InitThread", "hash": "c986b1aac83e679656ace21ecf27b5876ab23d79", "variant": 2398550838, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006960670}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 124, "offset": 200, "next": [], "symbols": [{"name": "InitThread", "hash": "60e9a5dd6c666a495e2b493c38d3231494c49224", "variant": 2398550838, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006960666}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 124, "offset": 200, "next": [], "symbols": [{"name": "InitThread", "hash": "07b223623e137c6d8c98b0d34777951923d710c2", "variant": 2398550838, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290052176}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289986624}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1008009216, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289921072}, "child": {"skip": 352, "offset": 372, "next": [], "symbols": [{"name": "sceTtyWrite", "hash": "e09e3a56a7c84ab90db2d6c4e1ad0b8e3d1c00f6", "variant": 1158456033, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 605356033}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289921072}, "child": {"skip": 368, "offset": 388, "next": [], "symbols": [{"name": "_getpic", "hash": "1cfee41517097d4ffb9dbf2e1a056a17d0a82aea", "variant": 3391067077, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 4290707568}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8429613}, "child": {"skip": 416, "offset": 436, "next": [], "symbols": [{"name": "pre_func", "hash": "ce870b4439ce6a235a653bd4881e0f38a712e5ea", "variant": 328575088, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 8431661}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 41005}, "child": {"skip": 536, "offset": 560, "next": [], "symbols": [{"name": "__sceEENetifmedia_ioctl", "hash": "1dbee01f2ee9029ce4a2cb65a40835b4726a6364", "variant": 1004910955, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4290707568}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4290117728}, "child": {"skip": 252, "offset": 276, "next": [], "symbols": [{"name": "__sceEENetin_pcbpurgeif", "hash": "0ab7e2784b4f9d0ae4d25740aba248b5bef03b77", "variant": 1918048576, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 14723117}, "child": {"skip": 232, "offset": 248, "next": [], "symbols": [{"name": "PK_encode_pkcs1_digest", "hash": "4375c431c5c178304986a0d1a9b6d3d533125e93", "variant": 3652722612, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8431661}, "child": {"skip": 400, "offset": 416, "next": [], "symbols": [{"name": "ssl_set_pkey", "hash": "b562718b90054b7a9d1dc2a6a97e38ffbfc089c1", "variant": 1168750724, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 6189}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289986624}, "child": {"skip": 204, "offset": 216, "next": [], "symbols": [{"name": "sceTtyRead", "hash": "733a5810880fe8658028859ac4358a0e4e37d2c8", "variant": 3679911066, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 4289921104}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855552}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8427565}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707568}, "child": {"skip": 12, "offset": 32, "next": [{"match": {"value": 268435778}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 4289724448}, "child": {"skip": 1328, "offset": 1368, "next": [], "symbols": [{"name": "_printf", "hash": "b4d716a60afd3661a4eec2b9cfeabae9a9b33128", "variant": 2366150810, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 268435780}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 4289724448}, "child": {"skip": 1336, "offset": 1376, "next": [], "symbols": [{"name": "_printf", "hash": "4e90ca0759d6009976a89bec04f308f5fb2bc0c6", "variant": 3676227429, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10524717}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724448}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8425517}, "child": {"skip": 20, "offset": 44, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_Tim2_GetPictureHeader"}}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 14690349}, "child": {"skip": 640, "offset": 692, "next": [], "symbols": [{"name": "sceGpSetLoadTexelClutByArgTim2", "hash": "324b19a3b46fcc6bf1ee9367ae5b502689c225f0", "variant": 3426006397, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": ""}}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 14690349}, "child": {"skip": 644, "offset": 696, "next": [], "symbols": [{"name": "sceGpSetLoadTexelClutByArgTim2", "hash": "8277bd3522d672ad9e3e3b81b2362c96af744961", "variant": 2861825833, "library": "libgp"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289986656}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8425517}, "child": {"skip": 24, "offset": 48, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_Tim2_GetPictureHeader"}}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 14690349}, "child": {"skip": 636, "offset": 692, "next": [], "symbols": [{"name": "sceGpSetLoadImageByArgTim2", "hash": "22fdbfe42c2f970857f6c9cd5dd302fd085d81c5", "variant": 1169544987, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": ""}}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 14690349}, "child": {"skip": 644, "offset": 700, "next": [], "symbols": [{"name": "sceGpSetLoadImageByArgTim2", "hash": "b4ece0821ea63b17c197e5eff9b0e098024bf64f", "variant": 905927224, "library": "libgp"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": [])PS2SDB", 8192}, + std::string_view{R"PS2SDB(}}, {"match": {"value": 4290707568}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8427565}, "child": {"skip": 300, "offset": 316, "next": [], "symbols": [{"name": "frame_init", "hash": "2bfc99dfc83eb319aec7c1d99438bfbfb89a862b", "variant": 262906766, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 665190420}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289790000}, "child": {"skip": 480, "offset": 496, "next": [], "symbols": [{"name": "ssl2_enc_init", "hash": "2bdb8b637a970d29be87512050241871b0ff5a00", "variant": 1837038260, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289790000}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289986656}, "child": {"skip": 240, "offset": 252, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "isceSifSetDma"}}, "child": {"skip": 0, "offset": 256, "next": [{"match": {"value": 60825645}, "child": {"skip": 48, "offset": 308, "next": [], "symbols": [{"name": "_sceSifSendCmd", "hash": "6b79ef1ef136da2f45c94c5f0517a5c4348cafed", "variant": 2618391486, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_isceSifSetDma"}}, "child": {"skip": 0, "offset": 256, "next": [{"match": {"value": 60825645}, "child": {"skip": 48, "offset": 308, "next": [], "symbols": [{"name": "_sceSifSendCmd", "hash": "6b79ef1ef136da2f45c94c5f0517a5c4348cafed", "variant": 3035272271, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289986656}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855552}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 41005}, "child": {"skip": 232, "offset": 248, "next": [{"match": {"value": 268435500}, "child": {"skip": 0, "offset": 252, "next": [{"match": {"value": 3753115744}, "child": {"skip": 196, "offset": 452, "next": [], "symbols": [{"name": "sceSifExecRequest", "hash": "03edf79eea97a48d78590dbc05d4c97de1dd3372", "variant": 2367813948, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 268435502}, "child": {"skip": 0, "offset": 252, "next": [{"match": {"value": 3753115744}, "child": {"skip": 204, "offset": 460, "next": [], "symbols": [{"name": "sceSifExecRequest", "hash": "16506b0f6d43ba6f0a4cc4d5e7a6fac364c02a3e", "variant": 2367813948, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289921104}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 41005}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289790000}, "child": {"skip": 124, "offset": 144, "next": [{"match": {"value": 815923204}, "child": {"skip": 0, "offset": 148, "next": [{"match": {"value": 272629766}, "child": {"skip": 324, "offset": 476, "next": [], "symbols": [{"name": "sceSifExecRequest", "hash": "99969b33306a3647180b37a983745a38de3bbdcc", "variant": 1113183651, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 0}, "child": {"skip": 0, "offset": 148, "next": [{"match": {"value": 815923204}, "child": {"skip": 324, "offset": 476, "next": [], "symbols": [{"name": "sceSifExecRequest", "hash": "9656abb0384ecc3510bae0402a681857b0510d28", "variant": 1086974822, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855552}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289790000}, "child": {"skip": 396, "offset": 416, "next": [], "symbols": [{"name": "sceFsInit", "hash": "64c46aecfe67d04c9b1d13ee717a6baeba3d0988", "variant": 2242679253, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 10526765}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289790000}, "child": {"skip": 40, "offset": 60, "next": [{"match": {"value": 604241923}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 4227117}, "child": {"skip": 424, "offset": 492, "next": [], "symbols": [{"name": "d2i_ASN1_BIT_STRING", "hash": "dc4218b1228889cde03362b47338fa76762c5710", "variant": 3634691892, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604241922}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 4227117}, "child": {"skip": 496, "offset": 564, "next": [], "symbols": [{"name": "d2i_ASN1_INTEGER", "hash": "5abd4ae85938312865b7e6184a5b2616a72fcbdb", "variant": 4271197078, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 14721069}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855552}, "child": {"skip": 480, "offset": 500, "next": [], "symbols": [{"name": "d2i_ASN1_type_bytes", "hash": "663f46be6bd24879846540d687d9440bf9cd3ceb", "variant": 2354251537, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707568}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10526765}, "child": {"skip": 324, "offset": 340, "next": [], "symbols": [{"name": "tls1_mac", "hash": "b8665aefdf6618ff5c272635b922507d21394775", "variant": 1942898097, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8237}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724448}, "child": {"skip": 184, "offset": 196, "next": [{"match": {"value": 71303239}, "child": {"skip": 0, "offset": 200, "next": [{"match": {"value": 604176383}, "child": {"skip": 312, "offset": 516, "next": [], "symbols": [{"name": "sceFsInit", "hash": "21fa44749553642311e932ee9c9dbc44a2687816", "variant": 1684992496, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 71303240}, "child": {"skip": 0, "offset": 200, "next": [{"match": {"value": 604176362}, "child": {"skip": 316, "offset": 520, "next": [], "symbols": [{"name": "sceFsInit", "hash": "cd885fefa83690e264a872f4be609f02ac6e59b0", "variant": 1814958067, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289986640}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289921088}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1007943680, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8427565}, "child": {"skip": 360, "offset": 380, "next": [], "symbols": [{"name": "sceMcWrite", "hash": "83c11494f581d4826cae31f6df703e3faf800004", "variant": 2781086062, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 12623917}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290052192}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 10524717}, "child": {"skip": 280, "offset": 304, "next": [], "symbols": [{"name": "sceRead", "hash": "3fbc2d18ffe7080ccc67c5db5b41d31cfb24eb41", "variant": 3340426661, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 4289855536}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 10524717}, "child": {"skip": 256, "offset": 280, "next": [], "symbols": [{"name": "sceRead", "hash": "e53c7150e528a3bb11259d50b65d2a6f6835b7df", "variant": 1850056432, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 14721069}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855536}, "child": {"skip": 528, "offset": 548, "next": [], "symbols": [{"name": "_sceSifLoadModule", "hash": "94e15346f1af7faa9f4102107444705e629c5689", "variant": 4184433937, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 10526765}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789984}, "child": {"skip": 380, "offset": 400, "next": [], "symbols": [{"name": "_GetEntryByPos", "hash": "9081f37378727cba2091b7c9347b53de7cb0a4d5", "variant": 4045185329, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855536}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1007943680, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789984}, "child": {"skip": 40, "offset": 60, "nex)PS2SDB", 8192}, + std::string_view{R"PS2SDB(t": [{"match": {"value": 268435524}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 604176284}, "child": {"skip": 304, "offset": 372, "next": [], "symbols": [{"name": "sceMcWrite", "hash": "170a69a3a08cef322fad42ac89dce972676795e1", "variant": 3764806339, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 268435525}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 604176284}, "child": {"skip": 196, "offset": 264, "next": [{"match": {"value": 638255104, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 268, "next": [{"match": {"value": 646184960, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 104, "offset": 376, "next": [], "symbols": [{"name": "sceMcWrite", "hash": "d6280112c06628e9d1331efbdb731b636e0b7b53", "variant": 1845512167, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 646184960, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 268, "next": [{"match": {"value": 644284416, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 104, "offset": 376, "next": [], "symbols": [{"name": "sceMcWrite", "hash": "31080e204683dbd20ad0e6ccc8280f74beaf6754", "variant": 4065307952, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 12623917}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789984}, "child": {"skip": 36, "offset": 56, "next": [{"match": {"value": 272826457}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 4141}, "child": {"skip": 388, "offset": 452, "next": [], "symbols": [{"name": "sceCdRead", "hash": "2f73661537d58063073d67830b4a9876e3b1cf8c", "variant": 894286938, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 272826459}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 4141}, "child": {"skip": 396, "offset": 460, "next": [], "symbols": [{"name": "sceCdRead", "hash": "3ab9fb8febf717cf39410c61131a05c60c368111", "variant": 1207798286, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 14721069}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789984}, "child": {"skip": 24, "offset": 44, "next": [{"match": {"value": 2382561280}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 677515393}, "child": {"skip": 296, "offset": 348, "next": [], "symbols": [{"name": "sceDbcSendData2", "hash": "419840708386dbed7aae5c4df6890d29e98a78ea", "variant": 2093081911, "library": "libdbc"}]}}], "symbols": []}}, {"match": {"value": 2382495744}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 675422337}, "child": {"skip": 292, "offset": 344, "next": [], "symbols": [{"name": "sceDbcSendData3", "hash": "befecf094e59e5127b667d714916201537778a01", "variant": 1077016573, "library": "libdbc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10526765}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290052192}, "child": {"skip": 328, "offset": 348, "next": [], "symbols": [{"name": "arprequest", "hash": "b77a5d6e74659ab977f0edaccff4456a5e2a67e2", "variant": 1271290535, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789984}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10526765}, "child": {"skip": 448, "offset": 464, "next": [], "symbols": [{"name": "set_skin_id", "hash": "dd2fb09033522ca2e8f2eed6660d3b353fd202a2", "variant": 3058204773, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 4289724432}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10526765}, "child": {"skip": 256, "offset": 272, "next": [], "symbols": [{"name": "i2d_ASN1_BIT_STRING", "hash": "4e73004a20c4a67c788ac77490e7d1b8c637e864", "variant": 729467983, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289921088}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789984}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8427565}, "child": {"skip": 476, "offset": 492, "next": [], "symbols": [{"name": "sceSifLoadModuleBuffer", "hash": "e079a2dbcef20f2bf676d0a5f38ba1dc49f7f724", "variant": 451783141, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 4289855536}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 12621869}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789984}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8425517}, "child": {"skip": 412, "offset": 436, "next": [], "symbols": [{"name": "sceCdRead", "hash": "a7123ebfbc1b1504f0da833cf4a44b2fa507ef8b", "variant": 3257250121, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 4289724432}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 10522669}, "child": {"skip": 180, "offset": 204, "next": [], "symbols": [{"name": "sceEENetSocket", "hash": "01937c062a551e54107363472e9474e657675423", "variant": 2520991040, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8427565}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789984}, "child": {"skip": 204, "offset": 224, "next": [], "symbols": [{"name": "CRYPTO_dup_ex_data", "hash": "f985b4344c0634553029f2f196363300bc8b6ed8", "variant": 3334542409, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8427565}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707568}, "child": {"skip": 36, "offset": 52, "next": [{"match": {"value": 268435597}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 4141}, "child": {"skip": 596, "offset": 656, "next": [], "symbols": [{"name": "sceCdGetToc", "hash": "338ff4a97712cb8a9fac2e86ac70e3af9b403dcd", "variant": 4227866658, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 268435589}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 4141}, "child": {"skip": 564, "offset": 624, "next": [], "symbols": [{"name": "sceCdGetToc", "hash": "d9a831afadbb858c77e703c1aa2057afd362131c", "variant": 3468483362, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 268435599}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 4141}, "child": {"skip": 604, "offset": 664, "next": [], "symbols": [{"name": "sceCdGetToc", "hash": "15806a170c18a0aa9b52701f01960117ceddea02", "variant": 1064401943, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707568}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8427565}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290052192}, "child": {"skip": 600, "offset": 620, "next": [], "symbols": [{"name": "sceCdGetToc", "hash": "03b10941c0ddb50404a34bf863fb8498e53d2b68", "variant": 3915793690, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 10524717}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290052192}, "child": {"skip": 444, "offset": 464, "next": [], "symbols": [{"name": "ssl3_mac", "hash": "af2db329d59a8dd45015d06fe4e40b64100028c7", "variant": 3476562794, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724432}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1007910912}, "child": {"skip": 72, "offset": 88, "next": [{"match": {"value": 268435618}, "child": {"skip": 0, "offset": 92, "next": [{"match": {"value": 3753836656}, "child": {"skip": 676, "offset": 772, "next": [], "symbols": [{"name": "__ieee754_sqrt", "hash": "92cadbad79355bd98291dd827d7074198ee691b6", "variant": 1223897753, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 268435616}, "child": {"skip": 0, "offset": 92, "next": [{"match": {"value": 3753836656}, "child": {"skip": 668, "offset": 764, "next": [], "symbols": [{"name": "__ieee754_sqrt", "hash": "85c5cfcbe461216a373c11d50237fe24118e756a", "variant": 1265890780, "library": "libm"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": )PS2SDB", 8192}, + std::string_view{R"PS2SDB([]}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289200224}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 12615725}, "child": {"skip": 60, "offset": 76, "next": [], "symbols": [{"name": "_sceSnprintf_pf", "hash": "d98d5b534653facacded8fd1538d7c0ded57ddff", "variant": 1319632568, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 4290707568}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8421421}, "child": {"skip": 284, "offset": 300, "next": [], "symbols": [{"name": "ssl3_clear", "hash": "eedbab846440deceff8ea1a68002f080bc3ebdb6", "variant": 1537080395, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855536}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289986640}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1007812608, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 276, "offset": 292, "next": [], "symbols": [{"name": "scePadSetDmaCallback", "hash": "c7f5e19cf9394ea39b0e5c1679eb1483836323ad", "variant": 4074308198, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 4289724432}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8425517}, "child": {"skip": 640, "offset": 656, "next": [], "symbols": [{"name": "sceCdGetToc", "hash": "c97b912a17084a49ccde2d4f59f86c0769ef6517", "variant": 537751582, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 8425517}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707552}, "child": {"skip": 1000, "offset": 1016, "next": [], "symbols": [{"name": "__ieee754_rem_pio2f", "hash": "71e3740332f9dc880645b50370d7806575554766", "variant": 160662294, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 4290052192}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10522669}, "child": {"skip": 380, "offset": 396, "next": [], "symbols": [{"name": "X509_check_private_key", "hash": "ab4ea6d048f8db72279e8038c59da220403a6281", "variant": 849497120, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707568}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}}, "child": {"skip": 24, "offset": 36, "next": [{"match": {"value": 1007026176, "relocation": {"type": "MIPS_HI16", "symbol": "_sdrCB"}}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 1007091712, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 56, "offset": 100, "next": [], "symbols": [{"name": "_sdrCBThread", "hash": "25e6ff3390a06b2159521811770a0f99b572f3a2", "variant": 662459911, "library": "libsdr"}]}}], "symbols": []}}, {"match": {"value": 1007026176, "relocation": {"type": "MIPS_HI16", "symbol": "_spuCB"}}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 1007091712, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 56, "offset": 100, "next": [], "symbols": [{"name": "_spuCBThread", "hash": "f994ac3f0aa5f58be25c301c10f4ec35f44ceef9", "variant": 2185713301, "library": "librspu2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290052192}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289986640}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1008009216, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289921088}, "child": {"skip": 208, "offset": 228, "next": [], "symbols": [{"name": "sceMcOpen", "hash": "dad1f7aeead1a39ae2df6a846949cfd8bbe5de63", "variant": 1715055642, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 12625965}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289921088}, "child": {"skip": 8, "offset": 28, "next": [{"match": {"value": 8427565}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4290707568}, "child": {"skip": 296, "offset": 332, "next": [], "symbols": [{"name": "sceCdReadIOPm", "hash": "2fc739fde9b70a47eccef4ab1d2f2d6e79d97397", "variant": 1766532470, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 14719021}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4289789984}, "child": {"skip": 128, "offset": 164, "next": [], "symbols": [{"name": "sceNetcnfifGetList", "hash": "9fbb8d2ab20f4fc3667394ff658723f8bec91419", "variant": 3573185160, "library": "netcnfif"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289921088}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 41005}, "child": {"skip": 848, "offset": 868, "next": [], "symbols": [{"name": "smap_ioctl", "hash": "b0a15e1490dc5943ae089332b78871062c3e110c", "variant": 1969089808, "library": "ent_smap"}]}}], "symbols": []}}, {"match": {"value": 4290707568}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8429613}, "child": {"skip": 304, "offset": 324, "next": [], "symbols": [{"name": "pppoe_output", "hash": "2a3c48f810658dfebb9c33a12c2f960047afe1e3", "variant": 1860934279, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 8431661}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289921088}, "child": {"skip": 172, "offset": 192, "next": [], "symbols": [{"name": "DH_compute_key", "hash": "79960cb38dcb2fcccf4af11c6983642aa38a8f58", "variant": 3147037640, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 43053}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724432}, "child": {"skip": 1160, "offset": 1180, "next": [], "symbols": [{"name": "ssl23_get_server_hello", "hash": "aed596200dfd9668d1a568849cc8656208d280fc", "variant": 2716668204, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855536}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8431661}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1007812608, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 276, "offset": 296, "next": [], "symbols": [{"name": "sceMcDelete", "hash": "44c1fa21004d9039981593044ce732faeb01f915", "variant": 109182372, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 14723117}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789984}, "child": {"skip": 204, "offset": 224, "next": [], "symbols": [{"name": "i2d_ASN1_bytes", "hash": "7d39829aadcf6811e3605030e4124e593c53058a", "variant": 222572319, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289921088}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8431661}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1007878144, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 240, "offset": 260, "next": [], "symbols": [{"name": "sceMcDelete", "hash": "ce064f1b2a92850bbd488928be0ac1aade8e3368", "variant": 1649330425, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 10528813}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855536}, "child": {"skip": 416, "offset": 436, "next": [], "symbols": [{"name": "__check_eh_spec", "hash": "c80fd86430625dc9be357f4618406e90e6c0968c", "variant": 188818273, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 43053}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855536}, "child": {"skip": 16, "offset": 36, "next": [{"match": {"value": 8423469}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 4290707568}, "child": {"skip": 636, "offset": 680, "next": [], "symbols": [{"name": "i2d_X509_CINF", "hash": "b290fab53b571ba9ae67dc7cadcb20cc80b323f5", "variant": 4150518482, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 34861}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 4290707568}, "child": {"skip": 584, "offset": 628, "next": [], "symbols": [{"name": "i2d_X509_CRL_INFO", "hash": "98ee58235e70c2db525c9be2b4365b745731d2db", "variant": 1980027382, "library": "libhttps"}]}}], "s)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ymbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789984}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1008009216, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8423469}, "child": {"skip": 160, "offset": 180, "next": [{"match": {"value": 604504704}, "child": {"skip": 0, "offset": 184, "next": [{"match": {"value": 14698541}, "child": {"skip": 112, "offset": 300, "next": [], "symbols": [{"name": "sceDbcSendData", "hash": "833f53026a07a241dd23b6f4a248bab57cfe9a96", "variant": 2833837024, "library": "libdbc"}]}}], "symbols": []}}, {"match": {"value": 604504208}, "child": {"skip": 0, "offset": 184, "next": [{"match": {"value": 14698541}, "child": {"skip": 112, "offset": 300, "next": [], "symbols": [{"name": "sceDbcSendData", "hash": "3db5609da1487ae7b13d53ce89beb91eea4b348a", "variant": 2833837024, "library": "libdbc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707568}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289986640}, "child": {"skip": 420, "offset": 440, "next": [], "symbols": [{"name": "sppp_keepalive", "hash": "5a79cf988512158d17d314f10b89a9d71500f4ca", "variant": 899801931, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724432}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10528813}, "child": {"skip": 260, "offset": 276, "next": [], "symbols": [{"name": "ssl2_mac", "hash": "20b353147126990ab307759be67491011e18435f", "variant": 855797097, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006796799}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290052184}, "child": {"skip": 1404, "offset": 1416, "next": [], "symbols": [{"name": "__ieee754_rem_pio2", "hash": "fd4a130d6155677939ace5aeb072edc9c8d40d39", "variant": 2760198823, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 3887399016}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 3887333472}, "child": {"skip": 4, "offset": 16, "next": [{"match": {"value": 1174433030}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289790016}, "child": {"skip": 292, "offset": 316, "next": [], "symbols": [{"name": "fmodf", "hash": "279f9c2c1fd442edcb319052900214a7f0fb3965", "variant": 408319199, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 4289790016}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289724464}, "child": {"skip": 296, "offset": 320, "next": [], "symbols": [{"name": "fmodf", "hash": "346197e1de111a2c336912096de81ce6dfead07f", "variant": 3242488433, "library": "libm"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289986624}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1007943680, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289724416}, "child": {"skip": 1048, "offset": 1064, "next": [], "symbols": [{"name": "lmalloc", "hash": "6f127db435166af37894cbfb917e58b54158d421", "variant": 2178964973, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 4290707568}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8429613}, "child": {"skip": 4, "offset": 20, "next": [{"match": {"value": 4290052176}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289921072}, "child": {"skip": 1008, "offset": 1036, "next": [], "symbols": [{"name": "atan", "hash": "9b32ec62bffa037ca8a28e5c5c62b941a7bd0367", "variant": 245140358, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 8237}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290052176}, "child": {"skip": 288, "offset": 316, "next": [], "symbols": [{"name": "R_EITEMS_compact", "hash": "d8fb27872559075664923b3dc7379a927427499d", "variant": 3189580441, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289921072}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10526765}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8427565}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4290117728}, "child": {"skip": 608, "offset": 632, "next": [], "symbols": [{"name": "sppp_to_event", "hash": "4709182e0979ef38ea44d0d17f06067b143009d1", "variant": 519300153, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4290117728}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8427565}, "child": {"skip": 48, "offset": 72, "next": [{"match": {"value": 302121001}, "child": {"skip": 0, "offset": 76, "next": [{"match": {"value": 0}, "child": {"skip": 216, "offset": 296, "next": [], "symbols": [{"name": "sceEENetGetTcpcbstat", "hash": "2b78b644d91ac2b78412b6cfa16a00af4d92247c", "variant": 2754029357, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 302120998}, "child": {"skip": 0, "offset": 76, "next": [{"match": {"value": 0}, "child": {"skip": 204, "offset": 284, "next": [], "symbols": [{"name": "sceEENetGetUdpcbstat", "hash": "d7198164e586645cd02dc2a4e47ace2e6d154d82", "variant": 2618985845, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 14721069}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855520}, "child": {"skip": 32, "offset": 52, "next": [{"match": {"value": 2384986192}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 2365980712}, "child": {"skip": 492, "offset": 552, "next": [], "symbols": [{"name": "read_n", "hash": "ecd5d223888a9c32313f0dbdfdf53cd625b541ac", "variant": 3101811152, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2384986196}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 2365980812}, "child": {"skip": 484, "offset": 544, "next": [], "symbols": [{"name": "ssl3_read_n", "hash": "50824a646bfb0bc1f43f28d5e064404795489fd8", "variant": 3101811152, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290117728}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 12623917}, "child": {"skip": 36, "offset": 52, "next": [{"match": {"value": 444596259}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 4289724416}, "child": {"skip": 180, "offset": 240, "next": [], "symbols": [{"name": "recv_stream", "hash": "cf8fd84c51b0be61b88fd6f65eaf4232604aa6ea", "variant": 2729860809, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 444596258}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 4289724416}, "child": {"skip": 176, "offset": 236, "next": [], "symbols": [{"name": "send_stream", "hash": "b25625857a65e46862d932cd25d9caae7d65573c", "variant": 2635684020, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8429613}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290117728}, "child": {"skip": 220, "offset": 236, "next": [], "symbols": [{"name": "BN_mod_inverse_word", "hash": "fd2517632bf2db0aa78d5c3490bc3f1648e2b9e8", "variant": 3257570760, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724464}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 8421421}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289921120}, "child": {"skip": 328, "offset": 344, "next": [], "symbols": [{"name": "exp", "hash": "74b1ca500100b5c2dc4d420a004223bbdd5a9ef0", "variant": 2328021536, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 4289921120}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289855568}, "child": {"skip": 336, "offset": 352, "next": [], "symbols": [{"name": "exp", "hash": "3da116c12c891652b9c1dbcbc9fb0928f6f97295", "variant": 2054578867, "library": "libm"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4288938080}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 665059424}, "child": {"skip": 0, "offset")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: 12, "next": [{"match": {"value": 4289003624}, "child": {"skip": 36, "offset": 52, "next": [{"match": {"value": 60825645}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_fpadd_parts"}}, "child": {"skip": 28, "offset": 88, "next": [], "symbols": [{"name": "dpadd", "hash": "9c1aaf1563e3dacade0f117dbee082d3bc09787d", "variant": 3172731071, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 2409758756}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 60825645}, "child": {"skip": 40, "offset": 100, "next": [], "symbols": [{"name": "dpsub", "hash": "4349f1e31ad9cfb5bb6a305744e8a93e9868eb78", "variant": 1475985267, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289003624}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707576}, "child": {"skip": 32, "offset": 48, "next": [{"match": {"value": 33564717}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 665190464}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_fpadd_parts"}}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 60825645}, "child": {"skip": 24, "offset": 88, "next": [], "symbols": [{"name": "dpadd", "hash": "1ea5532e62f1ffde96d46bee1cb25a48718ea9f8", "variant": 3172731071, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_fpmul_parts"}}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 60825645}, "child": {"skip": 24, "offset": 88, "next": [], "symbols": [{"name": "dpmul", "hash": "1ea5532e62f1ffde96d46bee1cb25a48718ea9f8", "variant": 651480573, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2409758756}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 33564717}, "child": {"skip": 44, "offset": 100, "next": [], "symbols": [{"name": "dpsub", "hash": "6ecc9e084ace7545e1a9dff0493b48059e0c5dbf", "variant": 1475985267, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 2410610724}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 33564717}, "child": {"skip": 44, "offset": 100, "next": [], "symbols": [{"name": "dpsub", "hash": "a28114c5520753b1a5a1b2ef2522cae375916b1d", "variant": 1475985267, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10491949}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 8392749}, "child": {"skip": 44, "offset": 56, "next": [{"match": {"value": 665190464}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 33564717}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_fpadd_parts"}}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 60825645}, "child": {"skip": 24, "offset": 96, "next": [], "symbols": [{"name": "dpadd", "hash": "f0fdcdb80cba174c859b78a991a9f2a19a1e3467", "variant": 4006892670, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_fpmul_parts"}}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 60825645}, "child": {"skip": 24, "offset": 96, "next": [], "symbols": [{"name": "dpmul", "hash": "f0fdcdb80cba174c859b78a991a9f2a19a1e3467", "variant": 1964806460, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2409758756}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 33564717}, "child": {"skip": 44, "offset": 108, "next": [], "symbols": [{"name": "dpsub", "hash": "43dbb9a2d4ff4b71226166de1bd3ef454c3d45d8", "variant": 806213441, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604110849}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290117728}, "child": {"skip": 312, "offset": 324, "next": [], "symbols": [{"name": "find_exception_handler", "hash": "44f67b08aa440db0f583eb35af1559e558148c15", "variant": 0, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 10514477}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289986624}, "child": {"skip": 520, "offset": 532, "next": [], "symbols": [{"name": "quorem", "hash": "fff03769a4e9f419a3243d3facf4ca354df08124", "variant": 1731878245, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 604110857}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290052176}, "child": {"skip": 316, "offset": 328, "next": [], "symbols": [{"name": "_s2b", "hash": "00a9ec12d384113b17028eb7b3343e988a317425", "variant": 2382558118, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4289724432}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 10518573}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290052192}, "child": {"skip": 364, "offset": 380, "next": [], "symbols": [{"name": "_d2b", "hash": "930d7226e9a53a659791fac54d62ff52332bfc67", "variant": 2412991110, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 12615725}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289855536}, "child": {"skip": 212, "offset": 228, "next": [], "symbols": [{"name": "ShapeGetGiftag", "hash": "c552d165dbc6ab051db8d6cb1ad7ca90d6a1787d", "variant": 62538898, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 8421421}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289986640}, "child": {"skip": 416, "offset": 432, "next": [], "symbols": [{"name": "__sceEENetres_init", "hash": "ef6f269bbdca5f9107b2916fdfd4104429eb1959", "variant": 3732198734, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289069136}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289134680}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10498093}, "child": {"skip": 24, "offset": 40, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_vfprintf_r"}}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 2357526536}, "child": {"skip": 12, "offset": 60, "next": [], "symbols": [{"name": "_printf_r", "hash": "00fada01200533c25eac2bd82f9c6000733dedef", "variant": 201118882, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 3886809152}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 3886940228}, "child": {"skip": 28, "offset": 76, "next": [], "symbols": [{"name": "_printf_r", "hash": "bd539170d4e8d377fc8d03296d8e874d528893da", "variant": 481119711, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707456}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 665190480}, "child": {"skip": 16, "offset": 32, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "vfprintf"}}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 4289396856}, "child": {"skip": 12, "offset": 52, "next": [], "symbols": [{"name": "fprintf", "hash": "ca4d670356350ecdf5ef2004364978c9ad0c23d9", "variant": 4105754879, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "vfiprintf"}}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 4289396856}, "child": {"skip": 12, "offset": 52, "next": [], "symbols": [{"name": "fiprintf", "hash": "ca4d670356350ecdf5ef2004364978c9ad0c23d9", "variant": 118082812, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__svfscanf"}}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 4289396856}, "child": {"skip": 12, "offset": 52, "next": [], "symbols": [{"name": "fscanf", "hash": "ca4d670356350ecdf5ef2004364978c9ad0c23d9", "variant": 4024903345, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4289396856}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 3886809152}, "child": {"skip")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: 28, "offset": 68, "next": [], "symbols": [{"name": "fiprintf", "hash": "f4933e8baccd7b9660f01821d425e66186c782f6", "variant": 1131107251, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604111168}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289986624}, "child": {"skip": 396, "offset": 408, "next": [], "symbols": [{"name": "_doMC", "hash": "4a1fa1810ff2208693a183700ed8e79f9a42ace3", "variant": 3063557299, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 4289855584}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707568}, "child": {"skip": 276, "offset": 288, "next": [{"match": {"value": 274726953}, "child": {"skip": 0, "offset": 292, "next": [{"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 188, "offset": 484, "next": [], "symbols": [{"name": "_waitBdecOut", "hash": "36f92938678fd82929066085ffb93e7c00ea7ea2", "variant": 4211581647, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 274726959}, "child": {"skip": 0, "offset": 292, "next": [{"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 212, "offset": 508, "next": [], "symbols": [{"name": "_waitBdecOut", "hash": "e92bdfb2a11330b74e4e3d13f508b17e70db9e6e", "variant": 3398121185, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006768128}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 876748816}, "child": {"skip": 420, "offset": 436, "next": [], "symbols": [{"name": "_ipuVdec", "hash": "ba12469b21380e18835b474eec399246263fee1a", "variant": 1423152230, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 4290117728}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 876748816}, "child": {"skip": 396, "offset": 412, "next": [], "symbols": [{"name": "_ipuVdec", "hash": "e3258522e7443ab18f755e476fb11205df19536c", "variant": 2048135722, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604110850}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290117728}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290052176}, "child": {"skip": 36, "offset": 52, "next": [{"match": {"value": 2384658804}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 341966853}, "child": {"skip": 380, "offset": 440, "next": [], "symbols": [{"name": "_dispRefImageField", "hash": "a59fed6fd20d98f3c9451c6adcfd487c143f203c", "variant": 2637909213, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2384658828}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 341966853}, "child": {"skip": 380, "offset": 440, "next": [], "symbols": [{"name": "_dispRefImageField", "hash": "1d1dd6f9e7fde14d556ba54fdaba2bc97c997af7", "variant": 2637909213, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289790032}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289724480}, "child": {"skip": 412, "offset": 428, "next": [], "symbols": [{"name": "sysctl_dumpentry", "hash": "beb450f0b133215268e4afe16b45190e6c508772", "variant": 3102398731, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289921120}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289724464}, "child": {"skip": 200, "offset": 216, "next": [], "symbols": [{"name": "_sce_eenet_add_default_route", "hash": "49dab9719f0d2d6004b6000a40b327c2d198d82c", "variant": 1869301630, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006768127}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289790000}, "child": {"skip": 40, "offset": 52, "next": [{"match": {"value": 616759296, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 4290707568}, "child": {"skip": 372, "offset": 432, "next": [], "symbols": [{"name": "_doCSC2", "hash": "3499ca1cedaec93edc9d8642d66df66993568026", "variant": 164880593, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 4290707568}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 4289921104}, "child": {"skip": 76, "offset": 136, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_ch3dmaCSC"}}, "child": {"skip": 0, "offset": 140, "next": [{"match": {"value": 604241923}, "child": {"skip": 280, "offset": 424, "next": [], "symbols": [{"name": "_doCSC2", "hash": "ac9f1034c0a7f900d54b7583e41942a456f2d706", "variant": 1756029585, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 0}, "child": {"skip": 0, "offset": 140, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_ch3dmaCSC"}}, "child": {"skip": 296, "offset": 440, "next": [], "symbols": [{"name": "_doCSC2", "hash": "9da54c4a603af1317df76055af796dc783fa7fbb", "variant": 3001060529, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604176386}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289986656}, "child": {"skip": 328, "offset": 340, "next": [], "symbols": [{"name": "_csc_storeRefImage", "hash": "7e96dd20f85c4ffe6ca4026341e21cda71b918c6", "variant": 1227466400, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 604176383}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290052176}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289921072}, "child": {"skip": 352, "offset": 368, "next": [], "symbols": [{"name": "_decodeOrSkipField", "hash": "26c08309bba4860e42bae0138bb94508d82bf3f7", "variant": 3790684623, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 4289921104}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289790000}, "child": {"skip": 436, "offset": 452, "next": [], "symbols": [{"name": "_decodeOrSkipField", "hash": "bfe10b0f816f2410072887f64ba9a9edb6eaca79", "variant": 1496815071, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289921072}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707568}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8427565}, "child": {"skip": 772, "offset": 788, "next": [], "symbols": [{"name": "_initSeq", "hash": "8dc77f6e1451d50ea16a68253c4945569c7df83f", "variant": 2868832809, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 605224961}, "child": {"skip": 560, "offset": 576, "next": [], "symbols": [{"name": "_sceMpegPictureData0", "hash": "95277abac33965a0cc133fe11b742e0f1569155a", "variant": 386878834, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2143223888}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2142502976}, "child": {"skip": 348, "offset": 360, "next": [], "symbols": [{"name": "sceCccEncodeUTF8", "hash": "c8d439fd743facb7e609dd5bab9a8ee4d4a51a1d", "variant": 753724923, "library": "libccc"}]}}], "symbols": []}}, {"match": {"value": 4290707520}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2142437424}, "child": {"skip": 8, "offset": 20, "next": [{"match": {"value": 8425517}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2142240768}, "child": {"skip": 20, "offset": 48, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "terminate__3stdFv"}}, "child": {"skip": 364, "offset": 420, "next": [], "symbols": [{"name": "__ThrowHandler__FP12ThrowContext", "hash": "480286a97f301ca7bad060a14bd0fff85a23af85", "variant": 1290052569, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 37756973}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIP)PS2SDB", 8192}, + std::string_view{R"PS2SDB(S_26", "symbol": "terminate__3stdFv"}}, "child": {"skip": 64, "offset": 120, "next": [{"match": {"value": 2420572162}, "child": {"skip": 0, "offset": 124, "next": [{"match": {"value": 4227117}, "child": {"skip": 272, "offset": 400, "next": [], "symbols": [{"name": "__ThrowHandler__FP12ThrowContext", "hash": "e4d84e14aa876aac00f462b9deca5678ac0c55ed", "variant": 3083170346, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 2420506626}, "child": {"skip": 0, "offset": 124, "next": [{"match": {"value": 4227117}, "child": {"skip": 268, "offset": 396, "next": [], "symbols": [{"name": "__ThrowHandler__FP12ThrowContext", "hash": "1c77619eb9fc9b4eb6a08fcf5f628464d62f41fe", "variant": 4008161561, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2142240768}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1887475240}, "child": {"skip": 372, "offset": 400, "next": [], "symbols": [{"name": "__ThrowHandler__FP12ThrowContext", "hash": "bbdc7981c9e33acd76cfb02e2f8849cb9f4cdcf0", "variant": 3083170346, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2143223872}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2142437424}, "child": {"skip": 36, "offset": 48, "next": [{"match": {"value": 1916806696}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "terminate__3stdFv"}}, "child": {"skip": 20, "offset": 76, "next": [{"match": {"value": 339738629}, "child": {"skip": 0, "offset": 80, "next": [{"match": {"value": 1916806696}, "child": {"skip": 36, "offset": 120, "next": [{"match": {"value": 2420506626}, "child": {"skip": 0, "offset": 124, "next": [{"match": {"value": 2420310019}, "child": {"skip": 268, "offset": 396, "next": [], "symbols": [{"name": "__ThrowHandler__FP12ThrowContext", "hash": "4aae96c874be566a03394cf43a02044409603f21", "variant": 4008161561, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 2420572162}, "child": {"skip": 0, "offset": 124, "next": [{"match": {"value": 2420441091}, "child": {"skip": 272, "offset": 400, "next": [], "symbols": [{"name": "__ThrowHandler__FP12ThrowContext", "hash": "961cc2bfba666181ec9d02ef79caabed8f73cefd", "variant": 3083170346, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 339738630}, "child": {"skip": 0, "offset": 80, "next": [{"match": {"value": 0}, "child": {"skip": 320, "offset": 404, "next": [], "symbols": [{"name": "__ThrowHandler__FP12ThrowContext", "hash": "faaed6505440fd9588cd001d1b7a1c0a4f555b54", "variant": 3091578334, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 665124944}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "terminate__3stdFv"}}, "child": {"skip": 68, "offset": 124, "next": [{"match": {"value": 2420506626}, "child": {"skip": 0, "offset": 128, "next": [{"match": {"value": 2420310019}, "child": {"skip": 272, "offset": 404, "next": [], "symbols": [{"name": "__ThrowHandler__FP12ThrowContext", "hash": "840279ad45fa0b1d6ae3436d5427247ad6591e48", "variant": 3091578334, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 2420572162}, "child": {"skip": 0, "offset": 128, "next": [{"match": {"value": 2420441091}, "child": {"skip": 276, "offset": 408, "next": [], "symbols": [{"name": "__ThrowHandler__FP12ThrowContext", "hash": "38b95eb37584a0d945f473d19e6c10b923eccfed", "variant": 3761230646, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855552}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 8425517}, "child": {"skip": 28, "offset": 40, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_Tim2_GetPictureHeader"}}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 4289921104}, "child": {"skip": 568, "offset": 616, "next": [], "symbols": [{"name": "sceGpSetLoadTexelClutByTim2", "hash": "e65e4daaae3ad3de52bfe18953f68684e4e04e5d", "variant": 3407965831, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": ""}}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 4289921104}, "child": {"skip": 572, "offset": 620, "next": [], "symbols": [{"name": "sceGpSetLoadTexelClutByTim2", "hash": "31fd3850537b82705657efa58547f571e1b6833b", "variant": 2419006550, "library": "libgp"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289003592}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289069136}, "child": {"skip": 20, "offset": 32, "next": [{"match": {"value": 65011720}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 666697856}, "child": {"skip": 0, "offset": 40, "next": [], "symbols": [{"name": "DPRINT", "hash": "4653962c2d2bc4357cf1d8aac4b298ba8457a808", "variant": 0, "library": "libdbc"}, {"name": "DPRINT", "hash": "4653962c2d2bc4357cf1d8aac4b298ba8457a808", "variant": 0, "library": "libmtap"}]}}], "symbols": []}}, {"match": {"value": 3886809144}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 3886940220}, "child": {"skip": 16, "offset": 56, "next": [], "symbols": [{"name": "DPRINT", "hash": "e021138472a567e627a0af2d1dead467d252a340", "variant": 0, "library": "libmtap"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006833664}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289921072}, "child": {"skip": 1016, "offset": 1028, "next": [], "symbols": [{"name": "setupStartVoice", "hash": "05f30382eb6b4b2c1a62490aa0f9ab5f766aab69", "variant": 1826563455, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 604111103}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289921072}, "child": {"skip": 572, "offset": 584, "next": [], "symbols": [{"name": "sceSynthesizerAssignNoteOff", "hash": "ef1ae1fe1a0c94ab89838a3f19ff77c842668875", "variant": 3304303758, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 4290183272}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 8435757}, "child": {"skip": 2380, "offset": 2392, "next": [], "symbols": [{"name": "_sceMcFatFormat", "hash": "e3798304aa1dd8af1e84a673b7cbaa058b3674b3", "variant": 2683374199, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 10504237}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290052176}, "child": {"skip": 360, "offset": 372, "next": [], "symbols": [{"name": "Hermite", "hash": "8d73ed2fa296a6ec3ec68614b6e454ee1ac3f06b", "variant": 767401175, "library": "libhip"}, {"name": "Bezier", "hash": "8d73ed2fa296a6ec3ec68614b6e454ee1ac3f06b", "variant": 767401175, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 4289724480}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707552}, "child": {"skip": 120, "offset": 132, "next": [], "symbols": [{"name": "FishEyeCalc", "hash": "2e8a9ab093fca41e6f17da855a6456675adb71ee", "variant": 139616354, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 10502189}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290117728}, "child": {"skip": 864, "offset": 876, "next": [], "symbols": [{"name": "free_pages", "hash": "77ae4e401dc98ce53acd02a963d45a1393702418", "variant": 2904418102, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 1006829567}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855520}, "child": {"skip": 364, "offset": 376, "next": [], "symbols": [{"name": "__sceEENetsbcreatecontrol", "hash": "a62f5bf6d064c58b6438fb59306f6fd31410e9a4", "variant": 3341184107, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 8398893}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855536}, "child": {"skip": 588, "offset": 600, "next": [], "symbols": [{"name": "pppoe_send_padr", "hash": )PS2SDB", 8192}, + std::string_view{R"PS2SDB("e3aba7a3729fe191241d66dabbf5617c7e642b01", "variant": 2408709891, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 604307711}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855584}, "child": {"skip": 164, "offset": 176, "next": [], "symbols": [{"name": "sppp_pap_scr", "hash": "1f6d898f780fb03605521d387b5440115f52301d", "variant": 1116977637, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 8400941}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289921072}, "child": {"skip": 260, "offset": 272, "next": [], "symbols": [{"name": "sppp_vjcomp", "hash": "397e3549c43c85e6fb8e3e6a02581f2e6aee3d47", "variant": 3913765422, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 872579352}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 136248}, "child": {"skip": 2356, "offset": 2368, "next": [], "symbols": [{"name": "__sceEENetin_control", "hash": "cc19d35408bd117fc69aab7f2b70bb16f4ee6d8e", "variant": 1046116561, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289921120}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855568}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 14719021}, "child": {"skip": 228, "offset": 244, "next": [], "symbols": [{"name": "__sceEENetip_savecontrol", "hash": "0247b3fa4f3e145bab7a170ab60b2ebbb97d7326", "variant": 4273790029, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289790016}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10524717}, "child": {"skip": 28, "offset": 44, "next": [{"match": {"value": 306184214}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 604176383}, "child": {"skip": 112, "offset": 164, "next": [], "symbols": [{"name": "sceEENetBpfRead", "hash": "514515a0af0d5a3a53c732420d300dc4563655aa", "variant": 2029802661, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 373293059}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 604176385}, "child": {"skip": 116, "offset": 168, "next": [], "symbols": [{"name": "sceEENetBpfWrite", "hash": "00b97b602c537ac5421432d8d1364459dec9512e", "variant": 3625466769, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 872677375}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290117728}, "child": {"skip": 508, "offset": 520, "next": [], "symbols": [{"name": "ip_insertoptions", "hash": "65c08566dc6e259bacdb2e2cd9f14a5150873121", "variant": 3510306929, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 8405037}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289986656}, "child": {"skip": 696, "offset": 708, "next": [], "symbols": [{"name": "inet_pton4", "hash": "255443e11d2d353669191bf50df018884d17a120", "variant": 3169987939, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 604307473}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290052192}, "child": {"skip": 200, "offset": 212, "next": [{"match": {"value": 268435550}, "child": {"skip": 0, "offset": 216, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 460, "offset": 680, "next": [], "symbols": [{"name": "check_wait_offer", "hash": "b1260a68167acaf1f5de693c0d4026f4f5e47945", "variant": 1229731646, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 268435497}, "child": {"skip": 0, "offset": 216, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 368, "offset": 588, "next": [], "symbols": [{"name": "check_requesting", "hash": "7b3ac0cbd0b4eec4eae766396a64044eeaa8d938", "variant": 1692059005, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604110852}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855584}, "child": {"skip": 56, "offset": 68, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "X509_NAME_ENTRY_new"}}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 0}, "child": {"skip": 368, "offset": 444, "next": [], "symbols": [{"name": "d2i_X509_NAME_ENTRY", "hash": "e13db6f5793c2167ffefa605f6ad587c6786d36f", "variant": 2819949055, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "X509_ALGOR_new"}}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 0}, "child": {"skip": 428, "offset": 504, "next": [], "symbols": [{"name": "d2i_X509_ALGOR", "hash": "dac74fe14e0d3d1b5406e3dfec943918ad534336", "variant": 3028875525, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "X509_REVOKED_new"}}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 0}, "child": {"skip": 460, "offset": 536, "next": [], "symbols": [{"name": "d2i_X509_REVOKED", "hash": "4e3e05edf835ce2de261b12073edbcfa6f195c0f", "variant": 822883155, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "X509_CRL_new"}}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 0}, "child": {"skip": 424, "offset": 500, "next": [], "symbols": [{"name": "d2i_X509_CRL", "hash": "1481dc7768737437ab12f739bcea9472ab56d426", "variant": 3083076195, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "X509_PUBKEY_new"}}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 0}, "child": {"skip": 388, "offset": 464, "next": [], "symbols": [{"name": "d2i_X509_PUBKEY", "hash": "168886c0fa6c3dc2415ba0edbe686e0ebf8ccde1", "variant": 2763367943, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "X509_SIG_new"}}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 0}, "child": {"skip": 364, "offset": 440, "next": [], "symbols": [{"name": "d2i_X509_SIG", "hash": "b0d09a50f68cbfc3bb65863c03381987d44ca6dc", "variant": 1282218136, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "X509_VAL_new"}}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 0}, "child": {"skip": 364, "offset": 440, "next": [], "symbols": [{"name": "d2i_X509_VAL", "hash": "8e64f3e540bd91aee0d3a0ddf4bfc8fdf4176f52", "variant": 609691253, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "X509_new"}}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 0}, "child": {"skip": 468, "offset": 544, "next": [], "symbols": [{"name": "d2i_X509", "hash": "f85953fef53d0aef5573f9f9ac758484ffb30a2d", "variant": 2055446902, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604110860}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290117728}, "child": {"skip": 1084, "offset": 1096, "next": [], "symbols": [{"name": "buffer_ctrl", "hash": "e144bff9dc0b97262f4836e77f77f1b3d69125ee", "variant": 2673536233, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604110896}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789984}, "child": {"skip": 284, "offset": 296, "next": [], "symbols": [{"name": "ssl2_generate_key_material", "hash": "669b61de1705c7f2581c5d6227eecabd1867e319", "variant": 155980793, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 8392749}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290117728}, "child": {"skip": 276, "offset": 288, "next": [], "symbols": [{"name": "ssl3_choose_cipher", "hash": "447ca4f91c1af8a9ba84e065cfa9b2466863ba9a", "variant": 942684153, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8425517}, "child": {)PS2SDB", 8192}, + std::string_view{R"PS2SDB("skip": 400, "offset": 416, "next": [], "symbols": [{"name": "ssl_get_new_session", "hash": "a3667ea6801e7a679d21351c7ed8b83a20d9bc71", "variant": 1661414524, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8425517}, "child": {"skip": 212, "offset": 228, "next": [], "symbols": [{"name": "X509_STORE_free", "hash": "4e212aa92d4af2eea787c6fe8203f4194ff809fe", "variant": 3726315908, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006768128}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 876797952}, "child": {"skip": 44, "offset": 56, "next": [], "symbols": [{"name": "sceSynthesizerSetupDma", "hash": "0a5c3e6ca588c1d0e2036b3fb3da5fa28aa071f3", "variant": 3069795599, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 604438529}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 876755984}, "child": {"skip": 84, "offset": 96, "next": [{"match": {"value": 65011720}, "child": {"skip": 0, "offset": 100, "next": [{"match": {"value": 2892431360}, "child": {"skip": 0, "offset": 104, "next": [], "symbols": [{"name": "sceGsResetPath", "hash": "2d3cd633a2708570defd4a35a8f37ddf7536eb02", "variant": 3057144411, "library": "libgraph"}]}}], "symbols": []}}, {"match": {"value": 2892431360}, "child": {"skip": 0, "offset": 100, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 108, "next": [], "symbols": [{"name": "sceGsResetPath", "hash": "ac342180d4c6daf499a6e0e77857345d9720e077", "variant": 3057144411, "library": "libgraph"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006833664}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 876797952}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 878960672}, "child": {"skip": 456, "offset": 472, "next": [], "symbols": [{"name": "sceDmaPutEnv", "hash": "197fd27bf363d9cec540fba6007c2d84e67870dd", "variant": 1016850066, "library": "libdma"}]}}], "symbols": []}}, {"match": {"value": 1006899200}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 876754992}, "child": {"skip": 76, "offset": 92, "next": [], "symbols": [{"name": "sceVpu0Reset", "hash": "c9dc0bc09aded937100e32a8dd08de2b6110f784", "variant": 3057144411, "library": "libvu0"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006895103}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 876798048}, "child": {"skip": 4, "offset": 16, "next": [{"match": {"value": 277020675}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2353135616}, "child": {"skip": 16, "offset": 40, "next": [], "symbols": [{"name": "sceDmaPutStallAddr", "hash": "8988bb7f43ab12e726624bd1d3f76fbd4637c1c2", "variant": 0, "library": "libdma"}]}}], "symbols": []}}, {"match": {"value": 2353135616}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 277020675}, "child": {"skip": 20, "offset": 44, "next": [], "symbols": [{"name": "sceDmaPutStallAddr", "hash": "cb84bf0cecc0e2a3bb9262971cd74ca3f7862a73", "variant": 0, "library": "libdma"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8398893}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 876803360}, "child": {"skip": 60, "offset": 72, "next": [], "symbols": [{"name": "sceDmaPause", "hash": "aa87b8d614a4c8b175305b9903b28ba64d8553bf", "variant": 0, "library": "libdma"}]}}], "symbols": []}}, {"match": {"value": 604176385}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 876752896}, "child": {"skip": 8, "offset": 20, "next": [], "symbols": [{"name": "sceDevGifReset", "hash": "4ef0ab938a372f0e6201022ef2fd4c602f6d04b6", "variant": 0, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 876752928}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2353135616}, "child": {"skip": 32, "offset": 44, "next": [], "symbols": [{"name": "sceDevGifSync", "hash": "48e12bc3de47d5809f6ed665c3f03aca0e2c660f", "variant": 0, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 604241921}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 876754960}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006833664}, "child": {"skip": 20, "offset": 36, "next": [], "symbols": [{"name": "sceDevVif0Reset", "hash": "a8f843cc95c481213a2c0abc58386e7ab25623c9", "variant": 0, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 876755984}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006833664}, "child": {"skip": 20, "offset": 36, "next": [], "symbols": [{"name": "sceDevVif1Reset", "hash": "f70b518e75f4491fef8fd5b6a5fe9a998f255c13", "variant": 0, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 876786688}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006833664}, "child": {"skip": 48, "offset": 64, "next": [{"match": {"value": 1006768128}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 1006833664}, "child": {"skip": 452, "offset": 524, "next": [], "symbols": [{"name": "sceIpuInit", "hash": "1c06e1168c407101a8ebc0bd03b20dc7a7f62b6c", "variant": 126894337, "library": "libipu"}]}}], "symbols": []}}, {"match": {"value": 0}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 1006768128}, "child": {"skip": 492, "offset": 564, "next": [], "symbols": [{"name": "sceIpuInit", "hash": "a3352a33a6c2d5e085208a3301aa61bb3295aa23", "variant": 3497303303, "library": "libipu"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 876754944}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2353266688}, "child": {"skip": 68, "offset": 80, "next": [], "symbols": [{"name": "sceDevVif0Sync", "hash": "05ee1885cffcb02a433aef363964545b9d18609c", "variant": 0, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 876755968}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2353266688}, "child": {"skip": 68, "offset": 80, "next": [], "symbols": [{"name": "sceDevVif1Sync", "hash": "04a2e60d7c223ee7bc61280fbd87f1094d30fb93", "variant": 0, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 1006899200}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 876754992}, "child": {"skip": 72, "offset": 84, "next": [{"match": {"value": 65011720}, "child": {"skip": 0, "offset": 88, "next": [{"match": {"value": 2091057152}, "child": {"skip": 0, "offset": 92, "next": [], "symbols": [{"name": "sceVpu0Reset", "hash": "7b1a67f1596a847fe28920e3b453f9c72b99abd7", "variant": 3057144411, "library": "libvu0"}]}}], "symbols": []}}, {"match": {"value": 2091057152}, "child": {"skip": 0, "offset": 88, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 96, "next": [], "symbols": [{"name": "sceVpu0Reset", "hash": "f4cef863c40530fede8ba4d223681f70807772fa", "variant": 3057144411, "library": "libvu0"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604176388}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 876802048}, "child": {"skip": 44, "offset": 56, "next": [{"match": {"value": 65011720}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 2887970816}, "child": {"skip": 0, "offset": 64, "next": [], "symbols": [{"name": "VSync", "hash": "7fe77cf3bff5a6da73f94bab883672e42114a244", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 2887970816}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 68, "next": [], "symbols": [{"name": "VSync", "hash": "19c15316addb5dde27fa846bfb81683a3feaf26c", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 341762}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 876748800}, "child": {"skip": 28, "offset": 40, "next": [{"match": {"value": 2894202904}, "child": {"skip": 0, "offset": 44, "next":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( [], "symbols": [{"name": "_sendIpuCommand", "hash": "a0e649929647681fce02789df117053234bad71f", "variant": 1644047408, "library": "libmpeg"}]}}, {"match": {"value": 2894202928}, "child": {"skip": 0, "offset": 44, "next": [], "symbols": [{"name": "_sendIpuCommand", "hash": "74106a54404b36230b737f0b2d593d6be8669d8b", "variant": 1644047408, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 274178}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 876748800}, "child": {"skip": 16, "offset": 28, "next": [{"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 10692641}, "child": {"skip": 12, "offset": 48, "next": [], "symbols": [{"name": "_sendIpuCommand", "hash": "994f488397c98c048b8ace9c8f4efe69217bc469", "variant": 478630176, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 10692641}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2359427072}, "child": {"skip": 8, "offset": 44, "next": [], "symbols": [{"name": "_sendIpuCommand", "hash": "0436b301b04f40846b83ff9cfa512a35ce2a5c8a", "variant": 595714412, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006993408}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 876748816}, "child": {"skip": 40, "offset": 52, "next": [], "symbols": [{"name": "_waitIpuIdle", "hash": "3f4cbf1bc7f3fef58c982ea9f12d400158f23164", "variant": 2145293487, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 604176392}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 876797968}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2890072064}, "child": {"skip": 308, "offset": 328, "next": [], "symbols": [{"name": "_ch3dmaCSC", "hash": "4659c0d6e4fa036e7441c9cfd746c1ab13bfd158", "variant": 2422769936, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 10504237}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2890072064}, "child": {"skip": 28, "offset": 48, "next": [{"match": {"value": 604176385}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 1006768128}, "child": {"skip": 264, "offset": 320, "next": [], "symbols": [{"name": "_ch3dmaCSC", "hash": "12028956420ce3153b7eecb454de0da069b9c388", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 604110849}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 1006768128}, "child": {"skip": 272, "offset": 328, "next": [], "symbols": [{"name": "_ch3dmaCSC", "hash": "55ac26f956ee770a67e96d11c1d6d95ca6ed64b5", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1007095808}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2890072064}, "child": {"skip": 12, "offset": 32, "next": [{"match": {"value": 604176385}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 1007030272}, "child": {"skip": 120, "offset": 160, "next": [], "symbols": [{"name": "_ch3dmaCSC", "hash": "45292f1a9ced94ea3e9270819dd29c8bd8e9b963", "variant": 154223621, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 604110849}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 1007030272}, "child": {"skip": 136, "offset": 176, "next": [], "symbols": [{"name": "_ch3dmaCSC", "hash": "c63306f0a7ce9f61211d421abddbf90e02d86744", "variant": 4241455125, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604176400}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 876797968}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2890072064}, "child": {"skip": 192, "offset": 212, "next": [], "symbols": [{"name": "_ch4dma", "hash": "29c01b1d3c717ffaf48ef3928cf5a71a963e69a5", "variant": 54244007, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 10498093}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2890072064}, "child": {"skip": 4, "offset": 24, "next": [{"match": {"value": 339738627}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 872939519}, "child": {"skip": 172, "offset": 204, "next": [], "symbols": [{"name": "_ch4dma", "hash": "4682a016915285ae59f11b690cc2e975290739c3", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 339738629}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 872939519}, "child": {"skip": 180, "offset": 212, "next": [], "symbols": [{"name": "_ch4dma", "hash": "bda15121a184731c067a4ec7806c904af70d5687", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1007030272}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 876785696}, "child": {"skip": 56, "offset": 68, "next": [{"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "sceIpuInit"}}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 2892103680}, "child": {"skip": 0, "offset": 76, "next": [], "symbols": [{"name": "sceMpegInit", "hash": "20595b4dccf7b2dc309da9835e1568a821ca15d3", "variant": 2556886576, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2892103680}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "sceIpuInit"}}, "child": {"skip": 4, "offset": 80, "next": [], "symbols": [{"name": "sceMpegInit", "hash": "03b6a0c2985d3712a4600cfb5725081f9a89462d", "variant": 1061432824, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 876740614}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1007026176, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 180, "offset": 192, "next": [], "symbols": [{"name": "sceGpInitLoadImage", "hash": "99224e1d3cb232325bef1805d853b46556159ef1", "variant": 774142677, "library": "libgp"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666762944}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855776}, "child": {"skip": 148, "offset": 160, "next": [], "symbols": [{"name": "checkModelVersion", "hash": "d8065d07a4f5b2642dfa7e54afecd4e7f97109f0", "variant": 374258118, "library": "libgraph"}]}}], "symbols": []}}, {"match": {"value": 4289724672}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 10518573}, "child": {"skip": 296, "offset": 308, "next": [], "symbols": [{"name": "_send_to_iop", "hash": "35574156aac80939313e32cb10f973002da2841b", "variant": 3475406715, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 77660166}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2693136384}, "child": {"skip": 156, "offset": 168, "next": [{"match": {"value": 621281281}, "child": {"skip": 0, "offset": 172, "next": [{"match": {"value": 341901306}, "child": {"skip": 48, "offset": 224, "next": [], "symbols": [{"name": "exponent", "hash": "a272193888cb9633564a37a905ed27a961b32177", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 0}, "child": {"skip": 0, "offset": 172, "next": [{"match": {"value": 341901306}, "child": {"skip": 48, "offset": 224, "next": [], "symbols": [{"name": "exponent", "hash": "b64d9673495e7060b0355cf29b09fee9c9325f13", "variant": 0, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724656}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 12615725}, "child": {"skip": 3052, "offset": 3064, "next": [], "symbols": [{"name": "_vfiprintf_r", "hash": "227b2a339bd2ea920aee63ab86f9)PS2SDB", 8192}, + std::string_view{R"PS2SDB(4f7df21c2199", "variant": 1609635344, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4290117888}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724576}, "child": {"skip": 2044, "offset": 2056, "next": [], "symbols": [{"name": "sppp_chap_input", "hash": "f5fc6d2f98c8a1e640c0d8509877501aa4481dae", "variant": 125497223, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289069328}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289003784}, "child": {"skip": 2132, "offset": 2144, "next": [], "symbols": [{"name": "__sceEENetigmp_input", "hash": "32a29d814b002b61e3e6d50eec1a9d61b8ce3b6a", "variant": 1071293400, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4290183328}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1008140288, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 728, "offset": 740, "next": [], "symbols": [{"name": "__sceEENetudp_input", "hash": "fbeddab75b7bc7c5fca1090ad9ab157154638383", "variant": 3872806891, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 604241919}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289790128}, "child": {"skip": 1460, "offset": 1472, "next": [], "symbols": [{"name": "_sce_eenet_dhclient", "hash": "8730ccdf0e38b82073a09977b889204c341dc7f8", "variant": 208405541, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4290642208}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290117888}, "child": {"skip": 756, "offset": 768, "next": [], "symbols": [{"name": "_sce_eenet_pppoectl", "hash": "6a8be9c0d8e3be743f73dd36deae7b7d825c4edf", "variant": 2411903822, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289855680}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289790128}, "child": {"skip": 1660, "offset": 1672, "next": [], "symbols": [{"name": "BN_div", "hash": "ee7abe61187df2fe20c41072e3c25020fa1b3e2a", "variant": 4263633252, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604176512}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "_GetGsDxDyOffset", "hash": "9188a7ea160e3b0dea84f4dcf7f83fdec742d47d", "variant": 0, "library": "libgraph"}]}}], "symbols": []}}, {"match": {"value": 666763120}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724528}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707584}, "child": {"skip": 20, "offset": 36, "next": [{"match": {"value": 278921272}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 4141}, "child": {"skip": 236, "offset": 280, "next": [], "symbols": [{"name": "_sceSifCmdIntrHdlr", "hash": "6be036d87ee0a652c03ac2571568dbcbbcda2741", "variant": 3633008921, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 278921274}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 4141}, "child": {"skip": 60, "offset": 104, "next": [{"match": {"value": 610467856}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 343998458}, "child": {"skip": 176, "offset": 288, "next": [], "symbols": [{"name": "_sceSifCmdIntrHdlr", "hash": "abf546ba2da12054d9ef3087df2308d3edbe7e9d", "variant": 3633008921, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 0}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 343998458}, "child": {"skip": 176, "offset": 288, "next": [], "symbols": [{"name": "_sceSifCmdIntrHdlr", "hash": "6bfb02ddf462f65356a2ffea09c3ddb21e9a4a38", "variant": 3633008921, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1007747072, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290183280}, "child": {"skip": 832, "offset": 852, "next": [], "symbols": [{"name": "sceHiGsDisplaySet", "hash": "10ab9f4090c3c235c94980a55d04e2e226f68625", "variant": 2153639124, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 1006768127}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8423469}, "child": {"skip": 168, "offset": 188, "next": [{"match": {"value": 331350092}, "child": {"skip": 0, "offset": 192, "next": [{"match": {"value": 10285}, "child": {"skip": 344, "offset": 540, "next": [], "symbols": [{"name": "_cpr8", "hash": "796bbe632db5521c4c7b72b95e6731d76ec2dad4", "variant": 3808565236, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 331350093}, "child": {"skip": 0, "offset": 192, "next": [{"match": {"value": 10285}, "child": {"skip": 348, "offset": 544, "next": [], "symbols": [{"name": "_cpr8", "hash": "50208fd60fa09b23ddc92302b64b561784ae8ff7", "variant": 3808565236, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724480}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2355232768, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 260, "offset": 276, "next": [], "symbols": [{"name": "ssl2_get_cipher_by_char", "hash": "23b6951a3da1d9cb7468f8cd21e3e5c937d7d942", "variant": 2606955473, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 4289790032}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2355232768, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 248, "offset": 264, "next": [], "symbols": [{"name": "ssl3_get_cipher_by_char", "hash": "687095ccba55b05677fed9d724db0a9edf73ae4b", "variant": 1611926381, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290117744}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290052192}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 609615872, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 48, "offset": 68, "next": [{"match": {"value": 268435501}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 604176284}, "child": {"skip": 216, "offset": 292, "next": [], "symbols": [{"name": "sceMcOpen", "hash": "04b725e1a3a49955efcc5ecfbdb906ab8128742d", "variant": 4050032502, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 268435502}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 604176284}, "child": {"skip": 84, "offset": 160, "next": [{"match": {"value": 1007222784, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 164, "next": [{"match": {"value": 1007353856, "relocation": {"type": "MIPS_HI16", "symbol": "mceSifRpcEndFunc"}}, "child": {"skip": 128, "offset": 296, "next": [], "symbols": [{"name": "sceMcOpen", "hash": "716e912a0fb68c22ac199d639b9874e402cdf22f", "variant": 2918083806, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 2893217800}, "child": {"skip": 0, "offset": 164, "next": [{"match": {"value": 1007222784, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 128, "offset": 296, "next": [], "symbols": [{"name": "sceMcOpen", "hash": "fbe6afc29c9a6238dce60aa6e593541e19c22028", "variant": 130101683, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289986640}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 609615872, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 48, "offset": 68, "next": [{"match": {"value": 268435514}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 604176284}, "child": {"skip": 136, "offset": 212, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "FlushCache"}}, ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(child": {"skip": 0, "offset": 216, "next": [{"match": {"value": 2922381328}, "child": {"skip": 124, "offset": 344, "next": [], "symbols": [{"name": "sceMcRename", "hash": "1ce04cde44b0e115b1a31dc1b3b71965e5cc31a6", "variant": 1103324788, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 2922381328}, "child": {"skip": 0, "offset": 216, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "FlushCache"}}, "child": {"skip": 124, "offset": 344, "next": [], "symbols": [{"name": "sceMcRename", "hash": "3a1cb59142c0f5cbb76f7fccc41d9c9b8f79a5c8", "variant": 327415043, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 268435515}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 604176284}, "child": {"skip": 196, "offset": 272, "next": [{"match": {"value": 4227117}, "child": {"skip": 0, "offset": 276, "next": [{"match": {"value": 369098756}, "child": {"skip": 68, "offset": 348, "next": [], "symbols": [{"name": "sceMcRename", "hash": "6a671596319d4f811a21450b768dff1ca0713e80", "variant": 2221288728, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 272629765}, "child": {"skip": 0, "offset": 276, "next": [{"match": {"value": 604110867}, "child": {"skip": 68, "offset": 348, "next": [], "symbols": [{"name": "sceMcRename", "hash": "324e953e82775d4f123eb486baf451c451562871", "variant": 3492682429, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290052192}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289986640}, "child": {"skip": 88, "offset": 104, "next": [{"match": {"value": 638582784, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 609288192, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 164, "offset": 276, "next": [], "symbols": [{"name": "sceMcRead", "hash": "79083f3bd4cdcfcf575a2ba5dc561a1c923c2036", "variant": 3648339200, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 609288192, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 638582784, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 164, "offset": 276, "next": [], "symbols": [{"name": "sceMcRead", "hash": "ecda2bb4efccc730ebe4039319120cfa74af9aa1", "variant": 3451014162, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290183280}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290117728}, "child": {"skip": 432, "offset": 452, "next": [], "symbols": [{"name": "_dispRefImageField", "hash": "0cb5c9a84284f9611541d7a04fbae639a967dec5", "variant": 2744335338, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 4290117728}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4241453}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289986624}, "child": {"skip": 280, "offset": 304, "next": [], "symbols": [{"name": "_peepBit", "hash": "7d1780bf1a5cf23d95c3017d8808ce77f0077fc0", "variant": 2994830775, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 16824365}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4290052176}, "child": {"skip": 184, "offset": 208, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceMcCoreSetAlaram"}}, "child": {"skip": 0, "offset": 212, "next": [{"match": {"value": 2920742932}, "child": {"skip": 48, "offset": 264, "next": [], "symbols": [{"name": "sceMc2GetDirAsync", "hash": "48c0c609ed2072d801b8830d0874323c44e0e9c5", "variant": 3964830716, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceMcCoreExecSubs"}}, "child": {"skip": 0, "offset": 212, "next": [{"match": {"value": 2920742932}, "child": {"skip": 48, "offset": 264, "next": [], "symbols": [{"name": "sceMc2GetDirAsync", "hash": "48c0c609ed2072d801b8830d0874323c44e0e9c5", "variant": 4216406576, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724464}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289790016}, "child": {"skip": 444, "offset": 460, "next": [], "symbols": [{"name": "_extensionAndUserData", "hash": "99587f14119f6d20e8786bbd1c716ba4bbc985b9", "variant": 4164822837, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 4290052176}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289855520}, "child": {"skip": 432, "offset": 448, "next": [], "symbols": [{"name": "_dispRefImageField", "hash": "1e14e52cb53691c42ec69ad5ff2930aa560191f5", "variant": 2261739653, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 4289986640}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290117744}, "child": {"skip": 416, "offset": 432, "next": [], "symbols": [{"name": "DecodeTim2", "hash": "5d11a92f72bef065bd9e5b100f019c2da970e3a9", "variant": 381034940, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 4289855600}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289790048}, "child": {"skip": 164, "offset": 180, "next": [], "symbols": [{"name": "__sceEENetrt_ifannouncemsg", "hash": "9f6b10d3e1b132d1ba1624123d714ae4eb6373c8", "variant": 1535546890, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289986624}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289921072}, "child": {"skip": 320, "offset": 336, "next": [], "symbols": [{"name": "sceEENetDhcpClient", "hash": "fbc34f189c70c45fc2acc6013f639cda69d518f5", "variant": 199488903, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1007419392, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289003608}, "child": {"skip": 36, "offset": 48, "next": [{"match": {"value": 2374107136, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 2353201160}, "child": {"skip": 24, "offset": 80, "next": [], "symbols": [{"name": "printf", "hash": "d8af0211ad2549ec68e86344034bf87c88aa78b6", "variant": 338389775, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 3886809160}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 3886940236}, "child": {"skip": 40, "offset": 96, "next": [], "symbols": [{"name": "printf", "hash": "0849b733ddcc1fba6949a3c202922c5c0d7c1f80", "variant": 521753760, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2407727104, "relocation": {"type": "MIPS_GPREL16", "symbol": "_theSceMpeg"}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289986624}, "child": {"skip": 520, "offset": 532, "next": [], "symbols": [{"name": "_cpr8", "hash": "63630383480246e6d8c0e9f3045bec70f5cef5bb", "variant": 2078063958, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 1007222784, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2368012288, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 432, "offset": 444, "next": [], "symbols": [{"name": "sceGpInitLoadTexelClut", "hash": "e68b97426f2d3e120af0e9f16552b475ecee8dbe", "variant": 383111719, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 1007091712, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 604307460}, "child": {"skip": 360, "offset": 372, "next": [], "symbols": [{"name": "__sceEENettcp_init", "hash": "07a7139323b4104da6a86663fea0c86e4e58abc6", "variant": 409941774, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 338944}, ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290117744}, "child": {"skip": 872, "offset": 884, "next": [], "symbols": [{"name": "sceGsSetDefDispEnv", "hash": "0c6f9b76ed6c60044e30365327cbffe70064c9e8", "variant": 1946663678, "library": "libgraph"}]}}], "symbols": []}}, {"match": {"value": 4290117744}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1008074752, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289855536}, "child": {"skip": 72, "offset": 88, "next": [{"match": {"value": 341966923}, "child": {"skip": 0, "offset": 92, "next": [{"match": {"value": 977534984}, "child": {"skip": 420, "offset": 516, "next": [], "symbols": [{"name": "sceCdDiskReady", "hash": "ea2c869c85ea5bea8cf2c660f8423774b946649e", "variant": 602252755, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 341966930}, "child": {"skip": 0, "offset": 92, "next": [{"match": {"value": 977534984}, "child": {"skip": 448, "offset": 544, "next": [], "symbols": [{"name": "sceCdDiskReady", "hash": "12fed3a52643991321d317ee3bb8cce0495a9e7b", "variant": 1148794955, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290052192}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 45101}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289986640}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 10528813}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289921088}, "child": {"skip": 560, "offset": 588, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "GsPutIMR"}}, "child": {"skip": 0, "offset": 592, "next": [{"match": {"value": 876872192}, "child": {"skip": 1080, "offset": 1676, "next": [], "symbols": [{"name": "sceGsExecStoreImage", "hash": "5f7103388f11f49d9429d96c78d8e8d1176d7568", "variant": 2205875392, "library": "libgraph"}]}}], "symbols": []}}, {"match": {"value": 604242432}, "child": {"skip": 0, "offset": 592, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "GsPutIMR"}}, "child": {"skip": 344, "offset": 940, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "scePrintf"}}, "child": {"skip": 0, "offset": 944, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 728, "offset": 1676, "next": [], "symbols": [{"name": "sceGsExecStoreImage", "hash": "4e7d9f0c0ae44c3ff7a041e0815e496b5d9c35cc", "variant": 441350099, "library": "libgraph"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "printf"}}, "child": {"skip": 0, "offset": 944, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 728, "offset": 1676, "next": [], "symbols": [{"name": "sceGsExecStoreImage", "hash": "fee69d7603f4d11e1562bf19468fca62bb6fbd12", "variant": 936782300, "library": "libgraph"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 43053}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289855536}, "child": {"skip": 572, "offset": 600, "next": [], "symbols": [{"name": "ssl2_set_certificate", "hash": "f827fd6f8d0fcc3660ce5661d95b76606460d79c", "variant": 710498267, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289921088}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8431661}, "child": {"skip": 540, "offset": 564, "next": [], "symbols": [{"name": "X509_PUBKEY_set", "hash": "bc756d07eab11272437f1345961ceac0393f6ba2", "variant": 3542049501, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10530861}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289986640}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 43053}, "child": {"skip": 540, "offset": 564, "next": [{"match": {"value": 339738717}, "child": {"skip": 0, "offset": 568, "next": [{"match": {"value": 638582785}, "child": {"skip": 1104, "offset": 1676, "next": [], "symbols": [{"name": "sceGsExecStoreImage", "hash": "1095935b1cc4144d5cbe2ede8c4ab1a363dafbc0", "variant": 1559372256, "library": "libgraph"}]}}], "symbols": []}}, {"match": {"value": 339738718}, "child": {"skip": 0, "offset": 568, "next": [{"match": {"value": 638582785}, "child": {"skip": 384, "offset": 956, "next": [{"match": {"value": 268435630}, "child": {"skip": 0, "offset": 960, "next": [{"match": {"value": 604176383}, "child": {"skip": 732, "offset": 1696, "next": [], "symbols": [{"name": "sceGsExecStoreImage", "hash": "0b299ddcf177ab42f19becdd1074ee6f7557ce82", "variant": 362681797, "library": "libgraph"}]}}], "symbols": []}}, {"match": {"value": 268435627}, "child": {"skip": 0, "offset": 960, "next": [{"match": {"value": 604176383}, "child": {"skip": 720, "offset": 1684, "next": [], "symbols": [{"name": "sceGsExecStoreImage", "hash": "4618832299967f56bddbb0894a302c8adef89e71", "variant": 4121478149, "library": "libgraph"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855536}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8431661}, "child": {"skip": 932, "offset": 956, "next": [], "symbols": [{"name": "sceEENetGethostbyname2TO", "hash": "915fd2f44e76bf83c306037d890d0dd1780600b6", "variant": 685279734, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8433709}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289986640}, "child": {"skip": 420, "offset": 440, "next": [], "symbols": [{"name": "sceEENetGethostbyaddrTO", "hash": "fda78ffb4950733685a41f4220ef20abb3c2483c", "variant": 64728514, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 14725165}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289921088}, "child": {"skip": 212, "offset": 232, "next": [], "symbols": [{"name": "X509_STORE_get_by_subject", "hash": "c2c0ccc0f0908e3018577c011add4cc0b1128a6b", "variant": 1773864838, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289921088}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 14725165}, "child": {"skip": 404, "offset": 420, "next": [{"match": {"value": 604307462}, "child": {"skip": 0, "offset": 424, "next": [{"match": {"value": 12333}, "child": {"skip": 12, "offset": 440, "next": [{"match": {"value": 604635144}, "child": {"skip": 0, "offset": 444, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}}, "child": {"skip": 72, "offset": 520, "next": [], "symbols": [{"name": "_sceSifLoadModuleBuffer", "hash": "c75a5bfa2ea4526a0837c94373ab6a8369338a79", "variant": 1133018584, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604635140}, "child": {"skip": 0, "offset": 444, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceSifCallRpc"}}, "child": {"skip": 72, "offset": 520, "next": [], "symbols": [{"name": "_sceSifLoadModuleBuffer", "hash": "7c13ef3007aa0059cad0dcb78409563fc2dc680f", "variant": 1133018584, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604307463}, "child": {"skip": 0, "offset": 424, "next": [{"match": {"value": 12333}, "child": {"skip": 92, "offset": 520, "next": [], "symbols": [{"name": "sceSifStopModule", "hash": "d25eaaf3121292f727f0ecf24a3acf0299361135", "variant": 1133018584, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289986640}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707584}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8429613}, "child": {"skip": 568, "offset": 588, "next": [], "symbols": [{"name": "__kernel_cos", "hash": "154f7798eb5f612c95fa0ed12dcad5b58b986906", "variant": 2837354040, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 16822317}, "child": {"skip": 0, "offset":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( 16, "next": [{"match": {"value": 4289855536}, "child": {"skip": 32, "offset": 52, "next": [{"match": {"value": 2382495744}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 675422337}, "child": {"skip": 296, "offset": 356, "next": [], "symbols": [{"name": "sceDbcSendData3", "hash": "5765bdf560da7947f7eadf89f4f608a1ec14586e", "variant": 697617073, "library": "libdbc"}]}}], "symbols": []}}, {"match": {"value": 2382561280}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 677519489}, "child": {"skip": 296, "offset": 356, "next": [], "symbols": [{"name": "sceDbcSendData3", "hash": "ef9a732d85c5ee7c229fc4bb3439ebc84ec8c95a", "variant": 1321953642, "library": "libdbc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 45101}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289921088}, "child": {"skip": 412, "offset": 432, "next": [], "symbols": [{"name": "i2d_ASN1_INTEGER", "hash": "0c21dfc4e432dfbe4b3fbacc27d7283d42ff04a8", "variant": 2202602349, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789984}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707584}, "child": {"skip": 372, "offset": 388, "next": [], "symbols": [{"name": "smap_set_mc", "hash": "6ff9e3d598a2766590ca27816e147155f406588b", "variant": 3953430725, "library": "ent_smap"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006768128}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290117728}, "child": {"skip": 460, "offset": 472, "next": [], "symbols": [{"name": "sceDevVif1GetCnd", "hash": "5d4d03e724946a63d975c108c9167ce2547d6f59", "variant": 1254484019, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 4290052176}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290183280}, "child": {"skip": 188, "offset": 200, "next": [], "symbols": [{"name": "sceDevConsClearBox", "hash": "1e286ac9429a573479b7231a6e77a2ba2b24052a", "variant": 2124738955, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 4289921088}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 10524717}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290117744}, "child": {"skip": 300, "offset": 316, "next": [], "symbols": [{"name": "sceDevFont", "hash": "9324e484b71a77c71c5b1e90b4977160856ae2da", "variant": 3662313126, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 4289855536}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 12621869}, "child": {"skip": 316, "offset": 332, "next": [], "symbols": [{"name": "sceLseek", "hash": "ca1456aacb76193e85f73570c83269b6df5a4d15", "variant": 3914214780, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 3887333456}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1174443271}, "child": {"skip": 240, "offset": 252, "next": [], "symbols": [{"name": "sceVu0ViewScreenMatrix", "hash": "f3dc9853586efc854fac8b49639b3fddd31a9afd", "variant": 2499387165, "library": "libvu0"}]}}], "symbols": []}}, {"match": {"value": 4289724496}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1007681536, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 72, "offset": 84, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 88, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 144, "offset": 236, "next": [], "symbols": [{"name": "InitThread", "hash": "131e84f22243a45cfcf3e749c5a951c6797047ff", "variant": 2602532614, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006960682}, "child": {"skip": 0, "offset": 88, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 144, "offset": 236, "next": [], "symbols": [{"name": "InitThread", "hash": "dd080544ca8d2527e3ba00949d9640152a061496", "variant": 1293929378, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006960764}, "child": {"skip": 0, "offset": 88, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 144, "offset": 236, "next": [], "symbols": [{"name": "InitThread", "hash": "2321b4b8c525e7d51b31d13dac053cfba0a4dce7", "variant": 1293929378, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006960851}, "child": {"skip": 0, "offset": 88, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 144, "offset": 236, "next": [], "symbols": [{"name": "InitThread", "hash": "3ec85a2d7b7fed0515b4dd3f6c56d0d6a2798b89", "variant": 1293929378, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006960683}, "child": {"skip": 0, "offset": 88, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "topThread"}}, "child": {"skip": 144, "offset": 236, "next": [], "symbols": [{"name": "InitThread", "hash": "6a1b76332d68d60087ae898c1790e32d948c4c89", "variant": 1293929378, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289921104}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724448}, "child": {"skip": 1468, "offset": 1480, "next": [], "symbols": [{"name": "_printf", "hash": "04e9c0a62688e9e763c5e20e326fca093fb85100", "variant": 2802430384, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 4289003608}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 24, "offset": 36, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_printf"}}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 4289396872}, "child": {"skip": 12, "offset": 56, "next": [], "symbols": [{"name": "kprintf", "hash": "130aec7fde6742b54c471cd2d547ff991a9e4178", "variant": 2534881249, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 4289396872}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 3886809160}, "child": {"skip": 28, "offset": 72, "next": [], "symbols": [{"name": "kprintf", "hash": "8d82faf91c4fcb07d707235e8e949c98a1822678", "variant": 588288315, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289790000}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290052208}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 14714925}, "child": {"skip": 304, "offset": 320, "next": [], "symbols": [{"name": "_sceSifSendCmd", "hash": "4765c6c70814e26e35e87ba178b3a5012bae1f46", "variant": 218391465, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 8423469}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290052208}, "child": {"skip": 52, "offset": 68, "next": [{"match": {"value": 301989947}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 604176383}, "child": {"skip": 268, "offset": 344, "next": [], "symbols": [{"name": "sceSifGetOtherData", "hash": "353c79f9e940a9799c1609f78040d794d218dabc", "variant": 3547872781, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 301989938}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 604176383}, "child": {"skip": 232, "offset": 308, "next": [], "symbols": [{"name": "sceSifGetOtherData", "hash": "911d6a4b2df06677735ce2f6fba18f3460252565", "variant": 225273218, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 301989950}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 604176383}, "child": {"skip": 280, "offset": 356, "next": [], "symbols": [{"name": "sceSifGetOtherData", "hash": "67b9d9fe14d390230743d4cd70d139dee86bafa2", "variant": 1387339413, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724528}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707584}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2)PS2SDB", 8192}, + std::string_view{R"PS2SDB(01326592, "relocation": {"type": "MIPS_26", "symbol": "EIntr"}}, "child": {"skip": 280, "offset": 296, "next": [], "symbols": [{"name": "_sceSifCmdIntrHdlr", "hash": "ca7862631c2bfbbbd9778287080587377afe325c", "variant": 4203685671, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 8421421}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289790072}, "child": {"skip": 324, "offset": 340, "next": [], "symbols": [{"name": "__smakebuf", "hash": "e953bef17a9a000c5ab8875eeba4dbc9f547a2ab", "variant": 4056731524, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4289790072}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289855616}, "child": {"skip": 4, "offset": 20, "next": [{"match": {"value": 2491613196}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 811728898}, "child": {"skip": 76, "offset": 104, "next": [{"match": {"value": 71368742}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 2409758724}, "child": {"skip": 220, "offset": 332, "next": [], "symbols": [{"name": "__smakebuf", "hash": "4c9ee983bf8990329d870e5df8ef91ab158e8b76", "variant": 1515126143, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 71368743}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 2409758724}, "child": {"skip": 228, "offset": 340, "next": [], "symbols": [{"name": "__smakebuf", "hash": "0010df7f8b40a2ccab84ab74a66b496c31ba5a17", "variant": 3237233796, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2492334092}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 835649538}, "child": {"skip": 304, "offset": 332, "next": [], "symbols": [{"name": "__smakebuf", "hash": "1825bd8034da2cb0802b8f370bd14ad0e8f5041e", "variant": 2732247526, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789984}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724432}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 12617773}, "child": {"skip": 100, "offset": 116, "next": [{"match": {"value": 339738728}, "child": {"skip": 0, "offset": 120, "next": [{"match": {"value": 604176368}, "child": {"skip": 452, "offset": 576, "next": [], "symbols": [{"name": "sceIoctl", "hash": "f1343cecb08d71b625a6e61eb755438b643fbf3f", "variant": 3697165966, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 339738754}, "child": {"skip": 0, "offset": 120, "next": [{"match": {"value": 604176368}, "child": {"skip": 556, "offset": 680, "next": [], "symbols": [{"name": "sceIoctl", "hash": "9f0ae9e0de93ef891c8f5bc5bf68cf76420f7f69", "variant": 3317908872, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290117744}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8423469}, "child": {"skip": 548, "offset": 564, "next": [], "symbols": [{"name": "__sceEENetres_query", "hash": "a187754ed2058d51ea9ebfb67eb2dcce53d2f7b8", "variant": 1584881527, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289790032}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 8423469}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289921136}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724480}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 604241935}, "child": {"skip": 28, "offset": 52, "next": [{"match": {"value": 1413480452}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 2920349708}, "child": {"skip": 228, "offset": 288, "next": [], "symbols": [{"name": "sceAddDrv", "hash": "77c374936bcb4864450703dd32ad3b8a61c6df0c", "variant": 2670791166, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 339738628}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 240, "offset": 300, "next": [], "symbols": [{"name": "sceAddDrv", "hash": "2202d29d487edfe66d73942489fed8caf09387ec", "variant": 2875599254, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855584}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 665059360}, "child": {"skip": 204, "offset": 228, "next": [], "symbols": [{"name": "sppp_chap_scr", "hash": "cb234c2fa3a22dd2a5867fdd5100b007ff568dc1", "variant": 786239087, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289921136}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10520621}, "child": {"skip": 44, "offset": 60, "next": [{"match": {"value": 341835781}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 0}, "child": {"skip": 140, "offset": 208, "next": [{"match": {"value": 604504096}, "child": {"skip": 0, "offset": 212, "next": [{"match": {"value": 33572909}, "child": {"skip": 128, "offset": 344, "next": [], "symbols": [{"name": "sceDread", "hash": "49c1c2f03e101452b43e6088cafa06f231275d01", "variant": 3014156885, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604504092}, "child": {"skip": 0, "offset": 212, "next": [{"match": {"value": 33572909}, "child": {"skip": 128, "offset": 344, "next": [], "symbols": [{"name": "sceDread", "hash": "93a9bcdf82d4af6d74d87c8038697105cbd1f1ff", "variant": 3014156885, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 274726918}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 0}, "child": {"skip": 272, "offset": 340, "next": [], "symbols": [{"name": "sceDread", "hash": "d002e0cd6f22323df299e2311df0e1e43b7c82e3", "variant": 1744781664, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724480}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707584}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 148, "offset": 168, "next": [], "symbols": [{"name": "pre_func", "hash": "4920fa55c276929cdb443e388a3c8d7d1864e105", "variant": 4293766042, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 8423469}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707584}, "child": {"skip": 272, "offset": 292, "next": [], "symbols": [{"name": "__sceEENetsorflush", "hash": "f4a86ebceb3a42aeb717dc0738a2ea7e873ad889", "variant": 3424217982, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006833664}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290117728}, "child": {"skip": 48, "offset": 60, "next": [{"match": {"value": 272629849}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 1008009216, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 604, "offset": 672, "next": [], "symbols": [{"name": "cbTimerHandler", "hash": "5ed23d426d5441506c027ed96e73860a36e8d2b8", "variant": 771132563, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 272629852}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 1008009216, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 608, "offset": 676, "next": [], "symbols": [{"name": "cbTimerHandler", "hash": "2d3daa75cd6a75e6e1dbb00bb0b1bc45cc72a3dd", "variant": 2108978961, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289134696}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2946760704}, "child": {"skip": 60, "offset": 72, "next": [], "symbols": [{"name": "sceSnprintf", "hash": "16e53e9974fa3e812501be8342af9d09d5304547", "variant": 1188324256, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 4289855536}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290052192}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 12619821}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289986640}, "child": {"skip": 300, "offset": 320, "next)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": [], "symbols": [{"name": "scePadPortOpen", "hash": "139828345bfaa64c7c0dae410328cfcb9df6fa69", "variant": 2337526108, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 8425517}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289986640}, "child": {"skip": 52, "offset": 72, "next": [{"match": {"value": 268435515}, "child": {"skip": 0, "offset": 76, "next": [{"match": {"value": 4141}, "child": {"skip": 0, "offset": 80, "next": [{"match": {"value": 2395209728, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 411041798}, "child": {"skip": 264, "offset": 352, "next": [], "symbols": [{"name": "sceCdStream", "hash": "1ab131fc168201465085a23be72e4cf50e84d305", "variant": 4083996727, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 2395078656, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 406847493}, "child": {"skip": 264, "offset": 352, "next": [], "symbols": [{"name": "sceCdStream", "hash": "4cd563d58d286ed3810522a06f40a3d5a6d68a42", "variant": 1439746480, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 268435516}, "child": {"skip": 0, "offset": 76, "next": [{"match": {"value": 4141}, "child": {"skip": 276, "offset": 356, "next": [], "symbols": [{"name": "sceCdStream", "hash": "d33c1b0b2e73333b69c80cd62164bef05c78d09f", "variant": 230872796, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707584}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8425517}, "child": {"skip": 1080, "offset": 1096, "next": [], "symbols": [{"name": "wait_offer", "hash": "08a0433ee6d1d0069fe86696efa2c0511dfeb28b", "variant": 3153649746, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290183280}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290117728}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1008140288, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290052176}, "child": {"skip": 180, "offset": 200, "next": [], "symbols": [{"name": "_Cdvd_cbLoop", "hash": "3ec37b603a933038befeb0cb71eb8f1bd32eedd9", "variant": 1565382582, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 18921517}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290052176}, "child": {"skip": 152, "offset": 172, "next": [], "symbols": [{"name": "__dynamic_cast", "hash": "66d7faada1cfeafb16cef6dd158623e93ba80323", "variant": 0, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 8435757}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290052176}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 10530861}, "child": {"skip": 4, "offset": 28, "next": [{"match": {"value": 16820269}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4289921072}, "child": {"skip": 176, "offset": 212, "next": [], "symbols": [{"name": "bsearch", "hash": "57fe52fb5ec5ce0773dec8490e77ee4c10f59df1", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 14723117}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4290707584}, "child": {"skip": 176, "offset": 212, "next": [], "symbols": [{"name": "OBJ_bsearch", "hash": "134461f4fffd713671a6c8273c1db5f4937cbd1c", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289986624}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 14725165}, "child": {"skip": 356, "offset": 380, "next": [], "symbols": [{"name": "sceEENetMCopyback", "hash": "22e901f027e16665a4cb8f0cbe614c6131c7926b", "variant": 3557064571, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 605487105}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290052176}, "child": {"skip": 128, "offset": 148, "next": [{"match": {"value": 2384595016}, "child": {"skip": 0, "offset": 152, "next": [{"match": {"value": 272629768}, "child": {"skip": 116, "offset": 272, "next": [], "symbols": [{"name": "_mbAddressIncrement", "hash": "afababe671c8f5a39124993ad462a3f923d98fe5", "variant": 1357763300, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2384595040}, "child": {"skip": 0, "offset": 152, "next": [{"match": {"value": 272629768}, "child": {"skip": 116, "offset": 272, "next": [], "symbols": [{"name": "_mbAddressIncrement", "hash": "7aa02d29846533bce3222a1b5ec471ff2f7dd241", "variant": 1357763300, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 23115821}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290052176}, "child": {"skip": 32, "offset": 52, "next": [{"match": {"value": 8425517}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 4289724416}, "child": {"skip": 244, "offset": 304, "next": [], "symbols": [{"name": "sceHiGsTestRegs", "hash": "72f17b3b8c239109e6d6b5590699b288893058c3", "variant": 898816362, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 12619821}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 4289724416}, "child": {"skip": 236, "offset": 296, "next": [], "symbols": [{"name": "sceHiGsPrmodeRegs", "hash": "110e7deff17d949adfd2ab3aa6f647f8e0fcccf3", "variant": 672425562, "library": "libhig"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 47149}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289986624}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8433709}, "child": {"skip": 568, "offset": 592, "next": [], "symbols": [{"name": "anime_set", "hash": "8945714e34441030b4fac236211707f910793627", "variant": 3626180953, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 4289921072}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8433709}, "child": {"skip": 796, "offset": 820, "next": [], "symbols": [{"name": "anime_set", "hash": "bb2dc6091bf0e3cdc00d61e871cb40d225f172f1", "variant": 3835595766, "library": "libhip"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 12630061}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789968}, "child": {"skip": 452, "offset": 472, "next": [], "symbols": [{"name": "__sceEENetrt_setgate", "hash": "8aedf0e6dadb1dbbff6dc75b7fe2c6e7a5e56175", "variant": 2849303479, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4290052176}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 45101}, "child": {"skip": 504, "offset": 524, "next": [], "symbols": [{"name": "__sceEENettcp_ctloutput", "hash": "a39708177a870ac3605efba106a3bfd5ea10cde9", "variant": 3373791177, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289921072}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10532909}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290117728}, "child": {"skip": 696, "offset": 716, "next": [], "symbols": [{"name": "sceEENetMSplit", "hash": "39896f39eb9fd3fe435f57b3d67b1d47e70f81c6", "variant": 3799155659, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 12630061}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789968}, "child": {"skip": 1028, "offset": 1048, "next": [], "symbols": [{"name": "sppp_output", "hash": "2abb703fed8e93205d5171deb7fb3257fb7004f4", "variant": 3940985148, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4290707584}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8427565}, "child": {"skip": 688, "offset": 708, "next": [], "symbols": [{"name": "__sceEENetin_pcbstate", "hash": "24511a2b82bd0123c99108a4df40112e60cf165e", "variant": 2687736615, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289986624}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707584}, "child": {"skip": 612, "offset": )PS2SDB", 8192}, + std::string_view{R"PS2SDB(628, "next": [], "symbols": [{"name": "__sceEENetrn_match", "hash": "78867d0776d1ae151c7ddf0788bff1330ea5952e", "variant": 3185561446, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10532909}, "child": {"skip": 704, "offset": 720, "next": [], "symbols": [{"name": "tls1_enc", "hash": "61b48393991ffe612aaea45800fcf3ced14c9b2d", "variant": 53974109, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290052192}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289986640}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1008009216, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8429613}, "child": {"skip": 8, "offset": 28, "next": [{"match": {"value": 12621869}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2393112576, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 248, "offset": 284, "next": [], "symbols": [{"name": "sceMcRead", "hash": "774a2af13b8612ad23758608fe003461ad766770", "variant": 3099671738, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 10524717}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4289724432}, "child": {"skip": 324, "offset": 360, "next": [], "symbols": [{"name": "sceMcRename", "hash": "8af6735285dbd57ba4560fdd09dd5422c3368117", "variant": 4052926336, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 14723117}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289921088}, "child": {"skip": 48, "offset": 68, "next": [{"match": {"value": 268435515}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 4141}, "child": {"skip": 272, "offset": 348, "next": [], "symbols": [{"name": "sceCdStream", "hash": "c18b17986938bd72a99e8e04f2639c0168dcba04", "variant": 1940172453, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 268435512}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 4141}, "child": {"skip": 260, "offset": 336, "next": [], "symbols": [{"name": "sceCdStream", "hash": "399281eb9ce0ef0649b4067882a4e9aa033c32fd", "variant": 1785163166, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8431661}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1007943680, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 252, "offset": 272, "next": [], "symbols": [{"name": "sceMcOpen", "hash": "6b4ac16cd0eb4c504e86f134ebb4cd8e15dad129", "variant": 2534716145, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855536}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8431661}, "child": {"skip": 292, "offset": 308, "next": [], "symbols": [{"name": "sceMcOpen", "hash": "f8a46211b35b3c3048e8693bc6ea4eff368d4093", "variant": 83404372, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 4289921088}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1008009216, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8427565}, "child": {"skip": 296, "offset": 316, "next": [], "symbols": [{"name": "sceMcRename", "hash": "dc07bf97fa745b769d2f374e8c40e5c6dd508f9f", "variant": 1742974129, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 1008042241}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855536}, "child": {"skip": 400, "offset": 420, "next": [], "symbols": [{"name": "_SetEntryByPos", "hash": "4e04bfe7f463edf4f7234d8b075fff8890bab51d", "variant": 2921900271, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855568}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1007812608, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289790016}, "child": {"skip": 648, "offset": 664, "next": [], "symbols": [{"name": "sceMcInit", "hash": "ae88b57b4809e22f6c2b01cb29763e9d0a4bdf10", "variant": 1134424570, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 4289790016}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10522669}, "child": {"skip": 276, "offset": 292, "next": [], "symbols": [{"name": "hypot", "hash": "5b99e49b9aa18e8d13a9ee71f93023c66969ed5d", "variant": 12628878, "library": "libm"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724464}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 8421421}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289921120}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855568}, "child": {"skip": 12, "offset": 32, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__ieee754_log"}}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 4289986672}, "child": {"skip": 288, "offset": 328, "next": [], "symbols": [{"name": "log", "hash": "d0079a0a2ae6de469147dd9ed4f6e66fc85ffc16", "variant": 669278791, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__ieee754_log10"}}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 4289986672}, "child": {"skip": 288, "offset": 328, "next": [], "symbols": [{"name": "log10", "hash": "c4dfac5fe1acad3654be31cf1ed3629e3b30a95c", "variant": 379421672, "library": "libm"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289986672}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855568}, "child": {"skip": 4, "offset": 24, "next": [{"match": {"value": 1007943680, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4290707584}, "child": {"skip": 236, "offset": 268, "next": [], "symbols": [{"name": "sqrt", "hash": "c201450c23b37d662b8887bcce179cfff202ae18", "variant": 3899244659, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 4290707584}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__ieee754_log"}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4289921120}, "child": {"skip": 296, "offset": 332, "next": [], "symbols": [{"name": "log", "hash": "7a697f7f98710b872aea96319fb63ebd7d8e10f5", "variant": 3027484010, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__ieee754_sqrt"}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4289921120}, "child": {"skip": 240, "offset": 276, "next": [], "symbols": [{"name": "sqrt", "hash": "d5cb1104891500284ff3cc8c25b9bf201e8bfb6f", "variant": 2307920461, "library": "libm"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289790016}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724464}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10520621}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 260, "offset": 280, "next": [], "symbols": [{"name": "atan2", "hash": "582604e3af2b4fcc28e204bc53ae2f14ab5d7d10", "variant": 1632670030, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 8423469}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 10518573}, "child": {"skip": 264, "offset": 284, "next": [], "symbols": [{"name": "fmod", "hash": "1eb60abb4782bc90a96c64c7b427e572fdfcdea4", "variant": 3434270211, "library": "libm"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707584}, "child": {"skip": 1316, "offset": 1328, "next": [], "symbols": [{"name": "__ieee754_asin", "hash": "d6ae42f49079ffdb8cb0c8b75ade28cd2dc1308c", "variant": 2391188050, "li)PS2SDB", 8192}, + std::string_view{R"PS2SDB(brary": "libm"}]}}], "symbols": []}}, {"match": {"value": 4288938080}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289003624}, "child": {"skip": 36, "offset": 48, "next": [{"match": {"value": 33564717}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 665190464}, "child": {"skip": 32, "offset": 88, "next": [], "symbols": [{"name": "dpadd", "hash": "ddc9a963db9ba99fcdffb03ee65e1f8f1ebd1f03", "variant": 3172731071, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 2409758756}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 33564717}, "child": {"skip": 44, "offset": 100, "next": [], "symbols": [{"name": "dpsub", "hash": "715727868babf363a3795a423fa10b824425effe", "variant": 1475985267, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290117728}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10530861}, "child": {"skip": 32, "offset": 48, "next": [{"match": {"value": 306184408}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 8423469}, "child": {"skip": 928, "offset": 984, "next": [], "symbols": [{"name": "__sfvwrite", "hash": "df04863769a5c5e9daae04febdef877086b7ae7a", "variant": 3327391993, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 306184404}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 8423469}, "child": {"skip": 912, "offset": 968, "next": [], "symbols": [{"name": "__sfvwrite", "hash": "31e5e5e8c6a0be7c63b39d8a64a01768058023cd", "variant": 3641409113, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290052176}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1008074752, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289921072}, "child": {"skip": 500, "offset": 520, "next": [], "symbols": [{"name": "sceHiCallPlugSub", "hash": "3a2780a714095cdd68d2e9145677e30f6fc9da4a", "variant": 1089889050, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 8433709}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724416}, "child": {"skip": 404, "offset": 424, "next": [], "symbols": [{"name": "GeomInit", "hash": "81b54d3f286a153e4de33638f48c8bb94113ea02", "variant": 2237054111, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 10530861}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289921072}, "child": {"skip": 536, "offset": 556, "next": [], "symbols": [{"name": "bn_sqr_words", "hash": "21280eb71252f57f111a03cd7a520af865f30e7a", "variant": 2866396207, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 45101}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855520}, "child": {"skip": 636, "offset": 656, "next": [], "symbols": [{"name": "ssl23_client_hello", "hash": "dabd405e1c5cdfa7dc6338291ac627a76f732076", "variant": 3861789040, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1008074752, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 772, "offset": 788, "next": [], "symbols": [{"name": "pppoectl_thread", "hash": "d3c19f053833f19e5e2e0d25fb539d5831b5339a", "variant": 2123084091, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289986624}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8433709}, "child": {"skip": 408, "offset": 424, "next": [], "symbols": [{"name": "ssl_set_cert", "hash": "b95d20c18762923dd73a77fad0c2efbaf650237b", "variant": 1439280938, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289986624}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290117728}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8429613}, "child": {"skip": 280, "offset": 296, "next": [], "symbols": [{"name": "_findenv_r", "hash": "69dd19481fd767caa46ba11f06fbf4e7f26b789a", "variant": 2878117108, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4290183280}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8429613}, "child": {"skip": 272, "offset": 288, "next": [], "symbols": [{"name": "_findenv_r", "hash": "87f95f8ca01691fcd4551560011ebc3fc03a1f20", "variant": 3145395709, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4289921072}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1007943680, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8427565}, "child": {"skip": 464, "offset": 484, "next": [], "symbols": [{"name": "sceHiDMAMake_LoadGSLump", "hash": "487fae9e5168ac14e541473d1b368a5288b916d3", "variant": 2273968654, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 10526765}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789968}, "child": {"skip": 272, "offset": 292, "next": [], "symbols": [{"name": "BN_mul", "hash": "8b91adc9baa2e787cec12bce0798c36ec137b7b4", "variant": 472208987, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604111168}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289986624}, "child": {"skip": 420, "offset": 432, "next": [], "symbols": [{"name": "_doMC", "hash": "a8cfb9294011273f990ce78117869f94a37fa461", "variant": 2716429235, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1007812608, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290183280}, "child": {"skip": 336, "offset": 352, "next": [], "symbols": [{"name": "__sceEENetarpintr", "hash": "0e8d1589e88a7a4a18e29a74f3a0c40be51ec9dd", "variant": 883225747, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4290183280}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8425517}, "child": {"skip": 108, "offset": 124, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_decode_motion_vector"}}, "child": {"skip": 0, "offset": 128, "next": [{"match": {"value": 41959469}, "child": {"skip": 184, "offset": 316, "next": [], "symbols": [{"name": "_motionVector", "hash": "9daa29b7b4a2e2fc0d95191a608e4aa022b8a6cb", "variant": 3771835918, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "decode_motion_vector"}}, "child": {"skip": 0, "offset": 128, "next": [{"match": {"value": 41959469}, "child": {"skip": 184, "offset": 316, "next": [], "symbols": [{"name": "_motionVector", "hash": "9daa29b7b4a2e2fc0d95191a608e4aa022b8a6cb", "variant": 3706745506, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290052208}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289986656}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 605356467}, "child": {"skip": 236, "offset": 252, "next": [], "symbols": [{"name": "_nextHeader", "hash": "7dd6fe15fbc3272d8653d2927f31f7a57db93aa9", "variant": 2878584712, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 4289855552}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 12625965}, "child": {"skip": 404, "offset": 420, "next": [], "symbols": [{"name": "BN_MONT_CTX_set_word", "hash": "9d31be95934825d3bfea65187bfc3351e87b6ced", "variant": 3549088485, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 4289921104}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 43053}, "child": {"skip": 896, "offset": 912, "next": [], "symbols": [{"name": "ssl3_get_record", "hash": "ee3e15e58ec00e31414db21d9d5f83035794fbc8", "variant": 2637080587, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2143223904}, "child": {"skip": 0, "offset": 8, "next": [{"m)PS2SDB", 8192}, + std::string_view{R"PS2SDB(atch": {"value": 2142568528}, "child": {"skip": 536, "offset": 548, "next": [], "symbols": [{"name": "sceCccEncodeSJIS", "hash": "2453622b69b0ad6b42d21dea316e77fdf938d448", "variant": 1924713676, "library": "libccc"}]}}], "symbols": []}}, {"match": {"value": 753008656}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289921104}, "child": {"skip": 236, "offset": 248, "next": [], "symbols": [{"name": "sceSEIn_MakeTimeLfoCycle", "hash": "d7b7eabfa8c1fa7c8bdb80a995f9f921a743750b", "variant": 2937416959, "library": "libsein"}]}}], "symbols": []}}, {"match": {"value": 2143223936}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2142699632}, "child": {"skip": 28, "offset": 40, "next": [{"match": {"value": 1889582632}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 1891677736}, "child": {"skip": 188, "offset": 236, "next": [], "symbols": [{"name": "__destroy_new_array3", "hash": "254cd72a0d0b8b4648b8d807d46d97b7797ac17e", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 1889580584}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 1891675688}, "child": {"skip": 188, "offset": 236, "next": [], "symbols": [{"name": "__destroy_new_array3", "hash": "e24d8f2f38cc7ea833982ec06390129949d77acf", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707584}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2142699632}, "child": {"skip": 224, "offset": 236, "next": [], "symbols": [{"name": "__destroy_new_array3", "hash": "c2ac3ca8c13e15f62a838474b848db84810379d4", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 8400941}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289921120}, "child": {"skip": 24, "offset": 36, "next": [{"match": {"value": 272629763}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 4289724464}, "child": {"skip": 284, "offset": 328, "next": [], "symbols": [{"name": "scePad2CreateSocket", "hash": "c8ac77c9734c81552db0c3fcf805698128ae53ee", "variant": 2177430538, "library": "libpad2"}]}}], "symbols": []}}, {"match": {"value": 272629766}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 4289724464}, "child": {"skip": 292, "offset": 336, "next": [], "symbols": [{"name": "scePad2CreateSocket", "hash": "a07e40773988c0a88ad50ea4ab302aa2858805a6", "variant": 2533389403, "library": "libpad2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289986640}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289921088}, "child": {"skip": 420, "offset": 432, "next": [], "symbols": [{"name": "sceDbcSendData2", "hash": "213b43050666b4d9b2b2c94c9e8d85b0325411c1", "variant": 678814191, "library": "libdbc"}]}}], "symbols": []}}, {"match": {"value": 8413229}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289134696}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8237}, "child": {"skip": 112, "offset": 128, "next": [{"match": {"value": 283115547}, "child": {"skip": 0, "offset": 132, "next": [{"match": {"value": 3753836560}, "child": {"skip": 116, "offset": 252, "next": [], "symbols": [{"name": "sceSkSsSTRADPCM_Status", "hash": "b9f8c073e3cd8242b2c4d9c90caf5740a00d6e78", "variant": 1130336736, "library": "libsk"}]}}], "symbols": []}}, {"match": {"value": 283115548}, "child": {"skip": 0, "offset": 132, "next": [{"match": {"value": 3753836560}, "child": {"skip": 120, "offset": 256, "next": [], "symbols": [{"name": "sceSkSsSTRADPCM_Status", "hash": "33248fe9c7cfab64fb5862009278490c0d1acb08", "variant": 2078888542, "library": "libsk"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707584}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10502189}, "child": {"skip": 252, "offset": 268, "next": [], "symbols": [{"name": "SHA1_Transform", "hash": "cd32caa43b3692438800836771d767b7f9f1234f", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604176412}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290052192}, "child": {"skip": 228, "offset": 240, "next": [], "symbols": [{"name": "_sceMcCoreCheckNewCard", "hash": "e82a105641999fb2b86c42af99b42166f70e1910", "variant": 1864615120, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 604110876}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290052192}, "child": {"skip": 348, "offset": 360, "next": [], "symbols": [{"name": "_sceMcCoreWriteBack", "hash": "67900949a5721be09bc15739cd1ee60939529c8a", "variant": 2129406416, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 604373000}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290117744}, "child": {"skip": 188, "offset": 200, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "getCbp"}}, "child": {"skip": 0, "offset": 204, "next": [{"match": {"value": 139650}, "child": {"skip": 720, "offset": 928, "next": [], "symbols": [{"name": "DecodeTim2Clut", "hash": "fee91a3d7ea115dfd23e3b45eda1582c4cd2a6f4", "variant": 161223835, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "getLocalCbp"}}, "child": {"skip": 0, "offset": 204, "next": [{"match": {"value": 0}, "child": {"skip": 720, "offset": 928, "next": [], "symbols": [{"name": "DecodeTim2Clut", "hash": "35069b660a2ea3c7dba628ebebad477eca2ffac9", "variant": 3693681448, "library": "libhip"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289921072}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 492, "offset": 504, "next": [], "symbols": [{"name": "__sceEENeteenet_tsleep", "hash": "34f6621f8a6e6a7df02cf0a2b7866d7917cffda0", "variant": 384813047, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 872611839}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290052208}, "child": {"skip": 900, "offset": 912, "next": [], "symbols": [{"name": "__sceEENetsosetopt", "hash": "e378a38fa4db8d69ea6897d0ac90ccc50c90007d", "variant": 252128703, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 8402989}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289921088}, "child": {"skip": 668, "offset": 680, "next": [], "symbols": [{"name": "pppoe_send_padi", "hash": "9e2aaf3623285cd53d0bdcfbe508984f36286839", "variant": 2468018174, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 604110859}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290117728}, "child": {"skip": 24, "offset": 36, "next": [{"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 16816173}, "child": {"skip": 516, "offset": 560, "next": [], "symbols": [{"name": "__sceEENetraw_usrreq", "hash": "9c793d40c06aca24add3f230bee44f9653d900ae", "variant": 322791096, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 10524717}, "child": {"skip": 692, "offset": 736, "next": [], "symbols": [{"name": "__sceEENetrip_usrreq", "hash": "e1b400319dac9034d715e7e0abd722509254af73", "variant": 3659834813, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604110864}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290052208}, "child": {"skip": 568, "offset": 580, "next": [], "symbols": [{"name": "__sceEENetin_pcbconnect", "hash": "88995b1f807e2de880e4743eb4e86c4162edadcd", "variant": 1715421778, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 604110850}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290117728}, "child": {"skip": 1000, "offset": 1012, "next": [], "symbols": [{"name": "__sceEENetsyn_cache_respond", "hash": "8ddb362d3af2aa6be3c8a54c7bb3860bf1af2343", "variant": 1373152590, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 616955912}, "child": {"skip": 0, "offset": 8, "next": [{"matc)PS2SDB", 8192}, + std::string_view{R"PS2SDB(h": {"value": 4290183280}, "child": {"skip": 468, "offset": 480, "next": [], "symbols": [{"name": "__sceEENet_dns_gethtbyaddr", "hash": "aa85276142559ab27f29eddb45800692857b8d82", "variant": 3666254368, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 604373034}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289986672}, "child": {"skip": 344, "offset": 356, "next": [], "symbols": [{"name": "_sce_eenet_dhclient_arp_reply", "hash": "271fa269522c3382c4ac081f1d11e57cc9d37930", "variant": 1467979995, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289855600}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289790048}, "child": {"skip": 628, "offset": 640, "next": [], "symbols": [{"name": "http_open", "hash": "b75682799f0cdbd0e17687f43ebf8012fd7e5db2", "variant": 3430748381, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290183280}, "child": {"skip": 88, "offset": 100, "next": [{"match": {"value": 71303192}, "child": {"skip": 0, "offset": 104, "next": [{"match": {"value": 38899747}, "child": {"skip": 524, "offset": 632, "next": [], "symbols": [{"name": "rfc_date2time", "hash": "205a4571f2a64fc7678ed24563a12a06d297247e", "variant": 2005913015, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 71303261}, "child": {"skip": 0, "offset": 104, "next": [{"match": {"value": 38899747}, "child": {"skip": 448, "offset": 556, "next": [], "symbols": [{"name": "asctime_date2time", "hash": "d8a2c85dca66e5cb9fb00b919dceedb80a7e2b78", "variant": 3338700012, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 473148}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 473151}, "child": {"skip": 364, "offset": 376, "next": [], "symbols": [{"name": "BER_ITEMS_encode", "hash": "e427c3eaf81c6eecef81a052b95b513a81bdfff3", "variant": 3165309904, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 10491949}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289921136}, "child": {"skip": 204, "offset": 216, "next": [], "symbols": [{"name": "sslcert_do_verify_cb", "hash": "1de2e2fbd6e9221ddce24d043ecdf2473fbea616", "variant": 1951655892, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 818020480}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290052192}, "child": {"skip": 712, "offset": 724, "next": [], "symbols": [{"name": "op_asn1_encode", "hash": "cfd9c2e2409a28239e696dfc3545b5addc3c1f4d", "variant": 2758211521, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 6189}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289986672}, "child": {"skip": 336, "offset": 348, "next": [], "symbols": [{"name": "EVP_VerifyFinal", "hash": "46791ab1b80d413fced46411951a3dad3eacd83b", "variant": 3452227942, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604373012}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855600}, "child": {"skip": 160, "offset": 172, "next": [], "symbols": [{"name": "R_mtime_cmp", "hash": "71818f154a5cb7e375a82119cbb285ecf1b204ba", "variant": 112342065, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 4289986672}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289921120}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 12623917}, "child": {"skip": 412, "offset": 428, "next": [], "symbols": [{"name": "md_seed", "hash": "b2b835420ce061795010393ad0dbece143f05aac", "variant": 3259927191, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 4289855568}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 16818221}, "child": {"skip": 280, "offset": 296, "next": [], "symbols": [{"name": "ssl3_handshake_mac", "hash": "7d26485608760e2d481b35238cb966e2c71f9708", "variant": 2372775021, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724432}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290117744}, "child": {"skip": 328, "offset": 340, "next": [], "symbols": [{"name": "RSA_sign", "hash": "e9a21f80b18ecdb537222acf3530bdb931c42270", "variant": 2135351601, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 4289986656}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289921104}, "child": {"skip": 1072, "offset": 1084, "next": [], "symbols": [{"name": "ssl3_output_cert_chain", "hash": "724957d9a8ab7cf82576ae121e55b04802291f91", "variant": 3843552561, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 824377345}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 595906}, "child": {"skip": 256, "offset": 268, "next": [], "symbols": [{"name": "tls1_PRF", "hash": "bb3b23ebaa4b723a0b6789a6b37ef1826782f50b", "variant": 2021116199, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604110852}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289921136}, "child": {"skip": 576, "offset": 588, "next": [], "symbols": [{"name": "d2i_X509_EXTENSION", "hash": "242499804f6ea43ba27f2835bc841b9564675bb1", "variant": 4171879069, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666763152}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289986640}, "child": {"skip": 328, "offset": 344, "next": [], "symbols": [{"name": "sceOpen", "hash": "1c7168406b997c9d8aeee83d693312b8bc281d79", "variant": 3285758220, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 4289986640}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289921088}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1007943680, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289855536}, "child": {"skip": 52, "offset": 76, "next": [{"match": {"value": 8237}, "child": {"skip": 0, "offset": 80, "next": [{"match": {"value": 1006829566}, "child": {"skip": 336, "offset": 420, "next": [], "symbols": [{"name": "sceOpen", "hash": "e5eff1f74428f24a3938e4d57e9e6ebc99219083", "variant": 456254150, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 0}, "child": {"skip": 0, "offset": 80, "next": [{"match": {"value": 1006829566}, "child": {"skip": 300, "offset": 384, "next": [], "symbols": [{"name": "sceOpen", "hash": "defa2eb53fc87b405c36faa1a1fec9f3b77ec745", "variant": 55158667, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 609484800, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289855536}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 8427565}, "child": {"skip": 28, "offset": 56, "next": [{"match": {"value": 268435499}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 604176284}, "child": {"skip": 200, "offset": 264, "next": [], "symbols": [{"name": "sceMcGetEntSpace", "hash": "77e115c5bbfd7cada8f3a9b92b513217084d591d", "variant": 2690323974, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 268435500}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 604176284}, "child": {"skip": 204, "offset": 268, "next": [], "symbols": [{"name": "sceMcGetEntSpace", "hash": "61ded3a6dc9de4b6d768791cd9767b39eb7bc43a", "variant": 4069084744, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789984}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 8427565}, "child": {"skip": 240, "offset": 268, "next": [], "symbols": [{"name": "sceMcGetEntSpace", "hash": "30d16bebb0d4441d7ddaabf186413589f1460c2e", "variant": 2609787536, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"val)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ue": 8429613}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289855536}, "child": {"skip": 364, "offset": 388, "next": [], "symbols": [{"name": "DecodeTim2", "hash": "dd15470a2024a7307e984ed24cae19cb056de70c", "variant": 573420745, "library": "libhip"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289921088}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289855536}, "child": {"skip": 8, "offset": 24, "next": [{"match": {"value": 8425517}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4289724432}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 12617773}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 4290707552}, "child": {"skip": 176, "offset": 216, "next": [], "symbols": [{"name": "sceMcSeek", "hash": "d065e56b1e86976fb81a81329df0ee200bfa2236", "variant": 1137749390, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 4290707552}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 4289986640}, "child": {"skip": 608, "offset": 648, "next": [], "symbols": [{"name": "__sceEENeticmp_mtudisc", "hash": "6874ec2c83148300dfc43b295b539eb2f75e4ac5", "variant": 2803802845, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 12619821}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4289724432}, "child": {"skip": 72, "offset": 104, "next": [{"match": {"value": 1007353856, "relocation": {"type": "MIPS_HI16", "symbol": "mceSifRpcEndFunc"}}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 2890989584}, "child": {"skip": 112, "offset": 224, "next": [], "symbols": [{"name": "sceMcSeek", "hash": "4be9094a4928fff1f9c64f0a563bc9b0bfe91b67", "variant": 2341595725, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 2890989584}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 1007353856, "relocation": {"type": "MIPS_HI16", "symbol": "mceSifRpcEndFunc"}}, "child": {"skip": 112, "offset": 224, "next": [], "symbols": [{"name": "sceMcSeek", "hash": "08393b4c155651a7e9c10d55b34d6ebc93bc9721", "variant": 3838294867, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707552}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006862335}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2353528832, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8402989}, "child": {"skip": 60, "offset": 84, "next": [], "symbols": [{"name": "vsprintf", "hash": "0e25b18a254de9fa6c574c54c26d390ef74332d7", "variant": 2186433701, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 8402989}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 878968831}, "child": {"skip": 60, "offset": 84, "next": [], "symbols": [{"name": "vsprintf", "hash": "3fd6201a3e1553e8918bb249a514f57cdcba4480", "variant": 3615193369, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724512}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10518573}, "child": {"skip": 92, "offset": 108, "next": [], "symbols": [{"name": "vsnprintf", "hash": "a3736b7ff44e36635d019b66b5e022d190f21539", "variant": 1748887520, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4289986624}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290052176}, "child": {"skip": 272, "offset": 288, "next": [], "symbols": [{"name": "skin_init", "hash": "78b8e7a1ee3ceff9a471b1077b46bbb9d52d902a", "variant": 3961285987, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290052176}, "child": {"skip": 308, "offset": 324, "next": [], "symbols": [{"name": "__sceEENetrt_timer_timer", "hash": "386def13d2b153e85379dfc4b8d7d76ff99e24c7", "variant": 4029536100, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289855520}, "child": {"skip": 276, "offset": 292, "next": [], "symbols": [{"name": "__sceEENetin_restoremkludge", "hash": "a806d46002245b599adc187a539963fd132c034c", "variant": 2317700738, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289986624}, "child": {"skip": 188, "offset": 204, "next": [], "symbols": [{"name": "sceEENetCtlGetIfStat", "hash": "134c526e0067523ef1982fed9454543310160d0c", "variant": 1480590486, "library": "eenetctl"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2407661568, "relocation": {"type": "MIPS_GPREL16", "symbol": ".sdata"}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289986640}, "child": {"skip": 120, "offset": 132, "next": [{"match": {"value": 604307458}, "child": {"skip": 0, "offset": 136, "next": [{"match": {"value": 2946498560}, "child": {"skip": 76, "offset": 216, "next": [], "symbols": [{"name": "sceMcOpen", "hash": "f75b7703a79a4cb196fb7d4a5812583f5c9aaefe", "variant": 4057679509, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 604307569}, "child": {"skip": 0, "offset": 136, "next": [{"match": {"value": 2946498560}, "child": {"skip": 76, "offset": 216, "next": [], "symbols": [{"name": "sceMcOpen", "hash": "a3a50230cc32a71facb6fa9591d894c04c2c38f8", "variant": 4057679509, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1007419392, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289003576}, "child": {"skip": 32, "offset": 48, "next": [{"match": {"value": 2374107136, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 2353201160}, "child": {"skip": 24, "offset": 80, "next": [], "symbols": [{"name": "printf", "hash": "2a0cece61694105ae96143c63943db1772674cad", "variant": 338389775, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 3886809112}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 3886874652}, "child": {"skip": 56, "offset": 112, "next": [], "symbols": [{"name": "printf", "hash": "9a45c22dbc54e205b4d3a95431c633ffb5930601", "variant": 3556324276, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289003576}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289069120}, "child": {"skip": 64, "offset": 80, "next": [], "symbols": [{"name": "printf", "hash": "01d6f9850d975f4dd7b6310e5585cb96b7a43318", "variant": 338389775, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289003576}, "child": {"skip": 88, "offset": 104, "next": [], "symbols": [{"name": "scanf", "hash": "63085351fef9fc601fe85df369696ed687751f8a", "variant": 3097572225, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4289986640}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 228, "offset": 244, "next": [], "symbols": [{"name": "sceChk01", "hash": "23d68be7ab4322b8587c3054c4d3fc61abb8a017", "variant": 2540967742, "library": "libcheck"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2407923712, "relocation": {"type": "MIPS_GPREL16", "symbol": "_widthMB"}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2407858176, "relocation": {"type": "MIPS_GPREL16", "symbol": "_heightMB"}}, "child": {"skip": 268, "offset": 280, "next": [], "symbols": [{"name": "_pictureData0", "hash": "ae59a714f19081f4a6af01a0a47fd755fc12e9b0", "variant": 2846764426, "library": "libm)PS2SDB", 8192}, + std::string_view{R"PS2SDB(peg"}]}}], "symbols": []}}, {"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 604110856}, "child": {"skip": 204, "offset": 220, "next": [], "symbols": [{"name": "__sceEENeticmp_init", "hash": "52418e71699aa805b76cc6229330bbe16a746966", "variant": 1095425846, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289921104}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 436, "offset": 452, "next": [], "symbols": [{"name": "connect_proxy", "hash": "b5294e10543617b39cc6d27c913afb6a25001979", "variant": 336079445, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855536}, "child": {"skip": 676, "offset": 688, "next": [], "symbols": [{"name": "__sceEENettcp_ctlinput", "hash": "d38f2f917e0347650abd0ccd8bc4aea3a9856714", "variant": 3118346879, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 338944}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290052176}, "child": {"skip": 68, "offset": 80, "next": [{"match": {"value": 604176486}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 4206637}, "child": {"skip": 536, "offset": 624, "next": [], "symbols": [{"name": "sceGsSetDefDispEnv", "hash": "4bd4e742f86c8022e964e4730dc7a1f5ac73ab34", "variant": 241981582, "library": "libgraph"}]}}], "symbols": []}}, {"match": {"value": 4206637}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604110950}, "child": {"skip": 520, "offset": 608, "next": [], "symbols": [{"name": "sceGsSetDefDispEnv", "hash": "4421cd2aa89ff35f8550f4a1d3d8cd00ad3e9d61", "variant": 1414961219, "library": "libgraph"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 406528}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855520}, "child": {"skip": 4, "offset": 16, "next": [{"match": {"value": 431107}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289986624}, "child": {"skip": 460, "offset": 484, "next": [], "symbols": [{"name": "sceGsSetDefDrawEnv", "hash": "4476452f142e855b80aeed59565a783e1caedf97", "variant": 3870656691, "library": "libgraph"}]}}], "symbols": []}}, {"match": {"value": 4289986624}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 431107}, "child": {"skip": 456, "offset": 480, "next": [], "symbols": [{"name": "sceGsSetDefDrawEnv2", "hash": "e9e0269f9a8cade21700235061c69c17f9ebd8a0", "variant": 3809247884, "library": "libgraph"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289921072}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1007878144, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290052176}, "child": {"skip": 40, "offset": 56, "next": [{"match": {"value": 268435488}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 604176383}, "child": {"skip": 160, "offset": 224, "next": [], "symbols": [{"name": "sceMcSync", "hash": "f8ac4c914abe3fa3c182ec1daeff351bc7427e73", "variant": 1634211742, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 268435481}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 604176383}, "child": {"skip": 132, "offset": 196, "next": [], "symbols": [{"name": "sceMcSync", "hash": "f29acc801b4cf7d0ca9767bbb791d7ae9ad7c135", "variant": 2493544758, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8427565}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290052176}, "child": {"skip": 36, "offset": 52, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceGifPkTerminate"}}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 18907181}, "child": {"skip": 92, "offset": 152, "next": [], "symbols": [{"name": "sceGifPkRef", "hash": "14225f81dfe0bc21227fb6f29d1af7c8eb399039", "variant": 4256452058, "library": "libpkt"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceVif1PkTerminate"}}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 18907181}, "child": {"skip": 92, "offset": 152, "next": [], "symbols": [{"name": "sceVif1PkRef", "hash": "14225f81dfe0bc21227fb6f29d1af7c8eb399039", "variant": 3015198895, "library": "libpkt"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceVif0PkTerminate"}}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 18907181}, "child": {"skip": 92, "offset": 152, "next": [], "symbols": [{"name": "sceVif0PkRef", "hash": "14225f81dfe0bc21227fb6f29d1af7c8eb399039", "variant": 672990400, "library": "libpkt"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707552}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8427565}, "child": {"skip": 1468, "offset": 1484, "next": [], "symbols": [{"name": "__ieee754_acos", "hash": "dd7f45f872cfab9b95e951ad769a9f7a3366f1f6", "variant": 3733277418, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 4290052176}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10524717}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789968}, "child": {"skip": 276, "offset": 296, "next": [], "symbols": [{"name": "fgets", "hash": "534de4d00e059aedfe0b382a40215e113d635eba", "variant": 2460186437, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 8427565}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724416}, "child": {"skip": 336, "offset": 356, "next": [], "symbols": [{"name": "__sceEENetsyn_cache_cleanup", "hash": "23b1ef2868547ec026b26c48c7cfbbde2246779d", "variant": 2883082922, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 12621869}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 10522669}, "child": {"skip": 212, "offset": 236, "next": [], "symbols": [{"name": "pem_pwd_def_cb", "hash": "705933ec31d27d11643943c93aba9c3c0a2e5c12", "variant": 2960524061, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8425517}, "child": {"skip": 344, "offset": 368, "next": [], "symbols": [{"name": "time_mi_offset", "hash": "4ffb306b924e2ff91ff306a2de1b9396e2379dae", "variant": 3340704368, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1007812608, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289921072}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724416}, "child": {"skip": 212, "offset": 232, "next": [], "symbols": [{"name": "SyncDma", "hash": "ab16bb5cb22c962e54ca9f29cd919d0e538c85e3", "variant": 603638427, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 4290707552}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2386690048, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 252, "offset": 272, "next": [], "symbols": [{"name": "sceHTTPSTerminate", "hash": "1fe6084126f90abab12bacc38871cedcdb48b908", "variant": 1527746740, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 4290052176}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289986624}, "child": {"skip": 264, "offset": 284, "next": [], "symbols": [{"name": "OBJ_NAME)PS2SDB", 8192}, + std::string_view{R"PS2SDB(_add", "hash": "e4fdcb0f08a1f1349cc9bfc9a94d56b009ba29e7", "variant": 2785612786, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8425517}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290052176}, "child": {"skip": 128, "offset": 144, "next": [], "symbols": [{"name": "sceGifPkRefe", "hash": "250ad33a23c5421c29bc0466d2d0743f72ca5dd3", "variant": 4256452058, "library": "libpkt"}]}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 36909}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8421421}, "child": {"skip": 392, "offset": 416, "next": [], "symbols": [{"name": "printfloat", "hash": "c1bf1af6052cf5616bc6f0ae79db612cc79310ce", "variant": 2693453757, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 4290707552}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8421421}, "child": {"skip": 408, "offset": 432, "next": [], "symbols": [{"name": "dhclient_thread", "hash": "d7007a31c3f769f1baef8ad583d1432b2f0524cc", "variant": 1217700362, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707552}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8425517}, "child": {"skip": 1004, "offset": 1020, "next": [], "symbols": [{"name": "__ieee754_exp", "hash": "1d758089bc15d6b8fa51d89a4aa41c0b3921c816", "variant": 2755945394, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 4289986624}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8425517}, "child": {"skip": 248, "offset": 264, "next": [], "symbols": [{"name": "changeVoiceFloatStateOnMyPart", "hash": "f27cd15e9fe5d3a14d68cc0571cc335387134562", "variant": 0, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 12619821}, "child": {"skip": 736, "offset": 752, "next": [], "symbols": [{"name": "__sceEENetsppp_ioctl", "hash": "1a6bd4aa5c5d5d7d57d12ff134f85a2cbf9c7b53", "variant": 2741233908, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4290052176}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 12619821}, "child": {"skip": 180, "offset": 196, "next": [], "symbols": [{"name": "CRYPTO_new_ex_data", "hash": "b3aeb84fba2408882f16172d7ab37b42655069f9", "variant": 1063688222, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855568}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289790016}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10522669}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707552}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8423469}, "child": {"skip": 352, "offset": 376, "next": [], "symbols": [{"name": "StartThread", "hash": "fc1c5b5f9565fc57648a13671cf76344d6ab6ba2", "variant": 3733299617, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 4289724464}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 12617773}, "child": {"skip": 116, "offset": 140, "next": [], "symbols": [{"name": "HMAC_Final", "hash": "cd24439e73822c4fcda561e38637f5f00cd30bba", "variant": 1728785847, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2946760736}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10522669}, "child": {"skip": 556, "offset": 572, "next": [], "symbols": [{"name": "PEM_get_EVP_CIPHER_CTX", "hash": "d63362abc774db2590a1417efb5b43a4213e2a73", "variant": 2062715278, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290052176}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289986624}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1008009216, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289921072}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 41005}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289855520}, "child": {"skip": 308, "offset": 336, "next": [], "symbols": [{"name": "sceTtyWrite", "hash": "6c3c35f723bd5d6af33b41a627bb8028e8d2bfe0", "variant": 1823872352, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 8427565}, "child": {"skip": 272, "offset": 300, "next": [], "symbols": [{"name": "mceExtractSliceData", "hash": "aee0b62aa5b26faadf51bc5d4001cbcda9becf45", "variant": 595721539, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 1007955968}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289855520}, "child": {"skip": 348, "offset": 376, "next": [], "symbols": [{"name": "_sceMpegMbAddressIncrement", "hash": "2e4d65e54d5fe043bf8431879bdd2a4a7ed2a967", "variant": 2785840343, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8431661}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289921072}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 12623917}, "child": {"skip": 24, "offset": 48, "next": [{"match": {"value": 1006796800}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 268435493}, "child": {"skip": 184, "offset": 240, "next": [], "symbols": [{"name": "iSetTimerAlarm", "hash": "d06bcf31e535a903198c551ce34a0fe5d4b17109", "variant": 1842199392, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006797062}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 268435493}, "child": {"skip": 184, "offset": 240, "next": [], "symbols": [{"name": "isceTimerSetAlarm", "hash": "1e35e1f804095e78a5ed5a15ebad244e3a29d921", "variant": 3686627513, "library": "libtimer"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 10526765}, "child": {"skip": 160, "offset": 184, "next": [], "symbols": [{"name": "call_handler", "hash": "89e038fd57328d5d4f94ee4dbc510b2cd499b1f0", "variant": 2862516726, "library": "eenetctl"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 14723117}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289921072}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 16818221}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289789968}, "child": {"skip": 40, "offset": 68, "next": [{"match": {"value": 2386886728}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 4206637}, "child": {"skip": 168, "offset": 244, "next": [], "symbols": [{"name": "sceMpegAddStrCallback", "hash": "9cc0365d1069f95f848ee48425e8e965383b0d1f", "variant": 580167668, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2386755656}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 4206637}, "child": {"skip": 68, "offset": 144, "next": [{"match": {"value": 681705536}, "child": {"skip": 0, "offset": 148, "next": [{"match": {"value": 272629775}, "child": {"skip": 100, "offset": 252, "next": [], "symbols": [{"name": "sceMpegAddStrCallback", "hash": "b9c6be625f467de2206eb7fae44133a863d7e0b1", "variant": 1217659604, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 681705482}, "child": {"skip": 0, "offset": 148, "next": [{"match": {"value": 272629775}, "child": {"skip": 100, "offset": 252, "next": [], "symbols": [{"name": "sceMpegAddStrCallback", "hash": "9c1c04c4c7051028ad39d385c8a2df8422665f58", "variant": 1217659604, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 12623917}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289855520}, "child": {"skip": 472, "offset": 500, "next": [], "symbols": [{"name": "__sceEENetarpresolve", "hash": "a39e9a34c203d0cbac0b1c8ddda1e4b8c08c3a09", "variant": 752011336, "library": "libeenet"}])PS2SDB", 8192}, + std::string_view{R"PS2SDB(}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 12623917}, "child": {"skip": 384, "offset": 408, "next": [], "symbols": [{"name": "__sceEENetrn_insert", "hash": "11216bc429af81bfa112866dbd94861ec4aabf27", "variant": 4163597239, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 16820269}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289921072}, "child": {"skip": 4, "offset": 24, "next": [{"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 10524717}, "child": {"skip": 216, "offset": 248, "next": [], "symbols": [{"name": "sceMpegAddStrCallback", "hash": "b1ad1839bf3bf71873a4e2abc3c278be3c1a4376", "variant": 1267874219, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 8427565}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4289724416}, "child": {"skip": 480, "offset": 516, "next": [], "symbols": [{"name": "__sceEENetin_selectsrc", "hash": "27c0143fcfea4ea5cd6a9005bc3dc3da99432f93", "variant": 1490915601, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 12621869}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 10522669}, "child": {"skip": 8, "offset": 48, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "GetThreadId"}}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 4289724416}, "child": {"skip": 208, "offset": 264, "next": [], "symbols": [{"name": "__sceEENetres_search", "hash": "b9d1aa440e9df2920ba3edfb77a52f1afde0b84d", "variant": 1676395738, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 304087044}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 4289724416}, "child": {"skip": 180, "offset": 236, "next": [], "symbols": [{"name": "X509_NAME_ENTRY_create_by_OBJ", "hash": "bcbfdf9c3dd8eb31b709cb1a0d5b8cc7a67514e2", "variant": 602386189, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 10522669}, "child": {"skip": 172, "offset": 212, "next": [], "symbols": [{"name": "BN_ME_CTX_set", "hash": "73f54b3cd83918b03a87a53856436038a13fd47c", "variant": 1304000689, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 18917421}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289921072}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 16818221}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289855520}, "child": {"skip": 8, "offset": 36, "next": [{"match": {"value": 8425517}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 4289724416}, "child": {"skip": 20, "offset": 64, "next": [{"match": {"value": 844251135}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 3701669928}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 604160000}, "child": {"skip": 228, "offset": 304, "next": [], "symbols": [{"name": "sceHiGsMiptbp1Regs", "hash": "05187e24d0e75e91165e6496da2413b14ff85883", "variant": 3570357632, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 3701669936}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 604160000}, "child": {"skip": 228, "offset": 304, "next": [], "symbols": [{"name": "sceHiGsMiptbp2Regs", "hash": "30a0baaea59107b1add1125438c4f1e4c911f331", "variant": 3570357632, "library": "libhig"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 844234755}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 3701669944}, "child": {"skip": 192, "offset": 264, "next": [], "symbols": [{"name": "sceHiGsClampRegs", "hash": "fc1f2f642b05884118b999a0108f2dd9b0a409ef", "variant": 3570357632, "library": "libhig"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 12619821}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 4289724416}, "child": {"skip": 16, "offset": 60, "next": [{"match": {"value": 2353135664}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 339738633}, "child": {"skip": 96, "offset": 164, "next": [], "symbols": [{"name": "DSA_sign", "hash": "02e9977c65df3e29bbeb3f9596dd24b9178cba6c", "variant": 2243285519, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2353135668}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 339738633}, "child": {"skip": 96, "offset": 164, "next": [], "symbols": [{"name": "DSA_verify", "hash": "77dcb8d16292884dd1693b5fc05e0149f6b9d677", "variant": 2243285519, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 12623917}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289855520}, "child": {"skip": 228, "offset": 256, "next": [], "symbols": [{"name": "sceAtokDicDelWord", "hash": "aa235a23be8eca59069c708a9aa18e6e46918459", "variant": 1448393459, "library": "libatok"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289921072}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 14721069}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 12621869}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4289789968}, "child": {"skip": 388, "offset": 420, "next": [], "symbols": [{"name": "sceGpSetLoadTexelClut", "hash": "0c974170e3b41af4914df7bd68cca59260ae669b", "variant": 13080641, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 12619821}, "child": {"skip": 392, "offset": 424, "next": [], "symbols": [{"name": "sceGpSetLoadTexelClut", "hash": "9a8d41b23faa9c14df8d2224fd49f4d900acf61a", "variant": 1843419455, "library": "libgp"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 10524717}, "child": {"skip": 1164, "offset": 1188, "next": [], "symbols": [{"name": "__sceEENetrn_delete", "hash": "2b4ef63128febde4b62922b8e3ef313df147ca3e", "variant": 1313837717, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 8429613}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4290707552}, "child": {"skip": 440, "offset": 464, "next": [], "symbols": [{"name": "set_staticaddr_func", "hash": "3a5bc7616bc8bcf4c33501ae874e06fb518dd3fb", "variant": 1121138622, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 12625965}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289921072}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 10526765}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289855520}, "child": {"skip": 112, "offset": 140, "next": [], "symbols": [{"name": "sceNetcnfifGetList", "hash": "dbc15236ef048048f6ec854b0d2efd69b6ecbf63", "variant": 3690598565, "library": "netcnfif"}]}}], "symbols": []}}, {"match": {"value": 18915373}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289855520}, "child": {"skip": 120, "offset": 148, "next": [], "symbols": [{"name": "ssl3_final_finish_mac", "hash": "214f60127a8204058ee4c2852f265f7d4c1ab12c", "variant": 1685377611, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289789968}, "child": {"skip": 432, "offset": 456, "next": [], "symbols": [{"name": "ifc_up", "hash": "c4500490f5f5dc487b1ea6cd8f8e27883ac96daf", "variant": 3653826547, "library": "eenetctl"}]}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4290707552}, "child": {"skip":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( 368, "offset": 392, "next": [], "symbols": [{"name": "hashed_send", "hash": "43df7671cea9cf64f26544487d8600f352e625a2", "variant": 2941203876, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10528813}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 14721069}, "child": {"skip": 388, "offset": 412, "next": [], "symbols": [{"name": "__sceEENetsocreate", "hash": "2852fef11c68fc649bf962c5a1a6408b5a39d808", "variant": 2327968826, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 12623917}, "child": {"skip": 28, "offset": 52, "next": [{"match": {"value": 308281387}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 604176383}, "child": {"skip": 204, "offset": 264, "next": [], "symbols": [{"name": "sceEENetGetsockname", "hash": "15bb58f74f768bfccaeeb221a7a7509c470a925d", "variant": 219814415, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 308281392}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 604176383}, "child": {"skip": 224, "offset": 284, "next": [], "symbols": [{"name": "sceEENetGetpeername", "hash": "7289cc4a1255ba18110690394b03ac0b6c937835", "variant": 3137860955, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707552}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8429613}, "child": {"skip": 12, "offset": 36, "next": [{"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 2391080964}, "child": {"skip": 180, "offset": 224, "next": [], "symbols": [{"name": "BN_div_word", "hash": "7d0783a41095a3b469f8c9c7cf8940014ed79816", "variant": 2028000784, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 312475653}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 4289724416}, "child": {"skip": 388, "offset": 432, "next": [], "symbols": [{"name": "ssl3_enc", "hash": "3e2151969a9abbb8d71f02a3ae394c476e20bdbb", "variant": 1169698555, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 605356033}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289921072}, "child": {"skip": 344, "offset": 364, "next": [], "symbols": [{"name": "sppp_up_event", "hash": "24c4abab21405cbe1644fe2b9855819d26ed9e69", "variant": 453860744, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 43053}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289921072}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 14721069}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289789968}, "child": {"skip": 872, "offset": 900, "next": [], "symbols": [{"name": "__sceEENetip_ctloutput", "hash": "399843d5490f1f3faea631a501e44c7e2f8777e9", "variant": 2273329562, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 8429613}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289855520}, "child": {"skip": 348, "offset": 376, "next": [], "symbols": [{"name": "buffer_read", "hash": "0864d8c7718a94f5c2ca89a51a9d9952bc95f2bb", "variant": 2856858899, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 10526765}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 8427565}, "child": {"skip": 456, "offset": 488, "next": [], "symbols": [{"name": "buffer_write", "hash": "9968b5d87786283aaf0adc9d9f7382d4e7de2c1c", "variant": 951708214, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 38957}, "child": {"skip": 216, "offset": 248, "next": [], "symbols": [{"name": "i2d_X509_EXTENSION", "hash": "89f8d8c9ce1bebe7ae39cc3e5f99124aed56a264", "variant": 844683877, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 605421567}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855520}, "child": {"skip": 164, "offset": 184, "next": [], "symbols": [{"name": "mem_write", "hash": "503f3e967b9fc9f93f870467fad4d041ac02581c", "variant": 2791875627, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 605356034}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789968}, "child": {"skip": 144, "offset": 164, "next": [], "symbols": [{"name": "ssl23_write_bytes", "hash": "62d126f16366d8a7edc26112516178bd9df8999c", "variant": 3663749707, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10528813}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8425517}, "child": {"skip": 444, "offset": 468, "next": [], "symbols": [{"name": "__kernel_sin", "hash": "d34324cb0d04e01848dad8528532f0d3f2c8c05b", "variant": 290779084, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 4290707552}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8425517}, "child": {"skip": 668, "offset": 692, "next": [], "symbols": [{"name": "sceEENetMCopypacket", "hash": "6dc9aa749746da0d82ce45512e9c0ea44b6c7305", "variant": 3832767092, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8431661}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1007812608, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 480, "offset": 500, "next": [], "symbols": [{"name": "sceHiDMAMake_LoadStep", "hash": "6ae64555b874a20666f620d1e39b5d29ae58042d", "variant": 3102476697, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 43053}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789968}, "child": {"skip": 20, "offset": 40, "next": [{"match": {"value": 280100956}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 4289724416}, "child": {"skip": 404, "offset": 452, "next": [], "symbols": [{"name": "sceHiPlugTim2", "hash": "1cfe22533765cd0991b8573f6c400ca1da910115", "variant": 1434142317, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 280100961}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 4289724416}, "child": {"skip": 424, "offset": 472, "next": [], "symbols": [{"name": "sceHiPlugTim2", "hash": "61c1e74807f0b863c75df1678ec998b69f20595d", "variant": 1886049135, "library": "libhip"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289921072}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8431661}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855520}, "child": {"skip": 340, "offset": 360, "next": [], "symbols": [{"name": "_lshift", "hash": "255e008fcacb262de7252ed2240df7e477383f38", "variant": 1710539015, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 819265791}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855520}, "child": {"skip": 28, "offset": 48, "next": [{"match": {"value": 303104016}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 8425517}, "child": {"skip": 100, "offset": 156, "next": [], "symbols": [{"name": "turnOffSameKeyAList", "hash": "b6683e776ca5f737a7ed12234ad1a6552224662f", "variant": 4183691118, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 303104018}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 8425517}, "child": {"skip": 108, "offset": 164, "next": [], "symbols": [{"name": "turnOffExcGroupAList", "hash": "857e77683c297a1079083cfb2f677cde5ca08ee8", "variant": 4043248363, "library": "libssyn"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707552}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8427565}, "child": {"skip": 420, "offset": 440, "next": [], "symbols": [{"name": "SetVect)PS2SDB", 8192}, + std::string_view{R"PS2SDB(or", "hash": "be80e0a62fa3e7b075ec42423eb979d2d943325b", "variant": 2183609462, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 10528813}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8427565}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290707552}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 39882797}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4289986624}, "child": {"skip": 388, "offset": 424, "next": [], "symbols": [{"name": "ipversion_completed_check", "hash": "89ba3dbb3cdc210da7e8680ed228a7892b611328", "variant": 971098015, "library": "eenetctl"}]}}], "symbols": []}}, {"match": {"value": 12619821}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4289986624}, "child": {"skip": 176, "offset": 212, "next": [], "symbols": [{"name": "CRYPTO_free_ex_data", "hash": "277c989e94465cc089ed58827f9943302259e4fc", "variant": 832706083, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 12621869}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289789968}, "child": {"skip": 104, "offset": 132, "next": [], "symbols": [{"name": "BUF_MEM_append", "hash": "73662d419b57ed6a423e21065cd7fd75e1779e8e", "variant": 1578084807, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 12621869}, "child": {"skip": 344, "offset": 364, "next": [], "symbols": [{"name": "BN_uadd", "hash": "a8fc75b4c2ffb89923cfed9a3e9908be8cf3897c", "variant": 2298841690, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10528813}, "child": {"skip": 664, "offset": 680, "next": [], "symbols": [{"name": "sceHTTPParseURI", "hash": "30f8c3eef773a1d6fdd63b853878834e017692f3", "variant": 4242758974, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 16820269}, "child": {"skip": 424, "offset": 440, "next": [], "symbols": [{"name": "ERR_put_error", "hash": "b439c3ee758d5e9b34741bc11f77848514c299e2", "variant": 126471055, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289790000}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289921104}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8423469}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855552}, "child": {"skip": 40, "offset": 60, "next": [{"match": {"value": 301989945}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 604176383}, "child": {"skip": 252, "offset": 320, "next": [], "symbols": [{"name": "sceSifBindRpc", "hash": "d32696b122c0034f62f0ec5f698874f92be0f719", "variant": 1071461846, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 301989936}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 604176383}, "child": {"skip": 216, "offset": 284, "next": [], "symbols": [{"name": "sceSifBindRpc", "hash": "2b7d9d08826f357818df0989821463e2b22bd422", "variant": 2656977550, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 301989948}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 604176383}, "child": {"skip": 264, "offset": 332, "next": [], "symbols": [{"name": "sceSifBindRpc", "hash": "ae6565293047153d636c5a437d86fa2a824c829e", "variant": 3244837963, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10520621}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724448}, "child": {"skip": 352, "offset": 372, "next": [], "symbols": [{"name": "sceCccSJIStoUTF16", "hash": "73b5e6fb9a7f635bd991baadc4c4595a313d9ea6", "variant": 1754651248, "library": "libccc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707552}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8423469}, "child": {"skip": 300, "offset": 316, "next": [], "symbols": [{"name": "sceSifMUnBindRpc", "hash": "3ace0478d993b09acf986d71b7fd0a20fbcd3f46", "variant": 3614414774, "library": "libmrpc"}]}}], "symbols": []}}, {"match": {"value": 4289724448}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10520621}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289921104}, "child": {"skip": 356, "offset": 376, "next": [], "symbols": [{"name": "__sceEENetether_addmulti", "hash": "4e860c86b95877cd4171ad54224f8bc8850d58f5", "variant": 2895866389, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 8423469}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289921104}, "child": {"skip": 392, "offset": 412, "next": [], "symbols": [{"name": "sceHTTPFindAbsoluteURI", "hash": "53c9a55696e8e25d2bd7e04a5977fea8eaa7010c", "variant": 3740392716, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8237}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724432}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1007681536, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789984}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4290707552}, "child": {"skip": 440, "offset": 464, "next": [], "symbols": [{"name": "sceFsInit", "hash": "a7842c6c2ca1cb08c198f72d721a0d647bdd0358", "variant": 1471463155, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 4289986640}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289921088}, "child": {"skip": 432, "offset": 456, "next": [], "symbols": [{"name": "sceFsInit", "hash": "c9c65383abc1880f07091b910729a4a2f0acc7b0", "variant": 1437500763, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289986640}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289855536}, "child": {"skip": 200, "offset": 216, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "scePrintf"}}, "child": {"skip": 0, "offset": 220, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 168, "offset": 392, "next": [], "symbols": [{"name": "PowerOffCB", "hash": "132d2b3fbd9e6dbc322036a2e2547b3f63875f21", "variant": 1787726945, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "printf"}}, "child": {"skip": 0, "offset": 220, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 168, "offset": 392, "next": [], "symbols": [{"name": "PowerOffCB", "hash": "132d2b3fbd9e6dbc322036a2e2547b3f63875f21", "variant": 724110593, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289921088}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855536}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1007878144, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8425517}, "child": {"skip": 224, "offset": 244, "next": [], "symbols": [{"name": "sceMcGetEntSpace", "hash": "917cbb5ce55e18c96b998d7ce765cefbc42a6f16", "variant": 4197149823, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 12621869}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289986640}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 10522669}, "child": {"skip": 200, "offset": 224, "next": [], "symbols": [{"name": "sceLseek", "hash": "452c62f35694375cf5565a340fe5bd54e8e6c938", "variant": 2737177150, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 4289789984}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8425517}, "child": {"skip": )PS2SDB", 8192}, + std::string_view{R"PS2SDB(28, "offset": 52, "next": [{"match": {"value": 272826462}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 4141}, "child": {"skip": 4, "offset": 64, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 272629840}, "child": {"skip": 392, "offset": 464, "next": [], "symbols": [{"name": "sceCdRead", "hash": "2101552ee9847952dfa127c6ee1a174a28d47edd", "variant": 1991031455, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 604241924}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 272629840}, "child": {"skip": 392, "offset": 464, "next": [], "symbols": [{"name": "sceCdRead", "hash": "7120b8ec617179dd91dc0bc2d5eef3934906c9ef", "variant": 1991031455, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 272826464}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 4141}, "child": {"skip": 412, "offset": 472, "next": [], "symbols": [{"name": "sceCdRead", "hash": "cbf8481c50038e3c77345f14edee3b061dbd78e7", "variant": 968872193, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789984}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8427565}, "child": {"skip": 264, "offset": 280, "next": [], "symbols": [{"name": "sceMcGetEntSpace", "hash": "1e2934c380055ed06a3476a6e54f71da88540554", "variant": 2911852196, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 4289986640}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 12621869}, "child": {"skip": 356, "offset": 372, "next": [], "symbols": [{"name": "EVP_DecryptFinal", "hash": "3682f9fe5d9a53cde911b69ad73e3304801180c9", "variant": 1285363422, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289986640}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1007943680, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289855536}, "child": {"skip": 236, "offset": 252, "next": [], "symbols": [{"name": "sceMcRename", "hash": "c36352e4d91e52e08484c32442a5f0815fda06b3", "variant": 3347154551, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 4289921088}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1007943680, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855536}, "child": {"skip": 196, "offset": 216, "next": [], "symbols": [{"name": "sceMcDelete", "hash": "41150317aec2b31b196334a74e78c5012386f9df", "variant": 1424882637, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 14721069}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855536}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 10524717}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289724432}, "child": {"skip": 196, "offset": 224, "next": [], "symbols": [{"name": "_sceSifLoadModule", "hash": "88ff4f28bf6b8a669aa8833ab7f9c6f318f3cc51", "variant": 3903589590, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 12621869}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289789984}, "child": {"skip": 56, "offset": 84, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 88, "next": [{"match": {"value": 33568813}, "child": {"skip": 84, "offset": 176, "next": [], "symbols": [{"name": "sceNetcnfifLoadEntry", "hash": "bc2e1f32b9345b6a9b8558919a2a8cdd4fce265b", "variant": 2343202209, "library": "netcnfif"}]}}], "symbols": []}}, {"match": {"value": 41953325}, "child": {"skip": 0, "offset": 88, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "strcpy"}}, "child": {"skip": 92, "offset": 184, "next": [], "symbols": [{"name": "sceNetcnfifEditEntry", "hash": "48ddda815c20ba936d836d7a772b5b95e68c3e4e", "variant": 747637399, "library": "netcnfif"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 12623917}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855536}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 14719021}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289724432}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 10522669}, "child": {"skip": 16, "offset": 48, "next": [{"match": {"value": 71303212}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 1006829567}, "child": {"skip": 204, "offset": 260, "next": [], "symbols": [{"name": "_sceSifLoadElfPart", "hash": "389cb9c41401987bc1bfc01e1da99b93ca0c076c", "variant": 4038978256, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 71368707}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 184, "offset": 240, "next": [], "symbols": [{"name": "_sceSifLoadElfPart", "hash": "56c511c723581fde7ddc1212c95e193ce0af79f1", "variant": 2908073984, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707552}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 8425517}, "child": {"skip": 128, "offset": 160, "next": [], "symbols": [{"name": "__sceEENetin_pcbnotifyall", "hash": "a1b6a93d10c9ddffc392c627104e348338af8e65", "variant": 4115710008, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10524717}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289789984}, "child": {"skip": 24, "offset": 52, "next": [{"match": {"value": 272826429}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 4141}, "child": {"skip": 148, "offset": 208, "next": [{"match": {"value": 604307457}, "child": {"skip": 0, "offset": 212, "next": [{"match": {"value": 604372993}, "child": {"skip": 116, "offset": 332, "next": [], "symbols": [{"name": "sceCdRead", "hash": "b66904fbbacee7c2827d96256dabdf78ec3cfd5e", "variant": 4227347643, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 604307469}, "child": {"skip": 0, "offset": 212, "next": [{"match": {"value": 604372993}, "child": {"skip": 116, "offset": 332, "next": [], "symbols": [{"name": "sceCdReadIOPm", "hash": "2f0577a1b988be5b33f802d3c8ab8049a8f432e9", "variant": 4227347643, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 272826426}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 4141}, "child": {"skip": 260, "offset": 320, "next": [], "symbols": [{"name": "sceCdReadIOPm", "hash": "8bc44c8eda0580bc7128eb0e270ca1412aa913d3", "variant": 1831634145, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 272826428}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 4141}, "child": {"skip": 4, "offset": 64, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 272629805}, "child": {"skip": 256, "offset": 328, "next": [], "symbols": [{"name": "sceCdReadIOPm", "hash": "1cc85fdf5523b3352abd37a5d5dd8a251c9ec840", "variant": 1301127571, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 604241925}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 272629805}, "child": {"skip": 256, "offset": 328, "next": [], "symbols": [{"name": "sceCdReadIOPm", "hash": "899ed00088e96ef45f150a06c88b2c3cca2a7d20", "variant": 1301127571, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 272826430}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 4141}, "child": {"skip": 276, "offset": 336, "next": [], "symbols": [{"name": "sceCdReadIOPm", "hash": "ccc5f3bfaa65638d6a72adb0456c474d5ba2323a", "variant": 4157978283, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855536}, "child": {"skip": 0, "offset": 16, "ne)PS2SDB", 8192}, + std::string_view{R"PS2SDB(xt": [{"match": {"value": 4289789984}, "child": {"skip": 40, "offset": 60, "next": [{"match": {"value": 608370687}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 0}, "child": {"skip": 124, "offset": 192, "next": [{"match": {"value": 604307710}, "child": {"skip": 0, "offset": 196, "next": [{"match": {"value": 12333}, "child": {"skip": 144, "offset": 344, "next": [], "symbols": [{"name": "sceMcInit", "hash": "dd758509f6163d134853401c7aa85d354c37027b", "variant": 2753174035, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 604307568}, "child": {"skip": 0, "offset": 196, "next": [{"match": {"value": 12333}, "child": {"skip": 144, "offset": 344, "next": [], "symbols": [{"name": "sceMcInit", "hash": "7e89f7a55e0b5802ee1d72212a4a0ecbf26951f2", "variant": 2753174035, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 0}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 608370687}, "child": {"skip": 172, "offset": 240, "next": [{"match": {"value": 675414538}, "child": {"skip": 0, "offset": 244, "next": [{"match": {"value": 272629766}, "child": {"skip": 96, "offset": 344, "next": [], "symbols": [{"name": "sceMcInit", "hash": "4ce081380318b7938d8433082dfe135b18e04e3d", "variant": 2753174035, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 675414533}, "child": {"skip": 0, "offset": 244, "next": [{"match": {"value": 272629766}, "child": {"skip": 96, "offset": 344, "next": [], "symbols": [{"name": "sceMcInit", "hash": "3c786859dfbba27647a1eca853bff04ec0b71ad2", "variant": 2753174035, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10526765}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855536}, "child": {"skip": 296, "offset": 316, "next": [], "symbols": [{"name": "crypto_sslc_dh_key_exch_phase_2", "hash": "23ebb96410e39b28252b76d51b0384eea9603878", "variant": 3056797673, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855536}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 613679124}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724432}, "child": {"skip": 360, "offset": 380, "next": [], "symbols": [{"name": "_b2d", "hash": "1bfcd52050b794706012b43487bfae8f6530e3f2", "variant": 2922173840, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4289789984}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 819134463}, "child": {"skip": 344, "offset": 364, "next": [], "symbols": [{"name": "__sceEENetin_pcblookup_bind", "hash": "5d7b83784b4666b5fa02e47d5d18fcc1b78e16c9", "variant": 167031363, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 12623917}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789984}, "child": {"skip": 344, "offset": 364, "next": [], "symbols": [{"name": "sceEENetConnect", "hash": "7e88f8aa66846beeb71aa521d59eabbc168dc10b", "variant": 3231007896, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855536}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1007812608, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707552}, "child": {"skip": 284, "offset": 300, "next": [], "symbols": [{"name": "__sceEENetigmp_fasttimo", "hash": "25c3cd12d0af5683caf6ee7a71133b7476a7d9a0", "variant": 3325077862, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 8425517}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707552}, "child": {"skip": 24, "offset": 40, "next": [{"match": {"value": 339738731}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 4141}, "child": {"skip": 456, "offset": 504, "next": [], "symbols": [{"name": "sceCdInit", "hash": "9d9b8789652b21823a44e6028887b6f5cde15df5", "variant": 3555596681, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 339738729}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 4141}, "child": {"skip": 448, "offset": 496, "next": [], "symbols": [{"name": "sceCdInit", "hash": "22076f1714e2b8250e28c25b34f9444e77bb1b5f", "variant": 2200262245, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 339738724}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 4141}, "child": {"skip": 428, "offset": 476, "next": [], "symbols": [{"name": "sceCdInit", "hash": "06f5d6a8306cfbee3f3a79d63347fedf68d8b8d9", "variant": 3581075810, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 339738721}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 4141}, "child": {"skip": 416, "offset": 464, "next": [], "symbols": [{"name": "sceCdInit", "hash": "a35aa24c0372b35c71843d6f362f3c50abe6d47f", "variant": 779792015, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707552}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8425517}, "child": {"skip": 568, "offset": 584, "next": [], "symbols": [{"name": "sceCdGetToc", "hash": "d8161e5f25386f14a3779def2b822955de054721", "variant": 1941789540, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 4289789984}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8425517}, "child": {"skip": 200, "offset": 216, "next": [], "symbols": [{"name": "OBJ_NAME_get", "hash": "c3431a94af842e0ca3677caf1213b7d5a0f624ed", "variant": 2021585070, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10506285}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289986640}, "child": {"skip": 220, "offset": 232, "next": [], "symbols": [{"name": "sceMcGetDir", "hash": "267b919e3bf4cb080ffee918436808311d45297e", "variant": 1723061444, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 10502189}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289986640}, "child": {"skip": 220, "offset": 232, "next": [], "symbols": [{"name": "sceMcChdir", "hash": "4ef6380d3a5e401f554640def56018a4956bb751", "variant": 731883883, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 3887333472}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1174430982}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289790016}, "child": {"skip": 12, "offset": 28, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__ieee754_log10f"}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 1007747072, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 296, "offset": 332, "next": [], "symbols": [{"name": "log10f", "hash": "a4333ac1626f836bdbef0bfe621e8e33749f8210", "variant": 766226295, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__ieee754_logf"}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 1007747072, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 292, "offset": 328, "next": [], "symbols": [{"name": "logf", "hash": "91eca87f2d7ba1d4549a6b7e2197670aa21e7ec0", "variant": 1206715098, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__ieee754_sqrtf"}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 1007747072, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 240, "offset": 276, "next": [], "symbols": [{"name": "sqrtf", "hash": "39c0ebab5c25c3a4595fe79d8eb3d77c30af678e", "variant": 2198538780, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__ieee754_expf"}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 1007747072, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 336, "offset": 372, "next": [], "symbols": [{"name": "expf", "hash": "2a80377c3395a39a43bdc0adcc7fc2f765dc796c", "variant": 2672184099, "library": "libm"}]}}], "symbols":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289790016}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289724464}, "child": {"skip": 264, "offset": 280, "next": [], "symbols": [{"name": "sqrtf", "hash": "27b8bdb0e030d756ae252f588e528407420bb84f", "variant": 2771346953, "library": "libm"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289986624}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 10526765}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8398893}, "child": {"skip": 1448, "offset": 1464, "next": [], "symbols": [{"name": "__ieee754_rem_pio2", "hash": "9a562696c5feefceebed906ff5d31a0f1f12f347", "variant": 1519885373, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 8429613}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289724448}, "child": {"skip": 92, "offset": 108, "next": [{"match": {"value": 276825003}, "child": {"skip": 0, "offset": 112, "next": [{"match": {"value": 46376996}, "child": {"skip": 3800, "offset": 3916, "next": [], "symbols": [{"name": "__ieee754_pow", "hash": "fa84feb3d3204219769e3129387ef88e58604d11", "variant": 3093183465, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 276825005}, "child": {"skip": 0, "offset": 112, "next": [{"match": {"value": 46376996}, "child": {"skip": 3808, "offset": 3924, "next": [], "symbols": [{"name": "__ieee754_pow", "hash": "28513a959c9a473e22d4fae26a94aab2255ab39e", "variant": 1815276117, "library": "libm"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290052176}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1007943680, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289921072}, "child": {"skip": 272, "offset": 292, "next": [], "symbols": [{"name": "_sliceA0", "hash": "1379aa90c6dda0d24b69e175bdc6173a6c7bdc27", "variant": 3613309405, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 12623917}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289921072}, "child": {"skip": 220, "offset": 240, "next": [], "symbols": [{"name": "EVP_DecryptUpdate", "hash": "fd731cac156d82b10cd8e3a037812023b6e5cab3", "variant": 1577721532, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 8429613}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289921072}, "child": {"skip": 352, "offset": 372, "next": [], "symbols": [{"name": "SSL_CTX_use_certificate_file", "hash": "16d59ff6357af58ffc028538e34146a85a7c234f", "variant": 1310780122, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289921072}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 605290497}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855520}, "child": {"skip": 56, "offset": 76, "next": [{"match": {"value": 268435519}, "child": {"skip": 0, "offset": 80, "next": [{"match": {"value": 604176383}, "child": {"skip": 284, "offset": 368, "next": [], "symbols": [{"name": "_getpic", "hash": "1b2069e5f295078b2c0f82d01b3cdbfbac5518f6", "variant": 2496232427, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 268435521}, "child": {"skip": 0, "offset": 80, "next": [{"match": {"value": 604176383}, "child": {"skip": 292, "offset": 376, "next": [], "symbols": [{"name": "_getpic", "hash": "79646abf6a15e69b6210a77448a62d989604eb46", "variant": 2891061021, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 615841784}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855520}, "child": {"skip": 180, "offset": 200, "next": [], "symbols": [{"name": "phaseChange2ReleaseAll", "hash": "690dd9e8e577932f5fb46b7bba8c6044a5ff144c", "variant": 919291958, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8427565}, "child": {"skip": 552, "offset": 572, "next": [], "symbols": [{"name": "ShapeMakeMaterialPacket", "hash": "6f760a6b0df243ccdb3dbf56619147da0e9d24e8", "variant": 3189006867, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 14721069}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 12621869}, "child": {"skip": 220, "offset": 244, "next": [], "symbols": [{"name": "sceEENetMCopydata", "hash": "13911db1deb87da87e7ccf71080f6eaec419af89", "variant": 2075090367, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8427565}, "child": {"skip": 164, "offset": 188, "next": [], "symbols": [{"name": "pollscan", "hash": "9c06abc13fc502004dec6c13d43f00c81cfc2935", "variant": 1904286764, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8429613}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 41981997}, "child": {"skip": 132, "offset": 156, "next": [], "symbols": [{"name": "bpf_mcpy", "hash": "ba1b127cf1d59f26f16143fc5102174a065e5c53", "variant": 2235396833, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 10524717}, "child": {"skip": 1408, "offset": 1432, "next": [], "symbols": [{"name": "__sceEENetsppp_input", "hash": "792816a82987c98319016450208ad6a8969bbf64", "variant": 1369657759, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10526765}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 613613588}, "child": {"skip": 228, "offset": 252, "next": [], "symbols": [{"name": "__sceEENetip_optcopy", "hash": "8a17a1efb82549ea777d30f13674ee92ea07a2ed", "variant": 3590947077, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4290052176}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8427565}, "child": {"skip": 188, "offset": 212, "next": [], "symbols": [{"name": "sceEENetGetIfnames", "hash": "53b35bf9cb508d055cf70ae62f8aa8175ef9f5f6", "variant": 2372395096, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289724416}, "child": {"skip": 236, "offset": 260, "next": [], "symbols": [{"name": "getrn", "hash": "6de3e6845b8f922d591d929c280031ce4f64e7c7", "variant": 737464992, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707552}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8425517}, "child": {"skip": 556, "offset": 576, "next": [], "symbols": [{"name": "sceEENetMPullup", "hash": "d58ada1d979dd2a6ba21d6f6d4edefeb21d7d67a", "variant": 1005622320, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 12623917}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724416}, "child": {"skip": 408, "offset": 428, "next": [], "symbols": [{"name": "__sceEENetsopoll", "hash": "45a2174c99557e78f1cfa561909c8505d9f5fcbc", "variant": 1433909815, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 41005}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789968}, "child": {"skip": 736, "offset": 756, "next": [], "symbols": [{"name": "__sceEENetsbdrop", "hash": "bd92cbe226ac01a4ecec418f35c1d33fa7ec2ed0", "variant": 3620105380, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 617938940}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724416}, "child": {"skip": 908, "offset": 928, "next": [], "symbols": [{"name": "sppp_lcp_RCN_nak", "hash": "14d42333e039594abbd63202deeb48cc855a443f", "variant": 1221786207, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 429070755)PS2SDB", 8192}, + std::string_view{R"PS2SDB(2}, "child": {"skip": 356, "offset": 376, "next": [], "symbols": [{"name": "expand", "hash": "5d0b2d2b3c1d3f02da8d8760b309f69393908724", "variant": 81379774, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 10526765}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789968}, "child": {"skip": 724, "offset": 744, "next": [], "symbols": [{"name": "do_ssl_write", "hash": "a59bca88e7b7fe654e2fc0fa9cbec6b4eb0fbe6a", "variant": 3294906806, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 14721069}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789968}, "child": {"skip": 296, "offset": 316, "next": [], "symbols": [{"name": "time_mi_loffset", "hash": "248407deb9f2f5ffc0fad58affd32dabf1eab624", "variant": 3918849797, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8429613}, "child": {"skip": 256, "offset": 272, "next": [], "symbols": [{"name": "__sceEENetbpf_setf", "hash": "23d063d6aedfe47172ba2e992fa4a14d80baa44f", "variant": 2791369826, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 12623917}, "child": {"skip": 288, "offset": 304, "next": [], "symbols": [{"name": "bn_mul_normal", "hash": "593f9f61fe09fc0313ad3f2079bcc7a9e1c0244b", "variant": 2791849785, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 3887399016}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 3887333472}, "child": {"skip": 76, "offset": 88, "next": [{"match": {"value": 268435971}, "child": {"skip": 0, "offset": 92, "next": [{"match": {"value": 3753836624}, "child": {"skip": 2092, "offset": 2188, "next": [], "symbols": [{"name": "__ieee754_powf", "hash": "d1e26c45a1533be47439307243c0773d6d9ca7cf", "variant": 2345619769, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 268435969}, "child": {"skip": 0, "offset": 92, "next": [{"match": {"value": 3753836624}, "child": {"skip": 2084, "offset": 2180, "next": [], "symbols": [{"name": "__ieee754_powf", "hash": "f68a6893bcc69d687b9c3c0746ddd1c5ff0be3cd", "variant": 2511644597, "library": "libm"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8398893}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707552}, "child": {"skip": 24, "offset": 36, "next": [{"match": {"value": 167996}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 1216575}, "child": {"skip": 428, "offset": 472, "next": [], "symbols": [{"name": "floor", "hash": "a4e950e01dd5db06c8f430bc213b14f323b724b8", "variant": 3620388704, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 165948}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 1148991}, "child": {"skip": 404, "offset": 448, "next": [], "symbols": [{"name": "ceil", "hash": "9bd3978a218341a5973832cf79dd45cf59d1b15e", "variant": 413579268, "library": "libm"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 3887399000}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 3887333456}, "child": {"skip": 284, "offset": 296, "next": [], "symbols": [{"name": "atan2f", "hash": "eefc2f55366ccc31b1443b7cfb5ee553624a5741", "variant": 3254466956, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 4289724464}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855568}, "child": {"skip": 8, "offset": 20, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__ieee754_acos"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 8421421}, "child": {"skip": 212, "offset": 240, "next": [], "symbols": [{"name": "acos", "hash": "96cdfc6d01d8e440d70094333916144f98265d70", "variant": 447558570, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__ieee754_asin"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 8421421}, "child": {"skip": 212, "offset": 240, "next": [], "symbols": [{"name": "asin", "hash": "96cdfc6d01d8e440d70094333916144f98265d70", "variant": 3006424225, "library": "libm"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4288938048}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289003592}, "child": {"skip": 36, "offset": 48, "next": [{"match": {"value": 2410086400}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 753008642}, "child": {"skip": 8, "offset": 64, "next": [{"match": {"value": 268435523}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 60825645}, "child": {"skip": 288, "offset": 360, "next": [], "symbols": [{"name": "dpdiv", "hash": "ea136c341f90718070b287e49f4d630e66af23b0", "variant": 3584492132, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 268435521}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 60825645}, "child": {"skip": 280, "offset": 352, "next": [], "symbols": [{"name": "dpdiv", "hash": "bcd50218b34ae7470040c7922f9e48b2270b9e5d", "variant": 2152472638, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 33564717}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__fpcmp_parts_d"}}, "child": {"skip": 20, "offset": 76, "next": [], "symbols": [{"name": "dpcmp", "hash": "04fbe0c48368a211a9393911f30dd06b082941a2", "variant": 1793462211, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10520621}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290052176}, "child": {"skip": 128, "offset": 148, "next": [], "symbols": [{"name": "dcast__C14__si_type_infoRC9type_infoiPvPC9type_infoT3", "hash": "11f94edee97a3d133151760f7157ffda2ee98e13", "variant": 4107678080, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 12617773}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707552}, "child": {"skip": 536, "offset": 556, "next": [], "symbols": [{"name": "_multiply", "hash": "894139516097f96a6f57186e405a985889690d2b", "variant": 4095002805, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 8423469}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290052176}, "child": {"skip": 28, "offset": 48, "next": [{"match": {"value": 2922383432}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 35659821}, "child": {"skip": 104, "offset": 160, "next": [{"match": {"value": 302120968}, "child": {"skip": 0, "offset": 164, "next": [{"match": {"value": 604110936}, "child": {"skip": 136, "offset": 304, "next": [], "symbols": [{"name": "_sequenceExtension", "hash": "85f516d95b70ee8f9d0f4ce807bfa1ce234cd242", "variant": 1949411019, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 302120966}, "child": {"skip": 0, "offset": 164, "next": [{"match": {"value": 604110936}, "child": {"skip": 128, "offset": 296, "next": [], "symbols": [{"name": "_sequenceExtension", "hash": "3006177cfa571dc1be1f75feeff43b334cd450ec", "variant": 362528269, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2922383456}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 35659821}, "child": {"skip": 248, "offset": 304, "next": [], "symbols": [{"name": "_sequenceExtension", "hash": "4b3212460118f4e0990dc1ba673d94c2832cc934", "variant": 1949411019, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10520621}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290052176}, "child": {"skip": 448, "offset": 464, "next": [], "symbols": [{"name": "_memalign_r", "hash": "32eddd0eefbba755567242dc064bea974eb242f5", "variant": 2145812814, "library": "libc"}]}}], "symbols": []}}, {"match": {"value")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: 4290707552}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8423469}, "child": {"skip": 20, "offset": 36, "next": [{"match": {"value": 2384593212}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 1346371592}, "child": {"skip": 200, "offset": 244, "next": [], "symbols": [{"name": "_pictureDisplayExtension", "hash": "643dfab563848f97b99c8da222606bec72b8ee0b", "variant": 4055120798, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2384593236}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 1346371592}, "child": {"skip": 200, "offset": 244, "next": [], "symbols": [{"name": "_pictureDisplayExtension", "hash": "0d2862e08e19de262110e2de812560364af24f55", "variant": 4055120798, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2384593228}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 1346371592}, "child": {"skip": 200, "offset": 244, "next": [], "symbols": [{"name": "_pictureDisplayExtension", "hash": "9ccad6ba106736c9d063ec288a5fa1fc9671a605", "variant": 131048965, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2384724148}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 746717200}, "child": {"skip": 464, "offset": 508, "next": [], "symbols": [{"name": "assemble_request", "hash": "fe0a015f8f7a516c303c9c467c5efa719aa6b448", "variant": 1132950131, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2384592896}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 2354380816}, "child": {"skip": 564, "offset": 608, "next": [], "symbols": [{"name": "internal_verify", "hash": "ec396d9ccc43a7b9439248b66d67654157d84eab", "variant": 3720428997, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 12617773}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289986624}, "child": {"skip": 240, "offset": 256, "next": [], "symbols": [{"name": "_buf_init", "hash": "c16271dcfea12b7738b5072894ee8df2336b3a2f", "variant": 3669864135, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 4290052176}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10520621}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289986624}, "child": {"skip": 236, "offset": 256, "next": [], "symbols": [{"name": "__sceEENetnet_sysctl", "hash": "5d7090b0d38498f9e11fd2a3e5da5e82c2b615c8", "variant": 3399959597, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 8423469}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289986624}, "child": {"skip": 164, "offset": 184, "next": [], "symbols": [{"name": "ns_name_compress", "hash": "51720e248c55e162219b87151212c48e3edddce7", "variant": 238760661, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10512429}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289921072}, "child": {"skip": 532, "offset": 544, "next": [], "symbols": [{"name": "quorem", "hash": "940cc7f5354c49c320ffec18dfc4a15cf9c55bf0", "variant": 1831781991, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 604110857}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289986624}, "child": {"skip": 296, "offset": 308, "next": [], "symbols": [{"name": "_s2b", "hash": "95e0720e65e05b2ab5db8350d12054ee97a41858", "variant": 911881642, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 1006862335}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 10502189}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 12593197}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 878968831}, "child": {"skip": 64, "offset": 84, "next": [], "symbols": [{"name": "vsprintf_r", "hash": "1bc1aa5f86e3cf4373a64786d6c25c9474e42788", "variant": 2706635429, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 878968831}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 60827693}, "child": {"skip": 56, "offset": 76, "next": [], "symbols": [{"name": "_vsprintf_r", "hash": "40fa2134f05241e21f1c4f04bd921fc89b85b6d1", "variant": 4206690881, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 2946826256}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 878968831}, "child": {"skip": 56, "offset": 76, "next": [], "symbols": [{"name": "_vsprintf_r", "hash": "da90dcaa834bfcb06abad33b775564d640b9d11f", "variant": 4206690881, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604111368}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724512}, "child": {"skip": 88, "offset": 100, "next": [], "symbols": [{"name": "vsnprintf_r", "hash": "085a0ccb6c063bfe8ac0f38e54af415598b13a5b", "variant": 2019907542, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4289724496}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 8421421}, "child": {"skip": 536, "offset": 548, "next": [{"match": {"value": 604700684}, "child": {"skip": 0, "offset": 552, "next": [{"match": {"value": 604504164}, "child": {"skip": 420, "offset": 976, "next": [], "symbols": [{"name": "validate_structure", "hash": "6755693a003ec66de2399073bf461ab4c130611e", "variant": 1945292820, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 604504164}, "child": {"skip": 0, "offset": 552, "next": [{"match": {"value": 604438928}, "child": {"skip": 420, "offset": 976, "next": [], "symbols": [{"name": "validate_structure", "hash": "774736cbcd0d6a06bf83c87c41c2b57b29a6aa4a", "variant": 1945292820, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604111168}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289986624}, "child": {"skip": 384, "offset": 396, "next": [], "symbols": [{"name": "_doMC", "hash": "c287290c29ef4a20ca6d81a441d3d7d92dcdbed0", "variant": 644105803, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290052176}, "child": {"skip": 8, "offset": 20, "next": [{"match": {"value": 12625965}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289855520}, "child": {"skip": 24, "offset": 52, "next": [{"match": {"value": 2919235868}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 33562669}, "child": {"skip": 240, "offset": 300, "next": [], "symbols": [{"name": "_sliceA0", "hash": "dcb651cae2ab3c2064b9c55458aa1a0cb2be41f2", "variant": 1489115741, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2919235892}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 33562669}, "child": {"skip": 240, "offset": 300, "next": [], "symbols": [{"name": "_sliceA0", "hash": "4e2fade1bdde2de8f5ad2a30b2234ff8204dd031", "variant": 1489115741, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 16820269}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289921072}, "child": {"skip": 156, "offset": 184, "next": [], "symbols": [{"name": "ns_name_uncompress", "hash": "de0a4401246a20a4c41a5aa9f799dddde2d75823", "variant": 1669769435, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006833664}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855552}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 878911504}, "child": {"skip": 264, "offset": 280, "next": [], "symbols": [{"name": "_doCSC", "hash": "36760ae83befed6add43a2dcf4e239b58985eda9", "variant": 2194816458, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 4289921104}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 878911504}, "child": {"skip": 152, "offset": 168, "next": [{"match": {"value": 2386823256}, "child": {"skip": 0, "offset": 172, "next": [{"match": {"value": 604110852}, "child": {"skip": 120, "offset": 296, "next": [], "symbols": [{"name": "_doCSC", "hash": "7ad98807adf56783fccd9a0eac728b135ecdadca", "variant": 1670613558, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {)PS2SDB", 8192}, + std::string_view{R"PS2SDB("value": 2386823280}, "child": {"skip": 0, "offset": 172, "next": [{"match": {"value": 604110852}, "child": {"skip": 120, "offset": 296, "next": [], "symbols": [{"name": "_doCSC", "hash": "cdaf309a33eb4f5f9481bef63f81b47f717fabb8", "variant": 1670613558, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006768127}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724448}, "child": {"skip": 392, "offset": 404, "next": [], "symbols": [{"name": "_doCSC2", "hash": "0ac1cb230e9394c6030d9719f298890d985551ee", "variant": 3561783121, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 604176386}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724448}, "child": {"skip": 316, "offset": 328, "next": [], "symbols": [{"name": "_csc_storeRefImage", "hash": "3de457e3ce27f9ff093f6d47e27e0a3d555cfb32", "variant": 3513670843, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 604176383}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855552}, "child": {"skip": 356, "offset": 368, "next": [], "symbols": [{"name": "_decodeOrSkipFrame", "hash": "d16cfab409b61719a9d306e39a9046dfedf34d1b", "variant": 1628252764, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 1007030272}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789968}, "child": {"skip": 308, "offset": 320, "next": [], "symbols": [{"name": "_sequenceExtension", "hash": "d3cd6fd08ca59820f9f56ec295c27934b0e77a7c", "variant": 2692185725, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2142568528}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2142502976}, "child": {"skip": 664, "offset": 676, "next": [], "symbols": [{"name": "sceCccDecodeSJIS", "hash": "c4d8301f3fe889630974851a1b302916382823be", "variant": 404984464, "library": "libccc"}]}}], "symbols": []}}, {"match": {"value": 4289921104}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289790000}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 38957}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724448}, "child": {"skip": 24, "offset": 44, "next": [{"match": {"value": 268435528}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 4141}, "child": {"skip": 312, "offset": 364, "next": [], "symbols": [{"name": "sceCccUTF8toSJIS", "hash": "b8759f6ad6fbd40f6375bfc7b5b8df7b3c0ab460", "variant": 1803796570, "library": "libccc"}]}}], "symbols": []}}, {"match": {"value": 268435545}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 4141}, "child": {"skip": 380, "offset": 432, "next": [], "symbols": [{"name": "sceCccSJIStoUTF8", "hash": "1d541106180a816962a5caf3b44e7bd466469e1e", "variant": 3000816804, "library": "libccc"}]}}], "symbols": []}}, {"match": {"value": 268435524}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 4141}, "child": {"skip": 296, "offset": 348, "next": [], "symbols": [{"name": "sceCccUTF16toSJIS", "hash": "d4d108b8324cfcaef45c817370d3d3ee3b96d1fe", "variant": 913262393, "library": "libccc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 12621869}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724448}, "child": {"skip": 156, "offset": 176, "next": [], "symbols": [{"name": "R_mtime_offset", "hash": "29d6d8781bc8d020f52493e1466d0fa2432b7658", "variant": 283080304, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724448}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10524717}, "child": {"skip": 272, "offset": 288, "next": [], "symbols": [{"name": "__sceEENetether_delmulti", "hash": "f7ddbd2f2edc9b2c29b6079945919398c5557d0a", "variant": 803422372, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289855552}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1007878144, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289790000}, "child": {"skip": 300, "offset": 320, "next": [], "symbols": [{"name": "__sceEENetthread_enter", "hash": "7715cdbc1c2be64b3fa639e715706a7d2d6f2376", "variant": 972001402, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 10524717}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289790000}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8425517}, "child": {"skip": 580, "offset": 604, "next": [], "symbols": [{"name": "a2d_ASN1_OBJECT", "hash": "57757456f8f1bff4e27255c0ca62c54bc6318cd2", "variant": 4283997519, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 4289724448}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8425517}, "child": {"skip": 784, "offset": 808, "next": [], "symbols": [{"name": "d2i_ASN1_TYPE", "hash": "2e6a24b9204e4c1add652edd7d701e5c4cfdc21b", "variant": 3738334163, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 12621869}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289790000}, "child": {"skip": 408, "offset": 428, "next": [], "symbols": [{"name": "d2i_ASN1_OBJECT", "hash": "d6f5334505dbbd1b57558feecea1486dc01e226f", "variant": 1393674825, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 753008656}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289790000}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289921104}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8423469}, "child": {"skip": 120, "offset": 140, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": ""}}, "child": {"skip": 0, "offset": 144, "next": [{"match": {"value": 2946629648}, "child": {"skip": 80, "offset": 228, "next": [], "symbols": [{"name": "sceSEIn_MakeTimeVolume", "hash": "a46f1aa6d079425908141fa1304a5fc0716f6f7d", "variant": 3698080153, "library": "libsein"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "make_delta_time"}}, "child": {"skip": 0, "offset": 144, "next": [{"match": {"value": 2946629648}, "child": {"skip": 80, "offset": 228, "next": [], "symbols": [{"name": "sceSEIn_MakeTimeVolume", "hash": "a46f1aa6d079425908141fa1304a5fc0716f6f7d", "variant": 1086349230, "library": "libsein"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8423469}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289921104}, "child": {"skip": 40, "offset": 60, "next": [{"match": {"value": 625147892}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 742522882}, "child": {"skip": 84, "offset": 152, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": ""}}, "child": {"skip": 0, "offset": 156, "next": [{"match": {"value": 2946629648}, "child": {"skip": 80, "offset": 240, "next": [], "symbols": [{"name": "sceSEIn_MakeTimePanpot", "hash": "b852430a5c00274b6adc175f8468aba009dc2e52", "variant": 2385629666, "library": "libsein"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "make_delta_time"}}, "child": {"skip": 0, "offset": 156, "next": [{"match": {"value": 2946629648}, "child": {"skip": 80, "offset": 240, "next": [], "symbols": [{"name": "sceSEIn_MakeTimePanpot", "hash": "b852430a5c00274b6adc175f8468aba009dc2e52", "variant": 3355790645, "library": "libsein"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 625147890}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 742522882}, "child": {"skip": 84, "offset": 152, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": ""}}, "child": {"skip": 0, "offset": 156, "next": [{"match": {"value": 2946629648}, "child": {"skip": 84, "offset": 244, "next": [], "symbols": [{"name": "sceSEIn_MakeTimePitch", "hash": "b535aac9484429999444dec03af94fc4bcdecd8f", "variant": 3257151139, "library": "libsein"}]}}], "symbols": []}}, {"match": {"value": 20)PS2SDB", 8192}, + std::string_view{R"PS2SDB(1326592, "relocation": {"type": "MIPS_26", "symbol": "make_delta_time"}}, "child": {"skip": 0, "offset": 156, "next": [{"match": {"value": 2946629648}, "child": {"skip": 84, "offset": 244, "next": [], "symbols": [{"name": "sceSEIn_MakeTimePitch", "hash": "b535aac9484429999444dec03af94fc4bcdecd8f", "variant": 2215686772, "library": "libsein"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 816119809}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290117728}, "child": {"skip": 312, "offset": 324, "next": [], "symbols": [{"name": "sceHiGsEnvSetRegPrmode", "hash": "4423fda502ed6b80ca0fc135da7b3ceb9fe7a530", "variant": 0, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 4290707520}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2142437424}, "child": {"skip": 216, "offset": 228, "next": [], "symbols": [{"name": "__construct_array", "hash": "42a4ac3b9b4b2b87c2ce8fc35a03d9079863ee62", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 4290707552}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2142568528}, "child": {"skip": 4, "offset": 16, "next": [{"match": {"value": 2142437424}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8429613}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2142371872}, "child": {"skip": 128, "offset": 156, "next": [], "symbols": [{"name": "__destroy_new_array", "hash": "a33bfa2bc604ffb960bea51cdb4a8a1fb7843311", "variant": 1356331967, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 2142371872}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2142306320}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2142240768}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 1887473192}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 304087061}, "child": {"skip": 120, "offset": 160, "next": [], "symbols": [{"name": "__destroy_new_array", "hash": "b3503fee898e514a18369847e2f23e1bcd5d0d08", "variant": 2229712696, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 8423469}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 304087060}, "child": {"skip": 116, "offset": 156, "next": [], "symbols": [{"name": "__destroy_new_array", "hash": "653c807c78c926520b7158f91f79fd30320a4883", "variant": 1356331967, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8425517}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2142240768}, "child": {"skip": 120, "offset": 156, "next": [], "symbols": [{"name": "__destroy_new_array", "hash": "3b26134f2f4f25efa6615da91d74356fe30098ba", "variant": 1356331967, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8431661}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2142437424}, "child": {"skip": 132, "offset": 156, "next": [], "symbols": [{"name": "__destroy_new_array", "hash": "3a9e1fbdc02caced3a66169cd023cd130c3f31b8", "variant": 1356331967, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2143223904}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2142568528}, "child": {"skip": 16, "offset": 28, "next": [{"match": {"value": 1887481384}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2142240768}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 312475669}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 1889576488}, "child": {"skip": 8, "offset": 52, "next": [{"match": {"value": 2394095604}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 2394161136}, "child": {"skip": 40, "offset": 100, "next": [{"match": {"value": 34738219}, "child": {"skip": 0, "offset": 104, "next": [{"match": {"value": 1413545978}, "child": {"skip": 52, "offset": 160, "next": [], "symbols": [{"name": "__destroy_new_array", "hash": "b73e0b30fdcc10d0b9015ebd3d52eff22672fda8", "variant": 2498705521, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 34736171}, "child": {"skip": 0, "offset": 104, "next": [{"match": {"value": 1411448826}, "child": {"skip": 52, "offset": 160, "next": [], "symbols": [{"name": "__destroy_new_array", "hash": "a51fb01738e80cb2ae7e583d49453a7a652e06db", "variant": 2498705521, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2394030068}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 2394095600}, "child": {"skip": 24, "offset": 84, "next": [{"match": {"value": 1918903848}, "child": {"skip": 0, "offset": 88, "next": [{"match": {"value": 42006537}, "child": {"skip": 24, "offset": 116, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__dla__FPv"}}, "child": {"skip": 0, "offset": 120, "next": [{"match": {"value": 0}, "child": {"skip": 36, "offset": 160, "next": [], "symbols": [{"name": "__destroy_new_array", "hash": "04e8634a0a065bf97c541b08fca97e881ef7b62b", "variant": 2229712696, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__dl__FPv"}}, "child": {"skip": 0, "offset": 120, "next": [{"match": {"value": 0}, "child": {"skip": 36, "offset": 160, "next": [], "symbols": [{"name": "__destroy_new_array", "hash": "04e8634a0a065bf97c541b08fca97e881ef7b62b", "variant": 2498705521, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604372991}, "child": {"skip": 0, "offset": 88, "next": [{"match": {"value": 42006537}, "child": {"skip": 68, "offset": 160, "next": [], "symbols": [{"name": "__destroy_new_array", "hash": "ffd29a610c828b8661aa3adde04597a2aa320335", "variant": 2229712696, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 379584515}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 1889576488}, "child": {"skip": 116, "offset": 160, "next": [], "symbols": [{"name": "__destroy_new_array2", "hash": "1754ce2c621b70a8aed49c888c68ddf8ed016c8a", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2142240768}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 1887473192}, "child": {"skip": 124, "offset": 160, "next": [], "symbols": [{"name": "__destroy_new_array", "hash": "7fd3ac65b7395fd18a8e555bd0267d19447ac9c4", "variant": 2229712696, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707488}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2143158288}, "child": {"skip": 148, "offset": 160, "next": [], "symbols": [{"name": "__nw__FUiRCQ23std9nothrow_t", "hash": "899a2a621feb93746bcb559729bff0cd5c85140b", "variant": 33133129, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 2143223840}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2143158288}, "child": {"skip": 116, "offset": 128, "next": [], "symbols": [{"name": "__nw__FUiRCQ23std9nothrow_t", "hash": "7ea7eab4f4d277f9b85b238d6b064ba5051fc7fc", "variant": 1072106372, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 2142437424}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2142371872}, "child": {"skip": 1036, "offset": 1048, "next": [], "symbols": [{"name": "__throw_catch_compare", "hash": "9eab364808740cfeedebf871fe33aed00e3aab89", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 4289789984}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724432}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10520621}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855536}, "child": {"skip": 24, "offset": 44, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_Tim2_GetPictureHeader"}}, "child":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( {"skip": 0, "offset": 48, "next": [{"match": {"value": 14690349}, "child": {"skip": 908, "offset": 960, "next": [], "symbols": [{"name": "sceGpSetTexEnvByArgTim2", "hash": "f55c2da08ec0628fb6b7fb139fc25116591dc945", "variant": 4105010425, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": ""}}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 14690349}, "child": {"skip": 908, "offset": 960, "next": [], "symbols": [{"name": "sceGpSetTexEnvByArgTim2", "hash": "f55c2da08ec0628fb6b7fb139fc25116591dc945", "variant": 1266272882, "library": "libgp"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1007812607}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289986640}, "child": {"skip": 144, "offset": 164, "next": [], "symbols": [{"name": "_fat_chain_trace", "hash": "32e7aa3952c0eba47888de1a10dd6d7b73ed58d2", "variant": 3392040114, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855552}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 8425517}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289921104}, "child": {"skip": 24, "offset": 40, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_Tim2_GetPictureHeader"}}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 12593197}, "child": {"skip": 440, "offset": 488, "next": [], "symbols": [{"name": "sceGpSetLoadImageByTim2", "hash": "565e0c50992e3d03fbd5967af94b2ef5285c297f", "variant": 2875224334, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": ""}}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 12593197}, "child": {"skip": 444, "offset": 492, "next": [], "symbols": [{"name": "sceGpSetLoadImageByTim2", "hash": "31ece5747d9936319d6c2c331724cbaa92bc59da", "variant": 3726180690, "library": "libgp"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289790000}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8425517}, "child": {"skip": 516, "offset": 532, "next": [], "symbols": [{"name": "__sceEENetin_addmulti", "hash": "599cfff56a81a39fb1ab619a585a79542f756ab7", "variant": 3877358339, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8400941}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289790016}, "child": {"skip": 252, "offset": 264, "next": [], "symbols": [{"name": "scePad2CreateSocket", "hash": "8f1f355689c26eed84de5b6bcf2898ffdce0cf34", "variant": 3418185524, "library": "libpad2"}]}}], "symbols": []}}, {"match": {"value": 604176385}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289921104}, "child": {"skip": 560, "offset": 572, "next": [], "symbols": [{"name": "sceDbcInit", "hash": "b4db30f7c19c4ffdee2cb84b33dd631730a23ca7", "variant": 2303698416, "library": "libdbc"}]}}], "symbols": []}}, {"match": {"value": 604176772}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789968}, "child": {"skip": 272, "offset": 284, "next": [], "symbols": [{"name": "_sceMcFatGetFatClustNum", "hash": "70d0d5b44982d84d9f98e8727a899bccfe45b7c7", "variant": 1767792882, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 604375192}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289986624}, "child": {"skip": 200, "offset": 212, "next": [], "symbols": [{"name": "_sceMcFatGetFreeClustSize", "hash": "c59f895cc56f28440f455c50687605703f0328fb", "variant": 4003749153, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 4289790016}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855568}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8423469}, "child": {"skip": 188, "offset": 204, "next": [], "symbols": [{"name": "_sceMcCoreCreateSocket", "hash": "b20a15a9aa3a8717ea535a08d6bd397fb11d4179", "variant": 352778636, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 4290707552}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8423469}, "child": {"skip": 444, "offset": 460, "next": [], "symbols": [{"name": "sceHTTPRequest", "hash": "0573be8d81f3ae3474eb394b22fe34159b1d573a", "variant": 489405884, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604110866}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289986624}, "child": {"skip": 376, "offset": 388, "next": [], "symbols": [{"name": "__sceEENetifa_ifwithnet", "hash": "d686e1fc641827184df3bf0f7f5d428c03b032d4", "variant": 4226975807, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 872595464}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 136248}, "child": {"skip": 1460, "offset": 1472, "next": [], "symbols": [{"name": "__sceEENetifioctl", "hash": "a26fdc21ff291d71870dd3446975bd6bc9d2fd5b", "variant": 3096926701, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 604307470}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789968}, "child": {"skip": 424, "offset": 436, "next": [], "symbols": [{"name": "pppoe_data_input", "hash": "db340b592152cd26b310218d509f3c465d2350de", "variant": 2558757750, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 10285}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290052176}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289789968}, "child": {"skip": 644, "offset": 660, "next": [], "symbols": [{"name": "__sceEENettcp_close", "hash": "69fe4c4727a8a79cd30139fb0486b0657facb70f", "variant": 1693822960, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289724496}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 60825645}, "child": {"skip": 168, "offset": 184, "next": [], "symbols": [{"name": "__sceEENeteenet_netintr_start", "hash": "0e224428d30cd9fae2c92b9081dbef5dff947230", "variant": 2636161730, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8405037}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289986640}, "child": {"skip": 300, "offset": 312, "next": [], "symbols": [{"name": "udp4_sendup", "hash": "f6e14b5d87c67fc429c983b2114c52dc5ff8aba9", "variant": 3613642949, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 604373012}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289790032}, "child": {"skip": 200, "offset": 212, "next": [], "symbols": [{"name": "_sce_eenet_sppp_open", "hash": "0a0e5429741f4a4f8f6e801f6eb0dc3dd95dc0c7", "variant": 72892563, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 604176387}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289986624}, "child": {"skip": 388, "offset": 400, "next": [], "symbols": [{"name": "handle_ips", "hash": "007dff8d9c600014b2b5d110037ab1d361f97053", "variant": 8290541, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 604110984}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855552}, "child": {"skip": 260, "offset": 272, "next": [], "symbols": [{"name": "pppoectl_stat", "hash": "84060a5d7b8e9f6de0a93d64cae6bccb7a84bbdb", "variant": 1975368216, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 604307457}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855568}, "child": {"skip": 356, "offset": 368, "next": [], "symbols": [{"name": "delete_default_route", "hash": "545174194005c329adbd3c77af74de8bbf4e3eb3", "variant": 3072420679, "library": "eenetctl"}]}}], "symbols": []}}, {"match": {"value": 8413229}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289069120}, "child": {"skip": 864, "offset": 876, "next": [], "symbols": [{"name": "sceHTTPGetOption", "hash": "6cb205b9897cb28c8a393dc321b3ecaf2189b901", "variant": 2266565042, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 4289724432}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707552}, "child": {"skip": 676, "offset": 688, "ne)PS2SDB", 8192}, + std::string_view{R"PS2SDB(xt": [], "symbols": [{"name": "open_connection", "hash": "1e3bca6da7a550d0151b6468286935e558c0be06", "variant": 2403820588, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 4289790032}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724480}, "child": {"skip": 344, "offset": 356, "next": [], "symbols": [{"name": "print_cert_info", "hash": "cfc84ef6623dce86270b3af44023e82281dc3d1b", "variant": 406519758, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 614727679}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289921104}, "child": {"skip": 604, "offset": 616, "next": [], "symbols": [{"name": "file_ctrl", "hash": "37dcb75041bf7ab4d115094c6f4f894285f625e6", "variant": 522328597, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604504063}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289986624}, "child": {"skip": 256, "offset": 268, "next": [], "symbols": [{"name": "OBJ_create", "hash": "80ebc24997013bac11973acaf1b1b5d1cb8f04ff", "variant": 3047075107, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 824770562}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290052176}, "child": {"skip": 260, "offset": 272, "next": [], "symbols": [{"name": "R_EITEM_set", "hash": "c9c2161e7c09801bca16674e4ae59d0d716c000d", "variant": 1982351853, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 956825602}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289986640}, "child": {"skip": 84, "offset": 96, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "PK_pub_enc"}}, "child": {"skip": 0, "offset": 100, "next": [{"match": {"value": 887619583}, "child": {"skip": 44, "offset": 148, "next": [], "symbols": [{"name": "RSA_public_encrypt", "hash": "76e4a5104087b6772c91df2bd0b57a20b2d913b9", "variant": 804551439, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "PK_priv_enc"}}, "child": {"skip": 0, "offset": 100, "next": [{"match": {"value": 887619583}, "child": {"skip": 44, "offset": 148, "next": [], "symbols": [{"name": "RSA_private_encrypt", "hash": "76e4a5104087b6772c91df2bd0b57a20b2d913b9", "variant": 3556064468, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "PK_pub_dec"}}, "child": {"skip": 0, "offset": 100, "next": [{"match": {"value": 887619583}, "child": {"skip": 44, "offset": 148, "next": [], "symbols": [{"name": "RSA_public_decrypt", "hash": "76e4a5104087b6772c91df2bd0b57a20b2d913b9", "variant": 3452094707, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604114960}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290052176}, "child": {"skip": 536, "offset": 548, "next": [], "symbols": [{"name": "client_hello", "hash": "7eb5c8e5ef8808a4cb45de3d6a8fc801110c51e9", "variant": 1527945495, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604115216}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289921072}, "child": {"skip": 600, "offset": 612, "next": [], "symbols": [{"name": "ssl3_client_hello", "hash": "2c3762ce34c61d7d26a8089aeafcb81dbf6e6fc0", "variant": 2784190205, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604311840}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855536}, "child": {"skip": 740, "offset": 752, "next": [], "symbols": [{"name": "ssl3_get_server_hello", "hash": "e6426a611a613c490d36fb78ceee1e02a1c24362", "variant": 3807599334, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604110849}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707552}, "child": {"skip": 48, "offset": 60, "next": [], "symbols": [{"name": "X509_OBJECT_retrieve_by_subject", "hash": "9f536892148b4a5ac22522b57519c7f3a9a1d7eb", "variant": 2619726753, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 16783405}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 260, "offset": 272, "next": [], "symbols": [{"name": "sceInetRecvFrom", "hash": "3f735ab21661e8de06bb63de41aea01e7a68de53", "variant": 3804252291, "library": "libnet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666763232}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2889875456, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707472}, "child": {"skip": 72, "offset": 88, "next": [], "symbols": [{"name": "__sceEENetrt_timer_init", "hash": "57dd1b994d43b67b8984411e9d1e5f9cd85235e5", "variant": 2209963235, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289724416}, "child": {"skip": 148, "offset": 164, "next": [], "symbols": [{"name": "load_ciphers", "hash": "c21d843f84934a31346218031ab54938758cdf7e", "variant": 117936338, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 4289724432}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 609222656, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 604307457}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 604110860}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 68, "offset": 100, "next": [], "symbols": [{"name": "scePadGetPortMax", "hash": "8610db0d9e4950079802e841d3aad67170ec2645", "variant": 2288947663, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 604110866}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 68, "offset": 100, "next": [], "symbols": [{"name": "scePadGetModVersion", "hash": "1106bd8c96671ea18b39d226c29a8d99b30b4792", "variant": 2288947663, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 604766221}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2919497732}, "child": {"skip": 76, "offset": 104, "next": [], "symbols": [{"name": "scePadGetSlotMax", "hash": "6cf7b8f0075238c9a7041e9bb28e331ef9cfbe5f", "variant": 1627823149, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 604766228}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2919497732}, "child": {"skip": 76, "offset": 104, "next": [], "symbols": [{"name": "scePadSetWarningLevel", "hash": "8191fb2dfb84ae2b1944810e90bd6cd8d886fcf6", "variant": 1627823149, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 608632832, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789960}, "child": {"skip": 80, "offset": 100, "next": [], "symbols": [{"name": "eh_context_static", "hash": "3c56a1e814a647c27df5b1f40b0cfc3214b3879c", "variant": 1829380986, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 609222656, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789960}, "child": {"skip": 140, "offset": 160, "next": [], "symbols": [{"name": "atexit", "hash": "c2781b44e134e44777a01185134223b927c4d3f8", "variant": 3671444322, "library": "libc"}]}}], "symbols": []}}, {")PS2SDB", 8192}, + std::string_view{R"PS2SDB(match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707472}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 604504384}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 604700673}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 1007419392, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 172, "offset": 204, "next": [], "symbols": [{"name": "_skipMB0", "hash": "c30ccfdae694d2555ed192f3de15b578a5c0d04e", "variant": 3146578599, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 604635137}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 8407085}, "child": {"skip": 164, "offset": 196, "next": [], "symbols": [{"name": "_skipMB0", "hash": "9f436a15b04047a3a858f24b257b939b35285618", "variant": 1202589294, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604569920}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1007157248, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 180, "offset": 208, "next": [], "symbols": [{"name": "_skipMB0", "hash": "d83527f15df194893a59169a45fd2d180ddf1109", "variant": 2043998153, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2353266688, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 609222656, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 56, "offset": 76, "next": [], "symbols": [{"name": "_sceMcCoreEnd", "hash": "8a209fc99352f0091c2d3c1a8a2cfc2d79fa8724", "variant": 562971498, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 608501760, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707472}, "child": {"skip": 212, "offset": 232, "next": [], "symbols": [{"name": "sppp_chap_tlu", "hash": "b876fcc9f2b896eed2000ef251649a74c68a9f0c", "variant": 3433239593, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707472}, "child": {"skip": 112, "offset": 132, "next": [], "symbols": [{"name": "sppp_pap_tlu", "hash": "b10ff1d34d5203b4df4a8e4340957a3f8d53d330", "variant": 2205885616, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289789960}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707472}, "child": {"skip": 116, "offset": 136, "next": [], "symbols": [{"name": "eh_context_specific", "hash": "acee898de77277e86d9f7a044f254ef10c731af1", "variant": 2873676657, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 8421421}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789960}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 609288192, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 4, "offset": 28, "next": [{"match": {"value": 4290707472}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "close"}}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 2921332736}, "child": {"skip": 48, "offset": 88, "next": [], "symbols": [{"name": "_close_r", "hash": "8a66388cde9ed22a05bf7848804db0132a163279", "variant": 4061138494, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sbrk"}}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 2921332736}, "child": {"skip": 48, "offset": 88, "next": [], "symbols": [{"name": "_sbrk_r", "hash": "8a66388cde9ed22a05bf7848804db0132a163279", "variant": 3420688079, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 12593197}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4290707472}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "fstat"}}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 2921332736}, "child": {"skip": 48, "offset": 92, "next": [], "symbols": [{"name": "_fstat_r", "hash": "63ea1b1eba0739f47d4515a6a350d0f6f5d44fea", "variant": 2154080693, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "kill"}}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 2921332736}, "child": {"skip": 48, "offset": 92, "next": [], "symbols": [{"name": "_kill_r", "hash": "63ea1b1eba0739f47d4515a6a350d0f6f5d44fea", "variant": 299177048, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 14692397}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 4290707472}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "lseek"}}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 2921332736}, "child": {"skip": 48, "offset": 96, "next": [], "symbols": [{"name": "_lseek_r", "hash": "11cedd8bb17b528ce07dd012c30fbb74d6215523", "variant": 877535845, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "read"}}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 2921332736}, "child": {"skip": 48, "offset": 96, "next": [], "symbols": [{"name": "_read_r", "hash": "045e7191ae6ac07db3d07fa348435e17db6a4cad", "variant": 2492982232, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "write"}}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 2921332736}, "child": {"skip": 48, "offset": 96, "next": [], "symbols": [{"name": "_write_r", "hash": "045e7191ae6ac07db3d07fa348435e17db6a4cad", "variant": 649663712, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "open"}}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 2921332736}, "child": {"skip": 48, "offset": 96, "next": [], "symbols": [{"name": "_open_r", "hash": "11cedd8bb17b528ce07dd012c30fbb74d6215523", "variant": 2830115099, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707472}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2353201152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 637796708}, "child": {"skip": 36, "offset": 64, "next": [], "symbols": [{"name": "sceAtokCmd", "hash": "74920cec284a9191941e8b80fdb50bf2c460ae34", "variant": 3019051150, "library": "libatok"}]}}], "symbols": []}}, {"match": {"value": 608567296, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2294480899}, "child": {"skip": 76, "offset": 104, "next": [], "symbols": [{"name": "__sceEENetin_pcbdisconnect", "hash": "4248fe298d9a81f5e666b664deaeac8c639831b4", "variant": 3282713934, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2353266688, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 276824077}, "child": {"skip": 88, "offset": 116, "next": [], "symbols": [{"name": "obj_name_hash", "hash": "cb717a0f49f6eea2814c7020c8a0df9cfdfabe94", "variant": 2397457558, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707472}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 609222656, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 80, "offset": 100, "next": [], "symbols": [{"name": "SetResult", "hash": "1a8f87419d257300576a3e3449db5ad1136c34ae", "variant": 4085306995, "library": "libusbkb"}]}}], "symbols": []}}, {"match": {"value": 10518573}, "child": {"ski)PS2SDB", 8192}, + std::string_view{R"PS2SDB(p": 0, "offset": 16, "next": [{"match": {"value": 4290707472}, "child": {"skip": 52, "offset": 72, "next": [], "symbols": [{"name": "sceHiPlugTim2GetName", "hash": "2279e334d21955b26d4380216df68e4a241528f3", "variant": 194785913, "library": "libhip"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789960}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 609288192, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 268, "offset": 284, "next": [], "symbols": [{"name": "_sceMcpReadSysInfo", "hash": "2744c1b5332129da0156fe7f46d564d9bba5f6e4", "variant": 428263520, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 4290707472}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 608501760, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 276, "offset": 292, "next": [], "symbols": [{"name": "__sceEENethzto", "hash": "b0d4a9b8ddc100a8de5b9aeb9a73dad076d88766", "variant": 387533026, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1007026176, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 616693760, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 88, "offset": 100, "next": [], "symbols": [{"name": "scePadGetConnection", "hash": "857c0b0e75b628fd1012ae02ef48ac93d3fb13e6", "variant": 625079217, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2355232768, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1007681536, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 272629766}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290707472}, "child": {"skip": 64, "offset": 92, "next": [], "symbols": [{"name": "cdvd_exit", "hash": "9c7e1d15de189b8133ba8a065b5d40cace10029c", "variant": 2199692748, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 272629767}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290707472}, "child": {"skip": 76, "offset": 104, "next": [], "symbols": [{"name": "cdvd_exit", "hash": "5579cdd17d92383e7a040ef4921bdd96cacef4a6", "variant": 2856560953, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 611319808, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 339738633}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290707472}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__tf9exception"}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 0}, "child": {"skip": 44, "offset": 80, "next": [], "symbols": [{"name": "__tf13bad_exception", "hash": "e1018fcce86fc0a20cf3a2a96734912a5e33ecb9", "variant": 3077886490, "library": "libgcc"}, {"name": "__tf9bad_alloc", "hash": "e1018fcce86fc0a20cf3a2a96734912a5e33ecb9", "variant": 3077886490, "library": "libgcc"}, {"name": "__tf10bad_typeid", "hash": "e1018fcce86fc0a20cf3a2a96734912a5e33ecb9", "variant": 3077886490, "library": "libgcc"}, {"name": "__tf8bad_cast", "hash": "e1018fcce86fc0a20cf3a2a96734912a5e33ecb9", "variant": 3077886490, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__tf16__user_type_info"}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 0}, "child": {"skip": 44, "offset": 80, "next": [], "symbols": [{"name": "__tf17__class_type_info", "hash": "e1018fcce86fc0a20cf3a2a96734912a5e33ecb9", "variant": 2375422386, "library": "libgcc"}, {"name": "__tf14__si_type_info", "hash": "e1018fcce86fc0a20cf3a2a96734912a5e33ecb9", "variant": 2375422386, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__tf9type_info"}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 0}, "child": {"skip": 44, "offset": 80, "next": [], "symbols": [{"name": "__tf16__user_type_info", "hash": "e1018fcce86fc0a20cf3a2a96734912a5e33ecb9", "variant": 406666109, "library": "libgcc"}, {"name": "__tf17__array_type_info", "hash": "e1018fcce86fc0a20cf3a2a96734912a5e33ecb9", "variant": 406666109, "library": "libgcc"}, {"name": "__tf16__ptmd_type_info", "hash": "e1018fcce86fc0a20cf3a2a96734912a5e33ecb9", "variant": 406666109, "library": "libgcc"}, {"name": "__tf16__ptmf_type_info", "hash": "e1018fcce86fc0a20cf3a2a96734912a5e33ecb9", "variant": 406666109, "library": "libgcc"}, {"name": "__tf16__func_type_info", "hash": "e1018fcce86fc0a20cf3a2a96734912a5e33ecb9", "variant": 406666109, "library": "libgcc"}, {"name": "__tf19__builtin_type_info", "hash": "e1018fcce86fc0a20cf3a2a96734912a5e33ecb9", "variant": 406666109, "library": "libgcc"}, {"name": "__tf16__attr_type_info", "hash": "e1018fcce86fc0a20cf3a2a96734912a5e33ecb9", "variant": 406666109, "library": "libgcc"}, {"name": "__tf19__pointer_type_info", "hash": "e1018fcce86fc0a20cf3a2a96734912a5e33ecb9", "variant": 406666109, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 339738629}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290707472}, "child": {"skip": 36, "offset": 64, "next": [], "symbols": [{"name": "__tf9exception", "hash": "67fc2a7b946c82ce5bedb96d9b805ed1983f43fe", "variant": 1051085517, "library": "libgcc"}, {"name": "__tf9type_info", "hash": "67fc2a7b946c82ce5bedb96d9b805ed1983f43fe", "variant": 1051085517, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8421421}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 339738628}, "child": {"skip": 56, "offset": 80, "next": [{"match": {"value": 604110851}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 1006797057}, "child": {"skip": 12, "offset": 100, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceMcCoreSetAlaram"}}, "child": {"skip": 0, "offset": 104, "next": [{"match": {"value": 2892103684}, "child": {"skip": 20, "offset": 128, "next": [], "symbols": [{"name": "sceMc2FormatAsync", "hash": "e4384878eec2e9a7cf7b0932e9d0f2dc3a14a0e0", "variant": 362201311, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceMcCoreExecSubs"}}, "child": {"skip": 0, "offset": 104, "next": [{"match": {"value": 2892103684}, "child": {"skip": 20, "offset": 128, "next": [], "symbols": [{"name": "sceMc2FormatAsync", "hash": "e4384878eec2e9a7cf7b0932e9d0f2dc3a14a0e0", "variant": 2261585580, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604110852}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 1006797057}, "child": {"skip": 12, "offset": 100, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceMcCoreSetAlaram"}}, "child": {"skip": 0, "offset": 104, "next": [{"match": {"value": 2892103684}, "child": {"skip": 20, "offset": 128, "next": [], "symbols": [{"name": "sceMc2UnformatAsync", "hash": "8c7dd89c721f00c95c857d52f9e54a75752468da", "variant": 362201311, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceMcCoreExecSubs"}}, "child": {"skip": 0, "offset": 104, "next": [{"match": {"value": 2892103684}, "child": {"skip": 20, "offset": 128, "next": [], "symbols": [{"name": "sceMc2UnformatAsync", "hash": "8c7dd89c721f00c95c857d52f9e54a75752468da", "variant": 2261585580, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604110948}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 1006797057}, "child": {"skip": 12, "offset": 100, "next": [{"match": )PS2SDB", 8192}, + std::string_view{R"PS2SDB({"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceMcCoreSetAlaram"}}, "child": {"skip": 0, "offset": 104, "next": [{"match": {"value": 2892103684}, "child": {"skip": 20, "offset": 128, "next": [], "symbols": [{"name": "sceMc2GetDirAll", "hash": "d3b829e09b0ad124a8f66cf72ea5e0892a58760f", "variant": 362201311, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceMcCoreExecSubs"}}, "child": {"skip": 0, "offset": 104, "next": [{"match": {"value": 2892103684}, "child": {"skip": 20, "offset": 128, "next": [], "symbols": [{"name": "sceMc2GetDirAll", "hash": "d3b829e09b0ad124a8f66cf72ea5e0892a58760f", "variant": 2261585580, "library": "libmc2"}, {"name": "sceMc2GetDirAllAsync", "hash": "d3b829e09b0ad124a8f66cf72ea5e0892a58760f", "variant": 2261585580, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 605028353}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 71368707}, "child": {"skip": 116, "offset": 140, "next": [], "symbols": [{"name": "sce_sync", "hash": "26331d20681b7f6d8b9751055b79013777398f4f", "variant": 4036084801, "library": "netcnfif"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707472}, "child": {"skip": 20, "offset": 40, "next": [{"match": {"value": 2894200832, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "iSignalSema"}}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 2359558144, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 76, "offset": 128, "next": [], "symbols": [{"name": "cd_callback", "hash": "1c89026bd311070c793949d0a9ca0751aac96a35", "variant": 3940362981, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 2359558144, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "iSignalSema"}}, "child": {"skip": 80, "offset": 132, "next": [], "symbols": [{"name": "cd_callback", "hash": "529ed9a996560c8cb001f2d2ffbed7831b76bba7", "variant": 2081012236, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2896297984, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 2357395456, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 132, "offset": 180, "next": [], "symbols": [{"name": "cd_callback", "hash": "fa6a3b662bfd6891d3e6bce4799fedee0806c015", "variant": 1948679700, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2153906176, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 611319808, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 44, "offset": 64, "next": [], "symbols": [{"name": "IsT10K", "hash": "133cfd42df5c2a1077bf414184aacbff2c269a1f", "variant": 1847147023, "library": "libscf"}]}}], "symbols": []}}, {"match": {"value": 8398893}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2355232768, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 116, "offset": 136, "next": [], "symbols": [{"name": "_lastFrame", "hash": "566c0ebec8e804f6e6a9d5f1e1356335112c6f8a", "variant": 926663411, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 6301741}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2356150272, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 128, "offset": 148, "next": [], "symbols": [{"name": "sceEENetCtlUnregisterEventHandler", "hash": "ab0c6f20de1a44e487263b0880e7ba93b0ab5ba4", "variant": 1846997498, "library": "eenetctl"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707472}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8400941}, "child": {"skip": 168, "offset": 184, "next": [], "symbols": [{"name": "_outputFrame", "hash": "95f891c8f6ca59ba5ba948abde653b8485bf754c", "variant": 3829472101, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 4, "offset": 24, "next": [{"match": {"value": 637927444}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__sceEENetlog"}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 604241926}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 2919255612}, "child": {"skip": 48, "offset": 88, "next": [], "symbols": [{"name": "pppoe_abort_connect", "hash": "f8b22ad2f81feae53d72ae9a3fa34b01413cea0b", "variant": 3559693480, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 604241927}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__sceEENetcallout_stop"}}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 637796912}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__sceEENetcallout_stop"}}, "child": {"skip": 56, "offset": 104, "next": [], "symbols": [{"name": "sppp_chap_tld", "hash": "bd4643f16fe577909cf341cb9e5bb723ad790512", "variant": 498811337, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 637796880}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__sceEENetcallout_stop"}}, "child": {"skip": 56, "offset": 104, "next": [], "symbols": [{"name": "sppp_pap_tld", "hash": "3b8b36ba860f13d9146a653c55738b71f1fa98cf", "variant": 498811337, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 637796356}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "strncmp"}}, "child": {"skip": 112, "offset": 144, "next": [], "symbols": [{"name": "get_real_ifcnf", "hash": "9b9e59b94a1d874bc6f23a44c9bf29b7f681ebdb", "variant": 797992882, "library": "eenetctl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1007026176, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1007681536, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 112, "offset": 132, "next": [], "symbols": [{"name": "arp_init", "hash": "aa94336fdb477aa6407419f12500b6556e9472b2", "variant": 151401398, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4290707472}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1007681536, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 156, "offset": 176, "next": [], "symbols": [{"name": "cd_callback", "hash": "dfbe509f70b507c8cce20fab0fdb5784bc39c8de", "variant": 3481635370, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2407661568, "relocation": {"type": "MIPS_GPREL16", "symbol": ".sdata"}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 339738650}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707472}, "child": {"skip": 52, "offset": 68, "next": [{"match": {"value": 604307459}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 604372993}, "child": {"skip": 52, "offset":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( 128, "next": [], "symbols": [{"name": "sceMcClose", "hash": "b543572a625212513c558738e919554d59dc6038", "variant": 2101606342, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 604307570}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 604372993}, "child": {"skip": 52, "offset": 128, "next": [], "symbols": [{"name": "sceMcClose", "hash": "2fe3006867fc5d01fc406d14c833622847651f3b", "variant": 2101606342, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 604307466}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 604372993}, "child": {"skip": 52, "offset": 128, "next": [], "symbols": [{"name": "sceMcFlush", "hash": "c51e78baf94a61420b59727ca0781b7095f07f9e", "variant": 2101606342, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 604307578}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 604372993}, "child": {"skip": 52, "offset": 128, "next": [], "symbols": [{"name": "sceMcFlush", "hash": "28c087381b5d81ceeefaf1d50b8afe31c8b86bcb", "variant": 2101606342, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 339738651}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707472}, "child": {"skip": 56, "offset": 72, "next": [{"match": {"value": 604307460}, "child": {"skip": 0, "offset": 76, "next": [{"match": {"value": 604372993}, "child": {"skip": 52, "offset": 132, "next": [], "symbols": [{"name": "sceMcSeek", "hash": "21e4ead26e1586781cc6cc631c86606bc2459faf", "variant": 3521956166, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 604307573}, "child": {"skip": 0, "offset": 76, "next": [{"match": {"value": 604372993}, "child": {"skip": 52, "offset": 132, "next": [], "symbols": [{"name": "sceMcSeek", "hash": "c98078b4c96b2acc645446b9db82903f89fa2795", "variant": 3521956166, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707472}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 339738650}, "child": {"skip": 60, "offset": 76, "next": [{"match": {"value": 604307472}, "child": {"skip": 0, "offset": 80, "next": [{"match": {"value": 604504112}, "child": {"skip": 48, "offset": 132, "next": [], "symbols": [{"name": "sceMcFormat", "hash": "6bec1340f276bd0b52c2cd08bb4f7235f2bfea49", "variant": 1580634638, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 604307575}, "child": {"skip": 0, "offset": 80, "next": [{"match": {"value": 604504112}, "child": {"skip": 48, "offset": 132, "next": [], "symbols": [{"name": "sceMcFormat", "hash": "10344828e05c68ef9618ca38a5bcabfbc59cc31d", "variant": 1580634638, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 604307473}, "child": {"skip": 0, "offset": 80, "next": [{"match": {"value": 604504112}, "child": {"skip": 48, "offset": 132, "next": [], "symbols": [{"name": "sceMcUnformat", "hash": "cd02842e2b5a00476debfc130783ec3824d44b91", "variant": 1580634638, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 604307584}, "child": {"skip": 0, "offset": 80, "next": [{"match": {"value": 604504112}, "child": {"skip": 48, "offset": 132, "next": [], "symbols": [{"name": "sceMcUnformat", "hash": "bca529dc78baf2c290bdf10395e08cf92dcd3e5d", "variant": 1580634638, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "mcHearAlarm"}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 4, "offset": 16, "next": [{"match": {"value": 1007681536, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4290707472}, "child": {"skip": 32, "offset": 56, "next": [], "symbols": [{"name": "mcDelayThread", "hash": "080bc1461a09614020b7f18c3c1892a5cf0abce6", "variant": 3506025405, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 4290707472}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1007681536, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 36, "offset": 60, "next": [], "symbols": [{"name": "mcDelayThread", "hash": "921586b30aced4b8203395ffb70de5cd0cd51927", "variant": 4109984102, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": "_cleanup_r"}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 128, "offset": 140, "next": [], "symbols": [{"name": "__sinit", "hash": "0f327b6f1ddf71c1c56a1c5e9c7b0c5d1ee7b1aa", "variant": 1779995424, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 2407661568, "relocation": {"type": "MIPS_GPREL16", "symbol": "_theSceMpeg"}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707472}, "child": {"skip": 128, "offset": 140, "next": [], "symbols": [{"name": "_outputFrame", "hash": "2c3b20e62ad160141ae7777fea5d8879a1d5219a", "variant": 3274252565, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2407727104, "relocation": {"type": "MIPS_GPREL16", "symbol": ".sdata"}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 274726925}, "child": {"skip": 72, "offset": 84, "next": [], "symbols": [{"name": "_Error", "hash": "736fd1df775e138513302bb0bd057a6ba06c64b3", "variant": 1167858581, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 168, "offset": 180, "next": [], "symbols": [{"name": "__sceEENetether_ifattach", "hash": "3e1d0f848e90cc9c0c8ac4881120a18e2cfacd02", "variant": 4243387850, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 104, "offset": 116, "next": [], "symbols": [{"name": "__sceEENetroute_init", "hash": "9a2b44de6edb814a161a90d5168e5cacf6a488cb", "variant": 3214131579, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 1007091712, "relocation": {"type": "MIPS_HI16", "symbol": "__sceEENettcp_mtudisc"}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2946760704}, "child": {"skip": 52, "offset": 64, "next": [], "symbols": [{"name": "__sceEENettcp_mtudisc_callback", "hash": "376d5f688a90619fa824017936592e18fa0f28ec", "variant": 1315468524, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 1007091712, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 236, "offset": 248, "next": [], "symbols": [{"name": "SSL_SESSION_free", "hash": "6d87b72ffb07269918e0ad08b2d67a25d40670a0", "variant": 2826272633, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604110950}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 564, "offset": 576, "next": [], "symbols": [{"name": "sceGsSetDefDispEnv", "hash": "14a27a82bc27e9e9acc72c22e130966292667590", "variant": 1367780048, "library": "libgraph"}]}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1007681536, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707472}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2382626816, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 75497478}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 3753836560}, "child": {"skip": 36, "offset": 64, "next": [], "symbols": [{"name": "sceMcEnd", "hash": "e0da8bc03f6431b01e974adc4736f411a1b088bf", "variant": 1798749107, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 75497481}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 37538)PS2SDB", 8192}, + std::string_view{R"PS2SDB(36560}, "child": {"skip": 48, "offset": 76, "next": [], "symbols": [{"name": "sceMcEnd", "hash": "8bce662d3c468705074fd71da9c77aef48cba1ac", "variant": 1516118677, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 276824103}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4141}, "child": {"skip": 168, "offset": 196, "next": [], "symbols": [{"name": "sceHiDMASend", "hash": "c4192360d91a807d931d2a4472cd5d6f2a5699f7", "variant": 3547968476, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 276824127}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4141}, "child": {"skip": 32, "offset": 60, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "FlushCache"}}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 8237}, "child": {"skip": 224, "offset": 292, "next": [], "symbols": [{"name": "sceHiDMASend", "hash": "6c61d49a9ae435540957e2ef19ba3190015ed5a6", "variant": 1523244194, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "iFlushCache"}}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 8237}, "child": {"skip": 224, "offset": 292, "next": [], "symbols": [{"name": "sceHiDMASendI", "hash": "f0187f9549723c6adb8e668b797b09bbd184f7fe", "variant": 161734046, "library": "libhig"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 276824105}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4141}, "child": {"skip": 176, "offset": 204, "next": [], "symbols": [{"name": "sceHiDMASendI", "hash": "43d4e7ca8d700755ec04d6b200a0c1e4408c7dce", "variant": 3541792785, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 1417674757}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2357329932}, "child": {"skip": 88, "offset": 116, "next": [{"match": {"value": 1007091712, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 120, "next": [{"match": {"value": 1007162368}, "child": {"skip": 0, "offset": 124, "next": [{"match": {"value": 2353201160}, "child": {"skip": 88, "offset": 216, "next": [], "symbols": [{"name": "sceHiDMAMake_ExecMicro", "hash": "c13b4471f11a915c535c3ab59e15c64d55d1ff11", "variant": 3457478666, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 1007161600}, "child": {"skip": 0, "offset": 124, "next": [{"match": {"value": 2353201160}, "child": {"skip": 88, "offset": 216, "next": [], "symbols": [{"name": "sceHiDMAMake_WaitMicro", "hash": "c99bf9c8a21525d4f7351dfeaace96043687dc37", "variant": 3457478666, "library": "libhig"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1007026176, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 120, "next": [{"match": {"value": 1007163136}, "child": {"skip": 92, "offset": 216, "next": [], "symbols": [{"name": "sceHiDMAMake_ContinueMicro", "hash": "f8d7d22a37193d9c904a8dcd69506fa36b4e7f2b", "variant": 3457478666, "library": "libhig"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 276824072}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 3753836560}, "child": {"skip": 44, "offset": 72, "next": [], "symbols": [{"name": "X509_STORE_CTX_cleanup_ex_data", "hash": "8866f400a08e000b071864f5dface63a56c787b8", "variant": 2286180217, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2382495744, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 71303179}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 8237}, "child": {"skip": 60, "offset": 88, "next": [], "symbols": [{"name": "sceMcEnd", "hash": "df7d47f8c44094a396b9d127e1e7ad5482b6b8c2", "variant": 449054479, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 272629766}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 8398893}, "child": {"skip": 104, "offset": 132, "next": [], "symbols": [{"name": "_lastFrame", "hash": "0fba6de635d103f5e91139f15d4b5a864dd41d3d", "variant": 730749532, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 272629765}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 8, "offset": 36, "next": [{"match": {"value": 268435470}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 3753836560}, "child": {"skip": 64, "offset": 108, "next": [], "symbols": [{"name": "sceHiDMAMake_ChainStart", "hash": "ee7d349b986c8fc1f0460b103f6c6c1b076724f5", "variant": 873267219, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 268435473}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 3753836560}, "child": {"skip": 76, "offset": 120, "next": [], "symbols": [{"name": "sceHiDMAMake_DynamicChainStart", "hash": "5f381c5dc45ff62db20e303cc999c955508c36a3", "variant": 3648517433, "library": "libhig"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 339738632}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 604110849}, "child": {"skip": 44, "offset": 72, "next": [], "symbols": [{"name": "OBJ_NAME_init", "hash": "35633d012f1f4c39953a54bd4970a25b41a4ea37", "variant": 169281588, "library": "libhttps"}, {"name": "init_added", "hash": "35633d012f1f4c39953a54bd4970a25b41a4ea37", "variant": 169281588, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 272629776}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 76, "offset": 104, "next": [], "symbols": [{"name": "OBJ_cleanup", "hash": "ce31dc4f9ba5a0b0a9c56fe43690192499ac907c", "variant": 620676303, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 71368714}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 3753836560}, "child": {"skip": 48, "offset": 76, "next": [], "symbols": [{"name": "SSL_get_ex_data_X509_STORE_CTX_idx", "hash": "4d997b6a058cc458d3cbb67fa12f6819d6628099", "variant": 610306006, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "GetThreadId"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 638582784, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 16, "offset": 40, "next": [{"match": {"value": 1007026176, "relocation": {"type": "MIPS_HI16", "symbol": "mceSifEntry"}}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 1007091712, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 56, "offset": 104, "next": [], "symbols": [{"name": "regMain", "hash": "6de94fe49951c66c1ede8939b83ba9bcef9c9acb", "variant": 1465479444, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 1007026176, "relocation": {"type": "MIPS_HI16", "symbol": "_sceEENetRPCServerFunc"}}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 1007091712, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 64, "offset": 112, "next": [], "symbols": [{"name": "_sceEENetRPCServerLoop", "hash": "c1218ac00b0cebc81b0028a19b973f49c7cf28bd", "variant": 1669808020, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 1007026176, "relocation": {"type": "MIPS_HI16", "symbol": "eenetctl_rpc_server_func"}}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 1007091712, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 64, "offset": 112, "next": [], "symbols": [{"name": "eenetctl_rpc_server", "hash": "345f21dfdb954ee437025177cd18513e536514bb", "variant": 2869683154, "library": "eenetctl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "TerminateThread"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2382626816, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 24, "next": [{"m)PS2SDB", 8192}, + std::string_view{R"PS2SDB(atch": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "DeleteThread"}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2382626816, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 24, "offset": 56, "next": [], "symbols": [{"name": "__sceEENeteenet_netintr_stop", "hash": "a18a9007cd4d4899d68f24c3110c6ae8b980fae6", "variant": 3144198311, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2382626816, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 3753836560}, "child": {"skip": 12, "offset": 44, "next": [], "symbols": [{"name": "__sceEENeteenet_callout_stop", "hash": "db523b6a83ee3ea0b8ae197438d8e6e3f86bc37d", "variant": 1466899823, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789960}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8423469}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2382626816, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290707472}, "child": {"skip": 56, "offset": 84, "next": [], "symbols": [{"name": "malloc", "hash": "7346349c936312f38f88ddb25c120f2c51f9124d", "variant": 3752131912, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 10493997}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290707472}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "close"}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2919235584, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 44, "offset": 80, "next": [], "symbols": [{"name": "_close_r", "hash": "a46f560bfacc568927917599f830d50354e40ef6", "variant": 448735094, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sbrk"}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2919235584, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 44, "offset": 80, "next": [], "symbols": [{"name": "_sbrk_r", "hash": "a46f560bfacc568927917599f830d50354e40ef6", "variant": 900471015, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707472}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 638582784, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 12, "offset": 40, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_malloc_r"}}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 35661869}, "child": {"skip": 36, "offset": 84, "next": [], "symbols": [{"name": "malloc", "hash": "c0ce24b2e7b96be6bc77a15c417ef49ffeb4fa09", "variant": 16558901, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_free_r"}}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 35661869}, "child": {"skip": 24, "offset": 72, "next": [], "symbols": [{"name": "free", "hash": "303cd5c0a672d94a0c4b7fc5d154a1b9c5a0af0e", "variant": 3060765816, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10520621}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289855504}, "child": {"skip": 28, "offset": 52, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_calloc_r"}}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 35663917}, "child": {"skip": 40, "offset": 100, "next": [], "symbols": [{"name": "calloc", "hash": "975aa3aa784aa66a61bf918ea3b7b4f056446ff1", "variant": 275583297, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_memalign_r"}}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 35663917}, "child": {"skip": 40, "offset": 100, "next": [], "symbols": [{"name": "memalign", "hash": "975aa3aa784aa66a61bf918ea3b7b4f056446ff1", "variant": 2298816527, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_realloc_r"}}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 35663917}, "child": {"skip": 40, "offset": 100, "next": [], "symbols": [{"name": "realloc", "hash": "975aa3aa784aa66a61bf918ea3b7b4f056446ff1", "variant": 1640901342, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707472}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceGsGetGParam"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2218983430}, "child": {"skip": 164, "offset": 188, "next": [], "symbols": [{"name": "sceGsPutDispEnv", "hash": "ed205801c19112ffac299364c146a5272894dc39", "variant": 4102179181, "library": "libgraph"}]}}], "symbols": []}}, {"match": {"value": 0}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4227117}, "child": {"skip": 124, "offset": 148, "next": [], "symbols": [{"name": "sceGsSyncV", "hash": "2554d3bae19290ea9ecf32bcee580e0b7a8d93d3", "variant": 1200087955, "library": "libgraph"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "WaitDma"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 52, "offset": 72, "next": [], "symbols": [{"name": "sceDmaRecv", "hash": "8bd764244ae171125bf1dceaaabad8a1a3cd66cc", "variant": 15918716, "library": "libdma"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceDmaGetNextTag"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 52, "offset": 72, "next": [], "symbols": [{"name": "sceDmaAddExpress", "hash": "29fc82d4ce25b925f7790c921390e735ab6735ea", "variant": 1453106897, "library": "libdma"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceDevVu0Sync"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 32813}, "child": {"skip": 4, "offset": 24, "next": [{"match": {"value": 744620037}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 272629771}, "child": {"skip": 64, "offset": 96, "next": [], "symbols": [{"name": "sceDevVu0Pause", "hash": "03b410c6a01eac9d7b0209ca496ed58452b26f64", "variant": 3754378204, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 677511172}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 272629768}, "child": {"skip": 48, "offset": 80, "next": [], "symbols": [{"name": "sceDevVu0Continue", "hash": "50570857d98bc7b68d30d7c9a534089a90b947d7", "variant": 4260331068, "library": "libdev"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceDevVu0CheckBusy"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 339738670}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4141}, "child": {"skip": 196, "offset": 224, "next": [], "symbols": [{"name": "sceDevVu0GetCnd", "hash": "9c326456e70be3123b612dee9a19f742cf212b01", "variant": 1668762697, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 339738702}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4141}, "child": {"skip": 324, "offset": 352, "next": [], "symbols": [{"name": "sceDevVu0GetCnd", "hash": "14088688750ac2a488991ea3e299834705acc174", "variant": 1668762697, "library": "libdev"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceDevVu1Sync"}}, "child": {"skip": 0, "offset": 16, "next": [{)PS2SDB", 8192}, + std::string_view{R"PS2SDB("match": {"value": 32813}, "child": {"skip": 4, "offset": 24, "next": [{"match": {"value": 744620037}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 272629771}, "child": {"skip": 64, "offset": 96, "next": [], "symbols": [{"name": "sceDevVu1Pause", "hash": "66ca3866b522dc945bcfc20c2ba3161e80179cc2", "variant": 3166739192, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 677511172}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 272629768}, "child": {"skip": 48, "offset": 80, "next": [], "symbols": [{"name": "sceDevVu1Continue", "hash": "50570857d98bc7b68d30d7c9a534089a90b947d7", "variant": 2214910295, "library": "libdev"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceDevGifSync"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 164, "offset": 184, "next": [], "symbols": [{"name": "sceDevGifGetCnd", "hash": "2fa3dbd13d48115a24fafc8d43e98e0fee2504cd", "variant": 925811029, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceDevVif0Sync"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 84, "offset": 104, "next": [], "symbols": [{"name": "sceDevVif0Pause", "hash": "47958a32db7ec34b53a1d7900e0c6778aa060d34", "variant": 272952351, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceDevVif1Sync"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 84, "offset": 104, "next": [], "symbols": [{"name": "sceDevVif1Pause", "hash": "9bc81ca90f35caba169945ce5c2c33c7a81e1d75", "variant": 757384623, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "DIntr"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1272971564}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1243619624}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 1273307965}, "child": {"skip": 56, "offset": 88, "next": [], "symbols": [{"name": "sceVu0UnitMatrix", "hash": "b1cd52530a4214bf8bbfb4dcf1e69524ebad8bc2", "variant": 3940878983, "library": "libvu0"}]}}], "symbols": []}}, {"match": {"value": 1006847360}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 203832}, "child": {"skip": 92, "offset": 124, "next": [], "symbols": [{"name": "sceVu0ClipScreen", "hash": "5354bfa4aade50e3100c12e48ecde3d65b70bfdb", "variant": 3701536466, "library": "libvu0"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006964736}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1007091713}, "child": {"skip": 28, "offset": 56, "next": [{"match": {"value": 878948352}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 2898395136}, "child": {"skip": 36, "offset": 100, "next": [], "symbols": [{"name": "setD3_CHCR", "hash": "e4b1f21d575330b211cde025715cbf808324a67a", "variant": 4275056393, "library": "libipu"}]}}], "symbols": []}}, {"match": {"value": 878949376}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 2898395136}, "child": {"skip": 36, "offset": 100, "next": [], "symbols": [{"name": "setD4_CHCR", "hash": "16fb0f666f3cc2307c4e7d5305e9ca8e15cc46f6", "variant": 4275056393, "library": "libipu"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1007030272}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1007095808}, "child": {"skip": 28, "offset": 56, "next": [{"match": {"value": 881111040}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 2900557824}, "child": {"skip": 52, "offset": 116, "next": [], "symbols": [{"name": "setD3_CHCR", "hash": "652fc45838bb87a4fbe20d631bcaa6f6034dedf9", "variant": 3701536466, "library": "libipu"}]}}], "symbols": []}}, {"match": {"value": 881112064}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 2900557824}, "child": {"skip": 52, "offset": 116, "next": [], "symbols": [{"name": "setD4_CHCR", "hash": "eb8f3ad69805b2a7ba144fd7a219c731082ec687", "variant": 3701536466, "library": "libipu"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4194304048}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 272629764}, "child": {"skip": 28, "offset": 56, "next": [], "symbols": [{"name": "_nullifyTranspose", "hash": "23b3d731d505ca2ca6a56ac44ce32e2b33dec2c7", "variant": 3123813567, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 3658547200}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 3658612752}, "child": {"skip": 40, "offset": 68, "next": [], "symbols": [{"name": "load_ibm", "hash": "2d8b6c14796650728b2c2d9334e2c66d65858713", "variant": 2753440758, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 1274086205}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1264583852}, "child": {"skip": 60, "offset": 88, "next": [], "symbols": [{"name": "Vu0UnitMatrix", "hash": "63ce2dd353cb7d50c6da453ba7b04199b8107f20", "variant": 3940878983, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 4208685}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1053314}, "child": {"skip": 4, "offset": 32, "next": [{"match": {"value": 143744}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 2361589768}, "child": {"skip": 184, "offset": 224, "next": [], "symbols": [{"name": "sceTimerFreeCounter", "hash": "f61f9e47e5ccdca2bbc7aa38ffbf46666e4e953d", "variant": 613941158, "library": "libtimer"}]}}], "symbols": []}}, {"match": {"value": 139648}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 2357395464}, "child": {"skip": 148, "offset": 188, "next": [], "symbols": [{"name": "sceTimerGetCount", "hash": "a373d624d39398d3e3283510c40298e2109b7edc", "variant": 3066334740, "library": "libtimer"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4202541}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1053314}, "child": {"skip": 88, "offset": 116, "next": [], "symbols": [{"name": "sceTimerGetBaseTime", "hash": "7b014dd68481d69f5744a07e9965a3bb3870b4f8", "variant": 2733668203, "library": "libtimer"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 0}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 604307455}, "child": {"skip": 56, "offset": 84, "next": [], "symbols": [{"name": "sce_delete_sema", "hash": "721bba3b5fd9b84760e60179cf388fd79509e1b6", "variant": 994932164, "library": "netcnfif"}]}}], "symbols": []}}, {"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "sifcmd_handler"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1006927872}, "child": {"skip": 64, "offset": 92, "next": [], "symbols": [{"name": "_sce_eenet_init_sifcmd_handler", "hash": "a5e3c9b3eb64a2c626d338b003a10b64da5a3070", "variant": 2969972211, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4227117}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1006768128}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 876744720}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2353135616}, "child": {"skip": 4, "offset": 40, "next": [{"match": {"value": 274726919}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 0}, "child": {"skip": 96, "offset": 144, "next": [], "symbols": [{"name": "StartTimerSystemTime", "hash": "4ebf0aedf83c5cdf9e28ea3d4d4ae3ea8cb823a6", "variant": 2447224711, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 341835783}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 0}, "child": {"skip": 76, "offset": 124, "next": [], "symbols": [{"name": "StopTimerSystemTime", "hash": "c70eebb7ee960ff774eaf)PS2SDB", 8192}, + std::string_view{R"PS2SDB(22cede8a1c50c3f7c13", "variant": 914337898, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 876742672}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2353266688}, "child": {"skip": 112, "offset": 148, "next": [], "symbols": [{"name": "sceTimerStartSystemTime", "hash": "0c746cee9876893f3deb1ed5ad5f2e4bde86e60d", "variant": 4001214367, "library": "libtimer"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006833664}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 96, "offset": 124, "next": [], "symbols": [{"name": "GetTimerSystemTime", "hash": "df10c5f9890f610ed16d0e0c4e3d1e63a5890b08", "variant": 3502057548, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "TerminateLibrary"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 20, "offset": 40, "next": [], "symbols": [{"name": "Exit", "hash": "a783a097dcfe6f63bc3367c4851277d9d2372d90", "variant": 2521644641, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "scePadGetDmaStr"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 12615725}, "child": {"skip": 24, "offset": 44, "next": [], "symbols": [{"name": "scePadSetReqState", "hash": "ca55c74daf7fdf3299f64265eee91fdd207ebed7", "variant": 1407666399, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8237}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1007681536, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "GetThreadId"}}, "child": {"skip": 20, "offset": 48, "next": [{"match": {"value": 1007026176, "relocation": {"type": "MIPS_HI16", "symbol": "_sdrCB"}}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 1007091712, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 56, "offset": 112, "next": [], "symbols": [{"name": "_sdrCBThread", "hash": "2addd939563bf066d4707a960bcc95c5bfa94065", "variant": 4238487423, "library": "libsdr"}]}}], "symbols": []}}, {"match": {"value": 1007026176, "relocation": {"type": "MIPS_HI16", "symbol": "sce_callback"}}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 1007091712, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 56, "offset": 112, "next": [], "symbols": [{"name": "sce_callback_function", "hash": "d58d7e2b5cc105532155f846b2bc324f2a56d0ea", "variant": 3796066752, "library": "netcnfif"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 609222656, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 76, "offset": 104, "next": [], "symbols": [{"name": "sceSkSsSTRADPCM_Init", "hash": "62f531ccd55fb53c4ee0bab781663225cb741cd3", "variant": 3798312471, "library": "libsk"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "strcmp"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 12615725}, "child": {"skip": 24, "offset": 44, "next": [], "symbols": [{"name": "__throw_type_match", "hash": "5fa41200110647ffe57553882bcf7fa56170523c", "variant": 3606564472, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "malloc"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 604241944}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4227117}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 369098756}, "child": {"skip": 56, "offset": 84, "next": [], "symbols": [{"name": "new_eh_context", "hash": "c4fd1003ce7c724d0431e299040b3fc281cacd35", "variant": 1292078687, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 339738627}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4227117}, "child": {"skip": 52, "offset": 80, "next": [], "symbols": [{"name": "new_eh_context", "hash": "0f9042392bd0cf845ec7b7634089333095c7e2cc", "variant": 3985315871, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__get_eh_info"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2353266688}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2357329920}, "child": {"skip": 44, "offset": 72, "next": [], "symbols": [{"name": "__eh_rtime_match", "hash": "6c4b7bc958bcc05b1106590b5aa6356a6ec2c4f1", "variant": 3530030154, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 3724738592}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4202541}, "child": {"skip": 168, "offset": 196, "next": [], "symbols": [{"name": "__cp_pop_exception", "hash": "ab482c30dbb333561755f09bcb18a0281338be46", "variant": 1329333937, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__do_global_dtors"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 28, "offset": 48, "next": [], "symbols": [{"name": "exit", "hash": "450cbaa354adfd139be4573990aa2307c25c1164", "variant": 1048347071, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__eq__C9type_infoRC9type_info"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 14712877}, "child": {"skip": 24, "offset": 44, "next": [], "symbols": [{"name": "dcast__C16__user_type_infoRC9type_infoiPvPC9type_infoT3", "hash": "d644cdb58b82d712ea2abd6574114f948ed07981", "variant": 4003290200, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__srefill"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 52, "offset": 72, "next": [], "symbols": [{"name": "__srget", "hash": "26fc2e0a65d73151500f3db7ebb168a2635e9b1c", "variant": 497908133, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_nextStartCode"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1007681536, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 156, "offset": 176, "next": [], "symbols": [{"name": "_extensionAndUserData", "hash": "c7aa8dc6992e24eb1a4c296760bdd5700d321909", "variant": 2699957734, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_waitIpuIdle"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 60, "offset": 80, "next": [], "symbols": [{"name": "flushByteBoundary", "hash": "4e9ab95b0c885677ffa08f4f79f6011ba0fb1caf", "variant": 2699584292, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceHiGetErrStatePtr"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 56, "offset": 76, "next": [], "symbols": [{"name": "_hig_dma_err", "hash": "ed9f0d68511b07924d73902bdb45ff58f7ec8844", "variant": 3825923522, "library": "libhig"}, {"name": "_hig_gsmem_err", "hash": "ed9f0d68511b07924d73902bdb45ff58f7ec8844", "variant": 3825923522, "library": "libhig"}, {"name": "_hig_gsdsp_err", "hash": "ed9f0d68511b07924d73902bdb45ff58f7ec8844", "variant": 3825923522, "libr)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ary": "libhig"}, {"name": "_hig_gsctx_err", "hash": "ed9f0d68511b07924d73902bdb45ff58f7ec8844", "variant": 3825923522, "library": "libhig"}, {"name": "_hig_drw_err", "hash": "ed9f0d68511b07924d73902bdb45ff58f7ec8844", "variant": 3825923522, "library": "libhig"}, {"name": "_hip_micro_err", "hash": "ed9f0d68511b07924d73902bdb45ff58f7ec8844", "variant": 2167893472, "library": "libhip"}, {"name": "_hip_tex2d_err", "hash": "ed9f0d68511b07924d73902bdb45ff58f7ec8844", "variant": 2167893472, "library": "libhip"}, {"name": "_hip_shape_err", "hash": "ed9f0d68511b07924d73902bdb45ff58f7ec8844", "variant": 2167893472, "library": "libhip"}, {"name": "_hip_hrchy_err", "hash": "ed9f0d68511b07924d73902bdb45ff58f7ec8844", "variant": 2167893472, "library": "libhip"}, {"name": "_hip_anime_err", "hash": "ed9f0d68511b07924d73902bdb45ff58f7ec8844", "variant": 2167893472, "library": "libhip"}, {"name": "_hip_share_err", "hash": "ed9f0d68511b07924d73902bdb45ff58f7ec8844", "variant": 2167893472, "library": "libhip"}, {"name": "_hip_tim2_err", "hash": "ed9f0d68511b07924d73902bdb45ff58f7ec8844", "variant": 2167893472, "library": "libhip"}, {"name": "_hip_clutbump_err", "hash": "ed9f0d68511b07924d73902bdb45ff58f7ec8844", "variant": 2167893472, "library": "libhip"}, {"name": "_hip_err", "hash": "ed9f0d68511b07924d73902bdb45ff58f7ec8844", "variant": 2167893472, "library": "libhip"}, {"name": "_hip_fish_err", "hash": "ed9f0d68511b07924d73902bdb45ff58f7ec8844", "variant": 2167893472, "library": "libhip"}, {"name": "_hip_refle_err", "hash": "ed9f0d68511b07924d73902bdb45ff58f7ec8844", "variant": 2167893472, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceHiGsCtxGetDefault"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 33564717}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceHiGsCtxSetClearZ"}}, "child": {"skip": 40, "offset": 68, "next": [], "symbols": [{"name": "sceHiGsClearDepth", "hash": "922f690bed5226cd179c4e30b63b8196fa7ba227", "variant": 2628398710, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 4202541}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceHiGsCtxSetClearMode"}}, "child": {"skip": 380, "offset": 408, "next": [], "symbols": [{"name": "sceHiGsClear", "hash": "579936efce67c034a0b1e98e356b73eb6c5a3f29", "variant": 775120320, "library": "libhig"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_delete_packed"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 36, "offset": 56, "next": [], "symbols": [{"name": "sceHiGsEnvDelete", "hash": "5daf92a5f904d416b5cef73d7094b6a8bc2523ff", "variant": 4117528539, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceHiGsContextStatus"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 48, "offset": 68, "next": [], "symbols": [{"name": "sceHiGsFbaRegs", "hash": "255f5dc4bbe8eea6c8fc648f59f538869c0288d1", "variant": 2757858293, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceHiGsGeneralStatus"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4204589}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 604307454}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 3701669888}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 839909377}, "child": {"skip": 32, "offset": 68, "next": [], "symbols": [{"name": "sceHiGsColclampRegs", "hash": "04dad483d9939a52259beb600abc1458802b2d07", "variant": 3118935237, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 3701669904}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 839909377}, "child": {"skip": 32, "offset": 68, "next": [], "symbols": [{"name": "sceHiGsDtheRegs", "hash": "3911904a97c9d365a36083d9286ad58202e73dd1", "variant": 3118935237, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 3701669928}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 839909377}, "child": {"skip": 32, "offset": 68, "next": [], "symbols": [{"name": "sceHiGsPabeRegs", "hash": "62443e5ccad51c31e210c58929164a5d85946beb", "variant": 3118935237, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 3701669952}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 839909377}, "child": {"skip": 32, "offset": 68, "next": [], "symbols": [{"name": "sceHiGsPrmodecontRegs", "hash": "2f55483480d06979dc838991190b132d24e77f06", "variant": 3118935237, "library": "libhig"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2689597471}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 3753836560}, "child": {"skip": 16, "offset": 44, "next": [], "symbols": [{"name": "sceHiGsFogRegs", "hash": "11ed3cff3dc68215f0ab1bbf76c92beee66cce12", "variant": 3118935237, "library": "libhig"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceGpGetNextDmatag"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 44, "offset": 64, "next": [], "symbols": [{"name": "sceGpRemoveNextPacket", "hash": "8e18e492cdf778eb14e3f238121e2966f620d481", "variant": 3907220613, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 44, "offset": 64, "next": [], "symbols": [{"name": "sceGpRemoveNextPacket", "hash": "8e18e492cdf778eb14e3f238121e2966f620d481", "variant": 79184395, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceGpSetAlphaEnvFunc"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 40, "offset": 60, "next": [], "symbols": [{"name": "sceGpSetAlphaEnv", "hash": "04ef4222b3531e277791321afc49f09b1f461412", "variant": 91350352, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceDbcDeleteSocket"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 4, "offset": 24, "next": [{"match": {"value": 604242736}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 52, "offset": 84, "next": [], "symbols": [{"name": "scePad2DeleteSocket", "hash": "6ba24c3057d1d426928632c828b87c35afe0f608", "variant": 3608513982, "library": "libpad2"}]}}], "symbols": []}}, {"match": {"value": 604242740}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 52, "offset": 84, "next": [], "symbols": [{"name": "scePad2DeleteSocket", "hash": "8829e81e49f8120dd40a9e5a8649f9292d850e17", "variant": 3608513982, "library": "libpad2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceDbcGetDepNumber"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 8, "offset": 28, "next": [{"match": {"value": 604242736}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 48, "offset": 84, "next": [], "symbols": [{"name": "scePad2LinkDriver", "hash": "5e24872113c509765edf547048bc0631ff665a3d", "variant": 2611528234, "library": "libpad2"}]}}], "symbols": []}}, {"match": {"valu)PS2SDB", 8192}, + std::string_view{R"PS2SDB(e": 604242740}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 48, "offset": 84, "next": [], "symbols": [{"name": "scePad2LinkDriver", "hash": "c7d72d222ae06bae5437c5431aa75746916e0198", "variant": 2611528234, "library": "libpad2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "scePad2GetSide"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 72, "offset": 92, "next": [], "symbols": [{"name": "scePad2CheckDma", "hash": "74fa9703cad9eade9d7c59927c1c4edc80f89121", "variant": 3781223812, "library": "libpad2"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceSSyn_log2lin"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 64, "offset": 84, "next": [], "symbols": [{"name": "sceSynthesizerCent2PhaseInc", "hash": "ed3bebe2d285fadb3bb421846facb1cb88a16988", "variant": 3618604953, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceSdRemoteInit"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 8, "offset": 28, "next": [{"match": {"value": 3753836560}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 3752853504}, "child": {"skip": 8, "offset": 44, "next": [], "symbols": [{"name": "sceSkSsInit", "hash": "24fecf03b10c2bf49040aabf05b2a480561dc02f", "variant": 3109815970, "library": "libsk"}]}}], "symbols": []}}, {"match": {"value": 4227117}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 604241921}, "child": {"skip": 96, "offset": 132, "next": [], "symbols": [{"name": "sceSkSsInit", "hash": "e77f54253206ecf7cf3eda5b1e863f7c2c377121", "variant": 1829388448, "library": "libsk"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceMcFatReadFatData"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 12615725}, "child": {"skip": 48, "offset": 68, "next": [], "symbols": [{"name": "_sceMcFatGetNextClust", "hash": "436709ff111b006c0b964d8087a89a781b96647f", "variant": 2179675078, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceNetcnfifSetup"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 0}, "child": {"skip": 44, "offset": 64, "next": [], "symbols": [{"name": "sceNetcnfifInit", "hash": "fab141812ebd652c2fa591d91e0683a1186bcd30", "variant": 3480113223, "library": "netcnfif"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceNetcnfifInit"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 36, "offset": 64, "next": [], "symbols": [{"name": "sceNetcnfifAllocWorkarea", "hash": "f35b25379e11cb5bf56fb33b8f51deb92f13d923", "variant": 3911245372, "library": "netcnfif"}]}}], "symbols": []}}, {"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 48, "offset": 76, "next": [], "symbols": [{"name": "sceNetcnfifSetEnv", "hash": "ad6844b912cda81dd730fc28b83adfa40f07790e", "variant": 139632223, "library": "netcnfif"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceNetcnfifFreeWorkarea"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 0}, "child": {"skip": 40, "offset": 60, "next": [], "symbols": [{"name": "sceNetcnfifTerm", "hash": "f6cb99035a555a178fc5c36b6992205e0e08838d", "variant": 2386333942, "library": "netcnfif"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceEENetNotifyEEDriverIsTerminated"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 604241921}, "child": {"skip": 88, "offset": 108, "next": [], "symbols": [{"name": "sceEENetDeviceSMAPUnreg", "hash": "265873a87e8f3cb4b554fb751012c23c3af97517", "variant": 2888614584, "library": "ent_smap"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "smap_set_media"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 44, "offset": 64, "next": [], "symbols": [{"name": "smap_init", "hash": "104217bcb409b4f6ae1abfe5dbeb3a6b736d2dc5", "variant": 3529408068, "library": "ent_smap"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__sceEENetpffinddomain"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 10518573}, "child": {"skip": 88, "offset": 108, "next": [], "symbols": [{"name": "__sceEENetpffindtype", "hash": "0e3248cabc274731a1208f988ac8b962f2a4b83c", "variant": 2972203605, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__sceEENetuser_mem_func_term"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1007681536, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 40, "offset": 60, "next": [], "symbols": [{"name": "__sceEENeteenet_malloc_term", "hash": "83d90b2ccc12dc6ef16e237b81e76390a62a5af2", "variant": 1391151985, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__sceEENetsbflush"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 24, "offset": 44, "next": [], "symbols": [{"name": "__sceEENetsbrelease", "hash": "5cb6e9ac7636a071b6cbb46b9bcd0bc925a23ef5", "variant": 4269213425, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__sceEENetspllock"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 100, "offset": 128, "next": [], "symbols": [{"name": "__sceEENetif_deactivate", "hash": "ad5911154654587fb1f3715913b48d85d2fe59c3", "variant": 207638215, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2516779048}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4202541}, "child": {"skip": 24, "offset": 52, "next": [], "symbols": [{"name": "tcp_reass_unlock", "hash": "3f0d428e856fcb1b87c299bb9bb0a03c90eca5ff", "variant": 3675936599, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__sceEENetifa_ifwithaddr"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 56, "offset": 76, "next": [], "symbols": [{"name": "__sceEENetifa_ifwithladdr", "hash": "4ccfbc3997659fda56ebb31ad207f2168a4c2b60", "variant": 3730566785, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__sceEENetrandom"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 12615725}, "child": {"skip": 128, "offset": 148, "next": [], "symbols": [{"name": "__sceEENettcp_new_iss", "hash": "c4b4214c353a0ef9f4218e1f9298a0911ae4ff71", "variant": 2038153183, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__sceEENet)PS2SDB", 8192}, + std::string_view{R"PS2SDB(thread_busycount"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 0}, "child": {"skip": 124, "offset": 144, "next": [], "symbols": [{"name": "sceEENetTerm", "hash": "88f0fe0f893e47c1fd6891dc2579ea5f2b1a9da7", "variant": 1521848501, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "WaitSema"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 20, "offset": 40, "next": [], "symbols": [{"name": "wait_delete_semafore", "hash": "a783a097dcfe6f63bc3367c4851277d9d2372d90", "variant": 500879608, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "ns_name_uncompress"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 14712877}, "child": {"skip": 44, "offset": 64, "next": [], "symbols": [{"name": "__sceEENetdn_expand", "hash": "6e68a151b040be380bdc640b0f61da36bc173d6e", "variant": 3715940449, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "GetThreadId"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 164, "offset": 184, "next": [], "symbols": [{"name": "__sceEENetres_isourserver", "hash": "3b7f8d8ba68ea607dcfa746aedb15fb730a86627", "variant": 3472304915, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "search_handler"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 10518573}, "child": {"skip": 48, "offset": 68, "next": [], "symbols": [{"name": "call_handler", "hash": "658e2b0c97ae4df4149584fd1b627a3f4cd34a51", "variant": 3341773169, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceEENetMalloc"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 604242012}, "child": {"skip": 116, "offset": 136, "next": [], "symbols": [{"name": "get_eenet_ifcnf", "hash": "cd501ba524440bdd0bfe8b0655daac6cb390d8ff", "variant": 2852684380, "library": "eenetctl"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceHTTPLibCleanUp"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 140, "offset": 160, "next": [], "symbols": [{"name": "sceHTTPDestroy", "hash": "b68babf22cd93484c53a74be3bf73a83d187df2c", "variant": 4128987434, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "url_encoded_len"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 180, "offset": 200, "next": [], "symbols": [{"name": "sceURLEscape", "hash": "8e2f322b7d17fb04d2869a3d536995ee46d3b077", "variant": 2137308568, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "url_decoded_len"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 256, "offset": 276, "next": [], "symbols": [{"name": "sceURLUnescape", "hash": "77e5fcc211932f866ade3536385709d373b8013f", "variant": 226622333, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "open_connection"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 36, "offset": 56, "next": [], "symbols": [{"name": "open_thread", "hash": "78f58e6a094e966557d018a54f1a2e3a925eb7fa", "variant": 2425855130, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceHTTPLibCleanUpThreads"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 68, "offset": 88, "next": [], "symbols": [{"name": "sceHTTPLibCleanUp", "hash": "ad0707d95267c42fc3b878a12d7de771a61de2f6", "variant": 919873256, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "R_malloc"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 604242192}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4227117}, "child": {"skip": 44, "offset": 68, "next": [], "symbols": [{"name": "BN_CTX_new", "hash": "a40adc4da99058edfa9c005577afc9011a8128d8", "variant": 1234759641, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604242008}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4227117}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 301989894}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4141}, "child": {"skip": 36, "offset": 68, "next": [], "symbols": [{"name": "BN_MONT_CTX_new", "hash": "e887e8a36463507f394261cb2af52142dd0812de", "variant": 4234066448, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 301989927}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 33562669}, "child": {"skip": 172, "offset": 204, "next": [], "symbols": [{"name": "HMAC_new", "hash": "97d770ae2b94f694556af3f1d8408fddd91d6759", "variant": 3274340735, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604242016}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4227117}, "child": {"skip": 72, "offset": 96, "next": [], "symbols": [{"name": "EVP_ENCODE_CTX_new", "hash": "5c52da1794ed6349e19d61cab09984d9e1ce309e", "variant": 1904565163, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604242064}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4227117}, "child": {"skip": 104, "offset": 128, "next": [], "symbols": [{"name": "EVP_CIPHER_CTX_new", "hash": "bfbf5c67ed94b89032b35eb456e7494a412b67d0", "variant": 3225475919, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604241936}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4227117}, "child": {"skip": 92, "offset": 116, "next": [], "symbols": [{"name": "EVP_MD_CTX_new", "hash": "8f9919f14f4afb70d3e58ac871c2c9c05e20fa54", "variant": 3279501319, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604241944}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4227117}, "child": {"skip": 56, "offset": 80, "next": [], "symbols": [{"name": "R_EITEM_new", "hash": "eddef79a44e9469708fdd959a4fcf304662b0721", "variant": 2492050028, "library": "libhttps"}, {"name": "R_EITEMS_new", "hash": "eddef79a44e9469708fdd959a4fcf304662b0721", "variant": 2492050028, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604242032}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4227117}, "child": {"skip": 88, "offset": 112, "next": [], "symbols": [{"name": "ssl_cert_new", "hash": "395542d24b3883a347a49df24f1a1cb0e8c5d412", "variant": 1904565163, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604242128}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4227117}, "child": {"skip": 124, "offset": 148, "next": [], "symbols": [{"name": "SSL_SESSION_new", "hash": "59f9ba8dc5659c13d1f096f5d82ff966c951d041", "variant": 3013288462, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604241972}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4227117}, "child": {"skip": 52, "offset": 76, "next": [], "symbols": [{"name": "X509_STORE_CTX_new", "hash": "b724b1f562add465a74bcd5a843a316c28b13bbd", "variant": 3127884845, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "BN_new"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 40, "offset": 60, "next": [], "symbols": [{"name": "BN_dup", "hash": "9e61b284131099703852765a8b2860cf06bc57ae", "variant": 3280031346, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "BUF_MEM_new"}}, "child": {"skip": 0, "offset": 16, "next": [{"m)PS2SDB", 8192}, + std::string_view{R"PS2SDB(atch": {"value": 8421421}, "child": {"skip": 56, "offset": 76, "next": [], "symbols": [{"name": "mem_new", "hash": "513d554d37e82985ecc3ac9a9f5f575dd3a002f6", "variant": 2973701250, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "R_rand_get_default"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 10518573}, "child": {"skip": 36, "offset": 56, "next": [], "symbols": [{"name": "crypto_sslc_random_seed", "hash": "2b85c9a73b8dfeaf0cedf476939a25221ae2a6a7", "variant": 2662249708, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "crypto_sslc_cipher_ctx_init"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4206637}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 348127243}, "child": {"skip": 60, "offset": 88, "next": [], "symbols": [{"name": "crypto_sslc_3des_ctx_init", "hash": "79e6fa59b7fe57c00b67707e1675ffdd11f8ea09", "variant": 2493581332, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 4204589}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 346030090}, "child": {"skip": 56, "offset": 84, "next": [], "symbols": [{"name": "crypto_sslc_des_ctx_init", "hash": "d84a9f6d7a86746ed9008a90f9eeedfdbe72c8f1", "variant": 2493581332, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "PK_CTX_new"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 32, "offset": 52, "next": [], "symbols": [{"name": "crypto_sslc_dh_ctx_init", "hash": "cc2522683492f63de559911015e9fe3a9c475879", "variant": 3424221878, "library": "libhttps"}, {"name": "crypto_sslc_rsa_ctx_init", "hash": "cc2522683492f63de559911015e9fe3a9c475879", "variant": 3424221878, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "get_common_global"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2353135656}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 339738632}, "child": {"skip": 56, "offset": 84, "next": [], "symbols": [{"name": "DSA_size", "hash": "75d833caad5fbf5c24512f03deee4f4d505a7d80", "variant": 684913118, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2353135652}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 339738633}, "child": {"skip": 60, "offset": 88, "next": [], "symbols": [{"name": "DSA_free", "hash": "824537ae1dda1a7e8ecff40801ff03894a041b67", "variant": 3539519286, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2353135672}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 339738632}, "child": {"skip": 56, "offset": 84, "next": [], "symbols": [{"name": "DSA_params_dup", "hash": "01cf7dfa63f6a755dfe927ad514280190a2582ca", "variant": 684913118, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2890924072}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 3753836560}, "child": {"skip": 12, "offset": 40, "next": [], "symbols": [{"name": "DSA_set_default_method_size_cb", "hash": "36aaea281f3b7b3d90878174a2e854a846fc8560", "variant": 3938070263, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2890924080}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 3753836560}, "child": {"skip": 12, "offset": 40, "next": [], "symbols": [{"name": "DSA_set_default_method_sign_cb", "hash": "6e4ecf41fb7e21fd6fb41a59467b5f4486db5bbe", "variant": 3938070263, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2890924076}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 3753836560}, "child": {"skip": 12, "offset": 40, "next": [], "symbols": [{"name": "DSA_set_default_method_setup_cb", "hash": "e836dcac2e6646255a8ec471243065a9ab909e8c", "variant": 3938070263, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2890924084}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 3753836560}, "child": {"skip": 12, "offset": 40, "next": [], "symbols": [{"name": "DSA_set_default_method_verify_cb", "hash": "80c19723c160992c86ca0fd64cd688857446e9b7", "variant": 3938070263, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2890924088}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 3753836560}, "child": {"skip": 12, "offset": 40, "next": [], "symbols": [{"name": "DSA_set_default_method_p_dup_cb", "hash": "6e96df5140218fface938f85f9aee282c9efce52", "variant": 3938070263, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "EVP_CIPHER_CTX_cleanup"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 40, "offset": 60, "next": [], "symbols": [{"name": "EVP_CIPHER_CTX_free", "hash": "93f914aa09b0f19abe409a834ad8b56de4f264ea", "variant": 3086053337, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "OP_all_funcs"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 24, "offset": 44, "next": [], "symbols": [{"name": "OP_CTX_init", "hash": "47fd2dc4829f9344b44a60ad027ca3af6ab31b7a", "variant": 1338616680, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "OP_read_funcs"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 24, "offset": 44, "next": [], "symbols": [{"name": "OP_CTX_init_read", "hash": "47fd2dc4829f9344b44a60ad027ca3af6ab31b7a", "variant": 3528155323, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "ssl3_num_ciphers"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "ssl2_num_ciphers"}}, "child": {"skip": 24, "offset": 48, "next": [], "symbols": [{"name": "ssl23_num_ciphers", "hash": "66d514c11d03734eb33852143973f3b6fef8f0fe", "variant": 1164021425, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 8421421}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4200493}, "child": {"skip": 52, "offset": 76, "next": [], "symbols": [{"name": "ssl23_get_cipher", "hash": "aa4030e28735eb42720ae448dd35c4ef2e16f453", "variant": 3030852166, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "ssl3_cleanup_key_block"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 84, "offset": 104, "next": [], "symbols": [{"name": "ssl3_tmp_free", "hash": "aee22856ab904d668bf74fb81ca78e106f9b70f1", "variant": 3266937433, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "EVP_des_cbc"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1007681536, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 232, "offset": 252, "next": [], "symbols": [{"name": "SSL_library_evp_setup", "hash": "980a5e4b218d1e990251ef81d36a9b2290f386f6", "variant": 3567534510, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "SSL_state"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 44, "offset": 64, "next": [{"match": {"value": 2355232784}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 4257801}, "child": {"skip": 20, "offset": 92, "next": [], "symbols": [{"name": "SSL_accept", "hash": "013cf710ccbbed6220fa3697a3c821f977fcdcab", "variant": 2711610110, "library":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2355232788}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 4257801}, "child": {"skip": 20, "offset": 92, "next": [], "symbols": [{"name": "SSL_connect", "hash": "224561f1a7d6ebaa960b2a6e47219c4ce476486e", "variant": 2711610110, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "ssl2_read"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 60, "offset": 80, "next": [], "symbols": [{"name": "ssl2_peek", "hash": "881248a40842a053d7a8ce5091c7e0a3690fc7ef", "variant": 3489330868, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sk_clear"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 20, "offset": 40, "next": [], "symbols": [{"name": "sk_pop_free", "hash": "a783a097dcfe6f63bc3367c4851277d9d2372d90", "variant": 905012807, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "ssl3_new"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 48, "offset": 68, "next": [], "symbols": [{"name": "tls1_new", "hash": "0a9383fb697a7dbd78e451f70f20f987cb594fcc", "variant": 2474744705, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "ssl3_clear"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 24, "offset": 44, "next": [], "symbols": [{"name": "tls1_clear", "hash": "d00e8e1ee67cd158ad48c81fc32c5dc3d42bf674", "variant": 1548473451, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "X509_LOOKUP_file"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 124, "offset": 144, "next": [], "symbols": [{"name": "X509_STORE_set_default_paths", "hash": "be04d8e814f3fb245c3c58eb110cb07109e714dd", "variant": 2266315084, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceEENetShutdown"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 32, "offset": 52, "next": [], "symbols": [{"name": "sceNetGlueShutdown", "hash": "8c2ea31d5a0e571be9d8ec63c37a3d4bd0facd20", "variant": 767900264, "library": "netglue_eenet"}]}}], "symbols": []}}, {"match": {"value": 8421421}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "chaMemFree"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2382626824}, "child": {"skip": 28, "offset": 52, "next": [], "symbols": [{"name": "sceDevConsClose", "hash": "cb9ac19d0c46b28959296fc155ef8cb24147062c", "variant": 414186008, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "frombcd"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2449735687}, "child": {"skip": 80, "offset": 104, "next": [], "symbols": [{"name": "convertfrombcd", "hash": "aea6a9da32122bca198c22af3582e35e882dd8cc", "variant": 2295766615, "library": "libscf"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "tobcd"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2449735687}, "child": {"skip": 80, "offset": 104, "next": [], "symbols": [{"name": "converttobcd", "hash": "aea6a9da32122bca198c22af3582e35e882dd8cc", "variant": 1829214517, "library": "libscf"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceEENetMalloc"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2382626840}, "child": {"skip": 76, "offset": 100, "next": [], "symbols": [{"name": "bpf_allocbufs", "hash": "102d281813824f4808d3474fc369a4cde698d5e3", "variant": 1946438016, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "SSL_read"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2382627184}, "child": {"skip": 36, "offset": 60, "next": [], "symbols": [{"name": "sceHTTPSRecv", "hash": "2679c2a2d587f7ffb0139124979c96ccdbde1b89", "variant": 213708456, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "BUF_MEM_free"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2382626828}, "child": {"skip": 36, "offset": 60, "next": [], "symbols": [{"name": "X509_NAME_free", "hash": "349574f35d6419838f7cae4695656af115f30f6b", "variant": 1197813753, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "BIO_get_retry_flags"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2382626852}, "child": {"skip": 40, "offset": 64, "next": [], "symbols": [{"name": "BIO_copy_next_retry", "hash": "a9868addb61ab16684cf881044b9e23b70ee5713", "variant": 3212310124, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "BN_MONT_CTX_free"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2382626832}, "child": {"skip": 68, "offset": 92, "next": [], "symbols": [{"name": "bn_mont_ctx_free_word", "hash": "06110280b0624935a8748cf770675d53dd1d9be7", "variant": 3200800897, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "EVP_MD_CTX_init"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2382626820}, "child": {"skip": 44, "offset": 68, "next": [], "symbols": [{"name": "HMAC_cleanup", "hash": "5f0f3dffaaeb87ab3cb9be2b65c4dd6d7f95e5cd", "variant": 2901566411, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2382692368}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceDevConsGetc"}}, "child": {"skip": 92, "offset": 116, "next": [], "symbols": [{"name": "sceDevConsGet", "hash": "816b447fb470ac13b2f9bf0268cef52e4b905373", "variant": 3015203598, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 2382495828}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1413480454}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2382626900}, "child": {"skip": 44, "offset": 72, "next": [{"match": {"value": 811728928}, "child": {"skip": 0, "offset": 76, "next": [{"match": {"value": 339738631}, "child": {"skip": 300, "offset": 380, "next": [], "symbols": [{"name": "__srefill", "hash": "8ddbc0e88176c0fdab249b55a6b9a585e4b26461", "variant": 2375286094, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 811728904}, "child": {"skip": 0, "offset": 76, "next": [{"match": {"value": 1413480474}, "child": {"skip": 192, "offset": 272, "next": [], "symbols": [{"name": "__swsetup", "hash": "91708d104d85ab53ab6530439c77b2df932d8224", "variant": 2536394259, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2353267080}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 276824075}, "child": {"skip": 60, "offset": 88, "next": [], "symbols": [{"name": "ssl3_cleanup_key_block", "hash": "41742e4ca741a3cc5ea7272ef39b81b014587b80", "variant": 1814045356, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2382561500}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2353266936}, "child": {"skip": 60, "offset": 88, "next": [], "symbols": [{"name": "ssl3_init_finished_mac", "hash": "c559a1d07912a6df54b655e6bb5a852825a5a15d", "variant": 463698620, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2382561364}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1415577606}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: 2355232824}, "child": {"skip": 24, "offset": 52, "next": [{"match": {"value": 2516779020}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__sinit"}}, "child": {"skip": 8, "offset": 68, "next": [{"match": {"value": 811728928}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 339738631}, "child": {"skip": 300, "offset": 376, "next": [], "symbols": [{"name": "__srefill", "hash": "0163531c0a1f44196d6ea296c4840f6a5cdf1c5d", "variant": 3054594522, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 811728904}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 1413480474}, "child": {"skip": 192, "offset": 268, "next": [], "symbols": [{"name": "__swsetup", "hash": "54de6b680b5e8993f7babc9e8fbaca1e0e27d03e", "variant": 1366381928, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2382495784}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__sinit"}}, "child": {"skip": 192, "offset": 252, "next": [], "symbols": [{"name": "ftell", "hash": "3398788bafaa7bc9986a187faacd36850d51f0d2", "variant": 1027956028, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2355233000}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 14825514}, "child": {"skip": 240, "offset": 268, "next": [], "symbols": [{"name": "ssl3_write_pending", "hash": "349f4fac71885f02194d7c8fd03ba4da6ca0af44", "variant": 2386970460, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2382496212}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 339738642}, "child": {"skip": 48, "offset": 72, "next": [{"match": {"value": 608370684}, "child": {"skip": 0, "offset": 76, "next": [{"match": {"value": 0}, "child": {"skip": 32, "offset": 112, "next": [], "symbols": [{"name": "_init_signal_r", "hash": "3d5aa63d9f32807d67d65d6a1c088d8276bf0be9", "variant": 609332376, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 0}, "child": {"skip": 0, "offset": 76, "next": [{"match": {"value": 0}, "child": {"skip": 32, "offset": 112, "next": [], "symbols": [{"name": "_init_signal_r", "hash": "e39b9e7610e3006c31c6ccbc0f3e14183e469862", "variant": 609332376, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2382496032}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 272629766}, "child": {"skip": 100, "offset": 124, "next": [], "symbols": [{"name": "_lastFrame", "hash": "a9024d406702fea10c21b84380d8639f95e5a618", "variant": 1469900898, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2382496056}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 272629766}, "child": {"skip": 100, "offset": 124, "next": [], "symbols": [{"name": "_lastFrame", "hash": "c8c27e53f3a4d969ef723fbcebd278de16658aeb", "variant": 1469900898, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2516713484}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 272629764}, "child": {"skip": 136, "offset": 160, "next": [], "symbols": [{"name": "sceSynthesizerLfoProc", "hash": "3092f878ecdee40e06724a73ce6a7ebd24b178e8", "variant": 0, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 2449604675}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1413480456}, "child": {"skip": 68, "offset": 92, "next": [], "symbols": [{"name": "sceSynthesizerAssignAllNoteOff", "hash": "dade7587d2bc5ad89a37fabbb97222082287e609", "variant": 1934123676, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 301989901}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 604166379}, "child": {"skip": 64, "offset": 88, "next": [], "symbols": [{"name": "sceAtokGetCandidateListSize", "hash": "d5f6e0ecf108f697a5c7b85c5542826b73909d87", "variant": 1355127102, "library": "libatok"}]}}], "symbols": []}}, {"match": {"value": 2248409088}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 276824070}, "child": {"skip": 36, "offset": 60, "next": [], "symbols": [{"name": "__sceEENetselwakeup", "hash": "fa6a38f91473b6573fa79e99393a806a13032bfd", "variant": 3026185453, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2382495752}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 339738656}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 3753836560}, "child": {"skip": 136, "offset": 164, "next": [], "symbols": [{"name": "__sceEENetsofree", "hash": "12b6acff807e5f5b585fbfd1344e2d598c741ee3", "variant": 2358001071, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4202541}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__sceEENetsofree"}}, "child": {"skip": 52, "offset": 80, "next": [], "symbols": [{"name": "__sceEENetraw_detach", "hash": "fcee8f49f9c33d8f5db938c2394fe47d7323747a", "variant": 620818939, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 637796406}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2516713478}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 809697275}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 876740664}, "child": {"skip": 72, "offset": 104, "next": [], "symbols": [{"name": "__sceEENetsoisdisconnecting", "hash": "e158308e203501de57fbd3a7098e955d3ca6a0f6", "variant": 3712553518, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 809697265}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 876742704}, "child": {"skip": 72, "offset": 104, "next": [], "symbols": [{"name": "__sceEENetsoisdisconnected", "hash": "c76d0b0880d7faa65cd940d37e80ac3052286a3d", "variant": 3712553518, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2516713520}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 809631745}, "child": {"skip": 108, "offset": 132, "next": [], "symbols": [{"name": "__sceEENetsbflush", "hash": "b8b2ad2d1cb5d13a0bffa46f1f2e1c2f1201948a", "variant": 3197775649, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2382626820}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1350565902}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2382626856}, "child": {"skip": 88, "offset": 116, "next": [], "symbols": [{"name": "bpf_freed", "hash": "b73a86349ef6e741243fbeccda89947b62e1ba80", "variant": 982236184, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 1350565892}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2382626824}, "child": {"skip": 84, "offset": 112, "next": [], "symbols": [{"name": "HMAC_free", "hash": "70259931ea2e1528363ea6f0ebc9c00628b76918", "variant": 43214010, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2382515772}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 675414019}, "child": {"skip": 140, "offset": 164, "next": [], "symbols": [{"name": "pppoe_send_padt", "hash": "524d6a7568a9b49f638947581825907e1e5bb20a", "variant": 372735947, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2382627036}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 0}, "child": {"skip": 176, "offset": 200, "next": [], "symbols": [{"name": "__sceEENetsppp_flush", "hash": "c52d45359a79f3f5193b876d5dc282526e6ab46d", "variant": 7216259, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2382496096}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 742522884}, "child": {"skip": 56, "offset": 80, "next": [], "symbols": [{"name": "sppp_lcp_check_and_close", "hash": "47124349c0278da600db6fe050ccf0b61e6ca11e", "variant": 3010101337, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2382561280}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 274726921}, "child": {"skip": 64, "offset": 88, "next": [], "symbols": [{"name": "__sceE)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ENetrtalloc", "hash": "154d6d1b2896b49cc787a2df9a31f4397825586a", "variant": 3328039268, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2382626988}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 276824088}, "child": {"skip": 108, "offset": 132, "next": [], "symbols": [{"name": "__sceEENetrt_timer_remove_all", "hash": "370b2829c0b28dfea1d20766d5e08caa6a518edb", "variant": 1294928358, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2382626828}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 746717192}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1413480475}, "child": {"skip": 124, "offset": 152, "next": [], "symbols": [{"name": "__sceEENetrevarpinput", "hash": "5df8e487dcabc24dda23a1d6de4fb74c1164f8be", "variant": 2361126706, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 1350565895}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 33562669}, "child": {"skip": 40, "offset": 68, "next": [], "symbols": [{"name": "EVP_MD_CTX_free", "hash": "024e209d2d167a4c32f704037cad3de6504cb2b1", "variant": 3135502809, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2382626848}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 276824069}, "child": {"skip": 32, "offset": 56, "next": [], "symbols": [{"name": "__sceEENetin_rtchange", "hash": "2034e5ea8932d98001c7ff725eb6d8f09cd59573", "variant": 2312250730, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2382626864}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 276824068}, "child": {"skip": 292, "offset": 316, "next": [], "symbols": [{"name": "__sceEENettcp_rmx_rtt", "hash": "19f30f0e741546390593dd61e61ad18afd967dd6", "variant": 836449826, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2248343576}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 744620038}, "child": {"skip": 180, "offset": 204, "next": [], "symbols": [{"name": "__sceEENettcp_usrclosed", "hash": "b06c60ab6dbf72e6a2f5b27350f2dcd0478d0c3e", "variant": 1659633145, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2382495772}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2755985464}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2382626844}, "child": {"skip": 72, "offset": 100, "next": [], "symbols": [{"name": "udp_notify", "hash": "b7c474093ff56229c7cd15ca98839f05d5020f84", "variant": 155739418, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 1346371588}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 33562669}, "child": {"skip": 28, "offset": 56, "next": [], "symbols": [{"name": "X509_STORE_CTX_free", "hash": "3f472bc78a4067dd1502dbb58294259b79fbc07d", "variant": 1586731914, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2382495832}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2353266688}, "child": {"skip": 68, "offset": 92, "next": [], "symbols": [{"name": "__sceEENetres_close", "hash": "1a9f3e02b8613e390b41ede0e75d44be0b160231", "variant": 2195677675, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2919235816}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2919235824}, "child": {"skip": 88, "offset": 112, "next": [], "symbols": [{"name": "cleanup_response", "hash": "27d1c19d14b4b8438e8346060898bcca1b3ee3e0", "variant": 2004323937, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2382495804}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 339738639}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4141}, "child": {"skip": 72, "offset": 100, "next": [], "symbols": [{"name": "sceHTTPAbort", "hash": "d1d81980475469fbfdf1c066004ad198ef01e30a", "variant": 800134791, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2382561348}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2353332228}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2382757952}, "child": {"skip": 84, "offset": 116, "next": [], "symbols": [{"name": "ssl2_do_write", "hash": "fa00410cd5413812f29704107c36227eada9ce1e", "variant": 3539729459, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2353397764}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2382823488}, "child": {"skip": 84, "offset": 116, "next": [], "symbols": [{"name": "ssl3_do_write", "hash": "59927b5d0e4805dd1640b5396156aaae1b97712e", "variant": 913821296, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2382495860}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 272629764}, "child": {"skip": 56, "offset": 80, "next": [], "symbols": [{"name": "sceHTTPLibRestartThreads", "hash": "219a5c9cb8a6959864e493c66ca953d17b322dda", "variant": 3787621381, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2382627184}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1350565895}, "child": {"skip": 68, "offset": 92, "next": [], "symbols": [{"name": "sceHTTPSClose", "hash": "f59ab0048c41910ac9a36c1013f47e535240c456", "variant": 1765066152, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 301989903}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4141}, "child": {"skip": 72, "offset": 96, "next": [], "symbols": [{"name": "file_free", "hash": "8ee5fece7214e7f4c0020d747f208544d2bd9e7f", "variant": 1128604218, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 301989900}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4141}, "child": {"skip": 60, "offset": 84, "next": [], "symbols": [{"name": "scefd_free", "hash": "1e23f33f9c7c9d608e773de41b4be212298fb5eb", "variant": 2963770997, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 301989902}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4141}, "child": {"skip": 68, "offset": 92, "next": [], "symbols": [{"name": "mem_free", "hash": "4d126504274115fe98c91c6921317111fc94a534", "variant": 991014563, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 301989904}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4141}, "child": {"skip": 76, "offset": 100, "next": [], "symbols": [{"name": "sock_free", "hash": "e549c05c7fec14eca8adfd457b9c9243b5fc5f26", "variant": 85649793, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2382626844}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 276824068}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "EVP_CIPHER_CTX_free"}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 0}, "child": {"skip": 100, "offset": 136, "next": [], "symbols": [{"name": "crypto_sslc_cipher_ctx_init", "hash": "39c660afd44b71c813bd7527f6e0553cf393a2c4", "variant": 1403751844, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "HMAC_free"}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 0}, "child": {"skip": 80, "offset": 116, "next": [], "symbols": [{"name": "crypto_sslc_digest_ctx_init", "hash": "133861cc2b3b76223dc6ded86b8c870903b0f7e3", "variant": 3249315067, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 276824069}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 3753836560}, "child": {"skip": 32, "offset": 60, "next": [], "symbols": [{"name": "crypto_sslc_cipher_ctx_final", "hash": "39d2653b77a6918e655f476ff3e1592116896635", "variant": 1795559653, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2382561308}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 274726920}, "child": {"skip": 48, "offset": 72, "next": [], "symbols": [{"name": "crypto_sslc_digest_ctx_final", "hash": "29e2004ce039a5037921dad721af7487592b5633", "variant": 1242412)PS2SDB", 8192}, + std::string_view{R"PS2SDB(190, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2382561300}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 811729152}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 339738633}, "child": {"skip": 64, "offset": 92, "next": [], "symbols": [{"name": "DH_generate_key", "hash": "f7c226d9cc7dcd13a5ab7f1ca2840aba776d7d2e", "variant": 3563307116, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 811728898}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 272629768}, "child": {"skip": 68, "offset": 96, "next": [], "symbols": [{"name": "R_EITEM_free", "hash": "71a5b3b73c5a3ad0a184019f917f63a47bfa9131", "variant": 1283123627, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2382495744}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1346371591}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2382626936}, "child": {"skip": 88, "offset": 116, "next": [], "symbols": [{"name": "EVP_CIPHER_CTX_cleanup", "hash": "90fb7fce397d49217c4a7c40a303815368165071", "variant": 1883190078, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 1346371589}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2382626820}, "child": {"skip": 76, "offset": 104, "next": [], "symbols": [{"name": "PK_CTX_free", "hash": "90e1abc6a15f5559bc99494236d5885e7c7334ce", "variant": 561724457, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2919235588}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2382561280}, "child": {"skip": 156, "offset": 180, "next": [], "symbols": [{"name": "EVP_MD_CTX_init", "hash": "fc6d95088410f4d39677cad427bb1ab22e2f7c9f", "variant": 1078888196, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2382561284}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2355232776}, "child": {"skip": 40, "offset": 64, "next": [], "symbols": [{"name": "cleanup3", "hash": "9f57d5874cd00bc9c32f77b41e2f6f509f8680a2", "variant": 2360804691, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2382561360}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2355232816}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1413480455}, "child": {"skip": 144, "offset": 172, "next": [], "symbols": [{"name": "ssl2_setup_buffers", "hash": "044a901aae9917193df2f91f7b1b84bbab154863", "variant": 3702728999, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2355232788}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 12726314}, "child": {"skip": 232, "offset": 260, "next": [], "symbols": [{"name": "write_pending", "hash": "6abd0871a85574fe8619b726fa5e04ef61c1a5a2", "variant": 1094427026, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2382626900}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2357330168}, "child": {"skip": 164, "offset": 188, "next": [], "symbols": [{"name": "ssl3_free", "hash": "7e60e3f0093f00f2f8f35c8f06b3f88b4c10cddc", "variant": 709212275, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2382626836}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 276824076}, "child": {"skip": 60, "offset": 84, "next": [], "symbols": [{"name": "ssl_free_wbio_buffer", "hash": "17edec8695d4c8b549127267b0a0d65a4a0e3c3f", "variant": 63016783, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 268435460}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 4, "offset": 24, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceSifExecRequest"}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 0}, "child": {"skip": 32, "offset": 64, "next": [], "symbols": [{"name": "sceSifRpcLoop", "hash": "eab52c2bf39512427ac2e965a89b9f536b366b93", "variant": 2954205478, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_flushBuf"}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 0}, "child": {"skip": 40, "offset": 72, "next": [], "symbols": [{"name": "_extrainfo", "hash": "d29fa74d8709055d7d2db0f91212ce0ef3691180", "variant": 2743736098, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10518573}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "iSignalSema"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2382636604}, "child": {"skip": 32, "offset": 56, "next": [], "symbols": [{"name": "smap_intr", "hash": "621d9dae788ab5656a63685ddfbb66aa631fa2a1", "variant": 132445729, "library": "ent_smap"}]}}], "symbols": []}}, {"match": {"value": 2382561280}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 811729152}, "child": {"skip": 132, "offset": 156, "next": [], "symbols": [{"name": "_sdrCB", "hash": "c00bbee077f63202404f25c39c1dd0e6c6dceaad", "variant": 119954071, "library": "libsdr"}]}}], "symbols": []}}, {"match": {"value": 2382495752}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 339738627}, "child": {"skip": 44, "offset": 68, "next": [], "symbols": [{"name": "__sprint", "hash": "cdf56bcf8994f7acda41e69eabca0120edaf6db6", "variant": 1707907200, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 2382692352}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2357329932}, "child": {"skip": 116, "offset": 140, "next": [], "symbols": [{"name": "getgeomptr", "hash": "26b0367ac994742472b0a306f664924f5550070f", "variant": 565783808, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 2382495788}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 809631745}, "child": {"skip": 92, "offset": 116, "next": [], "symbols": [{"name": "__sceEENetin_ifscrub", "hash": "03d493c3e59ddb985173de1b85b2a51feefe8ed5", "variant": 785105440, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 281018373}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 88, "offset": 108, "next": [], "symbols": [{"name": "__cplus_type_matcher", "hash": "118e89ad2217598a0193e7cbc27b8873ab01381c", "variant": 1120525114, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 279183366}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 32813}, "child": {"skip": 44, "offset": 64, "next": [], "symbols": [{"name": "__eq__C9type_infoRC9type_info", "hash": "1621c513208e2f89e51cd2adef24376b81576227", "variant": 3655932155, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 268435467}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1007681536, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 140, "offset": 160, "next": [], "symbols": [{"name": "sceNetcnfifSetup", "hash": "e08a29fc37344e283786bdad4a0fc1a923dfd070", "variant": 2396224626, "library": "netcnfif"}]}}], "symbols": []}}, {"match": {"value": 2357329940}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 406847497}, "child": {"skip": 68, "offset": 88, "next": [], "symbols": [{"name": "device_ready", "hash": "07e1075e456ab9eb79256ef9756112a4ea165c95", "variant": 165471193, "library": "ent_smap"}]}}], "symbols": []}}, {"match": {"value": 12615725}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2426535955}, "child": {"skip": 172, "offset": 192, "next": [], "symbols": [{"name": "__sceEENettcp_pulloutofband", "hash": "0ac2647fb5936f29774f46bba3a97dbda5aeb680", "variant": 2767358268, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 276824069}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 10518573}, "child": {"skip": 60, "offset": 80, "next": [], "symbols": [{"name": "sceEENetGetDNSAddr", "hash": "700e596989a15e8d954a7054ffc3863570635e8f", "variant": 2268000443, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 276824067}, "child": {"skip": 0, "offse)PS2SDB", 8192}, + std::string_view{R"PS2SDB(t": 16, "next": [{"match": {"value": 10518573}, "child": {"skip": 32, "offset": 52, "next": [], "symbols": [{"name": "R_remalloc", "hash": "368883bd5a0a38376445c3cd4c22e8faa9ccc310", "variant": 2346271373, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8421421}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289789960}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 12617773}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4290707472}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceVu0RotMatrixZ"}}, "child": {"skip": 52, "offset": 80, "next": [], "symbols": [{"name": "sceVu0RotMatrix", "hash": "cfaa994f6bf269171b2cea5c5d09e38d54b4047a", "variant": 3676706407, "library": "libvu0"}]}}], "symbols": []}}, {"match": {"value": 4289855504}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290707480}, "child": {"skip": 76, "offset": 104, "next": [{"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "_vfprintf_r"}}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 666697760}, "child": {"skip": 0, "offset": 112, "next": [], "symbols": [{"name": "vfprintf", "hash": "79dc19cff724e7f9fa294a9ff06446c2e03c8ad9", "variant": 2105722022, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "__svfscanf_r"}}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 666697760}, "child": {"skip": 0, "offset": 112, "next": [], "symbols": [{"name": "vfscanf", "hash": "79dc19cff724e7f9fa294a9ff06446c2e03c8ad9", "variant": 4251493010, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1056831}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 873562592}, "child": {"skip": 144, "offset": 168, "next": [], "symbols": [{"name": "__floatdidf", "hash": "a058a4d53dbfd2a2d0ee078c0453c3c56819ea1b", "variant": 2798121733, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 10520621}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4290707472}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2382561356}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 341835782}, "child": {"skip": 132, "offset": 164, "next": [], "symbols": [{"name": "_Balloc", "hash": "8c31a5c59891bf8f71e4115753a990573dd96c98", "variant": 2540683561, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 2357395532}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 341835783}, "child": {"skip": 140, "offset": 172, "next": [], "symbols": [{"name": "_Balloc", "hash": "05558e1d44d08c94ee7889317bea86014fc36209", "variant": 296358162, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855504}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 12619821}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4290707480}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2516713484}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 809632000}, "child": {"skip": 88, "offset": 128, "next": [], "symbols": [{"name": "__swrite", "hash": "b581a2918c0006e5cca12ef58fe50e3994f073b9", "variant": 2041832667, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 2491547660}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 809632000}, "child": {"skip": 88, "offset": 128, "next": [], "symbols": [{"name": "__swrite", "hash": "df67b07d26c1d7ac2e163d00e684c0f5049b136f", "variant": 2041832667, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 2382626900}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 343932932}, "child": {"skip": 68, "offset": 108, "next": [{"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "_vfprintf_r"}}, "child": {"skip": 0, "offset": 112, "next": [{"match": {"value": 666697760}, "child": {"skip": 0, "offset": 116, "next": [], "symbols": [{"name": "vfprintf", "hash": "1c9c7ce7320f821bded210486cab472e4c87afce", "variant": 4278808393, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "_vfiprintf_r"}}, "child": {"skip": 0, "offset": 112, "next": [{"match": {"value": 666697760}, "child": {"skip": 0, "offset": 116, "next": [], "symbols": [{"name": "vfiprintf", "hash": "1c9c7ce7320f821bded210486cab472e4c87afce", "variant": 2193395930, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 301989896}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4290707480}, "child": {"skip": 252, "offset": 284, "next": [], "symbols": [{"name": "_strtok", "hash": "c3b11956ea2210312715113fb4fa0647a477d802", "variant": 2288444832, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 771883136}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 272629765}, "child": {"skip": 16, "offset": 36, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 268435472}, "child": {"skip": 80, "offset": 124, "next": [], "symbols": [{"name": "iRotateThreadReadyQueue", "hash": "2c65274e5878e2b2a9c8072a0258e175b892a7d0", "variant": 3923721382, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 268435465}, "child": {"skip": 52, "offset": 96, "next": [], "symbols": [{"name": "iRotateThreadReadyQueue", "hash": "b98f05fd621ba20f416f37c19a1cef0141f17c08", "variant": 1408717155, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707472}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceRpcGetFPacket"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 10493997}, "child": {"skip": 72, "offset": 96, "next": [], "symbols": [{"name": "_request_rdata", "hash": "9e4804a899d9b18d84ab5156242e16200362e386", "variant": 1379105987, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceCdSync"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 604241921}, "child": {"skip": 36, "offset": 60, "next": [], "symbols": [{"name": "sceCdCallback", "hash": "9a5dd1a35c07367a1cd657d203feb85aeb1aa962", "variant": 1106325674, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "malloc"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 604241944}, "child": {"skip": 16, "offset": 40, "next": [{"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "__register_frame_info"}}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 666697760}, "child": {"skip": 0, "offset": 48, "next": [], "symbols": [{"name": "__register_frame", "hash": "f7b5652a5d631ec530c1148a1415a9bb46b50595", "variant": 3943832093, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "__register_frame_info_table"}}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 666697760}, "child": {"skip": 0, "offset": 48, "next": [], "symbols": [{"name": "__register_frame_table", "hash": "f7b5652a5d631ec530c1148a1415a9bb46b50595", "variant": 3064880617, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "setD4_CHCR"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 604241921}, "child": {"skip": 204, "offset": 228, "next": [], "symbols": [{"name": "sceIpuStopDMA", "hash": "05e6f975a28f5556ef0cdaa8942af59b14eb767a", "v)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ariant": 115729475, "library": "libipu"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_delete_packed"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 637796464}, "child": {"skip": 60, "offset": 84, "next": [], "symbols": [{"name": "sceHiGsCtxDelete", "hash": "45d94cedbf6c29d3279191c4e07e0e32157881a7", "variant": 2280586665, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "fillkmap"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 637796712}, "child": {"skip": 36, "offset": 60, "next": [], "symbols": [{"name": "_clr_drum_nrpn", "hash": "08796e14ac95d76702e1c673e20f86dadc81900c", "variant": 1607969178, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "R_malloc"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 604241944}, "child": {"skip": 76, "offset": 100, "next": [], "symbols": [{"name": "ASN1_STRING_type_new", "hash": "252644b0cdde35abf8d958fb519e265b4a97a793", "variant": 1038315624, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "BN_free"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 637796364}, "child": {"skip": 60, "offset": 84, "next": [], "symbols": [{"name": "BN_MONT_CTX_free", "hash": "11ced19edd07707f7143365f83a119d79d64c464", "variant": 1539397488, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "BER_ITEMS_SK_free"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 637796360}, "child": {"skip": 112, "offset": 136, "next": [], "symbols": [{"name": "OP_CTX_free", "hash": "9080965cb68103babcf11d82226fdc6ce61e1b40", "variant": 3523495297, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "SSL_feature_test"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 604241922}, "child": {"skip": 40, "offset": 64, "next": [], "symbols": [{"name": "SSL_EVP_PKEY_missing_parameters", "hash": "a3efa7550bce487d70df92c8b5bac5dd03ca0f8a", "variant": 671869983, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2919235584}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 637796364}, "child": {"skip": 44, "offset": 68, "next": [], "symbols": [{"name": "BN_MONT_CTX_init", "hash": "a9bc44516965c7eeaf3176373e7e9714ec7c32ea", "variant": 3219513674, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 3887333392}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1174430982}, "child": {"skip": 120, "offset": 140, "next": [], "symbols": [{"name": "ldexpf", "hash": "e6ec780f556269566b5c108741fecbd4389f22a3", "variant": 1390265195, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 872742848}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 271292}, "child": {"skip": 88, "offset": 108, "next": [], "symbols": [{"name": "_mprec_log10", "hash": "cf06eb72f0dddb36b36627e668c31a0e913cec50", "variant": 2297836909, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 369098759}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707472}, "child": {"skip": 20, "offset": 40, "next": [{"match": {"value": 604307764}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "frombcd"}}, "child": {"skip": 84, "offset": 132, "next": [], "symbols": [{"name": "convertfrombcd", "hash": "25755a7de8710ba3435f48b0f49cee1874c8968b", "variant": 2704488662, "library": "libscf"}]}}], "symbols": []}}, {"match": {"value": 604307762}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "frombcd"}}, "child": {"skip": 84, "offset": 132, "next": [], "symbols": [{"name": "convertfrombcd", "hash": "68ba9e7b27fbb7e8fbc2befeb7657152d3e4837e", "variant": 2704488662, "library": "libscf"}]}}], "symbols": []}}, {"match": {"value": 604307779}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "tobcd"}}, "child": {"skip": 84, "offset": 132, "next": [], "symbols": [{"name": "converttobcd", "hash": "0c5707124d5150ccf2135ecb68939497086eb107", "variant": 396148922, "library": "libscf"}]}}], "symbols": []}}, {"match": {"value": 604307777}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "tobcd"}}, "child": {"skip": 84, "offset": 132, "next": [], "symbols": [{"name": "converttobcd", "hash": "2af9daba436d0492e9d5e2a865f5abda1bfc7375", "variant": 396148922, "library": "libscf"}]}}], "symbols": []}}, {"match": {"value": 604307843}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 2449604611}, "child": {"skip": 60, "offset": 108, "next": [], "symbols": [{"name": "addhour", "hash": "b6f551122182c96b31fbdcd65c417d05b5a60862", "variant": 2693781100, "library": "libscf"}]}}], "symbols": []}}, {"match": {"value": 604307841}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 2449604611}, "child": {"skip": 60, "offset": 108, "next": [], "symbols": [{"name": "addhour", "hash": "e9b57dadafad25a00432d9a14265f66bcb2e586f", "variant": 2693781100, "library": "libscf"}]}}], "symbols": []}}, {"match": {"value": 604307856}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 2449604611}, "child": {"skip": 56, "offset": 104, "next": [], "symbols": [{"name": "subhour", "hash": "f5081f55c5b708174f35c65db7487951529de19a", "variant": 4177529506, "library": "libscf"}]}}], "symbols": []}}, {"match": {"value": 604307854}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 2449604611}, "child": {"skip": 56, "offset": 104, "next": [], "symbols": [{"name": "subhour", "hash": "811d4307d75823c700f1f10b2206b4f33eb45704", "variant": 4177529506, "library": "libscf"}]}}], "symbols": []}}, {"match": {"value": 604307902}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 33562669}, "child": {"skip": 20, "offset": 68, "next": [], "symbols": [{"name": "sceScfGetGMTfromRTC", "hash": "e55bb914405056dc9acd5f4f4383058533077d96", "variant": 1774309192, "library": "libscf"}]}}], "symbols": []}}, {"match": {"value": 604307900}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 33562669}, "child": {"skip": 20, "offset": 68, "next": [], "symbols": [{"name": "sceScfGetGMTfromRTC", "hash": "28a9d94780bfc228852970e35e3706e8bd124b43", "variant": 1774309192, "library": "libscf"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 369098757}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707472}, "child": {"skip": 72, "offset": 92, "next": [], "symbols": [{"name": "sceHiDMASet_BufferPtr", "hash": "fa2df7cb1611386fb512aadbcff716a345c32946", "variant": 2480798977, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 301989914}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707472}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1007091712, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 637796372}, "child": {"skip": 108, "offset": 136, "next": [], "symbols": [{"name": "X509_free", "hash": "de086930710d0e156e6538627deb39b689aabca4", "variant": 2053265350, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2382692352}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 278921236}, "child": {"skip": 112, "offset": 140, "next": [], "symbols": [{"name": "sceHiGsPackedDelete", "hash": "5fe2fe725f07871cf421d6bf06e0e7af41e5e0a5", "variant": 409749492, "library": "libhig"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 369098756}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707472}, "child": {"skip": 12, "offset": 32, "next": [{"match": {"value": 23)PS2SDB", 8192}, + std::string_view{R"PS2SDB(82495800}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 608370687}, "child": {"skip": 176, "offset": 216, "next": [], "symbols": [{"name": "__sceEENetrtfree", "hash": "48de63979b5c524186f041ab91ab40660ee5493a", "variant": 4116768225, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2382889012}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 604176404}, "child": {"skip": 76, "offset": 116, "next": [], "symbols": [{"name": "icmp_mtudisc_timeout", "hash": "836488e5b81f44c37b535b8cad31fc821122afc3", "variant": 1151035782, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 301989924}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707472}, "child": {"skip": 156, "offset": 176, "next": [], "symbols": [{"name": "dhclient_exit", "hash": "d4fc4a16957db64a5183dc4ced5a112e56b226f8", "variant": 3454430040, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 301989904}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707472}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "SSL_state"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 0}, "child": {"skip": 72, "offset": 100, "next": [], "symbols": [{"name": "SSL_shutdown", "hash": "098094d0e9d644bf341e113ebd7f465c21e01e78", "variant": 580944662, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2382626828}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 75628548}, "child": {"skip": 68, "offset": 96, "next": [], "symbols": [{"name": "pppoectl_exit", "hash": "26c8a28b6c32ed64865a8101481c2086a352cab2", "variant": 3617942121, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2382626832}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 75628548}, "child": {"skip": 68, "offset": 96, "next": [], "symbols": [{"name": "pppctl_exit", "hash": "bd71eb7365f2cabab1c553c06d2d958d0fd448cf", "variant": 3617942121, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2382626816}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 276824071}, "child": {"skip": 68, "offset": 96, "next": [], "symbols": [{"name": "BN_free", "hash": "b460cf465313999b1ffd3f524ac1315657069cbd", "variant": 1333580500, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 301989921}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707472}, "child": {"skip": 148, "offset": 168, "next": [], "symbols": [{"name": "sceHTTPFreeURI", "hash": "70f14724fcd5933c051e12fbcf696122ab394d60", "variant": 1868587585, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 301989922}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707472}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2382561300}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 811728900}, "child": {"skip": 140, "offset": 168, "next": [], "symbols": [{"name": "ASN1_OBJECT_free", "hash": "b46aef4343ee75d5c09499ea61c4c4130e5b181b", "variant": 1002918231, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2382626820}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 276824096}, "child": {"skip": 140, "offset": 168, "next": [], "symbols": [{"name": "ASN1_TYPE_component_free", "hash": "c5d7e2625c381c24d895431f464aa4c89cffd5b3", "variant": 561398320, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 301989899}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707472}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2382626824}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1350565892}, "child": {"skip": 48, "offset": 76, "next": [], "symbols": [{"name": "ASN1_STRING_free", "hash": "3e8b20fc8fb2ad73d5f8d74afa6875a651c9d923", "variant": 3577199680, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2382626820}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1350565892}, "child": {"skip": 48, "offset": 76, "next": [], "symbols": [{"name": "sk_free", "hash": "d7dfd719c5a125f992651ebcff02496108e0756e", "variant": 3577199680, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 301989898}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707472}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "ASN1_OBJECT_free"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2382626820}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "ASN1_STRING_free"}}, "child": {"skip": 40, "offset": 72, "next": [], "symbols": [{"name": "X509_NAME_ENTRY_free", "hash": "4dca9172a066179f8abce6a478d225dfefccd59e", "variant": 1598765526, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2382626816}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "ASN1_TYPE_free"}}, "child": {"skip": 40, "offset": 72, "next": [], "symbols": [{"name": "X509_ALGOR_free", "hash": "f0a688e4125882b0690a0877a403c8610ecbc3b8", "variant": 1634705642, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "X509_ALGOR_free"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2382626816}, "child": {"skip": 44, "offset": 72, "next": [], "symbols": [{"name": "X509_SIG_free", "hash": "f0a688e4125882b0690a0877a403c8610ecbc3b8", "variant": 703056238, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "ASN1_STRING_free"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2382626816}, "child": {"skip": 44, "offset": 72, "next": [], "symbols": [{"name": "X509_VAL_free", "hash": "f0a688e4125882b0690a0877a403c8610ecbc3b8", "variant": 3090769503, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 301989896}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707472}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "ASN1_TYPE_component_free"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 0}, "child": {"skip": 36, "offset": 64, "next": [], "symbols": [{"name": "ASN1_TYPE_free", "hash": "a76a19cb98a6a64d50ba7e8ee932137afc451a9a", "variant": 4161261052, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2382757888}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 415236101}, "child": {"skip": 36, "offset": 64, "next": [], "symbols": [{"name": "sk_zero", "hash": "a1eeaccab952b0ef370d9174c3db4626b4317506", "variant": 2004751375, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 369098755}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707472}, "child": {"skip": 108, "offset": 128, "next": [], "symbols": [{"name": "BIO_push", "hash": "eeafde44286ebd5b624e314b75d22d6b08f7ff92", "variant": 2418106992, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 301989902}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707472}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "ASN1_STRING_free"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2382626816}, "child": {"skip": 60, "offset": 88, "next": [], "symbols": [{"name": "X509_REVOKED_free", "hash": "de605de32447355b9b42e446adf52c0d13ffebdb", "variant": 214327302, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2382626820}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1350565895}, "child": {"skip": 60, "offset": 88, "next": [], "s)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ymbols": [{"name": "BUF_MEM_free", "hash": "f85a02128fb6841b6597d94b7de6771a4203a51c", "variant": 3405116260, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2382495752}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1346371591}, "child": {"skip": 60, "offset": 88, "next": [], "symbols": [{"name": "X509_LOOKUP_free", "hash": "3db4c08fa4c0e02d158d905ec050f56b9f48a0d5", "variant": 1486065751, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 301989913}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707472}, "child": {"skip": 112, "offset": 132, "next": [], "symbols": [{"name": "DH_free", "hash": "1e62b2b47fa83f39b4ad2abdaadbf035608f9986", "variant": 1162183818, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 301989943}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707472}, "child": {"skip": 232, "offset": 252, "next": [], "symbols": [{"name": "DSA_free_internal", "hash": "8969347bfec6402acc834edfa670bf181b28c68c", "variant": 3554501868, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 301989905}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707472}, "child": {"skip": 80, "offset": 100, "next": [], "symbols": [{"name": "EVP_PKEY_free", "hash": "ba7d39f0b8714a4acd71bb107b754affe7871f10", "variant": 444651912, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 301989900}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707472}, "child": {"skip": 60, "offset": 80, "next": [], "symbols": [{"name": "R_rand_free", "hash": "aa256c9b2bbf1e8e8b3a3b994aaf6113d08d768f", "variant": 2060805981, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 301989918}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707472}, "child": {"skip": 132, "offset": 152, "next": [], "symbols": [{"name": "RSA_free", "hash": "83a801b2fc79e5e36e0c7f1ad07f413b7b685bd8", "variant": 2842231671, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 301989901}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707472}, "child": {"skip": 68, "offset": 88, "next": [], "symbols": [{"name": "SSL_EVP_PKEY_size", "hash": "ed86f41253e9be7a732633d3596b226467de4b7e", "variant": 1546923010, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 301989916}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707472}, "child": {"skip": 124, "offset": 144, "next": [], "symbols": [{"name": "X509_CINF_free", "hash": "db67bbbf63eecc3facdd22f0b9b0612102d89f57", "variant": 3431913397, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 301989915}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707472}, "child": {"skip": 120, "offset": 140, "next": [], "symbols": [{"name": "X509_CRL_INFO_free", "hash": "d34c2d9d0b31e538ab726b45c4d92128f39ee651", "variant": 3471690319, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 301989909}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707472}, "child": {"skip": 96, "offset": 116, "next": [], "symbols": [{"name": "X509_CRL_free", "hash": "2edeb529baccbedb73294b094cc7b036c1e8da5f", "variant": 2737147055, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 301989906}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707472}, "child": {"skip": 84, "offset": 104, "next": [], "symbols": [{"name": "X509_EXTENSION_free", "hash": "e081145be77250b581aa7e2ff11b54df78541981", "variant": 943001850, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 301989903}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707472}, "child": {"skip": 72, "offset": 92, "next": [], "symbols": [{"name": "X509_PUBKEY_free", "hash": "9093ea55183d616e279baaa51dafb8f548bcb91f", "variant": 2233285635, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789960}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1007681536, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707472}, "child": {"skip": 8, "offset": 28, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "close"}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 10493997}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 604241919}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 1413677061}, "child": {"skip": 36, "offset": 80, "next": [], "symbols": [{"name": "_close_r", "hash": "c83d5127e1a99f2ba00f20b30d67d3c571e5853d", "variant": 4048329248, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 605028351}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 1414463493}, "child": {"skip": 36, "offset": 80, "next": [], "symbols": [{"name": "_close_r", "hash": "c9a72fa87c3a2538421fb97e45b89319d7fec6a4", "variant": 4048329248, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sbrk"}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 10493997}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 604241919}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 1413677061}, "child": {"skip": 36, "offset": 80, "next": [], "symbols": [{"name": "_sbrk_r", "hash": "c83d5127e1a99f2ba00f20b30d67d3c571e5853d", "variant": 2108028682, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 605028351}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 1414463493}, "child": {"skip": 36, "offset": 80, "next": [], "symbols": [{"name": "_sbrk_r", "hash": "c9a72fa87c3a2538421fb97e45b89319d7fec6a4", "variant": 2108028682, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10493997}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "fstat"}}, "child": {"skip": 4, "offset": 40, "next": [{"match": {"value": 604241919}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 1413677061}, "child": {"skip": 36, "offset": 84, "next": [], "symbols": [{"name": "_fstat_r", "hash": "f837f7522a8214b50c6872d46e8667aa5ff548cd", "variant": 427868729, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 605028351}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 1414463493}, "child": {"skip": 36, "offset": 84, "next": [], "symbols": [{"name": "_fstat_r", "hash": "bb009bc7c9bbf72e72fb4ecbede1fe7e31630066", "variant": 427868729, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707480}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 132, "offset": 152, "next": [], "symbols": [{"name": "__floatdidf", "hash": "36f803732fc65a756c412275c905d4b97d945a8d", "variant": 691169380, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 4290707472}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "GetThreadId"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1007747072, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4227117}, "child": {"skip": 64, "offset": 92, "next": [], "symbols": [{"name": "__malloc_lock", "hash": "6bef80bdb46253c8fea7d2f47782f39354c7c726", "variant": 1830005680, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 0}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 96, "offset": 124, "next": [], "symbols": [{"name": "__malloc_lock", "hash": "b7d09680e755a843dccb99aaedce3efece82989f", "variant": 1421790428, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10518573}, ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 278921388}, "child": {"skip": 12, "offset": 36, "next": [{"match": {"value": 638320632}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 604241918}, "child": {"skip": 688, "offset": 732, "next": [], "symbols": [{"name": "_free_r", "hash": "cd0d611782034ca9f57231a61991868123fca609", "variant": 3999616884, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 638058488}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 604962814}, "child": {"skip": 688, "offset": 732, "next": [], "symbols": [{"name": "_free_r", "hash": "31917653ddd8958111c7c3f5e43fad9a75b2ff0e", "variant": 3999616884, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8421421}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 10520621}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2357395532}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 341835783}, "child": {"skip": 140, "offset": 172, "next": [], "symbols": [{"name": "_Balloc", "hash": "529361e0c4bbbb45f9928b1e4d55465c7a828ae1", "variant": 296358162, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 2358116428}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 364904455}, "child": {"skip": 136, "offset": 168, "next": [], "symbols": [{"name": "_Balloc", "hash": "d9ffe7b6d54955867d3f85058c0cf834f75e850b", "variant": 296358162, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855504}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 4, "offset": 24, "next": [{"match": {"value": 10520621}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 12619821}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2491547660}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 809632000}, "child": {"skip": 88, "offset": 128, "next": [], "symbols": [{"name": "__swrite", "hash": "7bcfd7766e123f60593cdb20cea59fd4ddbc0fbf", "variant": 2041832667, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 2492399628}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 837746944}, "child": {"skip": 88, "offset": 128, "next": [], "symbols": [{"name": "__swrite", "hash": "b3898cc81299387cae247dc883c0f28320999016", "variant": 2041832667, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 12617773}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2357395540}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 341835780}, "child": {"skip": 76, "offset": 112, "next": [], "symbols": [{"name": "vfprintf", "hash": "3f8981f4c54e059c77dde9a098f73a7d9d5ad796", "variant": 2105722022, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 2357461076}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 343932933}, "child": {"skip": 80, "offset": 116, "next": [], "symbols": [{"name": "vfprintf", "hash": "0e2179a243f8019c4f11c1b5a6a9fbff1d248eaa", "variant": 4278808393, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 32813}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 33564717}, "child": {"skip": 92, "offset": 108, "next": [], "symbols": [{"name": "__fixdfdi", "hash": "974d3116b22fe4eca422fc9b626324243003c2bc", "variant": 2891592305, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 12615725}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289789960}, "child": {"skip": 84, "offset": 100, "next": [], "symbols": [{"name": "copy_reg", "hash": "de9b2f8dd1f65a4b630175aabdab4bd431d38dc0", "variant": 4261936124, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 10518573}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289789960}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1007747072, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4290707472}, "child": {"skip": 4, "offset": 28, "next": [{"match": {"value": 2919497736}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2919235588}, "child": {"skip": 68, "offset": 104, "next": [], "symbols": [{"name": "__register_frame_info", "hash": "1f9ad44594bdfb968bc04d50760dc2f02cccffb0", "variant": 3895094897, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 2919235600}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2919497736}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 2919235588}, "child": {"skip": 64, "offset": 104, "next": [], "symbols": [{"name": "__register_frame_info", "hash": "b6b1542c442d486e16f770ade7682cfdd8f6c250", "variant": 3895094897, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 2919497740}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 2919497736}, "child": {"skip": 64, "offset": 104, "next": [], "symbols": [{"name": "__register_frame_info_table", "hash": "978f4ff19f13cb10e4e8c379e31fc42b9b99d4a4", "variant": 3895094897, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2919497740}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2919497736}, "child": {"skip": 68, "offset": 104, "next": [], "symbols": [{"name": "__register_frame_info_table", "hash": "53ed6700521e721875cda5437ca7e567f137f7df", "variant": 3895094897, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8423469}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 301990066}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290707472}, "child": {"skip": 96, "offset": 124, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 128, "next": [{"match": {"value": 528444}, "child": {"skip": 624, "offset": 756, "next": [], "symbols": [{"name": "_free_r", "hash": "fc552177cd8607fe97b6642260d7c5abc7980028", "variant": 1172749576, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 889389057}, "child": {"skip": 0, "offset": 128, "next": [{"match": {"value": 2907242504}, "child": {"skip": 624, "offset": 756, "next": [], "symbols": [{"name": "_free_r", "hash": "cd56404bbb08f7b1d37787480fb3b9407a2a5907", "variant": 3758824013, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855504}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290707480}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__malloc_lock"}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 12619821}, "child": {"skip": 168, "offset": 204, "next": [], "symbols": [{"name": "_mallopt_r", "hash": "97faa256168c9895ae7c46db22b4902773d67125", "variant": 1070329783, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "strlen"}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 33562669}, "child": {"skip": 72, "offset": 108, "next": [], "symbols": [{"name": "_strdup_r", "hash": "c30f81a94734be6e224affa90311d6cfd44f7425", "variant": 2657640902, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707472}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 278921386}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 8423469}, "child": {"skip": 696, "offset": 724, "next": [], "symbols": [{"name": "_free_r", "hash": "82db17edd7e91b1e6df79a82cf59d68ca2f5c9c2", "variant": 1600086427, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 2382561364}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 341835781}, "child": {"skip": 244, "offset": 272, "next": [], "symbols": [{"name": "__swbuf", "hash": "bc0ea60c29b24fd149a4a66f818a90f3)PS2SDB", 8192}, + std::string_view{R"PS2SDB(9e96723f", "variant": 597245704, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707472}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_Balloc"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 604307457}, "child": {"skip": 32, "offset": 56, "next": [], "symbols": [{"name": "_i2b", "hash": "ea5310296cf9c2d6066d5f7c519910790f3a341b", "variant": 3542343909, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 33562669}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sce_eenet_if_updown"}}, "child": {"skip": 52, "offset": 76, "next": [], "symbols": [{"name": "_sce_eenet_sppp_close", "hash": "9a0aa26388d69509b5216431d41a70511e4b3f74", "variant": 890352783, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 605028440}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 11567128}, "child": {"skip": 96, "offset": 112, "next": [], "symbols": [{"name": "__sfmoreglue", "hash": "6358b42867266616ca446ae4c017f046eb85acab", "variant": 2792794057, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4289855504}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 605028440}, "child": {"skip": 24, "offset": 40, "next": [{"match": {"value": 608370700}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 4229165}, "child": {"skip": 64, "offset": 112, "next": [], "symbols": [{"name": "__sfmoreglue", "hash": "f2642b5c71258cbd7461b5d12df259f69d76b975", "variant": 2792794057, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 609157132}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 4229165}, "child": {"skip": 64, "offset": 112, "next": [], "symbols": [{"name": "__sfmoreglue", "hash": "a4e1b1b7f8f6a28f392298ad407bfa7aa3f7578d", "variant": 2792794057, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 814743807}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 771883108}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 339738631}, "child": {"skip": 24, "offset": 44, "next": [{"match": {"value": 604307739}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 604176394}, "child": {"skip": 48, "offset": 100, "next": [], "symbols": [{"name": "tobcd", "hash": "1fedd43fc09217d73910e9982702c82d2bad43ce", "variant": 1708813017, "library": "libscf"}]}}], "symbols": []}}, {"match": {"value": 604307737}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 604176394}, "child": {"skip": 48, "offset": 100, "next": [], "symbols": [{"name": "tobcd", "hash": "2ebbdb78396ab9cbab7bc0b511a12f885751ee97", "variant": 1708813017, "library": "libscf"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 771883162}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 339738631}, "child": {"skip": 24, "offset": 44, "next": [{"match": {"value": 604307752}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 1052930}, "child": {"skip": 36, "offset": 88, "next": [], "symbols": [{"name": "frombcd", "hash": "b06276a5ee4ac09f09a0ae12a08150ddb6b02b4d", "variant": 1708813017, "library": "libscf"}]}}], "symbols": []}}, {"match": {"value": 604307750}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 1052930}, "child": {"skip": 36, "offset": 88, "next": [], "symbols": [{"name": "frombcd", "hash": "15a0e92293ade64a6cec53ef3c10819cf224c3a4", "variant": 1708813017, "library": "libscf"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604308538}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707472}, "child": {"skip": 24, "offset": 36, "next": [], "symbols": [{"name": "sceDevVu1GetTpc", "hash": "81a2f50da54a121905d9d14225d1932540957355", "variant": 4142994728, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 815988991}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 196, "offset": 208, "next": [], "symbols": [{"name": "sceDevConsPut", "hash": "b7a1aa1bc38c96d7744863f621bdcb2b4391b219", "variant": 1304406745, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 814022655}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707472}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1074814976}, "child": {"skip": 88, "offset": 108, "next": [], "symbols": [{"name": "SetAlarm", "hash": "71f33f94b6d073d9459c964cae9ed872026739c0", "variant": 1804510888, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 816185599}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 872595491}, "child": {"skip": 256, "offset": 276, "next": [], "symbols": [{"name": "sppp_auth_type_name", "hash": "696a76d848d310c621e35c226aa835400cd6793f", "variant": 3350904555, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2946826244}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2946760704}, "child": {"skip": 32, "offset": 48, "next": [], "symbols": [{"name": "sceDeci2Open", "hash": "6406acaa27c78f5ebd657352e5a057089d614e67", "variant": 2119435786, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707472}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceSifLoadModuleBuffer"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 60831789}, "child": {"skip": 12, "offset": 28, "next": [], "symbols": [{"name": "sceSifLoadModuleBuffer", "hash": "17046b8835f55db47825df4b9ca7850182e23ae6", "variant": 1111226892, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "ncmd_prechk"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 112, "offset": 128, "next": [], "symbols": [{"name": "sceCdNcmdDiskReady", "hash": "dc49b929af797bcb9b20cd3b17e11144af074103", "variant": 322857932, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__udivmoddi4"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 60829741}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 3753836560}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 3751936000}, "child": {"skip": 8, "offset": 32, "next": [], "symbols": [{"name": "__umoddi3", "hash": "80b36b9b8208ce465452f44b89bdb7ef371ca320", "variant": 2167652446, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 3751936000}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 3753836560}, "child": {"skip": 8, "offset": 32, "next": [], "symbols": [{"name": "__umoddi3", "hash": "02a9998ff75594696462b8543ee29b6f769f2e43", "variant": 2167652446, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_findenv_r"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 60829741}, "child": {"skip": 12, "offset": 28, "next": [], "symbols": [{"name": "_getenv_r", "hash": "7318aecc363b49dab2d30a2bec07635cdd7ed3fc", "variant": 637482638, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_waitIpuIdle"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289724416}, "child": {"skip": 88, "offset": 104, "next": [], "symbols": [{"name": "_nextStartCode", "hash": "81bf633f7bd02dcc77760f689e93927fd8b1b546", "variant": 2884005326, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "GetOsdConfigParam"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 60825645}, "child": {"skip)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": 80, "offset": 96, "next": [], "symbols": [{"name": "sceScfGetLanguage", "hash": "c6dbe5f9ce22e8a8832b2e95ccadab765cf02fbe", "variant": 2414104558, "library": "libscf"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "IsT10K"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 4, "offset": 20, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 268435462}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2422341632, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 32, "offset": 64, "next": [], "symbols": [{"name": "sceScfGetAspect", "hash": "5d3f9cf86e9eed1953e743f34cb5f429641c6d07", "variant": 1838464711, "library": "libscf"}]}}], "symbols": []}}, {"match": {"value": 268435461}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2422341632, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 28, "offset": 60, "next": [], "symbols": [{"name": "sceScfGetSpdif", "hash": "a850df1f1181838118c011f094b42873628a262a", "variant": 1838464711, "library": "libscf"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 268435465}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2218917888, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 44, "offset": 76, "next": [], "symbols": [{"name": "sceScfGetTimeZone", "hash": "26cc8630d497c5d41625ec42fd38e8ed1051affd", "variant": 1838464711, "library": "libscf"}]}}], "symbols": []}}, {"match": {"value": 268435471}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2420244480, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 68, "offset": 100, "next": [], "symbols": [{"name": "sceScfGetDateNotation", "hash": "f6799d360e0952418038b58abfc2fc9daea8a664", "variant": 3432108472, "library": "libscf"}]}}], "symbols": []}}, {"match": {"value": 268435472}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2420244480, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 52, "offset": 84, "next": [{"match": {"value": 203010}, "child": {"skip": 0, "offset": 88, "next": [{"match": {"value": 811728897}, "child": {"skip": 12, "offset": 104, "next": [], "symbols": [{"name": "sceScfGetSummerTime", "hash": "0864b936fa30a5c04171da552662d67c76eaea8f", "variant": 3432108472, "library": "libscf"}]}}], "symbols": []}}, {"match": {"value": 203074}, "child": {"skip": 0, "offset": 88, "next": [{"match": {"value": 811728897}, "child": {"skip": 12, "offset": 104, "next": [], "symbols": [{"name": "sceScfGetTimeNotation", "hash": "5148064f3b1de0951e3bd933829a325a73285414", "variant": 3432108472, "library": "libscf"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceHiGsServiceExit"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289724416}, "child": {"skip": 148, "offset": 164, "next": [], "symbols": [{"name": "sceHiGsDisplayEnd", "hash": "18ca8c5e013e09ab21e561e0a21c1faf5cfb8dbe", "variant": 3339516866, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceMc2GetDirAllAsync"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 44, "offset": 60, "next": [], "symbols": [{"name": "sceMc2GetDirAll", "hash": "4957386222d638385d884797aff50bfe3d6aea9e", "variant": 4156704058, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceMc2GetInfoAsync"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4200493}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 341835782}, "child": {"skip": 36, "offset": 60, "next": [], "symbols": [{"name": "sceMc2GetInfo", "hash": "4957386222d638385d884797aff50bfe3d6aea9e", "variant": 968375700, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 60829741}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2946629632}, "child": {"skip": 36, "offset": 60, "next": [], "symbols": [{"name": "sceMc2GetInfo", "hash": "0717ed2cb975e90bb4906d3ff18cca05ee173e9a", "variant": 968375700, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceMc2FormatAsync"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4200493}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 341835782}, "child": {"skip": 36, "offset": 60, "next": [], "symbols": [{"name": "sceMc2Format", "hash": "4957386222d638385d884797aff50bfe3d6aea9e", "variant": 2966705079, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 60829741}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2946629632}, "child": {"skip": 36, "offset": 60, "next": [], "symbols": [{"name": "sceMc2Format", "hash": "0717ed2cb975e90bb4906d3ff18cca05ee173e9a", "variant": 2966705079, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceMc2UnformatAsync"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4200493}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 341835782}, "child": {"skip": 36, "offset": 60, "next": [], "symbols": [{"name": "sceMc2Unformat", "hash": "4957386222d638385d884797aff50bfe3d6aea9e", "variant": 1777102823, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 60829741}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2946629632}, "child": {"skip": 36, "offset": 60, "next": [], "symbols": [{"name": "sceMc2Unformat", "hash": "0717ed2cb975e90bb4906d3ff18cca05ee173e9a", "variant": 1777102823, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceMc2ReadFileAsync"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4200493}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 341835782}, "child": {"skip": 36, "offset": 60, "next": [], "symbols": [{"name": "sceMc2ReadFile", "hash": "4957386222d638385d884797aff50bfe3d6aea9e", "variant": 4135910585, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 60829741}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2946629632}, "child": {"skip": 36, "offset": 60, "next": [], "symbols": [{"name": "sceMc2ReadFile", "hash": "0717ed2cb975e90bb4906d3ff18cca05ee173e9a", "variant": 4135910585, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceMc2WriteFileAsync"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4200493}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 341835782}, "child": {"skip": 36, "offset": 60, "next": [], "symbols": [{"name": "sceMc2WriteFile", "hash": "4957386222d638385d884797aff50bfe3d6aea9e", "variant": 1188063347, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 60829741}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2946629632}, "child": {"skip": 36, "offset": 60, "next": [], "symbols": [{"name": "sceMc2WriteFile", "hash": "0717ed2cb975e90bb4906d3ff18cca05ee173e9a", "variant": 1188063347, "library": "libmc2"}]}}], "symbols": []}}], "symb)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceMc2CreateFileAsync"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4200493}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 341835782}, "child": {"skip": 36, "offset": 60, "next": [], "symbols": [{"name": "sceMc2CreateFile", "hash": "4957386222d638385d884797aff50bfe3d6aea9e", "variant": 1971921227, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 60829741}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2946629632}, "child": {"skip": 36, "offset": 60, "next": [], "symbols": [{"name": "sceMc2CreateFile", "hash": "0717ed2cb975e90bb4906d3ff18cca05ee173e9a", "variant": 1971921227, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceMc2DeleteAsync"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4200493}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 341835782}, "child": {"skip": 36, "offset": 60, "next": [], "symbols": [{"name": "sceMc2Delete", "hash": "4957386222d638385d884797aff50bfe3d6aea9e", "variant": 1304598938, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 60829741}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2946629632}, "child": {"skip": 36, "offset": 60, "next": [], "symbols": [{"name": "sceMc2Delete", "hash": "0717ed2cb975e90bb4906d3ff18cca05ee173e9a", "variant": 1304598938, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceMc2RenameAsync"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4200493}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 341835782}, "child": {"skip": 36, "offset": 60, "next": [], "symbols": [{"name": "sceMc2Rename", "hash": "4957386222d638385d884797aff50bfe3d6aea9e", "variant": 2442486068, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 60829741}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2946629632}, "child": {"skip": 36, "offset": 60, "next": [], "symbols": [{"name": "sceMc2Rename", "hash": "0717ed2cb975e90bb4906d3ff18cca05ee173e9a", "variant": 2442486068, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceMc2MkdirAsync"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4200493}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 341835782}, "child": {"skip": 36, "offset": 60, "next": [], "symbols": [{"name": "sceMc2Mkdir", "hash": "4957386222d638385d884797aff50bfe3d6aea9e", "variant": 890358961, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 60829741}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2946629632}, "child": {"skip": 36, "offset": 60, "next": [], "symbols": [{"name": "sceMc2Mkdir", "hash": "0717ed2cb975e90bb4906d3ff18cca05ee173e9a", "variant": 890358961, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceMc2ChdirAsync"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4200493}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 341835782}, "child": {"skip": 36, "offset": 60, "next": [], "symbols": [{"name": "sceMc2Chdir", "hash": "4957386222d638385d884797aff50bfe3d6aea9e", "variant": 3114117636, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 60829741}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2946629632}, "child": {"skip": 36, "offset": 60, "next": [], "symbols": [{"name": "sceMc2Chdir", "hash": "0717ed2cb975e90bb4906d3ff18cca05ee173e9a", "variant": 3114117636, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceMc2GetDirAsync"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4200493}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 341835782}, "child": {"skip": 36, "offset": 60, "next": [], "symbols": [{"name": "sceMc2GetDir", "hash": "4957386222d638385d884797aff50bfe3d6aea9e", "variant": 2538377394, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 60829741}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2946629632}, "child": {"skip": 36, "offset": 60, "next": [], "symbols": [{"name": "sceMc2GetDir", "hash": "0717ed2cb975e90bb4906d3ff18cca05ee173e9a", "variant": 2538377394, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceMc2ChmodAsync"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 818348031}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4200493}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 341835782}, "child": {"skip": 36, "offset": 60, "next": [], "symbols": [{"name": "sceMc2Chmod", "hash": "6bed9a821b06284d94a3c7e9981745271659f69d", "variant": 1821904859, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 60829741}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2946629632}, "child": {"skip": 36, "offset": 60, "next": [], "symbols": [{"name": "sceMc2Chmod", "hash": "9effbe7c5cda53444824361f3202fde93f4d85b7", "variant": 1821904859, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceMc2SearchFileAsync"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4200493}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 341835782}, "child": {"skip": 36, "offset": 60, "next": [], "symbols": [{"name": "sceMc2SearchFile", "hash": "4957386222d638385d884797aff50bfe3d6aea9e", "variant": 2923673281, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 60829741}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2946629632}, "child": {"skip": 36, "offset": 60, "next": [], "symbols": [{"name": "sceMc2SearchFile", "hash": "0717ed2cb975e90bb4906d3ff18cca05ee173e9a", "variant": 2923673281, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceMc2GetEntSpaceAsync"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4200493}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 341835782}, "child": {"skip": 36, "offset": 60, "next": [], "symbols": [{"name": "sceMc2GetEntSpace", "hash": "4957386222d638385d884797aff50bfe3d6aea9e", "variant": 2707638794, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 60829741}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2946629632}, "child": {"skip": 36, "offset": 60, "next": [], "symbols": [{"name": "sceMc2GetEntSpace", "hash": "0717ed2cb975e90bb4906d3ff18cca05ee173e9a", "variant": 2707638794, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceInsockInetAton"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 60827693}, "child": {"skip": 28, "offset": 44, "next": [], "symbols": [{"name": "sceInsockInetAddr", "hash": "e27816bf983669b2bf774deb23e6ac0ea5935f3f", "variant": 595886)PS2SDB", 8192}, + std::string_view{R"PS2SDB(270, "library": "libinsck"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sce_delete_callback_thread"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 80, "offset": 96, "next": [], "symbols": [{"name": "sceNetcnfifDeleteCallbackThread", "hash": "7e868002bfb0ff280644f9848fa4f21f37db4fd5", "variant": 3092705183, "library": "netcnfif"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceNetcnfifInit"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 20, "offset": 36, "next": [{"match": {"value": 604307556}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 604372993}, "child": {"skip": 32, "offset": 76, "next": [], "symbols": [{"name": "sceNetcnfifGetAddr", "hash": "acda756b0ad98825abb8985cac5735ab2def543a", "variant": 2962245096, "library": "netcnfif"}]}}], "symbols": []}}, {"match": {"value": 604307558}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 604372993}, "child": {"skip": 32, "offset": 76, "next": [], "symbols": [{"name": "sceNetcnfifFreeWorkarea", "hash": "5bfce674a025935ef922098b94eecf7b6cf17a1e", "variant": 2962245096, "library": "netcnfif"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__sceEENetspllock"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289724416}, "child": {"skip": 152, "offset": 168, "next": [], "symbols": [{"name": "__sceEENetarp_drain", "hash": "b1d46aa2c609584d254910f4f62200489cb65b73", "variant": 3091880256, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1007681536, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789960}, "child": {"skip": 48, "offset": 68, "next": [], "symbols": [{"name": "free", "hash": "d1626430c9a99ca7475ba966f0f4e52ef2906c28", "variant": 2424772367, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 1074814976}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1006764033}, "child": {"skip": 40, "offset": 60, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_ReleaseAlarm"}}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 0}, "child": {"skip": 32, "offset": 100, "next": [], "symbols": [{"name": "ReleaseAlarm", "hash": "0c687a01865006b56b854ec14d5dd5ff09a75aef", "variant": 1844029299, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_DisableIntc"}}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 0}, "child": {"skip": 32, "offset": 100, "next": [], "symbols": [{"name": "DisableIntc", "hash": "0c687a01865006b56b854ec14d5dd5ff09a75aef", "variant": 3359118774, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_EnableIntc"}}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 0}, "child": {"skip": 32, "offset": 100, "next": [], "symbols": [{"name": "EnableIntc", "hash": "0c687a01865006b56b854ec14d5dd5ff09a75aef", "variant": 3086569653, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_DisableDmac"}}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 0}, "child": {"skip": 32, "offset": 100, "next": [], "symbols": [{"name": "DisableDmac", "hash": "0c687a01865006b56b854ec14d5dd5ff09a75aef", "variant": 262247718, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_EnableDmac"}}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 0}, "child": {"skip": 32, "offset": 100, "next": [], "symbols": [{"name": "EnableDmac", "hash": "0c687a01865006b56b854ec14d5dd5ff09a75aef", "variant": 1885392933, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604241873}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 12}, "child": {"skip": 12, "offset": 32, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_iWakeupThread"}}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 268435479}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 3753836560}, "child": {"skip": 100, "offset": 148, "next": [], "symbols": [{"name": "iWakeupThread", "hash": "f7e4fd3678a40e7507dd5c2985697b4a7aa8a8b6", "variant": 4293005923, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 268435472}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 3753836560}, "child": {"skip": 72, "offset": 120, "next": [], "symbols": [{"name": "iWakeupThread", "hash": "067a0e8826e344e4218c45b1df75d96b995797d3", "variant": 349791568, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_iSuspendThread"}}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 268435480}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 3753836560}, "child": {"skip": 104, "offset": 152, "next": [], "symbols": [{"name": "iSuspendThread", "hash": "77460b73c17b18c404e0f29c4ab5e0880cf93a1d", "variant": 2454508702, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 268435473}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 3753836560}, "child": {"skip": 76, "offset": 124, "next": [], "symbols": [{"name": "iSuspendThread", "hash": "5ecaf66da27115564dc2af349e01b1cd8995c926", "variant": 1736572684, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 58753069}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 664993808}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1007026176, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2355429376}, "child": {"skip": 52, "offset": 80, "next": [], "symbols": [{"name": "cooked_malloc", "hash": "402b336d4c453767e74b012313a68c249a3b7bfe", "variant": 2646441667, "library": "libeenet"}, {"name": "cooked_malloc", "hash": "402b336d4c453767e74b012313a68c249a3b7bfe", "variant": 2646441667, "library": "libhttps"}, {"name": "cooked_free", "hash": "402b336d4c453767e74b012313a68c249a3b7bfe", "variant": 2646441667, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 1007091712, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2355494912}, "child": {"skip": 52, "offset": 80, "next": [], "symbols": [{"name": "cooked_realloc", "hash": "2b8fc1e0202c6d030c971277b3e51dfa6b77e10f", "variant": 2646441667, "library": "libeenet"}, {"name": "cooked_realloc", "hash": "2b8fc1e0202c6d030c971277b3e51dfa6b77e10f", "variant": 2646441667, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 664928272}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1007091712, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2353397760}, "child": {"skip": 48, "offset": 76, "next": [], "symbols": [{"name": "cooked_memalign", "hash": "72acb9494c1df94580ab838da1f86a880a6ae50f", "variant": 2213136324, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 1007026176, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2353201152}, "child": {"skip": 48, "offset": 76, "next": [], "symbols": [{"name": "cooked_free", "hash": "cbc2e3b70f7ce27ed2894e8d5b8b8ebf423901f0", "variant": 2213136324, "library)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2358247428}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 301989897}, "child": {"skip": 52, "offset": 72, "next": [], "symbols": [{"name": "BN_num_bits", "hash": "e8a07a9cb02fb475c48e6b26e7773a6895b28c11", "variant": 3670066141, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2358247432}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 301989905}, "child": {"skip": 84, "offset": 104, "next": [], "symbols": [{"name": "pk_dh_sslc_cleanup", "hash": "b2c09828eb9d58f0281995f2568000ef3f7bcdbd", "variant": 2541681897, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 60825645}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "SetVSyncFlag"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 933560328}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1006833664}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2946498560}, "child": {"skip": 12, "offset": 40, "next": [{"match": {"value": 2355232768}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 809631748}, "child": {"skip": 40, "offset": 88, "next": [], "symbols": [{"name": "VSync2", "hash": "26e960439b56135028f560fd2496b1b26c67e0be", "variant": 3899985686, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006768129}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 2353197056}, "child": {"skip": 48, "offset": 96, "next": [], "symbols": [{"name": "VSync2", "hash": "4fc03a1da04a1879ab8e725698c76108af1bfdd3", "variant": 3899985686, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006768128}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2946498560}, "child": {"skip": 68, "offset": 96, "next": [], "symbols": [{"name": "VSync2", "hash": "b7f0ef9f40b613759f76c6f14267d4496d72477b", "variant": 3899985686, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2946498560}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "SetVSyncFlag"}}, "child": {"skip": 4, "offset": 24, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "DIntr"}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 0}, "child": {"skip": 132, "offset": 164, "next": [], "symbols": [{"name": "VSync2", "hash": "47c611cbccdab542caa9cd4060e8678a10fbd8b8", "variant": 2815664679, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006768128}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604176388}, "child": {"skip": 64, "offset": 96, "next": [], "symbols": [{"name": "VSync2", "hash": "1930eef230e3453c4cc0e5ce60a0c470ed7720f9", "variant": 3660524036, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 343932945}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289724416}, "child": {"skip": 16, "offset": 32, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "scePrintf"}}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 8, "offset": 48, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceCdDelayThread"}}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 604241980}, "child": {"skip": 52, "offset": 108, "next": [], "symbols": [{"name": "sceCdSyncS", "hash": "e0c718e53787444b0cbbbc9c9a4b5a22c636481e", "variant": 2329151018, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "DelayThread"}}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 604245920}, "child": {"skip": 52, "offset": 108, "next": [], "symbols": [{"name": "sceCdSyncS", "hash": "422253202ae44f042227df271f9b95995b680284", "variant": 2613518935, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "printf"}}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 12, "offset": 52, "next": [{"match": {"value": 604241980}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceSifCheckStatRpc"}}, "child": {"skip": 48, "offset": 108, "next": [], "symbols": [{"name": "sceCdSyncS", "hash": "e0c718e53787444b0cbbbc9c9a4b5a22c636481e", "variant": 2747459055, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 604242040}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceSifCheckStatRpc"}}, "child": {"skip": 48, "offset": 108, "next": [], "symbols": [{"name": "sceCdSyncS", "hash": "044dcd1a1798b671f96cd1e5408112db74586756", "variant": 2747459055, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 343932943}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289724416}, "child": {"skip": 84, "offset": 100, "next": [], "symbols": [{"name": "sceCdSyncS", "hash": "306d5f45357c99bae1e72beef03cd8173570bee1", "variant": 2844666778, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 276824087}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289724416}, "child": {"skip": 104, "offset": 120, "next": [], "symbols": [{"name": "__builtin_delete", "hash": "f3494b7e51363b77e588ebe4485bb71b95754f5b", "variant": 2026208630, "library": "libgcc"}, {"name": "__builtin_vec_delete", "hash": "f3494b7e51363b77e588ebe4485bb71b95754f5b", "variant": 2026208630, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 3699507200}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 60825645}, "child": {"skip": 20, "offset": 36, "next": [], "symbols": [{"name": "gmtime", "hash": "da45dc560a15bda8cdfadf0e2aa9b7edca94b10e", "variant": 4212160543, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 2357397592}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 274726924}, "child": {"skip": 68, "offset": 84, "next": [], "symbols": [{"name": "_Error", "hash": "d00cee5ca59b851b1155b205811daf9c7ba7ea83", "variant": 3992598197, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2357397616}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 274726924}, "child": {"skip": 68, "offset": 84, "next": [], "symbols": [{"name": "_Error", "hash": "940b70e3d4a17273783212d2c73aae54f841843a", "variant": 3992598197, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2357397608}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 274726924}, "child": {"skip": 68, "offset": 84, "next": [], "symbols": [{"name": "_sceMpegError", "hash": "cab2886ba7eba2a8b27751fbc799fa0884663b95", "variant": 770205560, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2142240768}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 268435466}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 0}, "child": {"skip": 72, "offset": 92, "next": [], "symbols": [{"name": "__destroy_global_chain", "hash": "69b38aaa1d2d7d9dca43a92f7d741d1ec251e5c1", "variant": 1825841125, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 8421421}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 301989897}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 332860}, "child": {"skip": 52, "offset": 76, "next": [], "symbols": [{"name": "__dt__Q23std9exceptionFv", "hash": "ac5100c9cad9291834660af159f8ec0572d528b4", "variant": 3173481693, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"valu)PS2SDB", 8192}, + std::string_view{R"PS2SDB(e": 301989898}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 33558573}, "child": {"skip": 52, "offset": 76, "next": [], "symbols": [{"name": "__dt__Q23std9exceptionFv", "hash": "35b4e041fa76af2573ad14da75b5b3b1795d79da", "variant": 482026147, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 1375731722}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 33558573}, "child": {"skip": 52, "offset": 76, "next": [], "symbols": [{"name": "__dt__Q23std9exceptionFv", "hash": "e4d79dd78f754a2f568a8adeba2aee263bd36986", "variant": 482026147, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 301989901}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 68, "offset": 92, "next": [], "symbols": [{"name": "__dt__Q23std9bad_allocFv", "hash": "c7b225fab89e266e0bb9aaaf5d5f30540582f778", "variant": 2190280007, "library": "mslgcc_ps2"}, {"name": "__dt__Q23std13bad_exceptionFv", "hash": "c7b225fab89e266e0bb9aaaf5d5f30540582f778", "variant": 2190280007, "library": "mslgcc_ps2"}, {"name": "__dt__Q23std8bad_castFv", "hash": "c7b225fab89e266e0bb9aaaf5d5f30540582f778", "variant": 2190280007, "library": "mslgcc_ps2"}, {"name": "__dt__Q23std10bad_typeidFv", "hash": "c7b225fab89e266e0bb9aaaf5d5f30540582f778", "variant": 2190280007, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 301989903}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 33558573}, "child": {"skip": 72, "offset": 96, "next": [], "symbols": [{"name": "__dt__Q23std9bad_allocFv", "hash": "6787ac379a45bfddc362834a7fa2de10c7ac8b7e", "variant": 2123581395, "library": "mslgcc_ps2"}, {"name": "__dt__Q23std13bad_exceptionFv", "hash": "6787ac379a45bfddc362834a7fa2de10c7ac8b7e", "variant": 2123581395, "library": "mslgcc_ps2"}, {"name": "__dt__Q23std8bad_castFv", "hash": "6787ac379a45bfddc362834a7fa2de10c7ac8b7e", "variant": 2123581395, "library": "mslgcc_ps2"}, {"name": "__dt__Q23std10bad_typeidFv", "hash": "6787ac379a45bfddc362834a7fa2de10c7ac8b7e", "variant": 2123581395, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 1375731727}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 33558573}, "child": {"skip": 72, "offset": 96, "next": [], "symbols": [{"name": "__dt__Q23std8bad_castFv", "hash": "40aabba9c8c96bd86af467a6ea4f72a0496a89d4", "variant": 2123581395, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1887471144}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 301989898}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1912608296}, "child": {"skip": 52, "offset": 76, "next": [], "symbols": [{"name": "__dt__Q23std9exceptionFv", "hash": "9b90b819612c49d0d7898e02df1be4e19b107d60", "variant": 482026147, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 301989903}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1912608296}, "child": {"skip": 72, "offset": 96, "next": [], "symbols": [{"name": "__dt__Q23std9bad_allocFv", "hash": "adb38dc5a80d213dcbda4ba69e35a23761e2a167", "variant": 2123581395, "library": "mslgcc_ps2"}, {"name": "__dt__Q23std13bad_exceptionFv", "hash": "adb38dc5a80d213dcbda4ba69e35a23761e2a167", "variant": 2123581395, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2946760704}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceEENetNtohl"}}, "child": {"skip": 12, "offset": 28, "next": [{"match": {"value": 73400324}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 1006764287}, "child": {"skip": 44, "offset": 80, "next": [], "symbols": [{"name": "sceEENetInetLnaof", "hash": "c45a2e29d570f093ffcb7ca3cccc73edf7fcb97e", "variant": 4182101863, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 73465862}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 202242}, "child": {"skip": 32, "offset": 68, "next": [], "symbols": [{"name": "sceEENetInetNetof", "hash": "14e4b024c6d515013123aee50f7a9302a2f0d422", "variant": 4182101863, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2946891776}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2946957316}, "child": {"skip": 84, "offset": 100, "next": [], "symbols": [{"name": "op_push_pop", "hash": "74776516fccdbbffa5f53cdb91f20f80234ea775", "variant": 4086973862, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 276824068}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2946826240}, "child": {"skip": 40, "offset": 56, "next": [], "symbols": [{"name": "R_rand_add_entropy", "hash": "bdb679a9dba5c8b30adf239a41eea6171e95fa62", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8400941}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707472}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1074814976}, "child": {"skip": 52, "offset": 72, "next": [{"match": {"value": 881131456}, "child": {"skip": 0, "offset": 76, "next": [{"match": {"value": 10758180}, "child": {"skip": 0, "offset": 80, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceSDC"}}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 12853284}, "child": {"skip": 28, "offset": 116, "next": [], "symbols": [{"name": "SyncDCache", "hash": "509e7fbec17609f84eeba9a8f1ddc77606a79747", "variant": 3295266464, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceIDC"}}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 12853284}, "child": {"skip": 28, "offset": 116, "next": [], "symbols": [{"name": "InvalidDCache", "hash": "509e7fbec17609f84eeba9a8f1ddc77606a79747", "variant": 3587760134, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 881131488}, "child": {"skip": 0, "offset": 76, "next": [{"match": {"value": 10758180}, "child": {"skip": 36, "offset": 116, "next": [], "symbols": [{"name": "SyncDCache", "hash": "24d63832f1019b2f63a954ca32f90eca0ddeaf1d", "variant": 3295266464, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 346030109}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 604176274}, "child": {"skip": 60, "offset": 80, "next": [{"match": {"value": 604307575}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 2946498560}, "child": {"skip": 56, "offset": 144, "next": [], "symbols": [{"name": "sceMcFormat", "hash": "116c58ead240ce05718b11d54ff0ca13d1522828", "variant": 1372296960, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 604307584}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 2946498560}, "child": {"skip": 56, "offset": 144, "next": [], "symbols": [{"name": "sceMcUnformat", "hash": "6e7e78c10bffdc172c942791a73282b1b6e49884", "variant": 1372296960, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10518573}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789960}, "child": {"skip": 464, "offset": 484, "next": [], "symbols": [{"name": "scalbn", "hash": "7bbcff44644fdcd8ea2b0903277effc647ff99b1", "variant": 422969148, "library": "libm"}, {"name": "scalbn", "hash": "7bbcff44644fdcd8ea2b0903277effc647ff99b1", "variant": 422969148, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 408578}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1007681536, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 64, "offset": 84, "next": [], "symbols": [{"name": "sppp_dotted_quad", "hash": "3b1ff0c7f9be7ca4706cd6ee87a6b39df971b944", "variant": 7138344)PS2SDB", 8192}, + std::string_view{R"PS2SDB(94, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4290707472}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2428633088}, "child": {"skip": 168, "offset": 188, "next": [], "symbols": [{"name": "handle_param", "hash": "98d120b6ae00258f945c6523a65cffbec81cf7fd", "variant": 1621606333, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2946760704}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 60827693}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707472}, "child": {"skip": 4, "offset": 20, "next": [{"match": {"value": 604241922}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 3753836560}, "child": {"skip": 8, "offset": 36, "next": [], "symbols": [{"name": "sceDeci2Close", "hash": "83971e2360fe603937430e7ac4f25356afae4322", "variant": 1000452078, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604241924}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 3753836560}, "child": {"skip": 8, "offset": 36, "next": [], "symbols": [{"name": "sceDeci2Poll", "hash": "1d0d558ded4d1a7a9960a9bba669c9a6719eebd9", "variant": 1000452078, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604307448}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 3753836560}, "child": {"skip": 8, "offset": 36, "next": [], "symbols": [{"name": "sceDeci2ExLock", "hash": "62c1f5ed8846f5d3f8b4da5cc4b949906565b930", "variant": 1000452078, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604307447}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 3753836560}, "child": {"skip": 8, "offset": 36, "next": [], "symbols": [{"name": "sceDeci2ExUnLock", "hash": "38fa368f5fb6e6e7216725180fc3ecd795989dcd", "variant": 1000452078, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604241936}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 3753836560}, "child": {"skip": 8, "offset": 36, "next": [], "symbols": [{"name": "kputs", "hash": "cd6fc4ceb3d296fd94dfb8c81e784c3ba997698d", "variant": 1000452078, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604241953}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 3753836560}, "child": {"skip": 8, "offset": 36, "next": [], "symbols": [{"name": "sceDeci2GrpClose", "hash": "3268731cac8852f238261d3d4205fad70c5d8508", "variant": 1000452078, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 60825645}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707472}, "child": {"skip": 28, "offset": 44, "next": [], "symbols": [{"name": "__make_fp", "hash": "b4b3bf890632b2f6173573c203af43a1f4fab7be", "variant": 2563259766, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 4290707472}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 60825645}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2946826244}, "child": {"skip": 24, "offset": 44, "next": [], "symbols": [{"name": "__make_fp", "hash": "9ddb04cffdc5196913f7b0eac7c08faa3364cc1b", "variant": 2563259766, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 2946826244}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 60825645}, "child": {"skip": 24, "offset": 44, "next": [], "symbols": [{"name": "__make_fp", "hash": "7d2618d2373eb18956982bb7be503388078b355f", "variant": 2563259766, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2946826256}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2409824256}, "child": {"skip": 24, "offset": 40, "next": [], "symbols": [{"name": "sceCccSetTable", "hash": "b72424411558f233ee125d7491f7d19cedab21b3", "variant": 2779918381, "library": "libccc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10489901}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 818348031}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2946760704}, "child": {"skip": 12, "offset": 28, "next": [{"match": {"value": 604307451}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "Deci2Call"}}, "child": {"skip": 16, "offset": 52, "next": [], "symbols": [{"name": "sceDeci2ExRecv", "hash": "9fa658d4f69972bcf71644153026d2e2e091a808", "variant": 4144369215, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604307450}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "Deci2Call"}}, "child": {"skip": 16, "offset": 52, "next": [], "symbols": [{"name": "sceDeci2ExSend", "hash": "827d561e4a8cbabfd75cecbadff898364a787b5e", "variant": 4144369215, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 12593197}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789960}, "child": {"skip": 4, "offset": 24, "next": [{"match": {"value": 8423469}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4290707472}, "child": {"skip": 56, "offset": 88, "next": [], "symbols": [{"name": "_fstat_r", "hash": "d45b1b5b62b0ecb98d98fcc012ef0f26ea839c96", "variant": 1025069937, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 14692397}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 8423469}, "child": {"skip": 8, "offset": 40, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "lseek"}}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 2919235584, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 44, "offset": 92, "next": [], "symbols": [{"name": "_lseek_r", "hash": "106e4aee372a103cf2cbeab940d74cc6bf81a324", "variant": 3711245735, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "read"}}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 2919235584, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 48, "offset": 96, "next": [], "symbols": [{"name": "_read_r", "hash": "0a75123c49b9d9adacda8f372b41e33d2e8825fe", "variant": 3265540072, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "write"}}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 2919235584, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 48, "offset": 96, "next": [], "symbols": [{"name": "_write_r", "hash": "0a75123c49b9d9adacda8f372b41e33d2e8825fe", "variant": 3649089589, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 12597293}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707472}, "child": {"skip": 12, "offset": 32, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_read_r"}}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 2248474638}, "child": {"skip": 60, "offset": 100, "next": [], "symbols": [{"name": "__sread", "hash": "16be9fdcaded7809a9ec8f96b82a36194a2bc2c6", "variant": 1815032771, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_lseek_r"}}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 2248474638}, "child": {"skip": 64, "offset": 104, "next": [], "symbols": [{"name": "__sseek", "hash": "483d0652b33b90fbc96a1a5866be0f44568ee685", "variant": 3255997367, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006796800}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 164, "offset": 176, "next": [], "symbols": [{"name": "_request_end", "hash": "652e3fb2e88c938071ad505598e174e422268067", "variant": 2226100107, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"v)PS2SDB", 8192}, + std::string_view{R"PS2SDB(alue": 2359492608}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707472}, "child": {"skip": 56, "offset": 68, "next": [], "symbols": [{"name": "_sceFs_Poff_Intr", "hash": "ef57916bf7fe82c52737f32e933c8ef61006587a", "variant": 3398703437, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 16429}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707472}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "sceSifLoadModule", "hash": "8166143678ce2489fcc1d9045139a45cecdb56da", "variant": 3714023186, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 10498093}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8421421}, "child": {"skip": 60, "offset": 76, "next": [], "symbols": [{"name": "ExecOSD", "hash": "b8c7cde14b60cb7b9a0012dcd410b509dd89ec19", "variant": 3732940287, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 4290707472}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 604504065}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 60827693}, "child": {"skip": 64, "offset": 84, "next": [], "symbols": [{"name": "_reset_problem_patch", "hash": "61abdf4265bf22cfb2aeb0b959d70ab212d0350f", "variant": 1323061893, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 60827693}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceHiGetData"}}, "child": {"skip": 20, "offset": 40, "next": [], "symbols": [{"name": "sceHiPlugShapeGetHead", "hash": "182d34a2e8cf2caf1ca77538838f73c027a3a1ea", "variant": 1929552669, "library": "libhip"}, {"name": "sceHiPlugHrchyGetHead", "hash": "182d34a2e8cf2caf1ca77538838f73c027a3a1ea", "variant": 1929552669, "library": "libhip"}, {"name": "sceHiPlugTex2DGetHead", "hash": "182d34a2e8cf2caf1ca77538838f73c027a3a1ea", "variant": 1929552669, "library": "libhip"}, {"name": "sceHiPlugClutBumpGetHead", "hash": "182d34a2e8cf2caf1ca77538838f73c027a3a1ea", "variant": 1929552669, "library": "libhip"}, {"name": "sceHiPlugTim2GetHead", "hash": "182d34a2e8cf2caf1ca77538838f73c027a3a1ea", "variant": 1929552669, "library": "libhip"}, {"name": "sceHiPlugAnimeGetHead", "hash": "182d34a2e8cf2caf1ca77538838f73c027a3a1ea", "variant": 1929552669, "library": "libhip"}, {"name": "sceHiPlugShareGetHead", "hash": "182d34a2e8cf2caf1ca77538838f73c027a3a1ea", "variant": 1929552669, "library": "libhip"}, {"name": "sceHiPlugSkinGetHead", "hash": "182d34a2e8cf2caf1ca77538838f73c027a3a1ea", "variant": 1929552669, "library": "libhip"}, {"name": "sceHiPlugClipGetHead", "hash": "182d34a2e8cf2caf1ca77538838f73c027a3a1ea", "variant": 1929552669, "library": "libhip"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006927872}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 84, "offset": 96, "next": [], "symbols": [{"name": "_alarm_rdata", "hash": "7d37c47e07c2012f49d938a4853efbf93b29aca1", "variant": 2888354326, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006766282}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 100, "offset": 112, "next": [], "symbols": [{"name": "TimerUSec2BusClock", "hash": "df11877703d0130a7a28c056bd6af075364b4421", "variant": 515014527, "library": "libkernl"}, {"name": "sceTimerUSec2BusClock", "hash": "df11877703d0130a7a28c056bd6af075364b4421", "variant": 515014527, "library": "libtimer"}]}}], "symbols": []}}, {"match": {"value": 813957374}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 80, "offset": 92, "next": [], "symbols": [{"name": "AlarmHandler", "hash": "204be2d3cc14f29e088eb5229d29565b9717ec5d", "variant": 549102534, "library": "libkernl"}, {"name": "AlarmHandler", "hash": "204be2d3cc14f29e088eb5229d29565b9717ec5d", "variant": 549102534, "library": "libtimer"}]}}], "symbols": []}}, {"match": {"value": 266754}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 32, "offset": 44, "next": [{"match": {"value": 1006796800}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 268435469}, "child": {"skip": 68, "offset": 120, "next": [], "symbols": [{"name": "iReleaseTimerAlarm", "hash": "60d307d13b92499fbd01edc690b2179d9412e53b", "variant": 1975022221, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006797062}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 268435469}, "child": {"skip": 68, "offset": 120, "next": [], "symbols": [{"name": "isceTimerReleaseAlarm", "hash": "90de0cf6d6b52a980aefffbeafa206e514d59c2f", "variant": 2173231167, "library": "libtimer"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604372999}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707472}, "child": {"skip": 72, "offset": 84, "next": [], "symbols": [{"name": "putnum", "hash": "d3be16bf441a9f017a2017eecbc3032344176d51", "variant": 1361630414, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 12587053}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2946760704}, "child": {"skip": 44, "offset": 56, "next": [], "symbols": [{"name": "sceVsnprintf", "hash": "513a7314e4cc120e6bb137f4306850805d43cfcb", "variant": 2288625381, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 334080}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 270784}, "child": {"skip": 64, "offset": 76, "next": [{"match": {"value": 2382495744}, "child": {"skip": 0, "offset": 80, "next": [{"match": {"value": 3752853504}, "child": {"skip": 8, "offset": 92, "next": [], "symbols": [{"name": "scePadGetFrameCount", "hash": "3ac40ba7ffbdd7efc2f39557640a13d0d6193557", "variant": 3709007397, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 2449604613}, "child": {"skip": 0, "offset": 80, "next": [{"match": {"value": 3752853504}, "child": {"skip": 8, "offset": 92, "next": [], "symbols": [{"name": "scePadGetReqState", "hash": "4fb654014cfb23687d2f3b774905f7615198288f", "variant": 3709007397, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 333952}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 270656}, "child": {"skip": 64, "offset": 76, "next": [{"match": {"value": 2382495744}, "child": {"skip": 0, "offset": 80, "next": [{"match": {"value": 3752853504}, "child": {"skip": 8, "offset": 92, "next": [], "symbols": [{"name": "scePadGetFrameCount", "hash": "79cffdd3f633a8758cef9226e76c1a9b5ff6e4d0", "variant": 3709007397, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 2449604613}, "child": {"skip": 0, "offset": 80, "next": [{"match": {"value": 3752853504}, "child": {"skip": 8, "offset": 92, "next": [], "symbols": [{"name": "scePadGetReqState", "hash": "79c11b6076dac6d0ac7b1e16d0ae701ce2fcb4a1", "variant": 3709007397, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8237}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 160, "offset": 172, "next": [], "symbols": [{"name": "sceSdRemoteInit", "hash": "db29a15bc19444b1317eaddfa048820d910a0740", "variant": 2316623483, "library": "libsdr"}]}}], "symbols": []}}, {"match": {"value": 604307467}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 148, "offset": 160, "next": [], "symbols": [{"name": "_sceCd_cd_callback", "hash": "a3e5dd9463f25f1d76b7e00c85a943d3e35da4dc", "variant": 3293842062, "library": "libcdvd"}, {"name": "cd_callback", "hash": "a3e5dd9463f25f1d76b7e00c85a943d3e35da4dc", "variant": 3293842062, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 1141071872}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 292, "offset": 304, "next": [], "symbols": [{"name": "__ieee754_log10f", "hash": "9cdd6c0580f19ffb907957c54f8e7ecf9f3a5941", "variant": 345469288, "library": "libm"}])PS2SDB", 8192}, + std::string_view{R"PS2SDB(}}], "symbols": []}}, {"match": {"value": 1174430726}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1141276672}, "child": {"skip": 24, "offset": 36, "next": [{"match": {"value": 339738654}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 4290707472}, "child": {"skip": 600, "offset": 644, "next": [], "symbols": [{"name": "__kernel_tanf", "hash": "db29371eebc1c8272f21694af9446fbad460ec96", "variant": 2493259884, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 339738656}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 4290707472}, "child": {"skip": 632, "offset": 676, "next": [], "symbols": [{"name": "__kernel_tanf", "hash": "f489197263df109953fab316ad0589da949fdcc8", "variant": 2763472586, "library": "libm"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1141202944}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 340, "offset": 352, "next": [], "symbols": [{"name": "scalbnf", "hash": "6438c997e4293cbbc11716437c584b977e36544b", "variant": 2647850530, "library": "libm"}, {"name": "scalbnf", "hash": "6438c997e4293cbbc11716437c584b977e36544b", "variant": 2647850530, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 1141727232}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1007648767}, "child": {"skip": 1028, "offset": 1040, "next": [], "symbols": [{"name": "__ieee754_acosf", "hash": "9885f9bf89a444d1394de90f766d6651475e3460", "variant": 2484298728, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 1141137408}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006796799}, "child": {"skip": 1028, "offset": 1040, "next": [], "symbols": [{"name": "__ieee754_acosf", "hash": "ac20466c2b2c689800ca56610d1f6b28da5c607c", "variant": 2484298728, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 1174429766}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724432}, "child": {"skip": 100, "offset": 112, "next": [{"match": {"value": 302121048}, "child": {"skip": 0, "offset": 116, "next": [{"match": {"value": 704774147}, "child": {"skip": 364, "offset": 484, "next": [], "symbols": [{"name": "__ieee754_atan2f", "hash": "d9ada6296295e7b958eb91501dcdde488fc266d2", "variant": 711906698, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 302121047}, "child": {"skip": 0, "offset": 116, "next": [{"match": {"value": 704774147}, "child": {"skip": 360, "offset": 480, "next": [], "symbols": [{"name": "__ieee754_atan2f", "hash": "1dd056887852dceead95174f9f059d7f7b30f7a8", "variant": 711906698, "library": "libm"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1141401600}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1174429702}, "child": {"skip": 732, "offset": 744, "next": [], "symbols": [{"name": "__ieee754_atan2f", "hash": "31d44a32c65281547128d60b3f6630adf031436f", "variant": 3514848948, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 8398893}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 10489901}, "child": {"skip": 40, "offset": 52, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__kernel_cos"}}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 0}, "child": {"skip": 232, "offset": 292, "next": [], "symbols": [{"name": "cos", "hash": "bc147c583a28cd31695b5355c80fc6e6c949e9f2", "variant": 479690123, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__kernel_sin"}}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 12333}, "child": {"skip": 248, "offset": 308, "next": [], "symbols": [{"name": "sin", "hash": "b91230cd9143bdfd9544cce9549192a80523a246", "variant": 1284919007, "library": "libm"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8392749}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 141375}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006862335}, "child": {"skip": 20, "offset": 36, "next": [{"match": {"value": 339738630}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 4290707472}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__kernel_cos"}}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 10285}, "child": {"skip": 212, "offset": 264, "next": [], "symbols": [{"name": "cos", "hash": "6562427fff5e5d66f614405c6b98e708ce1fd1f2", "variant": 2373451196, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 10285}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__kernel_sin"}}, "child": {"skip": 192, "offset": 244, "next": [], "symbols": [{"name": "sin", "hash": "155a7e97450b986ced91970ae0586ee36548a08f", "variant": 4116313662, "library": "libm"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 339738628}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 4290707472}, "child": {"skip": 100, "offset": 144, "next": [], "symbols": [{"name": "tan", "hash": "b36f45303670824b9205ee45d16567bbe91a6b5f", "variant": 1809193871, "library": "libm"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 60825645}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707472}, "child": {"skip": 32, "offset": 48, "next": [], "symbols": [{"name": "__make_fp", "hash": "cff6222ebeb795fdd58063a745bcaf923416d151", "variant": 2170860141, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10518573}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789960}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4290707472}, "child": {"skip": 76, "offset": 100, "next": [], "symbols": [{"name": "strrchr", "hash": "bfdd954b7734048b9411b3f7a7daae499fb6e55a", "variant": 2187115202, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4290707472}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2717908992}, "child": {"skip": 44, "offset": 68, "next": [], "symbols": [{"name": "X509_NAME_ENTRY_get_oid_buf", "hash": "1bbc9bccd3e50a50e9d1ba7157b14368908d64fc", "variant": 2400223651, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707472}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 278921222}, "child": {"skip": 44, "offset": 64, "next": [], "symbols": [{"name": "sceGpInitChain", "hash": "4f736957d7c3298f783f837c299512674076c136", "variant": 2410894442, "library": "libgp"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707472}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 604241919}, "child": {"skip": 8, "offset": 24, "next": [{"match": {"value": 2919235584}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 33562669}, "child": {"skip": 28, "offset": 60, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_initSeqAgain"}}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 33562669}, "child": {"skip": 20, "offset": 88, "next": [], "symbols": [{"name": "sceMpegReset", "hash": "8e1e3fff9d5338c698c593885cf6c2c5f7ea45e8", "variant": 2381053043, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 33562669}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 3753836560}, "child": {"skip": 12, "offset": 80, "next": [], "symbols": [{"name": "sceMpegReset", "hash": "e280a0a095e5c50c40670b4d162f729522720f64", "variant": 474828967, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2919239840}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 33562669}, "child": {"skip": 60, "offset": 92, "next": [], "symbols": [{"name": "sceMpegReset", "hash": "70f3982a17766bbaa6e744cb89715e8c8b9aedb1", "variant": 2641763968, "library": "libmpeg"}]}}], "symbols": []}}, {"match")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: {"value": 2919237752}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 33562669}, "child": {"skip": 92, "offset": 124, "next": [], "symbols": [{"name": "sceMpegReset", "hash": "2095572cd9e61635ec2a5ca32c78d5826a28c4fd", "variant": 292780058, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1174430534}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 60, "offset": 72, "next": [{"match": {"value": 268435599}, "child": {"skip": 0, "offset": 76, "next": [{"match": {"value": 1174407168}, "child": {"skip": 588, "offset": 668, "next": [], "symbols": [{"name": "atanf", "hash": "0c2de1f71cd8c5152e365246c50b15a251edffdc", "variant": 2547375815, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 268435595}, "child": {"skip": 0, "offset": 76, "next": [{"match": {"value": 1174407168}, "child": {"skip": 572, "offset": 652, "next": [], "symbols": [{"name": "atanf", "hash": "fda121362387ca7279a748df71ef883ccdb2b032", "variant": 3008006279, "library": "libm"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789960}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1007747072, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289855504}, "child": {"skip": 80, "offset": 96, "next": [], "symbols": [{"name": "memalign", "hash": "ed16043f08fb57e3ff8d85ca686985925d98892c", "variant": 434583716, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 1007583231}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289724416}, "child": {"skip": 704, "offset": 720, "next": [], "symbols": [{"name": "atanf", "hash": "8cfd90d2800960d7959b5d1816f1ecd70dee8db8", "variant": 1815643999, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 1006862335}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289724416}, "child": {"skip": 704, "offset": 720, "next": [], "symbols": [{"name": "atanf", "hash": "56300f59bd98aaa1ff073a0aa891ba294feb9674", "variant": 1815643999, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 8423469}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289724416}, "child": {"skip": 4, "offset": 20, "next": [{"match": {"value": 4290707480}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 35655725}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 141372}, "child": {"skip": 400, "offset": 432, "next": [], "symbols": [{"name": "__ieee754_log10", "hash": "56ad1de40d93152fc836e4c71257a0868b1e3de4", "variant": 794225446, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 2384592952}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 339738627}, "child": {"skip": 216, "offset": 248, "next": [], "symbols": [{"name": "__sfp", "hash": "b6051c1109e4a65876b8dd1497d9d035314dd47f", "variant": 484249310, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 371195916}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290707480}, "child": {"skip": 248, "offset": 276, "next": [], "symbols": [{"name": "fflush", "hash": "b300c2adf6be07b1b710167bb39fd596f676bcd8", "variant": 38336419, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 873562592}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1149948}, "child": {"skip": 140, "offset": 156, "next": [], "symbols": [{"name": "__floatdidf", "hash": "a094d4945a4a89a986f7eae53f7c1e6e785c55db", "variant": 1912756197, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 34861}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 35661869}, "child": {"skip": 104, "offset": 120, "next": [], "symbols": [{"name": "__fixdfdi", "hash": "cb900124f6e88cc29bcd437069e53e9fe72efff4", "variant": 381601822, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289855504}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707480}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "fptodp"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 0}, "child": {"skip": 268, "offset": 296, "next": [], "symbols": [{"name": "__fixunssfdi", "hash": "264848aded2c684ce382f33d50f44f4e83267a22", "variant": 1221973585, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "validate_structure"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 8423469}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2384723976}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2384855044}, "child": {"skip": 624, "offset": 660, "next": [], "symbols": [{"name": "mktime", "hash": "41ba430b1cb91edf40e96fee61274d64808ebaa9", "variant": 1508732620, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 2385182728}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 604966416}, "child": {"skip": 604, "offset": 640, "next": [], "symbols": [{"name": "mktime", "hash": "f790455d8594f406e8f84afe79dbd3f5a725e17a", "variant": 1808571631, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 343932940}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 8423469}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 3752853504}, "child": {"skip": 112, "offset": 148, "next": [{"match": {"value": 2922512384}, "child": {"skip": 0, "offset": 152, "next": [{"match": {"value": 8237}, "child": {"skip": 112, "offset": 268, "next": [], "symbols": [{"name": "fflush", "hash": "12604f6d3d610c30833472859653a6c1427e6f1b", "variant": 4080987072, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 8237}, "child": {"skip": 0, "offset": 152, "next": [{"match": {"value": 2922512384}, "child": {"skip": 112, "offset": 268, "next": [], "symbols": [{"name": "fflush", "hash": "6564456b8e9e6568c056192f446e4297d0582e7f", "variant": 4080987072, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1007616000, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 3752853504}, "child": {"skip": 232, "offset": 268, "next": [], "symbols": [{"name": "fflush", "hash": "ad40b4e3228ec6cc1d89fdcfd23967db7ba0fabd", "variant": 3716412641, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707472}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2357329976}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 339738627}, "child": {"skip": 132, "offset": 156, "next": [{"match": {"value": 8394797}, "child": {"skip": 0, "offset": 160, "next": [{"match": {"value": 2759983116}, "child": {"skip": 56, "offset": 220, "next": [], "symbols": [{"name": "__sfp", "hash": "15a8ca74a4d0af66a74ae48fca005706609909be", "variant": 3152161587, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 2895183956}, "child": {"skip": 0, "offset": 160, "next": [{"match": {"value": 2759983116}, "child": {"skip": 56, "offset": 220, "next": [], "symbols": [{"name": "__sfp", "hash": "da43949ef836ee2da0b0d46f4c4793f99f4b3ad5", "variant": 3152161587, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2358181944}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 367001603}, "child": {"skip": 192, "offset": 216, "next": [], "symbols": [{"name": "__sfp", "hash": "979ce2204b9d0575a865a2b2132834c6599fbf64", "variant": 3573462545, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8423469}, "child": {"skip": 0, "offset": 16, "next":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( [{"match": {"value": 4290707472}, "child": {"skip": 16, "offset": 36, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "lseek"}}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 14692397}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 604241919}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 1413677061}, "child": {"skip": 36, "offset": 88, "next": [], "symbols": [{"name": "_lseek_r", "hash": "100e4ffb29e00842c24792d97270cc98467bde21", "variant": 474195513, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 605028351}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 1414463493}, "child": {"skip": 36, "offset": 88, "next": [], "symbols": [{"name": "_lseek_r", "hash": "85998eecd0a3ddf155d41541f9089a06da6a29ae", "variant": 474195513, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "read"}}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 14692397}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 4200493}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 604307455}, "child": {"skip": 40, "offset": 92, "next": [], "symbols": [{"name": "_read_r", "hash": "20be149b757aa6c350beb0b12e04fe99c61c45e5", "variant": 3439164205, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4225069}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 604962815}, "child": {"skip": 40, "offset": 92, "next": [], "symbols": [{"name": "_read_r", "hash": "1c0010340b2b9a0061fe74ba1c4333c2d013708a", "variant": 3439164205, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "write"}}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 14692397}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 4200493}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 604307455}, "child": {"skip": 40, "offset": 92, "next": [], "symbols": [{"name": "_write_r", "hash": "20be149b757aa6c350beb0b12e04fe99c61c45e5", "variant": 1465448958, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4225069}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 604962815}, "child": {"skip": 40, "offset": 92, "next": [], "symbols": [{"name": "_write_r", "hash": "1c0010340b2b9a0061fe74ba1c4333c2d013708a", "variant": 1465448958, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707480}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289724416}, "child": {"skip": 40, "offset": 56, "next": [{"match": {"value": 30765}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "dpmul"}}, "child": {"skip": 200, "offset": 264, "next": [], "symbols": [{"name": "__fixunssfdi", "hash": "e6d13d8a4e1114b97c68dcd0b871049c9c2b10fe", "variant": 953931336, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 6189}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "dpmul"}}, "child": {"skip": 200, "offset": 264, "next": [], "symbols": [{"name": "__fixunssfdi", "hash": "878781b4f74700e51a2e8aade6b803c7bac6404f", "variant": 953931336, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10520621}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707472}, "child": {"skip": 156, "offset": 176, "next": [], "symbols": [{"name": "next_stack_level", "hash": "6f578bfa585375d68cadacca9c4210c92be0d094", "variant": 1525645274, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 773980192}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289855504}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 12619821}, "child": {"skip": 100, "offset": 128, "next": [], "symbols": [{"name": "_signal_r", "hash": "05833c5a8b0193e5706dca4314a5e8aa95059059", "variant": 2932217172, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4290707472}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 339738629}, "child": {"skip": 188, "offset": 216, "next": [], "symbols": [{"name": "_raise_r", "hash": "998c43bc1305a971dda85c8175406e3375f38bab", "variant": 3766161901, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855504}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10522669}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724416}, "child": {"skip": 688, "offset": 708, "next": [], "symbols": [{"name": "localtime_r", "hash": "88003500a057c48b9db234aa6822ab66f7d20333", "variant": 2732979815, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4290707480}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724416}, "child": {"skip": 672, "offset": 692, "next": [], "symbols": [{"name": "localtime_r", "hash": "8a6306a6e651e87481fa18e248ca5aafbed24dbd", "variant": 536773795, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8411181}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707472}, "child": {"skip": 808, "offset": 820, "next": [], "symbols": [{"name": "__ieee754_atan2", "hash": "4b0280158d64774576423168c122e5bfdedbb66a", "variant": 1114869600, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 8405037}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707472}, "child": {"skip": 156, "offset": 168, "next": [], "symbols": [{"name": "tan", "hash": "d6ab6cc7d5009c3f45ea723f6901c93d1bc25448", "variant": 2836368826, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 1006764047}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 392, "offset": 404, "next": [], "symbols": [{"name": "__ieee754_log10", "hash": "a8c68926ad66a1da3a207bd4226521bad01e5134", "variant": 3066471990, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 10285}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789960}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8423469}, "child": {"skip": 264, "offset": 280, "next": [], "symbols": [{"name": "__fixunsdfdi", "hash": "4c2d87b432684175777a006d0fdca66ed83c19ea", "variant": 306246734, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 4289855504}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8425517}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724416}, "child": {"skip": 240, "offset": 260, "next": [], "symbols": [{"name": "__fixunsdfdi", "hash": "8e6494f35548109492f885d08efb39ca4f3916ca", "variant": 931729776, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789960}, "child": {"skip": 28, "offset": 48, "next": [{"match": {"value": 6189}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "dpmul"}}, "child": {"skip": 200, "offset": 256, "next": [], "symbols": [{"name": "__fixunsdfdi", "hash": "44e96cee389825b59166030995a02db488511701", "variant": 792272472, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 30765}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "dpmul"}}, "child": {"skip": 200, "offset": 256, "next": [], "symbols": [{"name": "__fixunsdfdi", "hash": "ba7955827d2afbcebe18c8f994ce0f461616a496", "variant": 792272472, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 42)PS2SDB", 8192}, + std::string_view{R"PS2SDB(90707472}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceEENetGettimeofday"}}, "child": {"skip": 52, "offset": 68, "next": [], "symbols": [{"name": "__sceEENetres_randomid", "hash": "ae5c1c4731ee97a123271be3a0a66d0edc6907b5", "variant": 2057043629, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 604373264}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707472}, "child": {"skip": 32, "offset": 52, "next": [], "symbols": [{"name": "BN_CTX_init", "hash": "8e9874d03ac5e57edf3b014634cf0595b3fa1c1c", "variant": 1666654731, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604373056}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 60, "offset": 80, "next": [], "symbols": [{"name": "MD2_Init", "hash": "72979aa59a1dd57286e9b8beed17db4df52280c4", "variant": 2470804722, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604176383}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 135930}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289789960}, "child": {"skip": 216, "offset": 232, "next": [], "symbols": [{"name": "__floatdisf", "hash": "4c167c2130bbb2188359a0f8c66a96d0209a5a1b", "variant": 2430260708, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 604438527}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789960}, "child": {"skip": 372, "offset": 392, "next": [], "symbols": [{"name": "ungetc", "hash": "d713e072ddcb14abb9b3cd0f2c148f32a6e58f07", "variant": 653496595, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 10518573}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 771948576}, "child": {"skip": 132, "offset": 152, "next": [], "symbols": [{"name": "__sigtramp_r", "hash": "45155d4259588ff7e97fea8dfd1e699b7a0cbcb5", "variant": 803841333, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604174336}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855504}, "child": {"skip": 188, "offset": 200, "next": [], "symbols": [{"name": "__floatdisf", "hash": "88cc8bc3a84d55d5b5f1551b0646ad2ee42286ec", "variant": 744434984, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 604110851}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 270274}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707472}, "child": {"skip": 16, "offset": 32, "next": [{"match": {"value": 268435488}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 2946629632}, "child": {"skip": 96, "offset": 136, "next": [{"match": {"value": 6303789}, "child": {"skip": 0, "offset": 140, "next": [{"match": {"value": 10686507}, "child": {"skip": 40, "offset": 184, "next": [], "symbols": [{"name": "sitofp", "hash": "7be8a9e00068098e391c253ceba597a3023e40f7", "variant": 2593654541, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 10686507}, "child": {"skip": 0, "offset": 140, "next": [{"match": {"value": 0}, "child": {"skip": 40, "offset": 184, "next": [], "symbols": [{"name": "sitofp", "hash": "aeb45c554ce65965efe701147e390f8d758b04f8", "variant": 2593654541, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 268435486}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 2946629632}, "child": {"skip": 136, "offset": 176, "next": [], "symbols": [{"name": "sitofp", "hash": "dc6c9335b347145e6df5addb0e1d4651a8207cd1", "variant": 35085711, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707472}, "child": {"skip": 64, "offset": 80, "next": [], "symbols": [{"name": "crypto_sslc_digest_final", "hash": "20250bc4f26ed7dda54fd3e3a7dbecdbd16e6246", "variant": 1166413115, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855504}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1007812608, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289789960}, "child": {"skip": 172, "offset": 188, "next": [], "symbols": [{"name": "__deregister_frame_info", "hash": "f3d490b62c388939ee6112812aa293f9de10d278", "variant": 2964485628, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 10522669}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289724416}, "child": {"skip": 104, "offset": 120, "next": [], "symbols": [{"name": "__sfmoreglue", "hash": "bdf5e84b3b77cd8c40d73ecffde62ad254853e96", "variant": 262242564, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 348223}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789960}, "child": {"skip": 1696, "offset": 1708, "next": [], "symbols": [{"name": "__udivmoddi4", "hash": "5cad7ef1f5bb27fcda2ee72adde05d871ae2546b", "variant": 4156392571, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 2142240768}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 8421421}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 838991879}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 339738680}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2143223824}, "child": {"skip": 276, "offset": 300, "next": [], "symbols": [{"name": "strcat", "hash": "a9f8fc5d20cb1d4acdb94d203ff4dfc5baa0602d", "variant": 1051487945, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 339738684}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2143223824}, "child": {"skip": 292, "offset": 316, "next": [], "symbols": [{"name": "strcat", "hash": "b665e69a335bbaed8129f564c9afe33262c5f78c", "variant": 713382093, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2946760720}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2409758736}, "child": {"skip": 80, "offset": 96, "next": [], "symbols": [{"name": "__ptmf_test", "hash": "d3e1c512dfa739c9aa6be480f31539a9364c4695", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604241919}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789960}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8423469}, "child": {"skip": 376, "offset": 392, "next": [], "symbols": [{"name": "ungetc", "hash": "b1c641853c67242fd27fe6ac43f499ada9aae8c9", "variant": 653496595, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 372, "offset": 388, "next": [], "symbols": [{"name": "sceHiGsCtxUpdate", "hash": "907abd5e577343c525dff8c3edebb6db17a02caf", "variant": 1684308255, "library": "libhig"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 276543}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789960}, "child": {"skip": 412, "offset": 424, "next": [], "symbols": [{"name": "scalbn", "hash": "d4fba422139fe396b17fab32942a196eaa0863db", "variant": 755532223, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4141}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 244, "offset": 256, "next": [], "symbols": [{"name": "fclose", "hash": "3a177ba6d52c56165321d081abfb9585cbdaeb05", "variant": 2284243008, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 2143223808}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4288938000}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289003544}, "child": {"skip": 16, "offset": 32, "next": [{"match": {"value": 4198442}, "child": {"skip": 0, "offset)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": 36, "next": [{"match": {"value": 943849473}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 809631999}, "child": {"skip": 16, "offset": 60, "next": [], "symbols": [{"name": "_dpfge", "hash": "338fc43ae3067dddcc76a3b64cb4b8ade293ab22", "variant": 2380989290, "library": "gcc_wrapper"}]}}], "symbols": []}}, {"match": {"value": 809631999}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 2076114944}, "child": {"skip": 12, "offset": 56, "next": [], "symbols": [{"name": "_dpflt", "hash": "40122aea8e8dc60ecba7517fd90ed99136b80323", "variant": 2380989290, "library": "gcc_wrapper"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 135210}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 809631999}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 2076114944}, "child": {"skip": 12, "offset": 56, "next": [], "symbols": [{"name": "_dpfgt", "hash": "e9d7eac08c6ef8dae56ebc64f41547cadfe9dcca", "variant": 2380989290, "library": "gcc_wrapper"}]}}], "symbols": []}}, {"match": {"value": 943849473}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 809631999}, "child": {"skip": 16, "offset": 60, "next": [], "symbols": [{"name": "_dpfle", "hash": "4e1c4d95f5bcce985072a70be695c34d6839153a", "variant": 2380989290, "library": "gcc_wrapper"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 135211}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 809631999}, "child": {"skip": 16, "offset": 56, "next": [], "symbols": [{"name": "_dpfne", "hash": "82917eb82f3ea4604c90dc86e712a2f08820e7dc", "variant": 2380989290, "library": "gcc_wrapper"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2946760728}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2409758744}, "child": {"skip": 32, "offset": 48, "next": [], "symbols": [{"name": "_d_utod", "hash": "e1c1cbd22e2860eef80ff3e7d5dcec93473583b9", "variant": 1302971957, "library": "gcc_wrapper"}]}}], "symbols": []}}, {"match": {"value": 2946760720}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2409889808}, "child": {"skip": 24, "offset": 40, "next": [], "symbols": [{"name": "sceCccIsValidUTF8", "hash": "8c63eed0b88f6bcccf4c5a25d9aab1f6d2036231", "variant": 2173254863, "library": "libccc"}]}}], "symbols": []}}, {"match": {"value": 2812542992}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2543976464}, "child": {"skip": 96, "offset": 112, "next": [], "symbols": [{"name": "sceCccIsValidSJIS", "hash": "16bb37b09e9b3d20c75c550d82adc603ecfe9d48", "variant": 2799205318, "library": "libccc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604176704}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 16, "offset": 28, "next": [{"match": {"value": 2357331984}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4411416}, "child": {"skip": 152, "offset": 188, "next": [], "symbols": [{"name": "_skipMB0", "hash": "b2fff24f2ed2c0f8fb22412b1f33a8af781a10df", "variant": 3746732526, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2357332008}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4411416}, "child": {"skip": 152, "offset": 188, "next": [], "symbols": [{"name": "_skipMB0", "hash": "056ff5daab91b042f010f261dbcc5c31eae03593", "variant": 3746732526, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2357332000}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4411416}, "child": {"skip": 152, "offset": 188, "next": [], "symbols": [{"name": "_skipMB0", "hash": "365e19fdfcf12f5c58032c7f1d936963636828d1", "variant": 1364940541, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604307461}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 12, "offset": 24, "next": [{"match": {"value": 2919367092}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 33562669}, "child": {"skip": 68, "offset": 100, "next": [], "symbols": [{"name": "_sliceB", "hash": "33543035c904370b3562f8d344f1da6c73c8e857", "variant": 3429071035, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2919367116}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 33562669}, "child": {"skip": 68, "offset": 100, "next": [], "symbols": [{"name": "_sliceB", "hash": "f39fa79be18e8528487bca7a3d892f9af44c2265", "variant": 3429071035, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604241925}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 96, "offset": 108, "next": [], "symbols": [{"name": "_sliceB", "hash": "0aefd04d684cc9a8ecc75bbf96ece27b230b58e8", "variant": 3180457943, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 604307460}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 4, "offset": 16, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_nextBit"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8421421}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2919367012}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 33562669}, "child": {"skip": 464, "offset": 496, "next": [], "symbols": [{"name": "_pictureCodingExtension", "hash": "9a897267f5ecd55483e7d5525ef2d94d08ffdd2a", "variant": 3596498394, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2919367036}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 33562669}, "child": {"skip": 464, "offset": 496, "next": [], "symbols": [{"name": "_pictureCodingExtension", "hash": "7c363f0e9c41ddc85bf2b44d3f2b47d97fd4a81f", "variant": 3596498394, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceMpegNextBit"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8421421}, "child": {"skip": 460, "offset": 484, "next": [], "symbols": [{"name": "_pictureCodingExtension", "hash": "9a8048fef1591685c7d9beb4c0cc9a64583926b4", "variant": 708563893, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604176385}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 604307457}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707472}, "child": {"skip": 4, "offset": 24, "next": [{"match": {"value": 2919235816}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2382497872}, "child": {"skip": 128, "offset": 160, "next": [], "symbols": [{"name": "_groupOfPicturesHeader", "hash": "cd2577ac0507ea893a93e75344f60bcebc4763eb", "variant": 4045005923, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2919235840}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2382497896}, "child": {"skip": 128, "offset": 160, "next": [], "symbols": [{"name": "_groupOfPicturesHeader", "hash": "f669c9c5611f0f1418d725abb0440a36546b7757", "variant": 4045005923, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2919235836}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2382497888}, "child": {"skip": 128, "offset": 160, "next": [], "symbols": [{"name": "_groupOfPicturesHeader", "hash": "1bc10f4ec191a5f1b756edefb32949e913091dea", "variant": 3957491675, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707472}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 40, "offset": 60, "next": [], "symbols": [{"name": "cleanup", "hash": "fd54f231716aaba2a1a885048796d8215dcacfff", "variant": 77548979, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604307457}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 4, "offset": 16, "next": [{"matc)PS2SDB", 8192}, + std::string_view{R"PS2SDB(h": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_nextBit"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8421421}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 272629768}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2919368768}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_waitIpuIdle"}}, "child": {"skip": 160, "offset": 196, "next": [], "symbols": [{"name": "_quantMatrixExtension", "hash": "89a10b0738975c437e8feebd50d6b1939a72e383", "variant": 3751238318, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2919368792}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_waitIpuIdle"}}, "child": {"skip": 160, "offset": 196, "next": [], "symbols": [{"name": "_quantMatrixExtension", "hash": "d832bf3c5ddabace5d5646ecd4c27fc284a355a2", "variant": 3751238318, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 33562669}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_nextBit"}}, "child": {"skip": 112, "offset": 144, "next": [], "symbols": [{"name": "_copyrightExtension", "hash": "6dd78093cd31df5ac44f398b83f7ff539ce8dfb5", "variant": 3293193817, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceMpegNextBit"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8421421}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 272629772}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2919368784}, "child": {"skip": 200, "offset": 232, "next": [], "symbols": [{"name": "_quantMatrixExtension", "hash": "177be5063c979e488b7271c5f38d75f2aab4e9db", "variant": 3432497243, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 33562669}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceMpegNextBit"}}, "child": {"skip": 116, "offset": 148, "next": [], "symbols": [{"name": "_copyrightExtension", "hash": "73b217201e20aa8e95582a7cce6b0817b8d69e48", "variant": 786901453, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604241921}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707472}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_nextBit"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1007681536, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 148, "offset": 172, "next": [], "symbols": [{"name": "_quantMatrixExtension", "hash": "d0ae2da9c1542b1a14dff842c04e24bf7bbacace", "variant": 542283288, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "xcalloc"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 604307984}, "child": {"skip": 212, "offset": 236, "next": [], "symbols": [{"name": "sceHTTPCreate", "hash": "ddd4324c7b37917c14269ad7c13c286052b8908b", "variant": 3690657498, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604307457}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707472}, "child": {"skip": 72, "offset": 92, "next": [], "symbols": [{"name": "_sce_eenet_bind_ent_devm_rpcs", "hash": "2eabb3ea1937d1626c8a728a666c067a03519ee6", "variant": 1807632841, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10500141}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 4, "offset": 16, "next": [{"match": {"value": 281018390}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8421421}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2382496116}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604176387}, "child": {"skip": 112, "offset": 144, "next": [], "symbols": [{"name": "_outputFrame", "hash": "abc2922f84b8f4d07984951a98c59ffd24b78bbd", "variant": 347247991, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2382496140}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604176387}, "child": {"skip": 112, "offset": 144, "next": [], "symbols": [{"name": "_outputFrame", "hash": "e5252d664c706997eebdd145e22528befcbc5ff6", "variant": 347247991, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2382496132}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604176387}, "child": {"skip": 112, "offset": 144, "next": [], "symbols": [{"name": "_sceMpegOutputFrame", "hash": "404e76cc0e006418ef3f1bb991b09d9321270735", "variant": 347247991, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8421421}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2382758000}, "child": {"skip": 320, "offset": 344, "next": [], "symbols": [{"name": "sceHiGsCtxSend", "hash": "4d1774201726d1b1e77f6a4e5f0420aeb50653d2", "variant": 2948803899, "library": "libhig"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006768128}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 360, "offset": 372, "next": [], "symbols": [{"name": "_ch3dmaCSC", "hash": "3f927977f3c236d739d61870f68f68f61d9dd5de", "variant": 1285197924, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 18477}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707472}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 276824084}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724416}, "child": {"skip": 96, "offset": 116, "next": [], "symbols": [{"name": "_dispatchMpegCallback", "hash": "f95cacbdfabab4a548f131a4c7ece6642a425e3c", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 276824085}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724416}, "child": {"skip": 100, "offset": 120, "next": [], "symbols": [{"name": "_sceMpegDispatchMpegCallback", "hash": "ca9933bc1897ce1a05ab9ba1d97882661fb4d22d", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 612632719}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 164, "offset": 176, "next": [{"match": {"value": 1006899200}, "child": {"skip": 0, "offset": 180, "next": [{"match": {"value": 878968831}, "child": {"skip": 56, "offset": 240, "next": [], "symbols": [{"name": "_sendDataToIPU", "hash": "70d4e2edc4653f410a7d27347b1ddeb44d59b7c9", "variant": 4076986166, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 1006964736}, "child": {"skip": 0, "offset": 180, "next": [{"match": {"value": 878968831}, "child": {"skip": 72, "offset": 256, "next": [], "symbols": [{"name": "_sendDataToIPU", "hash": "5819de386cde69a23806d3960f9248ad14f44aa2", "variant": 1138273460, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 612635023}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 244, "offset": 256, "next": [], "symbols": [{"name": "_sendDataToIPU", "hash": "eae07bc6cb2e7f219e2ed5d0d630b56bd674e0fe", "variant": 1138273460, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 612632683}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 228, "offset": 240, "next": [], "symbols": [{"name": "_sendDataToIPU", "hash": "37fe8ba7671ecc5bdcc82c86e95d7de4330405ff", "variant": 4076986166, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 604307488}, "child": {"skip": 0, "offset": 8, "next")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: [{"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8421421}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707472}, "child": {"skip": 4, "offset": 24, "next": [{"match": {"value": 2919235796}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4200493}, "child": {"skip": 260, "offset": 292, "next": [], "symbols": [{"name": "_sequenceHeader", "hash": "13aba76c04951ec11bd656fe3359acf1b88937e6", "variant": 3988720023, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2919235820}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4200493}, "child": {"skip": 260, "offset": 292, "next": [], "symbols": [{"name": "_sequenceHeader", "hash": "7f6a20c1b9bfa1c69d35b5aacf9948b12f9d4d34", "variant": 3988720023, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 12333}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 308, "offset": 328, "next": [], "symbols": [{"name": "ssl3_shutdown", "hash": "f4d4530e65a1449b3db4d8aa745e446631640651", "variant": 2363575369, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604307459}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707472}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_nextBit"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8421421}, "child": {"skip": 52, "offset": 76, "next": [{"match": {"value": 2919366980}, "child": {"skip": 0, "offset": 80, "next": [{"match": {"value": 33562669}, "child": {"skip": 56, "offset": 140, "next": [], "symbols": [{"name": "_sequenceDisplayExtension", "hash": "626ae66a1033eacb295b09963daf081269ffd81c", "variant": 2104515615, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2919367004}, "child": {"skip": 0, "offset": 80, "next": [{"match": {"value": 33562669}, "child": {"skip": 56, "offset": 140, "next": [], "symbols": [{"name": "_sequenceDisplayExtension", "hash": "d98256daccc4ba402aa4842e09829ff6fea2626e", "variant": 2104515615, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceMpegNextBit"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8421421}, "child": {"skip": 116, "offset": 140, "next": [], "symbols": [{"name": "_sequenceDisplayExtension", "hash": "bcceaf2aec5f07d7e7bf365a9dc2623fd4c61879", "variant": 3358283439, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sce_eenet_dhclient_make_request"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8421421}, "child": {"skip": 104, "offset": 128, "next": [], "symbols": [{"name": "selecting", "hash": "933300cb102f531ae06e78c14310024301c51a21", "variant": 4019097413, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707472}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 60829741}, "child": {"skip": 72, "offset": 88, "next": [], "symbols": [{"name": "R_time_to_int", "hash": "b69f13e98ab341fae3b5fd4c61955344c7e5f365", "variant": 351418575, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 818086128}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707472}, "child": {"skip": 164, "offset": 176, "next": [], "symbols": [{"name": "sceMSIn_PutMsg", "hash": "8741a16ed45f97291fd05268d60e7f0829d44959", "variant": 3578339698, "library": "libmsin"}]}}], "symbols": []}}, {"match": {"value": 22573}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 748814338}, "child": {"skip": 388, "offset": 400, "next": [], "symbols": [{"name": "sceCccUTF8toUTF16", "hash": "4cea8c98adcc0ec7b965575581698eb2223d46da", "variant": 869080809, "library": "libccc"}]}}], "symbols": []}}, {"match": {"value": 8409133}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2946891796}, "child": {"skip": 428, "offset": 440, "next": [], "symbols": [{"name": "sceCccUTF16toUTF8", "hash": "113f6e29bd6f0a55cb3a09560f90e0b3dda6b20c", "variant": 3590404890, "library": "libccc"}]}}], "symbols": []}}, {"match": {"value": 753008656}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 339738627}, "child": {"skip": 12, "offset": 24, "next": [{"match": {"value": 887226528}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2745696257}, "child": {"skip": 48, "offset": 80, "next": [], "symbols": [{"name": "sceSEIn_MakeNoteOn", "hash": "f008b92496c8773f713c0c41209fda229a037e47", "variant": 518150868, "library": "libsein"}]}}], "symbols": []}}, {"match": {"value": 887226512}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2745696257}, "child": {"skip": 48, "offset": 80, "next": [], "symbols": [{"name": "sceSEIn_MakeNoteOnZero", "hash": "09de5aedbfd8f1cba24824163651179f9d9c0944", "variant": 518150868, "library": "libsein"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 18898989}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707472}, "child": {"skip": 24, "offset": 36, "next": [{"match": {"value": 887292064}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 135618}, "child": {"skip": 56, "offset": 100, "next": [], "symbols": [{"name": "sceSEIn_MakePitchOn", "hash": "4d5541c044a6258a16d384de5b98fcb0cd92220c", "variant": 3117506256, "library": "libsein"}]}}], "symbols": []}}, {"match": {"value": 887292048}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 135618}, "child": {"skip": 56, "offset": 100, "next": [], "symbols": [{"name": "sceSEIn_MakePitchOnZero", "hash": "0629e7c3be4c15d9c57672d7d3f9ef5b325ad783", "variant": 3117506256, "library": "libsein"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604111040}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 604176415}, "child": {"skip": 36, "offset": 48, "next": [], "symbols": [{"name": "sceSEIn_MakeAllNoteOff", "hash": "635d5afc21036a678b0d79e01e1fb2dcc0e8aaa3", "variant": 2524825623, "library": "libsein"}]}}], "symbols": []}}, {"match": {"value": 8394797}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707472}, "child": {"skip": 72, "offset": 88, "next": [{"match": {"value": 339738644}, "child": {"skip": 0, "offset": 92, "next": [{"match": {"value": 3753836560}, "child": {"skip": 88, "offset": 184, "next": [], "symbols": [{"name": "sceHiDMAInit", "hash": "0025c39d328e10c1ba897deff4cf8194d8d2537e", "variant": 3196450589, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 339738645}, "child": {"skip": 0, "offset": 92, "next": [{"match": {"value": 3753836560}, "child": {"skip": 92, "offset": 188, "next": [], "symbols": [{"name": "sceHiDMAInit", "hash": "b330ffcf51371e4b55339794089d4b278190719e", "variant": 3211114323, "library": "libhig"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707472}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 341835779}, "child": {"skip": 100, "offset": 116, "next": [], "symbols": [{"name": "BIO_pop", "hash": "2ca993fc00e35255f7d96a89f2d29f6e962abf9f", "variant": 285390825, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10534957}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789968}, "child": {"skip": 712, "offset": 724, "next": [], "symbols": [{"name": "sceHiGsEnvSetRegDimx", "hash": "e54143941f00120440d362c6beff1c542a04fa8d", "variant": 0, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 2143223824}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2142240768}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 268435466}, "child": {"skip": 0, "offset": 16, "next":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( [{"match": {"value": 0}, "child": {"skip": 72, "offset": 92, "next": [], "symbols": [{"name": "__destroy_global_chain", "hash": "f2a30c8fbac7ea99b4ca0f7a3c26fa9f7b0ff4c1", "variant": 1825841125, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 1887471144}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 301989898}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1912608296}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 332860}, "child": {"skip": 44, "offset": 76, "next": [], "symbols": [{"name": "__dt__Q23std9exceptionFv", "hash": "0dd545c0dbed4990628ea4ba42a580a49d9a8e58", "variant": 4260235846, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 332860}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 44, "offset": 76, "next": [], "symbols": [{"name": "__dt__Q23std9exceptionFv", "hash": "864a3117ae9b55485553e9d710df8d8ce0a27089", "variant": 482026147, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 301989903}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1912608296}, "child": {"skip": 40, "offset": 64, "next": [{"match": {"value": 1912612392}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__dl__FPv"}}, "child": {"skip": 24, "offset": 96, "next": [], "symbols": [{"name": "__dt__Q23std9bad_allocFv", "hash": "0a652c21200e91e6492bd54f54ed07f3be5e0f4b", "variant": 2123581395, "library": "mslgcc_ps2"}, {"name": "__dt__Q23std13bad_exceptionFv", "hash": "0a652c21200e91e6492bd54f54ed07f3be5e0f4b", "variant": 2123581395, "library": "mslgcc_ps2"}, {"name": "__dt__Q23std8bad_castFv", "hash": "0a652c21200e91e6492bd54f54ed07f3be5e0f4b", "variant": 2123581395, "library": "mslgcc_ps2"}, {"name": "__dt__Q23std10bad_typeidFv", "hash": "0a652c21200e91e6492bd54f54ed07f3be5e0f4b", "variant": 2123581395, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 0}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__dl__FPv"}}, "child": {"skip": 24, "offset": 96, "next": [], "symbols": [{"name": "__dt__Q23std9bad_allocFv", "hash": "4cf24ed6d870a05f7731f0f2eca98d8f990698c7", "variant": 2123581395, "library": "mslgcc_ps2"}, {"name": "__dt__Q23std13bad_exceptionFv", "hash": "4cf24ed6d870a05f7731f0f2eca98d8f990698c7", "variant": 2123581395, "library": "mslgcc_ps2"}, {"name": "__dt__Q23std10bad_typeidFv", "hash": "4cf24ed6d870a05f7731f0f2eca98d8f990698c7", "variant": 2123581395, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2946760712}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2946826256}, "child": {"skip": 72, "offset": 84, "next": [], "symbols": [{"name": "__register_global_object", "hash": "425748337b61509724cd7e6dedd4d7ec5b45a91a", "variant": 1657576512, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 10491949}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707472}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2423259144}, "child": {"skip": 48, "offset": 68, "next": [], "symbols": [{"name": "sceGpCopyPacket", "hash": "fe4331dfb4c31b981118996096446a0aa4e7784b", "variant": 659972183, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 604569601}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 60827693}, "child": {"skip": 68, "offset": 88, "next": [], "symbols": [{"name": "_reset_problem_patch", "hash": "6c07b3f2c7ec02f77889d822940723be7d474c2b", "variant": 798833088, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 281018371}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2946957312}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 268435474}, "child": {"skip": 84, "offset": 108, "next": [], "symbols": [{"name": "__sceEENetsysctl_rdint", "hash": "bc29908e999c3f822dfb353a79cdc966563c8a90", "variant": 1539261371, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289134592}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 268435474}, "child": {"skip": 84, "offset": 108, "next": [], "symbols": [{"name": "__sceEENetsysctl_rdquad", "hash": "5163e8b29ccb3a5db3c8627a251396ff19879540", "variant": 1539261371, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604110911}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789968}, "child": {"skip": 196, "offset": 208, "next": [], "symbols": [{"name": "sceGpInitLoadImage", "hash": "a4856575611b7617f3bb9530b851eefc31a88128", "variant": 0, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 1879053481}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 272, "offset": 284, "next": [], "symbols": [{"name": "sceGpInitLoadImage", "hash": "fe2aaecc6b58664bec832217820bdc236d83f1a9", "variant": 3612277272, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 816251135}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 1092, "offset": 1104, "next": [], "symbols": [{"name": "ControlChangeMessage", "hash": "5eda6a944c990d6dd272234ebe4ae41b939b5f39", "variant": 1961335016, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 604307968}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 104, "offset": 116, "next": [], "symbols": [{"name": "sceSpu2StreamEnvInit", "hash": "615c156ce19421956146f45ca90563b9f68945c5", "variant": 1893793761, "library": "librspu2"}]}}], "symbols": []}}, {"match": {"value": 1006797057}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789960}, "child": {"skip": 196, "offset": 208, "next": [], "symbols": [{"name": "sceMc2End", "hash": "bfc3482b40cd94c5f568fccc7d933b450e73f8a2", "variant": 3630051948, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 604307503}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 96, "offset": 108, "next": [], "symbols": [{"name": "isCorrNameSize", "hash": "806057472d55dd790d1957aedafb2aed517c2cc6", "variant": 1841536572, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 604113048}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 124, "offset": 136, "next": [], "symbols": [{"name": "_sceMcFatFlushFatCache", "hash": "5903098420a17c61694b2fd3fcb7377a41d52c14", "variant": 694710132, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 1007026432}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 885391361}, "child": {"skip": 48, "offset": 60, "next": [], "symbols": [{"name": "sceHiPlugCameraGetData", "hash": "790f6e2692a308b90521638032a8bac21173c929", "variant": 189763635, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 4290641936}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707480}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 60878893}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2948857856}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": ""}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 0}, "child": {"skip": 92, "offset": 120, "next": [], "symbols": [{"name": "sceNetGlueAbortResolver", "hash": "03e376b2c37fd978db47c522383654985826aadc", "variant": 4266435400, "library": "netglue_insck"}]}}], "symbols": []}}, {"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "chil)PS2SDB", 8192}, + std::string_view{R"PS2SDB(d": {"skip": 0, "offset": 24, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 36, "offset": 64, "next": [], "symbols": [{"name": "sceNetGlueInetAddr", "hash": "9a54f1624b7830ec86fdf3e1609c7e006704289f", "variant": 4286110909, "library": "netglue_insck"}, {"name": "sceNetGlueInetLnaof", "hash": "9a54f1624b7830ec86fdf3e1609c7e006704289f", "variant": 4286110909, "library": "netglue_insck"}, {"name": "sceNetGlueInetNetof", "hash": "9a54f1624b7830ec86fdf3e1609c7e006704289f", "variant": 4286110909, "library": "netglue_insck"}, {"name": "sceNetGlueInetNetwork", "hash": "9a54f1624b7830ec86fdf3e1609c7e006704289f", "variant": 4286110909, "library": "netglue_insck"}, {"name": "sceNetGlueHtonl", "hash": "9a54f1624b7830ec86fdf3e1609c7e006704289f", "variant": 4286110909, "library": "netglue_insck"}, {"name": "sceNetGlueNtohl", "hash": "9a54f1624b7830ec86fdf3e1609c7e006704289f", "variant": 4286110909, "library": "netglue_insck"}]}}], "symbols": []}}, {"match": {"value": 2411855872}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 71368711}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 0}, "child": {"skip": 124, "offset": 156, "next": [], "symbols": [{"name": "sceNetGlueAbort", "hash": "804b7eb3e8a23e1743f5d813aafe377c2f73c405", "variant": 1883651520, "library": "netglue_insck"}]}}], "symbols": []}}, {"match": {"value": 809894143}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2411855872}, "child": {"skip": 100, "offset": 132, "next": [], "symbols": [{"name": "sceNetGlueInetNtoa", "hash": "9f6bc21deddd8c54395a34bc944256936d7cdea1", "variant": 2561441214, "library": "netglue_insck"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2948923396}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 36, "offset": 68, "next": [], "symbols": [{"name": "sceNetGlueInetMakeaddr", "hash": "f02b2cc59a431b6498fded456bfed6d2bd629313", "variant": 3484274910, "library": "netglue_insck"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": ""}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 0}, "child": {"skip": 228, "offset": 260, "next": [], "symbols": [{"name": "sceNetGlueShutdown", "hash": "bc6fd5075fbfe2f86fc8f3e9b3a80740225a909d", "variant": 1238058628, "library": "netglue_insck"}]}}], "symbols": []}}, {"match": {"value": 2948988936}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 36, "offset": 72, "next": [], "symbols": [{"name": "sceNetGlueGethostbyaddr", "hash": "edd33585aa76957a31a04e925bc81aa8c691cc88", "variant": 3461189776, "library": "netglue_insck"}]}}], "symbols": []}}, {"match": {"value": 2948595724}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 40, "offset": 76, "next": [], "symbols": [{"name": "sceNetGlueAccept", "hash": "170f1ca8b44fd122b15a7e2e5a728e11e1adbb1b", "variant": 302189138, "library": "netglue_insck"}, {"name": "sceNetGlueBind", "hash": "170f1ca8b44fd122b15a7e2e5a728e11e1adbb1b", "variant": 302189138, "library": "netglue_insck"}, {"name": "sceNetGlueGetpeername", "hash": "170f1ca8b44fd122b15a7e2e5a728e11e1adbb1b", "variant": 302189138, "library": "netglue_insck"}, {"name": "sceNetGlueGetsockname", "hash": "170f1ca8b44fd122b15a7e2e5a728e11e1adbb1b", "variant": 302189138, "library": "netglue_insck"}]}}], "symbols": []}}, {"match": {"value": 2411921408}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 604110850}, "child": {"skip": 216, "offset": 252, "next": [], "symbols": [{"name": "sceNetGlueSocket", "hash": "d33f297360c20b3b52b11851328539f00493e8cf", "variant": 3757577932, "library": "netglue_insck"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2948595720}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 40, "offset": 72, "next": [], "symbols": [{"name": "sceNetGlueListen", "hash": "0c16592c044878f0462ba232903953b0acd0550d", "variant": 3461189776, "library": "netglue_insck"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8392749}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2814509056}, "child": {"skip": 44, "offset": 68, "next": [], "symbols": [{"name": "sceNetGlueNtohs", "hash": "842c4f61d36348510e1130befa07db2a54ba9394", "variant": 3484274910, "library": "netglue_insck"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 60878893}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2948857856}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4141}, "child": {"skip": 20, "offset": 40, "next": [], "symbols": [{"name": "sceNetGlueThreadInit", "hash": "2cd67210935cf6e9782733d442556df7cc412ed6", "variant": 0, "library": "netglue_insck"}, {"name": "sceNetGlueThreadTerminate", "hash": "2cd67210935cf6e9782733d442556df7cc412ed6", "variant": 0, "library": "netglue_insck"}]}}], "symbols": []}}, {"match": {"value": 8392749}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2814509056}, "child": {"skip": 52, "offset": 72, "next": [], "symbols": [{"name": "sceNetGlueHtons", "hash": "575fc39ac28b58068c56749fa6866e7d8b63539f", "variant": 0, "library": "netglue_insck"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604700671}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 216, "offset": 228, "next": [], "symbols": [{"name": "sce_callback", "hash": "f99c433705c9263d8fd4cc0e3ca8913a249ca0fc", "variant": 298071218, "library": "netcnfif"}]}}], "symbols": []}}, {"match": {"value": 604312384}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 104, "offset": 116, "next": [], "symbols": [{"name": "sceNetcnfifDataInit", "hash": "5e948e63d2832a30a23ee9017abaf6dd0f771066", "variant": 2466940978, "library": "netcnfif"}]}}], "symbols": []}}, {"match": {"value": 746717192}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707472}, "child": {"skip": 96, "offset": 108, "next": [], "symbols": [{"name": "__sceEENetbpfopen", "hash": "fb318539445c21ad0c1e91d78401063b7f94ec17", "variant": 1673640879, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 604176386}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 84, "offset": 96, "next": [], "symbols": [{"name": "sppp_ipcp_tlu", "hash": "3f0849d3d4d80c79ea2a08ed46b6583f3241a9f4", "variant": 2524206575, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 872661027}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 140, "offset": 152, "next": [], "symbols": [{"name": "sppp_pap_open", "hash": "df322b9d8fc51016958da724aef0c15a27132798", "variant": 1459033153, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 814088447}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707472}, "child": {"skip": 172, "offset": 184, "next": [], "symbols": [{"name": "sppp_ipcp_opt_name", "hash": "db22fb3c0ddca4a97946ebeeb5a8a3e3e616f146", "variant": 1054325881, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 814153727}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707472}, "child": {"skip": 172, "offset": 184, "next": [], "symbols": [{"name": "sppp_proto_name", "hash": "112c397defdbcb82b814f57a5bf6f430a5eae4aa", "variant": 1991036391, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 604110852}, )PS2SDB", 8192}, + std::string_view{R"PS2SDB("child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707472}, "child": {"skip": 164, "offset": 176, "next": [], "symbols": [{"name": "__sceEENettcp_notify", "hash": "e69cc348282de4529ecd4645d32aebc74c8d8c98", "variant": 3710281915, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 604110849}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707472}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 279052448}, "child": {"skip": 1136, "offset": 1156, "next": [], "symbols": [{"name": "__sceEENettcp_timers", "hash": "2408904b8ba9c4d4ec4082480d4f5650e5aab945", "variant": 2793104164, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 10285}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 224, "offset": 244, "next": [], "symbols": [{"name": "EVP_CIPHER_CTX_init", "hash": "d2fc93e0f5c20e7f944461d1992f31d96fefcca2", "variant": 239480472, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 12333}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707472}, "child": {"skip": 36, "offset": 48, "next": [], "symbols": [{"name": "sceEENetInetAddr", "hash": "13401d602dfc16da99e20daeb0f80c571f250711", "variant": 150396718, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2357395456}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 132, "offset": 144, "next": [], "symbols": [{"name": "ns_name_skip", "hash": "cefa36f72308805e6d6ad738fed44ca454df5be4", "variant": 2379649529, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 604110854}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 10498093}, "child": {"skip": 64, "offset": 76, "next": [], "symbols": [{"name": "_sce_eenet_dhclient_getmac", "hash": "aadebbfe450293073eb2888ffe78ee26e4e1bc3a", "variant": 2687975906, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 604110876}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 264, "offset": 276, "next": [], "symbols": [{"name": "handle_ip", "hash": "fcc2d0c1e1aaaaef2c0052d7cecd326381ff6e8c", "variant": 77022255, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 746717312}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 272629768}, "child": {"skip": 220, "offset": 232, "next": [], "symbols": [{"name": "sceEENetInetMakeaddr", "hash": "afa0d411332f8b2b322e16841858c8858195a591", "variant": 1272121213, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 604110871}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 184, "offset": 196, "next": [], "symbols": [{"name": "create_cert_time", "hash": "837b77f6e525b5954b5e34ede001654bbfb727d1", "variant": 220831225, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604176417}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 116, "offset": 128, "next": [], "symbols": [{"name": "asn1_Finish", "hash": "4ebf619716ac78c8ac8e6c246906734123d0458c", "variant": 906278470, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2946957312}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707472}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "BIO_int_ctrl", "hash": "5285ec9d7cafb32b9059434f3d63fd53126706a0", "variant": 799404911, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 6189}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 68, "offset": 80, "next": [], "symbols": [{"name": "file_write", "hash": "a038232566aedd23ce79a2f02bab1340c40a9b10", "variant": 557266013, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 10493997}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 60, "offset": 72, "next": [], "symbols": [{"name": "crypto_sslc_ecdh_key_exch_phase_1", "hash": "31b107d35ced7df0eedd7b0e7f2078a1d2fdb29b", "variant": 1717399434, "library": "libhttps"}, {"name": "crypto_sslc_null_key_exch_phase_1", "hash": "31b107d35ced7df0eedd7b0e7f2078a1d2fdb29b", "variant": 1717399434, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 14688301}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 60, "offset": 72, "next": [], "symbols": [{"name": "crypto_sslc_ecdh_key_exch_phase_2", "hash": "a86369423a35134507a0420f97c6b173f5a1b6d0", "variant": 1717399434, "library": "libhttps"}, {"name": "crypto_sslc_null_key_exch_phase_2", "hash": "a86369423a35134507a0420f97c6b173f5a1b6d0", "variant": 1717399434, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 20525}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 236, "offset": 248, "next": [], "symbols": [{"name": "add_hash", "hash": "7a2df294fa161f3fc35b66488f7f239a211389f9", "variant": 3618933473, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 10504237}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707472}, "child": {"skip": 256, "offset": 268, "next": [], "symbols": [{"name": "op_maths", "hash": "52d1e6b75582a3894b827fb5c41afb45fa4eb798", "variant": 1526511735, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604111106}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 176, "offset": 188, "next": [], "symbols": [{"name": "pk_rsa_get", "hash": "0e447fcf5d92be84b6787c19073fafeaf25476c7", "variant": 2794173484, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 8402989}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2946826240}, "child": {"skip": 76, "offset": 88, "next": [], "symbols": [{"name": "R_time_from_int", "hash": "e801a1d2fd4a2f0e4d73895b21212dfd1bfd597f", "variant": 2081569414, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604180544}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 104, "offset": 116, "next": [], "symbols": [{"name": "client_finished", "hash": "c46d0530b7ad35eece4222b34449e87705a1c2b5", "variant": 1423213783, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604176500}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 68, "offset": 80, "next": [], "symbols": [{"name": "SSL_EVP_PKEY_bits", "hash": "d9f55e515f77e7cdfb81469e99a42bdf4398dc6a", "variant": 554878915, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 1006829567}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 135230}, "child": {"skip": 12, "offset": 24, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceEENetInetLnaof"}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 8527908}, "child": {"skip": 12, "offset": 44, "next": [], "symbols": [{"name": "sceNetGlueInetLnaof", "hash": "02ccc12b883cbec0d6dbb2e1a1738dcaa36da2b1", "variant": 4138910143, "library": "netglue_eenet"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceEENetInetNetof"}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 8527908}, "child": {"skip": 12, "offset": 44, "next": [], "symbols": [{"name": "sceNetGlueInetNetof", "hash": "02ccc12b883cbec0d6dbb2e1a1738dcaa36da2b1", "variant": 1100903493, "library": "netglue_eenet"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceEENetInetNtoa"}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 8527908}, "child": {"skip": 12, "offset": 44, "next": [], "symbols": [{"name": "sceNetGlueInetNtoa", "hash": "02ccc12b883cbec0d6dbb2e1a1738dcaa36da2b1", "variant": 3322837553, "library": "netglue_eenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604176320}, "child": {"skip": 0,)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "offset": 8, "next": [{"match": {"value": 4290707472}, "child": {"skip": 112, "offset": 124, "next": [], "symbols": [{"name": "CallRpc", "hash": "aa23f97c2794937da00e176ea59b7c596b4c3e6e", "variant": 1711719509, "library": "libnet"}]}}], "symbols": []}}, {"match": {"value": 604504068}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 12, "offset": 24, "next": [{"match": {"value": 604307458}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2919694340}, "child": {"skip": 40, "offset": 72, "next": [], "symbols": [{"name": "sceInetOpen", "hash": "452271b844833753baf550e4012f63a015624d09", "variant": 781903051, "library": "libnet"}]}}], "symbols": []}}, {"match": {"value": 604307459}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2919694340}, "child": {"skip": 40, "offset": 72, "next": [], "symbols": [{"name": "sceInetClose", "hash": "a6cff6f96af795cd164f2373913a2ea22f243f7e", "variant": 781903051, "library": "libnet"}]}}], "symbols": []}}, {"match": {"value": 604307471}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2919694340}, "child": {"skip": 40, "offset": 72, "next": [], "symbols": [{"name": "sceInetAbort", "hash": "add1a5d03d7a456b5b3c0c495e452c6e1ca14a05", "variant": 781903051, "library": "libnet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604438532}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 16, "offset": 28, "next": [{"match": {"value": 604307468}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "CallRpc"}}, "child": {"skip": 32, "offset": 68, "next": [], "symbols": [{"name": "sceInetChangeThreadPriority", "hash": "888cce207faae4d58a5ba26e8f1f9c4f039f6d95", "variant": 3995307613, "library": "libnet"}]}}], "symbols": []}}, {"match": {"value": 604307506}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "CallRpc"}}, "child": {"skip": 32, "offset": 68, "next": [], "symbols": [{"name": "sceInetCtlUpInterface", "hash": "97d576fcc6e90dee8344b74d149b554ae98e71da", "variant": 3995307613, "library": "libnet"}]}}], "symbols": []}}, {"match": {"value": 604307507}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "CallRpc"}}, "child": {"skip": 32, "offset": 68, "next": [], "symbols": [{"name": "sceInetCtlDownInterface", "hash": "0b58ff8b4bf3d622e3329bc18776e81ce1d8e936", "variant": 3995307613, "library": "libnet"}]}}], "symbols": []}}, {"match": {"value": 604307508}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "CallRpc"}}, "child": {"skip": 32, "offset": 68, "next": [], "symbols": [{"name": "sceInetCtlSetAutoMode", "hash": "76775b0784a6aeb1cb7b129449d1bcbf8ed9a1e3", "variant": 3995307613, "library": "libnet"}]}}], "symbols": []}}, {"match": {"value": 604307488}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "CallRpc"}}, "child": {"skip": 32, "offset": 68, "next": [], "symbols": [{"name": "sceLibnetSetConfiguration", "hash": "9d536da1bf6a1dbb75c09be09aef19ff8b941afd", "variant": 3995307613, "library": "libnet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 14381}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 12, "offset": 24, "next": [{"match": {"value": 604307472}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "CallRpc"}}, "child": {"skip": 32, "offset": 64, "next": [], "symbols": [{"name": "sceInetAbortLog", "hash": "06be39686d8dd96d2dd4d84e0470fb45dcdfd044", "variant": 1944115849, "library": "libnet"}]}}], "symbols": []}}, {"match": {"value": 604307486}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "CallRpc"}}, "child": {"skip": 32, "offset": 64, "next": [], "symbols": [{"name": "sceLibnetRegisterHandler", "hash": "8114a582682e40ff52685f1d833ab83a20dfff58", "variant": 1944115849, "library": "libnet"}]}}], "symbols": []}}, {"match": {"value": 604307487}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "CallRpc"}}, "child": {"skip": 32, "offset": 64, "next": [], "symbols": [{"name": "sceLibnetUnregisterHandler", "hash": "257643a73991ce9c699cd97689a6d382fa5e6d1f", "variant": 1944115849, "library": "libnet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666763200}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707504}, "child": {"skip": 4, "offset": 20, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289724432}, "child": {"skip": 216, "offset": 244, "next": [], "symbols": [{"name": "scePadInit2", "hash": "5601bd9e3ba97ac67afc5e62e9321cdb819ce2f3", "variant": 3934376244, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289724432}, "child": {"skip": 196, "offset": 224, "next": [], "symbols": [{"name": "scePadInit2", "hash": "a2c0ccc7fa49b6f75391b2c2b5e756b03a68f303", "variant": 4244521845, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8423469}, "child": {"skip": 180, "offset": 200, "next": [], "symbols": [{"name": "scePad2GetButtonProfile", "hash": "b31594ea8f1fbb14c7db986ee82e9468550178b7", "variant": 439596724, "library": "libpad2"}]}}], "symbols": []}}, {"match": {"value": 1007747072, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2353332224, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 336, "offset": 356, "next": [], "symbols": [{"name": "__sceEENetrn_init", "hash": "eaa3aed755a4840d0331d06e3206c0d395c0ed91", "variant": 2385089564, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 8402989}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855520}, "child": {"skip": 316, "offset": 336, "next": [], "symbols": [{"name": "sceTtyWrite", "hash": "90bc050a1ee4dcf7bb6baf97a1818aa51b891cdd", "variant": 275181132, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 8400941}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855520}, "child": {"skip": 316, "offset": 336, "next": [], "symbols": [{"name": "sceTtyWrite", "hash": "24e26e84fb9240c18b6de971bf3b3ce730ccfeae", "variant": 2190785193, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 613482776}, "child": {"skip": 132, "offset": 152, "next": [], "symbols": [{"name": "smap_probemedia", "hash": "f6482282ffbc8c5369552e8b98bae6c5cdf43b43", "variant": 1295519654, "library": "ent_smap"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": "lmalloc"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789968}, "child": {"skip": 120, "offset": 140, "next": [], "symbols": [{"name": "sceHTTPGetMemoryStatus", "hash": ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(4b379eedac2bf35abc9d6331f55d820ac7446c7e", "variant": 1698777074, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 609353728, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289724416}, "child": {"skip": 140, "offset": 164, "next": [], "symbols": [{"name": "sceMc2Sync2", "hash": "b5204805ba3a0d9b3f21cdfe3c1bb2ecd695183a", "variant": 1326225494, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 605159427}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289724416}, "child": {"skip": 32, "offset": 56, "next": [{"match": {"value": 604373808}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 132, "offset": 196, "next": [], "symbols": [{"name": "InitTLBFunctions", "hash": "2570ece463697f085e8f655b0eab588f2ad48ca8", "variant": 2503106441, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604373800}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 116, "offset": 180, "next": [], "symbols": [{"name": "InitTLBFunctions", "hash": "2acf4083f2c6bc1f85fd1458eb6840324b722869", "variant": 3085090555, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604373928}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 116, "offset": 180, "next": [], "symbols": [{"name": "InitTLBFunctions", "hash": "38c751fae22b1b1df1d58d9ddafaff3143eb61af", "variant": 3085090555, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8425517}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2353201152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 10520621}, "child": {"skip": 28, "offset": 56, "next": [{"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 52, "offset": 116, "next": [], "symbols": [{"name": "sceCdPOffCallback", "hash": "47a522d94702c9c045ec6e1361fef7b62e4b1916", "variant": 2997180663, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 44, "offset": 108, "next": [], "symbols": [{"name": "sceCdPOffCallback", "hash": "50bb5a9cf873f40067b7adf86f6cecec747714e0", "variant": 3695852006, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 609288192, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 84, "offset": 112, "next": [], "symbols": [{"name": "des_is_weak_key", "hash": "76e0c73c43a63ce99f33dc7624965086fce8e03c", "variant": 3177922299, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 12619821}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289724416}, "child": {"skip": 4, "offset": 28, "next": [{"match": {"value": 2353463296, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4290707504}, "child": {"skip": 112, "offset": 148, "next": [], "symbols": [{"name": "sceSynthesizerDmaFromSPR", "hash": "208c4d413b2a4db68e941e5cf994a6474d0bf89b", "variant": 9121118, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 10518573}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2353463296, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 120, "offset": 156, "next": [], "symbols": [{"name": "sceSynthesizerDmaToSPR", "hash": "a4732fdbdb7be6cfee25571e047a6c2f74c35879", "variant": 3168081097, "library": "libssyn"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8425517}, "child": {"skip": 108, "offset": 128, "next": [], "symbols": [{"name": "sceCdPOffCallback", "hash": "8003cc0f19970e95b484c4cd545ca31e00633a55", "variant": 649457761, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 604176387}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8425517}, "child": {"skip": 208, "offset": 228, "next": [], "symbols": [{"name": "_decPicture", "hash": "9024e1b2733d86f183431fa15eb61f99fdf5a12c", "variant": 2973191329, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 1006895103}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2353332224, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 32, "offset": 52, "next": [{"match": {"value": 268435504}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 3753836592}, "child": {"skip": 208, "offset": 268, "next": [], "symbols": [{"name": "sceHiDMAMake_Lump", "hash": "e0a599446733cbbfc524550cc62f81a8d19d04e9", "variant": 2809321897, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 268435505}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 3753836592}, "child": {"skip": 212, "offset": 272, "next": [], "symbols": [{"name": "sceHiDMAMake_Lump", "hash": "53cf023748926f36e3785dfe534e8e39c7b33a1a", "variant": 3550502906, "library": "libhig"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 384, "offset": 400, "next": [], "symbols": [{"name": "SetNextComp", "hash": "910a54f99075e0a1a3dabb5c0ac4364209924146", "variant": 216107360, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 4290707472}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 36, "offset": 52, "next": [{"match": {"value": 268435468}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 0}, "child": {"skip": 64, "offset": 124, "next": [], "symbols": [{"name": "default_new_handler__3stdFv", "hash": "22dd0c990a8f7cfaf962ffc9c02ba6099435736d", "variant": 1772704109, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 268435461}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 0}, "child": {"skip": 40, "offset": 100, "next": [], "symbols": [{"name": "default_new_handler__3stdFv", "hash": "3e426e4cb6ebfdd05b9e8c7699cbb9f41f7b2b39", "variant": 3157834799, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 268435467}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 0}, "child": {"skip": 64, "offset": 124, "next": [], "symbols": [{"name": "default_new_handler__3stdFv", "hash": "db06f16e1552dcb67d181d38c522f8c29bb9fce9", "variant": 3157834799, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 268435466}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 0}, "child": {"skip": 56, "offset": 116, "next": [], "symbols": [{"name": "default_new_handler__3stdFv", "hash": "ff8f34719faa0b99f68805f1ebdac6f47fb15bb3", "variant": 1772704109, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789984}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289724432}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8423469}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: 609222656, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 76, "offset": 104, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "scePrintf"}}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 44, "offset": 156, "next": [], "symbols": [{"name": "sceUsbKbGetInfo", "hash": "3ea3ac321853e8615c26a04eff2da3ed5eaeb93a", "variant": 1452534767, "library": "libusbkb"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "printf"}}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 44, "offset": 156, "next": [], "symbols": [{"name": "sceUsbKbGetInfo", "hash": "3ea3ac321853e8615c26a04eff2da3ed5eaeb93a", "variant": 510073769, "library": "libusbkb"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10518573}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 3695575040, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 308, "offset": 336, "next": [], "symbols": [{"name": "FishEyeInit", "hash": "df51fb05f132407ca52255dc94a999f925a4555d", "variant": 3772265142, "library": "libhip"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10520621}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8421421}, "child": {"skip": 36, "offset": 60, "next": [{"match": {"value": 268435485}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 3753836592}, "child": {"skip": 128, "offset": 196, "next": [], "symbols": [{"name": "shadowmap_init", "hash": "2b2b0a9d6ab6bb54c95ce675a0c73b499c7eacb7", "variant": 1133281423, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 268435492}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 3753836592}, "child": {"skip": 156, "offset": 224, "next": [], "symbols": [{"name": "shadowmap_init", "hash": "cf36416da1b638a0eacb0c17388c552bc12cfc54", "variant": 451880524, "library": "libhip"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289855520}, "child": {"skip": 108, "offset": 124, "next": [], "symbols": [{"name": "__sceEENetifunit", "hash": "f659f6012c0e7b1d86b374ec855cfc74a55bf80e", "variant": 3111692080, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289724432}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707504}, "child": {"skip": 8, "offset": 24, "next": [{"match": {"value": 2946760704}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2382692348}, "child": {"skip": 152, "offset": 184, "next": [], "symbols": [{"name": "__sceEENetip_rtaddr", "hash": "7a6c557671e70a356f62fea8ecb9b50561cf1631", "variant": 625163117, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2382561328}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 811728898}, "child": {"skip": 88, "offset": 120, "next": [], "symbols": [{"name": "R_rand_meth_sha1", "hash": "128dcd0a94221e1861432133b1fad18aab11d3bd", "variant": 675981520, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8394797}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289789984}, "child": {"skip": 164, "offset": 180, "next": [], "symbols": [{"name": "OBJ_NAME_remove", "hash": "b78341386b2e584b7c67a43589dec7620bbc8c12", "variant": 4239557885, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289855520}, "child": {"skip": 428, "offset": 444, "next": [], "symbols": [{"name": "sceSifInitRpc", "hash": "40f523be621596797099649f0dcd52ad56943555", "variant": 1327611551, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 484, "offset": 500, "next": [], "symbols": [{"name": "InitTLB32MB", "hash": "81508695ccf3a1a5a5d0eb589b58bf32938494b8", "variant": 2366424850, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 604110849}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707504}, "child": {"skip": 32, "offset": 52, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 608370687}, "child": {"skip": 152, "offset": 212, "next": [{"match": {"value": 4229165}, "child": {"skip": 0, "offset": 216, "next": [{"match": {"value": 604110852}, "child": {"skip": 0, "offset": 220, "next": [{"match": {"value": 1147395}, "child": {"skip": 20, "offset": 244, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "scePrintf"}}, "child": {"skip": 0, "offset": 248, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 68, "offset": 320, "next": [], "symbols": [{"name": "scePadInit", "hash": "d5488b6d397ac0c8340e18363e31371e42487d1e", "variant": 1731636782, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "printf"}}, "child": {"skip": 0, "offset": 248, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 68, "offset": 320, "next": [], "symbols": [{"name": "scePadInit", "hash": "d5488b6d397ac0c8340e18363e31371e42487d1e", "variant": 1255618611, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604110851}, "child": {"skip": 0, "offset": 220, "next": [{"match": {"value": 1147395}, "child": {"skip": 8, "offset": 232, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "kprintf"}}, "child": {"skip": 0, "offset": 236, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 68, "offset": 308, "next": [], "symbols": [{"name": "scePadInit", "hash": "7c924fe1ca658a1193bdaa9ccb896cbea3e21c82", "variant": 1562542437, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "printf"}}, "child": {"skip": 0, "offset": 236, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 68, "offset": 308, "next": [], "symbols": [{"name": "scePadInit", "hash": "7c924fe1ca658a1193bdaa9ccb896cbea3e21c82", "variant": 1971189472, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 675414531}, "child": {"skip": 0, "offset": 216, "next": [{"match": {"value": 272629765}, "child": {"skip": 52, "offset": 272, "next": [], "symbols": [{"name": "scePadInit", "hash": "ae593e63b30b5a823306c48011e85f1af34c8b6c", "variant": 644823176, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 608370687}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 0}, "child": {"skip": 212, "offset": 272, "next": [], "symbols": [{"name": "scePadInit", "hash": "d1981ccdb2dde10306ab1b3aca7d2087173747b2", "variant": 644823176, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 10522669}, "child": {"skip": 168, "offset": 188, "next": [], "symbols": [{"name": "rn_new_radix_mask", "hash": "a65736736b6aff81f972ecd8080081ed3f69a55)PS2SDB", 8192}, + std::string_view{R"PS2SDB(3", "variant": 3946960028, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 311872}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 292, "offset": 308, "next": [], "symbols": [{"name": "_PsceSkSsSTRADPCM_Append", "hash": "1f03eb4b24b473e2c0d98202c73ecd7f0d2d7e4f", "variant": 1913402211, "library": "libsk"}]}}], "symbols": []}}, {"match": {"value": 604438544}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289855520}, "child": {"skip": 256, "offset": 272, "next": [], "symbols": [{"name": "arplookup", "hash": "ef74e93e32f0e6f545f2c64acd01ad6d516a2006", "variant": 3858083864, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2407661568, "relocation": {"type": "MIPS_GPREL16", "symbol": ".sdata"}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707504}, "child": {"skip": 252, "offset": 268, "next": [], "symbols": [{"name": "scePadInit", "hash": "6194b4a0dea6f50f55b1f0143e8c22564ebaf0fb", "variant": 4180361649, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10502189}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789984}, "child": {"skip": 208, "offset": 228, "next": [{"match": {"value": 604307462}, "child": {"skip": 0, "offset": 232, "next": [{"match": {"value": 604372993}, "child": {"skip": 60, "offset": 296, "next": [], "symbols": [{"name": "sceMcWrite", "hash": "ea97049caa468c5f33953c35fab4562ed6cb7e3f", "variant": 3989965088, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 604307572}, "child": {"skip": 0, "offset": 232, "next": [{"match": {"value": 604372993}, "child": {"skip": 60, "offset": 296, "next": [], "symbols": [{"name": "sceMcWrite", "hash": "87f8aaf25e6bf143009f02d167ba63920106e8cf", "variant": 3989965088, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10500141}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789984}, "child": {"skip": 284, "offset": 304, "next": [], "symbols": [{"name": "sceMcWrite", "hash": "c5a2995ade6f5c2036c636788bf0f9c475f09814", "variant": 724414532, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 4289789984}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 339738696}, "child": {"skip": 240, "offset": 260, "next": [{"match": {"value": 604307470}, "child": {"skip": 0, "offset": 264, "next": [{"match": {"value": 604372993}, "child": {"skip": 60, "offset": 328, "next": [], "symbols": [{"name": "sceMcSetFileInfo", "hash": "e3a5c18a3c2e51024cec17a7c54e5ebafadc6a7b", "variant": 1484342904, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 604307580}, "child": {"skip": 0, "offset": 264, "next": [{"match": {"value": 604372993}, "child": {"skip": 60, "offset": 328, "next": [], "symbols": [{"name": "sceMcSetFileInfo", "hash": "77dabf62d162c3603cb41313321b08108444d2bb", "variant": 1484342904, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2407661568, "relocation": {"type": "MIPS_GPREL16", "symbol": "_theSceMpeg"}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789968}, "child": {"skip": 440, "offset": 452, "next": [], "symbols": [{"name": "_pictureCodingExtension", "hash": "29d33a6c8bf8d94be13b1c341961bb58ebc03f11", "variant": 2742843693, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2407661568, "relocation": {"type": "MIPS_GPREL16", "symbol": "_progressive_sequence"}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707504}, "child": {"skip": 180, "offset": 192, "next": [], "symbols": [{"name": "_pictureDisplayExtension", "hash": "aa6e21495a1c017167c5c4f7b3fa2dfcfb8ed9b4", "variant": 1110093971, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724448}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 184, "offset": 200, "next": [], "symbols": [{"name": "_sceMpegErrorBdec", "hash": "80a76e6437a859940fe8c4d3e5b86419215af3b2", "variant": 2982954775, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2359427072, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 160, "offset": 176, "next": [], "symbols": [{"name": "__sceEENetsppp_detach", "hash": "d9383eb527da8b9c67db64180e1d21e426e0aeee", "variant": 1603476858, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1007157248, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789984}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289724432}, "child": {"skip": 212, "offset": 228, "next": [], "symbols": [{"name": "sceDbcSendData", "hash": "60892a3ed634ebe62cf196e92edfbc0310df31ac", "variant": 3863828523, "library": "libdbc"}]}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 604110849}, "child": {"skip": 196, "offset": 212, "next": [], "symbols": [{"name": "sceEENetDeviceSMAPReg", "hash": "8ee7639941523ca877084b5801f0d041e2331c46", "variant": 3283311014, "library": "ent_smap"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1007222784, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855520}, "child": {"skip": 744, "offset": 756, "next": [], "symbols": [{"name": "SHA1_Final", "hash": "486500522a237e41f9dc1a0e4799c51f26578f9a", "variant": 3745945988, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 406528}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789968}, "child": {"skip": 116, "offset": 128, "next": [{"match": {"value": 3701604352}, "child": {"skip": 0, "offset": 132, "next": [{"match": {"value": 872677375}, "child": {"skip": 64, "offset": 200, "next": [], "symbols": [{"name": "sceGszbufaddr", "hash": "732c4cff824063059b85c600d1453e6395d7acdd", "variant": 2694050367, "library": "libgraph"}]}}], "symbols": []}}, {"match": {"value": 2225274880}, "child": {"skip": 0, "offset": 132, "next": [{"match": {"value": 604110849}, "child": {"skip": 60, "offset": 196, "next": [], "symbols": [{"name": "sceGszbufaddr", "hash": "9cf3e507d727993e548ea42b93bec32cafeb59b0", "variant": 2694050367, "library": "libgraph"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1007747072, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2384789504, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 156, "offset": 176, "next": [], "symbols": [{"name": "deci2Putchar", "hash": "2d68176436ff781728afedb7d1e5c3ea464a558c", "variant": 3583330199, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2384592896, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1007812608, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 152, "offset": 176, "next": [], "symbols": [{"name": "deci2Putchar", "hash": "93bc10a83fb6f0254496d51a82ecbc9d6c8ca6fd", "variant": 2612447581, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 2183266304, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"ski)PS2SDB", 8192}, + std::string_view{R"PS2SDB(p": 0, "offset": 20, "next": [{"match": {"value": 640811008, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 88, "offset": 112, "next": [], "symbols": [{"name": "GetRomName", "hash": "60a6db595febadc5398886695ddb4f27b78a3773", "variant": 3573660932, "library": "libscf"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2384723968, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 280, "offset": 300, "next": [], "symbols": [{"name": "sceHiDMAMake_DynamicChainEnd", "hash": "22c256fd148290a411ca11eaf706f2a82cf04708", "variant": 3230971814, "library": "libhig"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1007747072, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724416}, "child": {"skip": 8, "offset": 28, "next": [{"match": {"value": 301989902}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2385641472, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 80, "offset": 116, "next": [], "symbols": [{"name": "Vumem1GetIptr", "hash": "e1b792b4a67f229891bdfa1d4f4314ad49b9bb14", "variant": 2129440991, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 301989903}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2385641472, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 84, "offset": 120, "next": [], "symbols": [{"name": "Vumem1GetOptr", "hash": "055d62faba46f1f499bff76d2922f515931279ff", "variant": 2246120417, "library": "libhip"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceGsGetGParam"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 8423469}, "child": {"skip": 132, "offset": 160, "next": [], "symbols": [{"name": "sceGsSyncVCallback", "hash": "75e7178609abd229ca98b9ea8ff39b6f2a422442", "variant": 2405945576, "library": "libgraph"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "validate_structure"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 8423469}, "child": {"skip": 620, "offset": 648, "next": [], "symbols": [{"name": "mktime", "hash": "4996853c0d7a682e1142b1b881f4b57b722f9bd7", "variant": 454856890, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__sceEENetspllock"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 8423469}, "child": {"skip": 164, "offset": 192, "next": [], "symbols": [{"name": "__sceEENetigmp_joingroup", "hash": "9ed1e8d0140346415813d953eb9eae3126180f09", "variant": 569798356, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10520621}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 12619821}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290707504}, "child": {"skip": 112, "offset": 140, "next": [], "symbols": [{"name": "_signal_r", "hash": "7c37aa67e63342af79013d52fd4e4a93d284d504", "variant": 2112891071, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 36909}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290707504}, "child": {"skip": 20, "offset": 48, "next": [{"match": {"value": 268435497}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 2919432192}, "child": {"skip": 184, "offset": 240, "next": [], "symbols": [{"name": "_raise_r", "hash": "17f12d3faf9016141bb5e9ef7c6516a50750884e", "variant": 3034539233, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 268435499}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 2919432192}, "child": {"skip": 192, "offset": 248, "next": [], "symbols": [{"name": "_raise_r", "hash": "1783ffc34abc1248fdaa1ae4e0913efe7dcd5ccb", "variant": 2056555470, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8423469}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "get_sslc_global"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289724416}, "child": {"skip": 688, "offset": 716, "next": [], "symbols": [{"name": "SSL_CTX_new", "hash": "f2aee657d90307419dfa3635f2d90cade3b5df81", "variant": 1950060826, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 10522669}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "scePad2GetState"}}, "child": {"skip": 44, "offset": 72, "next": [{"match": {"value": 71303195}, "child": {"skip": 0, "offset": 76, "next": [{"match": {"value": 604176383}, "child": {"skip": 128, "offset": 208, "next": [], "symbols": [{"name": "scePad2GetButtonProfile", "hash": "9a2c604928f00518ab5e5a2f2751656521cfeda2", "variant": 2347552173, "library": "libpad2"}]}}], "symbols": []}}, {"match": {"value": 71303194}, "child": {"skip": 0, "offset": 76, "next": [{"match": {"value": 604176383}, "child": {"skip": 124, "offset": 204, "next": [], "symbols": [{"name": "scePad2GetButtonProfile", "hash": "c0d9d23a025220651f1388a689eb73d4def1a559", "variant": 3341754154, "library": "libpad2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 10522669}, "child": {"skip": 104, "offset": 128, "next": [], "symbols": [{"name": "bn_mont_ctx_new_word", "hash": "ca40a36cc78a25dc4fd3cbf8d1f59fd1a46def38", "variant": 2884193541, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1007747328}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707504}, "child": {"skip": 16, "offset": 36, "next": [{"match": {"value": 272629772}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 1007812608, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 68, "offset": 112, "next": [], "symbols": [{"name": "WaitDma", "hash": "6e54d49d191942c637989b1f7f19f203117e2839", "variant": 3518137285, "library": "libdma"}]}}], "symbols": []}}, {"match": {"value": 272629784}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 1007812608, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 52, "offset": 96, "next": [{"match": {"value": 6299693}, "child": {"skip": 0, "offset": 100, "next": [{"match": {"value": 0}, "child": {"skip": 92, "offset": 196, "next": [], "symbols": [{"name": "sceDmaRecv", "hash": "27b1d5e4934fde34bf4d9cf8b94860c212bac5cb", "variant": 4235518097, "library": "libdma"}]}}], "symbols": []}}, {"match": {"value": 0}, "child": {"skip": 0, "offset": 100, "next": [{"match": {"value": 0}, "child": {"skip": 92, "offset": 196, "next": [], "symbols": [{"name": "sceDmaRecv", "hash": "f68ccfac99b07f12455ebfd5873bdb5cedfd0fbd", "variant": 4235518097, "library": "libdma"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8423469}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1007681536, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2382626816, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 20, "offset": 48, "next": [{"match": {"value": 268435545}, "child": {"skip":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( 0, "offset": 52, "next": [{"match": {"value": 3753836592}, "child": {"skip": 372, "offset": 428, "next": [], "symbols": [{"name": "sceHiDMAMake_LoadImm", "hash": "74b275c9361d95640c935af7fd1c9e8e235634a9", "variant": 2087177255, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 268435547}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 3753836592}, "child": {"skip": 380, "offset": 436, "next": [], "symbols": [{"name": "sceHiDMAMake_LoadImm", "hash": "580ea342db08be73995a9158d86c39f38c59b06b", "variant": 719181448, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 268435503}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 3753836592}, "child": {"skip": 204, "offset": 260, "next": [], "symbols": [{"name": "sceHiDMAMake_LoadGS", "hash": "d1b3f6638ca67a18b3755941757e0025242b2d0f", "variant": 978996657, "library": "libhig"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2382626816, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 204, "offset": 232, "next": [], "symbols": [{"name": "sceHiDMAMake_LumpStart", "hash": "98d929bf383e1a0e1d364dea5fd104ab0866a735", "variant": 1615748223, "library": "libhig"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 3887333424}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4290707488}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "DIntr"}}, "child": {"skip": 80, "offset": 108, "next": [], "symbols": [{"name": "sceVu0InnerProduct", "hash": "df4b01c8b6c69ec5805d246cd1b283e5c24d36a1", "variant": 363413761, "library": "libvu0"}]}}], "symbols": []}}, {"match": {"value": 10518573}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290707488}, "child": {"skip": 8, "offset": 36, "next": [{"match": {"value": 3657695232}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 1141415936}, "child": {"skip": 4, "offset": 48, "next": [{"match": {"value": 1248134076}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 1241514943}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 1272979740}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 4196663296}, "child": {"skip": 48, "offset": 112, "next": [], "symbols": [{"name": "sceVu0DivVector", "hash": "a794e2003c84abc98af1d8fd416733d70f3a60f6", "variant": 3991176205, "library": "libvu0"}]}}], "symbols": []}}, {"match": {"value": 1270882588}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 4196663296}, "child": {"skip": 48, "offset": 112, "next": [], "symbols": [{"name": "sceVu0DivVectorXYZ", "hash": "f33d49339a930637a410211756e459bae40a4f54", "variant": 3991176205, "library": "libvu0"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1273307544}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 4196794368}, "child": {"skip": 48, "offset": 104, "next": [], "symbols": [{"name": "sceVu0ScaleVector", "hash": "e8700a1ca0726851febf128ee73c6d949b6b99df", "variant": 4191265155, "library": "libvu0"}]}}], "symbols": []}}, {"match": {"value": 1271210264}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 4196663296}, "child": {"skip": 48, "offset": 104, "next": [], "symbols": [{"name": "sceVu0ScaleVectorXYZ", "hash": "f7abdd717916b5d710a907d136adf5e776be1822", "variant": 4191265155, "library": "libvu0"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1149239296}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 1174446132}, "child": {"skip": 24, "offset": 68, "next": [{"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": ""}}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 604438529}, "child": {"skip": 164, "offset": 240, "next": [], "symbols": [{"name": "sceVu0RotMatrixZ", "hash": "bc8c12dfe76bafff9d04971b154866a170adb8e1", "variant": 4254179491, "library": "libvu0"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": ""}}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 604438529}, "child": {"skip": 168, "offset": 244, "next": [], "symbols": [{"name": "sceVu0RotMatrixX", "hash": "249f7bbabe1bfdaf6c5a8cea543b4b18c12122dd", "variant": 102472975, "library": "libvu0"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": ""}}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 604438529}, "child": {"skip": 168, "offset": 244, "next": [], "symbols": [{"name": "sceVu0RotMatrixY", "hash": "a18ed238e41cd753088e014e4bcee139e3282578", "variant": 2473281946, "library": "libvu0"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 3887398968}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 10518573}, "child": {"skip": 108, "offset": 132, "next": [], "symbols": [{"name": "sceVu0ClampVector", "hash": "850125b136ec1be5ea41d43f7e69b626a0c82f54", "variant": 1571107219, "library": "libvu0"}]}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 10518573}, "child": {"skip": 4, "offset": 28, "next": [{"match": {"value": 12619821}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__udivdi3"}}, "child": {"skip": 132, "offset": 168, "next": [], "symbols": [{"name": "TimerBusClock2USec", "hash": "dde2d1f92c1d2ffc2645983f38e99ac99d93f34f", "variant": 3988909594, "library": "libkernl"}, {"name": "sceTimerBusClock2USec", "hash": "dde2d1f92c1d2ffc2645983f38e99ac99d93f34f", "variant": 3988909594, "library": "libtimer"}]}}], "symbols": []}}, {"match": {"value": 36909}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "i2d_X509_NAME"}}, "child": {"skip": 88, "offset": 124, "next": [], "symbols": [{"name": "sslcert_name_get_info", "hash": "f6ce1b641e40aaa5a71e585b56497bc9fb3bae46", "variant": 3549873086, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1007681536, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "cmd_sem_init"}}, "child": {"skip": 32, "offset": 60, "next": [{"match": {"value": 408944662}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 12, "offset": 80, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "scePrintf"}}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 35661869}, "child": {"skip": 36, "offset": 124, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceCdSync"}}, "child": {"skip": 0, "offset": 128, "next": [{"match": {"value": 604241921}, "child": {"skip": 236, "offset": 368, "next": [], "symbols": [{"name": "_sceCd_ncmd_prechk", "hash": "f874e8b52861d9b50a26e10fd9f797a21d6b2fec", "variant": 2561903803, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceCdSyncS"}}, "child": {"skip": 0, "offset": 128, "next": [{"match": {"value": 604241921}, "child": {"skip": 236, "offset": 368, "next": [], "symbols": [{"name": "_sceCd_scmd_prechk", "hash": "33a2b0ea2c87c4345649dad6d84d62bef37b53bd", "variant": 791545267, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "printf"}}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 35661869}, "child": {"skip": 0, "offset": 88, "next": [{"match":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( {"value": 268435519}, "child": {"skip": 0, "offset": 92, "next": [{"match": {"value": 4141}, "child": {"skip": 28, "offset": 124, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceCdSync"}}, "child": {"skip": 0, "offset": 128, "next": [{"match": {"value": 604241921}, "child": {"skip": 236, "offset": 368, "next": [], "symbols": [{"name": "ncmd_prechk", "hash": "f874e8b52861d9b50a26e10fd9f797a21d6b2fec", "variant": 1911338133, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceCdSyncS"}}, "child": {"skip": 0, "offset": 128, "next": [{"match": {"value": 604241921}, "child": {"skip": 236, "offset": 368, "next": [], "symbols": [{"name": "scmd_prechk", "hash": "33a2b0ea2c87c4345649dad6d84d62bef37b53bd", "variant": 3080517729, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 268435520}, "child": {"skip": 0, "offset": 92, "next": [{"match": {"value": 4141}, "child": {"skip": 28, "offset": 124, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceCdSync"}}, "child": {"skip": 0, "offset": 128, "next": [{"match": {"value": 604241921}, "child": {"skip": 240, "offset": 372, "next": [], "symbols": [{"name": "ncmd_prechk", "hash": "a33115788b1b0473540425de92f161fe61eab78c", "variant": 1022998262, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceCdSyncS"}}, "child": {"skip": 0, "offset": 128, "next": [{"match": {"value": 604241921}, "child": {"skip": 240, "offset": 372, "next": [], "symbols": [{"name": "scmd_prechk", "hash": "d5c69590842bd58e65d424baa99540e24382fa75", "variant": 4203346434, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 408944657}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 36, "offset": 104, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceCdSync"}}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 2890989568, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 232, "offset": 344, "next": [], "symbols": [{"name": "_sceCd_ncmd_prechk", "hash": "94931e196a116c59ff66099183d9ce700bc130cc", "variant": 25371100, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceCdSyncS"}}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 2890989568, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 232, "offset": 344, "next": [], "symbols": [{"name": "_sceCd_scmd_prechk", "hash": "bb79a925d35442f3c5326e9b6c3146209950ade1", "variant": 2338840458, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 408944661}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 56, "offset": 124, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceCdSync"}}, "child": {"skip": 0, "offset": 128, "next": [{"match": {"value": 604241921}, "child": {"skip": 248, "offset": 380, "next": [], "symbols": [{"name": "ncmd_prechk", "hash": "5b9f3f4c9121c38eaab1a2f2f899536e63de88bd", "variant": 3048434996, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceCdSyncS"}}, "child": {"skip": 0, "offset": 128, "next": [{"match": {"value": 604241921}, "child": {"skip": 248, "offset": 380, "next": [], "symbols": [{"name": "scmd_prechk", "hash": "d3cb2d666c84e3d98859ef4da2955d413cf74eda", "variant": 1942168000, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2384789516}, "child": {"skip": 108, "offset": 136, "next": [], "symbols": [{"name": "free_skin_packet", "hash": "1a853170b8b8392111e855b43708e898a8dd30cd", "variant": 2668584242, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 10518573}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 771883011}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 339738627}, "child": {"skip": 112, "offset": 148, "next": [], "symbols": [{"name": "__sceEENetsoshutdown", "hash": "8dd24da3c55154ea72b67762ab856eff32ec8bd7", "variant": 4117921262, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2384658432}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 7344170}, "child": {"skip": 160, "offset": 196, "next": [], "symbols": [{"name": "BUF_MEM_grow", "hash": "1b91bc6eb4ec5c6505f7a8401084691e095d5d91", "variant": 2435143321, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 304087048}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4289855520}, "child": {"skip": 228, "offset": 260, "next": [], "symbols": [{"name": "X509_NAME_delete_entry", "hash": "3c313ffc23d692856bd794018424a5c4309bf382", "variant": 1030711804, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 816906239}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289855520}, "child": {"skip": 100, "offset": 128, "next": [], "symbols": [{"name": "sppp_print_bytes", "hash": "1a50f58d906cd175952916907cc922250b766454", "variant": 1760897562, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 12615725}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289855520}, "child": {"skip": 100, "offset": 124, "next": [], "symbols": [{"name": "copy_reg", "hash": "c8e9c867117e53cb50ad1939e455c0fdc3feed7b", "variant": 1689524369, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 816840959}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289855520}, "child": {"skip": 156, "offset": 180, "next": [], "symbols": [{"name": "turnOffExcGroup", "hash": "987ca838dba4646d27fbaedb3ec4f1beb8798a41", "variant": 3824964973, "library": "libssyn"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10520621}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289855520}, "child": {"skip": 4, "offset": 28, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceRpcGetFPacket"}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 35659821}, "child": {"skip": 44, "offset": 80, "next": [{"match": {"value": 4200493}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 1415577605}, "child": {"skip": 88, "offset": 176, "next": [], "symbols": [{"name": "_request_bind", "hash": "9b0e1fbb8c5cca034ec16063e6ee1a71c267b1c8", "variant": 1591805718, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1413480452}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 2923560996}, "child": {"skip": 116, "offset": 204, "next": [], "symbols": [{"name": "_request_bind", "hash": "2d1cc40a92e33740ef251c2a562672f1552d6201", "variant": 4254232648, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "strlen"}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 35659821}, "child": {"skip": 132, "offset": 168, "next": [], "symbols": [{"name": "send_request", "hash": "fc102b757a6870457c383459b0b2beff322d27ee", "variant": 3063943231, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 24, "nex)PS2SDB", 8192}, + std::string_view{R"PS2SDB(t": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "DIntr"}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 8421421}, "child": {"skip": 60, "offset": 92, "next": [], "symbols": [{"name": "GetTimerUsedUnusedCounters", "hash": "a5d54a3308f270998735f2e107f46e0f82ab7918", "variant": 1320863279, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sysbitNext"}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 8421421}, "child": {"skip": 44, "offset": 76, "next": [], "symbols": [{"name": "_sysbitGet", "hash": "6909e094b95d88521495678ccecaac0fe3d656e3", "variant": 2329477091, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__sceEENetspllock"}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 8421421}, "child": {"skip": 132, "offset": 164, "next": [], "symbols": [{"name": "__sceEENetsoaccept", "hash": "7444169e209e9817602b597d5baf8df57e1ef8f7", "variant": 1649763208, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "get_common_global"}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 8421421}, "child": {"skip": 164, "offset": 196, "next": [], "symbols": [{"name": "BIO_set", "hash": "2730f651eb6bc9a09c38f5d2cb36376b687c26e3", "variant": 1641296710, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8421421}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290707504}, "child": {"skip": 156, "offset": 184, "next": [], "symbols": [{"name": "scePadSetActDirect", "hash": "1e5fda830d10911a07215d0b8ee6d8718f743a9a", "variant": 1463543926, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8421421}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2382561328}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 274726939}, "child": {"skip": 132, "offset": 168, "next": [], "symbols": [{"name": "__sceEENettcp_drop", "hash": "bac911d7c7471a642a11391f86abccadd5d0b5fe", "variant": 279862253, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2383544320}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 637861912}, "child": {"skip": 180, "offset": 216, "next": [], "symbols": [{"name": "asn1_GetSequence", "hash": "ed601bf60bbe95c59aff0dd0452242c50a391d56", "variant": 1478729097, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2382561356}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 7409707}, "child": {"skip": 116, "offset": 152, "next": [], "symbols": [{"name": "ssl23_read_bytes", "hash": "38099a92534c238e3efaf4b1430087cec66f2f40", "variant": 3090061762, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 304087076}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4289855520}, "child": {"skip": 168, "offset": 200, "next": [], "symbols": [{"name": "sceHTTPLibStrcatsave", "hash": "60d28a2bf32bcfc1c9707b2de0a8035dc341ce97", "variant": 4259886561, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 4, "offset": 24, "next": [{"match": {"value": 2382497840}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 339738629}, "child": {"skip": 252, "offset": 284, "next": [], "symbols": [{"name": "_peepBit", "hash": "5fa480a240ebd86c6477efc8e0e3a72ff265ccbd", "variant": 1335908168, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2382561280}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 274726921}, "child": {"skip": 168, "offset": 200, "next": [], "symbols": [{"name": "sceEENetMCat", "hash": "99000293248a6b019d03e9bb75cbe7d62c37121b", "variant": 188344319, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2516713474}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 809631746}, "child": {"skip": 152, "offset": 184, "next": [], "symbols": [{"name": "__sceEENetsoconnect", "hash": "0b86d9d762381d607370f5cc084fb924648d4c1f", "variant": 4177710858, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8423469}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 10522669}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceVif1PkTerminate"}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 12615725}, "child": {"skip": 4, "offset": 40, "next": [{"match": {"value": 1006850048}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 33783845}, "child": {"skip": 64, "offset": 112, "next": [], "symbols": [{"name": "sceVif1PkCall", "hash": "97102ec740bd404e4fb52553f85c90badef42a07", "variant": 2674100843, "library": "libpkt"}]}}], "symbols": []}}, {"match": {"value": 1006837760}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 33783845}, "child": {"skip": 64, "offset": 112, "next": [], "symbols": [{"name": "sceVif1PkNext", "hash": "ae8ef33cc866147a3a8d8735fed7acd4d258317f", "variant": 2674100843, "library": "libpkt"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceVif0PkTerminate"}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 12615725}, "child": {"skip": 76, "offset": 112, "next": [], "symbols": [{"name": "sceVif0PkCall", "hash": "97102ec740bd404e4fb52553f85c90badef42a07", "variant": 80135684, "library": "libpkt"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 12615725}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 80, "offset": 112, "next": [], "symbols": [{"name": "ExecPS2", "hash": "eeca3aad9e4d92c02b1082762ae4f141d2a120bc", "variant": 4207831472, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1118850}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290707504}, "child": {"skip": 232, "offset": 260, "next": [], "symbols": [{"name": "sceTimerSetCount", "hash": "64bc069ba0e5256fa62d5fe079b5cccd790d2d9a", "variant": 1260947207, "library": "libtimer"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10493997}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289724416}, "child": {"skip": 8, "offset": 32, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_Tim2_GetPictureHeader"}}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 12593197}, "child": {"skip": 404, "offset": 444, "next": [], "symbols": [{"name": "sceGpSetTexEnvByTim2", "hash": "f5488e4ae2c9958d16c2342750b5981ec31a5fb5", "variant": 2107636380, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": ""}}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 12593197}, "child": {"skip": 404, "offset": 444, "next": [], "symbols": [{"name": "sceGpSetTexEnvByTim2", "hash": "f5488e4ae2c9958d16c2342750b5981ec31a5fb5", "variant": 1089653759, "library": "libgp"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855520}, "child": {"skip": 372, "offset": 392, "next": [], "symbols": [{"name": "pppoe_start", "hash": "6147d3230920aa4668269f618dbc1456c12c9a35)PS2SDB", 8192}, + std::string_view{R"PS2SDB(", "variant": 752002023, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8423469}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2385510404}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2384592896}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 302120973}, "child": {"skip": 76, "offset": 112, "next": [], "symbols": [{"name": "sceVif1PkDump", "hash": "feb279af7420b1b367b9e54199babf5596fd72b4", "variant": 4175755881, "library": "libpkt"}]}}], "symbols": []}}, {"match": {"value": 302317571}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 640811016}, "child": {"skip": 576, "offset": 612, "next": [], "symbols": [{"name": "end_fde_sort", "hash": "9a42715e0b736ef7bed5ec8cc351c8466451febb", "variant": 4294419361, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 35655725}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 163903}, "child": {"skip": 360, "offset": 392, "next": [], "symbols": [{"name": "__ieee754_log10", "hash": "079dd49a6c5fff9efdcf19e5162ba497b06fa5fe", "variant": 4137615350, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 2451701824}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 272629773}, "child": {"skip": 180, "offset": 212, "next": [], "symbols": [{"name": "bpf_detachd", "hash": "94116d08694bb6b65be8a6b3b8a1c43ef3b02bb8", "variant": 2819394529, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2385510412}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2518810672}, "child": {"skip": 92, "offset": 124, "next": [], "symbols": [{"name": "__sceEENetif_down", "hash": "6fa0b3e0b676edd4df18ef22e240b23bb2645187", "variant": 973766250, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2921333428}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2451719664}, "child": {"skip": 420, "offset": 452, "next": [], "symbols": [{"name": "sppp_ipcp_open", "hash": "1c1d82fea3752eeb556f68fca337e7f974ea095b", "variant": 3590987455, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2384723980}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 276824074}, "child": {"skip": 68, "offset": 100, "next": [], "symbols": [{"name": "__sceEENetin_purgeif", "hash": "681e5863686db579c367fbaa39bf8e236a64c847", "variant": 2416344608, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2384592908}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 339738656}, "child": {"skip": 156, "offset": 188, "next": [], "symbols": [{"name": "rsa_get_pk_ctx", "hash": "c9bb42bf554995140e3dc08b3aec06ed659e79b3", "variant": 365417069, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 304087061}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 1007812608, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 1006772224}, "child": {"skip": 72, "offset": 108, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 112, "next": [{"match": {"value": 3753836592}, "child": {"skip": 24, "offset": 140, "next": [], "symbols": [{"name": "mceStorePwd", "hash": "9c458f4c8a0deb1bf3796df2697b211f27530b6c", "variant": 1472376932, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 3753836592}, "child": {"skip": 0, "offset": 112, "next": [{"match": {"value": 3752984608}, "child": {"skip": 16, "offset": 132, "next": [], "symbols": [{"name": "mceStorePwd", "hash": "d7c50303dee8b7eff6ddb7880f90650c7b36c60b", "variant": 3176916975, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2518810630}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 272629771}, "child": {"skip": 96, "offset": 132, "next": [], "symbols": [{"name": "__sceEENetip_freemoptions", "hash": "a320b508f6debad4778d16008fb4d4738a394515", "variant": 1545837180, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 304087062}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289724416}, "child": {"skip": 76, "offset": 104, "next": [{"match": {"value": 36706337}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 2690646016}, "child": {"skip": 24, "offset": 136, "next": [], "symbols": [{"name": "mceStorePwd", "hash": "8e5e9a83af991fcd7cf6905f17bf13204b2f4666", "variant": 2148030001, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 34674721}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 2690646017}, "child": {"skip": 24, "offset": 136, "next": [], "symbols": [{"name": "mceStorePwd", "hash": "fe17846b2c668722c41e42d9aec84af6ed8cda3f", "variant": 2148030001, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 35655725}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 167999}, "child": {"skip": 424, "offset": 452, "next": [], "symbols": [{"name": "tanh", "hash": "6ebed7925662e21498c9bbf4fd8b762e61e58b7b", "variant": 2514784663, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 371195912}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289724416}, "child": {"skip": 20, "offset": 48, "next": [{"match": {"value": 268435503}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 3753836592}, "child": {"skip": 204, "offset": 260, "next": [], "symbols": [{"name": "fflush", "hash": "c19d50b6f8c9d11e8e9de5a8c80372b3df890164", "variant": 3369535132, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 268435505}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 3753836592}, "child": {"skip": 212, "offset": 268, "next": [], "symbols": [{"name": "fflush", "hash": "1601edf8dfb46ca5e27f88dace40a67ed49242b3", "variant": 141454346, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 371195907}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289724416}, "child": {"skip": 112, "offset": 140, "next": [], "symbols": [{"name": "BUF_strdup", "hash": "c447567dc1682392a37aa9bbd32fce199492c0ea", "variant": 725021894, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 278921221}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289724416}, "child": {"skip": 136, "offset": 164, "next": [], "symbols": [{"name": "ssl2_enc", "hash": "7da248bb9703486d33cd7cced7be462033872515", "variant": 3999767547, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "fptodp"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289724416}, "child": {"skip": 220, "offset": 244, "next": [], "symbols": [{"name": "__fixunssfdi", "hash": "882c5384f6945456b4f7a133a97f3593c433f477", "variant": 558232561, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_buf_get_ancestor"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289724416}, "child": {"skip": 220, "offset": 244, "next": [], "symbols": [{"name": "sceHiDMARegist", "hash": "d3eab190bc1fc7adaa8fa532715f5c6eff534a7f", "variant": 2296926859, "library": "libhig"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10520621}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289724416}, "child": {"skip": 128, "offset": 144, "next": [], "symbols": [{"name": "WaitInterface", "hash": "4aad41d4e8906eb5ef0b86c9aff6308b845686e6", "variant": 1512319111)PS2SDB", 8192}, + std::string_view{R"PS2SDB(, "library": "libnet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1007681536, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2382757888, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 260, "offset": 280, "next": [], "symbols": [{"name": "_dispRefImage", "hash": "10836d7034414510a74275dbc7fe530d446f2c13", "variant": 4277615518, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2382495744, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 252, "offset": 272, "next": [], "symbols": [{"name": "__sceEENetip_srcroute", "hash": "f3b9cb678de2e4035af00fd10a30c8d33cb8fde7", "variant": 3730334986, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceGsGetGParam"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 8421421}, "child": {"skip": 68, "offset": 96, "next": [], "symbols": [{"name": "sceGsSyncVCallback", "hash": "4a2fe378bb0db9df33bb0085204f0bd3d9c9eb7c", "variant": 882866579, "library": "libgraph"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__sceEENetspllock"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 8421421}, "child": {"skip": 188, "offset": 216, "next": [], "symbols": [{"name": "__sceEENetsppp_dequeue", "hash": "9053837cb99159ec47c5b2e23aa1d6d78880f852", "variant": 924494865, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__sce_eenet_get_dns"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 12615725}, "child": {"skip": 76, "offset": 104, "next": [], "symbols": [{"name": "nameserver_push", "hash": "f440696d10bf39da6b5e9156a0453127d1aa18ff", "variant": 218747693, "library": "eenetctl"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "R_time_new"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 8421421}, "child": {"skip": 116, "offset": 144, "next": [], "symbols": [{"name": "X509_cmp_current_time", "hash": "eb3b61900ad064e5e04f931d8497675564396eff", "variant": 3165582679, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8421421}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "new_iob"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289789968}, "child": {"skip": 128, "offset": 156, "next": [], "symbols": [{"name": "sceDopen", "hash": "b02b9d5cefa4ede9d7a66e4b464f009674c1360b", "variant": 692011543, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__sceEENetspllock"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289789968}, "child": {"skip": 144, "offset": 172, "next": [], "symbols": [{"name": "pppoe_disconnect", "hash": "ee7c164296c6d570451919af0765ac8987dc2a6e", "variant": 71315402, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 10493997}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289789968}, "child": {"skip": 196, "offset": 224, "next": [], "symbols": [{"name": "sceHTTPAddHeaderList", "hash": "8e53a0688cc74de4a2f0889c55e230292a3de3be", "variant": 176249604, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__sceEENetthread_enter"}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 36909}, "child": {"skip": 92, "offset": 124, "next": [], "symbols": [{"name": "sceEENetThreadAbort", "hash": "d3a12ca43d2dff1383f3bc29324ec41d7d790f96", "variant": 846916928, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "DIntr"}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 36909}, "child": {"skip": 136, "offset": 168, "next": [], "symbols": [{"name": "sceEENetSifRemoveCmdHandler", "hash": "6c8105f793298e211f99eeb5584b5eb2f9959627", "variant": 1808999122, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8421421}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 12619821}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "CheckAddress"}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 10493997}, "child": {"skip": 40, "offset": 76, "next": [{"match": {"value": 2920415264}, "child": {"skip": 0, "offset": 80, "next": [{"match": {"value": 4395044}, "child": {"skip": 4, "offset": 88, "next": [{"match": {"value": 876740865}, "child": {"skip": 0, "offset": 92, "next": [{"match": {"value": 3752984608}, "child": {"skip": 20, "offset": 116, "next": [], "symbols": [{"name": "sceDmaSendN", "hash": "3e7097a84ab1644463443290da19e264add06422", "variant": 3302728142, "library": "libdma"}]}}], "symbols": []}}, {"match": {"value": 876740873}, "child": {"skip": 0, "offset": 92, "next": [{"match": {"value": 3752984608}, "child": {"skip": 20, "offset": 116, "next": [], "symbols": [{"name": "sceDmaSendI", "hash": "e9c64b305febad65ade91b1956174d978cd3be70", "variant": 3302728142, "library": "libdma"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604307454}, "child": {"skip": 0, "offset": 80, "next": [{"match": {"value": 2920415264}, "child": {"skip": 8, "offset": 92, "next": [{"match": {"value": 4460580}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 3752984608}, "child": {"skip": 24, "offset": 124, "next": [], "symbols": [{"name": "sceDmaRecvN", "hash": "63a73bf90dad4b932e5bfb25551a586d79b77944", "variant": 3302728142, "library": "libdma"}]}}], "symbols": []}}, {"match": {"value": 876740616}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 3752984608}, "child": {"skip": 28, "offset": 128, "next": [], "symbols": [{"name": "sceDmaRecvI", "hash": "2a5d4a59ccc15b59fddda92b613b3e5140e8b825", "variant": 3302728142, "library": "libdma"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "CheckTim2Header"}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 10520621}, "child": {"skip": 152, "offset": 188, "next": [], "symbols": [{"name": "GetTim2PictureHeader", "hash": "5106a0d0f485ba9a423c1da74eaf35bae1a46728", "variant": 2793156261, "library": "libhip"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 14716973}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 12617773}, "child": {"skip": 68, "offset": 96, "next": [], "symbols": [{"name": "X509_NAME_get_text_by_NID", "hash": "34ceec62f783aa6b4bf1ec4bd7c4e93254fb7223", "variant": 2510542768, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 11542561}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 429)PS2SDB", 8192}, + std::string_view{R"PS2SDB(0707504}, "child": {"skip": 164, "offset": 188, "next": [], "symbols": [{"name": "sceHiMemAlign", "hash": "07922cdefd8257bdf0709a1541ac63eabfce7dd9", "variant": 1002187807, "library": "libhig"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855520}, "child": {"skip": 180, "offset": 200, "next": [], "symbols": [{"name": "sceDopen", "hash": "42ba6a03bb1d29e569ef51f800c35026c8bb78d2", "variant": 44817341, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1053186}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289855520}, "child": {"skip": 56, "offset": 80, "next": [{"match": {"value": 1006796800}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 268435470}, "child": {"skip": 80, "offset": 168, "next": [], "symbols": [{"name": "ReleaseTimerAlarm", "hash": "b9f2c66d3657339c431901b649c1df7c7764992c", "variant": 2581413654, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006797062}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 268435470}, "child": {"skip": 80, "offset": 168, "next": [], "symbols": [{"name": "sceTimerReleaseAlarm", "hash": "0290bda1a00c63380f5b3410245e3dc23b9ee788", "variant": 988386039, "library": "libtimer"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 638648448}, "child": {"skip": 144, "offset": 168, "next": [], "symbols": [{"name": "__sceEENetsoreserve", "hash": "dae853f74be839c7400d6ed5ab87699537a7129f", "variant": 2700573730, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289986592}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1007976448}, "child": {"skip": 776, "offset": 796, "next": [], "symbols": [{"name": "__ieee754_sqrt", "hash": "0b81b60aec4224002d9a062c3fc6f2599de7d5ee", "variant": 2491756607, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 4289789960}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855504}, "child": {"skip": 1808, "offset": 1828, "next": [], "symbols": [{"name": "__ieee754_acos", "hash": "5ba904149221cd882dfd132071925a8ad8c69971", "variant": 1690477138, "library": "libm"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1007681536, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855520}, "child": {"skip": 24, "offset": 44, "next": [{"match": {"value": 341966911}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 4141}, "child": {"skip": 20, "offset": 72, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceCdSync"}}, "child": {"skip": 0, "offset": 76, "next": [{"match": {"value": 604241921}, "child": {"skip": 244, "offset": 324, "next": [], "symbols": [{"name": "ncmd_prechk", "hash": "e3ddffd97ac477a4a629b5032e707a04f7e3aa4b", "variant": 1806583650, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceCdSyncS"}}, "child": {"skip": 0, "offset": 76, "next": [{"match": {"value": 604241921}, "child": {"skip": 244, "offset": 324, "next": [], "symbols": [{"name": "scmd_prechk", "hash": "8e174ba928724674de36e02c24afa498b3432372", "variant": 2431785476, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 274857992}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 328, "offset": 380, "next": [], "symbols": [{"name": "scmd_prechk", "hash": "9b0ab4dd05a6d21932435e312cfa32f66ab88e6b", "variant": 896941271, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8421421}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2382497916}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 339738706}, "child": {"skip": 348, "offset": 380, "next": [], "symbols": [{"name": "dmaRefImage", "hash": "151bdcaa1eee1a3c1ed0579cc8c24f5680a5f176", "variant": 20311893, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2382515772}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 339738654}, "child": {"skip": 144, "offset": 176, "next": [], "symbols": [{"name": "pppoe_connect", "hash": "16c3230099a76ca8362d84df337803d750e5bf57", "variant": 3478087091, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2382495756}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 3724804232}, "child": {"skip": 208, "offset": 240, "next": [], "symbols": [{"name": "__sceEENettcp_attach", "hash": "aac051037fc89757f8b70520a99ec49711cb4757", "variant": 2853183039, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2382495804}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 1346371588}, "child": {"skip": 60, "offset": 92, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "ralarm_handler"}}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 4202541}, "child": {"skip": 228, "offset": 328, "next": [], "symbols": [{"name": "sceHTTPLibRecv", "hash": "9b81992bcabe7368f28031b86060b759b810efaa", "variant": 4092798966, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "salarm_handler"}}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 4202541}, "child": {"skip": 228, "offset": 328, "next": [], "symbols": [{"name": "sceHTTPLibSend", "hash": "6ef782b0d535de4836b9537c8c9a6d85666c8360", "variant": 2425747374, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 301989973}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4141}, "child": {"skip": 360, "offset": 392, "next": [], "symbols": [{"name": "OBJ_dup", "hash": "2bb45749742b9f556c6f649c2ba63dafe2951c5f", "variant": 1940932783, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2383478832}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 841097216}, "child": {"skip": 292, "offset": 324, "next": [], "symbols": [{"name": "do_change_cipher_spec", "hash": "d656d3a24e631343ab0b18065bd16585abe6d422", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 301989945}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289789968}, "child": {"skip": 248, "offset": 276, "next": [], "symbols": [{"name": "sceEENetMFreem", "hash": "fa59123b95a22274f406896d083e1fcdb17734c9", "variant": 2577321001, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10518573}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855520}, "child": {"skip": 160, "offset": 180, "next": [], "symbols": [{"name": "des_cbc_ede_init_key", "hash": "49d112e6001df3340a026e0f345c9561899c1d09", "variant": 1212182701, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 12615725}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289921048}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8427565}, "child": {"skip": 548, "offset": 568, "next": [], "symbols": [{"name": "__kernel_sin", "hash": "7639e74264ead5e21af2a554c1407223e5b89024", "variant": 2591794058, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 4289789960}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1083715}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289855504}, "child": {"skip": 320, "offset": 344, "next": [], "symbols": [{"name": "_lshift", "hash":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "934e9a4da185e385de09c00747fb058e2390320c", "variant": 1777085691, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 428355}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289855504}, "child": {"skip": 316, "offset": 340, "next": [], "symbols": [{"name": "_lshift", "hash": "16bcd0c04ae3b9169c32794590e1503beb6f6de3", "variant": 2355940102, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8421421}, "child": {"skip": 132, "offset": 148, "next": [], "symbols": [{"name": "ldexp", "hash": "ed87da6e1f06a7fc6264ad83a3ce3978cd1d6786", "variant": 2295168213, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 4289789960}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289855504}, "child": {"skip": 32, "offset": 48, "next": [{"match": {"value": 2359492624}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 2359689224}, "child": {"skip": 284, "offset": 340, "next": [], "symbols": [{"name": "_lshift", "hash": "23e101e7511f2ca3e70387469f3f9f6554674882", "variant": 2355940102, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 2360213520}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 2360147976}, "child": {"skip": 292, "offset": 348, "next": [], "symbols": [{"name": "_lshift", "hash": "c2ba0c980cf0f914143e5f199826b759b0463325", "variant": 2321595896, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10518573}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289855504}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8425517}, "child": {"skip": 384, "offset": 404, "next": [], "symbols": [{"name": "_make_path", "hash": "8a57feae78bab47cdc7a65fac652b23e9e6b7330", "variant": 1035620224, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789968}, "child": {"skip": 136, "offset": 156, "next": [], "symbols": [{"name": "sceInetName2Address", "hash": "941f021a0c8fa90f44b23b2c8c2aa192eb2a63d8", "variant": 958246889, "library": "libnet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604110849}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289724416}, "child": {"skip": 112, "offset": 128, "next": [{"match": {"value": 6299693}, "child": {"skip": 0, "offset": 132, "next": [{"match": {"value": 0}, "child": {"skip": 60, "offset": 196, "next": [], "symbols": [{"name": "sceDmaSync", "hash": "ee2b538d23ff07a0b9d220dd648cbe77e3f09174", "variant": 641257309, "library": "libdma"}]}}], "symbols": []}}, {"match": {"value": 0}, "child": {"skip": 0, "offset": 132, "next": [{"match": {"value": 0}, "child": {"skip": 60, "offset": 196, "next": [], "symbols": [{"name": "sceDmaSync", "hash": "68414cb422697a2417ca4caab0c935ecf14d4396", "variant": 641257309, "library": "libdma"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289986592}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10526765}, "child": {"skip": 300, "offset": 316, "next": [], "symbols": [{"name": "find_exception_handler", "hash": "d841b69725e73ac4d736338486b7eef6213d280d", "variant": 0, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289724448}, "child": {"skip": 100, "offset": 116, "next": [], "symbols": [{"name": "_sceMpegDispatchMpegCbNodata", "hash": "9ebd546377c4adc40b35275e7ba46413c1f44e5a", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289789968}, "child": {"skip": 180, "offset": 196, "next": [], "symbols": [{"name": "__sceEENetlink_rtrequest", "hash": "9efbed4e95d8e807bf08250729cc22b5ed5c5fba", "variant": 1307878177, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1007812608, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2386690048, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 4, "offset": 24, "next": [{"match": {"value": 71303197}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4289724416}, "child": {"skip": 140, "offset": 172, "next": [], "symbols": [{"name": "sceMcEnd", "hash": "8b26e81f9249ebd56958aae276ac3089f963de31", "variant": 3506956060, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 339738628}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4289724416}, "child": {"skip": 4, "offset": 36, "next": [{"match": {"value": 268435495}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 876773377}, "child": {"skip": 176, "offset": 220, "next": [], "symbols": [{"name": "sceMc2End", "hash": "1be6f84eb9363c75fffa74bc0562dbab5f1ecd1b", "variant": 2154339163, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 268435490}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 876773377}, "child": {"skip": 156, "offset": 200, "next": [], "symbols": [{"name": "sceMc2End", "hash": "bccd3b3af5dfd04207b441f30cd1774dd0f49fc6", "variant": 724282888, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 272629781}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4289724416}, "child": {"skip": 104, "offset": 136, "next": [], "symbols": [{"name": "X509v3_cleanup_extensions", "hash": "42f09929435828c08b6912b9e636be2dc5317b7b", "variant": 553151300, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2386690048, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 32813}, "child": {"skip": 104, "offset": 128, "next": [], "symbols": [{"name": "sceHiDMADeleteMarked", "hash": "011c86d432cb05baa6316f66483d6d627dcfea67", "variant": 2041501701, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 2386821120, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4290707504}, "child": {"skip": 96, "offset": 120, "next": [], "symbols": [{"name": "__sceEENetthread_wakeup", "hash": "3daac524f1f22a42ac582ada2231737db7057754", "variant": 3004180779, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2386690048, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8423469}, "child": {"skip": 152, "offset": 176, "next": [], "symbols": [{"name": "X509v3_add_extension", "hash": "bd775e56a9028bb9bd63647614ee304602640398", "variant": 1643159001, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 37783597}, "child": {"skip": 120, "offset": 144, "next": [], "symbols": [{"name": "__sceEENeticmp_mtudisc_callback_register", "hash": "4f06ca7b871431d26cc9bb3b8fc8ad2fcaf720bc", "variant": 1381892082, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1007812608, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8423469}, "child": {"skip": 28, "offset": 48, "next": [{"match": {"value": 301989892}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 0}, "child": {"skip": 48, "offset": 104, "next": [], "symbols": [{"name":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "__sceEENetget_threadinfo", "hash": "099ce7bace48949a1f37a968b0f2988d2ae71db6", "variant": 166134382, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 301989897}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 0}, "child": {"skip": 68, "offset": 124, "next": [], "symbols": [{"name": "__sceEENetlock_threadinfo", "hash": "333b3b966d7026a569ade3a9720d4f446755a7bb", "variant": 383654305, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8425517}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1007747072, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289724416}, "child": {"skip": 264, "offset": 288, "next": [], "symbols": [{"name": "sceHiDMAMake_LoadGS", "hash": "ac67a9a6906b9da66ab00f5fbf4c7841f47dbab2", "variant": 386063399, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 10520621}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "DIntr"}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 12615725}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 3659792384}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 3659857936}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 3659923488}, "child": {"skip": 4, "offset": 52, "next": [{"match": {"value": 3657957376}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 1273504188}, "child": {"skip": 64, "offset": 124, "next": [], "symbols": [{"name": "sceVu0ApplyMatrix", "hash": "a6824ecf7ef55e359652891f8533670ae40d9bd5", "variant": 1968684179, "library": "libvu0"}]}}], "symbols": []}}, {"match": {"value": 604438532}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 3657957376}, "child": {"skip": 84, "offset": 144, "next": [], "symbols": [{"name": "sceVu0MulMatrix", "hash": "e6816819500b085f0ccd5bd25ee274bb5197e9ad", "variant": 1803029466, "library": "libvu0"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 3657760768}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 1271210750}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 1271146926}, "child": {"skip": 56, "offset": 108, "next": [], "symbols": [{"name": "sceVu0OuterProduct", "hash": "09a9e12a2c01f4326f3cc205cd9e3e7a7047e999", "variant": 1564342159, "library": "libvu0"}]}}], "symbols": []}}, {"match": {"value": 1273307560}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 4198891520}, "child": {"skip": 48, "offset": 100, "next": [], "symbols": [{"name": "sceVu0AddVector", "hash": "648d731a7ac414f9bb7f0dccd43e9973d5debdd3", "variant": 1225314817, "library": "libvu0"}]}}], "symbols": []}}, {"match": {"value": 1273307564}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 4198891520}, "child": {"skip": 48, "offset": 100, "next": [], "symbols": [{"name": "sceVu0SubVector", "hash": "94a418911ef1e0b30d995a3252a32bf03b369e78", "variant": 1225314817, "library": "libvu0"}]}}], "symbols": []}}, {"match": {"value": 1273307562}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 4198891520}, "child": {"skip": 48, "offset": 100, "next": [], "symbols": [{"name": "sceVu0MulVector", "hash": "a6c23e437cb88e494e84636a5d1452436cff1416", "variant": 1225314817, "library": "libvu0"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 3657695232}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 3659857968}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 2049376256}, "child": {"skip": 76, "offset": 124, "next": [], "symbols": [{"name": "sceVu0TransMatrix", "hash": "da3b764d75e80f804e88d505052426c93dc06cb0", "variant": 1968684179, "library": "libvu0"}]}}], "symbols": []}}, {"match": {"value": 3657760784}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 3657826336}, "child": {"skip": 112, "offset": 160, "next": [], "symbols": [{"name": "set_light_rot", "hash": "ee798a59833a61e26cdf51b707ce08e96b778aa5", "variant": 3803933878, "library": "libhip"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1272971564}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 1006847360}, "child": {"skip": 128, "offset": 172, "next": [], "symbols": [{"name": "sceVu0ClipScreen3", "hash": "5cec8fa9559e0b7503a35d428af988a45ace9411", "variant": 3902930545, "library": "libvu0"}]}}], "symbols": []}}, {"match": {"value": 3657498624}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 1273037356}, "child": {"skip": 96, "offset": 140, "next": [], "symbols": [{"name": "set_pivot_matrix", "hash": "dd29be63e5a7df39aea76b780fa23fc61307e79a", "variant": 3684792408, "library": "libhip"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceEENetMalloc"}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 604242016}, "child": {"skip": 148, "offset": 184, "next": [], "symbols": [{"name": "__sceEENetin_pcballoc", "hash": "c44d9cc17a41482887460e7d47ef5b003b04d39d", "variant": 3455787954, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "R_malloc"}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 604242088}, "child": {"skip": 256, "offset": 292, "next": [], "symbols": [{"name": "lh_new", "hash": "1a61c4aee2463b5fd0e3b1cd59367a5f57284d02", "variant": 3192468107, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 371195907}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 32813}, "child": {"skip": 164, "offset": 200, "next": [], "symbols": [{"name": "SSL_X509_certificate_type_ex", "hash": "c53e0e86d4ba075002c2f406de51cc8a76f82a40", "variant": 3049744959, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10493997}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290707504}, "child": {"skip": 132, "offset": 160, "next": [], "symbols": [{"name": "__sceEENetrn_lookup", "hash": "c5e834e01ab4a6c68b1c61013694f9630e552143", "variant": 3911933999, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 605093899}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290707504}, "child": {"skip": 84, "offset": 112, "next": [], "symbols": [{"name": "BN_CTX_free", "hash": "2d73bb2c0b61a479d34fe82aa983c3435a520ce1", "variant": 234283366, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "BIO_s_file"}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 10520621}, "child": {"skip": 72, "offset": 104, "next": [], "symbols": [{"name": "BIO_new_fp", "hash": "f583629789e0f278a475a1d1a916b3c66ef5c900", "variant": 2488477351, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "BIO_s_socket"}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 10520621}, "child": {"skip": 72, "offset": 104, "next": [], "symbols": [{"name": "BIO_new_socket", "hash": "9233a60ea35910d829532099c349d7893944a12a", "variant": 2909198216, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "R_time_new"}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 10520621}, "child": {"skip": 88, "offset": 120, "next": [], "symbols": [{"name": "X509_gmtime_adj", "hash": "1d356ca5c1e2cfc35ef5e64a5cf7a3f49deaa1cd", "variant": 312369512, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 12617773}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 28, "next)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__errno"}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 10518573}, "child": {"skip": 92, "offset": 128, "next": [], "symbols": [{"name": "scefd_write", "hash": "ba71e76f6b29ef72a00ec81c70413d4a66a055e8", "variant": 491241370, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__sceNetGlueErrnoLoc"}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 10518573}, "child": {"skip": 100, "offset": 136, "next": [], "symbols": [{"name": "sock_write", "hash": "3a5e7cee5ce536143c0628a2c4f6f9208a08129e", "variant": 1697997887, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 10520621}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 1074814976}, "child": {"skip": 36, "offset": 68, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceSDC"}}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 38019108}, "child": {"skip": 48, "offset": 124, "next": [], "symbols": [{"name": "SyncDCache", "hash": "b09e2fdcf29ccb60fa904b3b55b02eabdba8c5c4", "variant": 4222064274, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceIDC"}}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 38019108}, "child": {"skip": 48, "offset": 124, "next": [], "symbols": [{"name": "InvalidDCache", "hash": "b09e2fdcf29ccb60fa904b3b55b02eabdba8c5c4", "variant": 1327657061, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 415236112}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4289724416}, "child": {"skip": 84, "offset": 116, "next": [], "symbols": [{"name": "poll_so_enter", "hash": "78ce1f3150ace3eda0dc3fd8485a38976dbc0841", "variant": 1114611190, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 304087061}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4289724416}, "child": {"skip": 112, "offset": 144, "next": [], "symbols": [{"name": "SSL_CTX_remove_session", "hash": "5a38147a48815d1117813a5756b2aef97a3b8da7", "variant": 1072580618, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 605093904}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289724416}, "child": {"skip": 36, "offset": 64, "next": [{"match": {"value": 2520907802}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 3752919056}, "child": {"skip": 36, "offset": 108, "next": [], "symbols": [{"name": "__sceEENetin_setsockaddr", "hash": "3459032cb580861ad4d17029029d6dd5815a231e", "variant": 27468395, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2520907800}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 3752919056}, "child": {"skip": 36, "offset": 108, "next": [], "symbols": [{"name": "__sceEENetin_setpeeraddr", "hash": "8d14e4c46bd54334882271a61670d87887fa6239", "variant": 27468395, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "SSL_write"}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2386821488}, "child": {"skip": 72, "offset": 104, "next": [], "symbols": [{"name": "sceHTTPSSend", "hash": "6cdeb7b225310efc8a84c0bf0c272324384d036b", "variant": 444261606, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2386690112}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 339738646}, "child": {"skip": 140, "offset": 172, "next": [], "symbols": [{"name": "ssl2_part_read", "hash": "940eed6e8d451800efafed3de86471348401b2e9", "variant": 2708840901, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 12619821}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 10520621}, "child": {"skip": 92, "offset": 116, "next": [], "symbols": [{"name": "read", "hash": "25ae59e194b145b59b9072197e19a70bdd167382", "variant": 3385276101, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 10520621}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "TerminateLibrary"}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 8421421}, "child": {"skip": 36, "offset": 72, "next": [], "symbols": [{"name": "LoadExecPS2", "hash": "b586db586efe3f80d4decfae3fcaccd26ae189b8", "variant": 1612391678, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceHiDMAMake_ChainStart"}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 8421421}, "child": {"skip": 100, "offset": 136, "next": [], "symbols": [{"name": "_register", "hash": "0ca9393b54257f635c3180808564b89f7a782e91", "variant": 359903398, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceHiGsGeneralStatus"}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 8421421}, "child": {"skip": 244, "offset": 280, "next": [], "symbols": [{"name": "micro_set_data", "hash": "949beb0788c1955390f294d8f88a618e80ddb188", "variant": 2356147235, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__errno"}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 8421421}, "child": {"skip": 4, "offset": 40, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "SSL_state"}}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 33562669}, "child": {"skip": 36, "offset": 84, "next": [{"match": {"value": 604307576}, "child": {"skip": 0, "offset": 88, "next": [{"match": {"value": 604374093}, "child": {"skip": 132, "offset": 224, "next": [], "symbols": [{"name": "ssl23_read", "hash": "8876f49382d31e29cfff20b33ac643b8b5242789", "variant": 3308187195, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604307577}, "child": {"skip": 0, "offset": 88, "next": [{"match": {"value": 604374093}, "child": {"skip": 132, "offset": 224, "next": [], "symbols": [{"name": "ssl23_write", "hash": "a66388ba637dca9a8d86741c249cf5a6807e1ce6", "variant": 3503690396, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2382626900}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 2357330196}, "child": {"skip": 296, "offset": 344, "next": [], "symbols": [{"name": "ssl3_write", "hash": "6a8f8c17fd0ccd627404f49fc4a47b4840bd2fdb", "variant": 3442076516, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2382561364}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 2355233044}, "child": {"skip": 176, "offset": 224, "next": [], "symbols": [{"name": "ssl3_read", "hash": "afce078edc30e4722ae181ed7b267e5471b82ac9", "variant": 1870091902, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8421421}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 301990121}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 604166379}, "child": {"skip": 952, "offset": 992, "next": [], "symbols": [{"name": "sceAtokSetConfig", "hash": "52492322df745fe87ec469101fff7906c960fd25", "variant": 3665807154, "library": "libatok"}]}}], "symbols": []}}, {"match": {"value": 301989913}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 60416)PS2SDB", 8192}, + std::string_view{R"PS2SDB(6379}, "child": {"skip": 120, "offset": 160, "next": [], "symbols": [{"name": "sceAtokGetCandidateList", "hash": "8ba640a7c88ccf4d8cecef8a4769e2a7ff17f48a", "variant": 3635747233, "library": "libatok"}]}}], "symbols": []}}, {"match": {"value": 301989900}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 4141}, "child": {"skip": 68, "offset": 108, "next": [], "symbols": [{"name": "EVP_PKEY_assign", "hash": "72d8dabb3ee3752fded91f4587dc78ebb79c0592", "variant": 2489054205, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8421421}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 369098755}, "child": {"skip": 372, "offset": 404, "next": [], "symbols": [{"name": "ssl_cipher_get_evp", "hash": "2169c0bc645c58e368f14bb79d9937b1066661c4", "variant": 2172694673, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 8421421}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2516713484}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 809632000}, "child": {"skip": 92, "offset": 128, "next": [], "symbols": [{"name": "__swrite", "hash": "83aa2777617020fc15086ac691616513ebdfa10c", "variant": 2041832667, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 2382561364}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 341835781}, "child": {"skip": 52, "offset": 88, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_vfprintf_r"}}, "child": {"skip": 0, "offset": 92, "next": [{"match": {"value": 37763117}, "child": {"skip": 24, "offset": 120, "next": [], "symbols": [{"name": "vfprintf", "hash": "fd14fa8bb9e8cc57e37223328d03375d7ac6a8b2", "variant": 3052659457, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_vfiprintf_r"}}, "child": {"skip": 0, "offset": 92, "next": [{"match": {"value": 37763117}, "child": {"skip": 24, "offset": 120, "next": [], "symbols": [{"name": "vfiprintf", "hash": "fd14fa8bb9e8cc57e37223328d03375d7ac6a8b2", "variant": 4210140148, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8423469}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceHiGsContextStatus"}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 10518573}, "child": {"skip": 116, "offset": 152, "next": [], "symbols": [{"name": "sceHiGsZbufRegs", "hash": "8cd872f3a31f5d248416ee4dc5b4d59af7d2709c", "variant": 238274701, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceHiGsGeneralStatus"}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 10518573}, "child": {"skip": 72, "offset": 108, "next": [], "symbols": [{"name": "sceHiGsTexaRegs", "hash": "6c8d319a8dea80e81960a6ee0cd730d1a2398d51", "variant": 330659773, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 10518573}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 304087285}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 604166379}, "child": {"skip": 1000, "offset": 1040, "next": [], "symbols": [{"name": "sceAtokGetConfig", "hash": "af0942d5bbaaddd00eff622b96f47f9d50c97392", "variant": 2315831694, "library": "libatok"}]}}], "symbols": []}}, {"match": {"value": 2384592896}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 272629773}, "child": {"skip": 80, "offset": 120, "next": [], "symbols": [{"name": "EVP_EncodeFinal", "hash": "e823e999991a5e443c46eae0858ade017f561422", "variant": 975524134, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10522669}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "DIntr"}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 8423469}, "child": {"skip": 116, "offset": 148, "next": [], "symbols": [{"name": "sceSifRemoveRpc", "hash": "64efc9fcb430dbbe3ae71462a71aff5a28b697ce", "variant": 3422221246, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceNetcnfifInit"}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 8423469}, "child": {"skip": 68, "offset": 100, "next": [], "symbols": [{"name": "sceNetcnfifGetCount", "hash": "7f861279e073747e7f44f597b6a7750d448b8dc9", "variant": 1335673556, "library": "netcnfif"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "BIO_s_file"}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 8423469}, "child": {"skip": 76, "offset": 108, "next": [], "symbols": [{"name": "BIO_new_file", "hash": "fa85e92c851752a29ee91a6d60030e3f3d18ac9c", "variant": 2337767501, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 8421421}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2382495748}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 272629763}, "child": {"skip": 44, "offset": 80, "next": [], "symbols": [{"name": "ASN1_TYPE_set", "hash": "4533ef9a691ffa1aa928638f9da73bd22659d131", "variant": 4071257828, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2382495764}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 272629767}, "child": {"skip": 128, "offset": 164, "next": [], "symbols": [{"name": "SSL_set_bio", "hash": "2e4c499d00b0fb12a7fcdfe48031b7758e619397", "variant": 3242290383, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2382495752}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2353201236}, "child": {"skip": 140, "offset": 176, "next": [], "symbols": [{"name": "ssl3_send_alert", "hash": "4e1bc79ce1aa2a39306d5757b9a40a96c2967ea5", "variant": 922253810, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2382626816}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2382692364}, "child": {"skip": 216, "offset": 252, "next": [], "symbols": [{"name": "sk_insert", "hash": "84a4245863bdb4af1d863b8cc1936bbf70d20b12", "variant": 3213216937, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8423469}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "scePadGetDmaStr"}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 12615725}, "child": {"skip": 156, "offset": 192, "next": [], "symbols": [{"name": "scePadSetActDirect", "hash": "10309dd1f1aa64be4a500dc614221aebb298a04b", "variant": 1463543926, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceHiGsGeneralStatus"}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 12615725}, "child": {"skip": 44, "offset": 80, "next": [], "symbols": [{"name": "sceHiGsFogcolRegs", "hash": "ed792627f98064114db53c16eb6179058fce9d17", "variant": 330659773, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 12615725}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2384592980}, "child": {"skip": 48, "offset": 84, "next": [], "symbols": [{"name": "ssl3_finish_mac", "hash": "7f5a768f3ed43b14b9cb9f7c7be5c5aec061ba5a", "variant": 660097603, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 12615725}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4290707504}, "child": {"skip": 300, "offset": 332, "next": [], "symbols": [{"na)PS2SDB", 8192}, + std::string_view{R"PS2SDB(me": "__sceEENetip_getmoptions", "hash": "cdf8d8f9a5b81751feb5edb4a9233e3d8d9e78b5", "variant": 407459161, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 12617773}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 8421421}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4290707504}, "child": {"skip": 80, "offset": 112, "next": [], "symbols": [{"name": "sceHiCreateDataBlk", "hash": "f1b72031db071342c19af683c06b363fbf8f0eea", "variant": 3668152641, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 276824069}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 32813}, "child": {"skip": 148, "offset": 184, "next": [], "symbols": [{"name": "__sceEENetpffindproto", "hash": "fcb5071ae3c937c5ee04154cb7a0a0afcbd64afa", "variant": 2318954781, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 371195908}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 8421421}, "child": {"skip": 360, "offset": 396, "next": [], "symbols": [{"name": "__sceEENetsbappendcontrol", "hash": "35676e56944524d46d58697695cd2c6f58774b03", "variant": 1188158525, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 8421421}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2449604610}, "child": {"skip": 204, "offset": 240, "next": [], "symbols": [{"name": "sppp_cp_change_state", "hash": "cdee1dcc4ec8fa026152806d402eae6a4be6a5ff", "variant": 3950150639, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 268435460}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 8421421}, "child": {"skip": 84, "offset": 120, "next": [], "symbols": [{"name": "sceEENetSifBindRpc", "hash": "ccfc39175398f75f759108f941aba4a49200005b", "variant": 2400888699, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1006960641}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 883249536}, "child": {"skip": 688, "offset": 716, "next": [], "symbols": [{"name": "localtime_r", "hash": "4443cb930b19d33aee80e34bfd73950b06e6fdd7", "variant": 2910627554, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2358247424}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 268435466}, "child": {"skip": 40, "offset": 72, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceGpGetNextDmatag"}}, "child": {"skip": 0, "offset": 76, "next": [{"match": {"value": 33562669}, "child": {"skip": 36, "offset": 116, "next": [], "symbols": [{"name": "sceGpSearchTailToRemove", "hash": "20828068770807f0c04fce70828d652de1bfa7f4", "variant": 2805534831, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": ""}}, "child": {"skip": 0, "offset": 76, "next": [{"match": {"value": 33562669}, "child": {"skip": 36, "offset": 116, "next": [], "symbols": [{"name": "sceGpSearchTailToRemove", "hash": "20828068770807f0c04fce70828d652de1bfa7f4", "variant": 937283204, "library": "libgp"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2358247448}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 369098757}, "child": {"skip": 176, "offset": 208, "next": [], "symbols": [{"name": "sceHiPlugShapeInvisible", "hash": "576f70d1a4cdc65c7d5728ae74750711b44f30f7", "variant": 2431714247, "library": "libhip"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8423469}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 304087057}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 604166379}, "child": {"skip": 24, "offset": 60, "next": [{"match": {"value": 2251293038}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 2384789880}, "child": {"skip": 56, "offset": 124, "next": [], "symbols": [{"name": "sceAtokGetConvertedStr", "hash": "57c0980e2fc22556b15b89ee764278f9e7534466", "variant": 378842880, "library": "libatok"}]}}], "symbols": []}}, {"match": {"value": 2251293040}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 2384789884}, "child": {"skip": 56, "offset": 124, "next": [], "symbols": [{"name": "sceAtokGetConvertedReadStr", "hash": "e082362e25b85011d92fa2cfc2aeb257f5ed9d61", "variant": 378842880, "library": "libatok"}]}}], "symbols": []}}, {"match": {"value": 2251293042}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 2384789888}, "child": {"skip": 56, "offset": 124, "next": [], "symbols": [{"name": "sceAtokGetConvertingStr", "hash": "2661a5a4301b0602a1c76f864067ea29782338bb", "variant": 378842880, "library": "libatok"}]}}], "symbols": []}}, {"match": {"value": 2251293044}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 2384789896}, "child": {"skip": 56, "offset": 124, "next": [], "symbols": [{"name": "sceAtokGetConvertingReadStr", "hash": "9253c26f09a487db316f431ca65db96ca5ec0e86", "variant": 378842880, "library": "libatok"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2385510408}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 301989914}, "child": {"skip": 128, "offset": 164, "next": [], "symbols": [{"name": "__sceEENetraw_attach", "hash": "32b6b6c932decfdaccc4dd7cbdd229172af2a7e6", "variant": 3267316460, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 304087060}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4141}, "child": {"skip": 100, "offset": 136, "next": [], "symbols": [{"name": "i2d_X509_NAME", "hash": "534aa43e043af7cae57ea447c11b2fdf4a1f78ae", "variant": 3813953811, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2384658432}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2386690048}, "child": {"skip": 276, "offset": 312, "next": [], "symbols": [{"name": "EVP_PKEY_copy_parameters", "hash": "2d2dd4c87499789e14095d6f7d21f582a44042d6", "variant": 1320551468, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 440401923}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4289724416}, "child": {"skip": 376, "offset": 408, "next": [], "symbols": [{"name": "SSL_get_error", "hash": "95513c2a5d83971ec5b915828e598528bf2bec85", "variant": 3856688264, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 373293061}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4289724416}, "child": {"skip": 4, "offset": 36, "next": [{"match": {"value": 604307655}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 268435472}, "child": {"skip": 140, "offset": 184, "next": [], "symbols": [{"name": "SSL_use_certificate", "hash": "8261ce31b46b3159ec95d9b68043a89cd4e5b5f9", "variant": 2495498311, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604307658}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 268435472}, "child": {"skip": 140, "offset": 184, "next": [], "symbols": [{"name": "SSL_use_PrivateKey", "hash": "43704bfdb79faf0903764cc544207485003c27a5", "variant": 2814272791, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 304087063}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4289724416}, "child": {"skip": 112, "offset": 144, "next": [], "symbols": [{"name": "sk_clear", "hash": "2542a0c744f016097c55e236b296a5a45a23bca1", "variant": 1728456881, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 605159425}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1007747072, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 8, "offset": 28, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "DIntr"}}, "child": {"sk)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ip": 0, "offset": 32, "next": [{"match": {"value": 2922512384, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 84, "offset": 120, "next": [], "symbols": [{"name": "PowerOffCB", "hash": "3014b900bf8218dc7cf3ddf2d015919d327854cd", "variant": 243712042, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 2922512384, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "DIntr"}}, "child": {"skip": 88, "offset": 124, "next": [], "symbols": [{"name": "PowerOffCB", "hash": "222a65f8ebdf088938aadbc0141f9ac7720a7e43", "variant": 1109280700, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 16814125}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 18909229}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290707504}, "child": {"skip": 88, "offset": 116, "next": [], "symbols": [{"name": "sceHiGsCtxSetDefaultValues", "hash": "75a89bc5d7e1e0adfe3be71f194768f22122c991", "variant": 582490638, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 12617773}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290707504}, "child": {"skip": 120, "offset": 148, "next": [], "symbols": [{"name": "__sceEENetsysctl_struct", "hash": "b2c2a1c2e8f42da7642bfc43571d796c8ea6a6b6", "variant": 2022098471, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "DIntr"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 36909}, "child": {"skip": 172, "offset": 200, "next": [], "symbols": [{"name": "sceUsbKbEnd", "hash": "7eabddef79e2d9877d3c140239ae19215a2dd56c", "variant": 1779285390, "library": "libusbkb"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__sceEENetMReclaim"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 10522669}, "child": {"skip": 32, "offset": 60, "next": [{"match": {"value": 304087046}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 639762452}, "child": {"skip": 48, "offset": 116, "next": [], "symbols": [{"name": "__sceEENetMRetry", "hash": "b6c0474ea4588e9d03fd5e29057e732333230ba4", "variant": 1588322379, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 304087048}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 639762464}, "child": {"skip": 56, "offset": 124, "next": [], "symbols": [{"name": "__sceEENetMRetryhdr", "hash": "a1c6165732588f4cc429386adea5640accddfb19", "variant": 1588322379, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10520621}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4290707504}, "child": {"skip": 4, "offset": 28, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__sceEENetifmedia_match"}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2382757888}, "child": {"skip": 80, "offset": 116, "next": [], "symbols": [{"name": "__sceEENetifmedia_set", "hash": "4307268a94e204feec9d02d490f695ff3d891d9f", "variant": 3158457551, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2382626824}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 277938192}, "child": {"skip": 104, "offset": 140, "next": [], "symbols": [{"name": "SSL_set_ssl_method", "hash": "22650ee577ae7d2005a34c1a8930c708765f34d1", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 12617773}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 10518573}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2382561292}, "child": {"skip": 180, "offset": 212, "next": [], "symbols": [{"name": "BN_add", "hash": "6a71c9d22de4cd421358295cbdef90bcbcdd6445", "variant": 2036257109, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 8421421}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2382495792}, "child": {"skip": 208, "offset": 240, "next": [], "symbols": [{"name": "op_push", "hash": "797b703364b942ad8149ea8b1cb6da329b491b24", "variant": 4230791137, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 613548024}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289724416}, "child": {"skip": 64, "offset": 88, "next": [], "symbols": [{"name": "phaseChange2TruncateAll", "hash": "5bf4ce8dc98bc04aa6729588737c194d4b9878ec", "variant": 3187146435, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 8423469}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2384592896}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 272629763}, "child": {"skip": 260, "offset": 292, "next": [], "symbols": [{"name": "__sceEENetrn_inithead", "hash": "e16187ca45ae357270316c65f3949a5998647eb6", "variant": 3778103314, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2385510408}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 301989927}, "child": {"skip": 212, "offset": 244, "next": [], "symbols": [{"name": "__sceEENetrt_timer_queue_destroy", "hash": "a72dcb415607461c46d8c60fe8bf33889e352709", "variant": 2690259877, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2384592944}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 340066339}, "child": {"skip": 176, "offset": 208, "next": [], "symbols": [{"name": "ssl3_send_finished", "hash": "7a7ee03f31074c777de037e21f2adc0695391d95", "variant": 2959502402, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2384723988}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 343932938}, "child": {"skip": 252, "offset": 284, "next": [], "symbols": [{"name": "ssl_init_wbio_buffer", "hash": "ce08b0a47aa7873c34f996c2f98f347db83398f1", "variant": 2008637299, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 36909}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__sceEENetthread_enter"}}, "child": {"skip": 104, "offset": 132, "next": [], "symbols": [{"name": "sceEENetBpfOpen", "hash": "782d05ce43b86b23b122cb9d1549fb1b6b3bbea1", "variant": 2191027987, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 8423469}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 10518573}, "child": {"skip": 132, "offset": 164, "next": [], "symbols": [{"name": "crypto_sslc_digest_init", "hash": "202275f7d9e0c49c60e460dcbbd0d967db75f0f1", "variant": 1679948772, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 10518573}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 369098755}, "child": {"skip": 132, "offset": 164, "next": [], "symbols": [{"name": "crypto_sslc_dh_key_exch_init", "hash": "ff9b9b657560b0f6fc426f7a90deb976256b013a", "variant": 1396055472, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10520621}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290707504}, "child": {"skip": 300, "offset": 328, "next": [], "symbols": [{"name": "SSL_set_session", "hash": "2439e52c53f29)PS2SDB", 8192}, + std::string_view{R"PS2SDB(5779d8c85359ce4d4c0e8dd96c4", "variant": 3644375558, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8423469}, "child": {"skip": 256, "offset": 280, "next": [], "symbols": [{"name": "DH_new_meth", "hash": "a2874e912948b6696748130a329bab69ece0290e", "variant": 738912680, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 14716973}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724416}, "child": {"skip": 8, "offset": 28, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "R_rand_get_default"}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 10518573}, "child": {"skip": 48, "offset": 84, "next": [], "symbols": [{"name": "crypto_sslc_random_gen_rand", "hash": "8922a92bf12419c1d8120cdd4b3649eaac16bfe2", "variant": 2437934265, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 278921223}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 8421421}, "child": {"skip": 12, "offset": 48, "next": [{"match": {"value": 2382495744}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 268435467}, "child": {"skip": 68, "offset": 124, "next": [], "symbols": [{"name": "EVP_EncryptInit", "hash": "df91d6c6a220e517ebdbea94817208f1e085021a", "variant": 1284727671, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2382561280}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 268435467}, "child": {"skip": 68, "offset": 124, "next": [], "symbols": [{"name": "EVP_DecryptInit", "hash": "013d96dcd5918adc60b44712d14f4e843a284ca9", "variant": 1284727671, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1007812608, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 642777088, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 16, "offset": 40, "next": [{"match": {"value": 1006796800}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 268435484}, "child": {"skip": 136, "offset": 184, "next": [], "symbols": [{"name": "EndTimer", "hash": "2127122447ac7222a0bb3176e0bb80949059f6a6", "variant": 751321765, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006797062}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 268435487}, "child": {"skip": 148, "offset": 196, "next": [], "symbols": [{"name": "sceTimerEnd", "hash": "d5f73f4d9feacd16e514218e029adc9d56f8aedb", "variant": 712859518, "library": "libtimer"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8421421}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2386821120, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 34861}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 343932933}, "child": {"skip": 320, "offset": 356, "next": [], "symbols": [{"name": "sceHiDMAMake_CallID", "hash": "e266006bf4f48cebaa6b1331860edc72086b9bc3", "variant": 1482295026, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "WaitSema"}}, "child": {"skip": 4, "offset": 40, "next": [{"match": {"value": 1120578}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 108, "offset": 156, "next": [], "symbols": [{"name": "__sceEENeteenet_tiwakeup", "hash": "544b9c090696a0505b98ec1b46f4fca0b85d9c45", "variant": 1808384835, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2516779018}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 2516713542}, "child": {"skip": 76, "offset": 124, "next": [], "symbols": [{"name": "__sceEENetthread_leave", "hash": "0659023522034fb70102589c3b6bca699d9f60ef", "variant": 174966283, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 641990656, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4290707504}, "child": {"skip": 212, "offset": 244, "next": [], "symbols": [{"name": "sceDbcGetConnection", "hash": "c0bee480cae189bfb72b89f325c2005d3a4a49d8", "variant": 3162211360, "library": "libdbc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 36909}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8421421}, "child": {"skip": 336, "offset": 360, "next": [], "symbols": [{"name": "printfloat", "hash": "d3dc69a4a089be4962b21696b80497d57d9ab1e7", "variant": 3628147105, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 16810029}, "child": {"skip": 300, "offset": 324, "next": [], "symbols": [{"name": "__sceEENetrip_ctloutput", "hash": "3c2c8108f0918d603061b8c60d2da15655b1dab8", "variant": 298031513, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8425517}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1007681536, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289789968}, "child": {"skip": 4, "offset": 28, "next": [{"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "WaitSema"}}, "child": {"skip": 52, "offset": 88, "next": [], "symbols": [{"name": "sceCdSetEEReadMode", "hash": "010bab9e5e139836513bc60567447c6da950f835", "variant": 3492263933, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 10520621}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 343932933}, "child": {"skip": 228, "offset": 264, "next": [], "symbols": [{"name": "sceHiDMAMake_LoadMicro", "hash": "7bee4a44d11983de77ef7ccc4223e2fb902eb044", "variant": 978996657, "library": "libhig"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 10518573}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 373293061}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4289789968}, "child": {"skip": 116, "offset": 148, "next": [], "symbols": [{"name": "sceHiMemRealloc", "hash": "855c35b38ebf8ab6ed7e6954a24b50d0050fbce6", "variant": 2256492612, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 306184202}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4289789968}, "child": {"skip": 100, "offset": 132, "next": [], "symbols": [{"name": "sceHTTPLibStrnsave", "hash": "3ed729a8c04517036bae7b6e73a6c0012174b134", "variant": 618906901, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1007681536, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290707504}, "child": {"skip": 88, "offset": 116, "next": [], "symbols": [{"name": "SyncDmaForRead", "hash": "d6fbe3bc90b0886efce675f71efa63217380080c", "variant": 3962659606, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 12615725}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 10520621}, "child": {"skip": 128, "offset": 156, "next": [], "symbols": [{"name": "sceGpCallChain2", "hash": "e62affd94)PS2SDB", 8192}, + std::string_view{R"PS2SDB(223f9b5a4925f7f09e8357a06fec962", "variant": 1907130130, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__sceEENetspllock"}}, "child": {"skip": 24, "offset": 52, "next": [{"match": {"value": 604307458}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 12333}, "child": {"skip": 48, "offset": 108, "next": [], "symbols": [{"name": "__sceEENetsobind", "hash": "8fe08d7155b7271185c18cc5d97328b1f1673309", "variant": 2963258043, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 604307473}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 12333}, "child": {"skip": 48, "offset": 108, "next": [], "symbols": [{"name": "__sceEENetsoconnect2", "hash": "5233099d1c4c3d071a94f42b295cf6206879aa76", "variant": 2963258043, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 4, "offset": 24, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__sceEENetspllock"}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2383479024}, "child": {"skip": 132, "offset": 164, "next": [], "symbols": [{"name": "__sceEENetether_ifdetach", "hash": "fff4a64f5b5fb7ceeeb85076245c15db59e6a4a4", "variant": 1385468905, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2382497816}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 339738629}, "child": {"skip": 232, "offset": 264, "next": [], "symbols": [{"name": "_peepBit", "hash": "6562c30ac6bacc9885c5bfafe8b5f0d5f941e2fc", "variant": 1505621823, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2383478792}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2382495756}, "child": {"skip": 148, "offset": 180, "next": [], "symbols": [{"name": "__sceEENetip_stripoptions", "hash": "2d06cc40c365feae029fab734bfa1ab6c614975e", "variant": 493101796, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2382561284}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 274726932}, "child": {"skip": 188, "offset": 220, "next": [], "symbols": [{"name": "BER_ITEMS_SK_free", "hash": "bdb06a548046a5daf57fc17dd776453d63440341", "variant": 3568571232, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 816972031}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707504}, "child": {"skip": 172, "offset": 192, "next": [], "symbols": [{"name": "turnOffSameKey", "hash": "3a51b581b6317c759faede80e851b4621f7fc070", "variant": 869550052, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 10522669}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8421421}, "child": {"skip": 4, "offset": 28, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__sceEENetin_pcbrtentry"}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2383478800}, "child": {"skip": 188, "offset": 224, "next": [], "symbols": [{"name": "__sceEENettcp_mtudisc", "hash": "eb7b894860d34a9f640faeb3eb70ccd99c192a70", "variant": 2996896027, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 306184199}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2383478904}, "child": {"skip": 72, "offset": 108, "next": [], "symbols": [{"name": "rc4_init_key", "hash": "4cc77c176847ed1ff7ccc889c215574a7c1c5f19", "variant": 3122214197, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4290707504}, "child": {"skip": 60, "offset": 84, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__sceEENetsolisten"}}, "child": {"skip": 0, "offset": 88, "next": [{"match": {"value": 37759021}, "child": {"skip": 48, "offset": 140, "next": [], "symbols": [{"name": "sceEENetListen", "hash": "501bfcfd9c9c19b567c39d5f260a9a1b3ea51ec2", "variant": 4251807637, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__sceEENetsoshutdown"}}, "child": {"skip": 0, "offset": 88, "next": [{"match": {"value": 37759021}, "child": {"skip": 48, "offset": 140, "next": [], "symbols": [{"name": "sceEENetShutdown", "hash": "501bfcfd9c9c19b567c39d5f260a9a1b3ea51ec2", "variant": 1496117587, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 18911277}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707504}, "child": {"skip": 256, "offset": 276, "next": [], "symbols": [{"name": "bio_dump_cb", "hash": "586955858e3662792ce2987a7a92aec28838bf63", "variant": 284693485, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 12619821}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707504}, "child": {"skip": 116, "offset": 136, "next": [], "symbols": [{"name": "sk_move", "hash": "d3004e8a21e60ef332d172f8921a40e1b13dbb0e", "variant": 1349894124, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8425517}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2387673092}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 304414723}, "child": {"skip": 564, "offset": 596, "next": [], "symbols": [{"name": "end_fde_sort", "hash": "d14f9d21a4dd8db1eb44eddf9b5161ba0a1d6012", "variant": 1370030423, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 2387673152}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2384592900}, "child": {"skip": 80, "offset": 112, "next": [], "symbols": [{"name": "_sceMpegFlush", "hash": "fd4a293f745a9d180bffa1adb70dee45f8633b2a", "variant": 3694570977, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__sceEENetspllock"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289724416}, "child": {"skip": 500, "offset": 528, "next": [], "symbols": [{"name": "pppoe_get_mbuf", "hash": "ded6b1a99b1a67114e1a4f683116df6429ccaf0d", "variant": 2308618196, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1007747072, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "WaitSema"}}, "child": {"skip": 132, "offset": 164, "next": [], "symbols": [{"name": "__sceEENeteenet_free_internal", "hash": "35cf1bbee002ffba3f161180d05e9c8b3d280943", "variant": 3975840279, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2386886668}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 278921233}, "child": {"skip": 104, "offset": 136, "next": [], "symbols": [{"name": "lh_free", "hash": "b757fe78fdad4e5eabca77e06e9af1882fffbcb3", "variant": 3403238471, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 415236108}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289724416}, "child": {"skip": 68, "offset": 96, "next": [], "symbols": [{"name": "__sceEENetifmedia_list_add", "hash": "8b05cf29e52029f78227ae89e192293ea2895826", "variant": 2245897416, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 16, "n)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ext": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__sceEENetspllock"}}, "child": {"skip": 240, "offset": 260, "next": [], "symbols": [{"name": "arptimer", "hash": "510c924803cdac9f0719acdc06ca172e33fc4028", "variant": 155058374, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8425517}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789968}, "child": {"skip": 84, "offset": 104, "next": [], "symbols": [{"name": "_sceMcCoreDeleteSocket", "hash": "445a37684808f0657ede27724a7030baf2c6f25c", "variant": 3632136653, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724416}, "child": {"skip": 92, "offset": 112, "next": [], "symbols": [{"name": "sppp_lcp_tlf", "hash": "396e679b85789d55cd99c40aa7a1002cb3e2b730", "variant": 3552971862, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 3887333424}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006747520}, "child": {"skip": 180, "offset": 192, "next": [], "symbols": [{"name": "sceVu0NormalLightMatrix", "hash": "577f05acccedffb8215265d20a7a97a1d15cee19", "variant": 4098359323, "library": "libvu0"}]}}], "symbols": []}}, {"match": {"value": 612696063}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855520}, "child": {"skip": 112, "offset": 124, "next": [], "symbols": [{"name": "write", "hash": "13419ba3029124ac4e55454fd1d6c438fc133906", "variant": 3713074575, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "R_malloc"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 604241928}, "child": {"skip": 72, "offset": 88, "next": [], "symbols": [{"name": "ASN1_TYPE_new", "hash": "f670c29114981fdca71a7cbfd785bfd667478f07", "variant": 426467031, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "BN_num_bits"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2357461008}, "child": {"skip": 92, "offset": 108, "next": [], "symbols": [{"name": "dsa_size_cb", "hash": "d4c952cf63830d50a5ef336035d1993109b585a7", "variant": 220780404, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceCdReadClock"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 60825645}, "child": {"skip": 148, "offset": 164, "next": [], "symbols": [{"name": "sceGetTime", "hash": "397f9451c551d4db4ebad12d7ca02251c54e401d", "variant": 2631182757, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "DIntr"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289724416}, "child": {"skip": 388, "offset": 412, "next": [], "symbols": [{"name": "sceSifInitRpc", "hash": "d2b7c9cff57b9c80cc8cf40cc58feed5c679b60b", "variant": 2468253251, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "PatchIsNeeded"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289724416}, "child": {"skip": 148, "offset": 172, "next": [], "symbols": [{"name": "InitExecPS2", "hash": "2796973aaf0ac6bd4f441818fd479d6527af5b4c", "variant": 1556933714, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__sceEENetspllock"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289724416}, "child": {"skip": 156, "offset": 180, "next": [], "symbols": [{"name": "__sceEENetip_drain", "hash": "675f156528af443cb1b9b8bb9bfe175c2fb21c77", "variant": 104809987, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1074880512}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1006764033}, "child": {"skip": 64, "offset": 92, "next": [{"match": {"value": 272629770}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 2386690048, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 72, "offset": 172, "next": [], "symbols": [{"name": "sbrk", "hash": "80321c5cb42ba95941aa0432c1c03645681a4e24", "variant": 591054275, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1346371593}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 2386690048, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 68, "offset": 168, "next": [], "symbols": [{"name": "sbrk", "hash": "6fdeef938fc4936c4067b9eb9eab3a6738d2a84d", "variant": 540868284, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1074814976}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1006764033}, "child": {"skip": 140, "offset": 168, "next": [], "symbols": [{"name": "sbrk", "hash": "108212e781903c20ac1f23bebe67d6a8b62560f4", "variant": 1548493892, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789984}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceCdNcmdDiskReady"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724432}, "child": {"skip": 4, "offset": 24, "next": [{"match": {"value": 272826399}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4141}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "ncmd_prechk"}}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 604241930}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 272629786}, "child": {"skip": 128, "offset": 172, "next": [], "symbols": [{"name": "sceCdStandby", "hash": "4812bc3288a415b359c2a4caae994663ea3d0841", "variant": 1467952538, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 604241932}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 272629786}, "child": {"skip": 128, "offset": 172, "next": [], "symbols": [{"name": "sceCdPause", "hash": "6fdb969caf4fb138a4d9bd414bd5c50f3da2ca5f", "variant": 1467952538, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceCd_ncmd_prechk"}}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 604241930}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 272629786}, "child": {"skip": 128, "offset": 172, "next": [], "symbols": [{"name": "sceCdStandby", "hash": "4812bc3288a415b359c2a4caae994663ea3d0841", "variant": 2218026404, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 604241932}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 272629786}, "child": {"skip": 128, "offset": 172, "next": [], "symbols": [{"name": "sceCdPause", "hash": "6fdb969caf4fb138a4d9bd414bd5c50f3da2ca5f", "variant": 2218026404, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 272826404}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4141}, "child": {"skip": 4, "offset": 36, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 272629786}, "child": {"skip": 4, "offset": 48, "next": [{"match": {"value": 604110853}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 2919366656, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 136, "offset": 192, "next": [], "symbols": [{"name": "sceCdStandby", "hash": "e0c6737448d9ae809e3f6507220381ae0224d3c4", )PS2SDB", 8192}, + std::string_view{R"PS2SDB("variant": 1307210990, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 604110855}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 2919366656, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 136, "offset": 192, "next": [], "symbols": [{"name": "sceCdPause", "hash": "ce9755663b1fc9ebb7489bf7dadca3a3e13ecdcb", "variant": 1307210990, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604241930}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 272629786}, "child": {"skip": 148, "offset": 192, "next": [], "symbols": [{"name": "sceCdStandby", "hash": "591b9aaa87312aab4ed7a925e6b3e1e0c4effbcd", "variant": 1307210990, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 604241932}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 272629786}, "child": {"skip": 148, "offset": 192, "next": [], "symbols": [{"name": "sceCdPause", "hash": "fa13f7dc264fd512827f5937c5d95f61de2c1610", "variant": 1307210990, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 272826405}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4141}, "child": {"skip": 4, "offset": 36, "next": [{"match": {"value": 604241930}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 272629787}, "child": {"skip": 152, "offset": 196, "next": [], "symbols": [{"name": "sceCdStandby", "hash": "693cb0a121b637d59e2be2e3e46dbbf0644c50e3", "variant": 4166444647, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 604241932}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 272629787}, "child": {"skip": 152, "offset": 196, "next": [], "symbols": [{"name": "sceCdPause", "hash": "27fa8113e6d1bc1ec60d9d637176fd6ffbfb5ddb", "variant": 4166444647, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724432}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 346030154}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 604176274}, "child": {"skip": 312, "offset": 336, "next": [], "symbols": [{"name": "sceMcSetFileInfo", "hash": "1382aa558dc054c40c2973aebb5f6151f035feca", "variant": 3266300509, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 2358247668}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 301989915}, "child": {"skip": 132, "offset": 156, "next": [], "symbols": [{"name": "get_content_length", "hash": "c1600124fb2df822b82ee695b71e64415bf34719", "variant": 2469943232, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2142371872}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2142306320}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8425517}, "child": {"skip": 4, "offset": 24, "next": [{"match": {"value": 10520621}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2358247424}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceCccIsValidUTF8"}}, "child": {"skip": 232, "offset": 268, "next": [], "symbols": [{"name": "sceCccEncodeUTF8", "hash": "356df19e27eeb2746ac895d2a0a991f93f581807", "variant": 302309106, "library": "libccc"}]}}], "symbols": []}}, {"match": {"value": 2358247444}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "FlushCache"}}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 8237}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "FlushCache"}}, "child": {"skip": 4, "offset": 48, "next": [{"match": {"value": 1375731718}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 2386821144}, "child": {"skip": 60, "offset": 116, "next": [], "symbols": [{"name": "mwOverlayInit", "hash": "96e601823afcc424deee25b53bb1d3dbaf4a2633", "variant": 981044802, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 301989892}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 38871073}, "child": {"skip": 56, "offset": 112, "next": [], "symbols": [{"name": "mwOverlayInit", "hash": "024e7d10fca719541e3087ff733922096b70e328", "variant": 1120062400, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604241922}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 301989892}, "child": {"skip": 60, "offset": 104, "next": [], "symbols": [{"name": "mwOverlayInit", "hash": "f642738f463744aa14df16f1d2fead219ab5b371", "variant": 913302088, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 306184225}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 10520621}, "child": {"skip": 12, "offset": 44, "next": [{"match": {"value": 270532630}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 0}, "child": {"skip": 136, "offset": 188, "next": [], "symbols": [{"name": "__dt__26__partial_array_destructorFv", "hash": "234ff2aebe1ae42a0a89f81aede6328d50c4cf42", "variant": 3718456525, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 270532629}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 0}, "child": {"skip": 136, "offset": 188, "next": [], "symbols": [{"name": "__dt__26__partial_array_destructorFv", "hash": "054f8cc9c0f21ac01d1cc3cc6a6b78af10110bc0", "variant": 3718456525, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10522669}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2142306320}, "child": {"skip": 128, "offset": 148, "next": [], "symbols": [{"name": "mwBload", "hash": "92325930f8ea052909ef7a25a246428b3d8fc53e", "variant": 3445713458, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724432}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2946826240}, "child": {"skip": 88, "offset": 104, "next": [], "symbols": [{"name": "save_rte", "hash": "8be686ba9c6a0f429433bd8136bb703f4e64e099", "variant": 4107817752, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604110851}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1007747072, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855520}, "child": {"skip": 204, "offset": 224, "next": [], "symbols": [{"name": "_decPicture", "hash": "8f4c4d8db9979f5adf593526c11151b9e217270a", "variant": 3413706544, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 12617773}, "child": {"skip": 8, "offset": 28, "next": [{"match": {"value": 276955195}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4289855520}, "child": {"skip": 368, "offset": 404, "next": [], "symbols": [{"name": "sceTtyHandler", "hash": "a4d9032b7fe72aa4b207a0de4474eed2728be3c0", "variant": 321661341, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 276955189}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4289855520}, "child": {"skip": 344, "offset": 380, "next": [], "symbols": [{"name": "sceTtyHandler", "hash": "3ffde8856a48c3827bcbae5e295f3b8cdc3bee78", "variant": 2170100392, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8402989}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 16429}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855520}, "child": {"skip": 316, "offset": 336, "next": [], "symbols": [{"name": "sceTtyWrite", "hash": "ca0d12c97c043ac514998df040d49e022303)PS2SDB", 8192}, + std::string_view{R"PS2SDB(daff", "variant": 3425105903, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 10502189}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724416}, "child": {"skip": 692, "offset": 712, "next": [], "symbols": [{"name": "__sceEENetin_cksum", "hash": "0c0f5264ce77e2ec3837d85a431a81712cc70d4c", "variant": 1628746973, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289855520}, "child": {"skip": 256, "offset": 272, "next": [], "symbols": [{"name": "sceHiMemAlloc", "hash": "c605ac321a34146f19a3748cb64b46f086706649", "variant": 3608863619, "library": "libhig"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006796800}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 876740618}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707504}, "child": {"skip": 184, "offset": 204, "next": [], "symbols": [{"name": "_request_end", "hash": "1c1cf4d4ec11686965edbb305795e4232356febc", "variant": 529546359, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 876740634}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707504}, "child": {"skip": 268, "offset": 288, "next": [], "symbols": [{"name": "_request_end", "hash": "85c3970cdc58252033091f86f8c4fea3a78fd331", "variant": 398842135, "library": "libmrpc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604241919}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724448}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1007681536, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 8, "offset": 24, "next": [{"match": {"value": 339935245}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 3753836592}, "child": {"skip": 60, "offset": 92, "next": [], "symbols": [{"name": "_sceFsIobSemaMK", "hash": "9bc43a7ce110af0bfa7a1eb210c7d7a99cd4a863", "variant": 2017272693, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 339935250}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 3753836592}, "child": {"skip": 80, "offset": 112, "next": [], "symbols": [{"name": "_sceFsIobSemaMK", "hash": "ebd430d065576c5aa6a1c0d0d34deeb78a0f2902", "variant": 4132244864, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 339935241}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 3753836592}, "child": {"skip": 44, "offset": 76, "next": [], "symbols": [{"name": "_sceFsSemInit", "hash": "0ee9aceb2e47b28c818a62928ccc9d5c1302bde8", "variant": 995622127, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 339935243}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 3753836592}, "child": {"skip": 52, "offset": 84, "next": [], "symbols": [{"name": "_sceFsSemInit", "hash": "2d9e3edf85adc08d16d9f4664ca7c9da41bf9d56", "variant": 3659089806, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 203514}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289789968}, "child": {"skip": 208, "offset": 224, "next": [], "symbols": [{"name": "__floatdisf", "hash": "f5f0bad12917fef657877d61765f2af955590073", "variant": 1178505815, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789984}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1007747072, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2384592896, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 339738627}, "child": {"skip": 148, "offset": 172, "next": [], "symbols": [{"name": "scePadEnd", "hash": "0aab2da674a93ac6da7784ae765470d2a312e5c0", "variant": 1146996160, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 4289724432}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 640155648, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 200, "offset": 224, "next": [], "symbols": [{"name": "sceDbcSendData2", "hash": "6f7f4505263cbcdd704692e97c383f744d19cfa5", "variant": 418772902, "library": "libdbc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724432}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1007747072, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 64, "offset": 84, "next": [{"match": {"value": 619118592, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 88, "next": [{"match": {"value": 623443968, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 88, "offset": 180, "next": [], "symbols": [{"name": "sceMcChangeThreadPriority", "hash": "420ea225cf5186bda5fbc45696dd296d8a25044f", "variant": 655420637, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 2901409792, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 88, "next": [{"match": {"value": 623443968, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 8, "offset": 100, "next": [{"match": {"value": 604307459}, "child": {"skip": 0, "offset": 104, "next": [{"match": {"value": 604372993}, "child": {"skip": 72, "offset": 180, "next": [], "symbols": [{"name": "sceMcClose", "hash": "b5221f770aa2ed7fb0a032bd66f2bdebfe092677", "variant": 121369267, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 604307466}, "child": {"skip": 0, "offset": 104, "next": [{"match": {"value": 604372993}, "child": {"skip": 72, "offset": 180, "next": [], "symbols": [{"name": "sceMcFlush", "hash": "8061c201e71b03bcba2d04b191660e7052279ce8", "variant": 121369267, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}}, "child": {"skip": 72, "offset": 92, "next": [{"match": {"value": 71303221}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 604176383}, "child": {"skip": 228, "offset": 328, "next": [], "symbols": [{"name": "sceFsInit", "hash": "75bfb7aaf4e27afcc2446b4890643a2c5f02c790", "variant": 4199523697, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 71303219}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 604176383}, "child": {"skip": 220, "offset": 320, "next": [], "symbols": [{"name": "sceFsInit", "hash": "b48cf76f254d534553121a99c69cf1eaa486021b", "variant": 392192351, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 12617773}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "get_iob"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 10518573}, "child": {"skip": 124, "offset": 152, "next": [], "symbols": [{"name": "sceIoctl", "hash": "e81b9adb3c2577e984b3e6fb7fc7d77af500349f", "variant": 2074264200, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 10518573}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1007026176, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 108, "offset": 136, "next": [], "symbols": [{"name": "inet_ntop4", "hash": "388219282a2484b6156cec4d1cb2f49b2c12c5ed", "variant": 2495054800, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 8421421}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "EVP_MD_CTX_copy"}}, "child": {"skip": 56, "offset": 84, )PS2SDB", 8192}, + std::string_view{R"PS2SDB("next": [], "symbols": [{"name": "tls1_cert_verify_mac", "hash": "8c5034008a1f1310a0f0f629d339fa26c299fa76", "variant": 1702280080, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8423469}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1007681536, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "PollSema"}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2382626816, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 120, "offset": 152, "next": [], "symbols": [{"name": "sceMcGetSlotMax", "hash": "12d3fcfa01daff91ea3e97b38a37531fd370d62b", "variant": 1928573847, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "WaitSema"}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2382626816, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 16, "offset": 48, "next": [{"match": {"value": 604307457}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 12333}, "child": {"skip": 60, "offset": 116, "next": [], "symbols": [{"name": "sceEENetNotifyEEDriverIsReady", "hash": "e70604fcc2c3752b815b240b87c49b3f5598d344", "variant": 969305504, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 604307458}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 12333}, "child": {"skip": 60, "offset": 116, "next": [], "symbols": [{"name": "sceEENetNotifyEEDriverIsTerminated", "hash": "323c098f8ced28a555f846e987fc6bd6477449e8", "variant": 969305504, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceSifStopDma"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 10518573}, "child": {"skip": 12, "offset": 40, "next": [{"match": {"value": 1007288320, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 4216877}, "child": {"skip": 156, "offset": 204, "next": [{"match": {"value": 604241924}, "child": {"skip": 0, "offset": 208, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceSifSetReg"}}, "child": {"skip": 104, "offset": 316, "next": [], "symbols": [{"name": "sceSifResetIop", "hash": "1e6da24ddedada4c8f4e8d946424a8651e1d438a", "variant": 4035444521, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 60825645}, "child": {"skip": 0, "offset": 208, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceSifSetDma"}}, "child": {"skip": 92, "offset": 304, "next": [], "symbols": [{"name": "sceSifResetIop", "hash": "13ebc3d13d48d69bfe0a84735c4d2c844438d9b6", "variant": 2677632542, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4216877}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 16, "offset": 64, "next": [{"match": {"value": 272629770}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 18477}, "child": {"skip": 228, "offset": 300, "next": [], "symbols": [{"name": "sceSifResetIop", "hash": "20b97ded59dce03567491d0b26af0f18e0b2a4aa", "variant": 904096614, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 272629771}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 18477}, "child": {"skip": 232, "offset": 304, "next": [], "symbols": [{"name": "sceSifResetIop", "hash": "9a7a9709a46c6b81fa5ee16600e86e410192c854", "variant": 3310506682, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceHiPlugCameraGetData"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 10518573}, "child": {"skip": 280, "offset": 308, "next": [], "symbols": [{"name": "camera_init", "hash": "5781fdd3db021563c9d1c3a7a8764b1eb2152859", "variant": 2037212786, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 2384789504}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 278921229}, "child": {"skip": 424, "offset": 452, "next": [], "symbols": [{"name": "sceHTTPUnparseURI", "hash": "eec2f9f73fcca1c7cb54f448c7ad7bb3474c2d48", "variant": 1527892041, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 10518573}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2946498560}, "child": {"skip": 196, "offset": 224, "next": [], "symbols": [{"name": "crypto_sslc_rsa_public_encrypt_init", "hash": "8f6d8ab63ef0093b7f79691bd2db9e23c48960bf", "variant": 2284918903, "library": "libhttps"}, {"name": "crypto_sslc_rsa_public_decrypt_init", "hash": "8f6d8ab63ef0093b7f79691bd2db9e23c48960bf", "variant": 2284918903, "library": "libhttps"}, {"name": "crypto_sslc_rsa_private_encrypt_init", "hash": "8f6d8ab63ef0093b7f79691bd2db9e23c48960bf", "variant": 2284918903, "library": "libhttps"}, {"name": "crypto_sslc_rsa_private_decrypt_init", "hash": "8f6d8ab63ef0093b7f79691bd2db9e23c48960bf", "variant": 2284918903, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10518573}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "mceEncEcc"}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 60827693}, "child": {"skip": 248, "offset": 280, "next": [], "symbols": [{"name": "mceDecEcc", "hash": "2c7f5d4dd510d5732d1e2d5a9cfbac8d4102dbed", "variant": 2048511223, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 8237}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceSifExecNotifyHandler"}}, "child": {"skip": 24, "offset": 56, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceSifGetReg"}}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 1006927872}, "child": {"skip": 180, "offset": 244, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceSifSetDma"}}, "child": {"skip": 0, "offset": 248, "next": [{"match": {"value": 604307457}, "child": {"skip": 88, "offset": 340, "next": [], "symbols": [{"name": "sceSifResetIop", "hash": "ee1ff398a2567fafd81f31ee3219cb0020ee8fa6", "variant": 4279737687, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceSifSetDma"}}, "child": {"skip": 0, "offset": 248, "next": [{"match": {"value": 604307457}, "child": {"skip": 88, "offset": 340, "next": [], "symbols": [{"name": "sceSifResetIop", "hash": "ee1ff398a2567fafd81f31ee3219cb0020ee8fa6", "variant": 3031721871, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006927872}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceSifGetReg"}}, "child": {"skip": 276, "offset": 340, "next": [], "symbols": [{"name": "sceSifResetIop", "hash": "33bac3151c16b048e4a4e82beb83e796fe5b4dc1", "variant": 822873230, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10520621}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 301989892}, "child": {"skip": 144, "offset": 168, "next": [], "symbols": [{"name": "i2d_ASN1_OBJECT", "hash": "2f70d728604bab0101c5597f0fb4aa7ee4a8f430", "variant": 3944843171, "li)PS2SDB", 8192}, + std::string_view{R"PS2SDB(brary": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "get_common_global"}}, "child": {"skip": 76, "offset": 100, "next": [], "symbols": [{"name": "BN_ME_CTX_new", "hash": "073cca72a6a7d1e893f57840f9d2f31fc8f6002b", "variant": 3950111645, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 34861}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 268, "offset": 288, "next": [], "symbols": [{"name": "X509_PUBKEY_get", "hash": "5d0dcc8d277b6fb6190b7d20b1ebe0edd905f053", "variant": 3362573425, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "DIntr"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724432}, "child": {"skip": 316, "offset": 336, "next": [], "symbols": [{"name": "sceHTTPLibGetTime", "hash": "1c69e7006f70b14e65ac53bf0211b3b2698c0ba8", "variant": 3045388731, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 8423469}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_lf_bind"}}, "child": {"skip": 60, "offset": 80, "next": [{"match": {"value": 604307464}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 12333}, "child": {"skip": 56, "offset": 144, "next": [], "symbols": [{"name": "sceSifUnloadModule", "hash": "7b3482c642e61056c70e5b93c104ff0eb2821cd2", "variant": 618566227, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604307466}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 12333}, "child": {"skip": 56, "offset": 144, "next": [], "symbols": [{"name": "sceSifSearchModuleByAddress", "hash": "962f229b3550edd4eed6d3ba11ffeab55d0dd6ab", "variant": 618566227, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8423469}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707504}, "child": {"skip": 4, "offset": 20, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "scmd_prechk"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 604241954}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 339738627}, "child": {"skip": 156, "offset": 188, "next": [], "symbols": [{"name": "sceCdMmode", "hash": "864a55db8569a45b106235b116a6f1e5d288dc84", "variant": 3211024971, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 604241953}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 339738627}, "child": {"skip": 148, "offset": 180, "next": [], "symbols": [{"name": "sceCdPowerOff", "hash": "65a2704875362103d01bad1140a97260e6423335", "variant": 3742590494, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 604241955}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 339738627}, "child": {"skip": 8, "offset": 40, "next": [{"match": {"value": 604176383}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 604307460}, "child": {"skip": 140, "offset": 188, "next": [], "symbols": [{"name": "sceCdChangeThreadPriority", "hash": "f265c56185a75b54ee4cb6fd98bb601ad45d7b10", "variant": 3211024971, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 4141}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 604307460}, "child": {"skip": 140, "offset": 188, "next": [], "symbols": [{"name": "sceCdChangeThreadPriority", "hash": "b3e5e7ef48a964cf2ba3c5dfb32b7cb8f42dee84", "variant": 3211024971, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceCd_scmd_prechk"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 604241953}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 339738627}, "child": {"skip": 4, "offset": 36, "next": [{"match": {"value": 268435486}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 4141}, "child": {"skip": 136, "offset": 180, "next": [], "symbols": [{"name": "sceCdPowerOff", "hash": "65a2704875362103d01bad1140a97260e6423335", "variant": 3644460704, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 268435487}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 4141}, "child": {"skip": 140, "offset": 184, "next": [], "symbols": [{"name": "sceCdPowerOff", "hash": "c52788ed286b9543f74aa6485359a59ab2112b04", "variant": 1980168755, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604241935}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 339738627}, "child": {"skip": 156, "offset": 188, "next": [], "symbols": [{"name": "sceCdReadClock", "hash": "a444a34068c1a4cc234fe27c06d4c9327a2606ea", "variant": 2810607879, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 60825645}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceEENetTime"}}, "child": {"skip": 176, "offset": 204, "next": [], "symbols": [{"name": "_sce_eenet_dhclient_rexmt", "hash": "ee1a6cecd3f3f0f2622954d6d60a04ee6b8f0600", "variant": 1137664904, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 60827693}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289724432}, "child": {"skip": 76, "offset": 92, "next": [], "symbols": [{"name": "__sceEENetif_clone_create", "hash": "b12610f0b6b7644de30def1d142f1b2a063d7536", "variant": 2002920832, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2946760704}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10520621}, "child": {"skip": 216, "offset": 232, "next": [], "symbols": [{"name": "__sceEENetin_broadcast", "hash": "03c4849ada6f768a3722a45646a675edcfdca7b3", "variant": 1007675243, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 60825645}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289724432}, "child": {"skip": 156, "offset": 172, "next": [], "symbols": [{"name": "__sceEENetkernclock_start", "hash": "50bee80a2de65d8a44ee02673eab1f456cdb0790", "variant": 1919137504, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006768128}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 876746768}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855520}, "child": {"skip": 72, "offset": 92, "next": [{"match": {"value": 604374848}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 16, "offset": 116, "next": [{"match": {"value": 604373032}, "child": {"skip": 0, "offset": 120, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "FlushCache"}}, "child": {"skip": 88, "offset": 212, "next": [], "symbols": [{"name": "InitAlarm", "hash": "ada22800325ace796f5f417103ed9aa554ad577a", "variant": 3980164376, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604373024}, "child": {"skip": 0, "offset": 120, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "FlushCache"}}, "child": {"skip": 88, "offset": 212, "next": [], "symbols": [{"name": "InitAlarm", "hash": "59d07a8650c8a6478a0761d4d5740601df74becb", "variant": 3980164376, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604374720}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 112, "offset": 212, "next": [], "symbols": [{"name": "InitAlarm", "hash": "11eb518d6af2f0273d8b01c7503d66001f04)PS2SDB", 8192}, + std::string_view{R"PS2SDB(99f7", "variant": 3980164376, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 876748816}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855520}, "child": {"skip": 132, "offset": 152, "next": [], "symbols": [{"name": "_waitIpuIdle", "hash": "0ada7295404b4a2e9dd870a20158a5cfd37e8d44", "variant": 3396773896, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 876748800}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855520}, "child": {"skip": 156, "offset": 176, "next": [], "symbols": [{"name": "_waitIpuIdle64", "hash": "4f3849f3ba8a331ee171c38b4cbf2719eadfaf3c", "variant": 3556231775, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 876748800}, "child": {"skip": 160, "offset": 176, "next": [], "symbols": [{"name": "_waitIpuIdle64", "hash": "5d2e3bf5830abd251e57de37bb26db40cd690492", "variant": 1041760270, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 876748816}, "child": {"skip": 44, "offset": 60, "next": [{"match": {"value": 341966868}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 1007812608, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 172, "offset": 240, "next": [], "symbols": [{"name": "_flushBuf", "hash": "6e78989517ee3f4696d3847317479019a465e6ae", "variant": 496964847, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 341966875}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 1007812608, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 200, "offset": 268, "next": [], "symbols": [{"name": "_flushBuf", "hash": "ec7a68b7518dd208305c1f2f0f56ea6a1ab588f7", "variant": 1842015363, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 266882}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 28, "offset": 40, "next": [{"match": {"value": 272826372}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 1007812608, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 140, "offset": 188, "next": [], "symbols": [{"name": "iFreeTimerCounter", "hash": "c9cc53c808440e2afc98cf73e0b04df10e94c2f3", "variant": 3668333644, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1346568196}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 172, "offset": 220, "next": [], "symbols": [{"name": "iStopTimerCounter", "hash": "5cf4b8d741f4aeccfd58906f838aa9facef9c26d", "variant": 2521338760, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724432}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1007681536, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289789984}, "child": {"skip": 220, "offset": 236, "next": [], "symbols": [{"name": "pppoe_find_softc_by_hunique", "hash": "08ef4bccc2d813008a2bbf23c5dd51655ddc8fd2", "variant": 769877864, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 8421421}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789984}, "child": {"skip": 220, "offset": 240, "next": [], "symbols": [{"name": "sceFsSetIopPrio", "hash": "dfb760328bd06080ab2cede7055862edd64802ce", "variant": 1485854938, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 4289789984}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "xmalloc"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 604241952}, "child": {"skip": 464, "offset": 492, "next": [], "symbols": [{"name": "sceHTTPLibTimeToDate", "hash": "7fdca1a80d775f9b5ac63da24c0e037ab84620dc", "variant": 3118999280, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 10520621}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "R_time_new"}}, "child": {"skip": 180, "offset": 208, "next": [], "symbols": [{"name": "SSL_CTX_flush_sessions", "hash": "d74321faa595c5c9d156fedcf194750bf969f384", "variant": 393970956, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10518573}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289855520}, "child": {"skip": 156, "offset": 172, "next": [], "symbols": [{"name": "ldiv", "hash": "3f084a3edeb2983157babede13254c031bb9bf4e", "variant": 3058479707, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4289789984}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707504}, "child": {"skip": 44, "offset": 60, "next": [{"match": {"value": 604307463}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 604372993}, "child": {"skip": 40, "offset": 108, "next": [], "symbols": [{"name": "sceNetcnfifDeleteAll", "hash": "ab205c522af0493952665fd0467a0040a99e3efe", "variant": 153738748, "library": "netcnfif"}]}}], "symbols": []}}, {"match": {"value": 604307464}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 604372993}, "child": {"skip": 40, "offset": 108, "next": [], "symbols": [{"name": "sceNetcnfifCheckCapacity", "hash": "35cde34b1a245c1d3047705250362d77b7c820be", "variant": 153738748, "library": "netcnfif"}]}}], "symbols": []}}, {"match": {"value": 604307465}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 604372993}, "child": {"skip": 40, "offset": 108, "next": [], "symbols": [{"name": "sceNetcnfifCheckAdditionalAT", "hash": "b111410adc8cf90c1453d204dbcb0afbacfe9aa2", "variant": 153738748, "library": "netcnfif"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8421421}, "child": {"skip": 284, "offset": 300, "next": [], "symbols": [{"name": "ASN1_get_object", "hash": "d996de4f0eaaa44b3aa7ede85eec0eb3693f4c12", "variant": 2541224269, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 60829741}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707504}, "child": {"skip": 168, "offset": 184, "next": [], "symbols": [{"name": "lh_delete", "hash": "e3fa3f02100e75644ea4d88501551a54d0772883", "variant": 3488606638, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 338176}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 270784}, "child": {"skip": 124, "offset": 136, "next": [], "symbols": [{"name": "scePadRead", "hash": "c84a9430bf6af1e1310e543e7c52edab68c3de12", "variant": 2033330535, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 333952}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 270656}, "child": {"skip": 124, "offset": 136, "next": [], "symbols": [{"name": "scePadRead", "hash": "7c6fd5c381e242b714313f4163e54bae4aaabd25", "variant": 2033330535, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 604176496}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 188, "offset": 200, "next": [], "symbols": [{"name": "scePadGetState", "hash": "6763b1050a3dd932b30428a7a1b663db4ed60943", "variant": 3019618310, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 4289921064}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 8427565}, "child": {"skip": 280, "offset": 292, "next": [], "symbols": [{"name": "scePadSetDmaCallback", "hash": "0e0ea8c367a2df6ebe0b43f8f1a4387726650437", "variant": 1935613224, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 8237}, "child": {"ski)PS2SDB", 8192}, + std::string_view{R"PS2SDB(p": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289855520}, "child": {"skip": 32, "offset": 48, "next": [{"match": {"value": 883230465}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}}, "child": {"skip": 4, "offset": 60, "next": [{"match": {"value": 71368709}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 604120848}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "scePrintf"}}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 639893504, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 76, "next": [{"match": {"value": 268435471}, "child": {"skip": 0, "offset": 80, "next": [{"match": {"value": 604176383}, "child": {"skip": 80, "offset": 164, "next": [], "symbols": [{"name": "sceSdRemoteInit", "hash": "b9c6f88129d0f247ba20f62bca8e990a7822c059", "variant": 297229199, "library": "libsdr"}]}}], "symbols": []}}, {"match": {"value": 268435474}, "child": {"skip": 0, "offset": 80, "next": [{"match": {"value": 604176383}, "child": {"skip": 92, "offset": 176, "next": [], "symbols": [{"name": "sceSdRemoteInit", "hash": "f46c66e5a71343290bd3b91584ed2971fca93866", "variant": 350057088, "library": "libsdr"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "printf"}}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 639893504, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 88, "offset": 164, "next": [], "symbols": [{"name": "sceSdRemoteInit", "hash": "b9c6f88129d0f247ba20f62bca8e990a7822c059", "variant": 2081083163, "library": "libsdr"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 71368715}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 604120848}, "child": {"skip": 64, "offset": 132, "next": [{"match": {"value": 340000762}, "child": {"skip": 0, "offset": 136, "next": [{"match": {"value": 0}, "child": {"skip": 48, "offset": 188, "next": [], "symbols": [{"name": "sceSdRemoteInit", "hash": "effa161d972c446d4d1454f3260767c7ddcbb471", "variant": 3913182922, "library": "libsdr"}]}}], "symbols": []}}, {"match": {"value": 0}, "child": {"skip": 0, "offset": 136, "next": [{"match": {"value": 0}, "child": {"skip": 56, "offset": 196, "next": [], "symbols": [{"name": "sceSdRemoteInit", "hash": "c55f21d7b8ccb6fb56f7600be7f20d827081f2c7", "variant": 1798681702, "library": "libsdr"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 883230209}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}}, "child": {"skip": 76, "offset": 132, "next": [{"match": {"value": 340000762}, "child": {"skip": 0, "offset": 136, "next": [{"match": {"value": 0}, "child": {"skip": 60, "offset": 200, "next": [], "symbols": [{"name": "sceSpu2RemoteInit", "hash": "75bbaf69f0e8cfbe17b9d45f2c3858ef0d05603c", "variant": 2098683197, "library": "librspu2"}]}}], "symbols": []}}, {"match": {"value": 0}, "child": {"skip": 0, "offset": 136, "next": [{"match": {"value": 0}, "child": {"skip": 68, "offset": 208, "next": [], "symbols": [{"name": "sceSpu2RemoteInit", "hash": "300e2f32641f8a408f1d9a3697370754aff1fb09", "variant": 1862085984, "library": "librspu2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10522669}, "child": {"skip": 128, "offset": 144, "next": [], "symbols": [{"name": "sslcert_do_d2i_PublicKey", "hash": "b33e74b9f9808ba375530f6883abeb090f2146ba", "variant": 4015911990, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604241950}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707504}, "child": {"skip": 4, "offset": 16, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceCd_scmd_prechk"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289724432}, "child": {"skip": 160, "offset": 184, "next": [], "symbols": [{"name": "sceCdBreak", "hash": "ac78b2f3535e78bffc3d6e2bd5606946e8601729", "variant": 1444306552, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "scmd_prechk"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289724432}, "child": {"skip": 156, "offset": 180, "next": [], "symbols": [{"name": "sceCdBreak", "hash": "d9d1dc424251089dedddc06fa7c7e47e029093d8", "variant": 3680106001, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10500141}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2407661568, "relocation": {"type": "MIPS_GPREL16", "symbol": ".sdata"}}, "child": {"skip": 88, "offset": 100, "next": [{"match": {"value": 604307474}, "child": {"skip": 0, "offset": 104, "next": [{"match": {"value": 2946498560}, "child": {"skip": 64, "offset": 172, "next": [], "symbols": [{"name": "sceMcGetEntSpace", "hash": "7629694c1d72c1d3b41b4e00e6fef6eed5bc858b", "variant": 1845507214, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 604307585}, "child": {"skip": 0, "offset": 104, "next": [{"match": {"value": 2946498560}, "child": {"skip": 64, "offset": 172, "next": [], "symbols": [{"name": "sceMcGetEntSpace", "hash": "bb23eccdc8f3602fcadc18227d1bc8ed4356798d", "variant": 1845507214, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1174429766}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789992}, "child": {"skip": 56, "offset": 68, "next": [{"match": {"value": 268435668}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 2921332740}, "child": {"skip": 868, "offset": 944, "next": [], "symbols": [{"name": "__ieee754_rem_pio2f", "hash": "8a9c745b38cb24d38d5d4882a57a3a38cbcdbbda", "variant": 3869414314, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 268435674}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 2921332740}, "child": {"skip": 892, "offset": 968, "next": [], "symbols": [{"name": "__ieee754_rem_pio2f", "hash": "0d747bcb01faf9c765e7d2a9d995a84eca16f665", "variant": 650289427, "library": "libm"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1007583231}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789960}, "child": {"skip": 2032, "offset": 2044, "next": [], "symbols": [{"name": "__ieee754_powf", "hash": "47f27da300bc62b7c5c01ffe8ea8a3a8a4609570", "variant": 523070006, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 4289986592}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 8429613}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290117680}, "child": {"skip": 708, "offset": 724, "next": [], "symbols": [{"name": "__kernel_cos", "hash": "f55ea80ab0159dd6570694452126a1257b4eed3a", "variant": 3050777693, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 10526765}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290117680}, "child": {"skip": 268, "offset": 284, "next": [], "symbols": [{"name": "fread", "hash": "b584c749715e6c669052e09550d2a051e82fbe90", "variant": 3913880746, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006796799}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789960}, "child": {"skip": 700, "offset": 712, "next": [], "symbols": [{"name": "__kernel_cos", "hash": "d1aaf2e9fc81d05e6d805ff4edca36a4313a7abc", "variant": 604871773, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 1006993392}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 772, "offset": 784, "next": [], "symbols": [{"name": "_)PS2SDB", 8192}, + std::string_view{R"PS2SDB(_ieee754_sqrt", "hash": "22f72b6c93748de026b75434f0836335336cfb8e", "variant": 1666657176, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 4289921048}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 8427565}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289724416}, "child": {"skip": 1208, "offset": 1224, "next": [], "symbols": [{"name": "atan", "hash": "f06473079eef8c9bf47bac5a3f724c25f27f3c0b", "variant": 3784498585, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 10524717}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290052136}, "child": {"skip": 296, "offset": 312, "next": [], "symbols": [{"name": "fgets", "hash": "f4408d6a947bb4bbe3ce402343818d378e68996a", "variant": 2769688108, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855504}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 8425517}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289724416}, "child": {"skip": 1164, "offset": 1180, "next": [], "symbols": [{"name": "__ieee754_exp", "hash": "a22f5923e26c520355390e3bf51d31870de46d06", "variant": 3965381311, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 12947480}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289789960}, "child": {"skip": 264, "offset": 280, "next": [], "symbols": [{"name": "fread", "hash": "27e739dc64159e966f93797152b30bedde5359ee", "variant": 1943313000, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8411181}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724464}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 729151}, "child": {"skip": 1568, "offset": 1584, "next": [], "symbols": [{"name": "__moddi3", "hash": "6903e1fa8cd996ca54ed087e06553cb532ab5f55", "variant": 3700875458, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 4290641968}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006960639}, "child": {"skip": 348, "offset": 364, "next": [], "symbols": [{"name": "fde_split", "hash": "cb0a8ebc3e0229232d184d0f6b7205058d55e088", "variant": 0, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10504237}, "child": {"skip": 448, "offset": 464, "next": [], "symbols": [{"name": "scePFontGetGlyph", "hash": "86517518f678e0fe5947d583155e218f0b9ccc7d", "variant": 1453422340, "library": "libpfont"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10285}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8423469}, "child": {"skip": 220, "offset": 236, "next": [], "symbols": [{"name": "__fixunsdfdi", "hash": "eec6308b716490615cec4b47113c65845d0ef930", "variant": 3216906813, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 4289724448}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 604373024}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 100, "offset": 120, "next": [], "symbols": [{"name": "pppoe_destroy", "hash": "c9461537978c293a509b23787d53f8c7262f3860", "variant": 401106678, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 604373012}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 100, "offset": 120, "next": [], "symbols": [{"name": "pppoe_reset_max_phase", "hash": "b8b4be5fe441b5767e87c244d110a3c1666132ce", "variant": 401106678, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4288938016}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 665059360}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707504}, "child": {"skip": 8, "offset": 24, "next": [{"match": {"value": 4141}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2409889792}, "child": {"skip": 4, "offset": 36, "next": [{"match": {"value": 274726938}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 746913794}, "child": {"skip": 112, "offset": 156, "next": [], "symbols": [{"name": "dptoli", "hash": "746c9222283635590fec9a8773b057e738c0845d", "variant": 2806292880, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 274726939}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 746913794}, "child": {"skip": 116, "offset": 160, "next": [], "symbols": [{"name": "dptoul", "hash": "586d92e6111d45daa453832d12024f515fe68f16", "variant": 2806292880, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006977023}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 883294207}, "child": {"skip": 52, "offset": 84, "next": [], "symbols": [{"name": "dptofp", "hash": "62c9e4bf1096852b88a9e7bb13bf74a374214dd6", "variant": 82367710, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 60827693}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707504}, "child": {"skip": 8, "offset": 24, "next": [{"match": {"value": 2409824256}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 945946626}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 272629763}, "child": {"skip": 8, "offset": 44, "next": [{"match": {"value": 945946628}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 268435477}, "child": {"skip": 96, "offset": 148, "next": [], "symbols": [{"name": "dptoli", "hash": "ae957dc513cf49d79dfe7978dd8aa2a0ad77deff", "variant": 2806292880, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 2409758724}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 268435480}, "child": {"skip": 108, "offset": 160, "next": [], "symbols": [{"name": "dptoul", "hash": "fba715693ef93de79600fa0ee7cea611492ea1b3", "variant": 2806292880, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10285}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 945946626}, "child": {"skip": 124, "offset": 160, "next": [], "symbols": [{"name": "dptoli", "hash": "4c3b61fd0c965b3e7208b5bad7d868dd3fcffdf9", "variant": 2806292880, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2410545152}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4141}, "child": {"skip": 124, "offset": 156, "next": [], "symbols": [{"name": "dptoli", "hash": "a7c05987d91c75d64158bb01dfc38f9a9b43f3d0", "variant": 2806292880, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 3751936016}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 1006845951}, "child": {"skip": 52, "offset": 84, "next": [], "symbols": [{"name": "dptofp", "hash": "0c3a4596a44b883c7ad480f4899e8246a15abe56", "variant": 82367710, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 3752001552}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 1006780415}, "child": {"skip": 52, "offset": 84, "next": [], "symbols": [{"name": "dptofp", "hash": "5b9bcae1a4a45ee18ae7803b5d65e32fb26949fc", "variant": 82367710, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 3752722448}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 1007632383}, "child": {"skip": 52, "offset": 84, "next": [], "symbols": [{"name": "dptofp", "hash": "b8868c07fcb45f149ba4c0fe1cffb7396f88fee5", "variant": 82367710, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 2409889792}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 6189}, "child": {"skip": 132, "offset": 164, "next": [], "symbols": [{"name": "dptoul", "hash": "61b25350197dc304c64bfa6959f3957a64a3f677", "variant": 2806292880, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 2410479616}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4141}, "child": {"skip": 124, "offset": 156, "next": [], "symbols": [{"name": "dptoul", "hash": "1fafe024dc875ba65c9eb1735b90c87e3927519d", "variant": 2806292)PS2SDB", 8192}, + std::string_view{R"PS2SDB(880, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 2409758724}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 60825645}, "child": {"skip": 24, "offset": 56, "next": [], "symbols": [{"name": "__negdf2", "hash": "77129ceb0241d7ffd70a5fd673e2e7ceff379245", "variant": 931516014, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8392749}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 60827693}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4288806944}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707504}, "child": {"skip": 8, "offset": 28, "next": [{"match": {"value": 2409824256}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 10285}, "child": {"skip": 128, "offset": 164, "next": [], "symbols": [{"name": "dptoli", "hash": "c205ed6bc60e1fcfae75f82d7d2d9bc346b545f9", "variant": 1937108247, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 2409889792}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 6189}, "child": {"skip": 128, "offset": 164, "next": [], "symbols": [{"name": "dptoul", "hash": "9799c769319c9d72715f6d8c81cd45efb9db6067", "variant": 1937108247, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4288806944}, "child": {"skip": 68, "offset": 88, "next": [], "symbols": [{"name": "dptofp", "hash": "98c094ae81ab2f7c3e1a05d0cfaa149fda3302ff", "variant": 3037401849, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724448}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10518573}, "child": {"skip": 64, "offset": 80, "next": [], "symbols": [{"name": "fputs", "hash": "1a6de68f34d8c9f65cfb34840d7fdcdbebe3f454", "variant": 1801419562, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 339738627}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707504}, "child": {"skip": 60, "offset": 76, "next": [], "symbols": [{"name": "R_mtime_export", "hash": "2c2c6cb77bf997a4e3c7f0f490891dedfb608978", "variant": 1570402093, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855536}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 8425517}, "child": {"skip": 348, "offset": 360, "next": [], "symbols": [{"name": "frame_init", "hash": "76452a16c2734164a72693369a76beb0c6b082e6", "variant": 1744401664, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 8419373}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290641968}, "child": {"skip": 360, "offset": 372, "next": [], "symbols": [{"name": "fde_split", "hash": "309022697b20554323d6a1ef1875726e896ec6c5", "variant": 0, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 10514477}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289986592}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8429613}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724416}, "child": {"skip": 536, "offset": 556, "next": [], "symbols": [{"name": "quorem", "hash": "9f5a47ecc7a3456ded96c4d0347234e39b03f9c0", "variant": 1831781991, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 6189}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724416}, "child": {"skip": 556, "offset": 576, "next": [], "symbols": [{"name": "quorem", "hash": "4f4d497d74432b643336250710a967f27326a5b0", "variant": 1797435545, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10512429}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289986592}, "child": {"skip": 564, "offset": 576, "next": [], "symbols": [{"name": "quorem", "hash": "e406ad3ccb0f6fbd154836ed8304fffbbeefa2d8", "variant": 1797435545, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4141}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855504}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289986592}, "child": {"skip": 544, "offset": 560, "next": [], "symbols": [{"name": "quorem", "hash": "b2866a0e66a78bec2cdd96fd5a188f03db345264", "variant": 1848179992, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4289724432}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289789984}, "child": {"skip": 132, "offset": 148, "next": [], "symbols": [{"name": "SSL_CIPHER_get_bits", "hash": "4a7e7bac09c3c7d4a36c4ceda72e42efa5707f8a", "variant": 3671653921, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604110936}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789968}, "child": {"skip": 100, "offset": 112, "next": [], "symbols": [{"name": "__sfmoreglue", "hash": "a50e7ddaa93337e768a39a0e4504f3af782b0d08", "variant": 2792794057, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 10491949}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 52, "offset": 64, "next": [], "symbols": [{"name": "_printf_r", "hash": "db3af09384837706a7dc19560b50c82eef4ced21", "variant": 2029319021, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4289069072}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 48, "offset": 60, "next": [], "symbols": [{"name": "_printf_r", "hash": "b5f1a029d2e557e68b845cf2e95ef92818053416", "variant": 201118882, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4289789960}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290052136}, "child": {"skip": 444, "offset": 456, "next": [], "symbols": [{"name": "_memalign_r", "hash": "c9f1b2a6fa8db2200654b1ba6e355b68b5390d88", "variant": 3873542187, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 604176385}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789992}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10520621}, "child": {"skip": 116, "offset": 132, "next": [], "symbols": [{"name": "fwrite", "hash": "efe2b3c00edf613745a0c52d0d7133a25a0af99c", "variant": 2294045056, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289789968}, "child": {"skip": 112, "offset": 128, "next": [], "symbols": [{"name": "sppp_lcp_tls", "hash": "817f1cadc3877a9dd59c17d2ea3248d561dd77a3", "variant": 3588649281, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789992}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 10520621}, "child": {"skip": 120, "offset": 132, "next": [], "symbols": [{"name": "_puts_r", "hash": "4dbb02abe2f7379f27fca48d04b454c2b50bb25f", "variant": 4209973550, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 2143223824}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2143158272}, "child": {"skip": 80, "offset": 96, "next": [], "symbols": [{"name": "default_new_handler__3stdFv", "hash": "e0239a5431d1144717bd745e8bfffa5072e73efd", "variant": 2264165141, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 2142240768}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4288938040}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 3752853560}, "child": {"skip": 12, "offset": 32, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__floatdisf"}}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 0}, "child": {"skip": 72, "offset": 112, "next": [], "symbols": [{"name": "_f_ulltof", "hash": "12962d2f76a7c2ca6744dbc5f0714595854440ff", "variant": 3100356139, "library": "gcc_wrapper"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__floatdidf"}}, "child": {"skip": 0, "offset": 36, "next": [{"m)PS2SDB", 8192}, + std::string_view{R"PS2SDB(atch": {"value": 0}, "child": {"skip": 76, "offset": 116, "next": [], "symbols": [{"name": "_d_ulltod", "hash": "0edb1f50bee659a37069b945e6868f1b7f370012", "variant": 2989028881, "library": "gcc_wrapper"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2946760736}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2946826280}, "child": {"skip": 108, "offset": 128, "next": [], "symbols": [{"name": "__destroy_arr", "hash": "60ee0719fdd8bbff8eba2b56b6111d35ab731a76", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2143158272}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__dl__FPv"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 60878881}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 268435461}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 62973985}, "child": {"skip": 32, "offset": 60, "next": [], "symbols": [{"name": "__dla__FPv", "hash": "0eb2f39f8eb7674fdb162dfaf54dbbc2980464c5", "variant": 3336024310, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 268435462}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 62973985}, "child": {"skip": 36, "offset": 64, "next": [], "symbols": [{"name": "__dla__FPv", "hash": "909698dc84d7258302ca65f33caa0c3204fed294", "variant": 3336024310, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "free"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 60878881}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 268435461}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 62973985}, "child": {"skip": 32, "offset": 60, "next": [], "symbols": [{"name": "__dl__FPv", "hash": "0eb2f39f8eb7674fdb162dfaf54dbbc2980464c5", "variant": 3942682007, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 268435462}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 62973985}, "child": {"skip": 36, "offset": 64, "next": [], "symbols": [{"name": "__dl__FPv", "hash": "909698dc84d7258302ca65f33caa0c3204fed294", "variant": 3942682007, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 62973985}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2076114960}, "child": {"skip": 28, "offset": 56, "next": [], "symbols": [{"name": "__dl__FPv", "hash": "af0084924e0401aa136f462dc0b304683dd9ecee", "variant": 2471345849, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 60878881}, "child": {"skip": 32, "offset": 52, "next": [{"match": {"value": 268435461}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 62973985}, "child": {"skip": 32, "offset": 92, "next": [], "symbols": [{"name": "default_new_handler__3stdFv", "hash": "f6f08aa9ab2503a3f8097d5f6ccc43abb887e430", "variant": 2440340289, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 268435462}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 62973985}, "child": {"skip": 36, "offset": 96, "next": [], "symbols": [{"name": "default_new_handler__3stdFv", "hash": "089cd46040e08ad239429150109dd0d2bf3a6129", "variant": 2440340289, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 62973985}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 2076114960}, "child": {"skip": 28, "offset": 88, "next": [], "symbols": [{"name": "default_new_handler__3stdFv", "hash": "ccf11b3e024c276370bbfaa4cee4a301ec65fe9e", "variant": 1404362767, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__nw__FUiRCQ23std9nothrow_t"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 60878881}, "child": {"skip": 40, "offset": 60, "next": [], "symbols": [{"name": "__nwa__FUiRCQ23std9nothrow_t", "hash": "0eb2f39f8eb7674fdb162dfaf54dbbc2980464c5", "variant": 3514338440, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604241930}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855520}, "child": {"skip": 56, "offset": 68, "next": [{"match": {"value": 2919366656, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 610467838}, "child": {"skip": 128, "offset": 204, "next": [], "symbols": [{"name": "_pictureHeader", "hash": "34fe00103af438b99f5941ebb99e60f768e581ed", "variant": 2281526299, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 610533374}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 744685570}, "child": {"skip": 124, "offset": 200, "next": [], "symbols": [{"name": "_pictureHeader", "hash": "c006663c2ef5c4fbc2f31a236ddfbe7f51b18a75", "variant": 3300380177, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604241921}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855520}, "child": {"skip": 160, "offset": 172, "next": [], "symbols": [{"name": "_copyrightExtension", "hash": "243ed43686f454d9ae77015446b4de14081d9624", "variant": 2199320237, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 604307776}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855520}, "child": {"skip": 32, "offset": 44, "next": [{"match": {"value": 20525}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 2383939600}, "child": {"skip": 288, "offset": 340, "next": [], "symbols": [{"name": "dmaRefImage", "hash": "0ce9c7ea5e1eb890ad2583754b8bc96ca6b15308", "variant": 3069270534, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 22573}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 2383939600}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 8527908}, "child": {"skip": 308, "offset": 364, "next": [], "symbols": [{"name": "dmaRefImage", "hash": "210ff7d6f63a47664e6204052dc2d79cd9d0cbfd", "variant": 303893514, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2383939624}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 8527908}, "child": {"skip": 308, "offset": 364, "next": [], "symbols": [{"name": "dmaRefImage", "hash": "9c60ff38a1f42bdedaa58430dcdd736bb812cd4c", "variant": 303893514, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 614596611}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 135298}, "child": {"skip": 116, "offset": 128, "next": [{"match": {"value": 604308992}, "child": {"skip": 0, "offset": 132, "next": [{"match": {"value": 4265738288}, "child": {"skip": 372, "offset": 508, "next": [], "symbols": [{"name": "sceMpegCreate", "hash": "660c7bee3a70f2df822eddc7a1134ba1e1ec7b78", "variant": 3623704757, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 604307696}, "child": {"skip": 0, "offset": 132, "next": [{"match": {"value": 4265738288}, "child": {"skip": 372, "offset": 508, "next": [], "symbols": [{"name": "sceMpegCreate", "hash": "fc53f9523da6eb9c6afe928f8aa48709eb993db7", "variant": 3623704757, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2142371872}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2142306320}, "child": {"skip": 244, "offset": 256, "next": [], "symbols": [{"name": "sceCccIsValidJIS", "hash": "46a9a9be64cc7a11b64081c5fbf9c504311bfabf", "variant": 0, "library": "libccc"}]}}], "symbols": []}}, {"match": {"value": 2142306320}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2142240768}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2946760736}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2812608560}, )PS2SDB", 8192}, + std::string_view{R"PS2SDB("child": {"skip": 112, "offset": 132, "next": [], "symbols": [{"name": "sceCccUCStoJIS", "hash": "5d77191035382d5d8798450394e05e2508b36fb8", "variant": 3334486932, "library": "libccc"}]}}], "symbols": []}}, {"match": {"value": 2812543008}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2946826288}, "child": {"skip": 76, "offset": 96, "next": [], "symbols": [{"name": "sceCccJIStoUCS", "hash": "8513356c7c2446e47889d3e947e10bfa61d0a3f8", "variant": 1422089297, "library": "libccc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10758179}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 256, "offset": 268, "next": [], "symbols": [{"name": "sceHiDMAInit_DBuf", "hash": "a423215c9ec0984452a485630e3540974f365ffd", "variant": 3306890923, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 604307472}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855520}, "child": {"skip": 720, "offset": 732, "next": [], "symbols": [{"name": "sceHiGsEnvCreate", "hash": "6ba4049f1ae40242d8d7d9a50836553064794835", "variant": 231604886, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 4290707472}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2143158272}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "free"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 60878881}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 268435468}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 0}, "child": {"skip": 64, "offset": 92, "next": [], "symbols": [{"name": "__dl__FPv", "hash": "51e2da9080bb17334ef3428a439179fe7390db0e", "variant": 2216431797, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 268435461}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 0}, "child": {"skip": 40, "offset": 68, "next": [], "symbols": [{"name": "__dl__FPv", "hash": "2100f605402cd55cdb70986291612414ff41151b", "variant": 3942682007, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 268435462}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 62973985}, "child": {"skip": 36, "offset": 64, "next": [], "symbols": [{"name": "__dl__FPv", "hash": "72016f168b232588631eba829da8bb926b1c4a38", "variant": 3942682007, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 268435467}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 0}, "child": {"skip": 64, "offset": 92, "next": [], "symbols": [{"name": "__dl__FPv", "hash": "2172c9008d98831a787f9b4ec6c8b19667df8088", "variant": 3942682007, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 268435466}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 0}, "child": {"skip": 56, "offset": 84, "next": [], "symbols": [{"name": "__dl__FPv", "hash": "374a35cac4020471ed35f8f6be1e91b4e97f7e62", "variant": 2216431797, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 60878881}, "child": {"skip": 76, "offset": 96, "next": [], "symbols": [{"name": "default_new_handler__3stdFv", "hash": "7e1ddb28f7309302833ec8be30050047d8f371dd", "variant": 2440340289, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2142240768}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2946760736}, "child": {"skip": 224, "offset": 240, "next": [], "symbols": [{"name": "__dt__26__partial_array_destructorFv", "hash": "3334aca8fbc9fbafe0537740817f0c9d56885c83", "variant": 3637613367, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707488}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2143158288}, "child": {"skip": 4, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 369098780}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 60878881}, "child": {"skip": 148, "offset": 176, "next": [], "symbols": [{"name": "__nw__FUi", "hash": "f46c41dae63488f51785b9290044bc919afe517f", "variant": 2912270278, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 369098778}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 60878881}, "child": {"skip": 144, "offset": 172, "next": [], "symbols": [{"name": "__nw__FUi", "hash": "aa8a902d63892082f6d312bbd5b8517030ec0857", "variant": 1821902088, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1887471144}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 369098780}, "child": {"skip": 156, "offset": 180, "next": [], "symbols": [{"name": "__nw__FUi", "hash": "1eedd10bd6bbebbed87c1fb4c7249942d06221d1", "variant": 1077024251, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2143223840}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2143158288}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2142240768}, "child": {"skip": 4, "offset": 20, "next": [{"match": {"value": 369098778}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 60878881}, "child": {"skip": 144, "offset": 172, "next": [], "symbols": [{"name": "__nw__FUi", "hash": "5a40aa554c7bdf738dd75452e76fa5c461b091d8", "variant": 674575465, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 369098780}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 60878881}, "child": {"skip": 152, "offset": 180, "next": [], "symbols": [{"name": "__nw__FUi", "hash": "28ab04bac82648a17f8e9f96a9b9da653fa80237", "variant": 1077024251, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 369098781}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 60878881}, "child": {"skip": 156, "offset": 184, "next": [], "symbols": [{"name": "__nw__FUi", "hash": "f5b39543d2db243eef20416978a2808dde083fe6", "variant": 1786087211, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2142306320}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2142240768}, "child": {"skip": 92, "offset": 108, "next": [], "symbols": [{"name": "mwLoadOverlay", "hash": "91d6e1787a5f013f5c5e42a785f4ed7c0c281a9f", "variant": 1055253583, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2143223856}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2142371872}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2142306320}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2142240768}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1887473192}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 304087073}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 1889568296}, "child": {"skip": 156, "offset": 188, "next": [], "symbols": [{"name": "__dt__26__partial_array_destructorFv", "hash": "30b64cc7f87b3ef4289b99d644936b6d32ccafd1", "variant": 3718456525, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 304087071}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 1889568296}, "child": {"skip": 148, "offset": 180, "next": [], "symbols": [{"name": "__dt__26__partial_array_destructorFv", "hash": "3b228cdfecab729a8d0505b62e391f4abc318c89", "variant": 304801866, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1889572392}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1879084584}, "child": {"skip": 152, "offset": 180, "next": [], "symbols": [{"name": "mwBload", "hash": "2ec844c3d6fb7e762d12422010d222fbc9b14011", "variant": 1031306365, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1889572392}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 604307457}, "child":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( {"skip": 136, "offset": 156, "next": [], "symbols": [{"name": "mwBload", "hash": "c0797c3d917a1dd054363f2795d14cad6f43e23c", "variant": 2348368886, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707456}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2946760736}, "child": {"skip": 88, "offset": 100, "next": [], "symbols": [{"name": "__call_static_initializers__FPPFv_vPPFv_v", "hash": "7b24eedc8085ea69eabed09a024cfe69003ae336", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 8400941}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724432}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 328, "offset": 344, "next": [], "symbols": [{"name": "sceGpPrintPacketKind", "hash": "22b8441f3e0f0ce8715425c3d319087e714be2d9", "variant": 240171454, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 750911628}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 272629778}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707504}, "child": {"skip": 28, "offset": 48, "next": [{"match": {"value": 343932933}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 604110872}, "child": {"skip": 124, "offset": 180, "next": [], "symbols": [{"name": "OBJ_nid2obj", "hash": "16cce3bac6470b40e9e8c3be0b032e5f0c1667ae", "variant": 4144050227, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 343932932}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 604176408}, "child": {"skip": 128, "offset": 184, "next": [], "symbols": [{"name": "OBJ_nid2sn", "hash": "c1f65c8d99403ad03e7f8dd75059d51737f4f3af", "variant": 2277353150, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 272629779}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707504}, "child": {"skip": 168, "offset": 188, "next": [], "symbols": [{"name": "OBJ_nid2ln", "hash": "12ba480af7972f3a319325998d18a2ec2898fe0e", "variant": 413572758, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604111664}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789968}, "child": {"skip": 200, "offset": 212, "next": [], "symbols": [{"name": "scePad2Read", "hash": "be91a078dd54433ce8286d6c92bb7894ba14ada0", "variant": 932191813, "library": "libpad2"}]}}], "symbols": []}}, {"match": {"value": 604111668}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789968}, "child": {"skip": 92, "offset": 104, "next": [{"match": {"value": 2449604610}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 1346371600}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "scePad2Read", "hash": "7b0f61a6e7ddda5a112ef2ad570124dff218ff5b", "variant": 932191813, "library": "libpad2"}]}}], "symbols": []}}, {"match": {"value": 2449866754}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 1354760208}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "scePad2Read", "hash": "d0a766c16b8389ab3ea3a2c113e8ef3068f33fca", "variant": 932191813, "library": "libpad2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604241923}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289789968}, "child": {"skip": 52, "offset": 68, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "scePrintf"}}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 88, "offset": 164, "next": [], "symbols": [{"name": "sceUsbKbEnd", "hash": "c848907639e35be070d241c09c2ae85c36b6f0cb", "variant": 3690124295, "library": "libusbkb"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "printf"}}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 88, "offset": 164, "next": [], "symbols": [{"name": "sceUsbKbEnd", "hash": "c848907639e35be070d241c09c2ae85c36b6f0cb", "variant": 1236100010, "library": "libusbkb"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289855520}, "child": {"skip": 92, "offset": 108, "next": [], "symbols": [{"name": "sceUsbKbEnd", "hash": "f68bc74ab30332e886b62e2ea3c90b393a992196", "variant": 1976575308, "library": "libusbkb"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 815988770}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855520}, "child": {"skip": 140, "offset": 152, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "scePrintf"}}, "child": {"skip": 0, "offset": 156, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 136, "offset": 296, "next": [], "symbols": [{"name": "sceUsbKbCnvRawCode", "hash": "105bca6ad55bfd9e50912df90c562181f3ff13a3", "variant": 3663546947, "library": "libusbkb"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "printf"}}, "child": {"skip": 0, "offset": 156, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 136, "offset": 296, "next": [], "symbols": [{"name": "sceUsbKbCnvRawCode", "hash": "105bca6ad55bfd9e50912df90c562181f3ff13a3", "variant": 1679515232, "library": "libusbkb"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604307503}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724448}, "child": {"skip": 168, "offset": 180, "next": [], "symbols": [{"name": "isPathCurParent", "hash": "69380d0dfd2499825016f177d2cba1dc8cc70d18", "variant": 1865720810, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 604637336}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855504}, "child": {"skip": 280, "offset": 292, "next": [], "symbols": [{"name": "_sceMcFatGetFatClustNum", "hash": "6d202cc607ab601fff18b5875f4317240385dd91", "variant": 1869776156, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 604113048}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289921048}, "child": {"skip": 204, "offset": 216, "next": [], "symbols": [{"name": "_sceMcFatGetFreeClustSize", "hash": "522f6cc6bf213a218581d29e779457ebff941164", "variant": 1987577013, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 604307711}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855520}, "child": {"skip": 272, "offset": 284, "next": [], "symbols": [{"name": "_sceMcpWriteSysInfo", "hash": "0560ea6bc3d27df43ccaaa98fdb251face9316de", "variant": 2203641290, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 604569599}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855504}, "child": {"skip": 956, "offset": 968, "next": [], "symbols": [{"name": "_sceMcpWriteUserClustOnCache", "hash": "9432024666666e489f63de9b17f18245d02db344", "variant": 335377781, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 1006829567}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789984}, "child": {"skip": 132, "offset": 144, "next": [], "symbols": [{"name": "_fat_chain_trace", "hash": "24e1c2e0f70da38115a7126794b83077b179adb0", "variant": 145537592, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 604176383}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789976}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1007779839}, "child": {"skip": 152, "offset": 168, "next": [], "symbols": [{"name": "_fat_chain_trace", "hash": "6f9131055fadd3d88a3c130a6a153ed6ef694660", "variant": 1457000813, "l)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ibrary": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289855520}, "child": {"skip": 192, "offset": 208, "next": [], "symbols": [{"name": "__sceEENetsl_compress_setup", "hash": "dcc3abb4d47c88318cedb33bcc8eacdb29745f7a", "variant": 1351134315, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289789968}, "child": {"skip": 176, "offset": 192, "next": [], "symbols": [{"name": "send_body", "hash": "8d23105793b95001fe281fb2dd5c784084bdcb08", "variant": 1822055706, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 12599341}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724448}, "child": {"skip": 156, "offset": 168, "next": [], "symbols": [{"name": "ShapeMakeVertexGiftag", "hash": "4cd8bbca9b50fee5b55ac4c56a22053cd0271c04", "variant": 357558641, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 604110850}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8425517}, "child": {"skip": 4, "offset": 24, "next": [{"match": {"value": 279052443}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4289724416}, "child": {"skip": 644, "offset": 676, "next": [], "symbols": [{"name": "sceHiPlugShape", "hash": "b2f6b345785b18dabd77e8b349eb9723884f0af4", "variant": 3069474934, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 279052320}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4289724416}, "child": {"skip": 20, "offset": 52, "next": [{"match": {"value": 268435533}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 3753836592}, "child": {"skip": 324, "offset": 384, "next": [], "symbols": [{"name": "sceHiPlugAnime", "hash": "51539fda6b4a04b9c2f349e5929925a81cb85aeb", "variant": 2589601615, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 268435530}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 3753836592}, "child": {"skip": 312, "offset": 372, "next": [], "symbols": [{"name": "sceHiPlugAnime", "hash": "3142d1135efde19aae473cd191b8ad3b1c3abc37", "variant": 518270681, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 268435532}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 3753836592}, "child": {"skip": 320, "offset": 380, "next": [], "symbols": [{"name": "sceHiPlugAnime", "hash": "490a9c3363681c4deeab455ccd95f795849925c2", "variant": 3525915550, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 268435509}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 3753836592}, "child": {"skip": 228, "offset": 288, "next": [], "symbols": [{"name": "sceHiPlugSkin", "hash": "3cae3e1ed4825a7254bd9681f8bc9f91c8cc86a4", "variant": 2110430025, "library": "libhip"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 279052319}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4289724416}, "child": {"skip": 272, "offset": 304, "next": [], "symbols": [{"name": "sceHiPlugShare", "hash": "cd007262fea5e426de5916cae87e47aca3880912", "variant": 3812890744, "library": "libhip"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 10522669}, "child": {"skip": 380, "offset": 400, "next": [], "symbols": [{"name": "__sceEENettcp_newtcpcb", "hash": "773cb60d37a70343ba6c325ef99a363b8c8260f8", "variant": 83841209, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707504}, "child": {"skip": 8, "offset": 24, "next": [{"match": {"value": 279052333}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4289724416}, "child": {"skip": 284, "offset": 316, "next": [], "symbols": [{"name": "sceHiPlugClutBump", "hash": "9e8b0da77f7a2def38246f3ddf2813feb427e16b", "variant": 3157813637, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 279052326}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4289724416}, "child": {"skip": 20, "offset": 52, "next": [{"match": {"value": 268435508}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 3753836592}, "child": {"skip": 36, "offset": 96, "next": [{"match": {"value": 604307488}, "child": {"skip": 0, "offset": 100, "next": [{"match": {"value": 4227117}, "child": {"skip": 180, "offset": 284, "next": [], "symbols": [{"name": "sceHiPlugShadowMap", "hash": "d246c6f380cf500ee1d66725b104c4c2e6371278", "variant": 1985574525, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 604307472}, "child": {"skip": 0, "offset": 100, "next": [{"match": {"value": 4227117}, "child": {"skip": 180, "offset": 284, "next": [], "symbols": [{"name": "sceHiPlugClip", "hash": "505d9030ec9e0feab729729b7a8be8b4f3c44c93", "variant": 277587145, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 604307552}, "child": {"skip": 0, "offset": 100, "next": [{"match": {"value": 4227117}, "child": {"skip": 180, "offset": 284, "next": [], "symbols": [{"name": "sceHiPlugCamera", "hash": "0293b493979103a7ecb1274f9d7d301aaf770cd6", "variant": 2062795335, "library": "libhip"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 268435511}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 3753836592}, "child": {"skip": 68, "offset": 128, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "ReflectInit"}}, "child": {"skip": 0, "offset": 132, "next": [{"match": {"value": 35661869}, "child": {"skip": 160, "offset": 296, "next": [], "symbols": [{"name": "sceHiPlugReflect", "hash": "5132ce7f6d9606f054184e62ad78ef1a33ad1a2e", "variant": 342800555, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "RefractInit"}}, "child": {"skip": 0, "offset": 132, "next": [{"match": {"value": 35661869}, "child": {"skip": 160, "offset": 296, "next": [], "symbols": [{"name": "sceHiPlugRefract", "hash": "5132ce7f6d9606f054184e62ad78ef1a33ad1a2e", "variant": 2159865357, "library": "libhip"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 279052325}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4289724416}, "child": {"skip": 20, "offset": 52, "next": [{"match": {"value": 268435511}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 3753836592}, "child": {"skip": 236, "offset": 296, "next": [], "symbols": [{"name": "sceHiPlugFishEye", "hash": "17a827ce5759f289903a1d8530cd72d23e155523", "variant": 1081253855, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 268435512}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 3753836592}, "child": {"skip": 240, "offset": 300, "next": [], "symbols": [{"name": "sceHiPlugMatrix", "hash": "1c59fa8b41840f5475827ac3472d6b005d8c99fa", "variant": 429179687, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 268435519}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 3753836592}, "child": {"skip": 268, "offset": 328, "next": [], "symbols": [{"name": "sceHiPlugManime", "hash": "a12d22660aeedd606c2c789e99ff9b026f951d3d", "variant": 3179252704, "library": "libhip"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789984}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707504}, "child": {"skip": 364, "offset": 380, "next": [], "symbols": [{"name": "sceHiPlugLightMap", "hash": "d101050877f401720cbca32b18c47bc9336a2b5b", "variant": 1856996611, "library": "libhip"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290641968}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707512}, "child": {"skip": 364, "offset": 376,)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "next": [], "symbols": [{"name": "sceNetGlueConnect", "hash": "c6160c21952dd617ea6a8f84f1572e682d9c1fd6", "variant": 2567186060, "library": "netglue_insck"}]}}], "symbols": []}}, {"match": {"value": 4289724448}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1007681536, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707504}, "child": {"skip": 68, "offset": 84, "next": [], "symbols": [{"name": "sce_create_sema", "hash": "244d4987a023a388ed856bf2ac959dc59f6ced91", "variant": 2470974674, "library": "netcnfif"}]}}], "symbols": []}}, {"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8421421}, "child": {"skip": 596, "offset": 612, "next": [], "symbols": [{"name": "sppp_lcp_scr", "hash": "69382b4ae78848c665cb8a2af1f6561457d34b7b", "variant": 2759126542, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 8421421}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 301989901}, "child": {"skip": 72, "offset": 88, "next": [], "symbols": [{"name": "R_mtime", "hash": "fa73447ba01de67c6f059bca3ffbe717fe02b873", "variant": 3632996299, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604373000}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789984}, "child": {"skip": 144, "offset": 156, "next": [], "symbols": [{"name": "__sceEENetMD5Final", "hash": "5119b30416d9e04ea51301c9ce294db7f4d07307", "variant": 3931881519, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 14381}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855520}, "child": {"skip": 348, "offset": 360, "next": [], "symbols": [{"name": "bpf_setif", "hash": "f671b4188d871adaabf2f086c36d7af307689fb8", "variant": 2426293744, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 872579124}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 136248}, "child": {"skip": 528, "offset": 540, "next": [], "symbols": [{"name": "pppoe_ioctl", "hash": "d6c5dd4319bc36317fa609c7ad5312cf6ddf9dcd", "variant": 2782967996, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 813826050}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855520}, "child": {"skip": 224, "offset": 236, "next": [], "symbols": [{"name": "__sceEENetifa_ifwithroute", "hash": "d30a0b3a222567689ddce494d35ceb15ebc0bcea", "variant": 525655776, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2946760704}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789984}, "child": {"skip": 152, "offset": 164, "next": [], "symbols": [{"name": "__sceEENetin_canforward", "hash": "1b4a98e0f829382bdff732a9b45d3971cf730ed2", "variant": 3643737367, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 14700589}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707504}, "child": {"skip": 960, "offset": 972, "next": [], "symbols": [{"name": "__sceEENetip_sysctl", "hash": "59f212d1fb1d05118a23866d03a1f82994ff4548", "variant": 65052903, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 604176400}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855520}, "child": {"skip": 156, "offset": 168, "next": [], "symbols": [{"name": "__sceEENetrip_bind", "hash": "38dbe6a56f7794356cb23a78cca3b2d4a2edc44f", "variant": 1661015943, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 12333}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855520}, "child": {"skip": 208, "offset": 220, "next": [], "symbols": [{"name": "__sceEENettcp_established", "hash": "9b5e9a4797e78612ed65df91914a226ce606ec4a", "variant": 795921710, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 748814343}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789968}, "child": {"skip": 236, "offset": 248, "next": [], "symbols": [{"name": "dhcp_term", "hash": "9ff40a9d601b7f8bb012194f40174ca8fd6341b6", "variant": 4158482119, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 604307457}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855520}, "child": {"skip": 172, "offset": 184, "next": [], "symbols": [{"name": "set_mediatype_and_mtu", "hash": "393850d0a71a0bfeaf3a18eb22c1b118d330311b", "variant": 1665374459, "library": "eenetctl"}]}}], "symbols": []}}, {"match": {"value": 604176512}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855520}, "child": {"skip": 424, "offset": 436, "next": [], "symbols": [{"name": "MD5_Final", "hash": "55e325311c80c5ac1dcc8849d95ad08bcffcbcef", "variant": 2263683823, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604110853}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789968}, "child": {"skip": 244, "offset": 256, "next": [], "symbols": [{"name": "pk_dh_sslc_generate_key", "hash": "0001eb13d2ed8540a275f935621df84c0ce721b3", "variant": 439582518, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604241929}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855520}, "child": {"skip": 144, "offset": 156, "next": [], "symbols": [{"name": "R_lockids_free", "hash": "d81c9849d6341c665b22bc05e91c50c081326f62", "variant": 3256582337, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 10489901}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724448}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 12593197}, "child": {"skip": 76, "offset": 92, "next": [], "symbols": [{"name": "R_mtime_import", "hash": "4888b01599a0d23f6e1efb8275ade97789ee61cf", "variant": 745797592, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289724416}, "child": {"skip": 152, "offset": 168, "next": [], "symbols": [{"name": "ssl_cert_type", "hash": "2d74fbae049220654fe33e48bfd6daed0d862e4a", "variant": 3029815440, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 18477}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789984}, "child": {"skip": 128, "offset": 140, "next": [], "symbols": [{"name": "RSA_get", "hash": "7439b2f2012b9b73abfc69ac0b4d4f3bde3ca2c4", "variant": 3902250793, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604115040}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789968}, "child": {"skip": 336, "offset": 348, "next": [], "symbols": [{"name": "get_server_verify", "hash": "4de9ac827170d07b34d4c871fd8ccca962429117", "variant": 2245396016, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604115056}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789968}, "child": {"skip": 472, "offset": 484, "next": [], "symbols": [{"name": "get_server_finished", "hash": "adea4128a18e06c0838b871b61f92f13c32b87e9", "variant": 468940928, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 331818}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789968}, "child": {"skip": 188, "offset": 200, "next": [], "symbols": [{"name": "ssl2_alloc_read_buf", "hash": "7a4d75145c33e39cd53ae0ac08f6103e1887e04d", "variant": 3096311167, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604438548}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724432}, "child": {"skip": 248, "offset": 260, "next": [], "symbols": [{"name": "ssl3_get_finished", "hash": "4686b98996acacc46125e7c6b0c3011994748601", "variant": 2823033063, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 614727673}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855520}, "child": {"skip": 256, "offset": 268, "next": [], "symbols": [{"name": "ssl3_ctrl", "hash": "42f63d658cd590dbe4306bd6c023d2bef221338d", "variant": 3603337745, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 614727679}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855520}, "child": {"skip": 532, "offset": 544, "next": [)PS2SDB", 8192}, + std::string_view{R"PS2SDB(], "symbols": [{"name": "ssl3_ctx_ctrl", "hash": "739a12b0eafb7a176dc8d8de67465e19596ab6ca", "variant": 2680954093, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604241956}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855520}, "child": {"skip": 156, "offset": 168, "next": [], "symbols": [{"name": "X509_STORE_new", "hash": "adc61b39c46b81cd9f91de10c9553e82900ee4e9", "variant": 2757318577, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 475264}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 124, "offset": 136, "next": [], "symbols": [{"name": "sceInetGetInterfaceList", "hash": "66bff95c68757c050a4f160162a047aa55428b9b", "variant": 1074984051, "library": "libnet"}]}}], "symbols": []}}, {"match": {"value": 475392}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 124, "offset": 136, "next": [], "symbols": [{"name": "sceInetGetNameServers", "hash": "535561c0d8fce81feada30e4aa0cd49dc0de2cfd", "variant": 1074984051, "library": "libnet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 338944}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604504063}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 338947}, "child": {"skip": 132, "offset": 144, "next": [], "symbols": [{"name": "sceGszbufaddr", "hash": "361f4d07f645463faee3de827fb2dfb95e429d6a", "variant": 508185605, "library": "libgraph"}]}}], "symbols": []}}, {"match": {"value": 604569666}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 338947}, "child": {"skip": 80, "offset": 92, "next": [], "symbols": [{"name": "sceGsSetDefAlphaEnv", "hash": "04c20af276e0480e7885a55b79d7c9903dbbb270", "variant": 0, "library": "libgraph"}]}}], "symbols": []}}, {"match": {"value": 604569667}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 338947}, "child": {"skip": 80, "offset": 92, "next": [], "symbols": [{"name": "sceGsSetDefAlphaEnv2", "hash": "dc330d4e51142fd192d309332047b34778addb77", "variant": 0, "library": "libgraph"}]}}], "symbols": []}}, {"match": {"value": 1006713088}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1149308928}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 338947}, "child": {"skip": 48, "offset": 64, "next": [], "symbols": [{"name": "sceSynthesizerChangePartPitchBend", "hash": "ca24965eae1b7ae0d1d37254350509f69cf21a4d", "variant": 626043328, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 1149306880}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 338947}, "child": {"skip": 44, "offset": 60, "next": [], "symbols": [{"name": "sceSynthesizerChangePartHsPitchBend", "hash": "d8167d690df97bb040e737971d2c8eedc92f4d6b", "variant": 369862343, "library": "libssyn"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 338947}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 16, "next": [], "symbols": [{"name": "scePFontSetWidth", "hash": "17e3bd577793b2c8f0c4848dca3a3efd6606e598", "variant": 0, "library": "libpfont"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 474112}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 609280}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 474115}, "child": {"skip": 136, "offset": 148, "next": [{"match": {"value": 604241991}, "child": {"skip": 0, "offset": 152, "next": [{"match": {"value": 604307461}, "child": {"skip": 104, "offset": 260, "next": [], "symbols": [{"name": "sceGsSetDefClear", "hash": "ed52b0bf86f0ae3edcd26fa9f608203928a2c85b", "variant": 0, "library": "libgraph"}]}}], "symbols": []}}, {"match": {"value": 604241992}, "child": {"skip": 0, "offset": 152, "next": [{"match": {"value": 604307461}, "child": {"skip": 104, "offset": 260, "next": [], "symbols": [{"name": "sceGsSetDefClear2", "hash": "6b0d1ef5bcdc6c29362c877b96f05c2230e4e710", "variant": 0, "library": "libgraph"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 406528}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 541696}, "child": {"skip": 176, "offset": 188, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "scePrintf"}}, "child": {"skip": 0, "offset": 192, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 288, "offset": 484, "next": [], "symbols": [{"name": "sceGsSetDefLoadImage", "hash": "b61d161a8fe32036e24972d71b36148d9299df59", "variant": 2189364829, "library": "libgraph"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "printf"}}, "child": {"skip": 0, "offset": 192, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 288, "offset": 484, "next": [], "symbols": [{"name": "sceGsSetDefLoadImage", "hash": "b61d161a8fe32036e24972d71b36148d9299df59", "variant": 968883000, "library": "libgraph"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666763248}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 2407661568, "relocation": {"type": "MIPS_GPREL16", "symbol": "sceGsVSCfunc"}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 339738639}, "child": {"skip": 108, "offset": 120, "next": [], "symbols": [{"name": "sceGsSyncV", "hash": "304ebc71fa142983afa5cc11335f5a2a73689141", "variant": 2651915064, "library": "libgraph"}]}}], "symbols": []}}, {"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1007026176, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 40, "offset": 56, "next": [], "symbols": [{"name": "mwInit", "hash": "760db60cc5316fde07e728f78b1843ada76d0e56", "variant": 3266085207, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 4290707456}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "printf"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 16, "offset": 36, "next": [], "symbols": [{"name": "sceDmaSyncN", "hash": "e7648c1f9c0ead435af1efba7f45491c7ad63342", "variant": 1492599472, "library": "libdma"}, {"name": "sceDmaCallback", "hash": "e7648c1f9c0ead435af1efba7f45491c7ad63342", "variant": 1492599472, "library": "libdma"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "scePrintf"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 16, "offset": 36, "next": [], "symbols": [{"name": "sceCdChgSys", "hash": "632be54fff494a9d539aebe0d1c73d920e0f2313", "variant": 3170613554, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceSifCheckStatRpc"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 12, "offset": 32, "next": [], "symbols": [{"name": "sceNetcnfifCheck", "hash": "ed6151bbbeff5232b7833637d4af198d7a497396", "variant": 1829737747, "library": "netcnfif"}]}}], "symbols": []}}, {"match": {"value": 10285}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 36, "offset": 56, "next": [], "symbols": [{"name": "__sceEENetigmp_init", "hash": "5b3151e0b1f823512113d2da4fe7f34be6cff7ee", "variant": 7757780, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: 8, "next": [{"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 32, "offset": 44, "next": [], "symbols": [{"name": "_fs_version", "hash": "0a5e1d71e9d612e7f777b529b5e9c448e269e17b", "variant": 3139999005, "library": "libkernl"}, {"name": "_lf_version", "hash": "0a5e1d71e9d612e7f777b529b5e9c448e269e17b", "variant": 3139999005, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707456}, "child": {"skip": 36, "offset": 52, "next": [], "symbols": [{"name": "sceFsReset", "hash": "0795d766f091faf6f0ad64ed0cb2a4cec5e1b5e0", "variant": 1807500035, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1007157248, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707456}, "child": {"skip": 8, "offset": 24, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceCdStream"}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604438533}, "child": {"skip": 12, "offset": 44, "next": [], "symbols": [{"name": "sceCdStInit", "hash": "e030eed7c6e95b48f44f5718e452f6b223fb8ec2", "variant": 353080483, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 8237}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 10285}, "child": {"skip": 24, "offset": 56, "next": [], "symbols": [{"name": "sceCdStStop", "hash": "3a4eb6a1f5ba0f20b81bd8722e19d8f3b9d8491f", "variant": 3118552949, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 666697744}, "child": {"skip": 8, "offset": 24, "next": [], "symbols": [{"name": "what__Q23std9exceptionCFv", "hash": "c06b7115faf9578c4b800edd7176ac87025a8aae", "variant": 3135353075, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 2889875456, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707456}, "child": {"skip": 44, "offset": 60, "next": [], "symbols": [{"name": "__sceEENetpppoeattach", "hash": "db72cedb71416a6c1390ee1cb51c9538fda7a8ca", "variant": 3679835649, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 604241919}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 40, "offset": 56, "next": [], "symbols": [{"name": "sceSifLoadFileReset", "hash": "3bdb8ef212924fd9ac1a59387d41d1d9ae060e99", "variant": 251883904, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 4290707456}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2353201152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 6354953}, "child": {"skip": 4, "offset": 24, "next": [], "symbols": [{"name": "__terminate", "hash": "2e57da37cd0fe2dba72a202fe97888bf1764920c", "variant": 3118959500, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 816119809}, "child": {"skip": 28, "offset": 48, "next": [], "symbols": [{"name": "_$_9type_info", "hash": "8f3cb1f916cfd6121bf417b04751f4d6c35d7ba6", "variant": 3494960901, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 2353266688, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 3753836544}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "_cleanup_r"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 28, "next": [], "symbols": [{"name": "_cleanup", "hash": "0470523b4a3338aceee4b6c2b0c6622894e5e22f", "variant": 3779831845, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "_localeconv_r"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 28, "next": [], "symbols": [{"name": "localeconv", "hash": "0470523b4a3338aceee4b6c2b0c6622894e5e22f", "variant": 1752990840, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "_init_signal_r"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 28, "next": [], "symbols": [{"name": "_init_signal", "hash": "0470523b4a3338aceee4b6c2b0c6622894e5e22f", "variant": 3114262747, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "_malloc_stats_r"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 28, "next": [], "symbols": [{"name": "malloc_stats", "hash": "0470523b4a3338aceee4b6c2b0c6622894e5e22f", "variant": 4251384345, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2353397760, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 3753836544}, "child": {"skip": 12, "offset": 32, "next": [], "symbols": [{"name": "strtok", "hash": "7fb4f71704f150a3ef1e09e97bc3b4d8776ede1f", "variant": 2952441708, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 2353332224, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 3753836544}, "child": {"skip": 12, "offset": 32, "next": [], "symbols": [{"name": "localtime", "hash": "9c4c0a1ca4d51cdadd35b6cb65e09f3b96cf810d", "variant": 2409401294, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 608501760, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2359492620}, "child": {"skip": 80, "offset": 100, "next": [], "symbols": [{"name": "sceHiGsMemFree", "hash": "a0510af8e53ac00665cab772ea8cdc9ac07a2d99", "variant": 1215454325, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 2353135616, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4257801}, "child": {"skip": 16, "offset": 36, "next": [], "symbols": [{"name": "terminate__3stdFv", "hash": "657345676d0dc06ec13cf581e847dfd0c5158b40", "variant": 3118959500, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 10498093}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2353201152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8398893}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "vfprintf"}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2355363848}, "child": {"skip": 12, "offset": 44, "next": [], "symbols": [{"name": "vprintf", "hash": "eaf02bd80552c261839a539513c414dbf04db552", "variant": 1328950397, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 3753836544}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2355363848}, "child": {"skip": 8, "offset": 40, "next": [], "symbols": [{"name": "vprintf", "hash": "9201a037e26d9429e596c4423fcb8e3094bb8021", "variant": 3619256063, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8398893}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2353266688, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 4, "offset": 28, "next)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": [{"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "_setlocale_r"}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 36, "next": [], "symbols": [{"name": "setlocale", "hash": "5405aed249097711e49d978547402ef104165c63", "variant": 169267029, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "_strtod_r"}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 36, "next": [], "symbols": [{"name": "strtod", "hash": "5405aed249097711e49d978547402ef104165c63", "variant": 1978138414, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "_signal_r"}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 36, "next": [], "symbols": [{"name": "signal", "hash": "5405aed249097711e49d978547402ef104165c63", "variant": 3832101024, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "_fopen_r"}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 36, "next": [], "symbols": [{"name": "fopen", "hash": "5405aed249097711e49d978547402ef104165c63", "variant": 873150791, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "_findenv_r"}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 36, "next": [], "symbols": [{"name": "_findenv", "hash": "5405aed249097711e49d978547402ef104165c63", "variant": 542121229, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "_mallopt_r"}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 36, "next": [], "symbols": [{"name": "mallopt", "hash": "5405aed249097711e49d978547402ef104165c63", "variant": 4091471682, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8394797}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2353266688, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 36, "offset": 56, "next": [], "symbols": [{"name": "strtodf", "hash": "b91489cae3efacccb7e0bb70574f7b546b88a4d1", "variant": 3896098960, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 8405037}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 3753836544}, "child": {"skip": 20, "offset": 40, "next": [{"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "_strtol_r"}}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 48, "next": [], "symbols": [{"name": "strtol", "hash": "1664ec9466983d64cfbcf199c4ce7deed2a5e7b5", "variant": 2666321899, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "_strtoul_r"}}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 48, "next": [], "symbols": [{"name": "strtoul", "hash": "1664ec9466983d64cfbcf199c4ce7deed2a5e7b5", "variant": 1884893577, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "__svfscanf_r"}}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 48, "next": [], "symbols": [{"name": "__svfscanf", "hash": "1664ec9466983d64cfbcf199c4ce7deed2a5e7b5", "variant": 2862560963, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8398893}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2353266688, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 4, "offset": 24, "next": [{"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "_raise_r"}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 32, "next": [], "symbols": [{"name": "raise", "hash": "45a957597614ead53556beec3fc8de6381df4adf", "variant": 3128945534, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "__sigtramp_r"}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 32, "next": [], "symbols": [{"name": "__sigtramp", "hash": "45a957597614ead53556beec3fc8de6381df4adf", "variant": 1508695624, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "_mstats_r"}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 32, "next": [], "symbols": [{"name": "mstats", "hash": "45a957597614ead53556beec3fc8de6381df4adf", "variant": 3529798171, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "_puts_r"}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 32, "next": [], "symbols": [{"name": "puts", "hash": "45a957597614ead53556beec3fc8de6381df4adf", "variant": 3122304679, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "_strdup_r"}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 32, "next": [], "symbols": [{"name": "strdup", "hash": "45a957597614ead53556beec3fc8de6381df4adf", "variant": 3669088989, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "_perror_r"}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 32, "next": [], "symbols": [{"name": "perror", "hash": "45a957597614ead53556beec3fc8de6381df4adf", "variant": 1175931891, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10502189}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2353201152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 32, "offset": 52, "next": [], "symbols": [{"name": "__assert", "hash": "1e5e8508fcb2b6339867967341f4c471ab5a19aa", "variant": 2432464505, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 609222656, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 80, "offset": 100, "next": [], "symbols": [{"name": "eh_context_initialize", "hash": "fa2f8073892f981f9e1af16c9e4616530be390f5", "variant": 3766749504, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 1006983249}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 883291181}, "child": {"skip": 80, "offset": 100, "next": [], "symbols": [{"name": "rand", "hash": "0676307c435b6afc0d697b7c3e33255f28043760", "variant": 3987367596, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707464}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724416}, "child": {"skip": 68, "offset": 88, "next": [], "symbols": [{"name": "rand", "hash": "f313b7a5d971531bbd499bf8a79b2eec3ef54dad", "variant": 4060157754, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 1006983249}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 883291181}, "child": {"skip": 84, "offset": 104, "next": [], "symbols": [{"name": "rand", "hash": "843797afb98afa91d0e6a7987fbace9d6cdceba0", "variant": 2451037646, "library": "l)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ibc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006927872}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707456}, "child": {"skip": 32, "offset": 48, "next": [], "symbols": [{"name": "sceSifMExitRpc", "hash": "fd6c4bc69486c8e22dbc1d32cf96208e60c2d70e", "variant": 655083505, "library": "libmrpc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1007157248, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 621281280, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceCdStream"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 604438533}, "child": {"skip": 12, "offset": 36, "next": [], "symbols": [{"name": "sceCdStInit", "hash": "b236c194e0f69300efb8d6097d6b12cc7c445d9e", "variant": 4084625897, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 10285}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 12333}, "child": {"skip": 4, "offset": 28, "next": [{"match": {"value": 604438537}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 3753836544}, "child": {"skip": 8, "offset": 44, "next": [], "symbols": [{"name": "sceCdStSeekF", "hash": "96f12b523e8094d89b5f6b068a765d2ce53f4ec2", "variant": 359022199, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 604438532}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 3753836544}, "child": {"skip": 8, "offset": 44, "next": [], "symbols": [{"name": "sceCdStSeek", "hash": "98a85c1e675943f7889c0d3f7701e7bf8573cd9d", "variant": 359022199, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8237}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 621281280, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 28, "offset": 48, "next": [], "symbols": [{"name": "sceCdStStop", "hash": "a1b84816b638a3ecebcefaa22921391e2207149e", "variant": 420754382, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 813826176}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 18477}, "child": {"skip": 248, "offset": 268, "next": [], "symbols": [{"name": "sceHiGsDisplayMode", "hash": "5d316a4039b00403becd149da0fe63ccffebee4e", "variant": 382890217, "library": "libhig"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 604110849}, "child": {"skip": 180, "offset": 196, "next": [], "symbols": [{"name": "_clearEach", "hash": "b30e367152c62193ec7ccdb5b9fb3c72768a41cd", "variant": 56686044, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2891972608, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707456}, "child": {"skip": 64, "offset": 80, "next": [], "symbols": [{"name": "__sceEENetifinit", "hash": "4325f6c675d90b1a3e28883283687200b11f2c02", "variant": 1198931807, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 604110849}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10502189}, "child": {"skip": 36, "offset": 52, "next": [], "symbols": [{"name": "sceCdStStart", "hash": "abe94f67c07a4957308f2f2d8b78da08d82656ad", "variant": 455226810, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 4290707456}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2355232768, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4257801}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 0}, "child": {"skip": 4, "offset": 28, "next": [{"match": {"value": 65011720}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 36, "next": [], "symbols": [{"name": "__get_eh_context", "hash": "eddeebe43f966569cb07e274af70748357a108dd", "variant": 3118959500, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 608305160}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 40, "next": [], "symbols": [{"name": "__get_eh_info", "hash": "7534c193b6a35628eea7827bd972ccdc70e0b6d9", "variant": 3118959500, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 608305156}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 40, "next": [], "symbols": [{"name": "__get_dynamic_handler_chain", "hash": "3f9ac01db8add4e7fa8dc9082c609917a17f2567", "variant": 3118959500, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 608370687}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 339738633}, "child": {"skip": 48, "offset": 72, "next": [], "symbols": [{"name": "__malloc_unlock", "hash": "cbaf556fb75245e6ff3837bf7d68badb10820e30", "variant": 1228216711, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 610467840, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2355232768}, "child": {"skip": 56, "offset": 76, "next": [], "symbols": [{"name": "__malloc_unlock", "hash": "afcaf56caf0c443be2f3c0da8cfa1489fe4726e4", "variant": 1262631519, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 8392749}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 3753836544}, "child": {"skip": 12, "offset": 32, "next": [{"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "_setlocale_r"}}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 40, "next": [], "symbols": [{"name": "setlocale", "hash": "7ab04b3b484389858dcd5a01175da736ca968bcb", "variant": 2902442070, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "_strtod_r"}}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 40, "next": [], "symbols": [{"name": "strtod", "hash": "7ab04b3b484389858dcd5a01175da736ca968bcb", "variant": 1601587924, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10489901}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8398893}, "child": {"skip": 16, "offset": 36, "next": [{"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "_strtol_r"}}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 44, "next": [], "symbols": [{"name": "strtol", "hash": "9538e996378e872e54a7a0ec1a8c72e0c179f26d", "variant": 2027602880, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "_strtoul_r"}}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 44, "next": [], "symbols": [{"name": "strtoul", "hash": "9538e996378e872e54a7a0ec1a8c72e0c179f26d", "variant": 3691249373, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "fflush"}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 16, "offset": 28, "next": [], "symbols": [{"name": "_cleanup_r", "hash": "bd8b8850cafd37a2ca7f4a2605a856e1971d2cdb", "variant": 3333560828, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 1007616000, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8)PS2SDB", 8192}, + std::string_view{R"PS2SDB(, "next": [{"match": {"value": 4290707456}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2380529664, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 3753836544}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "_cleanup_r"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 28, "next": [], "symbols": [{"name": "_cleanup", "hash": "5a3cc264bf7ff3fb49935d2e24db9c614ea7240a", "variant": 3779831845, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "_localeconv_r"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 28, "next": [], "symbols": [{"name": "localeconv", "hash": "5a3cc264bf7ff3fb49935d2e24db9c614ea7240a", "variant": 1752990840, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2380595200, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 3753836544}, "child": {"skip": 12, "offset": 32, "next": [], "symbols": [{"name": "localtime", "hash": "dbafb0f8e33e9dba798440ccdb860653bc4d3874", "variant": 2409401294, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707464}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1007550464, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 72, "offset": 88, "next": [], "symbols": [{"name": "rand", "hash": "56e42cf7477bdafe36e9ce4e6fc542cef3a2bc86", "variant": 4060157754, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": "_cleanup_r"}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707464}, "child": {"skip": 116, "offset": 128, "next": [], "symbols": [{"name": "__sinit", "hash": "070f144f6b0916c89d6ad83d000108ed846a64c5", "variant": 2212301298, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 2407858176, "relocation": {"type": "MIPS_GPREL16", "symbol": "_theSceMpeg"}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 132, "offset": 144, "next": [], "symbols": [{"name": "_groupOfPicturesHeader", "hash": "6ea450b75418ef0b94523c2c5071167423a0776c", "variant": 2119377169, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2407727104, "relocation": {"type": "MIPS_GPREL16", "symbol": "_picture_structure"}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 604110851}, "child": {"skip": 44, "offset": 56, "next": [], "symbols": [{"name": "_decodeOrSkip", "hash": "de51160654cc06b3fa759d66ef2f105d450daf46", "variant": 4109502503, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2407661568, "relocation": {"type": "MIPS_GPREL16", "symbol": "_isSecondField"}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 92, "offset": 104, "next": [], "symbols": [{"name": "_lastFrame", "hash": "96d60a9dad9b5bab167c06e15f6a6f80b183b925", "variant": 2756585100, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2407727104, "relocation": {"type": "MIPS_GPREL16", "symbol": ".sdata"}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 264, "offset": 276, "next": [], "symbols": [{"name": "_sequenceHeader", "hash": "d22de1188695d506dc58284e84bae5b0bf577922", "variant": 321546069, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 1006698496, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2351104000, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 274726925}, "child": {"skip": 64, "offset": 84, "next": [], "symbols": [{"name": "__destroy_global_chain", "hash": "3dc8db1de2485cd5c8fe1906d4929322631d9614", "variant": 3678679316, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 2351038464, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4257801}, "child": {"skip": 16, "offset": 36, "next": [], "symbols": [{"name": "unexpected__3stdFv", "hash": "ec08b718285b32292efdfc9fe38fe237c1db7521", "variant": 3118959500, "library": "mslgcc_ps2"}, {"name": "terminate__3stdFv", "hash": "ec08b718285b32292efdfc9fe38fe237c1db7521", "variant": 3118959500, "library": "mslgcc_ps2"}, {"name": "duhandler__3stdFv", "hash": "ec08b718285b32292efdfc9fe38fe237c1db7521", "variant": 3118959500, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "mcHearAlarm"}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 48, "offset": 60, "next": [], "symbols": [{"name": "mcDelayThread", "hash": "83bdcdd66afff1259728ace47a1752db05f09a0f", "variant": 1227832124, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 1007026176, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 116, "offset": 128, "next": [], "symbols": [{"name": "__sceEENetkernclock", "hash": "7c8e363a6169cb0f91f0321a385c0700e3957b2c", "variant": 3699229811, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": "PK_METH_dh"}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 24, "offset": 36, "next": [], "symbols": [{"name": "SSL_enable_DH", "hash": "151d97c58e30b518c017dfd74f07cf5656c980bd", "variant": 3402075394, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": "R_mtime"}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 8, "offset": 20, "next": [{"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": "R_mtime_offset"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "R_time_set_offset_func"}}, "child": {"skip": 56, "offset": 84, "next": [], "symbols": [{"name": "SSL_enable_time", "hash": "e9e558166fedba636e656e8053b21e9aa7417163", "variant": 51636368, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 3753836544}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4141}, "child": {"skip": 8, "offset": 36, "next": [], "symbols": [{"name": "R_mtime_set", "hash": "e7648c1f9c0ead435af1efba7f45491c7ad63342", "variant": 3669277266, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": "rsa_sign_cb"}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 60, "offset": 72, "next": [], "symbols": [{"name": "SSL_enable_RSA", "hash": "a06a14fd35164be702df064b20c3075b220def9d", "variant": 2417731637, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 1006833664}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 4, "offset": 16, "next": [{"match": {"value": 8400941}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2355232768}, "child": {"skip": 140, "offset": 164, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "scePrintf"}}, "child": {"skip": 0, "offset": 168, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 60, "offset": 232, "next": [], "symbols": [{"name": "sceGsPutDrawEnv", "hash": "78ef5e72685891f9909f4de62616df19b1e63164", "variant": )PS2SDB", 8192}, + std::string_view{R"PS2SDB(4005056091, "library": "libgraph"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "printf"}}, "child": {"skip": 0, "offset": 168, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 60, "offset": 232, "next": [], "symbols": [{"name": "sceGsPutDrawEnv", "hash": "78ef5e72685891f9909f4de62616df19b1e63164", "variant": 219925390, "library": "libgraph"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8402989}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 10502189}, "child": {"skip": 288, "offset": 312, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "scePrintf"}}, "child": {"skip": 0, "offset": 316, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 60, "offset": 380, "next": [], "symbols": [{"name": "sceGsExecLoadImage", "hash": "9857fc8fb4842071156c61e28cb5f227103e8b69", "variant": 3722235006, "library": "libgraph"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "printf"}}, "child": {"skip": 0, "offset": 316, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 60, "offset": 380, "next": [], "symbols": [{"name": "sceGsExecLoadImage", "hash": "9857fc8fb4842071156c61e28cb5f227103e8b69", "variant": 3232123304, "library": "libgraph"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10285}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 343933090}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707456}, "child": {"skip": 388, "offset": 404, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "scePrintf"}}, "child": {"skip": 0, "offset": 408, "next": [{"match": {"value": 0}, "child": {"skip": 376, "offset": 788, "next": [], "symbols": [{"name": "sceGsSyncPath", "hash": "3891d8a461ad5e067d9bb903a84cf1b1fcbbe75e", "variant": 123140113, "library": "libgraph"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "printf"}}, "child": {"skip": 0, "offset": 408, "next": [{"match": {"value": 0}, "child": {"skip": 376, "offset": 788, "next": [], "symbols": [{"name": "sceGsSyncPath", "hash": "7b189804ddb94cbad0ae3baba4aad47df3cd8a43", "variant": 2678848963, "library": "libgraph"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 343933100}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707456}, "child": {"skip": 812, "offset": 828, "next": [], "symbols": [{"name": "sceGsSyncPath", "hash": "193889fcc14435dc1c039f2d843dcfc52e68e93c", "variant": 680467044, "library": "libgraph"}]}}], "symbols": []}}, {"match": {"value": 4290707456}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "strtol"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 604373002}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 3753836544}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 135228}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 135231}, "child": {"skip": 8, "offset": 40, "next": [], "symbols": [{"name": "atoi", "hash": "2fc036e21c52aa6e2447f8ef3e5b9ed08dbdd6ec", "variant": 1339969268, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 65011720}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 32, "next": [], "symbols": [{"name": "atol", "hash": "7817568b67e864b19b6bc9808c8af400cdf7b817", "variant": 1339969268, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 135228}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 3753836544}, "child": {"skip": 12, "offset": 40, "next": [], "symbols": [{"name": "atoi", "hash": "81096eb8284b1c4712133c8c040b07803d074933", "variant": 1339969268, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "memset"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 604373920}, "child": {"skip": 12, "offset": 32, "next": [], "symbols": [{"name": "scePFontRelease", "hash": "9779a23e5f48771bcc7fec82c711b2afc0735339", "variant": 1766045961, "library": "libpfont"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "interface_up_down"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 604372993}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 3753836544}, "child": {"skip": 8, "offset": 32, "next": [], "symbols": [{"name": "sceEENetCtlUpInterface", "hash": "1bedc3d4ab34928a0f3492393d10d2d7e2aa10e4", "variant": 181799738, "library": "eenetctl"}]}}], "symbols": []}}, {"match": {"value": 12333}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 3753836544}, "child": {"skip": 8, "offset": 32, "next": [], "symbols": [{"name": "sceEENetCtlDownInterface", "hash": "d5390299fc650036e0180819ec6691e2915fc3c9", "variant": 181799738, "library": "eenetctl"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 343932931}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 12333}, "child": {"skip": 44, "offset": 64, "next": [{"match": {"value": 202875}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 0}, "child": {"skip": 128, "offset": 200, "next": [], "symbols": [{"name": "itof", "hash": "d8d7747bd1139eb06741b860da507fb7da8d2ad9", "variant": 2848711581, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1688535041}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 202875}, "child": {"skip": 128, "offset": 200, "next": [], "symbols": [{"name": "itof", "hash": "00628507f65ae66dca15ca3102e2ec649a05f19b", "variant": 2848711581, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 3753836544}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "strtod"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 24, "next": [], "symbols": [{"name": "atof", "hash": "3052abb4a8fa934d9793e35a329abfa3ed000d66", "variant": 1209493179, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "strtodf"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 24, "next": [], "symbols": [{"name": "atoff", "hash": "3052abb4a8fa934d9793e35a329abfa3ed000d66", "variant": 707286658, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604373002}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 3753836544}, "child": {"skip": 8, "offset": 28, "next": [], "symbols": [{"name": "atol", "hash": "dc57befd9dedbcf36f22279c2d7100b2848ec22b", "variant": 1170920950, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1879053481}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 308, "offset": 320, "next": [], "symbols": [{"name": "sceGsSetDefStoreImage", "hash": "07354c9b90ce316c58bb744d04408a5442d62fd2", "variant": 0, "library": "libgraph"}]}}], "symbols": []}}, {"match": {"value": 4290707456}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "GsGetIMR"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 12, "offset": 28, "next": [], "symbols": [{"name": "sceGsGetIMR", "hash": "7ba17f652620d1a8770717ffc05543c774ba24f8", "variant": 444698743, "library": "libgraph"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "iGsGetIMR"}}, "child": {"skip":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 12, "offset": 28, "next": [], "symbols": [{"name": "isceGsGetIMR", "hash": "7ba17f652620d1a8770717ffc05543c774ba24f8", "variant": 1366467484, "library": "libgraph"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceDevGifSync"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 40, "offset": 56, "next": [], "symbols": [{"name": "sceDevGifContinue", "hash": "52e22dafef7656637c8702a7bb51fb8bc4c0263a", "variant": 3729181879, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceDevGifGetImtMode"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 16, "offset": 32, "next": [], "symbols": [{"name": "sceDevGifGetP3msk", "hash": "ff13fae52b5f6bc650838de1b79574ed6f306636", "variant": 4009963179, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceDevVif0Sync"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 44, "offset": 60, "next": [], "symbols": [{"name": "sceDevVif0Continue", "hash": "383c5a61b4981f08590e5f1b844d06a8a06d1d36", "variant": 1588135750, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceDevVif1Sync"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 44, "offset": 60, "next": [], "symbols": [{"name": "sceDevVif1Continue", "hash": "1660e249bca1902fbb7aec0351669e4b773b03ac", "variant": 1674129142, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "DIntr"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1006833664}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 878905344}, "child": {"skip": 88, "offset": 116, "next": [], "symbols": [{"name": "sceTimerGetSystemTime", "hash": "8ca432d6d219647604fdcf7584326670a9b8877f", "variant": 2544014218, "library": "libtimer"}]}}], "symbols": []}}, {"match": {"value": 1006899200}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 878917680}, "child": {"skip": 100, "offset": 128, "next": [], "symbols": [{"name": "sceVpu0Reset", "hash": "9fb47bb2b06a122863cece2234e69f5bd0bd636d", "variant": 3570484330, "library": "libvu0"}]}}], "symbols": []}}, {"match": {"value": 604241924}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 878964736}, "child": {"skip": 116, "offset": 144, "next": [], "symbols": [{"name": "VSync", "hash": "7c809a56159d1e8eb5e8f7f2a289a88876c9aa59", "variant": 4000579373, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1007161344}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1006829569}, "child": {"skip": 132, "offset": 156, "next": [], "symbols": [{"name": "sceMpegInit", "hash": "7a3a46f427e1ffe1287f4584946433ef3829e69f", "variant": 225333007, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 1007226880}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1006895105}, "child": {"skip": 128, "offset": 152, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceIpuInit"}}, "child": {"skip": 0, "offset": 156, "next": [{"match": {"value": 2891972608}, "child": {"skip": 16, "offset": 176, "next": [], "symbols": [{"name": "sceMpegInit", "hash": "bacb5de637372eac884c02dc4b27704b16229ed3", "variant": 160375048, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 3753836544}, "child": {"skip": 0, "offset": 156, "next": [{"match": {"value": 2891972608}, "child": {"skip": 8, "offset": 168, "next": [], "symbols": [{"name": "sceMpegInit", "hash": "44617119f31a3dab4c728b0c17378e7c737e5ac4", "variant": 2340748196, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1007095808}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1006895105}, "child": {"skip": 136, "offset": 160, "next": [], "symbols": [{"name": "_sceMpegStopIpuDma", "hash": "993a499593d626613599861e95ec820e8cd3806f", "variant": 819467856, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 1272973139}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 272629763}, "child": {"skip": 20, "offset": 44, "next": [], "symbols": [{"name": "Vu0SetInit", "hash": "722063dc91fefeb639f86c7703476545767ee5b5", "variant": 1949935078, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 4204589}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1006768128}, "child": {"skip": 96, "offset": 120, "next": [], "symbols": [{"name": "sceTimerStopSystemTime", "hash": "d0687bb529dedc723133ad2df8af7f3fab11a4ad", "variant": 304678121, "library": "libtimer"}]}}], "symbols": []}}, {"match": {"value": 4210733}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 132, "offset": 156, "next": [], "symbols": [{"name": "sceTimerAllocCounter", "hash": "549822dfb5ae9ff684d2287c71776e1f056d9a40", "variant": 2256660495, "library": "libtimer"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_iSetAlarm"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 814022655}, "child": {"skip": 16, "offset": 32, "next": [], "symbols": [{"name": "iSetAlarm", "hash": "b90a2c499c2c5f6dd2c2ada773c2e1fffd5e3791", "variant": 3315155755, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_iReleaseAlarm"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 16, "offset": 32, "next": [], "symbols": [{"name": "iReleaseAlarm", "hash": "39eb36045ff95a8bcb9b78cbc2e2c455d1f04e2d", "variant": 2024675879, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__errno"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 24, "offset": 40, "next": [], "symbols": [{"name": "open", "hash": "dcd29ec89303c70621bf929e4571dfe1bdb6e71f", "variant": 227996149, "library": "libkernl"}, {"name": "stat", "hash": "dcd29ec89303c70621bf929e4571dfe1bdb6e71f", "variant": 227996149, "library": "libkernl"}, {"name": "unlink", "hash": "dcd29ec89303c70621bf929e4571dfe1bdb6e71f", "variant": 227996149, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_iEnableIntc"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 16, "offset": 32, "next": [], "symbols": [{"name": "iEnableIntc", "hash": "39eb36045ff95a8bcb9b78cbc2e2c455d1f04e2d", "variant": 4120093232, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_iDisableIntc"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 16, "offset": 32, "next": [], "symbols": [{"name": "iDisableIntc", "hash": "39eb36045ff95a8bcb9b78cbc2e2c455d1f04e2d", "variant": 1437075691, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_iEnableDmac"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 16, "offset": 32, "next": [], "symbols": [{"name": "iEnableDmac", "hash": "39eb36045ff95a8bcb9b78cbc2e2c455d1f04e2d", "variant": 839525024, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_iDisableDmac"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": )PS2SDB", 8192}, + std::string_view{R"PS2SDB({"skip": 16, "offset": 32, "next": [], "symbols": [{"name": "iDisableDmac", "hash": "39eb36045ff95a8bcb9b78cbc2e2c455d1f04e2d", "variant": 2452719739, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "DisableDmac"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 604241925}, "child": {"skip": 4, "offset": 20, "next": [{"match": {"value": 604241925}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "RemoveDmacHandler"}}, "child": {"skip": 24, "offset": 52, "next": [], "symbols": [{"name": "sceSifExitCmd", "hash": "12a278e826c6a6fe35a401dd72607b01e3ba604b", "variant": 4133193994, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 3753836544}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2355429376, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 12, "offset": 40, "next": [], "symbols": [{"name": "sceSifExitCmd", "hash": "4c6d9feed8797c0b82b47e305e3a7429abecfbc0", "variant": 48842678, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceSifExitCmd"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 20, "offset": 36, "next": [], "symbols": [{"name": "sceSifExitRpc", "hash": "ed6463e651f65ed76c3dd764e933c23f0b0bd3c9", "variant": 1005919653, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceFsSemInit"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 28, "offset": 44, "next": [], "symbols": [{"name": "_sceFsWaitS", "hash": "cac9d6b0d2b780a73e667f4795ce6b6cc21b96a4", "variant": 3327681714, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceCallCode"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 604307462}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 3753836544}, "child": {"skip": 8, "offset": 28, "next": [], "symbols": [{"name": "sceRemove", "hash": "f3e4a8c54bdf0ad3e94fc1ba116165b7f75b1fd8", "variant": 866776005, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604307464}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 3753836544}, "child": {"skip": 8, "offset": 28, "next": [], "symbols": [{"name": "sceRmdir", "hash": "7042450565769c05ff4cd8221d4ba0d917b33323", "variant": 866776005, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604307472}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 3753836544}, "child": {"skip": 8, "offset": 28, "next": [], "symbols": [{"name": "sceDelDrv", "hash": "29ae6c1c79031490edac54175a6ad7b8c5ecd61e", "variant": 866776005, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604307474}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 3753836544}, "child": {"skip": 8, "offset": 28, "next": [], "symbols": [{"name": "sceChdir", "hash": "613eaad85fd7f2de5ad868f25c40eaa7aea96395", "variant": 866776005, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604307477}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 3753836544}, "child": {"skip": 8, "offset": 28, "next": [], "symbols": [{"name": "sceUmount", "hash": "28c5bdcd2537de61539f812a02da91b579bb01ed", "variant": 866776005, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceSifFreeSysMemory"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 12, "offset": 28, "next": [], "symbols": [{"name": "sceSifFreeIopHeap", "hash": "7ba17f652620d1a8770717ffc05543c774ba24f8", "variant": 2641818468, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceSifLoadModuleBuffer"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 12, "offset": 28, "next": [], "symbols": [{"name": "sceSifLoadStartModuleBuffer", "hash": "7ba17f652620d1a8770717ffc05543c774ba24f8", "variant": 1111226892, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceSifLoadModule"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 14381}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 3753836544}, "child": {"skip": 8, "offset": 28, "next": [], "symbols": [{"name": "sceSifLoadModule", "hash": "a0d6c7e083285f643ea590185282b940843f0637", "variant": 3708018305, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 16429}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 3753836544}, "child": {"skip": 8, "offset": 28, "next": [], "symbols": [{"name": "sceSifLoadStartModule", "hash": "e42893914e3fe33789b75ad07b93d1cefcb84f0a", "variant": 3708018305, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceSifLoadElfPart"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 604438529}, "child": {"skip": 12, "offset": 28, "next": [], "symbols": [{"name": "sceSifLoadElfPart", "hash": "e29f42449c276c58a8df0991fc9c82ff09bc27c8", "variant": 1241828768, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceSifGetReg"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 604241924}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1006829569}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 3753836544}, "child": {"skip": 16, "offset": 40, "next": [], "symbols": [{"name": "sceSifIsAliveIop", "hash": "90858e26e668b48956b9c2b323fee1e75761f82b", "variant": 2875283786, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006829572}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4395044}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 272629764}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4141}, "child": {"skip": 24, "offset": 56, "next": [], "symbols": [{"name": "sceSifSyncIop", "hash": "3294f4ace62d2a1f61a49e6631f787b50ea7c796", "variant": 2993797562, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 272629770}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4141}, "child": {"skip": 48, "offset": 80, "next": [], "symbols": [{"name": "sceSifSyncIop", "hash": "3592b50eba3fb9687ed49051aae323374e144634", "variant": 1567883483, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 272629767}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604241924}, "child": {"skip": 8, "offset": 40, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceResetttyinit"}}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 0}, "child": {"skip": 24, "offset": 72, "next": [], "symbols": [{"name": "sceSifSyncIop", "hash": "812eb9c5f9154b0055ab4bac3224621e510537fa", "variant": 3580129161, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceTtyInit"}}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 0}, "child": {"skip": 24, "offset": 72, "next": [], "symbols": [{"name": "sceSifSyncIop", "hash": "812eb9c5f9154b0055ab4bac3224621e510537fa", "variant": 2828559044, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "GetMemorySize"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 48, "offset": 64, "next": [], "symbols": [{"name": "InitTLB", "hash": "459b65d976116059c068fe09c88f0d6a9b71d7bc", "variant": 3445318832, "libra)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ry": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "supplement_crt0"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "InitSystemCallTableAddress"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 0}, "child": {"skip": 8, "offset": 32, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "InitThread"}}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 0}, "child": {"skip": 20, "offset": 60, "next": [], "symbols": [{"name": "_InitSys", "hash": "2df691dfa6e2c51e5966ff08884f554b45a4486d", "variant": 545661056, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "InitTimer"}}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 604241922}, "child": {"skip": 44, "offset": 84, "next": [], "symbols": [{"name": "_InitSys", "hash": "c69b3f916196e59ab632fab6d687eead8405ddff", "variant": 1591232133, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "GetSystemCallTableEntry"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 0}, "child": {"skip": 36, "offset": 60, "next": [], "symbols": [{"name": "_InitSys", "hash": "2df691dfa6e2c51e5966ff08884f554b45a4486d", "variant": 4222320124, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "InitAlarm"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 0}, "child": {"skip": 12, "offset": 36, "next": [], "symbols": [{"name": "_InitSys", "hash": "49a024c2bc0cc90c5377c03b17c59420cff62154", "variant": 4221581759, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "InitAlarm"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 12, "offset": 28, "next": [], "symbols": [{"name": "_InitSys", "hash": "44cfc1ba7c8f678529790b74833dc58f61fe1ab0", "variant": 3453037997, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "iSignalSema"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 14688301}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 15}, "child": {"skip": 20, "offset": 40, "next": [], "symbols": [{"name": "_DelayThreadHandler", "hash": "f5a9bf4a1d0db65651a931db2684a4f045d175a5", "variant": 2243118006, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 12591149}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 15}, "child": {"skip": 16, "offset": 36, "next": [], "symbols": [{"name": "CB_DelayTh", "hash": "ad849324198c2b60157a3e8d2eb2ba064fa172c0", "variant": 504762329, "library": "libcdvd"}, {"name": "mcHearAlarm", "hash": "ad849324198c2b60157a3e8d2eb2ba064fa172c0", "variant": 504762329, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 0}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 15}, "child": {"skip": 16, "offset": 36, "next": [], "symbols": [{"name": "sce_cbfunc", "hash": "3f0da5a63f64d287c34d04ebc64f19872541ff94", "variant": 504762329, "library": "netcnfif"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "scePadGetDmaStr"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2353135704}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 3753836544}, "child": {"skip": 8, "offset": 32, "next": [], "symbols": [{"name": "scePadGetFrameCount", "hash": "4ed6f879e358405d4d2207e1ebbc4bac47941888", "variant": 1092504676, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 4202541}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 604176390}, "child": {"skip": 40, "offset": 64, "next": [], "symbols": [{"name": "scePadGetState", "hash": "b73daf163cf4a47ecba74ef90cd34bdb7225792b", "variant": 1092504676, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 2420244593}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 3753836544}, "child": {"skip": 8, "offset": 32, "next": [], "symbols": [{"name": "scePadGetReqState", "hash": "2e2fd02209c249d4e190ad4caa34ada19727d6dc", "variant": 1092504676, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "scePadGetButtonMask"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 28, "offset": 44, "next": [], "symbols": [{"name": "scePadInfoPressMode", "hash": "dae2de7c53988185ed650bc7b5c6644c40aae9ba", "variant": 793056911, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "scePadSetButtonInfo"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 604377087}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 3753836544}, "child": {"skip": 8, "offset": 28, "next": [], "symbols": [{"name": "scePadEnterPressMode", "hash": "77e1a0cf146a6a063a2ee019dba2932b2a12c9fd", "variant": 4011665572, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 12333}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 3753836544}, "child": {"skip": 8, "offset": 28, "next": [], "symbols": [{"name": "scePadExitPressMode", "hash": "e1e028210078668942189d5d8a2c4d8d4b00a4fa", "variant": 4011665572, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceCdLayerSearchFile"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 12333}, "child": {"skip": 12, "offset": 28, "next": [], "symbols": [{"name": "sceCdSearchFile", "hash": "e1e028210078668942189d5d8a2c4d8d4b00a4fa", "variant": 1390475619, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceCdGetDiskType2"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 20, "offset": 36, "next": [], "symbols": [{"name": "sceCdGetDiskType", "hash": "65e1a3115322f769ebe0a53df21b0ff66167bcc3", "variant": 138863348, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceMcOpen"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 604438592}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4202541}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 343932932}, "child": {"skip": 28, "offset": 52, "next": [], "symbols": [{"name": "sceMcMkdir", "hash": "1d1b5a1dc65a8d9e6c9c1bd9aa8a9a097f8ac4a1", "variant": 1050732153, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 4200493}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 341835779}, "child": {"skip": 24, "offset": 48, "next": [], "symbols": [{"name": "sceMcMkdir", "hash": "a3b77beb3d12219f4a36c75fc365320f9dfc9ee4", "variant": 3603346281, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "iWakeupThread"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 12591149}, "child": {"skip": 20, "offset": 36, "next": [], "symbols": [{"name": "mcHearAlarm", "hash": "ad849324198c2b60157a3e8d2eb2ba064fa172c0", "variant": 610330263, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "abort"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 3753836544}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 65011720}, "child)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": {"skip": 0, "offset": 24, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 28, "next": [], "symbols": [{"name": "dthandler__3stdFv", "hash": "7ba17f652620d1a8770717ffc05543c774ba24f8", "variant": 3535856678, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 666697744}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 32, "next": [], "symbols": [{"name": "dthandler__3stdFv", "hash": "711e2ee3d68dbdec33f6ca06188dfb4fd8a747f5", "variant": 3535856678, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": [{"name": "__default_terminate", "hash": "4e8e3b7e57ef63a477970da68cf7876077246d29", "variant": 3535856678, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "malloc"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 24, "offset": 40, "next": [], "symbols": [{"name": "__eh_alloc", "hash": "3f27e852c9c7a3aa388a22cfd44f4ff70ad85b5e", "variant": 1571645062, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "free"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 12, "offset": 28, "next": [], "symbols": [{"name": "__eh_free", "hash": "7ba17f652620d1a8770717ffc05543c774ba24f8", "variant": 986078704, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__deregister_frame_info"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 16, "offset": 32, "next": [], "symbols": [{"name": "__deregister_frame", "hash": "33ceccb4e187f7110b582a315b6c625c57eb9638", "variant": 360825566, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "terminate__Fv"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 16, "next": [], "symbols": [{"name": "__default_unexpected__Fv", "hash": "4e8e3b7e57ef63a477970da68cf7876077246d29", "variant": 603252559, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__get_eh_info"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2353135616}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 3753836544}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 608305160}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 36, "next": [], "symbols": [{"name": "__cp_exception_info", "hash": "3d985d0618a23dac303317c317eefce8468c5d6d", "variant": 990900648, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 65011720}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 32, "next": [], "symbols": [{"name": "__cp_eh_info", "hash": "e20b32e00e6812e4f2db4527816ad3a152407ff9", "variant": 990900648, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 339738627}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 3753836544}, "child": {"skip": 20, "offset": 48, "next": [], "symbols": [{"name": "__uncatch_exception", "hash": "b8192d815b2a1d1fbc5b7a153a5c02eee41c1dda", "variant": 2314927045, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 272629763}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 6189}, "child": {"skip": 24, "offset": 52, "next": [], "symbols": [{"name": "uncaught_exception__Fv", "hash": "b02f5643dea9308e51cbc82063204f42f72e44f8", "variant": 990900648, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2353201152}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 604307457}, "child": {"skip": 32, "offset": 56, "next": [], "symbols": [{"name": "__start_cp_handler", "hash": "48b6c0640c84daaee13564ca001b2cd4cf0c14d7", "variant": 990900648, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_$_9type_info"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 12, "offset": 28, "next": [], "symbols": [{"name": "_$_17__class_type_info", "hash": "7ba17f652620d1a8770717ffc05543c774ba24f8", "variant": 3912749995, "library": "libgcc"}, {"name": "_$_14__si_type_info", "hash": "7ba17f652620d1a8770717ffc05543c774ba24f8", "variant": 3912749995, "library": "libgcc"}, {"name": "_$_16__user_type_info", "hash": "7ba17f652620d1a8770717ffc05543c774ba24f8", "variant": 3912749995, "library": "libgcc"}, {"name": "_$_17__array_type_info", "hash": "7ba17f652620d1a8770717ffc05543c774ba24f8", "variant": 3912749995, "library": "libgcc"}, {"name": "_$_16__ptmd_type_info", "hash": "7ba17f652620d1a8770717ffc05543c774ba24f8", "variant": 3912749995, "library": "libgcc"}, {"name": "_$_16__ptmf_type_info", "hash": "7ba17f652620d1a8770717ffc05543c774ba24f8", "variant": 3912749995, "library": "libgcc"}, {"name": "_$_16__func_type_info", "hash": "7ba17f652620d1a8770717ffc05543c774ba24f8", "variant": 3912749995, "library": "libgcc"}, {"name": "_$_19__builtin_type_info", "hash": "7ba17f652620d1a8770717ffc05543c774ba24f8", "variant": 3912749995, "library": "libgcc"}, {"name": "_$_16__attr_type_info", "hash": "7ba17f652620d1a8770717ffc05543c774ba24f8", "variant": 3912749995, "library": "libgcc"}, {"name": "_$_19__pointer_type_info", "hash": "7ba17f652620d1a8770717ffc05543c774ba24f8", "variant": 3912749995, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__eq__C9type_infoRC9type_info"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 16, "offset": 32, "next": [], "symbols": [{"name": "__ne__C9type_infoRC9type_info", "hash": "17416986ce21ad57127a34649e313bc544fcb9e5", "variant": 1711738874, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "strtod"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10285}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 3753836544}, "child": {"skip": 8, "offset": 28, "next": [], "symbols": [{"name": "atof", "hash": "2f097ddf7926df8f91a0f5ba1da34acb2262515c", "variant": 1107557817, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 0}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "dptofp"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4202541}, "child": {"skip": 12, "offset": 36, "next": [], "symbols": [{"name": "strtodf", "hash": "7957a2269426b9dbfcbd66302afe468ba97be039", "variant": 1265654793, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4202541}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "dptofp"}}, "child": {"skip": 16, "offset": 40, "next": [], "symbols": [{"name": "strtodf", "hash": "ef53b369de4db057f0d0036522145e84bea4f1f9", "variant": 1215719286, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "QueryIntrContext"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 604176385}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 272826380}, "child": {"skip": 60, "offset": 84, "next": [], "symbols": [{"name": "__malloc_unlock", "hash": "b785e1568b89061371414c8107d2e73d4cb7bb02", "variant": 2738528419, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 604962817}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 273612812}, "child": {"skip": 60, "offset": 84, "next": [], "symbols": [{"name": "__malloc_unlock", "hash": "3786638f50c317)PS2SDB", 8192}, + std::string_view{R"PS2SDB(1da314bbed3f204f1113eda41f", "variant": 2738528419, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "fflush"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 12, "offset": 28, "next": [], "symbols": [{"name": "lflush", "hash": "7ba17f652620d1a8770717ffc05543c774ba24f8", "variant": 1442705822, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "strchr"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 12, "offset": 28, "next": [], "symbols": [{"name": "index", "hash": "7ba17f652620d1a8770717ffc05543c774ba24f8", "variant": 3774835674, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "raise"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 604241926}, "child": {"skip": 8, "offset": 24, "next": [{"match": {"value": 268500987}, "child": {"skip": 4, "offset": 32, "next": [], "symbols": [{"name": "abort", "hash": "3dd838b688fc894fc831fa8da2371b5c345049a3", "variant": 2993554393, "library": "libc"}]}}], "symbols": [{"name": "abort", "hash": "dc399031cd647bda6e520ebb1b03c781714fdbbe", "variant": 2993554393, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "getpid"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 12, "offset": 28, "next": [], "symbols": [{"name": "_getpid_r", "hash": "7ba17f652620d1a8770717ffc05543c774ba24f8", "variant": 1435195444, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "localtime"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 20, "offset": 36, "next": [], "symbols": [{"name": "ctime", "hash": "7957a2269426b9dbfcbd66302afe468ba97be039", "variant": 926010838, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "dpcmp"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 4, "offset": 20, "next": [{"match": {"value": 4198442}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 943849473}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 36, "next": [], "symbols": [{"name": "_dpfge", "hash": "d1daff441c9094da12110bc322a155d66d3f2f97", "variant": 589154209, "library": "gcc_wrapper"}]}}], "symbols": []}}, {"match": {"value": 65011720}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 32, "next": [], "symbols": [{"name": "_dpflt", "hash": "3a9a0b7baebcff665493a7e5cb569764f8a6b498", "variant": 589154209, "library": "gcc_wrapper"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 135210}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 65011720}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 32, "next": [], "symbols": [{"name": "_dpfgt", "hash": "b13860d2d97990def5e7265395af54f257df1265", "variant": 589154209, "library": "gcc_wrapper"}]}}], "symbols": []}}, {"match": {"value": 943849473}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 36, "next": [], "symbols": [{"name": "_dpfle", "hash": "ace80f74521aeebf3ca103a773a41b781f26e9bf", "variant": 589154209, "library": "gcc_wrapper"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4198438}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 742522881}, "child": {"skip": 8, "offset": 36, "next": [], "symbols": [{"name": "_dpfeq", "hash": "f98aeb2c7ed9379cce4832072197bf851499067e", "variant": 589154209, "library": "gcc_wrapper"}]}}], "symbols": []}}, {"match": {"value": 135211}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 32, "next": [], "symbols": [{"name": "_dpfne", "hash": "aa6bea717c1526644368c76d2a8b905708463cdd", "variant": 589154209, "library": "gcc_wrapper"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_ipuVdec"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 604307459}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 3753836544}, "child": {"skip": 8, "offset": 28, "next": [], "symbols": [{"name": "_dmVector", "hash": "a34c218f4d24516d6553a13f485834f7fbd52631", "variant": 783864107, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 604241923}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 3753836544}, "child": {"skip": 8, "offset": 28, "next": [], "symbols": [{"name": "_dmVector", "hash": "ef36607613897e44d95c2b06413ecad9ebfa1556", "variant": 783864107, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_nextBit"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 604241925}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2944532480, "relocation": {"type": "MIPS_GPREL16", "symbol": "_qscqsc"}}, "child": {"skip": 68, "offset": 88, "next": [], "symbols": [{"name": "_sliceB", "hash": "238673e584b6115c88e95c99f45a0a0f0ff88b6f", "variant": 3086783520, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 604241930}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2944532480, "relocation": {"type": "MIPS_GPREL16", "symbol": "_temporal_reference"}}, "child": {"skip": 132, "offset": 152, "next": [], "symbols": [{"name": "_pictureHeader", "hash": "02851c65e0ae8a37dcbfc7d880e11fc348ffd54e", "variant": 3121539634, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 604241921}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2944532480, "relocation": {"type": "MIPS_GPREL16", "symbol": "_copyright_flag"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_nextBit"}}, "child": {"skip": 100, "offset": 124, "next": [], "symbols": [{"name": "_copyrightExtension", "hash": "546971f90633f7c4fe2c4b7e3b13ec1ed78681d2", "variant": 2185914979, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 272629767}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2944532480, "relocation": {"type": "MIPS_GPREL16", "symbol": "_load_intra_quantizer_matrix"}}, "child": {"skip": 128, "offset": 152, "next": [], "symbols": [{"name": "_quantMatrixExtension", "hash": "ac198764f7785f19e6433887fb86fbf52757be94", "variant": 92263465, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604241923}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2944532480, "relocation": {"type": "MIPS_GPREL16", "symbol": "_video_format"}}, "child": {"skip": 96, "offset": 116, "next": [], "symbols": [{"name": "_sequenceDisplayExtension", "hash": "50ff8abe4067bde725dd41037e80c55a6f18b222", "variant": 264309574, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_ipuSetMPEG1"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 604241921}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1007026176, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 52, "offset": 76, "next": [], "symbols": [{"name": "_clearOnce", "hash": "9b6d11138fe5a5572c817d4c8fd8e2501af48115", "variant": 3326371506, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2407661568, "relocation": {"type": "MIPS_GPREL16", "symbol": ".sdata"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1007026176, "relocation": {"type")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: "MIPS_HI16", "symbol": ""}}, "child": {"skip": 48, "offset": 72, "next": [], "symbols": [{"name": "_clearOnce", "hash": "b7616bd1a05875b1d82bc356a709e2ce5bb47889", "variant": 2661819379, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "setD4_CHCR"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 604241921}, "child": {"skip": 552, "offset": 568, "next": [], "symbols": [{"name": "sceIpuInit", "hash": "e8588aaabae47f7d8d076eb12dd2325a288f6aa2", "variant": 541005260, "library": "libipu"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceCccIsValidUCS4"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 12, "offset": 28, "next": [], "symbols": [{"name": "sceCccIsValidUTF8", "hash": "7ba17f652620d1a8770717ffc05543c774ba24f8", "variant": 2151872933, "library": "libccc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "set_api"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 16, "offset": 32, "next": [], "symbols": [{"name": "sceHiSetPluginApi", "hash": "ddd8e32f9e36739a53671a300121ec6445eb7bd6", "variant": 1079691354, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__destroy_global_chain"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 4, "offset": 20, "next": [{"match": {"value": 65011720}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 28, "next": [], "symbols": [{"name": "mwExit", "hash": "7ba17f652620d1a8770717ffc05543c774ba24f8", "variant": 37099100, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 666697744}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 32, "next": [], "symbols": [{"name": "mwExit", "hash": "711e2ee3d68dbdec33f6ca06188dfb4fd8a747f5", "variant": 37099100, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 48, "offset": 64, "next": [], "symbols": [{"name": "mwInit", "hash": "7c08f0a38ad5d5a5aec0c191c08c82bbecbba010", "variant": 3449225675, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__dl__FPv"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 12, "offset": 28, "next": [], "symbols": [{"name": "__dla__FPv", "hash": "7ba17f652620d1a8770717ffc05543c774ba24f8", "variant": 3611708217, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__nw__FUi"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 12, "offset": 28, "next": [], "symbols": [{"name": "__nwa__FUi", "hash": "7ba17f652620d1a8770717ffc05543c774ba24f8", "variant": 3931643807, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__nw__FUiRCQ23std9nothrow_t"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 12, "offset": 28, "next": [], "symbols": [{"name": "__nwa__FUiRCQ23std9nothrow_t", "hash": "7ba17f652620d1a8770717ffc05543c774ba24f8", "variant": 3033734166, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 1006698496, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2351038464, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 20, "offset": 36, "next": [], "symbols": [{"name": "unexpected__3stdFv", "hash": "47f7f867e547d20f2e8fa8a898adaa92caa95ae5", "variant": 49031533, "library": "mslgcc_ps2"}, {"name": "terminate__3stdFv", "hash": "47f7f867e547d20f2e8fa8a898adaa92caa95ae5", "variant": 49031533, "library": "mslgcc_ps2"}, {"name": "duhandler__3stdFv", "hash": "47f7f867e547d20f2e8fa8a898adaa92caa95ae5", "variant": 49031533, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2353135616, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 24, "offset": 40, "next": [], "symbols": [{"name": "unexpected__3stdFv", "hash": "f91c0a14dbb750e66da66b2df59e931cf53bc066", "variant": 49031533, "library": "mslgcc_ps2"}, {"name": "terminate__3stdFv", "hash": "f91c0a14dbb750e66da66b2df59e931cf53bc066", "variant": 49031533, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 2407661568, "relocation": {"type": "MIPS_GPREL16", "symbol": "uhandler__3std"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4257801}, "child": {"skip": 16, "offset": 32, "next": [], "symbols": [{"name": "unexpected__3stdFv", "hash": "a2d59143cecb91a95447475a061fc3ec5f744a40", "variant": 788325450, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 2407661568, "relocation": {"type": "MIPS_GPREL16", "symbol": "thandler__3std"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4257801}, "child": {"skip": 16, "offset": 32, "next": [], "symbols": [{"name": "terminate__3stdFv", "hash": "a2d59143cecb91a95447475a061fc3ec5f744a40", "variant": 3019048252, "library": "mslgcc_ps2"}, {"name": "duhandler__3stdFv", "hash": "a2d59143cecb91a95447475a061fc3ec5f744a40", "variant": 3019048252, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "terminate__3stdFv"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 16, "offset": 32, "next": [], "symbols": [{"name": "duhandler__3stdFv", "hash": "711e2ee3d68dbdec33f6ca06188dfb4fd8a747f5", "variant": 3152052006, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceGpInitPrim"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 883236864}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 3753836544}, "child": {"skip": 8, "offset": 28, "next": [], "symbols": [{"name": "sceGpInitPrimR", "hash": "10c99c227aa1b7791dbd2fbecb5fe5a2a4c78021", "variant": 2044162617, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 883240960}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 3753836544}, "child": {"skip": 8, "offset": 28, "next": [], "symbols": [{"name": "sceGpInitPrimP", "hash": "402d905172c95959be52f0667c58bbb19061893d", "variant": 2044162617, "library": "libgp"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 883236864}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 3753836544}, "child": {"skip": 8, "offset": 28, "next": [], "symbols": [{"name": "sceGpInitPrimR", "hash": "10c99c227aa1b7791dbd2fbecb5fe5a2a4c78021", "variant": 129923444, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 883240960}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 3753836544}, "child": {"skip": 8, "offset": 28, "next": [], "symbols": [{"name": "sceGpInitPrimP", "hash": "402d905172c95959be52f0667c58bbb19061893d", "variant": 129923444, "library": "libgp"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceMtapSetWorkAddr"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8237}, "child": {"skip": 12, "offset": 28, "next": [], "symbols": [{"name": "sceMtapEnd", "hash": "a7b635c3cb6395c55a8d768a05c68fd80a723e14", "var)PS2SDB", 8192}, + std::string_view{R"PS2SDB(iant": 1872074604, "library": "libmtap"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "velMod2Amp"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 813957375}, "child": {"skip": 24, "offset": 40, "next": [], "symbols": [{"name": "velMod3Amp", "hash": "c38acf11cb23f395d82dd16632e34409d95b515a", "variant": 3987316757, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceSdRemoteCallbackQuit"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 16, "offset": 32, "next": [], "symbols": [{"name": "sceSkSsQuit", "hash": "ddd8e32f9e36739a53671a300121ec6445eb7bd6", "variant": 2819719450, "library": "libsk"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceVu0CopyMatrix"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 3753836544}, "child": {"skip": 8, "offset": 28, "next": [], "symbols": [{"name": "scePFontSetScreenMatrix", "hash": "7ba17f652620d1a8770717ffc05543c774ba24f8", "variant": 1622213664, "library": "libpfont"}]}}], "symbols": []}}, {"match": {"value": 612631248}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 3753836544}, "child": {"skip": 8, "offset": 28, "next": [], "symbols": [{"name": "scePFontSetFontMatrix", "hash": "4b560c2a3eabb22a18811429072d9117d5c477c0", "variant": 1622213664, "library": "libpfont"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceVu0CopyVector"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 612631328}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 3753836544}, "child": {"skip": 8, "offset": 28, "next": [], "symbols": [{"name": "scePFontSetLocate", "hash": "2236da5df6f73e426855b3293cfd6f82c9906194", "variant": 2213285300, "library": "libpfont"}]}}], "symbols": []}}, {"match": {"value": 612631312}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 3753836544}, "child": {"skip": 8, "offset": 28, "next": [], "symbols": [{"name": "scePFontSetColor", "hash": "036664bdb4a2ed8f66b8247f0cb8537e23c09ab0", "variant": 2213285300, "library": "libpfont"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceMcCoreGetCardSpec"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 12, "offset": 28, "next": [], "symbols": [{"name": "_sceMcpGetCardSpec", "hash": "7ba17f652620d1a8770717ffc05543c774ba24f8", "variant": 819107923, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceMcCoreCheckNewCard"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 12, "offset": 28, "next": [], "symbols": [{"name": "_sceMcpCheckNewCard", "hash": "7ba17f652620d1a8770717ffc05543c774ba24f8", "variant": 1607521051, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceMcpReadUserClustOnCache"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 12, "offset": 28, "next": [], "symbols": [{"name": "_sceMcpReadUserClust", "hash": "7ba17f652620d1a8770717ffc05543c774ba24f8", "variant": 1653194162, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceMcpWriteUserClustOnCache"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 12, "offset": 28, "next": [], "symbols": [{"name": "_sceMcpWriteUserClust", "hash": "7ba17f652620d1a8770717ffc05543c774ba24f8", "variant": 3622655757, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceNetcnfifInit"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 20, "offset": 36, "next": [{"match": {"value": 604373092}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 3753836544}, "child": {"skip": 8, "offset": 52, "next": [], "symbols": [{"name": "sceNetcnfifGetAddr", "hash": "aa1028401e545d7b5062af104bf5de8bdf29ea57", "variant": 3233869157, "library": "netcnfif"}]}}], "symbols": []}}, {"match": {"value": 604373094}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 3753836544}, "child": {"skip": 8, "offset": 52, "next": [], "symbols": [{"name": "sceNetcnfifFreeWorkarea", "hash": "58de88511867c226308597f1b204c5bb2ebd1ff7", "variant": 3233869157, "library": "netcnfif"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceSifDmaStat"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 20, "offset": 36, "next": [], "symbols": [{"name": "sceNetcnfifDmaCheck", "hash": "1383e3c487843c7935fdf98ccacc046f11a8b34f", "variant": 142539695, "library": "netcnfif"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "smap_set_media"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2357460992}, "child": {"skip": 16, "offset": 32, "next": [], "symbols": [{"name": "smap_media_chg", "hash": "aec64e1fdf9b552a6d1bef660faf6cbd4db3d733", "variant": 2230373267, "library": "ent_smap"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceEENetNtohl"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 604307466}, "child": {"skip": 176, "offset": 200, "next": [], "symbols": [{"name": "__sceEENetintoa", "hash": "74c63fd768ef2d12549ee854d5bf3c0485445ea0", "variant": 3614907177, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 3753836544}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 28, "next": [], "symbols": [{"name": "sceNetGlueNtohl", "hash": "7ba17f652620d1a8770717ffc05543c774ba24f8", "variant": 2367824883, "library": "netglue_eenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "m_copym0"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 16429}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 3753836544}, "child": {"skip": 8, "offset": 28, "next": [], "symbols": [{"name": "sceEENetMCopym", "hash": "e42893914e3fe33789b75ad07b93d1cefcb84f0a", "variant": 653107410, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 604504065}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 3753836544}, "child": {"skip": 8, "offset": 28, "next": [], "symbols": [{"name": "sceEENetMDup", "hash": "d46fcf192006027b6d884174312f53d43003fa9b", "variant": 653107410, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__sceEENetspllock"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4202541}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2355232768, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 20, "offset": 48, "next": [], "symbols": [{"name": "arp_unlock", "hash": "035bb7700ee2e0421e89c3248b8afdc8578f3618", "variant": 449926267, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 3753836544}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4202541}, "child": {"skip": 12, "offset": 40, "next": [], "symbols": [{"name": "ipq_unlock", "hash": "b)PS2SDB", 8192}, + std::string_view{R"PS2SDB(fe56290e7adbfd76ebce095f98e5073e8a46bb6", "variant": 262556794, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4202541}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 80, "offset": 104, "next": [], "symbols": [{"name": "__sceEENetigmp_slowtimo", "hash": "821871914c6d5b7e680818079f50a1f9d7592ea1", "variant": 2318088115, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "GetThreadId"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 12, "offset": 28, "next": [{"match": {"value": 608305164}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 16, "offset": 52, "next": [], "symbols": [{"name": "__sceEENetThreadErrno", "hash": "19cd92b2a062c2a6073f2a528fc25c9c7cf66a1a", "variant": 1876586475, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 608305168}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 16, "offset": 52, "next": [], "symbols": [{"name": "__sceEENetThreadHErrno", "hash": "e4014f51a9d6775acfb4d744d851ecda3b74a3af", "variant": 1876586475, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "eenet_add_driver_list"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 24, "offset": 40, "next": [], "symbols": [{"name": "sceEENetRegDriver", "hash": "f34ad6e134d0a40f2a83c521575dde6b325ba3e3", "variant": 3105607094, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "inet_pton4"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 12333}, "child": {"skip": 12, "offset": 28, "next": [], "symbols": [{"name": "sceEENetInetAton", "hash": "e1e028210078668942189d5d8a2c4d8d4b00a4fa", "variant": 3704066985, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "ns_name_compress"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 12, "offset": 28, "next": [], "symbols": [{"name": "__sceEENetdn_comp", "hash": "7ba17f652620d1a8770717ffc05543c774ba24f8", "variant": 254710817, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "cleanup_response"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 604307457}, "child": {"skip": 12, "offset": 28, "next": [], "symbols": [{"name": "sceHTTPCleanUpResponse", "hash": "08397092e90b239e1fbd8a8f4ca9ec0e1e0cefb4", "variant": 2557929729, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceHTTPLibReleaseDateTimer"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 68, "offset": 84, "next": [], "symbols": [{"name": "sceHTTPTerminate", "hash": "a6839aa334db21e6aafb2cfd534b17eae8c333f8", "variant": 3977181793, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "lock_terminate"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 16, "offset": 32, "next": [], "symbols": [{"name": "lmalloc_terminate", "hash": "ddd8e32f9e36739a53671a300121ec6445eb7bd6", "variant": 657366568, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "R_malloc"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 604241944}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4200493}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 341835785}, "child": {"skip": 76, "offset": 100, "next": [], "symbols": [{"name": "ASN1_OBJECT_new", "hash": "3ea9402ca37b4c4aa3f1ca2eeafc7c4c2b5bf417", "variant": 2452542604, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 4202541}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 343932937}, "child": {"skip": 72, "offset": 96, "next": [], "symbols": [{"name": "EVP_PKEY_new", "hash": "efc831f0b020d7c844ab193e099d639ff17c8675", "variant": 2452542604, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604241940}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4200493}, "child": {"skip": 48, "offset": 68, "next": [], "symbols": [{"name": "BN_new", "hash": "fb401142d43f384ab2fafd0cb57536e5a8dcace6", "variant": 1061999970, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604241932}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4200493}, "child": {"skip": 64, "offset": 84, "next": [], "symbols": [{"name": "BUF_MEM_new", "hash": "ed8cf0abba528ace7f795c225de6ef89041a5fc8", "variant": 2452542604, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604241972}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4200493}, "child": {"skip": 68, "offset": 88, "next": [], "symbols": [{"name": "DSA_new_internal", "hash": "c0d8f3c754f191d62ae526ef44b4da85added981", "variant": 1061999970, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604241936}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4202541}, "child": {"skip": 52, "offset": 72, "next": [], "symbols": [{"name": "PK_CTX_new", "hash": "96fb071f0215d6ad59ecdab4de8318c26a01afb1", "variant": 538666319, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "d2i_ASN1_type_bytes"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 604438530}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 3753836544}, "child": {"skip": 8, "offset": 28, "next": [], "symbols": [{"name": "d2i_ASN1_PRINTABLESTRING", "hash": "fc7b3a26f6054651ad41de772f083d23ea4811c0", "variant": 551342453, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604445974}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 3753836544}, "child": {"skip": 8, "offset": 28, "next": [], "symbols": [{"name": "d2i_ASN1_PRINTABLE", "hash": "30876ef80bb8cb92bad47880f625918b0a70d717", "variant": 551342453, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "ASN1_STRING_type_new"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 604241924}, "child": {"skip": 12, "offset": 28, "next": [], "symbols": [{"name": "ASN1_STRING_new", "hash": "c0d632a94dec466de4b9887bbd4b3d888216a50e", "variant": 1822064618, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "BIO_s_mem"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 20, "offset": 36, "next": [], "symbols": [{"name": "BIO_new_mem", "hash": "7957a2269426b9dbfcbd66302afe468ba97be039", "variant": 1406320, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sslcert_set_clear"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 920, "offset": 936, "next": [], "symbols": [{"name": "SSLCERT_normal_setup", "hash": "e6c5d8939702a6e106852b43ad22409d566af4b1", "variant": 3586009494, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "R_rand_get_default"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 24, "offset": 40, "next": [], "symbols": [{"name": "crypto_sslc_random_ctx_final", "hash": "8ae5fa92c9c4fb68761c1589df5c6346cea0857e", "variant": 3462718)PS2SDB", 8192}, + std::string_view{R"PS2SDB(61, "library": "libhttps"}, {"name": "R_rand_lib_cleanup", "hash": "8ae5fa92c9c4fb68761c1589df5c6346cea0857e", "variant": 346271861, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "get_common_global"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": "DSA_new_internal"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "DSA_free_internal"}}, "child": {"skip": 56, "offset": 80, "next": [], "symbols": [{"name": "DSA_enable_default_method", "hash": "afa57423c271716be8b61bee4eabe1b352cf4a42", "variant": 132803328, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2353135648}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 339738632}, "child": {"skip": 52, "offset": 76, "next": [], "symbols": [{"name": "DSA_new", "hash": "43f6a75f8e513a5658d854f3e0e85a9c36cdbd21", "variant": 684713287, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "DSA_enable_default_method"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 76, "offset": 92, "next": [], "symbols": [{"name": "SSL_enable_DSA", "hash": "b5f267e3968c7f82774f9bdcd04265b1eb2526ea", "variant": 2692961631, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "ERR_get_state"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 20, "offset": 36, "next": [], "symbols": [{"name": "ERR_clear_error", "hash": "735ddd8f342ac149c1fd3536579151a492b52fe6", "variant": 1639827404, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "OBJ_NAME_get"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 604307458}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 3753836544}, "child": {"skip": 8, "offset": 28, "next": [], "symbols": [{"name": "EVP_OBJ_get_cipherbyname", "hash": "e1871bd358342321a6d4d08dfca8a22d5764ed1b", "variant": 3991729972, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604307457}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 3753836544}, "child": {"skip": 8, "offset": 28, "next": [], "symbols": [{"name": "EVP_OBJ_get_digestbyname", "hash": "08397092e90b239e1fbd8a8f4ca9ec0e1e0cefb4", "variant": 3991729972, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "OBJ_NAME_cleanup"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 604241922}, "child": {"skip": 16, "offset": 32, "next": [], "symbols": [{"name": "EVP_OBJ_cleanup", "hash": "5248996437ec7881bfe738b51a99e1ec4a6e605d", "variant": 1696613094, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "OBJ_NAME_remove"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 872775682}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 3753836544}, "child": {"skip": 8, "offset": 28, "next": [], "symbols": [{"name": "EVP_OBJ_delete_cipher_alias", "hash": "e4f9eebc82a8ce733d00abcac4efc199eadec855", "variant": 1465778461, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 872775681}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 3753836544}, "child": {"skip": 8, "offset": 28, "next": [], "symbols": [{"name": "EVP_OBJ_delete_digest_alias", "hash": "d931cda97e19ee28fd90df06ba44b5a159421dd3", "variant": 1465778461, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "OBJ_nid2sn"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "EVP_OBJ_get_digestbyname"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4202541}, "child": {"skip": 12, "offset": 36, "next": [], "symbols": [{"name": "EVP_OBJ_get_digestbynid", "hash": "7957a2269426b9dbfcbd66302afe468ba97be039", "variant": 3182500119, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "EVP_OBJ_get_cipherbyname"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4202541}, "child": {"skip": 12, "offset": 36, "next": [], "symbols": [{"name": "EVP_OBJ_get_cipherbynid", "hash": "7957a2269426b9dbfcbd66302afe468ba97be039", "variant": 605061320, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "OBJ_obj2nid"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "EVP_OBJ_get_digestbynid"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4202541}, "child": {"skip": 12, "offset": 36, "next": [], "symbols": [{"name": "EVP_OBJ_get_digestbyobj", "hash": "7957a2269426b9dbfcbd66302afe468ba97be039", "variant": 3815315868, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "EVP_OBJ_get_cipherbynid"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4202541}, "child": {"skip": 12, "offset": 36, "next": [], "symbols": [{"name": "EVP_OBJ_get_cipherbyobj", "hash": "7957a2269426b9dbfcbd66302afe468ba97be039", "variant": 1268874399, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 4202541}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 604176383}, "child": {"skip": 28, "offset": 52, "next": [], "symbols": [{"name": "X509v3_data_type_by_OBJ", "hash": "37c2386fef9eddfdc5e85da3b634b00f2ea753a6", "variant": 4148897456, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 339738627}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 0}, "child": {"skip": 28, "offset": 52, "next": [], "symbols": [{"name": "X509v3_pack_type_by_OBJ", "hash": "f44da2edafb76fe6fa4327db19ae84ed33a75b9b", "variant": 4236092451, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "EVP_PKEY_type"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2357460992}, "child": {"skip": 12, "offset": 28, "next": [], "symbols": [{"name": "EVP_PKEY_key_type", "hash": "d98051065fa439640f18069be52b0c0b737170c7", "variant": 912138303, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "R_mtime_set"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 64, "offset": 80, "next": [], "symbols": [{"name": "R_mtime_set_all", "hash": "5b68b9305cae7ea6a39c3d085d6a38b45ff445a9", "variant": 3964993598, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "get_sslc_global"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 40, "offset": 56, "next": [], "symbols": [{"name": "ssl23_data_init", "hash": "6935a38acd9b08484af2004d9d5184ac9cbba2fa", "variant": 1829721288, "library": "libhttps"}, {"name": "ssl2_data_init", "hash": "6935a38acd9b08484af2004d9d5184ac9cbba2fa", "variant": 1829721288, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "ssl23_data_init"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 20, "offset": 36, "next": [], "symbols": [{"name": "sslv23_base_method", "hash": "bc1f7376e7700120eb2754ae75d34ab3bf794f40", )PS2SDB", 8192}, + std::string_view{R"PS2SDB("variant": 3213602689, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "ssl2_data_init"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 20, "offset": 36, "next": [], "symbols": [{"name": "sslv2_base_method", "hash": "bc1f7376e7700120eb2754ae75d34ab3bf794f40", "variant": 3450779687, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "SSL_feature_reset"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 64, "offset": 80, "next": [], "symbols": [{"name": "SSL_library_init", "hash": "349a5dbfdfc1f06fde42f5ee24dbb722a64a3ce4", "variant": 1343131102, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "EVP_OBJ_cleanup"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 80, "offset": 96, "next": [], "symbols": [{"name": "SSL_library_cleanup", "hash": "566dc93fb74c06b5f2bfc287a7312dd96d8ec4d1", "variant": 79618033, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "ssl_clear_internal"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10285}, "child": {"skip": 12, "offset": 28, "next": [], "symbols": [{"name": "SSL_clear", "hash": "2f097ddf7926df8f91a0f5ba1da34acb2262515c", "variant": 457914917, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "des_set_key"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 12, "offset": 28, "next": [], "symbols": [{"name": "des_key_sched", "hash": "7ba17f652620d1a8770717ffc05543c774ba24f8", "variant": 318349150, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "CRYPTO_set_ex_data"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 612630716}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 3753836544}, "child": {"skip": 8, "offset": 28, "next": [], "symbols": [{"name": "SSL_SESSION_set_ex_data", "hash": "c1a60e6920f7996d03bde57b101b7292302e1c6b", "variant": 4181928856, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 612630572}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 3753836544}, "child": {"skip": 8, "offset": 28, "next": [], "symbols": [{"name": "X509_STORE_CTX_set_ex_data", "hash": "86612f75408df20caad374591408759825e95b49", "variant": 4181928856, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "CRYPTO_get_ex_data"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 612630716}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 3753836544}, "child": {"skip": 8, "offset": 28, "next": [], "symbols": [{"name": "SSL_SESSION_get_ex_data", "hash": "c1a60e6920f7996d03bde57b101b7292302e1c6b", "variant": 3882654929, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 612630572}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 3753836544}, "child": {"skip": 8, "offset": 28, "next": [], "symbols": [{"name": "X509_STORE_CTX_get_ex_data", "hash": "86612f75408df20caad374591408759825e95b49", "variant": 3882654929, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "EVP_PKEY_new"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 12, "offset": 28, "next": [], "symbols": [{"name": "SSL_EVP_PKEY_new", "hash": "7ba17f652620d1a8770717ffc05543c774ba24f8", "variant": 1000495025, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "EVP_PKEY_assign"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 12, "offset": 28, "next": [], "symbols": [{"name": "SSL_EVP_PKEY_assign", "hash": "7ba17f652620d1a8770717ffc05543c774ba24f8", "variant": 2698723945, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "EVP_PKEY_key_type"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 12, "offset": 28, "next": [], "symbols": [{"name": "SSL_EVP_PKEY_key_type", "hash": "7ba17f652620d1a8770717ffc05543c774ba24f8", "variant": 1042430127, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sk_insert"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 12333}, "child": {"skip": 12, "offset": 28, "next": [], "symbols": [{"name": "sk_unshift", "hash": "e1e028210078668942189d5d8a2c4d8d4b00a4fa", "variant": 1304385815, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "X509_get_notBefore"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 16, "offset": 32, "next": [], "symbols": [{"name": "X509_get_notBefore_str", "hash": "2db5c07efe1b6b9df9c55eb6bcaf64dcc054f0bf", "variant": 1709017606, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "X509_get_notAfter"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 16, "offset": 32, "next": [], "symbols": [{"name": "X509_get_notAfter_str", "hash": "2db5c07efe1b6b9df9c55eb6bcaf64dcc054f0bf", "variant": 3529636529, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "X509_get_pubkey"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 20, "offset": 36, "next": [], "symbols": [{"name": "X509_get_pubkey_bits", "hash": "7957a2269426b9dbfcbd66302afe468ba97be039", "variant": 3352192693, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "find_by_nid"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 4, "offset": 20, "next": [{"match": {"value": 2353135620}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 604176383}, "child": {"skip": 12, "offset": 40, "next": [], "symbols": [{"name": "X509v3_data_type_by_NID", "hash": "4d2c9b91abf0c2e753ddfdc1c4320aaeb03f8b15", "variant": 4050741955, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2353135624}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 604110849}, "child": {"skip": 12, "offset": 40, "next": [], "symbols": [{"name": "X509v3_pack_type_by_NID", "hash": "9df0485c0fba6fd33d8c1953220b41549d837513", "variant": 4050741955, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__sceEENetThreadErrno"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 144, "offset": 160, "next": [], "symbols": [{"name": "__sceNetGlueErrnoLoc", "hash": "6bd63bada8cfcdaf526a7c3487c5452035cfea46", "variant": 1801896493, "library": "netglue_eenet"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__sceEENetThreadHErrno"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 12, "offset": 28, "next": [], "symbols": [{"name": "__sceNetGlueHErrnoLoc", "hash": "7ba17f652620d1a8770717ffc05543c774ba24f8", "variant": 2715754759, "library": "netglue_eenet"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceEENetThreadAbort"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 12, "offset": 28, "next": [], "symbols": [{"name": "sceNetGlueAbortResolver", "hash": "7ba17f652620d1a8770717ffc05543c774ba24f8", "variant": 4292246985, "l)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ibrary": "netglue_eenet"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceEENetFreeThreadinfo"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 16, "offset": 32, "next": [], "symbols": [{"name": "sceNetGlueThreadTerminate", "hash": "ddd8e32f9e36739a53671a300121ec6445eb7bd6", "variant": 2552967836, "library": "netglue_eenet"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceEENetGethostbyaddr"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 12, "offset": 28, "next": [], "symbols": [{"name": "sceNetGlueGethostbyaddr", "hash": "7ba17f652620d1a8770717ffc05543c774ba24f8", "variant": 3039553635, "library": "netglue_eenet"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceEENetGethostbyname"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 12, "offset": 28, "next": [], "symbols": [{"name": "sceNetGlueGethostbyname", "hash": "7ba17f652620d1a8770717ffc05543c774ba24f8", "variant": 3113354320, "library": "netglue_eenet"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceEENetInetAddr"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 12, "offset": 28, "next": [], "symbols": [{"name": "sceNetGlueInetAddr", "hash": "7ba17f652620d1a8770717ffc05543c774ba24f8", "variant": 1291197251, "library": "netglue_eenet"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceEENetInetAton"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 12, "offset": 28, "next": [], "symbols": [{"name": "sceNetGlueInetAton", "hash": "7ba17f652620d1a8770717ffc05543c774ba24f8", "variant": 2804235703, "library": "netglue_eenet"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceEENetInetNetwork"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 12, "offset": 28, "next": [], "symbols": [{"name": "sceNetGlueInetNetwork", "hash": "7ba17f652620d1a8770717ffc05543c774ba24f8", "variant": 2663226673, "library": "netglue_eenet"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceEENetHtonl"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 12, "offset": 28, "next": [], "symbols": [{"name": "sceNetGlueHtonl", "hash": "7ba17f652620d1a8770717ffc05543c774ba24f8", "variant": 1412985301, "library": "netglue_eenet"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceEENetHtons"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 814022655}, "child": {"skip": 12, "offset": 28, "next": [], "symbols": [{"name": "sceNetGlueHtons", "hash": "d585bbb471c771a740b98e8ec5bd4ae524787f67", "variant": 3643833376, "library": "netglue_eenet"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceEENetNtohs"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 814022655}, "child": {"skip": 12, "offset": 28, "next": [], "symbols": [{"name": "sceNetGlueNtohs", "hash": "d585bbb471c771a740b98e8ec5bd4ae524787f67", "variant": 2764294, "library": "netglue_eenet"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceEENetAccept"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 12, "offset": 28, "next": [], "symbols": [{"name": "sceNetGlueAccept", "hash": "7ba17f652620d1a8770717ffc05543c774ba24f8", "variant": 649876444, "library": "netglue_eenet"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceEENetBind"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 12, "offset": 28, "next": [], "symbols": [{"name": "sceNetGlueBind", "hash": "7ba17f652620d1a8770717ffc05543c774ba24f8", "variant": 1807844516, "library": "netglue_eenet"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceEENetConnect"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 12, "offset": 28, "next": [], "symbols": [{"name": "sceNetGlueConnect", "hash": "7ba17f652620d1a8770717ffc05543c774ba24f8", "variant": 3666546667, "library": "netglue_eenet"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceEENetGetpeername"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 12, "offset": 28, "next": [], "symbols": [{"name": "sceNetGlueGetpeername", "hash": "7ba17f652620d1a8770717ffc05543c774ba24f8", "variant": 1145936712, "library": "netglue_eenet"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceEENetGetsockname"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 12, "offset": 28, "next": [], "symbols": [{"name": "sceNetGlueGetsockname", "hash": "7ba17f652620d1a8770717ffc05543c774ba24f8", "variant": 3575371019, "library": "netglue_eenet"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceEENetGetsockopt"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 12, "offset": 28, "next": [], "symbols": [{"name": "sceNetGlueGetsockopt", "hash": "7ba17f652620d1a8770717ffc05543c774ba24f8", "variant": 1116634758, "library": "netglue_eenet"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceEENetListen"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 12, "offset": 28, "next": [], "symbols": [{"name": "sceNetGlueListen", "hash": "7ba17f652620d1a8770717ffc05543c774ba24f8", "variant": 1471731989, "library": "netglue_eenet"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceEENetRecv"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 12, "offset": 28, "next": [], "symbols": [{"name": "sceNetGlueRecv", "hash": "7ba17f652620d1a8770717ffc05543c774ba24f8", "variant": 1960125786, "library": "netglue_eenet"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceEENetRecvfrom"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 12, "offset": 28, "next": [], "symbols": [{"name": "sceNetGlueRecvfrom", "hash": "7ba17f652620d1a8770717ffc05543c774ba24f8", "variant": 2282442434, "library": "netglue_eenet"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceEENetSend"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 12, "offset": 28, "next": [], "symbols": [{"name": "sceNetGlueSend", "hash": "7ba17f652620d1a8770717ffc05543c774ba24f8", "variant": 2323533114, "library": "netglue_eenet"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceEENetSendto"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 12, "offset": 28, "next": [], "symbols": [{"name": "sceNetGlueSendto", "hash": "7ba17f652620d1a8770717ffc05543c774ba24f8", "variant": 4198743022, "library": "netglue_eenet"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceEENetSetsockopt"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 12, "offset": 28, "next": [], "symbols": [{"name": "sceNetGlueSetsockopt", "hash": "7ba17f652620d1a8770717ffc05543c774ba24f8", "variant": 1825267476, "library": "netglue_eenet"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceEENetSocket"}}, "child": {"skip": 0, "offset": 12)PS2SDB", 8192}, + std::string_view{R"PS2SDB(, "next": [{"match": {"value": 0}, "child": {"skip": 12, "offset": 28, "next": [], "symbols": [{"name": "sceNetGlueSocket", "hash": "7ba17f652620d1a8770717ffc05543c774ba24f8", "variant": 2423903827, "library": "netglue_eenet"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "WaitInterface"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 604504097}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 3753836544}, "child": {"skip": 8, "offset": 28, "next": [], "symbols": [{"name": "WaitInterfaceAttached", "hash": "53140fa569e39d97c5a32a7a864ef8f30bcacf61", "variant": 451696456, "library": "libnet"}]}}], "symbols": []}}, {"match": {"value": 604504098}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 3753836544}, "child": {"skip": 8, "offset": 28, "next": [], "symbols": [{"name": "WaitInterfaceStarted", "hash": "e2bf4b6f3c8e33b416c825a2c539cb1e931afed1", "variant": 451696456, "library": "libnet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2359427072}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 608501759}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 746782733}, "child": {"skip": 204, "offset": 224, "next": [], "symbols": [{"name": "_sdrCB", "hash": "99d3b7ffc284a29ee098f5223eb31e50b9021dbf", "variant": 2273566984, "library": "libsdr"}]}}], "symbols": []}}, {"match": {"value": 339738628}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 0}, "child": {"skip": 48, "offset": 68, "next": [], "symbols": [{"name": "scePFontAttachData", "hash": "75d8072987fa97e5f9c6093a6981936ace6c33c1", "variant": 3813665118, "library": "libpfont"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 3753836544}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "__ieee754_log10f"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 20, "next": [], "symbols": [{"name": "log10f", "hash": "c0a5a6b6b96e3534f1ce618782a40e20574c6678", "variant": 3706463850, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "__ieee754_log"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 20, "next": [], "symbols": [{"name": "log", "hash": "c0a5a6b6b96e3534f1ce618782a40e20574c6678", "variant": 3435277128, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "__ieee754_acosf"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 20, "next": [], "symbols": [{"name": "acosf", "hash": "c0a5a6b6b96e3534f1ce618782a40e20574c6678", "variant": 3377669785, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "__ieee754_asinf"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 20, "next": [], "symbols": [{"name": "asinf", "hash": "c0a5a6b6b96e3534f1ce618782a40e20574c6678", "variant": 1655398824, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "__ieee754_atan2f"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 20, "next": [], "symbols": [{"name": "atan2f", "hash": "c0a5a6b6b96e3534f1ce618782a40e20574c6678", "variant": 134203380, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "__ieee754_logf"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 20, "next": [], "symbols": [{"name": "logf", "hash": "c0a5a6b6b96e3534f1ce618782a40e20574c6678", "variant": 236462185, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "__ieee754_powf"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 20, "next": [], "symbols": [{"name": "powf", "hash": "c0a5a6b6b96e3534f1ce618782a40e20574c6678", "variant": 1578490399, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "__ieee754_sqrtf"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 20, "next": [], "symbols": [{"name": "sqrtf", "hash": "c0a5a6b6b96e3534f1ce618782a40e20574c6678", "variant": 1927076747, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "__ieee754_sqrt"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 20, "next": [], "symbols": [{"name": "sqrt", "hash": "c0a5a6b6b96e3534f1ce618782a40e20574c6678", "variant": 3570826886, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "__ieee754_fmodf"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 20, "next": [], "symbols": [{"name": "fmodf", "hash": "c0a5a6b6b96e3534f1ce618782a40e20574c6678", "variant": 2653882668, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "__ieee754_acos"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 20, "next": [], "symbols": [{"name": "acos", "hash": "c0a5a6b6b96e3534f1ce618782a40e20574c6678", "variant": 1349283635, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "__ieee754_expf"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 20, "next": [], "symbols": [{"name": "expf", "hash": "c0a5a6b6b96e3534f1ce618782a40e20574c6678", "variant": 1878679168, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "__ieee754_atan2"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 20, "next": [], "symbols": [{"name": "atan2", "hash": "c0a5a6b6b96e3534f1ce618782a40e20574c6678", "variant": 2640944452, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "__ieee754_fmod"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 20, "next": [], "symbols": [{"name": "fmod", "hash": "c0a5a6b6b96e3534f1ce618782a40e20574c6678", "variant": 1157037895, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "__ieee754_pow"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 20, "next": [], "symbols": [{"name": "pow", "hash": "c0a5a6b6b96e3534f1ce618782a40e20574c6678", "variant": 3293143352, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "__ieee754_asin"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 20, "next": [], "symbols": [{"name": "asin", "hash": "c0a5a6b6b96e3534f1ce618782a40e20574c6678", "variant": 2031486748, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "__ieee754_log10"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 20, "next": [], "symbols": [{"name": "log10", "hash": "c0a5a6b6b96e3534f1ce618782a40e20574c6678", "variant": 893506926, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "__ieee754_hypot"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 666697744}, "chi)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ld": {"skip": 0, "offset": 20, "next": [], "symbols": [{"name": "hypot", "hash": "c0a5a6b6b96e3534f1ce618782a40e20574c6678", "variant": 4182981451, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "__ieee754_exp"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 20, "next": [], "symbols": [{"name": "exp", "hash": "c0a5a6b6b96e3534f1ce618782a40e20574c6678", "variant": 1162023318, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "__ieee754_coshf"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 20, "next": [], "symbols": [{"name": "coshf", "hash": "c0a5a6b6b96e3534f1ce618782a40e20574c6678", "variant": 1162828751, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "abort"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 20, "next": [], "symbols": [{"name": "__default_terminate", "hash": "c0a5a6b6b96e3534f1ce618782a40e20574c6678", "variant": 1645844388, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "strchr"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 20, "next": [], "symbols": [{"name": "index", "hash": "c0a5a6b6b96e3534f1ce618782a40e20574c6678", "variant": 3824767141, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "getpid"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 20, "next": [], "symbols": [{"name": "_getpid_r", "hash": "c0a5a6b6b96e3534f1ce618782a40e20574c6678", "variant": 1452106571, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "strcmp"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 20, "next": [], "symbols": [{"name": "strcoll", "hash": "c0a5a6b6b96e3534f1ce618782a40e20574c6678", "variant": 1887487436, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "memcmp"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 20, "next": [], "symbols": [{"name": "bcmp", "hash": "c0a5a6b6b96e3534f1ce618782a40e20574c6678", "variant": 480665564, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "__svfscanf_r"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 20, "next": [], "symbols": [{"name": "_vfscanf_r", "hash": "c0a5a6b6b96e3534f1ce618782a40e20574c6678", "variant": 2896000941, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "_sceMcCoreGetCardSpec"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 20, "next": [], "symbols": [{"name": "_sceMcpGetCardSpec", "hash": "c0a5a6b6b96e3534f1ce618782a40e20574c6678", "variant": 1368650518, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "_sceMcCoreCheckNewCard"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 20, "next": [], "symbols": [{"name": "_sceMcpCheckNewCard", "hash": "c0a5a6b6b96e3534f1ce618782a40e20574c6678", "variant": 1493641071, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "_sceMcpReadUserClustOnCache"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 20, "next": [], "symbols": [{"name": "_sceMcpReadUserClust", "hash": "c0a5a6b6b96e3534f1ce618782a40e20574c6678", "variant": 3108241022, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "_sceMcpWriteUserClustOnCache"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 20, "next": [], "symbols": [{"name": "_sceMcpWriteUserClust", "hash": "c0a5a6b6b96e3534f1ce618782a40e20574c6678", "variant": 1172575189, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 3699638280}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "dpcmp"}}, "child": {"skip": 20, "offset": 36, "next": [], "symbols": [{"name": "matherr", "hash": "00bef6e83b05e731f9e5275c46703dd996a18abb", "variant": 2479141923, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 2357460992}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "strcmp"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2359623680}, "child": {"skip": 16, "offset": 36, "next": [], "symbols": [{"name": "before__C9type_infoRC9type_info", "hash": "7c28b4c9e326ff74944516dfa09975b6e5dd5f82", "variant": 3606564472, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "SSLCERT_NAME_cmp"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2359623680}, "child": {"skip": 12, "offset": 32, "next": [], "symbols": [{"name": "ca_dn_cmp", "hash": "35b1ac6d4319400d3ba6ac9302792958ddbbbd44", "variant": 1645009104, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 3699507200}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 809664511}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 141372}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 337983}, "child": {"skip": 60, "offset": 88, "next": [], "symbols": [{"name": "sceHiGsEnvRegist", "hash": "20ac027a9243bd14447d3ecd610d63642a3d99f5", "variant": 3970452655, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 135228}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 135231}, "child": {"skip": 8, "offset": 36, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_SyncAddrQwsize"}}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 608501761}, "child": {"skip": 16, "offset": 60, "next": [], "symbols": [{"name": "sceHiGsEnvFcache", "hash": "74fe126f88fe1e149a192a1a68e02b57fb4e2d41", "variant": 108526595, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_iSyncAddrQwsize"}}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 608501761}, "child": {"skip": 16, "offset": 60, "next": [], "symbols": [{"name": "sceHiGsEnvFcacheI", "hash": "74fe126f88fe1e149a192a1a68e02b57fb4e2d41", "variant": 1847296636, "library": "libhig"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2359623680}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2357592076}, "child": {"skip": 40, "offset": 60, "next": [], "symbols": [{"name": "obj_cmp", "hash": "69ee4df65f9fd6e9e507d0e556c096a8d859d2a3", "variant": 2716251375, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2223308814}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_close_r"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2357461076}, "child": {"skip": 12, "offset": 32, "next": [], "symbols": [{"name": "__sclose", "hash": "8b6fe9aff1f135c351d80686ad2420e354deaa0c", "variant": 337086221, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 3753836544}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2357461076}, "child": {"skip)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": 8, "offset": 28, "next": [], "symbols": [{"name": "__sclose", "hash": "c8da0af83106bd7e658ad384491b58d1b4adf758", "variant": 1107076439, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2359427080}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 608436223}, "child": {"skip": 116, "offset": 132, "next": [], "symbols": [{"name": "fputc", "hash": "46deab7c66f45946b478e2cb4b9de7657eda2ce0", "variant": 2830780424, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 2357329924}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "X509v3_get_ext_count"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2353266724}, "child": {"skip": 12, "offset": 32, "next": [], "symbols": [{"name": "X509_get_ext_count", "hash": "6b01c763666bef35919761e3120be2abe0cffdfb", "variant": 3466241592, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "ASN1_INTEGER_get"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2353266688}, "child": {"skip": 12, "offset": 32, "next": [], "symbols": [{"name": "X509_get_version", "hash": "d30c42d9aa9e348534632a67c12038a9b7f3ed30", "variant": 704119295, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 608370687}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 71368709}, "child": {"skip": 48, "offset": 68, "next": [], "symbols": [{"name": "fgetc", "hash": "2a91e968e89bee18d1c2c3e9ce0990a05aff0e38", "variant": 3924247599, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 2359492612}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2353266708}, "child": {"skip": 20, "offset": 40, "next": [], "symbols": [{"name": "X509_subject_name_cmp", "hash": "f99ce4162711f95259c347933c1a6e524c1abcb6", "variant": 3224190311, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2357461056}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceIpuStopDMA"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 612630604}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 3753836544}, "child": {"skip": 12, "offset": 36, "next": [], "symbols": [{"name": "_defStopDMA", "hash": "4ef006291ba8fb6806e356bb3c79bd8cd95e646e", "variant": 3811778609, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 612630632}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 3753836544}, "child": {"skip": 12, "offset": 36, "next": [], "symbols": [{"name": "_defStopDMA", "hash": "bf1f90d4a7b06ee0e06e4a73586f5c34d7bdface", "variant": 3811778609, "library": "libmpeg"}, {"name": "_sceMpegDefaultStopDMA", "hash": "bf1f90d4a7b06ee0e06e4a73586f5c34d7bdface", "variant": 3811778609, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceIpuRestartDMA"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 612630604}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 3753836544}, "child": {"skip": 12, "offset": 36, "next": [], "symbols": [{"name": "_defRestartDMA", "hash": "4ef006291ba8fb6806e356bb3c79bd8cd95e646e", "variant": 4226087050, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 612630632}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 3753836544}, "child": {"skip": 12, "offset": 36, "next": [], "symbols": [{"name": "_defRestartDMA", "hash": "bf1f90d4a7b06ee0e06e4a73586f5c34d7bdface", "variant": 4226087050, "library": "libmpeg"}, {"name": "_sceMpegDefaultRestartDMA", "hash": "bf1f90d4a7b06ee0e06e4a73586f5c34d7bdface", "variant": 4226087050, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2424439014}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 272629777}, "child": {"skip": 80, "offset": 96, "next": [], "symbols": [{"name": "sceHiGsCtxRegistClear", "hash": "d017fe6d74cef581beb02c11043172f9912fc734", "variant": 58481757, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 1006895159}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 612673504}, "child": {"skip": 48, "offset": 64, "next": [], "symbols": [{"name": "mwInit", "hash": "9d6c572fe164110a1271147790412ca1a8ec5511", "variant": 1519028204, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 1006764087}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 608447296}, "child": {"skip": 48, "offset": 64, "next": [], "symbols": [{"name": "mwInit", "hash": "aadcfda2a9790ea7d578c1c85a070ae918051f3a", "variant": 1519028204, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 1006764085}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 608463296}, "child": {"skip": 48, "offset": 64, "next": [], "symbols": [{"name": "mwInit", "hash": "b742de05adc200b4e3b915e61d146cbb4f31e846", "variant": 1519028204, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 1006895161}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 612631072}, "child": {"skip": 48, "offset": 64, "next": [], "symbols": [{"name": "mwInit", "hash": "6f0e2a733096caf7c1ca1e8c3106609d283c5740", "variant": 1519028204, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 1006895126}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 612681408}, "child": {"skip": 48, "offset": 64, "next": [], "symbols": [{"name": "mwInit", "hash": "913a1e26ebe362acdffdc81445db70300007ad84", "variant": 1519028204, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 1006895137}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 612688768}, "child": {"skip": 48, "offset": 64, "next": [], "symbols": [{"name": "mwInit", "hash": "9e8e3a52b4ce2ee92f03619422d3de8105ea54af", "variant": 1519028204, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 1006764057}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 608470576}, "child": {"skip": 48, "offset": 64, "next": [], "symbols": [{"name": "mwInit", "hash": "720697bd4f681f79025965ec7abaf948f155e8a9", "variant": 1519028204, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 2357526528}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 278921224}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 0}, "child": {"skip": 40, "offset": 60, "next": [], "symbols": [{"name": "__end__catch", "hash": "33ede18bc541ee63b001c96452f335cfaa75bb07", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 278921223}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 0}, "child": {"skip": 36, "offset": 56, "next": [], "symbols": [{"name": "__end__catch", "hash": "548668da8fc178b8cec97dfbda841676aeebb777", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2357395456}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 274726918}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 0}, "child": {"skip": 8, "offset": 28, "next": [{"match": {"value": 6299693}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 12646409}, "child": {"skip": 16, "offset": 52, "next": [], "symbols": [{"name": "__end__catch", "hash": "5f8b735abbbce3f6a1ad18b0458f88177eb8005d", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 1885349416}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 12646409}, "child": {"skip": 16, "offset": 52, "next": [], "symbols": [{"name": "__end__catch", "hash": "6137d1ae67062b1df74cf9365d23adeea62f2c65", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 274726919}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 0}, "child": {"skip": 36, "offset": 56, "next": [], "symbols": [{"name": "__end__catch", "hash": "5d6dd11681ecbe70f4f24ea1)PS2SDB", 8192}, + std::string_view{R"PS2SDB(2e72397b2ba8483c", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 2359427072}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 6426659}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 339738645}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 3753836544}, "child": {"skip": 88, "offset": 116, "next": [], "symbols": [{"name": "obj_name_cmp", "hash": "13652568b4c2afdd8b7ce652823a13342c63cadf", "variant": 795316332, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 339738671}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 3753836544}, "child": {"skip": 192, "offset": 220, "next": [], "symbols": [{"name": "add_cmp", "hash": "5f180ea1f634d234671ccb4fcd3540846ca76a7b", "variant": 3839382378, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 341966856}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 604110849}, "child": {"skip": 40, "offset": 64, "next": [], "symbols": [{"name": "SSL_SESSION_cmp", "hash": "878584c2de72591cefbaecea23b748a65b27173a", "variant": 2732625808, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604241922}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "FlushCache"}}, "child": {"skip": 20, "offset": 36, "next": [], "symbols": [{"name": "mwOverlayInit", "hash": "bd90ce329ce03f41745132cc8272396b0e42cb44", "variant": 1003557630, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 2357526536}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 816050176}, "child": {"skip": 184, "offset": 200, "next": [], "symbols": [{"name": "sceGpGetNextPacket", "hash": "2f56c0e548f91e94835588edc8fd1cd9de8d1982", "variant": 642948143, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 2491547654}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10620970}, "child": {"skip": 92, "offset": 108, "next": [], "symbols": [{"name": "_Tim2_GetPictureHeader", "hash": "dec98f6d608e8b02c7f69ac70313edfeac3aa4b8", "variant": 1033827355, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 2357330832}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 339738628}, "child": {"skip": 60, "offset": 76, "next": [], "symbols": [{"name": "scePFontPutsContinue", "hash": "8db5329055a22511fb88da10a57027ecdbf41770", "variant": 3944077932, "library": "libpfont"}]}}], "symbols": []}}, {"match": {"value": 276824074}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 604166379}, "child": {"skip": 12, "offset": 28, "next": [{"match": {"value": 604307457}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 268435460}, "child": {"skip": 28, "offset": 64, "next": [], "symbols": [{"name": "sceAtokKanjiOn", "hash": "7d31a0c43398d6a5832a2d38d7e6bba905fbcec5", "variant": 3242118839, "library": "libatok"}]}}], "symbols": []}}, {"match": {"value": 604307458}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 268435460}, "child": {"skip": 28, "offset": 64, "next": [], "symbols": [{"name": "sceAtokKanjiOff", "hash": "ead3883d2226e1d127a7cb31af7c5b4dd5faca9d", "variant": 3242118839, "library": "libatok"}]}}], "symbols": []}}, {"match": {"value": 604307618}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 268435460}, "child": {"skip": 28, "offset": 64, "next": [], "symbols": [{"name": "sceAtokUndoClear", "hash": "266cb90b6739fc90d8934805816d9c7930a41f09", "variant": 3242118839, "library": "libatok"}]}}], "symbols": []}}, {"match": {"value": 604307619}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 268435460}, "child": {"skip": 28, "offset": 64, "next": [], "symbols": [{"name": "sceAtokReset", "hash": "dcd10f0cf38078d33433eb1e9b6367b89a23893d", "variant": 3242118839, "library": "libatok"}]}}], "symbols": []}}, {"match": {"value": 604307490}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 268435460}, "child": {"skip": 28, "offset": 64, "next": [], "symbols": [{"name": "sceAtokLearningLoad", "hash": "90edda2cdd93d01642a213dc788316104eeebe56", "variant": 3242118839, "library": "libatok"}]}}], "symbols": []}}, {"match": {"value": 604307491}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 268435460}, "child": {"skip": 28, "offset": 64, "next": [], "symbols": [{"name": "sceAtokLearningSave", "hash": "ff26ab25c0002b74d84f0b09c7f166e535af2ca6", "variant": 3242118839, "library": "libatok"}]}}], "symbols": []}}, {"match": {"value": 10500141}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 268435460}, "child": {"skip": 28, "offset": 64, "next": [], "symbols": [{"name": "sceAtokDefDicNo", "hash": "a99c7ca9009d903bfbbb1ca58e21f7dc61330dee", "variant": 3242118839, "library": "libatok"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2491613190}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 878903312}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2760048646}, "child": {"skip": 36, "offset": 56, "next": [], "symbols": [{"name": "__sceEENetsocantsendmore", "hash": "f45f66025eb43cd2bf6b7efa80c830d563708ac2", "variant": 1649675972, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 878903328}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2760048646}, "child": {"skip": 36, "offset": 56, "next": [], "symbols": [{"name": "__sceEENetsocantrcvmore", "hash": "551aadbd21d98611cf7601302076def442ac3e50", "variant": 1649675972, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2357329972}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 809639936}, "child": {"skip": 44, "offset": 60, "next": [], "symbols": [{"name": "rtflushclone1", "hash": "5faad7562ad50a24ff36df9f8805e3a5f8924b48", "variant": 400245058, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2290286595}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2558722048}, "child": {"skip": 68, "offset": 84, "next": [], "symbols": [{"name": "default_netmask", "hash": "80bb70cfb234ffce6bb592a9688b46eccd39f184", "variant": 2375966990, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2357329932}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 272629768}, "child": {"skip": 48, "offset": 64, "next": [], "symbols": [{"name": "file_read", "hash": "c2ae6345ef1793bb80216fd453090d9ee661fdcb", "variant": 3450906265, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2357461020}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 276824068}, "child": {"skip": 28, "offset": 44, "next": [], "symbols": [{"name": "crypto_sslc_dh_ctx_final", "hash": "fc38710eb10ba2ccdd2c63bedbceb1858192fe99", "variant": 2558283443, "library": "libhttps"}, {"name": "crypto_sslc_rsa_ctx_final", "hash": "fc38710eb10ba2ccdd2c63bedbceb1858192fe99", "variant": 2558283443, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2357329920}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2359492608}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2353266688}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "strcmp"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2355429376}, "child": {"skip": 12, "offset": 40, "next": [], "symbols": [{"name": "sn_cmp", "hash": "88e5aa5fa729252af041764fdd7a5e7b164be1a1", "variant": 3705886074, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "ASN1_STRING_cmp"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2355429376}, "child": {"skip": 12, "offset": 40, "next": [], "symbols": [{"name": "X509_REVOKED_cmp", "hash": "88e5aa5fa729252af041764fdd7a5e7b164be1a1", "variant": 1577024620, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2353266692}, "child": {"skip": 0, "offset": 20, "next": [{"match":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "strcmp"}}, "child": {"skip": 16, "offset": 40, "next": [], "symbols": [{"name": "ln_cmp", "hash": "5b4bb513cdba0dc9d681fb505aaff4db9f817977", "variant": 3705886074, "library": "libhttps"}, {"name": "cmp_by_name", "hash": "5b4bb513cdba0dc9d681fb505aaff4db9f817977", "variant": 3705886074, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2357592076}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2359427084}, "child": {"skip": 36, "offset": 52, "next": [], "symbols": [{"name": "OBJ_cmp", "hash": "baa5e574b39efc04d7069e08d644e77aafb4bdbb", "variant": 2817180177, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2357395464}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2355232848}, "child": {"skip": 20, "offset": 36, "next": [], "symbols": [{"name": "SSL_get_default_timeout", "hash": "10c26c146044cbbb68d32c57c14e8b4e5fb1209c", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2357329964}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 809631746}, "child": {"skip": 48, "offset": 64, "next": [], "symbols": [{"name": "SSL_read", "hash": "216183ede50e739ae25c3c9b04615622ac7a9768", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 276824070}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4141}, "child": {"skip": 32, "offset": 48, "next": [], "symbols": [{"name": "sk_shift", "hash": "0bba589c31a2d077748f08361ebe38a590ee99fe", "variant": 2088714569, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2357329928}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "OBJ_obj2nid"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2353266688}, "child": {"skip": 20, "offset": 40, "next": [], "symbols": [{"name": "X509_get_signature_type", "hash": "8c534c2d2b875ad5c5b40eb0ef10b1b9829593b3", "variant": 3073859704, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 1413480451}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2353135632}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 268435463}, "child": {"skip": 40, "offset": 64, "next": [], "symbols": [{"name": "X509_LOOKUP_shutdown", "hash": "7d4c33ab8ee5aa239bd5082eff0360bead889f16", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2353135636}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 268435463}, "child": {"skip": 40, "offset": 64, "next": [], "symbols": [{"name": "X509_LOOKUP_ctrl", "hash": "3b12ac9d21b2b6b7087db6110da4ea4d2a921ce9", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1346371593}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4141}, "child": {"skip": 44, "offset": 64, "next": [], "symbols": [{"name": "X509_LOOKUP_by_subject", "hash": "65e32fac60a670d3c271d9f0d19ccbaea20f54ac", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2357592064}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2359427072}, "child": {"skip": 56, "offset": 72, "next": [], "symbols": [{"name": "x509_object_cmp", "hash": "9867ef53175230ee85d78fa6fcce9a65d11dc91e", "variant": 2578174198, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604110849}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 346161157}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707456}, "child": {"skip": 40, "offset": 56, "next": [], "symbols": [{"name": "sceDmaSync", "hash": "5dc7ed43d4e94d1cba7eef9fb2778687492c66de", "variant": 691410034, "library": "libdma"}]}}], "symbols": []}}, {"match": {"value": 348258308}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707456}, "child": {"skip": 36, "offset": 52, "next": [], "symbols": [{"name": "sceDmaWatch", "hash": "0422d61d95d72c2be6e297aab80806e6d68bf5e7", "variant": 3421713900, "library": "libdma"}]}}], "symbols": []}}, {"match": {"value": 344064003}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707456}, "child": {"skip": 24, "offset": 40, "next": [], "symbols": [{"name": "kill", "hash": "2fdf2e251c5fdfb167fe0c5d4b05a503a3658458", "variant": 1254776740, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 4290707456}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2894202904}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "DIntr"}}, "child": {"skip": 4, "offset": 24, "next": [{"match": {"value": 1006964736}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 1007091713}, "child": {"skip": 156, "offset": 188, "next": [], "symbols": [{"name": "_clearEach", "hash": "f17b67fb36301cdc623e002bcc231afb2d3228f2", "variant": 258619933, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 1007030272}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 1007095808}, "child": {"skip": 168, "offset": 200, "next": [], "symbols": [{"name": "_clearEach", "hash": "4fe3c267f6d38fe1860e923f5fd476c4f40aa2ff", "variant": 990381459, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2894202928}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "DIntr"}}, "child": {"skip": 180, "offset": 200, "next": [], "symbols": [{"name": "_clearEach", "hash": "574c122d033e5da7ff849b146117a9ebda3a34b2", "variant": 990381459, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2894202920}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "DIntr"}}, "child": {"skip": 180, "offset": 200, "next": [], "symbols": [{"name": "_clearEach", "hash": "0006a7c55972da443bab2a3d864f42b2e03b15af", "variant": 990381459, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2894201540}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2894070464}, "child": {"skip": 28, "offset": 48, "next": [], "symbols": [{"name": "scePFontPuts", "hash": "ef81600732a26d13db1b4cc526ca17099aaf91a8", "variant": 2605886981, "library": "libpfont"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 346161160}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707456}, "child": {"skip": 44, "offset": 60, "next": [], "symbols": [{"name": "crypto_sslc_dh_get_info", "hash": "efa738c7d672103a42e534322f5346c66fd69410", "variant": 4220384949, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 816185343}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1212549120}, "child": {"skip": 56, "offset": 68, "next": [], "symbols": [{"name": "sceVu0MemReadQ", "hash": "bea5b66a0feececba14594070b1bf2a060fce076", "variant": 0, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 343932939}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 16, "offset": 28, "next": [{"match": {"value": 878968827}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 881078288}, "child": {"skip": 64, "offset": 100, "next": [], "symbols": [{"name": "sceDevGifPutImtMode", "hash": "466c9676d544191bf974eb95cb85b1a83730f582", "variant": 976572491, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 878968830}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 881078288}, "child": {"skip": 68, "offset": 104, "next": [], "symbols": [{"name": "sceDevGifPutP3msk", "hash": "154b93fc322b075d88cb1132b3ca11c44dc5358e", "variant": 976572491, "library": "libdev"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2357329920}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2141519872}, "child": {"skip": 68, "offset": 80, "next": [], "symbols": [{"name": "sceVif1PkAddUpkData1)PS2SDB", 8192}, + std::string_view{R"PS2SDB(28", "hash": "80a26ce1d187f05c45dbbd67486e8388e1853e21", "variant": 0, "library": "libpkt"}, {"name": "sceVif1PkAddDirectData", "hash": "80a26ce1d187f05c45dbbd67486e8388e1853e21", "variant": 0, "library": "libpkt"}]}}], "symbols": []}}, {"match": {"value": 604110858}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 344064007}, "child": {"skip": 40, "offset": 52, "next": [], "symbols": [{"name": "serialPutchar", "hash": "a32b5fbe12972a728dac5b169f8f17eb94f6ba1b", "variant": 2611600358, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 77594629}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 52, "offset": 64, "next": [], "symbols": [{"name": "_sceRpcGetFPacket2", "hash": "921859b429c37cc09adca94731a881850fd78e59", "variant": 3499081531, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 2359427072}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 272629763}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707456}, "child": {"skip": 28, "offset": 44, "next": [], "symbols": [{"name": "_sceFs_Poff_Intr", "hash": "9cdf19fc790eed6d779d9629da6a6fd37643e952", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 339738628}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707456}, "child": {"skip": 44, "offset": 60, "next": [], "symbols": [{"name": "scePFontAttachData", "hash": "2ceb14c4e3160a3a131c9b84771492750f596819", "variant": 59177273, "library": "libpfont"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 612564979}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 742522915}, "child": {"skip": 36, "offset": 48, "next": [], "symbols": [{"name": "SetTLBEntry", "hash": "b435ff4ccf7bb1366112cccb67c7d099053820c7", "variant": 1162496718, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 14690349}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006927872}, "child": {"skip": 48, "offset": 64, "next": [], "symbols": [{"name": "_alarm_rdata", "hash": "7675e65488be3fc5b48d4d13a9019ad00e76423f", "variant": 513247137, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006927872}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707456}, "child": {"skip": 48, "offset": 64, "next": [], "symbols": [{"name": "_alarm_bind", "hash": "42aa3c234d9b54ab482066c0bcfb2b99c498c68d", "variant": 513247137, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 75497477}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 72, "offset": 84, "next": [], "symbols": [{"name": "TimerBusClock2Freq", "hash": "17f973ef5167a3da189e7b4cd66c77bdb725f844", "variant": 3978821962, "library": "libkernl"}, {"name": "sceTimerBusClock2Freq", "hash": "17f973ef5167a3da189e7b4cd66c77bdb725f844", "variant": 3978821962, "library": "libtimer"}]}}], "symbols": []}}, {"match": {"value": 12591149}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 276824067}, "child": {"skip": 4, "offset": 16, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "deci2Putchar"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 0}, "child": {"skip": 16, "offset": 40, "next": [], "symbols": [{"name": "printf_char", "hash": "89acbd238b594305844b8dc7343221f06224df7b", "variant": 2397640326, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "serialPutchar"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 0}, "child": {"skip": 16, "offset": 40, "next": [], "symbols": [{"name": "kprintf_char", "hash": "89acbd238b594305844b8dc7343221f06224df7b", "variant": 1791738758, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10502189}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10285}, "child": {"skip": 24, "offset": 40, "next": [], "symbols": [{"name": "sceCdStStart", "hash": "8dbdec6427b9cae772af3d8a26727122241783e5", "variant": 3095911810, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 8400941}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 12587053}, "child": {"skip": 380, "offset": 396, "next": [], "symbols": [{"name": "modf", "hash": "0f8d5ade10597fc72912bddb3f45c73247e54a29", "variant": 849960062, "library": "libm"}, {"name": "modf", "hash": "0f8d5ade10597fc72912bddb3f45c73247e54a29", "variant": 849960062, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 12601389}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 14700589}, "child": {"skip": 32, "offset": 48, "next": [], "symbols": [{"name": "SSLCERT_NAME_ENTRY_get_data_info", "hash": "ae86a223db965d3fec9abe3734d93f5f14b6b72d", "variant": 2930721278, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2357657600}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10285}, "child": {"skip": 76, "offset": 92, "next": [], "symbols": [{"name": "sk_delete_ptr", "hash": "a7805c0160b846da6c7a75b60d9a382670621cc8", "variant": 2974799411, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 278921219}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 56, "offset": 68, "next": [], "symbols": [{"name": "sceMcMkdir", "hash": "8d16e3c34e8ea732861066d6ec563eda146e53f8", "variant": 2225796544, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 1174429702}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 3886022656}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 3886874628}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1006796799}, "child": {"skip": 40, "offset": 60, "next": [], "symbols": [{"name": "copysignf", "hash": "fc23602bf6c7e6eaa3a5695f409d949511a12f06", "variant": 0, "library": "libm"}, {"name": "copysignf", "hash": "fc23602bf6c7e6eaa3a5695f409d949511a12f06", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 1006796799}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2409824256}, "child": {"skip": 20, "offset": 40, "next": [], "symbols": [{"name": "fabsf", "hash": "a1418a4c0b2704383c4982465a60b6fdc462d656", "variant": 0, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 1006862335}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2410020864}, "child": {"skip": 20, "offset": 40, "next": [{"match": {"value": 1006911129}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 876806143}, "child": {"skip": 24, "offset": 72, "next": [{"match": {"value": 278921287}, "child": {"skip": 0, "offset": 76, "next": [{"match": {"value": 0}, "child": {"skip": 288, "offset": 368, "next": [], "symbols": [{"name": "__kernel_cosf", "hash": "ae6edf263918de5c955b762877466eeea0fd1f01", "variant": 0, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 278921279}, "child": {"skip": 0, "offset": 76, "next": [{"match": {"value": 0}, "child": {"skip": 256, "offset": 336, "next": [], "symbols": [{"name": "__kernel_cosf", "hash": "bfd543ee3a3d6d285066448f519c9fe18095124d", "variant": 0, "library": "libm"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 876806143}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 4395050}, "child": {"skip": 8, "offset": 56, "next": [{"match": {"value": 278921272}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 1174429702}, "child": {"skip": 228, "offset": 292, "next": [], "symbols": [{"name": "__kernel_sinf", "hash": "d74639e17c7cfe39d3184d23e72bbf0bcd35204d", "variant": 0, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 278921264}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 1174429702}, "child": {"skip": 196, "offset": 260, "next": [], "symbols": [{"name": "__kernel_sinf", "h)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ash": "3f46ad1ee4308479b2d2cb628826270a23187e1e", "variant": 0, "library": "libm"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1140981760}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4204589}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1174431814}, "child": {"skip": 444, "offset": 464, "next": [], "symbols": [{"name": "__ieee754_fmodf", "hash": "0284111b7596cc8d0eff20d68b1c0f112c77d610", "variant": 3972360015, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 0}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4204589}, "child": {"skip": 444, "offset": 464, "next": [], "symbols": [{"name": "__ieee754_fmodf", "hash": "20afb7d1b5a09dc82271bedf0f0b098335a970f0", "variant": 3972360015, "library": "libm"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8413229}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 816, "offset": 828, "next": [], "symbols": [{"name": "__ieee754_atan2", "hash": "3513f42951c39b54188dbe9d278b1ebbd98a2478", "variant": 2292395295, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 8400941}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 608829440, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 160, "offset": 180, "next": [], "symbols": [{"name": "sceHiGsEnvUpdate", "hash": "57eaef75d5406322e3cf2bc0e2e1355e276100f1", "variant": 3115328808, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 12587053}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 149564}, "child": {"skip": 1032, "offset": 1052, "next": [], "symbols": [{"name": "__ieee754_fmod", "hash": "861b9a28483f9847fe084f3af516aa36ca266835", "variant": 672213745, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 614990492}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 17176609}, "child": {"skip": 116, "offset": 136, "next": [], "symbols": [{"name": "get_reg_addr", "hash": "417cafa8b0cd61a7853ea1b24b80fbdd57b4ac9a", "variant": 653796370, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 614924956}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 15079457}, "child": {"skip": 120, "offset": 140, "next": [], "symbols": [{"name": "get_reg_addr", "hash": "b865c70d73fc14a0f49a7abc8188ef8e793e2ba3", "variant": 753055445, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 10512429}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 3703701504}, "child": {"skip": 1684, "offset": 1704, "next": [], "symbols": [{"name": "_pack_header", "hash": "084b5428ad5c4d541fdb93bfbb36ce78f6c6f61c", "variant": 2953145966, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 12333}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 12, "offset": 24, "next": [], "symbols": [{"name": "__udivdi3", "hash": "0153729efc710d4ac1b1be4b25599c07666ca116", "variant": 3099669066, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 346175}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 282687}, "child": {"skip": 1372, "offset": 1384, "next": [], "symbols": [{"name": "__umoddi3", "hash": "bc0b81aaab668044f88cf1146f5cf7653c029ea2", "variant": 1473597254, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707464}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "strcmp"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 12615725}, "child": {"skip": 24, "offset": 44, "next": [], "symbols": [{"name": "__throw_type_match", "hash": "feb1474a3daf3fc4681899b20e9c56d0f058e1ea", "variant": 3606564472, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "malloc"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 604242160}, "child": {"skip": 64, "offset": 84, "next": [], "symbols": [{"name": "new_eh_context", "hash": "e469348f137636684b9d4ffc3179e369e2ba75c9", "variant": 3823062013, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__get_eh_context"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 124, "offset": 144, "next": [], "symbols": [{"name": "__eh_free", "hash": "75b27a2933389707b6a2dae3df7700dc9eaa9e3d", "variant": 3511011370, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__get_eh_info"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 52, "offset": 72, "next": [], "symbols": [{"name": "__eh_rtime_match", "hash": "35fd79233374f474aaf44a4cbf6acd99b6e30ef7", "variant": 3530030154, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_malloc_r"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 10889240}, "child": {"skip": 4, "offset": 24, "next": [{"match": {"value": 301989922}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604241916}, "child": {"skip": 148, "offset": 180, "next": [], "symbols": [{"name": "_calloc_r", "hash": "5d48d25a6ef7b8bf2f49f7f8f9e030f676a7f2dc", "variant": 3873849919, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 301989917}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4141}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2382561276}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 604241916}, "child": {"skip": 8, "offset": 48, "next": [{"match": {"value": 746717221}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 8400941}, "child": {"skip": 124, "offset": 180, "next": [], "symbols": [{"name": "_calloc_r", "hash": "e46c3f0ea82e07c6a2aa0480fcba408698361f5a", "variant": 4156897722, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 8400941}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 746717221}, "child": {"skip": 124, "offset": 180, "next": [], "symbols": [{"name": "_calloc_r", "hash": "0a130b42bcbd943ff89eb7bc98093dbe5b38fb8e", "variant": 4156897722, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2383413244}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 604962812}, "child": {"skip": 140, "offset": 180, "next": [], "symbols": [{"name": "_calloc_r", "hash": "532c8e95f6e0e8679cd6e5d54db67e7de94eedeb", "variant": 4156897722, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "QueryIntrContext"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 604176385}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 272826379}, "child": {"skip": 60, "offset": 88, "next": [], "symbols": [{"name": "__malloc_lock", "hash": "12247f11ac55394cd29cf5f0c42364dc133ddce7", "variant": 3246843682, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 604962817}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 273612811}, "child": {"skip": 60, "offset": 88, "next": [], "symbols": [{"name": "__malloc_lock", "hash": "299c41c7512719f6029120991557976f528687c5", "variant": 3246843682, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__srefill"}}, "child": {"skip": 0, "offset": 16, "nex)PS2SDB", 8192}, + std::string_view{R"PS2SDB(t": [{"match": {"value": 8421421}, "child": {"skip": 52, "offset": 72, "next": [], "symbols": [{"name": "__srget", "hash": "dd85dbe00199c8dd3760b5f8534a2675de59b739", "variant": 497908133, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceMcFatReadFatData"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 12615725}, "child": {"skip": 40, "offset": 60, "next": [], "symbols": [{"name": "_sceMcFatGetNextClust", "hash": "51a1c23ef55d04ecd52318e3d35ed3eb8a2a6ecd", "variant": 2179675078, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 10518573}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_Balloc"}}, "child": {"skip": 8, "offset": 28, "next": [{"match": {"value": 604176385}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2890072080}, "child": {"skip": 16, "offset": 52, "next": [], "symbols": [{"name": "_i2b", "hash": "796a2b910d2f0ed4a4015562bc0d1c2feb38fd9a", "variant": 3542343909, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 604962817}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2890858512}, "child": {"skip": 16, "offset": 52, "next": [], "symbols": [{"name": "_i2b", "hash": "893562788658e74965ed47de1778c55dea27e0bb", "variant": 3542343909, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8421421}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 604242943}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 704774168}, "child": {"skip": 84, "offset": 108, "next": [], "symbols": [{"name": "_mprec_log10", "hash": "f15645b3377bda64ee0d580a3dcd0b3f5018758a", "variant": 739926881, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 2357461076}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1417674758}, "child": {"skip": 248, "offset": 272, "next": [], "symbols": [{"name": "__swsetup", "hash": "56fd6a2cd4d6e1bb19fd743aad8af186d9e4a394", "variant": 3070848171, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2357395540}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 341835780}, "child": {"skip": 40, "offset": 60, "next": [{"match": {"value": 604307455}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 811728928}, "child": {"skip": 296, "offset": 364, "next": [], "symbols": [{"name": "__srefill", "hash": "380446e2dee3ce52ccd1eab6d11d6b90ecc7a796", "variant": 2119576515, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 811728904}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 1413480473}, "child": {"skip": 8, "offset": 76, "next": [{"match": {"value": 272629795}, "child": {"skip": 0, "offset": 80, "next": [{"match": {"value": 604307455}, "child": {"skip": 176, "offset": 260, "next": [], "symbols": [{"name": "__swsetup", "hash": "e0e8b495f005f87f52a9e4f2fbf10c898e362320", "variant": 3135174148, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 272629797}, "child": {"skip": 0, "offset": 80, "next": [{"match": {"value": 604307455}, "child": {"skip": 184, "offset": 268, "next": [], "symbols": [{"name": "__swsetup", "hash": "228c8c4f0645446a4ed6dbcdc2b2f4f1f0b5c536", "variant": 3135174148, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2359427080}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 339738631}, "child": {"skip": 4, "offset": 24, "next": [{"match": {"value": 4141}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2896166916}, "child": {"skip": 36, "offset": 68, "next": [], "symbols": [{"name": "__sprint", "hash": "0ca4a02ba7a59e23b38b62297fddb88845a7fea5", "variant": 1473964697, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 2896166916}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4141}, "child": {"skip": 36, "offset": 68, "next": [], "symbols": [{"name": "__sprint", "hash": "7cad7243c1c9e7e74b248ade0f16d5b5f164206d", "variant": 1473964697, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2360279048}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 367001607}, "child": {"skip": 48, "offset": 68, "next": [], "symbols": [{"name": "__sprint", "hash": "5bdfad305344d6ae33cde3818eec42d1fc52027f", "variant": 1473964697, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8421421}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 369098756}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707464}, "child": {"skip": 204, "offset": 224, "next": [], "symbols": [{"name": "__eh_alloc", "hash": "b3830aab8c8b642534029e1ba59d3b39b11ac7f3", "variant": 173080711, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 4290707464}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "malloc"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 604241944}, "child": {"skip": 16, "offset": 40, "next": [{"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "__register_frame_info"}}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 48, "next": [], "symbols": [{"name": "__register_frame", "hash": "2fd13e0a32af6deffef967cc314472783b1a689a", "variant": 3943832093, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "__register_frame_info_table"}}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 48, "next": [], "symbols": [{"name": "__register_frame_table", "hash": "2fd13e0a32af6deffef967cc314472783b1a689a", "variant": 3064880617, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2382561364}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1415577606}, "child": {"skip": 28, "offset": 52, "next": [{"match": {"value": 2516844556}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__sinit"}}, "child": {"skip": 8, "offset": 68, "next": [{"match": {"value": 604176383}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 813891616}, "child": {"skip": 304, "offset": 380, "next": [], "symbols": [{"name": "__srefill", "hash": "c5f63c3cbfb512314dd2b09b301975cbce1c5aa2", "variant": 103963866, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 813826056}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 1413480473}, "child": {"skip": 192, "offset": 268, "next": [], "symbols": [{"name": "__swsetup", "hash": "c7ae223b478a57b84a29eddb97e1213b512c494e", "variant": 3070848171, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2382495784}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__sinit"}}, "child": {"skip": 200, "offset": 260, "next": [], "symbols": [{"name": "ftell", "hash": "3cdebd9308d47c88b0163341c027dd0470483000", "variant": 744892089, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2382496212}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1413480466}, "child": {"skip": 88, "offset": 112, "next": [], "symbols": [{"name": "_init_signal_r", "hash": "c9ba1d2cb5598ef26023090a68573698272d57c2", "variant": 609332376, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 704774168}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 872742848}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 271292}, "child": {"skip": 88, "offset": 112, "next": [], "symbols": [{"name": "_mprec_log10", "hash": "229cbd295d8b1d62555af53b0828cabc9f9799a2", "variant": 3196764, "library": "libc"}]}}], "symbo)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ls": []}}, {"match": {"value": 4290707464}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 872742848}, "child": {"skip": 92, "offset": 116, "next": [], "symbols": [{"name": "_mprec_log10", "hash": "d9e454dd8d3e52b6ff808adea17015d3616442b3", "variant": 739926881, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10518573}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707464}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_Balloc"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 604307457}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 604176385}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4202541}, "child": {"skip": 24, "offset": 56, "next": [], "symbols": [{"name": "_i2b", "hash": "1fc1c94c0f78d41558d631ff809b17baad6e9d4a", "variant": 3542343909, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 3753836552}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2890924052}, "child": {"skip": 20, "offset": 52, "next": [], "symbols": [{"name": "_i2b", "hash": "9b4e6905bdd682376c29d5389dd081ea277f0b81", "variant": 3542343909, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2382495752}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 339738628}, "child": {"skip": 48, "offset": 72, "next": [], "symbols": [{"name": "__sprint", "hash": "8a66fb9b6acab222601a8b482d2439526d4274b7", "variant": 3270396744, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 276824068}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 3753836544}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "free"}}, "child": {"skip": 16, "offset": 36, "next": [], "symbols": [{"name": "eh_context_free", "hash": "290987bf26b6911d336a043c2161c85c32bc8774", "variant": 247438572, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 2357329924}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 339738627}, "child": {"skip": 32, "offset": 52, "next": [], "symbols": [{"name": "R_rand_seed", "hash": "1d21ba62fb9dce12e0b3cc91dde4bda4390451b3", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2357329920}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 339738627}, "child": {"skip": 32, "offset": 52, "next": [], "symbols": [{"name": "R_rand_bytes", "hash": "8c52385a220bc4cf75d8a3cd18aa75ff354d064d", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2357526528}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 480247811}, "child": {"skip": 32, "offset": 52, "next": [], "symbols": [{"name": "sk_pop", "hash": "8f36634ef150f92f35c3fdce4e261a441695f815", "variant": 4113385852, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2357460996}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 343932931}, "child": {"skip": 32, "offset": 52, "next": [], "symbols": [{"name": "X509_get_pubkey", "hash": "37ea6ddffc31737a84623ea73079ea5a5ffb1cca", "variant": 4193891641, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 612499480}, "child": {"skip": 272, "offset": 288, "next": [], "symbols": [{"name": "_PsceSkSsStrAdpcmInitEnv", "hash": "4cb63fc45e8f17a64ceabfd59056580baa2ebe7e", "variant": 0, "library": "libsk"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10489901}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789960}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8423469}, "child": {"skip": 232, "offset": 248, "next": [], "symbols": [{"name": "fde_merge", "hash": "00e273760fb251ce83bc75f45a5b087410880c70", "variant": 0, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 12597293}, "child": {"skip": 4, "offset": 20, "next": [{"match": {"value": 8421421}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2223308814}, "child": {"skip": 4, "offset": 32, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_read_r"}}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 2357461076}, "child": {"skip": 60, "offset": 100, "next": [], "symbols": [{"name": "__sread", "hash": "fb39d231cedbd985715eae2be0a6e992f9e06690", "variant": 1815032771, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_lseek_r"}}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 2357461076}, "child": {"skip": 64, "offset": 104, "next": [], "symbols": [{"name": "__sseek", "hash": "cf53947862735b3b844c429ddde6bf24254e473a", "variant": 3255997367, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4206637}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 8421421}, "child": {"skip": 4, "offset": 32, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_read_r"}}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 2357461076}, "child": {"skip": 60, "offset": 100, "next": [], "symbols": [{"name": "__sread", "hash": "1bd5d107c1909f63a55019902ef485e2c9b518bc", "variant": 1815032771, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_lseek_r"}}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 2357461076}, "child": {"skip": 68, "offset": 108, "next": [], "symbols": [{"name": "__sseek", "hash": "117efc3fb8046a1486e96c4dd92aebcc0edf1770", "variant": 3255997367, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707456}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 12589101}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 14690349}, "child": {"skip": 36, "offset": 56, "next": [], "symbols": [{"name": "crypto_sslc_encrypt", "hash": "340b8e1b3dbcfbfd9eb22d5ec600a2a89f056372", "variant": 3363581798, "library": "libhttps"}, {"name": "crypto_sslc_decrypt", "hash": "340b8e1b3dbcfbfd9eb22d5ec600a2a89f056372", "variant": 3363581798, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 12601389}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 14690349}, "child": {"skip": 20, "offset": 40, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "PK_pub_enc"}}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 20525}, "child": {"skip": 12, "offset": 60, "next": [], "symbols": [{"name": "crypto_sslc_rsa_public_encrypt", "hash": "0dbcd4ea82e86c400fd44f89dc2cfc4ba2c36d3f", "variant": 1149658720, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "PK_pub_dec"}}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 20525}, "child": {"skip": 12, "offset": 60, "next": [], "symbols": [{"name": "crypto_sslc_rsa_public_decrypt", "hash": "0dbcd4ea82e86c400fd44f89dc2cfc4ba2c36d3f", "variant": 2796606876, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "PK_priv_enc"}}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 20525}, "child": {"skip": 12, "offset": 60, "next": [], "symbols": [{"name": "crypto_sslc_rsa_private_encrypt", "hash": "0dbcd4ea82e86c400fd44f89dc2cfc4ba2c36d3f", "variant": 244527616, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "PK_priv_dec"}}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": 20525}, "child": {"skip": 12, "offset": 60, "next": [], "symbols": [{"name": "crypto_sslc_rsa_private_decrypt", "hash": "0dbcd4ea82e86c400fd44f89dc2cfc4ba2c36d3f", "variant": 3970269692, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2357395456}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2355232772}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4257801}, "child": {"skip": 20, "offset": 40, "next": [], "symbols": [{"name": "what__C9exception", "hash": "7ef851968c70dc73501f516f56fe333a8605223f", "variant": 0, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 2355232788}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4257801}, "child": {"skip": 16, "offset": 36, "next": [], "symbols": [{"name": "BN_ME_CTX_free", "hash": "cd1663565e17d02807a693a78cb7728ceaa5d38f", "variant": 0, "library": "libhttps"}, {"name": "EVP_Cipher", "hash": "cd1663565e17d02807a693a78cb7728ceaa5d38f", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 12607533}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 14706733}, "child": {"skip": 40, "offset": 60, "next": [{"match": {"value": 604307457}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 3753836544}, "child": {"skip": 8, "offset": 76, "next": [], "symbols": [{"name": "PK_priv_enc", "hash": "2c7f14ddf9c31e7dbea14056cfbe11f47d650bea", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604307460}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 3753836544}, "child": {"skip": 8, "offset": 76, "next": [], "symbols": [{"name": "PK_pub_dec", "hash": "e119076cee0816d23eebe42ab21b19974807226c", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604307466}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 3753836544}, "child": {"skip": 8, "offset": 76, "next": [], "symbols": [{"name": "PK_sign", "hash": "ff676148b136c85d2d73c3c24bbf32f942e170d6", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604307459}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 3753836544}, "child": {"skip": 8, "offset": 76, "next": [], "symbols": [{"name": "PK_pub_enc", "hash": "1bf9e9d2689ccd255df3bb90dea337bf0b742d39", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604307458}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 3753836544}, "child": {"skip": 8, "offset": 76, "next": [], "symbols": [{"name": "PK_priv_dec", "hash": "e7691521c6a0804b3846260136d66bbaa603eca4", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604307462}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 3753836544}, "child": {"skip": 8, "offset": 76, "next": [], "symbols": [{"name": "PK_phase2", "hash": "9c2d2a39d2029fc0f081b4037c6c5e4731a45b72", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10500141}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 604307461}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2355232776}, "child": {"skip": 20, "offset": 44, "next": [], "symbols": [{"name": "PK_phase1", "hash": "fd725c155ad1ea00cd32cb805f0d4d1095d346c4", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2355232792}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4257801}, "child": {"skip": 16, "offset": 40, "next": [], "symbols": [{"name": "PK_get_eitem", "hash": "6ab38623aadb427752bd97daf507360e3e727bfb", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 12603437}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 14702637}, "child": {"skip": 40, "offset": 60, "next": [], "symbols": [{"name": "PK_get_pubkey", "hash": "2b782573295d044d075573841415781f7f720f24", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2355232792}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4257801}, "child": {"skip": 16, "offset": 36, "next": [], "symbols": [{"name": "PK_get_info", "hash": "54bf5bf876a8d0ce1ad9da1be2aedcb84f412368", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8394797}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 10502189}, "child": {"skip": 20, "offset": 40, "next": [{"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "_strtol_r"}}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 48, "next": [], "symbols": [{"name": "strtol", "hash": "5338ddf072034f6167a469b10313fbbf3345ad63", "variant": 2268561504, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "_strtoul_r"}}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 48, "next": [], "symbols": [{"name": "strtoul", "hash": "5338ddf072034f6167a469b10313fbbf3345ad63", "variant": 170569846, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 274726924}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4141}, "child": {"skip": 36, "offset": 56, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": ""}}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 604372993}, "child": {"skip": 16, "offset": 80, "next": [], "symbols": [{"name": "__is_pointer__FPv", "hash": "324a5e979a2c3306ce007adfd66de9470041f051", "variant": 2519481536, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__dynamic_cast"}}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 604372993}, "child": {"skip": 16, "offset": 80, "next": [], "symbols": [{"name": "__is_pointer__FPv", "hash": "324a5e979a2c3306ce007adfd66de9470041f051", "variant": 552868201, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2489581588}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 746717188}, "child": {"skip": 104, "offset": 124, "next": [], "symbols": [{"name": "sceSynthesizerCalcEnv", "hash": "27f22cb1842bf7c9ae13ce337690b0699e1c734c", "variant": 2026142885, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 2355233676}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 339738627}, "child": {"skip": 52, "offset": 72, "next": [], "symbols": [{"name": "scePFontPutsContinue", "hash": "e5915640ca1ab36b5426e9425af024d3a35c9c8c", "variant": 957933266, "library": "libpfont"}]}}], "symbols": []}}, {"match": {"value": 2355233680}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 339738627}, "child": {"skip": 52, "offset": 72, "next": [], "symbols": [{"name": "scePFontPutsContinue", "hash": "0cba75a2cfc3afab41424ffb37516936ae3e51e0", "variant": 957933266, "library": "libpfont"}]}}], "symbols": []}}, {"match": {"value": 2489450544}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 876740612}, "child": {"skip": 24, "offset": 44, "next": [], "symbols": [{"name": "__sceEENetsbwait", "hash": "3f23c83f3efa0fb0ba760c2ccc5efd1771e0b318", "variant": 1556892025, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 281018371}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 14688301}, "child": {"skip": 76, "offset": 96, "next": [], "symbols": [{"name": "__sceEENetsysctl_rdstruct", "hash": "17b1b263a118d902de87235500f8b4dd0492557e", "variant": 659578010, "library": "libeenet"}]}}], "symbols": []}}], "symbols": [])PS2SDB", 8192}, + std::string_view{R"PS2SDB(}}], "symbols": []}}, {"match": {"value": 342079}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 1632, "offset": 1644, "next": [], "symbols": [{"name": "__udivmoddi4", "hash": "472736e7f77868ed377f003234dae09028676c4a", "variant": 2888355454, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 348220}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 1692, "offset": 1704, "next": [], "symbols": [{"name": "__udivmoddi4", "hash": "6e7992774d1e5ad576fce48f2ff77af2cb2e74d9", "variant": 1445183183, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 8392749}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 10498093}, "child": {"skip": 12, "offset": 32, "next": [{"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "_setlocale_r"}}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 40, "next": [], "symbols": [{"name": "setlocale", "hash": "6b963bebadef9673cdf9a0b21c6186f7afca30d3", "variant": 1821468352, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "_memalign_r"}}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 40, "next": [], "symbols": [{"name": "memalign", "hash": "6b963bebadef9673cdf9a0b21c6186f7afca30d3", "variant": 694207530, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10491949}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 12597293}, "child": {"skip": 8, "offset": 28, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_vfprintf_r"}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 6303789}, "child": {"skip": 12, "offset": 48, "next": [], "symbols": [{"name": "vfprintf", "hash": "76938fe16c2fcd234cd9b689d795899cf175a15d", "variant": 1090935018, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_vfiprintf_r"}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 6303789}, "child": {"skip": 12, "offset": 48, "next": [], "symbols": [{"name": "vfiprintf", "hash": "76938fe16c2fcd234cd9b689d795899cf175a15d", "variant": 3453840831, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10493997}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4204589}, "child": {"skip": 12, "offset": 32, "next": [], "symbols": [{"name": "bcopy", "hash": "8032632324603912d3f08c94ad71a1d6f205de26", "variant": 2703002221, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 604176385}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2890204040}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2890072940}, "child": {"skip": 32, "offset": 56, "next": [], "symbols": [{"name": "scePFontPutc", "hash": "3f2d9325205586def01f14d9c2d61a6a61fbecde", "variant": 1844101205, "library": "libpfont"}]}}], "symbols": []}}, {"match": {"value": 2890204044}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2890072940}, "child": {"skip": 32, "offset": 56, "next": [], "symbols": [{"name": "scePFontPutc", "hash": "2f1b505c8e894250ee939fff960f5296f50183a7", "variant": 1844101205, "library": "libpfont"}]}}], "symbols": []}}, {"match": {"value": 2890335120}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2890072940}, "child": {"skip": 28, "offset": 52, "next": [], "symbols": [{"name": "scePFontPuts", "hash": "4b1099be72ee93d998d654bea6191b27cb3e07ac", "variant": 3244883630, "library": "libpfont"}]}}], "symbols": []}}, {"match": {"value": 2890335124}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2890072940}, "child": {"skip": 28, "offset": 52, "next": [], "symbols": [{"name": "scePFontPuts", "hash": "e999033190087578974b246e419299ad6e601cd7", "variant": 3244883630, "library": "libpfont"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10498093}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 604241921}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4204589}, "child": {"skip": 12, "offset": 36, "next": [], "symbols": [{"name": "sceMc2CheckAsync", "hash": "05eb9ea394d42a2eed3402147baa4b8145ff4b18", "variant": 742774604, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 8237}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4204589}, "child": {"skip": 12, "offset": 36, "next": [], "symbols": [{"name": "sceMc2Sync", "hash": "523e91bd1442143ba80bc4b29955f5fc4cf0e3a3", "variant": 742774604, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 4204589}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "call_handler"}}, "child": {"skip": 24, "offset": 48, "next": [], "symbols": [{"name": "sifcmd_handler", "hash": "248434c8f16817ee9b2ce4a9d8a65ae3bc03ac42", "variant": 3150796890, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 12591149}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2890203508}, "child": {"skip": 48, "offset": 68, "next": [], "symbols": [{"name": "set_recv_dma_ok_reg", "hash": "80e9237312305c89f6423b195c094150d306a7a7", "variant": 1055455122, "library": "ent_smap"}]}}], "symbols": []}}, {"match": {"value": 10502189}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": "i2d_X509_CINF"}}, "child": {"skip": 32, "offset": 52, "next": [], "symbols": [{"name": "X509_verify", "hash": "6a5fe57ccead30aece10f2074bee0a50ecacd585", "variant": 3089188217, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8419373}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1007550464, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 10498093}, "child": {"skip": 20, "offset": 40, "next": [], "symbols": [{"name": "setlocale", "hash": "789475c6110bad228aa48a9783c9832c0bbe25a9", "variant": 1821468352, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 2381841288}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2380399492}, "child": {"skip": 668, "offset": 688, "next": [], "symbols": [{"name": "_scePFontSetupTexEnv", "hash": "10d9d335ba056a6438372624cf670a0fca6fcaeb", "variant": 1806444012, "library": "libpfont"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4141}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 60823597}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 281018375}, "child": {"skip": 36, "offset": 52, "next": [], "symbols": [{"name": "_mbtowc_r", "hash": "7f26543d92200ba1f2b2d7a1176c9ca8fd7dcf59", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 281018375}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 61155338}, "child": {"skip": 8, "offset": 24, "next": [{"match": {"value": 2428633088}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2896297984}, "child": {"skip": 16, "offset": 48, "next": [], "symbols": [{"name": "_mbtowc_r", "hash": "97357fe02fcdaab39cae9418e5732243041cf43a", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 2429485056}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2897149952}, "child": {"skip": 16, "offset": 48, "next": [], "symbols": [{"name": "_mbtowc_r", "hash": "d0ccacf3c8a988ae9cbe2fd5ba27eeb72c36977d", "variant": 0, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}},)PS2SDB", 8192}, + std::string_view{R"PS2SDB( {"match": {"value": 60823597}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 281018373}, "child": {"skip": 48, "offset": 60, "next": [], "symbols": [{"name": "_mbtowc_r", "hash": "bec80870436ae0484f899a91addbd921967c2915", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 604111871}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 100, "offset": 112, "next": [], "symbols": [{"name": "_mprec_log10", "hash": "6f3d31063265de8bcb2fff8b11acd272794199de", "variant": 637596070, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 604176393}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 40, "offset": 52, "next": [], "symbols": [{"name": "lflush", "hash": "7b030106354aafd5eb5a6ccdbf95a206bbddbfb7", "variant": 1524836125, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 604110857}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 36, "offset": 48, "next": [], "symbols": [{"name": "lflush", "hash": "a214b7dd9a26a5ff8fc0010981803e61c5fbe670", "variant": 1524836125, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 12597293}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8421421}, "child": {"skip": 12, "offset": 28, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_read_r"}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2248474638}, "child": {"skip": 64, "offset": 100, "next": [], "symbols": [{"name": "__sread", "hash": "c904e46e43e68e7e4bddf8c093cc2b706368fe1e", "variant": 4058801943, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_lseek_r"}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2248474638}, "child": {"skip": 64, "offset": 100, "next": [], "symbols": [{"name": "__sseek", "hash": "f97d8f6d0231d2a3fff8d6c8a5257224d35ecf4a", "variant": 1127302702, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 276824098}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707456}, "child": {"skip": 308, "offset": 324, "next": [], "symbols": [{"name": "sceSSyn_SetOutputAssign", "hash": "b24b5475a7589306f024da108b975bdf14c21f85", "variant": 155816271, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 276824076}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707456}, "child": {"skip": 112, "offset": 128, "next": [], "symbols": [{"name": "sceSSyn_SendRpnMsg", "hash": "bf7a27136368611d1b39f63a919dd334190cfb5a", "variant": 1265942072, "library": "libssyn"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10516525}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 20, "offset": 32, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_read_r"}}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 2357461076}, "child": {"skip": 56, "offset": 96, "next": [], "symbols": [{"name": "__sread", "hash": "72badfd5190b23c506bef580af0f61c1b07416bc", "variant": 1815032771, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_lseek_r"}}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 2357461076}, "child": {"skip": 60, "offset": 100, "next": [], "symbols": [{"name": "__sseek", "hash": "9633e4c6ede6ff444741a54e48c1f104a18ccd62", "variant": 3255997367, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8417325}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 36, "offset": 48, "next": [], "symbols": [{"name": "strtol", "hash": "45c72897c25a5fd62b48e7e4409e1b9c62f9c535", "variant": 619986351, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 8398893}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2353266688, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 4, "offset": 24, "next": [{"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "_malloc_r"}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 32, "next": [], "symbols": [{"name": "malloc", "hash": "cf118ec2ffd1921f022112b507bf7a0f174de2d3", "variant": 3084230622, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "_free_r"}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 32, "next": [], "symbols": [{"name": "free", "hash": "cf118ec2ffd1921f022112b507bf7a0f174de2d3", "variant": 4045269367, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "set_status"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 604241924}, "child": {"skip": 16, "offset": 36, "next": [], "symbols": [{"name": "sceHiStopPlugStatus", "hash": "959b1fe028b990bce249a6031f5c8ad7b5eb5d7e", "variant": 1951439641, "library": "libhig"}, {"name": "sceHiStopPlugListStatus", "hash": "959b1fe028b990bce249a6031f5c8ad7b5eb5d7e", "variant": 1951439641, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "clear_status"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 604241924}, "child": {"skip": 16, "offset": 36, "next": [], "symbols": [{"name": "sceHiContPlugStatus", "hash": "959b1fe028b990bce249a6031f5c8ad7b5eb5d7e", "variant": 3937407620, "library": "libhig"}, {"name": "sceHiContPlugListStatus", "hash": "959b1fe028b990bce249a6031f5c8ad7b5eb5d7e", "variant": 3937407620, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 2359427128}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1413480453}, "child": {"skip": 60, "offset": 80, "next": [], "symbols": [{"name": "sceHTTPAbortRequest", "hash": "4a4396e9b563643baa6ca6a38ed9eaa5960606f2", "variant": 1028978696, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 346030085}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707456}, "child": {"skip": 48, "offset": 64, "next": [], "symbols": [{"name": "sceHiGsMemAddTbl", "hash": "e567b7642a6bd26f766aa7c477fa939d45cff580", "variant": 4127414732, "library": "libhig"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10498093}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8421421}, "child": {"skip": 40, "offset": 56, "next": [], "symbols": [{"name": "_mstats_r", "hash": "de0cde106a21be8d6f9b3c3b1d721c8f71f5e498", "variant": 3487013555, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4290707456}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceHiCallPlugSub"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8398893}, "child": {"skip": 12, "offset": 32, "next": [], "symbols": [{"name": "sceHiCallPlug", "hash": "3847040d58408465a918d54c7af7231254a57e92", "variant": 2704753365, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "rtflushclone1"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2357329960}, "child": {"skip": 20, "offset": 40, "next": [], "symbols": [{"name": "rtflushclone", "hash": "5c677248f6c4e93af93a816aec264bfacc904248", "variant": 2773659876, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 8402989}, "child": {")PS2SDB", 8192}, + std::string_view{R"PS2SDB(skip": 0, "offset": 16, "next": [{"match": {"value": 2361524232}, "child": {"skip": 132, "offset": 152, "next": [], "symbols": [{"name": "fputc", "hash": "4e51ad39c3cda96ba36c871cf73b1a45954e22fe", "variant": 482209490, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 2361524224}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 608501759}, "child": {"skip": 4, "offset": 24, "next": [{"match": {"value": 274726952}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 172, "offset": 204, "next": [], "symbols": [{"name": "_spuCB", "hash": "7d7883f2ce4e9c1cad70aaadf9b86b103bc1b992", "variant": 1776267135, "library": "librspu2"}]}}], "symbols": []}}, {"match": {"value": 274726946}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 148, "offset": 180, "next": [], "symbols": [{"name": "_spuCB", "hash": "455bb36c60b3dbeb072c637c9f55a16a001e675c", "variant": 1812198292, "library": "librspu2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 346030083}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 40, "offset": 52, "next": [], "symbols": [{"name": "_system_r", "hash": "efd54510da19a38dae2ba6644246a0709cce57e0", "variant": 4018269770, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 10491949}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8421421}, "child": {"skip": 96, "offset": 112, "next": [], "symbols": [{"name": "_perror_r", "hash": "181d611c50e31e83b2b94b1dadd0cf6a84165cdc", "variant": 2114614836, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4290707456}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 14690349}, "child": {"skip": 68, "offset": 84, "next": [], "symbols": [{"name": "MemcpyD", "hash": "cfe4b3c108d67d73726b2fe87e2c2ceef65dc915", "variant": 675854036, "library": "libnet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2143223808}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "dpcmp"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 4, "offset": 20, "next": [{"match": {"value": 4198442}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 943849473}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 36, "next": [], "symbols": [{"name": "_dpfge", "hash": "d82a9f8057976d9a3a0e968d2f0bea2da2ca29b9", "variant": 589154209, "library": "gcc_wrapper"}]}}], "symbols": []}}, {"match": {"value": 65011720}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 32, "next": [], "symbols": [{"name": "_dpflt", "hash": "612e4fd1ea03f460f3a13ee9515f12967981448b", "variant": 589154209, "library": "gcc_wrapper"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 135210}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 65011720}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 32, "next": [], "symbols": [{"name": "_dpfgt", "hash": "b62ea0b4909aa83291ccd407b14e84e995034314", "variant": 589154209, "library": "gcc_wrapper"}]}}], "symbols": []}}, {"match": {"value": 943849473}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 36, "next": [], "symbols": [{"name": "_dpfle", "hash": "e57938d8eaf12752189b36108aeef3ad453b3e10", "variant": 589154209, "library": "gcc_wrapper"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4198438}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 742522881}, "child": {"skip": 8, "offset": 36, "next": [], "symbols": [{"name": "_dpfeq", "hash": "90ac8af87ab21aaa7dc8fc0bcfec79c907fd9aec", "variant": 589154209, "library": "gcc_wrapper"}]}}], "symbols": []}}, {"match": {"value": 135211}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 32, "next": [], "symbols": [{"name": "_dpfne", "hash": "ffabb912cdcfa85585aa6c95018f9df6150fa8ef", "variant": 589154209, "library": "gcc_wrapper"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__destroy_global_chain"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 16, "offset": 32, "next": [], "symbols": [{"name": "mwExit", "hash": "b4cc0155d72a4c374ab63f5efb12464ff183c80f", "variant": 37099100, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__call_static_initializers__FPPFv_vPPFv_v"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 12, "offset": 28, "next": [], "symbols": [{"name": "__initialize_cpp_rts", "hash": "81d8f775af31cf4699fc8adf1dfcc093c236ef80", "variant": 2247200747, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__dl__FPv"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 12, "offset": 28, "next": [], "symbols": [{"name": "__dla__FPv", "hash": "81d8f775af31cf4699fc8adf1dfcc093c236ef80", "variant": 3611708217, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__nw__FUi"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 12, "offset": 28, "next": [], "symbols": [{"name": "__nwa__FUi", "hash": "81d8f775af31cf4699fc8adf1dfcc093c236ef80", "variant": 3931643807, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 1006698496, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2351038464, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 12, "offset": 28, "next": [{"match": {"value": 65011720}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 36, "next": [], "symbols": [{"name": "unexpected__3stdFv", "hash": "dee5c1cce510a69fa7b9392feacca789d60aac5b", "variant": 49031533, "library": "mslgcc_ps2"}, {"name": "terminate__3stdFv", "hash": "dee5c1cce510a69fa7b9392feacca789d60aac5b", "variant": 49031533, "library": "mslgcc_ps2"}, {"name": "duhandler__3stdFv", "hash": "dee5c1cce510a69fa7b9392feacca789d60aac5b", "variant": 49031533, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 666697744}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 40, "next": [], "symbols": [{"name": "unexpected__3stdFv", "hash": "cacf47f32b6e643f00ae05e1389deccc15ca33cd", "variant": 49031533, "library": "mslgcc_ps2"}, {"name": "terminate__3stdFv", "hash": "cacf47f32b6e643f00ae05e1389deccc15ca33cd", "variant": 49031533, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2407661568, "relocation": {"type": "MIPS_GPREL16", "symbol": "uhandler__3std"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4257801}, "child": {"skip": 16, "offset": 32, "next": [], "symbols": [{"name": "unexpected__3stdFv", "hash": "949981fed02c934e8976226f66591b4d2851f7ab", "variant": 788325450, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 2407661568, "relocation": {"type": "MIPS_GPREL16", "symbol": "thandler__3std"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4257801}, "child": {"skip": 16, "offset": 32, "next": [], "symbols": [{"name": "terminate__3stdFv", "hash": "949981fed02c934e8976226f66591b4d2851f7ab", "variant": 3019048252, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 201326592, )PS2SDB", 8192}, + std::string_view{R"PS2SDB("relocation": {"type": "MIPS_26", "symbol": "terminate__3stdFv"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 4, "offset": 20, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 32, "next": [], "symbols": [{"name": "duhandler__3stdFv", "hash": "b4cc0155d72a4c374ab63f5efb12464ff183c80f", "variant": 3152052006, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 65011720}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 28, "next": [], "symbols": [{"name": "duhandler__3stdFv", "hash": "81d8f775af31cf4699fc8adf1dfcc093c236ef80", "variant": 3152052006, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "abort"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 4, "offset": 20, "next": [{"match": {"value": 65011720}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 28, "next": [], "symbols": [{"name": "dthandler__3stdFv", "hash": "81d8f775af31cf4699fc8adf1dfcc093c236ef80", "variant": 3535856678, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 666697744}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 32, "next": [], "symbols": [{"name": "dthandler__3stdFv", "hash": "b4cc0155d72a4c374ab63f5efb12464ff183c80f", "variant": 3535856678, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "mwInit"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 16, "offset": 32, "next": [], "symbols": [{"name": "__do_global_dtors", "hash": "b4cc0155d72a4c374ab63f5efb12464ff183c80f", "variant": 1091111526, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "mwExit"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 16, "offset": 32, "next": [], "symbols": [{"name": "__do_global_dtors", "hash": "b4cc0155d72a4c374ab63f5efb12464ff183c80f", "variant": 326396444, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 1006764070}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 608490592}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1006764070}, "child": {"skip": 44, "offset": 64, "next": [], "symbols": [{"name": "mwInit", "hash": "e9f11d81fcb1a32a9af12bb45b0ea70b7ea5ca59", "variant": 1519028204, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 608460000}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1006764070}, "child": {"skip": 44, "offset": 64, "next": [], "symbols": [{"name": "mwInit", "hash": "a5af43c235c1f5e89341dce3fc72b0a338de8154", "variant": 1519028204, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764086}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 608493616}, "child": {"skip": 48, "offset": 64, "next": [], "symbols": [{"name": "mwInit", "hash": "ef5315790c3f412f2476ea2c5ad65d63045973b8", "variant": 1519028204, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 1006764084}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 608443520}, "child": {"skip": 48, "offset": 64, "next": [], "symbols": [{"name": "mwInit", "hash": "ac8958b443ea24f780994229089b7b9c0313e30d", "variant": 1519028204, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 1006764072}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 608464352}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1006764072}, "child": {"skip": 44, "offset": 64, "next": [], "symbols": [{"name": "mwInit", "hash": "4c342829660b0e08feb2acfaa08d2733ba892a41", "variant": 1519028204, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 608454000}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1006764072}, "child": {"skip": 44, "offset": 64, "next": [], "symbols": [{"name": "mwInit", "hash": "9654fe573a78ee6563beeac0c36a7dea551fd656", "variant": 1519028204, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 608453360}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1006764072}, "child": {"skip": 44, "offset": 64, "next": [], "symbols": [{"name": "mwInit", "hash": "81691f42d9d4d5295a458e1efdeb1a5b804d7029", "variant": 1519028204, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764066}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 608474976}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1006764066}, "child": {"skip": 44, "offset": 64, "next": [], "symbols": [{"name": "mwInit", "hash": "e9d3bdc45c9657560365ed68eae878a36464d5b4", "variant": 1519028204, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 608455616}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1006764066}, "child": {"skip": 44, "offset": 64, "next": [], "symbols": [{"name": "mwInit", "hash": "85d97d1d033d860d4c5cf84ec00b027249ce924a", "variant": 1519028204, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 608450736}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1006764066}, "child": {"skip": 44, "offset": 64, "next": [], "symbols": [{"name": "mwInit", "hash": "20d3d24f6cbbb16390759f61abcbc5ab9d3bf859", "variant": 1519028204, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764081}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 608437184}, "child": {"skip": 48, "offset": 64, "next": [], "symbols": [{"name": "mwInit", "hash": "9f4367550cd05b71a5212f75a2f33342a752089d", "variant": 1519028204, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 1006764142}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 608471296}, "child": {"skip": 48, "offset": 64, "next": [], "symbols": [{"name": "mwInit", "hash": "d613cf3648f40a0e68daffd6271ce830a4975438", "variant": 1519028204, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 1006764109}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 608463648}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1006764109}, "child": {"skip": 44, "offset": 64, "next": [], "symbols": [{"name": "mwInit", "hash": "84ac24b76b5b8ca1f743f8060e7c1d263a00373c", "variant": 1519028204, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 608459968}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1006764109}, "child": {"skip": 44, "offset": 64, "next": [], "symbols": [{"name": "mwInit", "hash": "3e15858caa6dc923915f5b05289b15a14e3a114a", "variant": 1519028204, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 608485024}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1006764109}, "child": {"skip": 44, "offset": 64, "next": [], "symbols": [{"name": "mwInit", "hash": "5b7fb39bffd43a0c3169360c11e45461e88838c3", "variant": 1519028204, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764117}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 608498692}, "child": {"skip": 48, "offset": 64, "next": [], "symbols": [{"name": "mwInit", "hash": "be4e1119292aab1ae7f770bc81d323dee6139a8b", "variant": 1519028204, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 1006764114}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 608478812}, "child": {"skip": 48, "offset": 64, "next": [], "symbols": [{"name": "mwInit", "hash": "63a3b1fd32a15195124701400a296fa8bfc91d5c", "variant": 1519028204, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 1006764068}, "child": {"skip": 0, "offset": 12, "next": [{"match": {)PS2SDB", 8192}, + std::string_view{R"PS2SDB("value": 608497312}, "child": {"skip": 48, "offset": 64, "next": [], "symbols": [{"name": "mwInit", "hash": "d51974c9cd085a70d50c913b475fac394cd8c818", "variant": 1519028204, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 1006764101}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 608465488}, "child": {"skip": 48, "offset": 64, "next": [], "symbols": [{"name": "mwInit", "hash": "837e74d01aece4db508e2bc4ab86172b35ecb51f", "variant": 1519028204, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 1006764092}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 608497120}, "child": {"skip": 48, "offset": 64, "next": [], "symbols": [{"name": "mwInit", "hash": "e41146fcc18c70b2fa8532905c8d5528a5b9a621", "variant": 1519028204, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 1006764090}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 608469808}, "child": {"skip": 48, "offset": 64, "next": [], "symbols": [{"name": "mwInit", "hash": "71b1186059e863f8d4a47cff2c74995f281d3b27", "variant": 1519028204, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 1006764064}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 608450464}, "child": {"skip": 48, "offset": 64, "next": [], "symbols": [{"name": "mwInit", "hash": "8ef3debe908418ff2e85569a512d3154aad52e68", "variant": 1519028204, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 2357395456}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 274726918}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 0}, "child": {"skip": 32, "offset": 52, "next": [], "symbols": [{"name": "__end__catch", "hash": "81848b6918ea04a52c12f773ee933fe2105ccbba", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 274726919}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 0}, "child": {"skip": 12, "offset": 32, "next": [{"match": {"value": 604372991}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 12646409}, "child": {"skip": 16, "offset": 56, "next": [], "symbols": [{"name": "__end__catch", "hash": "da45336f07529d33e5bbb3a6b167eb71b28f76ae", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 1885349416}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 12646409}, "child": {"skip": 16, "offset": 56, "next": [], "symbols": [{"name": "__end__catch", "hash": "0b691aa3cd5ec7d2e2d65dc6310ab77542b47f86", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 411041797}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2143223808}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__floatdisf"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 0}, "child": {"skip": 40, "offset": 60, "next": [], "symbols": [{"name": "_f_ulltof", "hash": "2d20c9fc2c91497e84d93f0f186c3e969ae0f8c3", "variant": 3978821962, "library": "gcc_wrapper"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__floatdidf"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 0}, "child": {"skip": 48, "offset": 68, "next": [], "symbols": [{"name": "_d_ulltod", "hash": "685a6ca03132b572b06db564200a01e864fb9b15", "variant": 2404112708, "library": "gcc_wrapper"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707456}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__floatdisf"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 0}, "child": {"skip": 40, "offset": 60, "next": [], "symbols": [{"name": "_f_ulltof", "hash": "28c117035b225725d67d00f618f0700c26758027", "variant": 3978821962, "library": "gcc_wrapper"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__floatdidf"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 0}, "child": {"skip": 24, "offset": 44, "next": [{"match": {"value": 4202541}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "dpadd"}}, "child": {"skip": 16, "offset": 68, "next": [], "symbols": [{"name": "_d_ulltod", "hash": "3e7816e702c38be050289adb686014848da7d3e8", "variant": 2404112708, "library": "gcc_wrapper"}]}}], "symbols": []}}, {"match": {"value": 1883252264}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "dpadd"}}, "child": {"skip": 16, "offset": 68, "next": [], "symbols": [{"name": "_d_ulltod", "hash": "ec22d6bcff7ba56a51406acc0a29e8bffa97cbaa", "variant": 2404112708, "library": "gcc_wrapper"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 411041798}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__floatdisf"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 0}, "child": {"skip": 48, "offset": 68, "next": [], "symbols": [{"name": "_f_ulltof", "hash": "6374800427e4ded05c8ffd6b6f3a463836be66a0", "variant": 2016438555, "library": "gcc_wrapper"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__floatdidf"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 0}, "child": {"skip": 56, "offset": 76, "next": [], "symbols": [{"name": "_d_ulltod", "hash": "c5dfb627135d6411df8ba63f9bb6ee2618dd4a90", "variant": 887797338, "library": "gcc_wrapper"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 270396}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 270398}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 411041797}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2143223808}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__floatdidf"}}, "child": {"skip": 52, "offset": 76, "next": [], "symbols": [{"name": "_d_utod", "hash": "d3c087662dc91b87b0f820c064bf449f2b4c48e1", "variant": 487399936, "library": "gcc_wrapper"}]}}], "symbols": []}}, {"match": {"value": 4290707456}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__floatdidf"}}, "child": {"skip": 56, "offset": 80, "next": [], "symbols": [{"name": "_d_utod", "hash": "55aafef7690b231663bb5265c96a37dded69f5c1", "variant": 487399936, "library": "gcc_wrapper"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707456}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_d_ulltod"}}, "child": {"skip": 16, "offset": 32, "next": [], "symbols": [{"name": "_d_utod", "hash": "86a417fa872fa9a2f45c7cfb8c24d656180724ea", "variant": 2209823769, "library": "gcc_wrapper"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 268435460}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 40, "offset": 52, "next": [], "symbols": [{"name": "_extrainfo", "hash": "db380562d2ff5a828f2c35a37f140ca202be8975", "variant": 2356479769, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 1006768127}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 876806143}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 10627108}, "child": {"skip": 12, "offset": 32, "next": [{"match": {"value": 604110849}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 2900492464}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 2900689112}, "child": {"skip": 28, "offset": 72, "next": [], "symbols": [{"name": ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(sceMpegGetPicture", "hash": "5a7f773ca184f530f6d322ba6aef8f68af095528", "variant": 3570299169, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2900492488}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 2900689136}, "child": {"skip": 28, "offset": 72, "next": [], "symbols": [{"name": "sceMpegGetPicture", "hash": "0fbad6e137d221587aa6bf200fc0f4b9f4b83c89", "variant": 3570299169, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2900492484}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 2900689132}, "child": {"skip": 28, "offset": 72, "next": [], "symbols": [{"name": "sceMpegGetPicture", "hash": "93670c7ed74d3e968a954b9657d59f299cc3ddde", "variant": 3570299169, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2900754660}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 2900689112}, "child": {"skip": 28, "offset": 68, "next": [], "symbols": [{"name": "sceMpegGetPictureRAW8", "hash": "104fcc7bc516ae7c81351bbfba06b6fe1fff897a", "variant": 343350199, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2900754684}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 2900689136}, "child": {"skip": 28, "offset": 68, "next": [], "symbols": [{"name": "sceMpegGetPictureRAW8", "hash": "5eaf2b135e4729a002ae1f0c586196caef8fc994", "variant": 343350199, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2900754680}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 2900689132}, "child": {"skip": 28, "offset": 68, "next": [], "symbols": [{"name": "sceMpegGetPictureRAW8", "hash": "d6193a3113ade557f2a112d88472cf360ac88995", "variant": 343350199, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 13058072}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 876806143}, "child": {"skip": 24, "offset": 44, "next": [{"match": {"value": 2892431584}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 2892300504}, "child": {"skip": 28, "offset": 80, "next": [], "symbols": [{"name": "sceMpegGetPictureRAW8xy", "hash": "67122dca2f73ceb77b226f23c44dfb8792d03536", "variant": 2395841100, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2892431608}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 2892300528}, "child": {"skip": 28, "offset": 80, "next": [], "symbols": [{"name": "sceMpegGetPictureRAW8xy", "hash": "e52fc5597d9969d4708aaedfb897294b54903668", "variant": 2395841100, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2892431604}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 2892300524}, "child": {"skip": 28, "offset": 80, "next": [], "symbols": [{"name": "sceMpegGetPictureRAW8xy", "hash": "f25c86ccd2f94b2fdbf5eebcca90a068198d9719", "variant": 2395841100, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604241919}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2357329984}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2889875456}, "child": {"skip": 24, "offset": 44, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 3753836544}, "child": {"skip": 12, "offset": 64, "next": [], "symbols": [{"name": "sceMpegReset", "hash": "15a19b24a8299376bc24aff7c49bb794f3c6cc6d", "variant": 327600547, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 3753836544}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 2944401408, "relocation": {"type": "MIPS_GPREL16", "symbol": "_totalFrames"}}, "child": {"skip": 8, "offset": 60, "next": [], "symbols": [{"name": "sceMpegReset", "hash": "ef09f9fb8d7e8af654ac8e7299e3c3bbedad40c6", "variant": 1061167083, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2900557904}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2363621728}, "child": {"skip": 32, "offset": 52, "next": [], "symbols": [{"name": "calarm_handler", "hash": "e0e4e931f6e29e219e2fe99e742378da54739efd", "variant": 2052043115, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 14381}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 276824077}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707456}, "child": {"skip": 64, "offset": 80, "next": [], "symbols": [{"name": "_dispatchMpegCallback", "hash": "d4903742a8697c6a3d6f875db21c92faf47efbbb", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 4290707456}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceMpegDemuxPssRing"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 604569599}, "child": {"skip": 12, "offset": 32, "next": [], "symbols": [{"name": "sceMpegDemuxPss", "hash": "603a9bdf43edfeb7721c135c5a4942df26b0870d", "variant": 3394090243, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "i2d_ASN1_bytes"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2357592068}, "child": {"skip": 12, "offset": 32, "next": [], "symbols": [{"name": "i2d_ASN1_PRINTABLE", "hash": "8307b8352b2e75af05e9ee0f2cea95ffd27e3897", "variant": 262790556, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2156003344}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2424832017}, "child": {"skip": 128, "offset": 148, "next": [], "symbols": [{"name": "sceHiAddDataBlk", "hash": "1984d83b21176c53eb826d60fbc2fe920267c5f3", "variant": 3699189649, "library": "libhig"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8405037}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1356857345}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 461}, "child": {"skip": 64, "offset": 84, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_Error"}}, "child": {"skip": 0, "offset": 88, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 16, "offset": 108, "next": [], "symbols": [{"name": "_alalcAlloc", "hash": "f917d4f7001cdc029930aee6ca932e223f18c897", "variant": 1394679027, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceMpegError"}}, "child": {"skip": 0, "offset": 88, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 16, "offset": 108, "next": [], "symbols": [{"name": "_sceMpegAlalcAlloc", "hash": "f917d4f7001cdc029930aee6ca932e223f18c897", "variant": 2294430231, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 816119871}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1006878975}, "child": {"skip": 240, "offset": 260, "next": [], "symbols": [{"name": "sceHiGsCtxSetDepth", "hash": "44f380c3fc8f93bd6d18946793ce1e7a745f1bf0", "variant": 4128407006, "library": "libhig"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8402989}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1354760193}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 461}, "child": {"skip": 84, "offset": 104, "next": [], "symbols": [{"name": "_alalcAlloc", "hash": "5176db0270852a393126698dae912914d9ddc0b8", "variant": 1059966765, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 604176387}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2363752512}, "child": {"skip": 0, "offset": 20, "next": [{"match":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( {"value": 2357330292}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 272826373}, "child": {"skip": 40, "offset": 68, "next": [], "symbols": [{"name": "_decodeOrSkip", "hash": "3f0db97f58da40e0466312c02698bc66009c7718", "variant": 1806065151, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2357330316}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 272826373}, "child": {"skip": 40, "offset": 68, "next": [], "symbols": [{"name": "_decodeOrSkip", "hash": "b949be1dd28ec5026021dd2436e6e7483b56e817", "variant": 1806065151, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2357330308}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 272826373}, "child": {"skip": 40, "offset": 68, "next": [], "symbols": [{"name": "_decodeOrSkip", "hash": "b4d89a7d0f6ffd44e2abc1a9de9570348a059d0b", "variant": 1806065151, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2699428073}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2430730474}, "child": {"skip": 108, "offset": 128, "next": [], "symbols": [{"name": "sceHiGsCtxSwap", "hash": "084daa0b2db8df61c2e0fdba5511afa292fe10a3", "variant": 885517947, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 10502189}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 604110850}, "child": {"skip": 204, "offset": 224, "next": [], "symbols": [{"name": "handle_num", "hash": "2ea6a5fce902a2acdea91b735fb7e071a782c7dc", "variant": 1574895970, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2363621424}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 340066314}, "child": {"skip": 60, "offset": 80, "next": [], "symbols": [{"name": "ssl3_send_change_cipher_spec", "hash": "58e6b87cc0e93ed0ac5c228bfad32f9952e7ec7f", "variant": 3401491573, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2363621420}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 809631745}, "child": {"skip": 72, "offset": 92, "next": [], "symbols": [{"name": "SSL_write", "hash": "d83d69c72fc30ed9ecfbf9bf9a518ffc85bb0b64", "variant": 395241294, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 15011876}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 339738629}, "child": {"skip": 496, "offset": 512, "next": [], "symbols": [{"name": "sceHiGsCtxCopy", "hash": "f45642837438fec182bf070171cb5debd1d081be", "variant": 1780727373, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 283115523}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707456}, "child": {"skip": 496, "offset": 512, "next": [], "symbols": [{"name": "sceHiGsCtxCopy", "hash": "7c6654483b73be021b537cd5195fbf02233c0258", "variant": 1994049351, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 348127252}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707456}, "child": {"skip": 212, "offset": 228, "next": [], "symbols": [{"name": "sceHiGsCtxSetZbufDepth", "hash": "acac52be21f1a4f4cdd1210cd9c7e06658f12b83", "variant": 3216134927, "library": "libhig"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 748814338}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 40, "offset": 52, "next": [], "symbols": [{"name": "sceMpegSetBuffType", "hash": "8959fed6f126b9da3bc7a07219702a264f9f1ae7", "variant": 1863272396, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 12599341}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 14698541}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 604111088}, "child": {"skip": 100, "offset": 120, "next": [], "symbols": [{"name": "sceMSIn_PutExcMsg", "hash": "721b83059ff66dc5e529282ce611365644a7c270", "variant": 624912082, "library": "libmsin"}]}}], "symbols": []}}, {"match": {"value": 8402989}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 278921225}, "child": {"skip": 44, "offset": 64, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "EVP_EncryptInit"}}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 2366046212}, "child": {"skip": 24, "offset": 96, "next": [], "symbols": [{"name": "crypto_sslc_encrypt_init", "hash": "aa1f666926bd463a36aa0ca2e2ca09398b979013", "variant": 2098591974, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "EVP_DecryptInit"}}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 2366046212}, "child": {"skip": 24, "offset": 96, "next": [], "symbols": [{"name": "crypto_sslc_decrypt_init", "hash": "aa1f666926bd463a36aa0ca2e2ca09398b979013", "variant": 1148968145, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10498093}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 14698541}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 604307474}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2357460996}, "child": {"skip": 24, "offset": 52, "next": [], "symbols": [{"name": "DH_set", "hash": "7d7b84405ca356f1a88adb90a35985c96f2c7275", "variant": 2286605029, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604307472}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2357460996}, "child": {"skip": 28, "offset": 56, "next": [], "symbols": [{"name": "RSA_set", "hash": "bfcf4dfddd0db322ba1f3ac1ebae130c79784efa", "variant": 2286605029, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 12333}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "ssl3_handshake_mac"}}, "child": {"skip": 16, "offset": 36, "next": [], "symbols": [{"name": "ssl3_cert_verify_mac", "hash": "defe28c809a34ec2cf3e0e0151606a7f1ec106b4", "variant": 640971037, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2428698624}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 604111097}, "child": {"skip": 60, "offset": 72, "next": [], "symbols": [{"name": "sceMSIn_PutHsMsg", "hash": "e101b5018ea03351bf75d8e533dcda40add0f27e", "variant": 2809567230, "library": "libmsin"}]}}], "symbols": []}}, {"match": {"value": 2946760704}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2409758720}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006731264}, "child": {"skip": 40, "offset": 56, "next": [], "symbols": [{"name": "sceCccIsValidUCS4", "hash": "10c5bfc40c92a730cf0ac91e2d7a653e6f239081", "variant": 0, "library": "libccc"}]}}], "symbols": []}}, {"match": {"value": 2476933120}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2476867586}, "child": {"skip": 40, "offset": 56, "next": [], "symbols": [{"name": "sceEENetHtonl", "hash": "8158b9dba9ef3e3a2af0dcc960d8e3b7fdee2a0e", "variant": 0, "library": "libeenet"}, {"name": "sceEENetNtohl", "hash": "8158b9dba9ef3e3a2af0dcc960d8e3b7fdee2a0e", "variant": 0, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 612827168}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 16429}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2156003344}, "child": {"skip": 364, "offset": 384, "next": [], "symbols": [{"name": "sceHiGetInsPlug", "hash": "7b584072ef312e2cc3daf59b4975d2751e7c472b", "variant": 1526767788, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 18477}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2156003344}, "child": {"skip": 200, "offset": 220, "next": [], "symbols": [{"name": "sceHiGetPlugList", "hash": "27882fc35b7547f7e5d880e96f70f6b3a20ea870", "variant": 1906440701, "library": "libhig"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 18477}, "chil)PS2SDB", 8192}, + std::string_view{R"PS2SDB(d": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2156003344}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2156068881}, "child": {"skip": 216, "offset": 236, "next": [], "symbols": [{"name": "sceHiGetList", "hash": "420ce5810ad4ba1a166ae7d80aa29abdf7534cb2", "variant": 1594009061, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 415236114}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2357854208}, "child": {"skip": 252, "offset": 272, "next": [], "symbols": [{"name": "load_iv", "hash": "e4ed4ff41744dc4fc210bb9db7cd26e9c585a6d8", "variant": 1726045181, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 16429}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2156003344}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2156068881}, "child": {"skip": 408, "offset": 428, "next": [], "symbols": [{"name": "sceHiGetData", "hash": "a04002cba4379a45c31e8c34667ed7f47cd88f04", "variant": 3719355858, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 18477}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "SSLCERT_NAME_ENTRY_get_info"}}, "child": {"skip": 16, "offset": 36, "next": [], "symbols": [{"name": "SSLCERT_NAME_ENTRY_get_oid_info", "hash": "3a22f8bb1635e1cc20df387ff9abbb5257020b83", "variant": 427852779, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 612958240}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 148, "offset": 160, "next": [], "symbols": [{"name": "sceHiAddPlugBlk", "hash": "3031c1d2cf0c73b91a0cd11dc2637a8841434a06", "variant": 3621122199, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 612630560}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 60, "offset": 72, "next": [], "symbols": [{"name": "sceHiInsPlugBlk", "hash": "31772bc3a2eac8bd4288a75eb38399dd35b8a164", "variant": 793803040, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 405760}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 72, "offset": 84, "next": [], "symbols": [{"name": "sceHiInsDataBlk", "hash": "319f8dbbd67c686ffc1ee3cba057d87443302e08", "variant": 866713642, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 6189}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 4, "offset": 16, "next": [{"match": {"value": 406847500}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 612630560}, "child": {"skip": 64, "offset": 88, "next": [], "symbols": [{"name": "sceHiRmvPlugBlk", "hash": "212a7c02f99ebbfb9068e09d303998325ab66733", "variant": 3274925686, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 2156265489}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 135424}, "child": {"skip": 72, "offset": 96, "next": [], "symbols": [{"name": "sceHiRmvDataBlk", "hash": "ef5b29c1ab4e9d6ef6641188dcece2c52ef68dac", "variant": 3563243642, "library": "libhig"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604176388}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 813826051}, "child": {"skip": 96, "offset": 108, "next": [], "symbols": [{"name": "sceHiMemInit", "hash": "38e657cc5b1eece225af407a614e54028c5856ac", "variant": 578332016, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 746717186}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 339738629}, "child": {"skip": 52, "offset": 64, "next": [], "symbols": [{"name": "sceHiGsContextID", "hash": "3068c0370b6821e90afefbe8dff4734d535afd9c", "variant": 1799654590, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 8411181}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 358612997}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 14381}, "child": {"skip": 336, "offset": 356, "next": [], "symbols": [{"name": "sceHiGsPackedUpdate", "hash": "5001c32d0e188a26239912d6933e77ef72c50842", "variant": 706857875, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 10504237}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2774532116}, "child": {"skip": 380, "offset": 400, "next": [], "symbols": [{"name": "setupStartVoiceEnv", "hash": "298b588ea95846743a95f77a606c1f2013db97f6", "variant": 2117562919, "library": "libssyn"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 23074861}, "child": {"skip": 736, "offset": 752, "next": [], "symbols": [{"name": "mkAssPartInfo", "hash": "82409d39524073ce22ec7118b91213c92676a51a", "variant": 0, "library": "libssyn"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8407085}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 124, "offset": 136, "next": [], "symbols": [{"name": "sceHiGsEnvCopy", "hash": "53da8bfd2e1f11fe4e3d1a04a4c6e61093967788", "variant": 309235043, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 818284543}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 256, "offset": 268, "next": [], "symbols": [{"name": "sceHiGsEnvSetRegTrxpos", "hash": "9f6193b865f2aeceb2cf39187089babb485a6aab", "variant": 0, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 343932935}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 8, "offset": 20, "next": [{"match": {"value": 1413480455}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2353135644}, "child": {"skip": 44, "offset": 72, "next": [], "symbols": [{"name": "sceHiDMAGetChainHead", "hash": "8bf345ad18b18df5b40b55acc278d734752d2c3c", "variant": 3774861755, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 272629780}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 6189}, "child": {"skip": 92, "offset": 120, "next": [], "symbols": [{"name": "sceHiDMAGetChainTail", "hash": "291c177b4925ed4fb3bab033ce704c0de84e4cba", "variant": 3774861755, "library": "libhig"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006895153}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006960689}, "child": {"skip": 44, "offset": 56, "next": [], "symbols": [{"name": "mwInit", "hash": "8ef0dc6d5d09d65bd6876f61e64471c9d404aa22", "variant": 624376974, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 1006895165}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006960701}, "child": {"skip": 44, "offset": 56, "next": [], "symbols": [{"name": "mwInit", "hash": "3d23c19f6925a34be294d25a98bd0c9579a3a323", "variant": 624376974, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 268435464}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2143223808}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2355232768}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2944532480, "relocation": {"type": "MIPS_GPREL16", "symbol": "__global_destructor_chain"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2355363848}, "child": {"skip": 40, "offset": 64, "next": [], "symbols": [{"name": "__destroy_global_chain", "hash": "07805ef67fdd143be9e9ec508549cc1e0625e884", "variant": 3094828219, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 1006698496, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2887909376, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 44, "offset": 68, "next": [], "symbols": [{"name": "__destroy_global_)PS2SDB", 8192}, + std::string_view{R"PS2SDB(chain", "hash": "94f7848489b0947674f195fcefc52d7a91f96743", "variant": 1509514411, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707456}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2355232768}, "child": {"skip": 52, "offset": 68, "next": [], "symbols": [{"name": "__destroy_global_chain", "hash": "4e5b6b387a7876bcb24a700bbb88a373fe5a6a6f", "variant": 1509514411, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 816050176}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 604135424}, "child": {"skip": 316, "offset": 328, "next": [], "symbols": [{"name": "sceGpInitPacket", "hash": "bbe9a76a92bc9c3643e593b55731eea2173163f0", "variant": 1035695844, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 10506285}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 504, "offset": 516, "next": [], "symbols": [{"name": "sceGpSetTexEnv", "hash": "8f9e17c1c3de8cd86acdb1043e5732f1bad59b00", "variant": 0, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 77594628}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 68, "offset": 80, "next": [], "symbols": [{"name": "sceSSyn_SetMasterVolume", "hash": "c19c49cefcba74a385fb9b45c7a5e2729ec2c2a0", "variant": 1399878190, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 276824070}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 52, "offset": 64, "next": [], "symbols": [{"name": "sceSSyn_SendShortMsg", "hash": "eb4c4ee966dfecddec9917c32c4fbe0fc6e105ab", "variant": 3098037843, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 820445439}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 276824072}, "child": {"skip": 88, "offset": 100, "next": [], "symbols": [{"name": "sceSSyn_SetChPriority", "hash": "0a984b5f0f41280e93899cdaade8359442ac86d5", "variant": 3611149836, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 813957375}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 64, "offset": 76, "next": [{"match": {"value": 2355232768}, "child": {"skip": 0, "offset": 80, "next": [{"match": {"value": 4257801}, "child": {"skip": 16, "offset": 100, "next": [], "symbols": [{"name": "_sceSSyn_getVelocityModify", "hash": "ac8bdf509bdee64341057b89cd83313756b2188c", "variant": 3694720891, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 2355429376}, "child": {"skip": 0, "offset": 80, "next": [{"match": {"value": 10549257}, "child": {"skip": 44, "offset": 128, "next": [], "symbols": [{"name": "_sceSSyn_getAmpVelocity", "hash": "5e7c4c3ffb5800b0669df205a79e154d3465f62f", "variant": 3694720891, "library": "libssyn"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8237}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceSkSsSTRADPCM_Control"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 604307711}, "child": {"skip": 16, "offset": 36, "next": [], "symbols": [{"name": "sceSkSsSTRADPCM_Quit", "hash": "72189fb91ec1833884c999f2eeaddae7154dc2c6", "variant": 2141702777, "library": "libsk"}]}}], "symbols": []}}, {"match": {"value": 10285}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 12333}, "child": {"skip": 24, "offset": 44, "next": [], "symbols": [{"name": "ERR_peek_error", "hash": "7ebce3f98bbd3d846a65c24286a9a3891a142311", "variant": 4219974952, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604307503}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 100, "offset": 112, "next": [], "symbols": [{"name": "isCorrNameSize", "hash": "f1c7824999c67b96540d97c47a2c0fb3074d2a08", "variant": 1872501597, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 478150660}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 20, "offset": 32, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "ChangeThreadPriority"}}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 2353266688, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 16, "offset": 56, "next": [], "symbols": [{"name": "sceMc2ChangeThreadPriority", "hash": "c16e92f14acd2e9d735afedd6192c6fd786185e6", "variant": 3817030557, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "iChangeThreadPriority"}}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 2353266688, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 16, "offset": 56, "next": [], "symbols": [{"name": "sceMc2iChangeThreadPriority", "hash": "c16e92f14acd2e9d735afedd6192c6fd786185e6", "variant": 2077106650, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604440576}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 24, "offset": 36, "next": [], "symbols": [{"name": "sceSifMBindRpc", "hash": "e29c1db97fd54b99b92a9ecc691e39688063bb70", "variant": 1185818472, "library": "libmrpc"}]}}], "symbols": []}}, {"match": {"value": 604195156}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 108, "offset": 120, "next": [], "symbols": [{"name": "CheckTim2Header", "hash": "cc69e7cc5203131028fef851dca4ce6956045417", "variant": 3364646526, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 4290641920}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 60878893}, "child": {"skip": 28, "offset": 40, "next": [], "symbols": [{"name": "__sceNetGlueErrnoLoc", "hash": "5f75a52930f2f4a5c4f06dd1a84919a155b76250", "variant": 1660426063, "library": "netglue_insck"}, {"name": "__sceNetGlueHErrnoLoc", "hash": "5f75a52930f2f4a5c4f06dd1a84919a155b76250", "variant": 1660426063, "library": "netglue_insck"}]}}], "symbols": []}}, {"match": {"value": 604176385}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2357330112}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2353276472}, "child": {"skip": 24, "offset": 44, "next": [], "symbols": [{"name": "smap_term", "hash": "bbfc999669785b6a4edbe0c5ec7473444ff5b7d8", "variant": 1565123149, "library": "ent_smap"}]}}], "symbols": []}}, {"match": {"value": 2357329920}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 339935239}, "child": {"skip": 40, "offset": 60, "next": [], "symbols": [{"name": "x509_object_hash", "hash": "6b64da201321a9cff8c4c15208378f5716599b63", "variant": 3099377070, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2812542976}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2476867584}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "sceEENetHtons", "hash": "fecd08d33720e493b1559c6e25d0fc7b244c244b", "variant": 0, "library": "libeenet"}, {"name": "sceEENetNtohs", "hash": "fecd08d33720e493b1559c6e25d0fc7b244c244b", "variant": 0, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 604307466}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 36, "offset": 48, "next": [], "symbols": [{"name": "__sceEENetsoabort", "hash": "abeef119c849b08a0ae74cc8522d1150cc09fff9", "variant": 0, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 334394}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 100, "offset": 112, "next": [], "symbols": [{"name": "__sceEENetsoioctl", "hash": "de4bebb9a9c08c1842a9ddf1e79c0309b5873ae8", "variant": 676371130, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"v)PS2SDB", 8192}, + std::string_view{R"PS2SDB(alue": 278921245}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 124, "offset": 136, "next": [], "symbols": [{"name": "__sceEENetsbappend", "hash": "e85f6df66408c7324d7c90420110327abd46cbf9", "variant": 2264819818, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 14700589}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 200, "offset": 212, "next": [], "symbols": [{"name": "__sceEENettcp_sysctl", "hash": "2b17b51b6b7a27a48d411becc226783bb1d934cf", "variant": 2112180005, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 10508333}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 280, "offset": 292, "next": [], "symbols": [{"name": "__sceEENetudp_ctlinput", "hash": "a5f2b3408a9096dc8a9955197a45f932c120d8f3", "variant": 1681408885, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 60833837}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2156068864}, "child": {"skip": 424, "offset": 436, "next": [], "symbols": [{"name": "sceEENetInetNetwork", "hash": "7a0baecf8dd509b474600ea06e86ff7399c3c0c3", "variant": 539996191, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 604176426}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 60, "offset": 72, "next": [], "symbols": [{"name": "__sceEENetres_ownok", "hash": "00f7b70198885444cd6d27f86c127447aeb6ec0d", "variant": 3570211296, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2156003328}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 339738627}, "child": {"skip": 164, "offset": 176, "next": [], "symbols": [{"name": "__sceEENetres_mailok", "hash": "ee6553d8fcf493543d9f118a6aa283bd9fe717eb", "variant": 245664943, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 10500141}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 604110860}, "child": {"skip": 116, "offset": 128, "next": [], "symbols": [{"name": "dhclient_stat", "hash": "95dbdf14ca69ef447aa38bcd64d463aa16b6420e", "variant": 3022948094, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 684195842}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 14381}, "child": {"skip": 148, "offset": 160, "next": [], "symbols": [{"name": "_sce_eenet_dhclient_udp_cksum", "hash": "57f5e76c56cb02719782dbfadaecfbca6690fdb2", "variant": 0, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 612761604}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 224, "offset": 236, "next": [], "symbols": [{"name": "set_mediatype", "hash": "e9a7332c9fdc5f750c9ad8f8466fcedb684a7dfb", "variant": 788443880, "library": "eenetctl"}]}}], "symbols": []}}, {"match": {"value": 343932931}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 268435461}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4141}, "child": {"skip": 28, "offset": 48, "next": [], "symbols": [{"name": "sceHTTPIsAbsoluteURI", "hash": "0a524476034599be615a8bdccfd1881e359b0c02", "variant": 1968779132, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 268435474}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4141}, "child": {"skip": 80, "offset": 100, "next": [], "symbols": [{"name": "sceHTTPInitMemory", "hash": "cd576d6fed9485488ad741b3e1f842a2acb11dd6", "variant": 3601265617, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 268435462}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4141}, "child": {"skip": 32, "offset": 52, "next": [], "symbols": [{"name": "X509_EXTENSION_set_data", "hash": "43e5996a50ecf05e4cba08fe50e9cdd384fef51d", "variant": 2879363195, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604176383}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 36, "offset": 48, "next": [], "symbols": [{"name": "sceHTTPLibAbortIO", "hash": "12303ee1a04e471aa260c6ae596cb2c4e353d390", "variant": 667465265, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 681705475}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 272629763}, "child": {"skip": 72, "offset": 84, "next": [], "symbols": [{"name": "sceHTTPLibDateToTime", "hash": "e7fa1ff15eba6eedb5a4661dfbffbf4a1c25ea06", "variant": 949110590, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604373015}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "i2d_ASN1_UTCTIME", "hash": "0b85c70debc0d1300bcb7a68757586f4fc241066", "variant": 262790556, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604372996}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "i2d_ASN1_OCTET_STRING", "hash": "bc9d4db7ca26ac443c58f3ff91aca16832004eca", "variant": 262790556, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604438532}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 56, "offset": 68, "next": [], "symbols": [{"name": "d2i_ASN1_OCTET_STRING", "hash": "17515b393d4e130b92061f41bbdadbf61b0c4efc", "variant": 4237852418, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 12589101}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 32, "offset": 44, "next": [], "symbols": [{"name": "sslcert_do_application_verify_cb", "hash": "ee37c6fd3b2879992841d12c16db22ea03d28645", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604110851}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 52, "offset": 64, "next": [], "symbols": [{"name": "crypto_sslc_digest_update", "hash": "268d78fb323fe8a5e9cef6494eb85cb98bdcc397", "variant": 907680515, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 405564}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 32, "offset": 44, "next": [], "symbols": [{"name": "EVP_DigestUpdate", "hash": "2eaf722f2a1745ed766d6f096f36c2843338a6c1", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604241921}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 32, "offset": 44, "next": [], "symbols": [{"name": "ERR_get_error", "hash": "f75e46cd4816c0b657ca5d601250edb4e91ebc44", "variant": 4219974952, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 83951618}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 48, "offset": 60, "next": [], "symbols": [{"name": "EVP_CipherInit", "hash": "2e2c1f62628647b5f52d26258c85f6838e444767", "variant": 3717240086, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 348127237}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 36, "offset": 48, "next": [], "symbols": [{"name": "EVP_read_pw_string", "hash": "d7e46145791920305a5521620972bf7be8fc0504", "variant": 3001188017, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604110854}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 4, "offset": 16, "next": [{"match": {"value": 274857994}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 604110964}, "child": {"skip": 72, "offset": 96, "next": [], "symbols": [{"name": "i2d_PublicKey", "hash": "1e221283887bb966550183f91b9f3cac871bc0a0", "variant": 417307456, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 1415708677}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 604110964}, "child": {"skip": 56, "offset": 80, "next": [], "symbols": [{"name": "EVP_PKEY_bits", "hash": "6d7240ece807098bd3054c64df6d)PS2SDB", 8192}, + std::string_view{R"PS2SDB(8012820ee11b", "variant": 1215720339, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 276824079}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 72, "offset": 84, "next": [], "symbols": [{"name": "EVP_PKEY_size", "hash": "73458bee863a3d3e4f515a45ed8125711adf914e", "variant": 4202743127, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 614727679}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 136, "offset": 148, "next": [], "symbols": [{"name": "pk_rsa_sslc", "hash": "44b5089b763636f3700f459dba0e27ff7b77edbb", "variant": 2274190788, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 18880557}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 811730944}, "child": {"skip": 264, "offset": 276, "next": [], "symbols": [{"name": "rsa_padding_check_SSLv23", "hash": "dbdac73932c8eb5a1a0c1d33dd76f0058dd5582d", "variant": 3507449753, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604110850}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 344064005}, "child": {"skip": 12, "offset": 24, "next": [{"match": {"value": 268435471}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 3753836544}, "child": {"skip": 64, "offset": 96, "next": [], "symbols": [{"name": "ssl23_get_client_method", "hash": "e7dbde7ee7e328ffdd28880c6547c506afe175ed", "variant": 2785504200, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 268435459}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 3753836544}, "child": {"skip": 16, "offset": 48, "next": [], "symbols": [{"name": "ssl2_get_client_method", "hash": "157e3a4f1208f1ada217d578a4d447f37a713227", "variant": 1963524841, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 614727648}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 308, "offset": 320, "next": [], "symbols": [{"name": "SSL_ctrl", "hash": "e1ce9a64599a721a2c9f34079f3de73ca454640d", "variant": 1622982697, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 614727660}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 436, "offset": 448, "next": [], "symbols": [{"name": "SSL_CTX_ctrl", "hash": "58166e98cedbcc9867e1f1b1e10451a1cf28568f", "variant": 1622982697, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604241940}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 604307654}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 604373026}, "child": {"skip": 28, "offset": 48, "next": [], "symbols": [{"name": "ssl_undefined_function", "hash": "187df728468edf7f389cbfc72f36be0fd5e7634f", "variant": 950766815, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604307617}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 604373026}, "child": {"skip": 28, "offset": 48, "next": [], "symbols": [{"name": "ssl_bad_method", "hash": "f0d1ef1eb837b7443b930fa2445169be935b5862", "variant": 950766815, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604111616}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 344064005}, "child": {"skip": 36, "offset": 48, "next": [], "symbols": [{"name": "ssl3_get_client_method", "hash": "58395d11b6fc0e1d84cb9f7629cb8d2448dc9f92", "variant": 3438467329, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604241936}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 36, "offset": 48, "next": [], "symbols": [{"name": "SIO_socket_nbio", "hash": "f3c4d1183b3b930644a91e51a0553b1bdb6aa7ca", "variant": 950766815, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 612630529}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 746848258}, "child": {"skip": 8, "offset": 20, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__errno"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 0}, "child": {"skip": 32, "offset": 60, "next": [], "symbols": [{"name": "SIO_fd_should_retry", "hash": "6d1af1d1e3e9f878d952a2a10d87a2755624f6c1", "variant": 1027734783, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__sceNetGlueErrnoLoc"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 0}, "child": {"skip": 32, "offset": 60, "next": [], "symbols": [{"name": "SIO_sock_should_retry", "hash": "6d1af1d1e3e9f878d952a2a10d87a2755624f6c1", "variant": 3365723316, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2357592064}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "sk_push", "hash": "0d345dff412b6733f55c35af6e9dee8b098b0643", "variant": 3351460980, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604111617}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 344064005}, "child": {"skip": 36, "offset": 48, "next": [], "symbols": [{"name": "tls1_get_client_method", "hash": "d1663b1f10ef3b3232e21f831cdec1093e722015", "variant": 658878723, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 276824071}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 52, "offset": 64, "next": [], "symbols": [{"name": "X509v3_delete_ext", "hash": "a04578105d57e8fb75f8af9c323db09dcab7b065", "variant": 2967003288, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 473216}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 72, "offset": 84, "next": [], "symbols": [{"name": "MemcpyS", "hash": "d6c96cc0596f819649dc43109b0ff22e009c6243", "variant": 675854036, "library": "libnet"}]}}], "symbols": []}}, {"match": {"value": 10493997}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 32, "offset": 44, "next": [], "symbols": [{"name": "StrcpyS", "hash": "3e5c37b9b1093c57bbc78e74d2cae2f3635e307a", "variant": 1515422146, "library": "libnet"}]}}], "symbols": []}}, {"match": {"value": 14696493}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 24, "offset": 36, "next": [], "symbols": [{"name": "GetMyAddress", "hash": "406da9743648ca5ba01942fb72d7e0f3a591aa2b", "variant": 93315042, "library": "libnet"}]}}], "symbols": []}}, {"match": {"value": 824770562}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 287309829}, "child": {"skip": 40, "offset": 52, "next": [], "symbols": [{"name": "sceLibnetWaitGetAddress", "hash": "777a9fe58b46a6429bae63a0052012570a0687be", "variant": 687373912, "library": "libnet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666763056}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724560}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006862336}, "child": {"skip": 12, "offset": 28, "next": [{"match": {"value": 878903557}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4290707648}, "child": {"skip": 156, "offset": 192, "next": [], "symbols": [{"name": "scePadSetMainMode", "hash": "7921344f7c40e9de9eb86b9b364f92a2b75507aa", "variant": 1016280540, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 878903561}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4290707648}, "child": {"skip": 152, "offset": 188, "next": [], "symbols": [{"name": "scePadSetButtonInfo", "hash": "6c90a7fb78554807f7b3f061492d370c5b4e7a5c", "variant": 195546114, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( 4289855568}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2151809024, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 768, "offset": 784, "next": [], "symbols": [{"name": "read_headers", "hash": "d681f7f0f5227a87da3b710d48fafb796acb374a", "variant": 531119144, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855664}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006796800}, "child": {"skip": 204, "offset": 220, "next": [], "symbols": [{"name": "scePadSetActAlign", "hash": "648d88b05d3238ab463770199125a8b22398c275", "variant": 677349201, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 4289855648}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2355232768, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 16, "offset": 32, "next": [{"match": {"value": 273809482}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 4289724544}, "child": {"skip": 180, "offset": 220, "next": [{"match": {"value": 1006960675}, "child": {"skip": 0, "offset": 224, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "basic_thread"}}, "child": {"skip": 136, "offset": 364, "next": [], "symbols": [{"name": "sceMc2Init", "hash": "707894eb3afe31f529a328d0f5ede721b0701f15", "variant": 1364027485, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 1006960686}, "child": {"skip": 0, "offset": 224, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "basic_thread"}}, "child": {"skip": 136, "offset": 364, "next": [], "symbols": [{"name": "sceMc2Init", "hash": "5379c201cafbdfbad7fa76762985cc6a85ff1a75", "variant": 1364027485, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 1006960699}, "child": {"skip": 0, "offset": 224, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "basic_thread"}}, "child": {"skip": 136, "offset": 364, "next": [], "symbols": [{"name": "sceMc2Init", "hash": "ca5829c3e4bf04ef1ac2a6a90c83cd3c1744ea1f", "variant": 1364027485, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 273809470}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 4289724544}, "child": {"skip": 124, "offset": 164, "next": [{"match": {"value": 1007026176, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 168, "next": [{"match": {"value": 610467840, "relocation": {"type": "MIPS_LO16", "symbol": "basic_thread"}}, "child": {"skip": 144, "offset": 316, "next": [], "symbols": [{"name": "sceMc2Init", "hash": "5bee0087636a3720a4a876bd7dfc9f85117c9b48", "variant": 2761202762, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 1007026209}, "child": {"skip": 0, "offset": 168, "next": [{"match": {"value": 610467840, "relocation": {"type": "MIPS_LO16", "symbol": "basic_thread"}}, "child": {"skip": 4, "offset": 176, "next": [{"match": {"value": 617000432}, "child": {"skip": 0, "offset": 180, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 132, "offset": 316, "next": [], "symbols": [{"name": "sceMc2Init", "hash": "7c58078eeb0772007773abb6a4254d2a47a4d023", "variant": 520447434, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 616996848}, "child": {"skip": 0, "offset": 180, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 132, "offset": 316, "next": [], "symbols": [{"name": "sceMc2Init", "hash": "d2ffa5f90046956b028536b55af7575f96208bf6", "variant": 520447434, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855648}, "child": {"skip": 340, "offset": 352, "next": [], "symbols": [{"name": "sceMc2Init", "hash": "fce5772d49c60660badfbef0e3369cde8e0897a2", "variant": 3214478082, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 338944}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724464}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 541696}, "child": {"skip": 28, "offset": 44, "next": [{"match": {"value": 373763}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 4289855568}, "child": {"skip": 448, "offset": 500, "next": [{"match": {"value": 2409824288}, "child": {"skip": 0, "offset": 504, "next": [{"match": {"value": 4206637}, "child": {"skip": 156, "offset": 664, "next": [], "symbols": [{"name": "sceGsSetDefDBuff", "hash": "d17a6e4d8b85ebefd7978ac72e8448da6adcd01a", "variant": 557164374, "library": "libgraph"}]}}], "symbols": []}}, {"match": {"value": 2409889824}, "child": {"skip": 0, "offset": 504, "next": [{"match": {"value": 4206637}, "child": {"skip": 140, "offset": 648, "next": [], "symbols": [{"name": "sceGsSetDefDBuff", "hash": "2b5ca9bb799d7af5b3b08aabbc08092732680fd1", "variant": 557164374, "library": "libgraph"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 570371}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 4289855568}, "child": {"skip": 688, "offset": 740, "next": [], "symbols": [{"name": "sceGsSetDefDBuffDc", "hash": "389549a638383ae2db196e78182b5d31e8d1de00", "variant": 3550361398, "library": "libgraph"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290642096}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 541696}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290183328}, "child": {"skip": 60, "offset": 80, "next": [{"match": {"value": 10530861}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 8425517}, "child": {"skip": 596, "offset": 684, "next": [], "symbols": [{"name": "sceGsSetDefDBuff", "hash": "029bd2fd4311f923dafdc5e947f302a1194a5e23", "variant": 1221534656, "library": "libgraph"}]}}], "symbols": []}}, {"match": {"value": 10528813}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 8425517}, "child": {"skip": 672, "offset": 760, "next": [], "symbols": [{"name": "sceGsSetDefDBuffDc", "hash": "a0bfd6160b77f54c6bb35a4ef4e2c7dedb9506af", "variant": 2271570937, "library": "libgraph"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 338947}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290183328}, "child": {"skip": 168, "offset": 188, "next": [{"match": {"value": 33572909}, "child": {"skip": 0, "offset": 192, "next": [{"match": {"value": 641990992}, "child": {"skip": 448, "offset": 644, "next": [], "symbols": [{"name": "sceGsSetDefDBuff", "hash": "3c220e4477a88f64e7a96995adc7cd39d5a9eb93", "variant": 955861602, "library": "libgraph"}]}}], "symbols": []}}, {"match": {"value": 641990880}, "child": {"skip": 0, "offset": 192, "next": [{"match": {"value": 46147629}, "child": {"skip": 524, "offset": 720, "next": [], "symbols": [{"name": "sceGsSetDefDBuffDc", "hash": "cd375fffaf2f3dc04b5d361f2e6b1ba466b3f917", "variant": 2080281796, "library": "libgraph"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290183344}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290052240}, "child": {"skip": 124, "offset": 136, "next": [{"match": {"value": 268435529}, "child": {"skip": 0, "offset": 140, "next": [{"match": {"value": 604176375}, "child": {"skip": 332, "offset": 476, "next": [], "symbols": [{"name": "sceIoctl2", "hash": "c6e1822f3171f3813a3e2414d311dfe45b46574b", "variant": 4143091654, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 268435527}, "child": {"skip": 0, "offset": 140, "next": [{"match": {"value": 604176375}, "child": {"skip": 324, "offset": 468, "next": [], "sy)PS2SDB", 8192}, + std::string_view{R"PS2SDB(mbols": [{"name": "sceIoctl2", "hash": "077acb9d2fce9544d80eb82c03a9c1175320b436", "variant": 3167538429, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 268435532}, "child": {"skip": 0, "offset": 140, "next": [{"match": {"value": 604176375}, "child": {"skip": 344, "offset": 488, "next": [], "symbols": [{"name": "sceIoctl2", "hash": "d129a9a95242a23cb738219744edbb1a6ead97ec", "variant": 3938159300, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290117792}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289790032}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10530861}, "child": {"skip": 8, "offset": 24, "next": [{"match": {"value": 4289855584}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 46145581}, "child": {"skip": 388, "offset": 420, "next": [], "symbols": [{"name": "_sceCallCode", "hash": "f9c4d28e0fd3bba3ae876e2edb801da07664dd68", "variant": 1221828656, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 4289921136}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 46145581}, "child": {"skip": 400, "offset": 432, "next": [], "symbols": [{"name": "_sceCallCode", "hash": "e321676468fccbc2c1b792fc37c45b29a190d00d", "variant": 2463814557, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290052240}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 18919469}, "child": {"skip": 272, "offset": 288, "next": [], "symbols": [{"name": "sceEENetSysctl", "hash": "aff2cb974094034acd98a2a7dc936d43d36d587e", "variant": 2078655613, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289790032}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290117792}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8423469}, "child": {"skip": 12, "offset": 28, "next": [{"match": {"value": 604241927}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4290707648}, "child": {"skip": 72, "offset": 108, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 112, "next": [{"match": {"value": 666042416}, "child": {"skip": 324, "offset": 440, "next": [], "symbols": [{"name": "sceMkdir", "hash": "a76e1a1e7a50eb2a519a8c642e0dbcef931f7f79", "variant": 3349127278, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 666042416}, "child": {"skip": 0, "offset": 112, "next": [{"match": {"value": 1008009216, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 312, "offset": 428, "next": [], "symbols": [{"name": "sceMkdir", "hash": "de45ef47ca29f1fdd6cb691d99d4377419a7378c", "variant": 1132855288, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604241932}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4290707648}, "child": {"skip": 64, "offset": 100, "next": [{"match": {"value": 274726926}, "child": {"skip": 0, "offset": 104, "next": [{"match": {"value": 2722234384}, "child": {"skip": 308, "offset": 416, "next": [], "symbols": [{"name": "sceGetstat", "hash": "7d65ee9f3222aec1b8ea43535b1a2f85674d6eb6", "variant": 2592606438, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 274726928}, "child": {"skip": 0, "offset": 104, "next": [{"match": {"value": 2722234384}, "child": {"skip": 328, "offset": 436, "next": [], "symbols": [{"name": "sceGetstat", "hash": "3cd3aba3ccedd1b302b6e6cd8f68e83f9da48ce1", "variant": 2158668548, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290052240}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8423469}, "child": {"skip": 440, "offset": 456, "next": [], "symbols": [{"name": "sceReadlink", "hash": "b323f1eb4f5241b913722f85369dc60fe55c1c99", "variant": 3922437270, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724480}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290117792}, "child": {"skip": 284, "offset": 296, "next": [{"match": {"value": 268435525}, "child": {"skip": 0, "offset": 300, "next": [{"match": {"value": 604176377}, "child": {"skip": 316, "offset": 620, "next": [], "symbols": [{"name": "sceFormat", "hash": "0f6e51cefc455abe419c7379305cabc626a7a2c6", "variant": 627322604, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 268435530}, "child": {"skip": 0, "offset": 300, "next": [{"match": {"value": 604176377}, "child": {"skip": 336, "offset": 640, "next": [], "symbols": [{"name": "sceFormat", "hash": "b334fee9c5fe3e4871eed8e2c3925b2f0c09a5ae", "variant": 413428085, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006862336}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855664}, "child": {"skip": 204, "offset": 216, "next": [], "symbols": [{"name": "scePadSetVrefParam", "hash": "80bf06399598097ffdf3e0cf7e02efa23823675c", "variant": 3296222458, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 24621}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724448}, "child": {"skip": 20, "offset": 32, "next": [{"match": {"value": 4289331392}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 608567300}, "child": {"skip": 256, "offset": 296, "next": [{"match": {"value": 268435496}, "child": {"skip": 0, "offset": 300, "next": [{"match": {"value": 20525}, "child": {"skip": 192, "offset": 496, "next": [], "symbols": [{"name": "sceSdRemote", "hash": "b42a4a9b9875d333a068fabab5dc9b0645a2fc40", "variant": 2051576108, "library": "libsdr"}]}}], "symbols": []}}, {"match": {"value": 268435482}, "child": {"skip": 0, "offset": 300, "next": [{"match": {"value": 20525}, "child": {"skip": 136, "offset": 440, "next": [], "symbols": [{"name": "sceSdRemote", "hash": "c7541cfc65324eadb0351344bd0c6eb4f426c992", "variant": 512042651, "library": "libsdr"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289396936}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 608567300}, "child": {"skip": 468, "offset": 508, "next": [], "symbols": [{"name": "sceSdRemote", "hash": "6db2311a3456d0f0e4b1cddddbe283eafb958504", "variant": 898733244, "library": "libsdr"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724448}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 664993952}, "child": {"skip": 504, "offset": 516, "next": [], "symbols": [{"name": "sceSdRemote", "hash": "ae7636cdfbd5774abfd05b3ceac90fc46d7ba1bf", "variant": 342852256, "library": "libsdr"}]}}], "symbols": []}}, {"match": {"value": 4289986672}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707648}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290642096}, "child": {"skip": 1032, "offset": 1048, "next": [{"match": {"value": 60854317}, "child": {"skip": 0, "offset": 1052, "next": [{"match": {"value": 605028353}, "child": {"skip": 252, "offset": 1308, "next": [], "symbols": [{"name": "__ieee754_rem_pio2", "hash": "98bc86229df74d5fd35c6b18e509b1372b4637ce", "variant": 940868518, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 873824992}, "child": {"skip": 0, "offset": 1052, "next": [{"match": {"value": 1420284}, "child": {"skip": 252, "offset": 1308, "next": [], "symbols": [{"name": "__ieee754_rem_pio2", "hash": "1074f8c15277b8d8a075448712f3d8b25c59272a", "variant": 344815806, "library": "libm"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855568}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8429613}, "child": {"skip": 1708, "offset": 1724, "next": [], "symbols": [{"name": "_scePFontUpdateTex", "hash": "7b4ff314eca09c27f452f4c1d3bb1d46f460de0f", "variant": 1027752497, "library": "libpfont"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855568}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289003520}, "child":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( {"skip": 0, "offset": 12, "next": [{"match": {"value": 8425517}, "child": {"skip": 40, "offset": 56, "next": [{"match": {"value": 176191}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 178236}, "child": {"skip": 3304, "offset": 3368, "next": [], "symbols": [{"name": "__ieee754_pow", "hash": "f3ce100d5f6d326ca63d6f3d909753b3aceaaad6", "variant": 2502776233, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 178239}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 192572}, "child": {"skip": 3320, "offset": 3384, "next": [], "symbols": [{"name": "__ieee754_pow", "hash": "c4a7623ab2eb801f750ad1abfa08a1181ef47da2", "variant": 1810082380, "library": "libm"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289790016}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 14716973}, "child": {"skip": 544, "offset": 560, "next": [], "symbols": [{"name": "sceHiGsTex0Regs", "hash": "15695864e4ee20afabb79a474bfb0a198a3fd94a", "variant": 3125242331, "library": "libhig"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289986720}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 665190468}, "child": {"skip": 500, "offset": 512, "next": [], "symbols": [{"name": "_slice0", "hash": "adb3b5987af8caeff2e1702a00eba0ef690b8e77", "variant": 631738763, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 1007357952}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290117776}, "child": {"skip": 12, "offset": 24, "next": [{"match": {"value": 4289855568}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 876806143}, "child": {"skip": 52, "offset": 84, "next": [{"match": {"value": 2382627152}, "child": {"skip": 0, "offset": 88, "next": [{"match": {"value": 2372075520}, "child": {"skip": 1100, "offset": 1192, "next": [], "symbols": [{"name": "_decMB0", "hash": "401be9485cc66996a62f19b3d9d68fa3ee8c728e", "variant": 3814236179, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2382627176}, "child": {"skip": 0, "offset": 88, "next": [{"match": {"value": 2372075520}, "child": {"skip": 1100, "offset": 1192, "next": [], "symbols": [{"name": "_decMB0", "hash": "18290710b54566c608bcf41e861ca0f3d4f9ec4f", "variant": 3814236179, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289921120}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 876806143}, "child": {"skip": 1336, "offset": 1368, "next": [], "symbols": [{"name": "_decMB0", "hash": "1416afe550e1bffa74bd83dda7f010a9440ca677", "variant": 2545988575, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604372994}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289921152}, "child": {"skip": 1228, "offset": 1240, "next": [], "symbols": [{"name": "_sceMpegCscStoreRefImage", "hash": "b28fdf8ec5c418e5b8ca0ea8653602d8e0e46110", "variant": 3180647397, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 604110849}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2946760704}, "child": {"skip": 1976, "offset": 1988, "next": [], "symbols": [{"name": "procParaVoices", "hash": "e417bfc4268a409aa1cd45a5f86f80594eefabb9", "variant": 4283367913, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1007812608, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 76, "offset": 88, "next": [{"match": {"value": 2923429888, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 92, "next": [{"match": {"value": 604110850}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 2919366656}, "child": {"skip": 100, "offset": 200, "next": [], "symbols": [{"name": "sceSkSsSOUND_Control", "hash": "9320e3048bd778d34f58d96fb7da81f004170870", "variant": 4290680388, "library": "libsk"}]}}], "symbols": []}}, {"match": {"value": 604110858}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 2919366656}, "child": {"skip": 88, "offset": 188, "next": [], "symbols": [{"name": "sceSkSsSOUND_Send", "hash": "eb0b07f572a1224db3273f2f62bdcbca95f02e3e", "variant": 1398035858, "library": "libsk"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764288}, "child": {"skip": 0, "offset": 92, "next": [{"match": {"value": 2409824408}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 2923560960, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 112, "offset": 212, "next": [], "symbols": [{"name": "sceSkSsHSYNTH_Bind", "hash": "75867768ef02834a49a0a3a74c13e664c2658ee9", "variant": 1695775770, "library": "libsk"}]}}], "symbols": []}}, {"match": {"value": 604176385}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 2923560960, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 68, "offset": 168, "next": [], "symbols": [{"name": "sceSkSsHSYNTH_Unbind", "hash": "f5c847b75f745f2221ff7d737344543feb6b8858", "variant": 803860562, "library": "libsk"}]}}], "symbols": []}}, {"match": {"value": 604176386}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 2923560960, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 92, "offset": 192, "next": [], "symbols": [{"name": "sceSkSsHSYNTH_Control", "hash": "8fe84b8f9d8496e2bc2956ca84df698512599de9", "variant": 3735561905, "library": "libsk"}]}}], "symbols": []}}, {"match": {"value": 604176387}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 2923560960, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 80, "offset": 180, "next": [], "symbols": [{"name": "sceSkSsHSYNTH_Status", "hash": "571de54b4525ca746c948c80d0cda6bbce8e6a4f", "variant": 1269845728, "library": "libsk"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764544}, "child": {"skip": 0, "offset": 92, "next": [{"match": {"value": 2410086552}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 2923560960, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 88, "offset": 188, "next": [], "symbols": [{"name": "sceSkSsMIDI_Bind", "hash": "d9c0a83f228c7cab588d48ee0ff39daf8e4c369e", "variant": 2912944510, "library": "libsk"}]}}], "symbols": []}}, {"match": {"value": 604176385}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 2923560960, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 68, "offset": 168, "next": [], "symbols": [{"name": "sceSkSsMIDI_Unbind", "hash": "638ff5dcef97cb8dbc4f47a110285c5c3874dd49", "variant": 803860562, "library": "libsk"}]}}], "symbols": []}}, {"match": {"value": 604176386}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 2923560960, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 92, "offset": 192, "next": [], "symbols": [{"name": "sceSkSsMIDI_Control", "hash": "1418f1eff50282fc8008f406f39faf5ad97c09fe", "variant": 3735561905, "library": "libsk"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764800}, "child": {"skip": 0, "offset": 92, "next": [{"match": {"value": 2409824408}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 2923560960, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 76, "offset": 176, "next": [], "symbols": [{"name": "sceSkSsMSIN_Bind", "hash": "bf55605967c927a8bca970e65fc8453f537ade98", "variant": 3388587980, "library": "libsk"}]}}], "symbols": []}}, {"match": {"value": 604176385}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 2923560960, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 68, "offset": 168, "next": [], "symbols": [{"name": "sceSkSsMSIN_Unbind", "hash": "063590b1179257d471753f9c2813ed94d0aa8e1d", "variant": 803860562, "library": "libsk"}]}}], "symbols": []}}, {"match": {"value": 604176386}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 2923560960, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": )PS2SDB", 8192}, + std::string_view{R"PS2SDB({"skip": 152, "offset": 252, "next": [], "symbols": [{"name": "sceSkSsMSIN_Control", "hash": "597c204b29b2fb299bd57fa7304810fdac32b1dc", "variant": 4041630858, "library": "libsk"}]}}], "symbols": []}}, {"match": {"value": 604176387}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 2923560960, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 80, "offset": 180, "next": [], "symbols": [{"name": "sceSkSsMSIN_Status", "hash": "dbbde8544e96dd13429d4f56b06f56291046e412", "variant": 1269845728, "library": "libsk"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006765056}, "child": {"skip": 0, "offset": 92, "next": [{"match": {"value": 2410086552}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 2923560960, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 88, "offset": 188, "next": [], "symbols": [{"name": "sceSkSsSESQ_Bind", "hash": "2cd20f3b2fe7a43a169f92c06039c894ec47354e", "variant": 2912944510, "library": "libsk"}]}}], "symbols": []}}, {"match": {"value": 604176385}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 2923560960, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 68, "offset": 168, "next": [], "symbols": [{"name": "sceSkSsSESQ_Unbind", "hash": "a4c7408992f543d22caf26556381c99ea7a1e5f9", "variant": 803860562, "library": "libsk"}]}}], "symbols": []}}, {"match": {"value": 604176386}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 2923560960, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 104, "offset": 204, "next": [], "symbols": [{"name": "sceSkSsSESQ_Control", "hash": "f3d8bb2b3614d03112fb1520e390fd54a8ad4042", "variant": 2488445689, "library": "libsk"}]}}], "symbols": []}}, {"match": {"value": 604176387}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 2923560960, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 80, "offset": 180, "next": [], "symbols": [{"name": "sceSkSsSESQ_Status", "hash": "981b24369c7a365e146f59dd044a8fbec2ebe340", "variant": 1269845728, "library": "libsk"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006765568}, "child": {"skip": 0, "offset": 92, "next": [{"match": {"value": 2409824408}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 2923560960, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 76, "offset": 176, "next": [], "symbols": [{"name": "sceSkSsSTRADPCM_Bind", "hash": "9cb98bd998e54c7afcbe8dd50786ce88d974d52e", "variant": 3388587980, "library": "libsk"}]}}], "symbols": []}}, {"match": {"value": 604176385}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 2923560960, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 68, "offset": 168, "next": [], "symbols": [{"name": "sceSkSsSTRADPCM_Unbind", "hash": "b74572a3e61bff31c61c12dc98f16756ef59eac7", "variant": 803860562, "library": "libsk"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604176772}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290117776}, "child": {"skip": 380, "offset": 392, "next": [{"match": {"value": 604308480}, "child": {"skip": 0, "offset": 396, "next": [{"match": {"value": 2543976448}, "child": {"skip": 1896, "offset": 2296, "next": [], "symbols": [{"name": "_sceMcFatFormat", "hash": "c8dc6a0823e305cd926e45f69c4d428329e3f37b", "variant": 4178285451, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 604242944}, "child": {"skip": 0, "offset": 396, "next": [{"match": {"value": 2543976448}, "child": {"skip": 1896, "offset": 2296, "next": [], "symbols": [{"name": "_sceMcFatFormat", "hash": "a2dd96684089483628f38f90e1973a5e04a0ebb9", "variant": 4178285451, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724464}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2946826256}, "child": {"skip": 1872, "offset": 1884, "next": [], "symbols": [{"name": "Vu1TexInit", "hash": "74bd78b75f0fb9e006dbc3b6dadf06f53492ec02", "variant": 160804648, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 8413229}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289790128}, "child": {"skip": 124, "offset": 136, "next": [{"match": {"value": 268435537}, "child": {"skip": 0, "offset": 140, "next": [{"match": {"value": 4141}, "child": {"skip": 340, "offset": 484, "next": [], "symbols": [{"name": "MakeTim2TexturePacket", "hash": "bac0c81937345473af95b0aee78e6dcbfba05cac", "variant": 1510749749, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 268435541}, "child": {"skip": 0, "offset": 140, "next": [{"match": {"value": 4141}, "child": {"skip": 356, "offset": 500, "next": [], "symbols": [{"name": "MakeTim2TexturePacket", "hash": "c0646d647ce72288ab6b8b19a84b4878ab85b025", "variant": 1636607352, "library": "libhip"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290183328}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289790016}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 12630061}, "child": {"skip": 3124, "offset": 3140, "next": [], "symbols": [{"name": "__sceEENetsoreceive", "hash": "e84069dabbfdc25215b39080b2b326d1fb25e617", "variant": 358280264, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4290117776}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10532909}, "child": {"skip": 812, "offset": 828, "next": [], "symbols": [{"name": "routeinfo", "hash": "56d3e82fc027115f192699db462de7946340fd09", "variant": 3469353947, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604110913}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290642096}, "child": {"skip": 1488, "offset": 1500, "next": [], "symbols": [{"name": "ether_output", "hash": "d648969a55d3deb720a418508dcef64c6c023317", "variant": 3845377994, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4290052224}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289986672}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10528813}, "child": {"skip": 3372, "offset": 3388, "next": [], "symbols": [{"name": "sppp_cp_input", "hash": "9bf0c7af0f4c83840f9291f27bf72a272864e725", "variant": 3274686598, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289921120}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8431661}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290642096}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 10524717}, "child": {"skip": 512, "offset": 536, "next": [], "symbols": [{"name": "__sceEENetrtredirect", "hash": "f4cf221fab5f8c6a6831669aa59871ba2dcdf584", "variant": 2312626066, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289790016}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 10524717}, "child": {"skip": 544, "offset": 568, "next": [], "symbols": [{"name": "i2t_ASN1_OBJECT", "hash": "81cf85bb6e6b2db21731ebf9206c3cfe1af9a4a4", "variant": 2724653428, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604110860}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290183328}, "child": {"skip": 1324, "offset": 1336, "next": [], "symbols": [{"name": "__sceEENetip_dooptions", "hash": "859ae5d8a213eadcc8e1b7e0494758901ac48fd6", "variant": 1055507723, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289003672}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855520}, "child": {"skip": 560, "offset": 572, "next": [], "symbols": [{"name": "__sceEENetrip_output", "hash": "4fdc2a744193b16e6044420395aaedb990b4bb26", "variant": 3811727736, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4290642096}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290183328}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 14741549}, "child": {"skip": 0, "off)PS2SDB", 8192}, + std::string_view{R"PS2SDB(set": 16, "next": [{"match": {"value": 4289986672}, "child": {"skip": 1556, "offset": 1576, "next": [], "symbols": [{"name": "__sceEENettcp_respond", "hash": "7fbd13418cbdb3d73b9e0f74f3ae10f0923fc8aa", "variant": 4101869471, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 10547245}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855568}, "child": {"skip": 640, "offset": 660, "next": [], "symbols": [{"name": "md_bytes", "hash": "c09fff0f73025836315713ede3c677347534f83d", "variant": 2952031637, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 12644397}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290052224}, "child": {"skip": 592, "offset": 612, "next": [], "symbols": [{"name": "dsa_sign_setup_cb", "hash": "535b2c1ba5c5110cd381c4a833c87dc8c63427f7", "variant": 2894631683, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289986736}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289790080}, "child": {"skip": 252, "offset": 264, "next": [], "symbols": [{"name": "sceEENetSendmsg", "hash": "da0e1130b2273084ff8b9887ab0f8e6c36c07257", "variant": 4255343546, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 6189}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289921120}, "child": {"skip": 432, "offset": 444, "next": [], "symbols": [{"name": "selscan", "hash": "6171d3ae1d4a61e4cb05478de189c2bfb87c3838", "variant": 88197761, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2946826240}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290642096}, "child": {"skip": 532, "offset": 544, "next": [], "symbols": [{"name": "ns_name_pack", "hash": "5b3ae5fcbeeb4151b1017294f6b64148798d561a", "variant": 2353130512, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 604111396}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290052272}, "child": {"skip": 492, "offset": 504, "next": [], "symbols": [{"name": "_sce_eenet_dhclient_send_unicast", "hash": "0462ea6683cdca685e25a68c0ca00a0b23495230", "variant": 4081485765, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289986688}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289790032}, "child": {"skip": 644, "offset": 656, "next": [], "symbols": [{"name": "__sce_eenetctl_set_dns_and_route", "hash": "1e825b2e1b4aa3785f2f2e7b692d6e9f6b3365b8", "variant": 3203282620, "library": "eenetctl"}]}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289921072}, "child": {"skip": 192, "offset": 204, "next": [], "symbols": [{"name": "sceHTTPLibVStrcat", "hash": "da4e36fbebb849d284f365755a6d2b7612017d19", "variant": 394303244, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 4290117808}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290052256}, "child": {"skip": 580, "offset": 592, "next": [], "symbols": [{"name": "d2i_ASN1_bytes", "hash": "d29aa0b4a59bcee0490e4445d23d18e81cc3f14b", "variant": 1769637008, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604110852}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290052240}, "child": {"skip": 684, "offset": 696, "next": [], "symbols": [{"name": "d2i_X509_NAME", "hash": "ad552e93c978f531391c436d7d83b751482d3df0", "variant": 817403854, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2947022868}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290642096}, "child": {"skip": 1968, "offset": 1980, "next": [], "symbols": [{"name": "des_ncbc_encrypt", "hash": "761ef915e019254d0a8646db77838839579a19f6", "variant": 3447996814, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2947153948}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290642096}, "child": {"skip": 1992, "offset": 2004, "next": [], "symbols": [{"name": "des_ede3_cbc_encrypt", "hash": "6dddedc8bee433fd566f49b5dbaf46804ca82ce7", "variant": 2953659534, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604110850}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2946826244}, "child": {"skip": 884, "offset": 896, "next": [], "symbols": [{"name": "a2i_ASN1_INTEGER", "hash": "ba4f5bc6a3deeb17fc1eab74c3f97e2c5e77a4a5", "variant": 3257830505, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 614006868}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707648}, "child": {"skip": 536, "offset": 548, "next": [], "symbols": [{"name": "md2_block", "hash": "e3aca971c31a1d9a47dda4ab2c83dd739e4149ca", "variant": 3255362603, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 14696493}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724544}, "child": {"skip": 408, "offset": 420, "next": [], "symbols": [{"name": "RC2_set_key", "hash": "412eb128785b6eee45791e400ec5e38efdb558bb", "variant": 3629238916, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666763216}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707488}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724432}, "child": {"skip": 136, "offset": 156, "next": [], "symbols": [{"name": "scePadInit2", "hash": "4f1bb316c20cc52bc4860f58e5a448d5d24a4842", "variant": 291242137, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 4289724432}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789976}, "child": {"skip": 220, "offset": 240, "next": [], "symbols": [{"name": "scePadInit2", "hash": "29e0e0346416fbd95d75b92be0ab3bc513a67e69", "variant": 3367574259, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 608370688, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707488}, "child": {"skip": 8, "offset": 24, "next": [{"match": {"value": 610533760}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2891972608}, "child": {"skip": 124, "offset": 156, "next": [], "symbols": [{"name": "scePadInit2", "hash": "6faa0b96705d8f4c977c490507f19978b4c09f7d", "variant": 71357077, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 610534144}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2891972608}, "child": {"skip": 120, "offset": 152, "next": [], "symbols": [{"name": "scePadInit2", "hash": "fd21fb17456bbd7e3af9f39962a5754e8bb44a89", "variant": 1100254171, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1007026176, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789968}, "child": {"skip": 172, "offset": 192, "next": [], "symbols": [{"name": "__sceEENetDriverRegInit", "hash": "9d8e5a12705be277843ee90cda42fc4094320641", "variant": 3999087576, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289724432}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 609222656, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 604110854}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289789976}, "child": {"skip": 148, "offset": 176, "next": [], "symbols": [{"name": "scePadSetMainMode", "hash": "2315ed23901d7aa90ae8115c4203d0265ad0814c", "variant": 2696866849, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 604110858}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289789976}, "child": {"skip": 148, "offset": 176, "next": [], "symbols": [{"name":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "scePadSetButtonInfo", "hash": "ee292f6bc20c3964e21810902823613e757a0c25", "variant": 2015836143, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724416}, "child": {"skip": 80, "offset": 100, "next": [], "symbols": [{"name": "_fs_version", "hash": "244d1a1aa4c1977f545b906fe24133ce04c38ad4", "variant": 2867621225, "library": "libkernl"}, {"name": "_lf_version", "hash": "244d1a1aa4c1977f545b906fe24133ce04c38ad4", "variant": 2867621225, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2353594368, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4229165}, "child": {"skip": 56, "offset": 80, "next": [{"match": {"value": 361758806}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 51245}, "child": {"skip": 864, "offset": 952, "next": [], "symbols": [{"name": "_updateRefImage", "hash": "e360c1128af0aaf3ca9b83b4baf1b382c99f3f7e", "variant": 1705812897, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 361758811}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 51245}, "child": {"skip": 884, "offset": 972, "next": [], "symbols": [{"name": "_updateRefImage", "hash": "11b61361d791526f66faea5d9092a3fb30d5bca7", "variant": 3838700542, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 611385344, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2353332224, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 8421421}, "child": {"skip": 72, "offset": 104, "next": [], "symbols": [{"name": "wrtwarning", "hash": "4c2d77c62d5443cee56234815c7c4fc8e3690e28", "variant": 3991754612, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4290707488}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 32813}, "child": {"skip": 44, "offset": 76, "next": [{"match": {"value": 640746288}, "child": {"skip": 0, "offset": 80, "next": [{"match": {"value": 604110849}, "child": {"skip": 20, "offset": 104, "next": [], "symbols": [{"name": "scePad2End", "hash": "a0e0b87920cfb64b198c0c7c89447496c82e237e", "variant": 2477669229, "library": "libpad2"}]}}], "symbols": []}}, {"match": {"value": 640746292}, "child": {"skip": 0, "offset": 80, "next": [{"match": {"value": 604110849}, "child": {"skip": 20, "offset": 104, "next": [], "symbols": [{"name": "scePad2End", "hash": "8c2005fd3ece01e1c9d1f9ae2a3e3808fc87e8cb", "variant": 2477669229, "library": "libpad2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1007288320, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1007353856, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 228, "offset": 256, "next": [], "symbols": [{"name": "__sce_eenetctl_init", "hash": "51bf23453e599f5de2c673c7514b4678566938bb", "variant": 3450651190, "library": "eenetctl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 816120063}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2353201152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 432, "offset": 452, "next": [], "symbols": [{"name": "getLowestPriorityVoice", "hash": "96017c5aedfb1231f5b800c3eaa61d96510bda39", "variant": 2063942497, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 10520621}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2353201152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 8421421}, "child": {"skip": 84, "offset": 112, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceMcCoreSetAlaram"}}, "child": {"skip": 0, "offset": 116, "next": [{"match": {"value": 2892103684}, "child": {"skip": 24, "offset": 144, "next": [], "symbols": [{"name": "sceMc2GetInfoAsync", "hash": "32e528d95169d41bd5ad79ac646e299760993d6c", "variant": 3023011189, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceMcCoreExecSubs"}}, "child": {"skip": 0, "offset": 116, "next": [{"match": {"value": 2892103684}, "child": {"skip": 24, "offset": 144, "next": [], "symbols": [{"name": "sceMc2GetInfoAsync", "hash": "32e528d95169d41bd5ad79ac646e299760993d6c", "variant": 4007909901, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8421421}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 3695509504, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 4, "offset": 32, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceHiPlugHrchyGetHead"}}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 35659821}, "child": {"skip": 100, "offset": 140, "next": [], "symbols": [{"name": "HrchyInit", "hash": "495b8d8fb197f3ceee85ea755e7270a3e18bf15e", "variant": 3891999120, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceHiPlugShareGetHead"}}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 35659821}, "child": {"skip": 372, "offset": 412, "next": [], "symbols": [{"name": "ShareInit", "hash": "726a130b4b570c7f45e22fb3691ab4f5d312fb26", "variant": 2728527893, "library": "libhip"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 12333}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724416}, "child": {"skip": 256, "offset": 276, "next": [], "symbols": [{"name": "_sceMcpReadSysInfo", "hash": "36c46e04a734f2a3746a3d2ea61778234cce39ad", "variant": 1090608653, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 604241929}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 609288192, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 92, "offset": 112, "next": [], "symbols": [{"name": "R_lock_num", "hash": "29e207b1dcc4baadbb39c1f725db0eb52ddccbfe", "variant": 1148856107, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2354053120, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707488}, "child": {"skip": 72, "offset": 92, "next": [], "symbols": [{"name": "sceHiGsMemPrintTbl", "hash": "218b61e4ca003b5283bf133687fa9568fe1b56e9", "variant": 4092018403, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1007681536, "relocation": {"type": "MIPS_HI16", "symbol": "_kTLBException"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 638582784, "relocation": {"type": "MIPS_LO16", "symbol": "_kTLBException"}}, "child": {"skip": 72, "offset": 96, "next": [], "symbols": [{"name": "SetTLBHandler", "hash": "0bd7220911d4f0146903dad8877a69d35d6c09e7", "variant": 3267514858, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 2354053120, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8423469}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290707488}, "child": {"skip": 0, "offset")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: 28, "next": [{"match": {"value": 0}, "child": {"skip": 196, "offset": 228, "next": [], "symbols": [{"name": "find_fde", "hash": "71b2daac5dbbe50da5bc59f351f60e390a616fb6", "variant": 171719519, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 301989901}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4290707488}, "child": {"skip": 68, "offset": 100, "next": [], "symbols": [{"name": "__sceEENetrtable_init", "hash": "a5fdb6270a11a675fef406a2094a6af3a5032099", "variant": 2968857585, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 301989900}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4290707488}, "child": {"skip": 68, "offset": 100, "next": [], "symbols": [{"name": "__sce_eenetctl_search_eenet_ifcnf", "hash": "562058c40db4645027a3f5ddd18dbab090b1d41f", "variant": 2954952120, "library": "eenetctl"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 613548028}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 303104036}, "child": {"skip": 256, "offset": 284, "next": [], "symbols": [{"name": "sceHiMemFree", "hash": "2295f062d73641f910c901d521a728c3478c42ef", "variant": 1001725597, "library": "libhig"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10518573}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789968}, "child": {"skip": 16, "offset": 36, "next": [{"match": {"value": 33564717}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceHiPlugTim2GetData"}}, "child": {"skip": 32, "offset": 76, "next": [], "symbols": [{"name": "sceHiPlugTim2SetData", "hash": "723977d06fc1c740003f317ac1af8a34be651758", "variant": 1089756884, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 4202541}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceHiPlugTim2GetData"}}, "child": {"skip": 60, "offset": 104, "next": [], "symbols": [{"name": "sceHiPlugTim2GetNPictures", "hash": "ee96b949df81f215aafc52d6751f80b3c488a343", "variant": 4048895727, "library": "libhip"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8421421}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707488}, "child": {"skip": 316, "offset": 336, "next": [], "symbols": [{"name": "https_init_common", "hash": "e5f96c0ed681a17c16a49f97cc9757e918e533c3", "variant": 3530017289, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707488}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724432}, "child": {"skip": 144, "offset": 164, "next": [], "symbols": [{"name": "scePadInit2", "hash": "8d7a1b963dcc8b1d901592557a0adeb1de3735c0", "variant": 593464303, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 604176511}, "child": {"skip": 32, "offset": 52, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 60825645}, "child": {"skip": 72, "offset": 132, "next": [], "symbols": [{"name": "__sceEENetcallout_startup", "hash": "24efcca210c734d2411cf2e14cd13a5ed1b76827", "variant": 1451452024, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 60825645}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 10285}, "child": {"skip": 64, "offset": 124, "next": [], "symbols": [{"name": "__sceEENeteenet_slpque_init", "hash": "aae573fa548e1a7873bbabbe4eb8cbce1b52b78c", "variant": 3485689193, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724432}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 609222656, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789976}, "child": {"skip": 12, "offset": 32, "next": [{"match": {"value": 604110856}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 4290707496}, "child": {"skip": 172, "offset": 212, "next": [], "symbols": [{"name": "scePadSetActAlign", "hash": "8e7e77153c34cfe983cd96cf3fd2c81f550c00d5", "variant": 2312065489, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 604110859}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 4290707496}, "child": {"skip": 160, "offset": 200, "next": [], "symbols": [{"name": "scePadSetVrefParam", "hash": "6f19b141a1ab63e0a9284d0ac2b92e283e9026e7", "variant": 279633625, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 609222656, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2890137600, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1006993408}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4290707488}, "child": {"skip": 8, "offset": 40, "next": [{"match": {"value": 883230978}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 12333}, "child": {"skip": 64, "offset": 112, "next": [], "symbols": [{"name": "sceDbcDeleteSocket", "hash": "927ff644fcf20dce899de02ec4e0db2220ea36c1", "variant": 303541061, "library": "libdbc"}]}}], "symbols": []}}, {"match": {"value": 883230997}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 12333}, "child": {"skip": 64, "offset": 112, "next": [], "symbols": [{"name": "sceDbcInitSocket", "hash": "7daf46275484a301fd5461ddd353b5a714659c1b", "variant": 303541061, "library": "libdbc"}]}}], "symbols": []}}, {"match": {"value": 883233557}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 12333}, "child": {"skip": 4, "offset": 52, "next": [{"match": {"value": 604504704}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 33572909}, "child": {"skip": 52, "offset": 112, "next": [], "symbols": [{"name": "sceDbcInitSocket", "hash": "444cd9fa68d9f73c15a23386bb9e8125c7b80f6a", "variant": 303541061, "library": "libdbc"}]}}], "symbols": []}}, {"match": {"value": 604504208}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 33572909}, "child": {"skip": 52, "offset": 112, "next": [], "symbols": [{"name": "sceDbcInitSocket", "hash": "55e109768723af673bd0284bbeff21325e25c627", "variant": 303541061, "library": "libdbc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 883230998}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 12333}, "child": {"skip": 64, "offset": 112, "next": [], "symbols": [{"name": "sceDbcResetSocket", "hash": "13899508cd730ba83eed10e625f297660dd44a75", "variant": 303541061, "library": "libdbc"}]}}], "symbols": []}}, {"match": {"value": 883233558}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 12333}, "child": {"skip": 4, "offset": 52, "next": [{"match": {"value": 604504704}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 33572909}, "child": {"skip": 52, "offset": 112, "next": [], "symbols": [{"name": "sceDbcResetSocket", "hash": "e102cd63b60eed28623106950f3173c15ac75462", "variant": 303541061, "library": "libdbc"}]}}], "symbols": []}}, {"match": {"value": 604504208}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 33572909}, "child": {"skip": 52, "offset": 112, "next": [], "symbols": [{"name": "sceDbcResetSocket", "hash": "4fd717e859ec99f820a7adafc33bfdc339c6d0b0", "variant": 303541061, "library": "libdbc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 883230999}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 12333}, "child": {"skip": 6)PS2SDB", 8192}, + std::string_view{R"PS2SDB(4, "offset": 112, "next": [], "symbols": [{"name": "sceDbcGetDeviceStatus", "hash": "229572559b5f33e05b767ec050b8b0f09e71dbc9", "variant": 303541061, "library": "libdbc"}]}}], "symbols": []}}, {"match": {"value": 883233559}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 12333}, "child": {"skip": 4, "offset": 52, "next": [{"match": {"value": 604504704}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 33572909}, "child": {"skip": 52, "offset": 112, "next": [], "symbols": [{"name": "sceDbcGetDeviceStatus", "hash": "23b236a912a05f42a37f559ee6f17c794a9c3ad1", "variant": 303541061, "library": "libdbc"}]}}], "symbols": []}}, {"match": {"value": 604504208}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 33572909}, "child": {"skip": 52, "offset": 112, "next": [], "symbols": [{"name": "sceDbcGetDeviceStatus", "hash": "e312e4d39f9423d366361d84dea62601a86eae8d", "variant": 303541061, "library": "libdbc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707488}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 610533376, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2946498560}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 604307457}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 12333}, "child": {"skip": 64, "offset": 108, "next": [], "symbols": [{"name": "sceMtapPortOpen", "hash": "b3c3e39bd5dbacf481831edf5a59bbddcbbc5ff9", "variant": 1447565060, "library": "libmtap"}, {"name": "sceMtapPortClose", "hash": "b3c3e39bd5dbacf481831edf5a59bbddcbbc5ff9", "variant": 1447565060, "library": "libmtap"}, {"name": "sceMtapGetConnection", "hash": "b3c3e39bd5dbacf481831edf5a59bbddcbbc5ff9", "variant": 1447565060, "library": "libmtap"}, {"name": "sceMtapGetSlotNumber", "hash": "b3c3e39bd5dbacf481831edf5a59bbddcbbc5ff9", "variant": 1447565060, "library": "libmtap"}]}}], "symbols": []}}, {"match": {"value": 604307458}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 12333}, "child": {"skip": 64, "offset": 108, "next": [], "symbols": [{"name": "sceMtapPortClose", "hash": "63168e5ae2a80ec3362bff6b97a7eeec464418d9", "variant": 1447565060, "library": "libmtap"}]}}], "symbols": []}}, {"match": {"value": 604307459}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 12333}, "child": {"skip": 64, "offset": 108, "next": [], "symbols": [{"name": "sceMtapGetConnection", "hash": "ee2ff5297d99f5cd59b889e6b7060428551649fa", "variant": 1447565060, "library": "libmtap"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2919563268}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 12333}, "child": {"skip": 4, "offset": 44, "next": [{"match": {"value": 604307457}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 33568813}, "child": {"skip": 60, "offset": 112, "next": [], "symbols": [{"name": "sceMtapChangeThreadPriority", "hash": "4ab1503670b25fb4a3f81db6bc4e631e7788d49e", "variant": 3955144886, "library": "libmtap"}, {"name": "sceMtapChangeSlot", "hash": "4ab1503670b25fb4a3f81db6bc4e631e7788d49e", "variant": 3955144886, "library": "libmtap"}]}}], "symbols": []}}, {"match": {"value": 604307460}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 33568813}, "child": {"skip": 60, "offset": 112, "next": [], "symbols": [{"name": "sceMtapChangeThreadPriority", "hash": "38ca5f350c184051fa0577891a9da8d65453d124", "variant": 3955144886, "library": "libmtap"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707488}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 10518573}, "child": {"skip": 104, "offset": 128, "next": [], "symbols": [{"name": "asctime_r", "hash": "8c61cfb55c116ff2cef81a43f2f025d3d3c34804", "variant": 4213380093, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 609222656, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 76, "offset": 96, "next": [], "symbols": [{"name": "sceDbcGetIopDmabuff", "hash": "ad70ddd7f854b152cdc15342d340d28334467674", "variant": 1186999953, "library": "libdbc"}]}}], "symbols": []}}, {"match": {"value": 604176399}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 609222656, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 52, "offset": 72, "next": [{"match": {"value": 71499779}, "child": {"skip": 0, "offset": 76, "next": [{"match": {"value": 2382823436}, "child": {"skip": 48, "offset": 128, "next": [], "symbols": [{"name": "scePadEnd", "hash": "8e336a7ce7483b5cf05e42601539af59a59a2ac6", "variant": 2070517335, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 71303179}, "child": {"skip": 0, "offset": 76, "next": [{"match": {"value": 4141}, "child": {"skip": 56, "offset": 136, "next": [], "symbols": [{"name": "scePadEnd", "hash": "95746c1808daa41a1786de3a80fa9b599f92a328", "variant": 1884712272, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006862336}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 609222656, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 878903566}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 108, "offset": 136, "next": [], "symbols": [{"name": "scePadEnd", "hash": "8c5b9d117f0daeef9c31c5f2bb29e3a339e749f9", "variant": 880998737, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 4290707488}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2919497732}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 878903565}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2919563272}, "child": {"skip": 88, "offset": 124, "next": [], "symbols": [{"name": "scePadPortClose", "hash": "c0c6957f69df793d5214c798b736a56f5dd51c85", "variant": 15613977, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 878903560}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2919563272}, "child": {"skip": 88, "offset": 124, "next": [], "symbols": [{"name": "scePadGetButtonMask", "hash": "6dafb887e1d73adb8cb32d70f49b55b09984eb1a", "variant": 15613977, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 878903564}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 84, "offset": 120, "next": [], "symbols": [{"name": "scePadGetSlotMax", "hash": "59db09c2d75449ac219aebe32d8205508f30ff51", "variant": 3123550346, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 878903563}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 88, "offset": 116, "next": [], "symbols": [{"name": "scePadGetPortMax", "hash": "43e48014dc7966fdbb8b3ff1a9aecab42f9a0c1c", "variant": 3967289572, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604176398}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 609222656, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 96, "offset": 116, "next": [], "symbols": [{"name": "scePadPortClose", "hash": "65328a25ebdeabb1ea7130a333bc948b56531513", "variant": 2758170121, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 604438542}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 609222656, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 88, "offset": 108, "next": [], "symbols": [{"name": "scePadPortClose", "hash": "4787d7ee72d54fe87ce6191b05fad6d)PS2SDB", 8192}, + std::string_view{R"PS2SDB(54aba8143", "variant": 2735841794, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 604176391}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 609222656, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 48, "offset": 68, "next": [{"match": {"value": 2692939776}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 339804153}, "child": {"skip": 76, "offset": 152, "next": [], "symbols": [{"name": "scePadSetActDirect", "hash": "766e691efad59a0dacb9d24d9b64134ab9a97db4", "variant": 3228360920, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 339804154}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 2692939776}, "child": {"skip": 72, "offset": 148, "next": [], "symbols": [{"name": "scePadSetActDirect", "hash": "82221dfee1b2bc776b9efd6f5ecd4b7150b25876", "variant": 1569657462, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604438537}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 609222656, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 88, "offset": 108, "next": [], "symbols": [{"name": "scePadGetButtonMask", "hash": "e2ef9c6afdf7621d1cb64b0a2d9255988b9de894", "variant": 2735841794, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 604176396}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 609222656, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 80, "offset": 100, "next": [], "symbols": [{"name": "scePadGetPortMax", "hash": "9466d4782dc9b7ce885b90456aa79f74f4b9fddf", "variant": 3474493756, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 604373005}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 609222656, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 84, "offset": 104, "next": [], "symbols": [{"name": "scePadGetSlotMax", "hash": "d22652704ec4d28b55d38e061096fe225367bdf7", "variant": 759934010, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 604176402}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 609222656, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 80, "offset": 100, "next": [], "symbols": [{"name": "scePadGetModVersion", "hash": "397119362d264f34615452fd6ee8a6d7e9b3bc70", "variant": 3474493756, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 604373012}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 609222656, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 84, "offset": 104, "next": [], "symbols": [{"name": "scePadSetWarningLevel", "hash": "ef99805708936c0ab3061f36cad57d8777cda43b", "variant": 759934010, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 604438547}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 609222656, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 88, "offset": 108, "next": [], "symbols": [{"name": "scePadChangeThreadPriority", "hash": "53fed3c9ceb28b3b02b9b8a46be8094281652529", "variant": 2735841794, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 604438545}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 609222656, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 88, "offset": 108, "next": [], "symbols": [{"name": "scePadGetConnection", "hash": "f4d82dde59e0788641e9179c9ef69af3b286a5dd", "variant": 2735841794, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 4290707488}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 64, "offset": 84, "next": [{"match": {"value": 604307794}, "child": {"skip": 0, "offset": 88, "next": [{"match": {"value": 2449604613}, "child": {"skip": 136, "offset": 228, "next": [], "symbols": [{"name": "adddate", "hash": "372768eeea3953d6adc4acc023100e116c24e868", "variant": 624278188, "library": "libscf"}]}}], "symbols": []}}, {"match": {"value": 604307792}, "child": {"skip": 0, "offset": 88, "next": [{"match": {"value": 2449604613}, "child": {"skip": 136, "offset": 228, "next": [], "symbols": [{"name": "adddate", "hash": "b98017e33f93e5a08c206f32f3df2b01bf398696", "variant": 624278188, "library": "libscf"}]}}], "symbols": []}}, {"match": {"value": 604307818}, "child": {"skip": 0, "offset": 88, "next": [{"match": {"value": 2449604613}, "child": {"skip": 120, "offset": 212, "next": [], "symbols": [{"name": "subdate", "hash": "38b632b2a627a4922ba364522bc02b2eea94760b", "variant": 624278188, "library": "libscf"}]}}], "symbols": []}}, {"match": {"value": 604307816}, "child": {"skip": 0, "offset": 88, "next": [{"match": {"value": 2449604613}, "child": {"skip": 120, "offset": 212, "next": [], "symbols": [{"name": "subdate", "hash": "f0a5e96055e414caf3e572bde91b2b5fec4848e9", "variant": 624278188, "library": "libscf"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006993408}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1007681536, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 8, "offset": 28, "next": [{"match": {"value": 883230980}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2900623364}, "child": {"skip": 72, "offset": 108, "next": [], "symbols": [{"name": "sceDbcSetWorkAddr", "hash": "ec90a2a1bb2ed6ba5b863083f272e5f2b7636c45", "variant": 3829655124, "library": "libdbc"}]}}], "symbols": []}}, {"match": {"value": 883233540}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2900623364}, "child": {"skip": 12, "offset": 48, "next": [{"match": {"value": 604504704}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 14698541}, "child": {"skip": 52, "offset": 108, "next": [], "symbols": [{"name": "sceDbcSetWorkAddr", "hash": "2e4be906da0508dc1ccc8f877c232375d47858ec", "variant": 3829655124, "library": "libdbc"}]}}], "symbols": []}}, {"match": {"value": 604504208}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 14698541}, "child": {"skip": 52, "offset": 108, "next": [], "symbols": [{"name": "sceDbcSetWorkAddr", "hash": "e9dd05dd5e2f2ebc516d0172e18a2d2acdcbfc9b", "variant": 3829655124, "library": "libdbc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604176386}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 609222656, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 48, "offset": 68, "next": [{"match": {"value": 604504704}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 2369912844}, "child": {"skip": 60, "offset": 136, "next": [], "symbols": [{"name": "sceDbcSearchPortSpecific", "hash": "30049cdabd33b7074efea8d2f4f8d5f12b2ee610", "variant": 1659014967, "library": "libdbc"}]}}], "symbols": []}}, {"match": {"value": 604504208}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 2369912844}, "child": {"skip": 60, "offset": 136, "next": [], "symbols": [{"name": "sceDbcSearchPortSpecific", "hash": "67252ce444fe87d3631e8b2bdde305a73cd7a7eb", "variant": 1659014967, "library": "libdbc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604307462}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1007681536, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 72, "offset": 92, "next": [], "symbols": [{"name": "sceMtapSetWorkAddr", "hash": "ed6d6381767476b41164b0fe479069ce6f14154a", "variant": 4008311738, "library": "libmtap"}]}}], "symbols": []}}, {"match": {"value": 8421421}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 3695575040, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 92, "offset": 112, "next": [], "symbols": [{"name": "ReflectInit", "hash": "3df4fe4c9788bd1f516baa719a7ecdee90318028", "variant": 4138481383, "library": "libhip"}, {"name": "RefractInit", "hash": "3df4fe4c9788bd1f516baa719a7ecdee90318028", "variant": 4138481383, "library": "libhip"}]}}], "symbols": []}}], "symbols": []}}, {"match": {")PS2SDB", 8192}, + std::string_view{R"PS2SDB(value": 4289921048}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289724416}, "child": {"skip": 20, "offset": 36, "next": [{"match": {"value": 306184209}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 8427565}, "child": {"skip": 96, "offset": 140, "next": [], "symbols": [{"name": "exit", "hash": "e69718b0d1115099a20360ef9da60a61ab047d6e", "variant": 3718696334, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 306184208}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 8427565}, "child": {"skip": 92, "offset": 136, "next": [], "symbols": [{"name": "exit", "hash": "4b9140d38abca9e94c19940210ea36a973485774", "variant": 805104952, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2355232768, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1007747072, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4290707488}, "child": {"skip": 72, "offset": 96, "next": [], "symbols": [{"name": "eh_context_static", "hash": "05f3a6b4b253b928ed23840718a830aed45a79f9", "variant": 2504916004, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 6326317}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4290707488}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 71368732}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4289724416}, "child": {"skip": 132, "offset": 164, "next": [], "symbols": [{"name": "_lf_bind", "hash": "5d83943ae3ea52e682a318c38bac6be642583416", "variant": 2147869386, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 71368730}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4289724416}, "child": {"skip": 124, "offset": 156, "next": [], "symbols": [{"name": "_lf_bind", "hash": "36683df3b474361c83be00b2bf02b3e92a338d3b", "variant": 2147869386, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8423469}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4290707488}, "child": {"skip": 144, "offset": 168, "next": [], "symbols": [{"name": "__sceEENetrt_timer_queue_create", "hash": "259881b91c9082d0700aeda73b69bba66118ac51", "variant": 1085577356, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 610402304, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724416}, "child": {"skip": 92, "offset": 112, "next": [], "symbols": [{"name": "sceSdTransToIOP", "hash": "b7d11c51872b8e652eaf70576322ea9fab5da556", "variant": 3100183192, "library": "libsdr"}]}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8423469}, "child": {"skip": 104, "offset": 124, "next": [], "symbols": [{"name": "_set_rwbuf", "hash": "c13ed2f336e4eb4906fdd6b40fba31684af40179", "variant": 79703222, "library": "libhig"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724432}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006796800}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 611319808, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 8, "offset": 28, "next": [{"match": {"value": 876740866}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2919563272}, "child": {"skip": 96, "offset": 132, "next": [], "symbols": [{"name": "scePadInfoAct", "hash": "519d0f050a458421c00b8da5855273c423191b72", "variant": 728872273, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 876740867}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2919563272}, "child": {"skip": 96, "offset": 132, "next": [], "symbols": [{"name": "scePadInfoComb", "hash": "e3ce57808a5e7b886793385720a34d3f4223afef", "variant": 728872273, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 876740868}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2919563272}, "child": {"skip": 96, "offset": 132, "next": [], "symbols": [{"name": "scePadInfoMode", "hash": "914212de6b13d429a99f10bf43ec344582b553ce", "variant": 728872273, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604176383}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 148, "offset": 168, "next": [], "symbols": [{"name": "sceUsbKbGetInfo", "hash": "e083b8b11e22edee3b3e0049c470e58d8bb7b3e3", "variant": 2889449589, "library": "libusbkb"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2355232768, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 208, "offset": 224, "next": [], "symbols": [{"name": "imalloc", "hash": "946b8f8e7a4f41e73e4b17fd894813d5cec5acd9", "variant": 2865483250, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2407661568, "relocation": {"type": "MIPS_GPREL16", "symbol": ".sdata"}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707488}, "child": {"skip": 248, "offset": 260, "next": [], "symbols": [{"name": "scePadInit", "hash": "dadc314350c9cb06bdacf59ffa704aaa2d73c301", "variant": 25986502, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789976}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 613482496, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 156, "offset": 172, "next": [], "symbols": [{"name": "scePadEnd", "hash": "f334ee48aae071ec7c1d020a0fc398278a4979ab", "variant": 3577666457, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 4289724432}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1007091712, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1007681536, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1007353856, "relocation": {"type": "MIPS_HI16", "symbol": "mceSifRpcEndFunc"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290707488}, "child": {"skip": 60, "offset": 88, "next": [{"match": {"value": 604176383}, "child": {"skip": 0, "offset": 92, "next": [{"match": {"value": 2382495744, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 16, "offset": 112, "next": [], "symbols": [{"name": "sceMcUdCheckNewCard", "hash": "0f740a52d3793dfd96e890c04b7f28bbf2b0947a", "variant": 3366443301, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 604176293}, "child": {"skip": 0, "offset": 92, "next": [{"match": {"value": 2382495744, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 16, "offset": 112, "next": [], "symbols": [{"name": "sceMcUdCheckNewCard", "hash": "192e86d0794125168ebcd3c4a48857212d8aec68", "variant": 3366443301, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707488}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 44, "offset": 72, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "scePrintf"}}, "child": {"skip": 0, "offset": 76, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 28, "offset": 108, "next": [], "symbols": [{"name": "sceMcUdCheckNewCard", "hash": "ed31f46ea0ff81a5c2f8e68214b3eab6deabc9e4", "variant": 3132913847, "libr)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ary": "libmc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "printf"}}, "child": {"skip": 0, "offset": 76, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 28, "offset": 108, "next": [], "symbols": [{"name": "sceMcUdCheckNewCard", "hash": "ed31f46ea0ff81a5c2f8e68214b3eab6deabc9e4", "variant": 4258441323, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1007681536, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 12, "offset": 32, "next": [{"match": {"value": 604307457}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 12333}, "child": {"skip": 60, "offset": 100, "next": [], "symbols": [{"name": "sceMtapGetModVersion", "hash": "1491fddd0e7d1c3d395524e1e0c5abb1312b21dd", "variant": 2890914093, "library": "libmtap"}]}}], "symbols": []}}, {"match": {"value": 604307461}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 12333}, "child": {"skip": 60, "offset": 100, "next": [], "symbols": [{"name": "sceMtapGetModVersion", "hash": "092c93afc5dabb17d4736901242c0d18783c853b", "variant": 2890914093, "library": "libmtap"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006993408}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1007681536, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 16, "offset": 36, "next": [{"match": {"value": 883231075}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 12333}, "child": {"skip": 40, "offset": 84, "next": [], "symbols": [{"name": "sceDbcGetModVersion", "hash": "6c5f16002083e0df1c83c2d24d97a3038fb8bfff", "variant": 260806003, "library": "libdbc"}]}}], "symbols": []}}, {"match": {"value": 883233635}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 12333}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 604504704}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 14698541}, "child": {"skip": 32, "offset": 84, "next": [], "symbols": [{"name": "sceDbcGetModVersion", "hash": "cce0002458e72002593c1e1818d248fc5363ea2d", "variant": 260806003, "library": "libdbc"}]}}], "symbols": []}}, {"match": {"value": 604504208}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 14698541}, "child": {"skip": 32, "offset": 84, "next": [], "symbols": [{"name": "sceDbcGetModVersion", "hash": "a753cffea0028178417202eb5f037f8db7ce35dc", "variant": 260806003, "library": "libdbc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": "_cleanup_r"}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 128, "offset": 140, "next": [], "symbols": [{"name": "__sinit", "hash": "f9a6c46083a8247e305778e258db12122a47658d", "variant": 1379109280, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 1007616000, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289921048}, "child": {"skip": 124, "offset": 136, "next": [], "symbols": [{"name": "exit", "hash": "a2683e8b97517d972aa13d97569e6e59dc29a2d1", "variant": 805104952, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 2407727104, "relocation": {"type": "MIPS_GPREL16", "symbol": "_picture_structure"}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789968}, "child": {"skip": 184, "offset": 196, "next": [], "symbols": [{"name": "_decPicture", "hash": "4dea70e7a1f27836badb69408653cc951b7f34bf", "variant": 3186447451, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2407923712, "relocation": {"type": "MIPS_GPREL16", "symbol": "_theSceMpeg"}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 252, "offset": 264, "next": [], "symbols": [{"name": "_dispRefImage", "hash": "695f12ba48d98bf43f52db25b83b276800cd7711", "variant": 147199252, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707488}, "child": {"skip": 152, "offset": 172, "next": [], "symbols": [{"name": "sppp_pap_my_TO", "hash": "667b6b04915bd293de08e9b48416b8a7efef5ce9", "variant": 1937926347, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 604241952}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707488}, "child": {"skip": 324, "offset": 344, "next": [], "symbols": [{"name": "_sequenceHeader", "hash": "33fc5b1cd523342add5e17f469a2f2449ab2b43c", "variant": 3403765655, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724432}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707488}, "child": {"skip": 168, "offset": 184, "next": [], "symbols": [{"name": "smap_set_media", "hash": "6bd7887607c83b0ac0ec94c148ac390b6c06e21c", "variant": 2092409078, "library": "ent_smap"}]}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 412, "offset": 428, "next": [], "symbols": [{"name": "pppoe_timeout", "hash": "ac9cade55ff152d534c532f3f075dd42accb0bf1", "variant": 4050722489, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1007091712, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 112, "offset": 128, "next": [], "symbols": [{"name": "__sceEENetkernclock_startup", "hash": "4b753899670193cb6a473647ed8938d79e274e0d", "variant": 3040251579, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10285}, "child": {"skip": 208, "offset": 224, "next": [], "symbols": [{"name": "_buf_alloc", "hash": "deb64e593013f47fc6483db0ea787f21fe4b792e", "variant": 4021715769, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 4289724432}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 612958228}, "child": {"skip": 184, "offset": 200, "next": [], "symbols": [{"name": "sceDbcCreateSocket", "hash": "a5144156e4f6a0b6e8a06ae80e0f24314b1d4ded", "variant": 1234764213, "library": "libdbc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1007747072, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707488}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2384592896, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 272629763}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289724416}, "child": {"skip": 140, "offset": 168, "next": [], "symbols": [{"name": "sceNetcnfifSetup", "hash": "c218bccf181621b466d571f9fc773902d67207e9", "variant": 115027728, "library": "netcnfif"}]}}], "symbols": []}}, {"match": {"value": 272629777}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289724416}, "child": {"skip": 92, "offset": 120, "next": [], "symbols": [{"name": "R_rand_get_default", "hash": "5)PS2SDB", 8192}, + std::string_view{R"PS2SDB(78dc47619a762595d9915d816d7e8d7ce5c18a7", "variant": 33696909, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2384855040, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8421421}, "child": {"skip": 140, "offset": 164, "next": [], "symbols": [{"name": "rti_fill", "hash": "df7f2615920f6197e6df0c9f26c9f27520041f5f", "variant": 456010826, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2384789504, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8421421}, "child": {"skip": 108, "offset": 132, "next": [], "symbols": [{"name": "rti_find", "hash": "73585bf4e39ec40c066fe4de11b7cd62b9aec95b", "variant": 1354568925, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2384723968, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4290707488}, "child": {"skip": 88, "offset": 112, "next": [], "symbols": [{"name": "__sceEENetthread_busycount", "hash": "69f0b39763124f297a2427cbef0e95d482260f85", "variant": 3667086178, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8423469}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 816840705}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 604241960}, "child": {"skip": 28, "offset": 52, "next": [{"match": {"value": 639893824}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 268435460}, "child": {"skip": 32, "offset": 92, "next": [], "symbols": [{"name": "sceGsSwapDBuff", "hash": "b9b99bf7eea54ecd770f64f64389dd22b05295fa", "variant": 2082304385, "library": "libgraph"}]}}], "symbols": []}}, {"match": {"value": 639893952}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 268435460}, "child": {"skip": 32, "offset": 92, "next": [], "symbols": [{"name": "sceGsSwapDBuffDc", "hash": "8f587a86902f26095783d8c4840cfcdefc8a8420", "variant": 2082304385, "library": "libgraph"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707488}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceVif1PkTerminate"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 10518573}, "child": {"skip": 4, "offset": 32, "next": [{"match": {"value": 1006833664}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 33783845}, "child": {"skip": 48, "offset": 88, "next": [], "symbols": [{"name": "sceVif1PkCnt", "hash": "f03bbd6414dca643d1784b3c9357a366a254d26e", "variant": 1299101397, "library": "libpkt"}]}}], "symbols": []}}, {"match": {"value": 1006858240}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 33783845}, "child": {"skip": 48, "offset": 88, "next": [], "symbols": [{"name": "sceVif1PkEnd", "hash": "b019633115d3e0e74c4ac71c29ce61398e55f579", "variant": 1299101397, "library": "libpkt"}]}}], "symbols": []}}, {"match": {"value": 1006854144}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 33783845}, "child": {"skip": 48, "offset": 88, "next": [], "symbols": [{"name": "sceVif1PkRet", "hash": "2344c7d91933b02ac54874e248700c3a1b4e31d7", "variant": 1299101397, "library": "libpkt"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceVif0PkTerminate"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 10518573}, "child": {"skip": 4, "offset": 32, "next": [{"match": {"value": 1006833664}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 33783845}, "child": {"skip": 48, "offset": 88, "next": [], "symbols": [{"name": "sceVif0PkCnt", "hash": "f03bbd6414dca643d1784b3c9357a366a254d26e", "variant": 3603692218, "library": "libpkt"}]}}], "symbols": []}}, {"match": {"value": 1006858240}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 33783845}, "child": {"skip": 48, "offset": 88, "next": [], "symbols": [{"name": "sceVif0PkEnd", "hash": "b019633115d3e0e74c4ac71c29ce61398e55f579", "variant": 3603692218, "library": "libpkt"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "R_malloc"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 604241952}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4227117}, "child": {"skip": 132, "offset": 164, "next": [], "symbols": [{"name": "buffer_new", "hash": "1f81f18513ebb90745e4f60f1cc94754e520b4f6", "variant": 2756766855, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604241992}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4227117}, "child": {"skip": 92, "offset": 124, "next": [], "symbols": [{"name": "BIO_new", "hash": "1eef4238b74bcaf7015bff2398f96b6abb27191e", "variant": 2105394667, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604241940}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4227117}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 301989903}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 4141}, "child": {"skip": 76, "offset": 116, "next": [], "symbols": [{"name": "new_dir", "hash": "7f459727657211d4d705a99e60ddfbbab656acd3", "variant": 4088095294, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 301989913}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 4141}, "child": {"skip": 116, "offset": 156, "next": [], "symbols": [{"name": "sk_new", "hash": "73e2f6c2376c61c4f09df98d1ab8340d615b9be2", "variant": 4047242970, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 1442840579}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 2919235584}, "child": {"skip": 84, "offset": 124, "next": [], "symbols": [{"name": "X509_LOOKUP_new", "hash": "50b215e4df6f4611adc16b1b2cd36539d078934a", "variant": 1258393203, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604242224}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4227117}, "child": {"skip": 72, "offset": 104, "next": [], "symbols": [{"name": "ssl2_new", "hash": "e3614f9c6c867d066392c20dd82e910dc911e5d6", "variant": 2937238449, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604242328}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4227117}, "child": {"skip": 160, "offset": 192, "next": [], "symbols": [{"name": "ssl3_new", "hash": "08a7aa34d8c248372fec8253e1ad930fa5b870bd", "variant": 1196944706, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "DH_params_dup"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 10493997}, "child": {"skip": 104, "offset": 132, "next": [], "symbols": [{"name": "set_dh", "hash": "4f96e884083e6a613ec1713f0332daf7a8163a8d", "variant": 1177421859, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "RSA_dup"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 10493997}, "child": {"skip": 88, "offset": 116, "next": [], "symbols": [{"name": "set_rsa", "hash": "dba2839532b44d0c02f0abc7bfdb6734d2a8267c", "variant": 3130583408, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707488}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceCdSync"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 604241921}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 339738634}, "child": {"skip": 0, "offset": 32, "ne)PS2SDB", 8192}, + std::string_view{R"PS2SDB(xt": [{"match": {"value": 4141}, "child": {"skip": 56, "offset": 92, "next": [], "symbols": [{"name": "sceCdCallback", "hash": "67e6fbe5ce739c58ae39609c1dd184d1b554fb8d", "variant": 3717481504, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 339738632}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4141}, "child": {"skip": 48, "offset": 84, "next": [], "symbols": [{"name": "sceCdCallback", "hash": "d3639560fdc2796319c5bc091c7d07ba658e8cb7", "variant": 3460356195, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 339738637}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4141}, "child": {"skip": 68, "offset": 104, "next": [], "symbols": [{"name": "sceCdCallback", "hash": "e5f6e260e31c5bc096d26ea2dcea2ed5dff5fb9e", "variant": 2050521848, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10493997}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2384789520}, "child": {"skip": 148, "offset": 176, "next": [{"match": {"value": 604241930}, "child": {"skip": 0, "offset": 180, "next": [{"match": {"value": 3752853504}, "child": {"skip": 24, "offset": 208, "next": [], "symbols": [{"name": "_request_rdata", "hash": "d3d7b4871e5c96433efb0f0e7f1ff440eddfca8e", "variant": 378420547, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604243968}, "child": {"skip": 0, "offset": 180, "next": [{"match": {"value": 3752853504}, "child": {"skip": 24, "offset": 208, "next": [], "symbols": [{"name": "_request_rdata", "hash": "85ef2965a7281c0a793ed5138ece0f11671610fd", "variant": 3543785667, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 639827967}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 742523135}, "child": {"skip": 92, "offset": 116, "next": [], "symbols": [{"name": "__sceEENetsogetsock", "hash": "ad33f5921f521ffa1d3b56022f253f1bac427a92", "variant": 2896046310, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707488}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1007747072, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 268435466}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289724416}, "child": {"skip": 112, "offset": 136, "next": [], "symbols": [{"name": "sceSifInitIopHeap", "hash": "a15995c3a07c6c52b983c28bfc4d3e7ee1f054ef", "variant": 3020085114, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 268435468}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289724416}, "child": {"skip": 120, "offset": 144, "next": [], "symbols": [{"name": "sceSifInitIopHeap", "hash": "10cd2602f18b57526332b0bd1cdbc1003d1bf107", "variant": 471921439, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 0}, "child": {"skip": 104, "offset": 128, "next": [], "symbols": [{"name": "__sceEENetipintr", "hash": "03aa0547e4bfe1450659a455123cd17ae01deb6e", "variant": 1524410643, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_buf_get_ancestor"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724416}, "child": {"skip": 248, "offset": 268, "next": [], "symbols": [{"name": "sceHiDMARegist", "hash": "d9bcbed216736dfe2c9935e2e4102901be6a4f22", "variant": 1314054521, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__sceEENetspllock"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724416}, "child": {"skip": 84, "offset": 104, "next": [], "symbols": [{"name": "__sceEENettcp_fasttimo", "hash": "c6fe0223052bb92124a83bbdf1ff7d4027122c21", "variant": 3843829844, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 8423469}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "DIntr"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289724416}, "child": {"skip": 128, "offset": 152, "next": [], "symbols": [{"name": "sceDmaPause", "hash": "c17a98c0e24f293478e2af4c68739a9aa01cc011", "variant": 2222992413, "library": "libdma"}]}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1074814976}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1006764033}, "child": {"skip": 20, "offset": 48, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_ReleaseAlarm"}}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 35659821}, "child": {"skip": 48, "offset": 104, "next": [], "symbols": [{"name": "ReleaseAlarm", "hash": "2b7136a628e2dc91066ab8a392b8d1f7ba558d03", "variant": 137273490, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_DisableIntc"}}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 35659821}, "child": {"skip": 48, "offset": 104, "next": [], "symbols": [{"name": "DisableIntc", "hash": "2b7136a628e2dc91066ab8a392b8d1f7ba558d03", "variant": 1428007559, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_EnableIntc"}}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 35659821}, "child": {"skip": 48, "offset": 104, "next": [], "symbols": [{"name": "EnableIntc", "hash": "2b7136a628e2dc91066ab8a392b8d1f7ba558d03", "variant": 311501850, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_DisableDmac"}}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 35659821}, "child": {"skip": 48, "offset": 104, "next": [], "symbols": [{"name": "DisableDmac", "hash": "2b7136a628e2dc91066ab8a392b8d1f7ba558d03", "variant": 2086332569, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_EnableDmac"}}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 35659821}, "child": {"skip": 48, "offset": 104, "next": [], "symbols": [{"name": "EnableDmac", "hash": "2b7136a628e2dc91066ab8a392b8d1f7ba558d03", "variant": 1003906564, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2384592952}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 339738631}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 640680408}, "child": {"skip": 192, "offset": 224, "next": [], "symbols": [{"name": "__sfp", "hash": "35f597495d3315dfd8e7ee40ca07b928e446e4ed", "variant": 38348420, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 339738630}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 640680408}, "child": {"skip": 192, "offset": 224, "next": [], "symbols": [{"name": "__sfp", "hash": "0ae9b91ae5d3c52b88c6a22861c1083e982584bc", "variant": 38348420, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2385510464}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2382495748}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 272629772}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 8237}, "child": {"skip": 16, "offset": 52, "next": [{"match": {"value": 2407792640, "relocation": {"type": "MIPS_GPREL16", "symbol": "_totalFrames"}}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 2407661568, "relocation": {"type": "MIPS_GPREL16", "symbol": "_totalFrames"}}, "child": {"skip": 44, "offset": 104, "next": [], "symbols": [{"name": "_sceMpegFlush", "hash": "fa7bfe743246f9fbaf9a21c6f8da55860a9cdb91", "variant": 3441673059, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 33562669}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 2382496024}, "child": {"skip": )PS2SDB", 8192}, + std::string_view{R"PS2SDB(0, "offset": 60, "next": [{"match": {"value": 604241921}, "child": {"skip": 40, "offset": 104, "next": [], "symbols": [{"name": "_sceMpegFlush", "hash": "177d60298012072ac6fe9c559532c206583b589a", "variant": 260332332, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2382496048}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 604241921}, "child": {"skip": 40, "offset": 104, "next": [], "symbols": [{"name": "_sceMpegFlush", "hash": "e18e08d58828855e833456ca468fd5d79dbc9c1c", "variant": 260332332, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 272629794}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 8237}, "child": {"skip": 156, "offset": 192, "next": [], "symbols": [{"name": "_sceMpegFlush", "hash": "7902fe5b3c29a60b7b1807c4bf5c1dfc48f84602", "variant": 638200735, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604241936}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2384592896}, "child": {"skip": 120, "offset": 148, "next": [], "symbols": [{"name": "ShapeFrameMakeSubPacket", "hash": "bb7b32104b002194f3b2fa30ff94e8b3506243b2", "variant": 799142519, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 2385510400}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 301989893}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 33562669}, "child": {"skip": 48, "offset": 80, "next": [], "symbols": [{"name": "__sceEENetif_qflush", "hash": "63051137ff7a8015af6407124cff1892820b2be2", "variant": 3724021932, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2382581296}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 274726916}, "child": {"skip": 136, "offset": 168, "next": [], "symbols": [{"name": "__sceEENetpppoe_clone_destroy", "hash": "ee1cd98fe442064404cf407833794a64d748aa56", "variant": 1138156778, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2385510408}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1442840581}, "child": {"skip": 136, "offset": 164, "next": [], "symbols": [{"name": "arptfree", "hash": "0e8d23170ca78c08056dd899ed2483234313aa36", "variant": 1256717152, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2384592924}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 272629789}, "child": {"skip": 136, "offset": 164, "next": [], "symbols": [{"name": "__sceEENetigmp_leavegroup", "hash": "b4a995473cd6ccf27cf07b3e7f3722f191ae5d3a", "variant": 3367660774, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2385510404}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 301989911}, "child": {"skip": 112, "offset": 140, "next": [], "symbols": [{"name": "__sceEENettcp_freeq", "hash": "c15e727b7718c0092b4182b2b07fc317d48522df", "variant": 548738141, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2384593288}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2354054112}, "child": {"skip": 88, "offset": 116, "next": [], "symbols": [{"name": "dhcp_sleep", "hash": "927dd4b742e32535250722c7f961caf4da08e226", "variant": 3266095906, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 0}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 304087047}, "child": {"skip": 48, "offset": 76, "next": [], "symbols": [{"name": "BIO_free_all", "hash": "8a0269d09cce8fb3e5163815ce13b07d5fe1b4cb", "variant": 2660508979, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 371195909}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 0}, "child": {"skip": 192, "offset": 220, "next": [], "symbols": [{"name": "R_rand_new", "hash": "9f00a3cbad6e5cd3564666fc45f6847768cd0557", "variant": 2798414335, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2385510480}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2382626864}, "child": {"skip": 84, "offset": 112, "next": [], "symbols": [{"name": "ssl2_free", "hash": "d71560fd0c995ade445a82e389ebf7c02bf5cf9a", "variant": 4082807214, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2384593072}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 272629790}, "child": {"skip": 140, "offset": 168, "next": [], "symbols": [{"name": "ssl_clear_bad_session", "hash": "665c58ab9466734e486e3803512ee3157d5de0bc", "variant": 2756248196, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2384723996}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 276824068}, "child": {"skip": 72, "offset": 100, "next": [], "symbols": [{"name": "X509_STORE_CTX_cleanup", "hash": "37fee8331c84beb744168037ca79fbe66d34a10f", "variant": 1336365280, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 278921222}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289724416}, "child": {"skip": 928, "offset": 952, "next": [], "symbols": [{"name": "dump_ppp_negotiation_ifcnf", "hash": "c8819abe9a8c02080b4e79cf40f2a577a499dc82", "variant": 3639951275, "library": "eenetctl"}]}}], "symbols": []}}, {"match": {"value": 304087048}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289724416}, "child": {"skip": 68, "offset": 92, "next": [], "symbols": [{"name": "sceHTTPLibStrsave", "hash": "f0931e5afd6db783c18871fd3bae826c964102b8", "variant": 1095143785, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 304087063}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289724416}, "child": {"skip": 108, "offset": 132, "next": [], "symbols": [{"name": "BN_clear_free", "hash": "2eb57fe35a36973161ae9417ce2915c3acedfeb5", "variant": 2063310956, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10520621}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2384658432}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 811729152}, "child": {"skip": 220, "offset": 248, "next": [], "symbols": [{"name": "_sdrCB", "hash": "184fe7e89e140bd2a404f42359824c3913e3b9f2", "variant": 1973867069, "library": "libsdr"}]}}], "symbols": []}}, {"match": {"value": 276824099}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 604166379}, "child": {"skip": 156, "offset": 184, "next": [], "symbols": [{"name": "sceAtokGetConvertingClause", "hash": "b1c9bcad2d2c6c986ff3e77c59589873c1ace9ad", "variant": 3919406696, "library": "libatok"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 276824070}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289724416}, "child": {"skip": 120, "offset": 144, "next": [], "symbols": [{"name": "sceUsbKbSync", "hash": "af1c899877abdcd05c9e63956061cac697cc03a8", "variant": 587637273, "library": "libusbkb"}]}}], "symbols": []}}, {"match": {"value": 276824067}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289724416}, "child": {"skip": 24, "offset": 48, "next": [{"match": {"value": 33564717}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 4206637}, "child": {"skip": 32, "offset": 88, "next": [], "symbols": [{"name": "SSL_SESSION_get_time", "hash": "47e206b2db81f0b813c057f38993565d748e1414", "variant": 1504344616, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 33562669}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 4206637}, "child": {"skip": 32, "offset": 88, "next": [], "symbols": [{"name": "SSL_SESSION_set_time", "hash": "73afaaa0adc8587bc55ccac3d4bcac3ae5fbcbac", "variant": 1504344616, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2358247448}, "child": {"skip": 120, "offset": 140, "next": [], "symbols": [{"name": "sceHiPlugShapeMasterChainSetting", "hash": "aecbf25ce4f6de4251145ae93ff63b9e1914bc34", "variant": 3740123715, "library": "libhip"}]}}], "symbols")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: []}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1007747072, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707488}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceFsIobSemaMK"}}, "child": {"skip": 100, "offset": 124, "next": [], "symbols": [{"name": "use_iob_cnt", "hash": "7bd66702c8c785fccf06fe69209c09fd54f105a0", "variant": 1589377219, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 8421421}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 640745472, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290707488}, "child": {"skip": 592, "offset": 620, "next": [], "symbols": [{"name": "sceNetcnfifDataDump", "hash": "abb3f2d3c49e5f645f4d6daaed6cc8d56386429b", "variant": 456178259, "library": "netcnfif"}]}}], "symbols": []}}, {"match": {"value": 4290707488}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2384723968, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 1417674757}, "child": {"skip": 220, "offset": 252, "next": [], "symbols": [{"name": "sceHiDMAMake_ExecMicroAddr", "hash": "d19df31dfa4132e461fd03c404f95eb5040b73a4", "variant": 1906303738, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "WaitSema"}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2384723968, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2382561308}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 274726918}, "child": {"skip": 44, "offset": 84, "next": [], "symbols": [{"name": "__sceEENeteenet_endtsleep", "hash": "49bc496f107fd969adc102344ac711affdbde02e", "variant": 3687411676, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2382561344}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 2382495772}, "child": {"skip": 48, "offset": 88, "next": [], "symbols": [{"name": "__sceEENeteenet_tabort", "hash": "d06648a29477f9daecd44296e2a34c977831b045", "variant": 445605119, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2382561496}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 1348468750}, "child": {"skip": 88, "offset": 128, "next": [], "symbols": [{"name": "__sceEENeteenet_sabort", "hash": "b12eba3ff268cd3099ee5115296ff83033cd3996", "variant": 3507888502, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 639893504, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sppp_down_event"}}, "child": {"skip": 172, "offset": 204, "next": [], "symbols": [{"name": "sppp_lcp_down", "hash": "ae3707ed99d0026f940f9e76bcb663df9d9015e7", "variant": 1888648491, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 10493997}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sbrk"}}, "child": {"skip": 60, "offset": 92, "next": [], "symbols": [{"name": "_sbrk_r", "hash": "612777cf773665d43a379474b99024a687c23972", "variant": 402064916, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8423469}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1007681536, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 638582784, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 56, "offset": 84, "next": [], "symbols": [{"name": "sce_delete_callback_thread", "hash": "8d5743b5542c6dd8365e68be01d0be80409d4b06", "variant": 3602436185, "library": "netcnfif"}]}}], "symbols": []}}, {"match": {"value": 4290707488}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2382626816, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 343932933}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 0}, "child": {"skip": 84, "offset": 120, "next": [], "symbols": [{"name": "sceHiDMAMake_ChainEnd", "hash": "7fccb80d2f858fd0f13bef72be2f2af3ef05f10c", "variant": 1438834969, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 1417674757}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2357329932}, "child": {"skip": 196, "offset": 232, "next": [], "symbols": [{"name": "sceHiDMAMake_CallPtr", "hash": "aebc2ad1227ee3516fdaf36a17f0ee7953c0776f", "variant": 2232123264, "library": "libhig"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "WaitSema"}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2382626816, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 36, "offset": 68, "next": [], "symbols": [{"name": "__sceEENetunlock_threadinfo", "hash": "21537d976fdb11724292cd66f44199747fcbf3dd", "variant": 4004789539, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 10493997}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "close"}}, "child": {"skip": 56, "offset": 88, "next": [], "symbols": [{"name": "_close_r", "hash": "da31e34d5cb96209344c18ced26fd61a3bf68e36", "variant": 3317097142, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707488}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceDevVu0CheckBusy"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 35684397}, "child": {"skip": 8, "offset": 36, "next": [{"match": {"value": 3657433088}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 3657498640}, "child": {"skip": 320, "offset": 364, "next": [], "symbols": [{"name": "sceDevVu0PutCnd", "hash": "e2e4e57295eb532dbc0e0735b64d210a4a990a4b", "variant": 3457224650, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 4194304000}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 4194369552}, "child": {"skip": 320, "offset": 364, "next": [], "symbols": [{"name": "sceDevVu0PutCnd", "hash": "c90e283bad80ae5e81f69a82a0b54c92c6029e21", "variant": 3457224650, "library": "libdev"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "DIntr"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 10518573}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2922381312}, "child": {"skip": 40, "offset": 76, "next": [{"match": {"value": 4202541}, "child": {"skip": 0, "offset": 80, "next": [{"match": {"value": 2357395476}, "child": {"skip": 64, "offset": 148, "next": [], "symbols": [{"name": "sceSifSetRpcQueue", "hash": "27d8084474838eff8dbfde54a058fa3bc0fdf706", "variant": 2887702549, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 4200493}, "child": {"skip": 0, "offset": 80, "next": [{"match": {"value": 2355232788}, "child": {"skip": 64, "offset": 148, "next": [], "symbols": [{"name": "sceSifSetRpcQueue", "hash": "3130e59a6ab4506800c7b579d0a9189d6e00e544", "variant": 2887702549, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 3657695232}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 1271144810}, "child": {"skip")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: 0, "offset": 36, "next": [{"match": {"value": 1258629441}, "child": {"skip": 84, "offset": 124, "next": [], "symbols": [{"name": "sceVu0Normalize", "hash": "0b48494b7810b65e8c03c309d23b9f0a74931d06", "variant": 2093869329, "library": "libvu0"}]}}], "symbols": []}}, {"match": {"value": 1273307517}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 4196728832}, "child": {"skip": 40, "offset": 80, "next": [], "symbols": [{"name": "sceVu0FTOI4Vector", "hash": "de37ac38fca845129d2a809e633f762868737b53", "variant": 241805042, "library": "libvu0"}]}}], "symbols": []}}, {"match": {"value": 1273307516}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 4196728832}, "child": {"skip": 40, "offset": 80, "next": [], "symbols": [{"name": "sceVu0FTOI0Vector", "hash": "028620a1c2b66765153656a6947af50dc15b69d6", "variant": 241805042, "library": "libvu0"}]}}], "symbols": []}}, {"match": {"value": 1273307453}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 4196728832}, "child": {"skip": 40, "offset": 80, "next": [], "symbols": [{"name": "sceVu0ITOF4Vector", "hash": "7934308d7a0bc5350b8c1e2ad0e35443d739a33c", "variant": 241805042, "library": "libvu0"}]}}], "symbols": []}}, {"match": {"value": 1273307452}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 4196728832}, "child": {"skip": 40, "offset": 80, "next": [], "symbols": [{"name": "sceVu0ITOF0Vector", "hash": "b47fb9de67448e4ccd629e1638ccda1e9331aed4", "variant": 241805042, "library": "libvu0"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2047344640}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2047410192}, "child": {"skip": 4, "offset": 40, "next": [{"match": {"value": 2047541296}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 1898472584}, "child": {"skip": 84, "offset": 132, "next": [], "symbols": [{"name": "sceVu0TransposeMatrix", "hash": "4652f6527387fe9de7cd7c4a956476a8cfe4a218", "variant": 3322808404, "library": "libvu0"}]}}], "symbols": []}}, {"match": {"value": 3657695280}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 1273307964}, "child": {"skip": 124, "offset": 172, "next": [], "symbols": [{"name": "sceVu0InversMatrix", "hash": "64490e152c1a8996053f9d272561eb33bafa1598", "variant": 4111371901, "library": "libvu0"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2047213568}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2116419584}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 272629765}, "child": {"skip": 36, "offset": 76, "next": [], "symbols": [{"name": "sceVu0CopyVector", "hash": "fce11b195b4f3c883db868f732bc142ec4242215", "variant": 74658869, "library": "libvu0"}]}}], "symbols": []}}, {"match": {"value": 2047279120}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 2047344672}, "child": {"skip": 60, "offset": 100, "next": [], "symbols": [{"name": "sceVu0CopyMatrix", "hash": "dce4a64a60f8e925a651c17cabf86a4ebf4c54db", "variant": 1083344771, "library": "libvu0"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 3657826304}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 3657891856}, "child": {"skip": 116, "offset": 152, "next": [], "symbols": [{"name": "Vu0InverseMatrixRT", "hash": "f4dfddd4d2457ebee480a27fb765a1afcacbe57b", "variant": 3944823092, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 3657498624}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 3657564176}, "child": {"skip": 188, "offset": 224, "next": [], "symbols": [{"name": "Vu0InverseMatrix34", "hash": "8811d514cea3a5425c8747c2dd4027778f03d28e", "variant": 2276114846, "library": "libhip"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_waitIpuIdle"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 10518573}, "child": {"skip": 120, "offset": 148, "next": [], "symbols": [{"name": "_sceMpegFlushBuf", "hash": "ecd4b51561501a035e0ef884e0b45938e6781a36", "variant": 3022733177, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "convertfrombcd"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 10518573}, "child": {"skip": 16, "offset": 44, "next": [{"match": {"value": 704774205}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 1413480464}, "child": {"skip": 88, "offset": 140, "next": [], "symbols": [{"name": "AdjustTime", "hash": "1f20be64376b273757be24a02724e056a706d467", "variant": 1197246960, "library": "libscf"}]}}], "symbols": []}}, {"match": {"value": 704774204}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 1413480464}, "child": {"skip": 88, "offset": 140, "next": [], "symbols": [{"name": "AdjustTime", "hash": "6a2dd28fdadc26e14ff1e0bcedcce5ca59622ee3", "variant": 1197246960, "library": "libscf"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceHiGsContextStatus"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 10518573}, "child": {"skip": 36, "offset": 64, "next": [], "symbols": [{"name": "sceHiGsXyoffsetRegs", "hash": "8b9587c42a7c18585e685164e0eb7e40ee84666b", "variant": 1528489265, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "BN_num_bits"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 10518573}, "child": {"skip": 132, "offset": 160, "next": [], "symbols": [{"name": "BN_bn2bin", "hash": "35d5ce0e5d0ddb8ed7658c212362bc83feb9158e", "variant": 4024264395, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "DH_new_meth"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2384723976}, "child": {"skip": 108, "offset": 136, "next": [], "symbols": [{"name": "DH_params_dup", "hash": "6337cdbe728b255efc8f22f5f32508d2c5f43345", "variant": 1022503734, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "RSA_new_meth"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2384723976}, "child": {"skip": 156, "offset": 184, "next": [], "symbols": [{"name": "RSA_dup", "hash": "8ae5f37059159ff9f1407f5c410e6bac5c8fe86b", "variant": 3068021611, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sk_new"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2384723984}, "child": {"skip": 120, "offset": 148, "next": [], "symbols": [{"name": "sk_dup", "hash": "02e850b12ebd06e25d332bbea67a0bc411fbb2a0", "variant": 3296565590, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 371195911}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 10518573}, "child": {"skip": 20, "offset": 48, "next": [{"match": {"value": 604307874}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 637666720}, "child": {"skip": 148, "offset": 204, "next": [], "symbols": [{"name": "AdjustTime", "hash": "406666bdffbe8a7564fc759d43d79b66bc733feb", "variant": 2362799565, "library": "libscf"}]}}], "symbols": []}}, {"match": {"value": 604307872}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 637666720}, "child": {"skip": 148, "offset": 204, "next": [], "symbols": [{"name": "AdjustTime", "hash": "a391ccf5af23de09d3c31a552437a8ed4feb65d3", "variant": 2362799565, "library": "libscf"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2384723988}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2357329932}, "child": {"skip": 160, "offset": 188, "next": [], "symbols": [{"name": "SetShare", "hash": "ac2d0770da9ef112825e1e3e97869e8e0cd8bc7b", "variant": 3393567743, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 2451701760}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 608370618}, "child": {"skip": 396, "offset": 424, "next": [)PS2SDB", 8192}, + std::string_view{R"PS2SDB(], "symbols": [{"name": "weekday", "hash": "773db1f05ae58956b209b9402375315cb5839fa0", "variant": 1873167188, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 10518573}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2384658436}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 7344170}, "child": {"skip": 108, "offset": 140, "next": [], "symbols": [{"name": "bn_zexpand", "hash": "b054c81acbaeef9d59ff799879738195eee045e8", "variant": 1874542809, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2384855048}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 13635626}, "child": {"skip": 104, "offset": 136, "next": [], "symbols": [{"name": "r_eitems_expand", "hash": "ab84dbaaa26378ddeca8b3e3b0e9b239e9a09791", "variant": 3955942558, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2384592900}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 406847500}, "child": {"skip": 144, "offset": 172, "next": [], "symbols": [{"name": "R_EITEMS_free", "hash": "7961d10a9b1d9025759fbfbdc19fca9feab5f0ce", "variant": 2992330001, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10518573}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 301990076}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290707488}, "child": {"skip": 768, "offset": 796, "next": [], "symbols": [{"name": "_free_r", "hash": "21f9c7bce4c1e7007e9e84067b5dce6d55c2c778", "variant": 2318843232, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 301990078}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290707488}, "child": {"skip": 776, "offset": 804, "next": [], "symbols": [{"name": "_free_r", "hash": "ab361d1cc64bc45b6bbb39d83e29eca7ad3a9d9e", "variant": 2776126887, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4290707488}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__sceEENetselwakeup"}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 637796396}, "child": {"skip": 88, "offset": 120, "next": [], "symbols": [{"name": "__sceEENetsowakeup", "hash": "444d3f9ea453bbfa8941daa02b3e7a74fd32f0f9", "variant": 1332780146, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "bzero"}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604307460}, "child": {"skip": 160, "offset": 192, "next": [], "symbols": [{"name": "in_len2mask", "hash": "c06983ed905a769627554be30e32d4bcfa70edb3", "variant": 701065591, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 10285}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "memset"}}, "child": {"skip": 108, "offset": 140, "next": [], "symbols": [{"name": "sceHiMemInit", "hash": "e083f1d8496a9bfd43b7e9365f27c1a61f5f3bfd", "variant": 699177757, "library": "libhig"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 301989893}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290707488}, "child": {"skip": 24, "offset": 52, "next": [{"match": {"value": 268435525}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 4141}, "child": {"skip": 292, "offset": 352, "next": [], "symbols": [{"name": "_create_packed", "hash": "51c3b6604a4d22513329bf0344ffde98cf28a3e9", "variant": 2864385275, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 268435526}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 3753836576}, "child": {"skip": 292, "offset": 352, "next": [], "symbols": [{"name": "_create_packed", "hash": "65ac8f4b59ccf6c74e0be2544439ea207d47305a", "variant": 2864385275, "library": "libhig"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 369098755}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290707488}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 268435484}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4141}, "child": {"skip": 128, "offset": 164, "next": [], "symbols": [{"name": "sceHTTPLibStrcasesub", "hash": "3cdd392285004ef28963cb2f24433ff65629b5b2", "variant": 2852938190, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 268435471}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4141}, "child": {"skip": 76, "offset": 112, "next": [], "symbols": [{"name": "sceHTTPLibStrsub", "hash": "e10c627f02dc84523801f0832aa1285cfc5b6e77", "variant": 4047541032, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 268435458}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2385510400}, "child": {"skip": 196, "offset": 232, "next": [], "symbols": [{"name": "EVP_DigestInit", "hash": "5b5999112428f326e81a50270ed45f0d81cc5b76", "variant": 4280184633, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 12617773}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707488}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "scePadGetDmaStr"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 14712877}, "child": {"skip": 4, "offset": 32, "next": [{"match": {"value": 2424635506}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 604110849}, "child": {"skip": 200, "offset": 240, "next": [], "symbols": [{"name": "scePadInfoAct", "hash": "3e029bff09d646d522f30935dd190fe6e0d9b933", "variant": 1039225669, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 2424504434}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 604110849}, "child": {"skip": 188, "offset": 228, "next": [], "symbols": [{"name": "scePadInfoComb", "hash": "40b4f4d1ca9a702bc48a25b035a2ca7476eebffc", "variant": 1039225669, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8421421}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceVu0RotMatrixZ"}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 3324772360}, "child": {"skip": 48, "offset": 80, "next": [], "symbols": [{"name": "sceVu0RotMatrix", "hash": "63a6858b9dadf7153407f23d4950b7c44d1f2ac5", "variant": 3676706407, "library": "libvu0"}]}}], "symbols": []}}, {"match": {"value": 2920284160}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2920284164}, "child": {"skip": 116, "offset": 148, "next": [], "symbols": [{"name": "__sceEENetin_pcbinit", "hash": "d1ca45848365d9032c5a30bfa578a3db9d66b53d", "variant": 1777104249, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 10493997}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2382757888}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 36048938}, "child": {"skip": 108, "offset": 144, "next": [], "symbols": [{"name": "BUF_MEM_consume", "hash": "3fb48e5bcc76097e4aa75c6691b7ac513b002bdd", "variant": 2385780507, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2382561280}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2355232788}, "child": {"skip": 60, "offset": 96, "next": [], "symbols": [{"name": "EVP_DigestFinal", "hash": "7628a84e1c7c3a09ad919ff2d295972065ba3292", "variant": 1446959226, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2921332736}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2382757888}, "child": {"skip": 72, "offset": 104, "next": [], "symbols": [{"name": "EVP_DecodeFinal", "hash": "f604736f91a33f452c57d28b2e582b5dbe50296b", "variant": 2141481520, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 276824067}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 10518573}, "child": {"skip": 40, "offset": 68, "next": [], "symbols": [{"name": "sceHiGsMemRealloc", "hash": "ac)PS2SDB", 8192}, + std::string_view{R"PS2SDB(6111a238dc1c98cb7dd57d5c6c2b414e2d248b", "variant": 1282252403, "library": "libhig"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10520621}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707488}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "DIntr"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 8421421}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4202541}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 100, "offset": 136, "next": [], "symbols": [{"name": "sceSifSetDma", "hash": "05d6d82955b8c39fa4f95239cadfbf5869602cac", "variant": 2070324061, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006833663}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 1006927872}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 878968831}, "child": {"skip": 72, "offset": 112, "next": [], "symbols": [{"name": "receiveDataFromIPU", "hash": "29dafd56e603afd523e966abd87b66d437ec1ac9", "variant": 1993833430, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 1006964736}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 878968831}, "child": {"skip": 92, "offset": 132, "next": [], "symbols": [{"name": "receiveDataFromIPU", "hash": "660be03f77ca512d20cd7afda094bf90b76d96a1", "variant": 3322808404, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4204589}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 608436224, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 104, "offset": 144, "next": [], "symbols": [{"name": "sceTimerGetUsedUnusedCounters", "hash": "f5aad2132c354465de81d3a4c2a8e14dde1bd421", "variant": 1916549758, "library": "libtimer"}]}}], "symbols": []}}, {"match": {"value": 1056514}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 604110855}, "child": {"skip": 120, "offset": 160, "next": [], "symbols": [{"name": "receiveDataFromIPU", "hash": "89bbe7fdf5c81efd6b68c29004e5f2b6013d93d8", "variant": 1373821041, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 3661299712}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 1245381436}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 1272646076}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 1272647869}, "child": {"skip": 144, "offset": 188, "next": [], "symbols": [{"name": "Vu0WeightNormal_Normalize", "hash": "529d8471e9447cb948eb5cf1297889ad18f92e56", "variant": 3714368865, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 3456106496}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 1272646076}, "child": {"skip": 68, "offset": 112, "next": [], "symbols": [{"name": "Vu0WeightNormal", "hash": "83ff99c9d06a73cad4997585478cf3348ac17752", "variant": 1589457098, "library": "libhip"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "TerminateLibrary"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 8421421}, "child": {"skip": 28, "offset": 56, "next": [], "symbols": [{"name": "ExecOSD", "hash": "63476cf55fc33f45aba4ee663f52fa1b78786d3a", "variant": 2607837721, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceHiDMAMake_DynamicChainStart"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 8421421}, "child": {"skip": 84, "offset": 112, "next": [], "symbols": [{"name": "_regist_to_hidma", "hash": "76f14dcd66d9c5b8f4dfbb89cb2ef8ee5991c900", "variant": 1389736339, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "url_encoded_lenN"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 8421421}, "child": {"skip": 192, "offset": 220, "next": [], "symbols": [{"name": "sceURLLibEscapeN", "hash": "47dd02ce75b0b56e0d3fc1dec6a290e81eb42c28", "variant": 3675548318, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "ERR_get_state"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 8421421}, "child": {"skip": 60, "offset": 88, "next": [], "symbols": [{"name": "ERR_set_error_data", "hash": "e7718447dab5ce72ef81720700a7969f093dbe42", "variant": 2453073057, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 773980192}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 272629768}, "child": {"skip": 4, "offset": 32, "next": [{"match": {"value": 2382627284}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 343932936}, "child": {"skip": 144, "offset": 184, "next": [], "symbols": [{"name": "__sigtramp_r", "hash": "0ca45dc6f44340a7ca2a2d87650cd61c74255edf", "variant": 471413755, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 2382496212}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 1413480455}, "child": {"skip": 156, "offset": 196, "next": [], "symbols": [{"name": "__sigtramp_r", "hash": "9f2eec9a302911949abcc7bb98b81055373ae85f", "variant": 471413755, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8421421}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "EVP_MD_CTX_set_digest"}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2384789504}, "child": {"skip": 68, "offset": 100, "next": [], "symbols": [{"name": "EVP_MD_CTX_copy", "hash": "36614367c1ad1f262600745a82f0e9b2983452bf", "variant": 4055657363, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2382825560}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 619184160}, "child": {"skip": 240, "offset": 272, "next": [], "symbols": [{"name": "_dispRefImage", "hash": "cad74ed1f495ade20975a3ea9adaec45cc6e1db5", "variant": 4048950813, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2382825584}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 619184160}, "child": {"skip": 240, "offset": 272, "next": [], "symbols": [{"name": "_dispRefImage", "hash": "137f94ea0995fa503ea53d43869295fc4d7265a5", "variant": 4048950813, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2382626928}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 3699507200}, "child": {"skip": 148, "offset": 180, "next": [], "symbols": [{"name": "sceHiGsCtxRegist", "hash": "3dc02f4e2558849eca07f4a8dfbc02c7e0e77788", "variant": 4199723159, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 301989895}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 33558573}, "child": {"skip": 44, "offset": 76, "next": [], "symbols": [{"name": "search", "hash": "31b3295a2eab718c2a3b8956a413dcc1c6ac6c68", "variant": 4085916289, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2382757888}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2384592896}, "child": {"skip": 60, "offset": 92, "next": [], "symbols": [{"name": "ASN1_STRING_cmp", "hash": "0b89bb2724977315f2bcbda0b1a249fc9ab3b60c", "variant": 2884775917, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2382692352}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2382495748}, "child": {"skip": 104, "offset": 136, "next": [], "symbols": [{"name": "BER_ITEMS_SK_get", "hash": "99a5cbb4185aada34be5c5a44f99da51d371274b", "variant": 1260243220, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 304087112}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604110849}, "child": {"skip": 304, "offset": 336, "next": [], "symbol)PS2SDB", 8192}, + std::string_view{R"PS2SDB(s": [{"name": "BN_add_word", "hash": "4ec5bff738cce9ab2ffeaaf26fb92badbfc85f64", "variant": 4184065168, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 304087122}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604110849}, "child": {"skip": 344, "offset": 376, "next": [], "symbols": [{"name": "BN_sub_word", "hash": "08dd1f04a863719d05fff7c2a79f279008cfe896", "variant": 2120751525, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2384592896}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2382626820}, "child": {"skip": 232, "offset": 264, "next": [], "symbols": [{"name": "HMAC_copy", "hash": "a6c0b5b69af48a204145f5350289fd8843fb1ab7", "variant": 2290530494, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2382692528}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2359427140}, "child": {"skip": 240, "offset": 272, "next": [], "symbols": [{"name": "ssl_update_cache", "hash": "af9999d528b5d33e5cf4ab453f10c4a7d027617e", "variant": 4079753520, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 3726770384}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 136250}, "child": {"skip": 416, "offset": 444, "next": [], "symbols": [{"name": "sceHiGsCtxSetByDBuff", "hash": "a3906c559fad9dfcd775297aa880c9b17e23a409", "variant": 3929559780, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 1006960896}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 883228675}, "child": {"skip": 244, "offset": 272, "next": [], "symbols": [{"name": "init_func", "hash": "52f32d131a9c7f2c61531d72bc7986cac1a38cdc", "variant": 765452120, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 371195908}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 8421421}, "child": {"skip": 220, "offset": 248, "next": [], "symbols": [{"name": "__callout_stop", "hash": "5410ef552e8559188aa157f1602c2de63f47a7c1", "variant": 3535771446, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 841089025}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 272629766}, "child": {"skip": 284, "offset": 312, "next": [], "symbols": [{"name": "delete_auto_headers", "hash": "014e7a1eaa9614a6bde92f5ca45c11fb1cff00f6", "variant": 3270138776, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 304087080}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 8421421}, "child": {"skip": 180, "offset": 208, "next": [], "symbols": [{"name": "ASN1_UTCTIME_set", "hash": "68b99a968b1b531ab0279927fe738e7c68fd68b7", "variant": 4146528402, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 371195909}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 8421421}, "child": {"skip": 4, "offset": 32, "next": [{"match": {"value": 604307627}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 268435467}, "child": {"skip": 96, "offset": 136, "next": [], "symbols": [{"name": "SSL_CTX_use_certificate", "hash": "87e0a6ab93029192f74721d3b0b7813721ac1541", "variant": 2018703275, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604307630}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 268435467}, "child": {"skip": 96, "offset": 136, "next": [], "symbols": [{"name": "SSL_CTX_use_PrivateKey", "hash": "3cb4af95cae1b1d1bf2b074e7975be591cefdaac", "variant": 1263721211, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8421421}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 503316484}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290707488}, "child": {"skip": 172, "offset": 200, "next": [], "symbols": [{"name": "__sceEENethashinit", "hash": "c5ef4a541ab8c866350f88162b15412c9deac075", "variant": 2782063725, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4290707488}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "BER_ITEM_cmp_tag"}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604307458}, "child": {"skip": 164, "offset": 196, "next": [], "symbols": [{"name": "BER_ITEM_get_long", "hash": "fb0ee77aec399818c4aa7fd1f5782fbe65c82f18", "variant": 766361843, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "strlen"}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 35659821}, "child": {"skip": 8, "offset": 40, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "BIO_write"}}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 4206637}, "child": {"skip": 20, "offset": 68, "next": [], "symbols": [{"name": "buffer_puts", "hash": "ffb313ed37bcdf848d43a92900d1d8996f3dfb75", "variant": 4013241703, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "file_write"}}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 4206637}, "child": {"skip": 20, "offset": 68, "next": [], "symbols": [{"name": "file_puts", "hash": "ffb313ed37bcdf848d43a92900d1d8996f3dfb75", "variant": 1617874610, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "scefd_write"}}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 4206637}, "child": {"skip": 20, "offset": 68, "next": [], "symbols": [{"name": "scefd_puts", "hash": "ffb313ed37bcdf848d43a92900d1d8996f3dfb75", "variant": 1765717474, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "mem_write"}}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 4206637}, "child": {"skip": 20, "offset": 68, "next": [], "symbols": [{"name": "mem_puts", "hash": "ffb313ed37bcdf848d43a92900d1d8996f3dfb75", "variant": 1149642681, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sock_write"}}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 4206637}, "child": {"skip": 20, "offset": 68, "next": [], "symbols": [{"name": "sock_puts", "hash": "ffb313ed37bcdf848d43a92900d1d8996f3dfb75", "variant": 1542231141, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 35659821}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__sceEENetin_ifscrub"}}, "child": {"skip": 248, "offset": 280, "next": [], "symbols": [{"name": "__sceEENetin_purgeaddr", "hash": "3b57a773cc02ad7872dbf811f5e80a55b094ecf6", "variant": 1893289370, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 301989900}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290707488}, "child": {"skip": 156, "offset": 184, "next": [], "symbols": [{"name": "sceEENetSetDNSAddr", "hash": "1ad665e40e5be3277e0be64392f55e6c7b377e07", "variant": 3993981191, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 370212867}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290707488}, "child": {"skip": 140, "offset": 168, "next": [], "symbols": [{"name": "BN_copy", "hash": "a262fca5757d4101028bfbcf6e90ad178c43c7f5", "variant": 4121231246, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 301989891}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290707488}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 371195907}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 0}, "child": {"skip": 52, "offset": 88, "next": [], "symbols": [{"name": "X509_EXTENSION_set_object", "hash": "acddd68ece02d04aa8c7f4b0ec4eb7a1620eca74", "variant": 2218660047, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 371195913}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 0}, "child": {"skip": 76, "offset": 112, "next": [], "symbols": [{"name": "X509_NAME_ENTRY_set)PS2SDB", 8192}, + std::string_view{R"PS2SDB(_object", "hash": "0f1fd0aedcdf50e1de84240aa8ce34535c98a46e", "variant": 3798818640, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707488}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "DIntr"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8423469}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 610467840, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 112, "offset": 144, "next": [], "symbols": [{"name": "sceSifRemoveRpcQueue", "hash": "84ab76333cd5832b494869a8b1d00c95fa696a8c", "variant": 2149900259, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 2384723976}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 6189}, "child": {"skip": 136, "offset": 168, "next": [], "symbols": [{"name": "_sceRpcGetPacket", "hash": "c8b68a71f6b89c126a6d5ec29f856e07bb2978a0", "variant": 1637270913, "library": "libkernl"}, {"name": "_sceRpcGetPacket", "hash": "c8b68a71f6b89c126a6d5ec29f856e07bb2978a0", "variant": 752427130, "library": "libmrpc"}]}}], "symbols": []}}, {"match": {"value": 2384658440}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 8237}, "child": {"skip": 140, "offset": 172, "next": [], "symbols": [{"name": "_sceRpcGetPacket", "hash": "c3065686e880962aa4527d5bcf689ab0b5b47c3d", "variant": 3511662083, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 0}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "iAllocTimerCounter"}}, "child": {"skip": 44, "offset": 72, "next": [], "symbols": [{"name": "AllocTimerCounter", "hash": "99d8047509d9af0dd9ba87c0a7741b5503ddb3fd", "variant": 1807000645, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceFsIobSemaMK"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1007747072, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 112, "offset": 136, "next": [], "symbols": [{"name": "new_iob", "hash": "e78ee25942962aa574465e0f3fe019bf6ae1bd0e", "variant": 1481106352, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceSifInitRpc"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8237}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 268435468}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 1007747072, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 1006764048}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 604241919}, "child": {"skip": 192, "offset": 232, "next": [], "symbols": [{"name": "sceFsInit", "hash": "8e82b808458a76582e68b105e969d7968ed1ceaa", "variant": 921509984, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006764033}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 604241919}, "child": {"skip": 564, "offset": 604, "next": [], "symbols": [{"name": "sceMtapInit", "hash": "cab2f713a98b4d801da2275ff38a090d3b3f7370", "variant": 791612900, "library": "libmtap"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 268435466}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 1007747072, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 1006764048}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 604241919}, "child": {"skip": 176, "offset": 216, "next": [], "symbols": [{"name": "sceFsInit", "hash": "e253efb2a11859eeed5dfa52f98a1e102cbeb998", "variant": 2967161328, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176383}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 0}, "child": {"skip": 364, "offset": 404, "next": [], "symbols": [{"name": "sceDbcInit", "hash": "d8c5ef89374aa37f7ee4ad03bd6875acca7617c9", "variant": 2208160688, "library": "libdbc"}]}}], "symbols": []}}, {"match": {"value": 604241919}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 0}, "child": {"skip": 40, "offset": 80, "next": [{"match": {"value": 883230977}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}}, "child": {"skip": 4, "offset": 92, "next": [{"match": {"value": 71499782}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 2382495780}, "child": {"skip": 472, "offset": 572, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "printf"}}, "child": {"skip": 0, "offset": 576, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 60, "offset": 640, "next": [], "symbols": [{"name": "sceMtapInit", "hash": "e3c32a76081ce4174e3686a46fee97c66ab52591", "variant": 285453993, "library": "libmtap"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "scePrintf"}}, "child": {"skip": 0, "offset": 576, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 60, "offset": 640, "next": [], "symbols": [{"name": "sceMtapInit", "hash": "e3c32a76081ce4174e3686a46fee97c66ab52591", "variant": 1777638888, "library": "libmtap"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 71303278}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 476, "offset": 576, "next": [], "symbols": [{"name": "sceMtapInit", "hash": "2d4a6f825fd6260c7c281d549d29de7f1d169aa8", "variant": 107457243, "library": "libmtap"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 883230976}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceSifBindRpc"}}, "child": {"skip": 168, "offset": 256, "next": [], "symbols": [{"name": "sceMtapInit", "hash": "614e79980480094567fe785f4c5923e459571353", "variant": 113766421, "library": "libmtap"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764033}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 604241919}, "child": {"skip": 524, "offset": 564, "next": [], "symbols": [{"name": "sceMtapInit", "hash": "f9fb7f38c795c550f38c2d931c0068aab7508948", "variant": 1669809546, "library": "libmtap"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "SetArg"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 10520621}, "child": {"skip": 48, "offset": 72, "next": [], "symbols": [{"name": "LoadExecPS2", "hash": "463d748f95eb69330b9d1c71cdd32d0e1a4f5538", "variant": 3797194245, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "scePadGetDmaStr"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 12617773}, "child": {"skip": 44, "offset": 68, "next": [], "symbols": [{"name": "scePadRead", "hash": "d6eede82662cb71dd12e65c2b1bfbddc76bc9b5e", "variant": 2432357885, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceScfGetTimeZone"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8423469}, "child": {"skip": 48, "offset": 72, "next": [{"match": {"value": 604307913}, "child": {"skip": 0, "offset": 76, "next": [{"match": {"value": 35659821}, "child": {"skip": 24, "offset": 104, "next": [], "symbols": [{"name": "sceScfGetLocalTimefromRTC", )PS2SDB", 8192}, + std::string_view{R"PS2SDB("hash": "454a98400e4b4ad8ceacb3f4d2dc5bd903882909", "variant": 1619809892, "library": "libscf"}]}}], "symbols": []}}, {"match": {"value": 604307911}, "child": {"skip": 0, "offset": 76, "next": [{"match": {"value": 35659821}, "child": {"skip": 24, "offset": 104, "next": [], "symbols": [{"name": "sceScfGetLocalTimefromRTC", "hash": "bf0840ab3f03f9a90c72e6ce7c5d51dc2c8323c8", "variant": 1619809892, "library": "libscf"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "GetThreadId"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1007747072, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 60, "offset": 84, "next": [], "symbols": [{"name": "__sceEENetspllock", "hash": "bfcbf415a786665e8c18c9f466a1127cc3285c69", "variant": 3880232330, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__sceEENetspllock"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8423469}, "child": {"skip": 72, "offset": 96, "next": [], "symbols": [{"name": "__sceEENetsppp_pick", "hash": "a11483912b40d6bafc6ac26009489a06881dc3ec", "variant": 2859092397, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__sceEENetthread_enter"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8423469}, "child": {"skip": 52, "offset": 76, "next": [], "symbols": [{"name": "sceEENetBpfClose", "hash": "3d119ec2c49d0ce795bf852e2573ef3eca7fee7d", "variant": 1802592149, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "strlen"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8423469}, "child": {"skip": 68, "offset": 92, "next": [], "symbols": [{"name": "copy_str", "hash": "12edc4bedcf8f15e0e1bcd292ea02272ab2ba44f", "variant": 231022123, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "get_common_global"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 0}, "child": {"skip": 92, "offset": 116, "next": [], "symbols": [{"name": "ERR_free_strings", "hash": "951d401731c3a6b8ce2fd8b6ba7021e5bcc1ee5b", "variant": 2947550077, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "R_rand_get_default"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8423469}, "child": {"skip": 76, "offset": 100, "next": [], "symbols": [{"name": "R_rand_set_default", "hash": "7adc7e1f263c32ed4828ad3d39a59174c7e1fe56", "variant": 4130503728, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 8421421}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2382561356}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 341835783}, "child": {"skip": 140, "offset": 168, "next": [], "symbols": [{"name": "_Balloc", "hash": "34bbd36bcc65682d4d5225208db72448f4ab8654", "variant": 2540683561, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 2382495820}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 339738630}, "child": {"skip": 140, "offset": 168, "next": [], "symbols": [{"name": "_Balloc", "hash": "bdef949370926a6167254b6296b2f9c2d55b7fce", "variant": 2540683561, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 2382497832}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 339738629}, "child": {"skip": 112, "offset": 140, "next": [], "symbols": [{"name": "_sceMpegPeepBit", "hash": "f636474e68aef8b605ae5ccda981ec3605dd0dde", "variant": 2812626092, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2382626928}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 3699507200}, "child": {"skip": 20, "offset": 48, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_SyncAddrQwsize"}}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 608501761}, "child": {"skip": 76, "offset": 132, "next": [], "symbols": [{"name": "sceHiGsCtxFcache", "hash": "a9c7abc9a89f05a801945dcb1c7d93e666058a49", "variant": 943911683, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_iSyncAddrQwsize"}}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 608501761}, "child": {"skip": 76, "offset": 132, "next": [], "symbols": [{"name": "sceHiGsCtxFcacheI", "hash": "a9c7abc9a89f05a801945dcb1c7d93e666058a49", "variant": 907256508, "library": "libhig"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2449604842}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 272629818}, "child": {"skip": 396, "offset": 424, "next": [], "symbols": [{"name": "sceHiGsCtxSetLumpBuffer", "hash": "899e229a156f7c4c6c9c63fcf18e71b84cf9acf0", "variant": 1243311007, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 2382495776}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 339738639}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 638648352}, "child": {"skip": 80, "offset": 112, "next": [], "symbols": [{"name": "__sceEENetin_pcbrtentry", "hash": "ad5f3999a1c1c3b471ed029ae993adee35151f47", "variant": 4238804914, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 339738633}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 605093889}, "child": {"skip": 128, "offset": 160, "next": [], "symbols": [{"name": "SSL_do_handshake", "hash": "344e4b4f702f2db6a818b268ab8a62b386d94430", "variant": 4224121040, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2516713632}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2248343714}, "child": {"skip": 172, "offset": 200, "next": [], "symbols": [{"name": "__sceEENettcp_setpersist", "hash": "e07dbdbcf602df800de8bcd0a0396896c27cecdc", "variant": 2033327488, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2382495792}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 272629762}, "child": {"skip": 156, "offset": 184, "next": [], "symbols": [{"name": "__sceEENettcp_disconnect", "hash": "9e3a26ddf3eb199cb72c66719bad810dd5475260", "variant": 2184930485, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2382495764}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 272629787}, "child": {"skip": 132, "offset": 160, "next": [], "symbols": [{"name": "__sceEENetif_down", "hash": "5f5bc99920b77f46c18f94f78ce527e9615d3058", "variant": 844068564, "library": "eenetctl"}]}}], "symbols": []}}, {"match": {"value": 2382495752}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 473956359}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 10520621}, "child": {"skip": 100, "offset": 132, "next": [], "symbols": [{"name": "BN_set_word", "hash": "7bc7e0d8e7540fa3dfe857d5598169ce68951fa6", "variant": 4203733256, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 339738633}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 10520621}, "child": {"skip": 276, "offset": 308, "next": [], "symbols": [{"name": "ssl_clear_internal", "hash": "b1700ee2c83971034c7168540e0a3b7a3a77c7aa", "variant": 1446328391, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2382495744}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 272629776}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 34861}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 8237}, "child": {"skip": 80, "offset": 116, "next": [], "symbols": [{"name": "BN_library_init", "hash": "1973066c36329ee4fe8c4bba635be858d4874bab", "variant": 549770906, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 10520621}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2382626936}, "child": {"skip": 212, "offset": 248, "next": [], "symbols": [{"name": "EVP_CIPHER_CTX_set_c)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ipher", "hash": "dc3667261618eb930e6faea6ee3fd44adc9bd1da", "variant": 2197686070, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 272629773}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 10520621}, "child": {"skip": 180, "offset": 212, "next": [], "symbols": [{"name": "EVP_MD_CTX_set_digest", "hash": "079e0de1143e6b479d8b7ea014eb5c09bc645014", "variant": 1856826531, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2382561364}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2355233044}, "child": {"skip": 128, "offset": 156, "next": [], "symbols": [{"name": "ssl3_renegotiate_check", "hash": "99eab9918c197d3c0692dbe1efa41de477f07b0a", "variant": 1709994255, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10518573}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2382561364}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 341835781}, "child": {"skip": 248, "offset": 276, "next": [], "symbols": [{"name": "__swbuf", "hash": "66a957ee64a3302f87dbf451a8efd08dfcd58a55", "variant": 597245704, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 2382495764}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 809631746}, "child": {"skip": 76, "offset": 104, "next": [], "symbols": [{"name": "R_EITEM_copy", "hash": "b742c44e354ae0830a7b7f85ab3e64574f9e8ac3", "variant": 1331025415, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2382495944}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 272629766}, "child": {"skip": 100, "offset": 128, "next": [], "symbols": [{"name": "SSL_SESSION_list_add", "hash": "51ec66514a80af042d9482d02e8251291686bf71", "variant": 4276940634, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 14714925}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707488}, "child": {"skip": 244, "offset": 264, "next": [], "symbols": [{"name": "scePadInfoMode", "hash": "3327a1a33df8048dbc01eb4c4ea32cd08365c82f", "variant": 1039225669, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 605093889}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1007681536, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4290707488}, "child": {"skip": 76, "offset": 100, "next": [], "symbols": [{"name": "PowerOffCB", "hash": "732fa88b30dd0070f9cb8d82a990352ba4a01c88", "variant": 3012333560, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 4290707488}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 268435467}, "child": {"skip": 104, "offset": 128, "next": [], "symbols": [{"name": "sceLibnetTerminate", "hash": "e11dae4fe7673dae21f46e44215c5b1a8c0f6a0b", "variant": 789981914, "library": "libnet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 34861}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4290707488}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "dpcmp"}}, "child": {"skip": 64, "offset": 92, "next": [], "symbols": [{"name": "__fixdfdi", "hash": "0b45a866cb8a98e149ae83e4c00dc2a8c6900faf", "variant": 1192673518, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 301989902}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290707488}, "child": {"skip": 76, "offset": 104, "next": [], "symbols": [{"name": "sceHTTPLibCloneHeaderList", "hash": "c7d666fc811d06f3c01e1e4c3e22d181ebc90267", "variant": 799727136, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 369098755}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290707488}, "child": {"skip": 80, "offset": 108, "next": [], "symbols": [{"name": "time_mi_time", "hash": "ab465089942edc6bcc32c10b179a7df4d551e48a", "variant": 4144828803, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707488}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 343932931}, "child": {"skip": 564, "offset": 588, "next": [], "symbols": [{"name": "i2d_ASN1_TYPE", "hash": "6342bf980a3ca8f01aeb51b1a04eafdc59b4d163", "variant": 2450785843, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10518573}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707488}, "child": {"skip": 168, "offset": 188, "next": [], "symbols": [{"name": "init_func", "hash": "7724303e5a40463b80f4f08502caa8671a3d5954", "variant": 1923027584, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 605159423}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707488}, "child": {"skip": 200, "offset": 220, "next": [], "symbols": [{"name": "sceHTTPLibCleanUpThreads", "hash": "058227768c8007bae77c9faa793d6ddb706c0feb", "variant": 3591305918, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10520621}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289724416}, "child": {"skip": 124, "offset": 140, "next": [], "symbols": [{"name": "next_stack_level", "hash": "341a31b5a38565c429096ca01919ccb7b404fa98", "variant": 1525645274, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8423469}, "child": {"skip": 236, "offset": 252, "next": [], "symbols": [{"name": "fde_merge", "hash": "7df3e17d7cccee2e50c6f3d2e0d27776a316f6be", "variant": 0, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 8751128}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289724416}, "child": {"skip": 68, "offset": 84, "next": [], "symbols": [{"name": "sceHiMemCalloc", "hash": "374a7f217cd7dd44bb8b039b4b6de9c7d9802337", "variant": 3842810141, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 10782744}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289724416}, "child": {"skip": 60, "offset": 76, "next": [], "symbols": [{"name": "sceEENetCalloc", "hash": "6dd2785c39abbb2f12241de5359778f8c89ee890", "variant": 2231229297, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1007681536, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707488}, "child": {"skip": 132, "offset": 152, "next": [], "symbols": [{"name": "atexit", "hash": "e1caf380dda89743ac5bb67813fd5ab66137ff34", "variant": 101690935, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4290707488}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2382626816, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 160, "offset": 180, "next": [], "symbols": [{"name": "sceEENetCtlTerm", "hash": "1891e7b8fb62557d5e078ccc33b0eab9f5493398", "variant": 1194033956, "library": "eenetctl"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1007681536, "relocation": {"type": "MIPS_HI16", "symbol": "mcHearAlarm"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 814874623}, "child": {"skip": 48, "offset": 68, "next": [], "symbols": [{"name": "mcDelayThread", "hash": "03df068574cb6f6c5e73247dbeb97a137f7e6226", "variant": 2406328118, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 4290707488}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "GsGetIMR"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8421421}, "child": {"skip": 36, "offset": 60, "next": [], "symbols": [{"name": "sceGsPutIMR", "hash": "f2437505e23f9cf20fba45793b5e52a351edcf28", "variant": 564697617, "library": "libgraph"}]})PS2SDB", 8192}, + std::string_view{R"PS2SDB(}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "iGsGetIMR"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8421421}, "child": {"skip": 36, "offset": 60, "next": [], "symbols": [{"name": "isceGsPutIMR", "hash": "f2437505e23f9cf20fba45793b5e52a351edcf28", "variant": 2849338703, "library": "libgraph"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "DIntr"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8421421}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2383478796}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 1444937731}, "child": {"skip": 56, "offset": 88, "next": [], "symbols": [{"name": "sceSifGetNextRequest", "hash": "14fc7f55c95de094e96fd4abf68b0fd55cee7634", "variant": 506604820, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 33562669}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "iFreeTimerCounter"}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4229165}, "child": {"skip": 40, "offset": 76, "next": [], "symbols": [{"name": "FreeTimerCounter", "hash": "a909c70e2420b31c995340f242e297c467f94658", "variant": 252542692, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "iStartTimerCounter"}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4229165}, "child": {"skip": 40, "offset": 76, "next": [], "symbols": [{"name": "StartTimerCounter", "hash": "a909c70e2420b31c995340f242e297c467f94658", "variant": 734849475, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "iStopTimerCounter"}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4229165}, "child": {"skip": 40, "offset": 76, "next": [], "symbols": [{"name": "StopTimerCounter", "hash": "a909c70e2420b31c995340f242e297c467f94658", "variant": 1246710187, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "iGetTimerBaseTime"}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4229165}, "child": {"skip": 40, "offset": 76, "next": [], "symbols": [{"name": "GetTimerBaseTime", "hash": "a909c70e2420b31c995340f242e297c467f94658", "variant": 1604130175, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "iGetTimerCount"}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4229165}, "child": {"skip": 40, "offset": 76, "next": [], "symbols": [{"name": "GetTimerCount", "hash": "a909c70e2420b31c995340f242e297c467f94658", "variant": 2481187155, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4229165}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "isceTimerStartCounter"}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 33562669}, "child": {"skip": 36, "offset": 72, "next": [], "symbols": [{"name": "sceTimerStartCounter", "hash": "39866015b8d05e02549d1aa3d8666f7af96c0f39", "variant": 3785302749, "library": "libtimer"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "isceTimerStopCounter"}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 33562669}, "child": {"skip": 36, "offset": 72, "next": [], "symbols": [{"name": "sceTimerStopCounter", "hash": "39866015b8d05e02549d1aa3d8666f7af96c0f39", "variant": 1701767341, "library": "libtimer"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceScfGetTimeZone"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8421421}, "child": {"skip": 48, "offset": 72, "next": [], "symbols": [{"name": "sceScfGetLocalTimefromRTC", "hash": "f1f397ef8452f06e04d436dce72e74efaa578f4a", "variant": 191913500, "library": "libscf"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceNetcnfifInit"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8421421}, "child": {"skip": 36, "offset": 60, "next": [{"match": {"value": 604372999}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 3753836576}, "child": {"skip": 16, "offset": 84, "next": [], "symbols": [{"name": "sceNetcnfifDeleteAll", "hash": "8ff1ca0e5c94f47934e1b26bfa2d8bbaefd9a7cd", "variant": 624697593, "library": "netcnfif"}]}}], "symbols": []}}, {"match": {"value": 604373000}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 3753836576}, "child": {"skip": 16, "offset": 84, "next": [], "symbols": [{"name": "sceNetcnfifCheckCapacity", "hash": "a640d20581ce871269c021a9bf34d637638e888f", "variant": 624697593, "library": "netcnfif"}]}}], "symbols": []}}, {"match": {"value": 604373001}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 3753836576}, "child": {"skip": 16, "offset": 84, "next": [], "symbols": [{"name": "sceNetcnfifCheckAdditionalAT", "hash": "88f5033b29e7c9523c53b67e908137b065a2c707", "variant": 624697593, "library": "netcnfif"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__sceEENetspllock"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8421421}, "child": {"skip": 108, "offset": 132, "next": [], "symbols": [{"name": "__sceEENetsodisconnect", "hash": "6176ba7f0c285e15a73bf2c615469061ace4e260", "variant": 3791211914, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__sceEENetthread_enter"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8421421}, "child": {"skip": 4, "offset": 28, "next": [{"match": {"value": 304087052}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 604176383}, "child": {"skip": 64, "offset": 100, "next": [], "symbols": [{"name": "sceEENetClose", "hash": "841e4a063b3f3ac0c91c57db4ae78598257703ce", "variant": 962680921, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 304087053}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 604176383}, "child": {"skip": 68, "offset": 104, "next": [], "symbols": [{"name": "sceEENetCloseWithRST", "hash": "663522972608271a9e82c5dc3670f43721ecada7", "variant": 3865368770, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "get_common_global"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8421421}, "child": {"skip": 200, "offset": 224, "next": [], "symbols": [{"name": "BIO_free", "hash": "7ebb189f36e35ca62bccf104e44836009acb56b8", "variant": 797894305, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "BN_num_bits"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8421421}, "child": {"skip": 116, "offset": 140, "next": [], "symbols": [{"name": "BN_get_word", "hash": "6c3f9c8c1204d74ffffdf00465493059fdeb42c4", "variant": 2631221508, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "EVP_CIPHER_nid"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8421421}, "child": {"skip": 80, "offset": 104, "next": [], "symbols": [{"name": "EVP_OBJ_add_cipher", "hash": "df667b8244016eb7bda5dd9c9a1039840870fa8e", "variant": 2547050319, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "get_sslc_global"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8421421}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1007091712, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 28, "next": [{"match")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: {"value": 2354118656}, "child": {"skip": 412, "offset": 444, "next": [], "symbols": [{"name": "SSL_free", "hash": "8cf4b70c13684740b006055ce435cd6fc20244ba", "variant": 2268908995, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 301989946}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2354118664}, "child": {"skip": 248, "offset": 280, "next": [], "symbols": [{"name": "SSL_CTX_free", "hash": "a8dc2cf713a255de2d8e0d1a987b55514df66162", "variant": 3022686080, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceEENetSocketAbort"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8421421}, "child": {"skip": 44, "offset": 68, "next": [], "symbols": [{"name": "sceNetGlueAbort", "hash": "cbb5e17bee345242bfa01c19a34b85425a010a1c", "variant": 762059571, "library": "netglue_eenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8421421}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707488}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceDevVu0CheckBusy"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 33589293}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 339738702}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4141}, "child": {"skip": 328, "offset": 364, "next": [], "symbols": [{"name": "sceDevVu0GetCnd", "hash": "03108ae871b115f05d7927490a07430179b989f7", "variant": 3457224650, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 339738700}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4141}, "child": {"skip": 320, "offset": 356, "next": [], "symbols": [{"name": "sceDevVu0PutCnd", "hash": "d76d934387ba99ee6b9e6be64c65194ce342dfa8", "variant": 3457224650, "library": "libdev"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceFsIobSemaMK"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1007747072, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 80, "offset": 108, "next": [], "symbols": [{"name": "get_iob", "hash": "bf53adf5aa97567b19f48cb8dc04b07873933b41", "variant": 2396927717, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_waitIpuIdle"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 10520621}, "child": {"skip": 204, "offset": 232, "next": [], "symbols": [{"name": "_sceMpegNextBit", "hash": "deb7c0fc377cf1fde97631edc827562a3afd587d", "variant": 1145245286, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__sceEENetspllock"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 34861}, "child": {"skip": 68, "offset": 96, "next": [], "symbols": [{"name": "__sceEENetsppp_isempty", "hash": "f7b3797a6ca85a5633bc008458641bd2e4e931b8", "variant": 1554905821, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sce_eenet_if_clearinaddr"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 10520621}, "child": {"skip": 72, "offset": 100, "next": [], "symbols": [{"name": "_sce_eenet_dhclient_reset_if", "hash": "8b645fde72152bca931e6c5004d6badff0e679dc", "variant": 1086571203, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 10520621}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "SSL_feature_test"}}, "child": {"skip": 12, "offset": 40, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "EVP_PKEY_save_parameters"}}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 35661869}, "child": {"skip": 32, "offset": 80, "next": [], "symbols": [{"name": "SSL_EVP_PKEY_save_parameters", "hash": "f445c15510cde5486324228fb6fb5d21a1105af7", "variant": 4080264832, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "EVP_PKEY_copy_parameters"}}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 35661869}, "child": {"skip": 32, "offset": 80, "next": [], "symbols": [{"name": "SSL_EVP_PKEY_copy_parameters", "hash": "f445c15510cde5486324228fb6fb5d21a1105af7", "variant": 3577566191, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "EVP_PKEY_cmp_parameters"}}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 35661869}, "child": {"skip": 32, "offset": 80, "next": [], "symbols": [{"name": "SSL_EVP_PKEY_cmp_parameters", "hash": "929739addc48d38edf3bef70fd97415f25a84b82", "variant": 1033237339, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10493997}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1007747072, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 8, "offset": 32, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "fstat"}}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 2921332736, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 52, "offset": 92, "next": [], "symbols": [{"name": "_fstat_r", "hash": "5cd7b112a7a4b22caffe1430d56a400e559c1538", "variant": 243835442, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "kill"}}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 2921332736, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 52, "offset": 92, "next": [], "symbols": [{"name": "_kill_r", "hash": "5cd7b112a7a4b22caffe1430d56a400e559c1538", "variant": 3449920517, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1007710208}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707488}, "child": {"skip": 64, "offset": 84, "next": [], "symbols": [{"name": "breakVoice", "hash": "9f9f6a1c22e050c4e6a02a2b57b0d15bf7d67061", "variant": 536100848, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 10518573}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707488}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "X509_get_serialNumber"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 34861}, "child": {"skip": 72, "offset": 100, "next": [], "symbols": [{"name": "sslcert_get_serialNumber_info", "hash": "9b45bf776826ba18f3e0fb2ff738bd2f6e473b5b", "variant": 878401084, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "X509_get_notAfter"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 34861}, "child": {"skip": 72, "offset": 100, "next": [], "symbols": [{"name": "sslcert_get_notAfter_info", "hash": "9b45bf776826ba18f3e0fb2ff738bd2f6e473b5b", "variant": 3556154952, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "X509_get_notBefore"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 34861}, "child": {"skip": 72, "offset": 100, "next": [], "symbols": [{"name": "sslcert_get_notBefore_info", "hash": "9b45bf776826ba18f3e0fb2ff738bd2f6e473b5b", "variant": 2713540570, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 14714925}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 304087044}, "child": {"skip": 88, "offset": 116, "next": [], "symbols": [{"name": "sceInetCtlGetState", "hash": "43d4b45cba903cdde44923229351774fd70312a0", "variant": 3231617404, "library": "libnet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( {"value": 8421421}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707488}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "CheckAddress"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 10493997}, "child": {"skip": 76, "offset": 104, "next": [], "symbols": [{"name": "sceDmaSend", "hash": "68a0e8ca50f887513d5cfad3c8567309e6368831", "variant": 3924243499, "library": "libdma"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_ipuSetMPEG1"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 604241921}, "child": {"skip": 28, "offset": 56, "next": [{"match": {"value": 2920351120}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 2919368084}, "child": {"skip": 32, "offset": 96, "next": [], "symbols": [{"name": "_clearOnce", "hash": "1f66637de24da9543dc5d7c83dae7fb814b70c90", "variant": 335182003, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2920351144}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 2919368108}, "child": {"skip": 32, "offset": 96, "next": [], "symbols": [{"name": "_clearOnce", "hash": "ed1a1ed62386966092cc533568a24646cd7acf08", "variant": 335182003, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "phaseChange2TruncateAll"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 637796368}, "child": {"skip": 108, "offset": 136, "next": [], "symbols": [{"name": "sceSynthesizerAssignAllSoundOff", "hash": "0ae1bb81ea0ff920caeb3681b8b1e2ab5aacc1c0", "variant": 3166176040, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__sceEENetbpfdetach"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 10520621}, "child": {"skip": 108, "offset": 136, "next": [], "symbols": [{"name": "smap_detach", "hash": "be3d1ae2fdd10751e0d5c0acefeee7ecab68ca67", "variant": 211122566, "library": "ent_smap"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 873562592}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1149948}, "child": {"skip": 128, "offset": 152, "next": [], "symbols": [{"name": "__floatdidf", "hash": "a4103b64b89531c7d7ebe3430c73bd3eac1f23ff", "variant": 1912756197, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 10493997}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1007747072, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 12, "offset": 36, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "lseek"}}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 14692397}, "child": {"skip": 52, "offset": 96, "next": [], "symbols": [{"name": "_lseek_r", "hash": "592a961e4d6502532bc9fdade83713b82c169e7f", "variant": 2633687353, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "read"}}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 14692397}, "child": {"skip": 52, "offset": 96, "next": [], "symbols": [{"name": "_read_r", "hash": "592a961e4d6502532bc9fdade83713b82c169e7f", "variant": 2684666682, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "write"}}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 14692397}, "child": {"skip": 52, "offset": 96, "next": [], "symbols": [{"name": "_write_r", "hash": "592a961e4d6502532bc9fdade83713b82c169e7f", "variant": 3571942785, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "open"}}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 14692397}, "child": {"skip": 52, "offset": 96, "next": [], "symbols": [{"name": "_open_r", "hash": "592a961e4d6502532bc9fdade83713b82c169e7f", "variant": 461338372, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 638648328}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4290707488}, "child": {"skip": 72, "offset": 96, "next": [], "symbols": [{"name": "OP_CTX_reset", "hash": "91ffba467e5ca38d2e785b308abcf23f7a0da740", "variant": 2242481719, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 12617773}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4290707488}, "child": {"skip": 28, "offset": 52, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "X509v3_get_ext_by_OBJ"}}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 35663917}, "child": {"skip": 20, "offset": 80, "next": [], "symbols": [{"name": "X509v3_get_ext_by_NID", "hash": "dd53925ece894efaf837cfcff99163e9a093a1a9", "variant": 3483231756, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "X509_NAME_get_index_by_OBJ"}}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 35663917}, "child": {"skip": 20, "offset": 80, "next": [], "symbols": [{"name": "X509_NAME_get_index_by_NID", "hash": "dd53925ece894efaf837cfcff99163e9a093a1a9", "variant": 3315458002, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789960}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 12617773}, "child": {"skip": 84, "offset": 104, "next": [], "symbols": [{"name": "sceVu0LightColorMatrix", "hash": "4a489fe567dabc69317443fac5ea0672c2a936d2", "variant": 787496310, "library": "libvu0"}]}}], "symbols": []}}, {"match": {"value": 4289986592}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 10526765}, "child": {"skip": 1380, "offset": 1400, "next": [], "symbols": [{"name": "end_fde_sort", "hash": "274738c4f8cb7ca420ebd64fc2bb4f8e96e7321d", "variant": 651657895, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 4290707488}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_waitIpuIdle"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289789968}, "child": {"skip": 52, "offset": 76, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 80, "next": [{"match": {"value": 33562669}, "child": {"skip": 40, "offset": 124, "next": [], "symbols": [{"name": "_nextStartCode", "hash": "5642c5468587fa7192560fefd9cefe49a17529a9", "variant": 3383031540, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 604307464}, "child": {"skip": 0, "offset": 80, "next": [{"match": {"value": 33562669}, "child": {"skip": 44, "offset": 128, "next": [], "symbols": [{"name": "_nextStartCode", "hash": "97253c638d0afb8d1c1b3ce983f59cf7dd774523", "variant": 3383031540, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__sceEENetspllock"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289789968}, "child": {"skip": 228, "offset": 252, "next": [], "symbols": [{"name": "sceEENetMFree", "hash": "839ee012528618c681102f76654112d1a79213dd", "variant": 354097523, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "SSL_get_version"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289789968}, "child": {"skip": 1172, "offset": 1196, "next": [], "symbols": [{"name": "ssl_info_cb", "hash": "43d3af674f7b8c145f2bc3839a4659c814b3cd6d", "variant": 3184212827, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10518573}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289789960}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8423469}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289)PS2SDB", 8192}, + std::string_view{R"PS2SDB(855504}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289921048}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4290707488}, "child": {"skip": 320, "offset": 352, "next": [], "symbols": [{"name": "scePadGetDmaStr", "hash": "6b220e09720ca364ad7dcc2aa8c7c715e30b8a5b", "variant": 766540315, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 1081404}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4289986592}, "child": {"skip": 332, "offset": 364, "next": [], "symbols": [{"name": "_malloc_trim_r", "hash": "a5880a38f0a3493fe0b5a567c8c97a9c498ce2c1", "variant": 707221264, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1081404}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289855504}, "child": {"skip": 340, "offset": 364, "next": [], "symbols": [{"name": "_malloc_trim_r", "hash": "4ff134ad308c565455f0ef2c8a8454b74207b350", "variant": 571519274, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4289986592}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 613679124}, "child": {"skip": 388, "offset": 412, "next": [], "symbols": [{"name": "_b2d", "hash": "dea1f47ee38bec0c6f86f88147881595bc9237bd", "variant": 2922173840, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855504}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 12619821}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289789960}, "child": {"skip": 500, "offset": 524, "next": [], "symbols": [{"name": "_multiply", "hash": "5cc2ba8d60c734018fda5102ae071387db809e7b", "variant": 4095002805, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4289986592}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 613679124}, "child": {"skip": 384, "offset": 408, "next": [], "symbols": [{"name": "_b2d", "hash": "9e3980d779f616d466471c7f1e867dc9ee045e10", "variant": 2922173840, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289986592}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789960}, "child": {"skip": 504, "offset": 524, "next": [], "symbols": [{"name": "_multiply", "hash": "2475f9d22d47b3ad2f36b232dd1667b277ff90ac", "variant": 2920750040, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 771883025}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289986592}, "child": {"skip": 12, "offset": 32, "next": [{"match": {"value": 8429613}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 4289921048}, "child": {"skip": 416, "offset": 456, "next": [], "symbols": [{"name": "_memalign_r", "hash": "80e3c9ce753a12bd0896007bb2f42050f423b745", "variant": 473110413, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4289921048}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 4290707496}, "child": {"skip": 408, "offset": 448, "next": [], "symbols": [{"name": "_memalign_r", "hash": "09fe41f7a45358bd3de7876bab9d72011c6d5a2d", "variant": 1483792882, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 3887398952}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8421421}, "child": {"skip": 292, "offset": 308, "next": [], "symbols": [{"name": "__kernel_sinf", "hash": "b3771bbb2cca7c2e8edee8a538966a3bf676d53e", "variant": 3663203129, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 4290707488}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10518573}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8392749}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 143423}, "child": {"skip": 408, "offset": 436, "next": [], "symbols": [{"name": "scalbn", "hash": "f4adffd4b2b2da776593bce76a0db0b4e3be1d5c", "variant": 2515379728, "library": "libm"}, {"name": "scalbn", "hash": "f4adffd4b2b2da776593bce76a0db0b4e3be1d5c", "variant": 2515379728, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 8398893}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1007779712}, "child": {"skip": 344, "offset": 372, "next": [], "symbols": [{"name": "scalbnf", "hash": "10805bc45cf18164940d529487ac9f15615998af", "variant": 3951655436, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 281018373}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2358313080}, "child": {"skip": 108, "offset": 136, "next": [], "symbols": [{"name": "des_cbc_ede3_init_key", "hash": "b273d089373a2d7920c4a4199a7c2f4204a7fc48", "variant": 484159033, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 276824090}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289789968}, "child": {"skip": 172, "offset": 196, "next": [], "symbols": [{"name": "__sceEENetSetDNSSockAddr", "hash": "79b27adba77d157d86be7e088755a2de6d6119e8", "variant": 1078399364, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8421421}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 301989904}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289789968}, "child": {"skip": 236, "offset": 260, "next": [], "symbols": [{"name": "fclose", "hash": "bdbd501004cd73e521cc446422ad7dfde7980c86", "variant": 3768232032, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 301989943}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4141}, "child": {"skip": 236, "offset": 264, "next": [], "symbols": [{"name": "fclose", "hash": "fb67cd610715f6f6e590932f59cfb07c2cc3543a", "variant": 799781759, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 2449604842}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 272629784}, "child": {"skip": 316, "offset": 344, "next": [], "symbols": [{"name": "sceHiGsCtxChkSize", "hash": "bb2013c56ec7f0c2665c7a885666e6aa8de572c2", "variant": 118725706, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 2383479492}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_scePFont_Putc"}}, "child": {"skip": 28, "offset": 56, "next": [], "symbols": [{"name": "_scePFont_Putcx", "hash": "638e547212d44328d3c8f9a6d1dc329650686ee2", "variant": 1155925648, "library": "libpfont"}]}}], "symbols": []}}, {"match": {"value": 2383478800}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2516713478}, "child": {"skip": 176, "offset": 204, "next": [], "symbols": [{"name": "__sceEENetsoisconnected", "hash": "e57787f4d347e180d2e4abd67fca215c56f1b2b7", "variant": 2988174837, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2516779056}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 811728897}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 272629773}, "child": {"skip": 84, "offset": 116, "next": [], "symbols": [{"name": "__sceEENetsb_lock", "hash": "28b82d1a415fe58dfdf3b3730e8ca6e09205b11b", "variant": 1628173893, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 811741184}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 272629791}, "child": {"skip": 196, "offset": 228, "next": [], "symbols": [{"name": "sppp_lcp_up", "hash": "e6e30fc9ce0f7d041ca6223cdc0faa0b5b76fb2f", "variant": 3222371966, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2383478856}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 371523601}, "child": {"skip": 88, "offset": 116, "next": [], "symbols": [{"name": "__sceEENetif_rt_walktree", "hash": "e6560bb7136d2cbd7b4692951f6f5429c19b323a", "variant": 2872955326, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2382495772}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4202541}, "child": {"skip": 172, "offset": 200, "next": [], "symbols": [{"name": "__sceEENetin_pcbdetach", "hash": ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(35a2d8d9aca7ac0573d39eafe2489e21052bc3db", "variant": 1798310897, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 58755117}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceEENetMalloc"}}, "child": {"skip": 72, "offset": 100, "next": [], "symbols": [{"name": "sceEENetCtlRegisterEventHandler", "hash": "a3f34ab7969a80d9e45d16490fcaa5477e96e280", "variant": 3788803735, "library": "eenetctl"}]}}], "symbols": []}}, {"match": {"value": 2382757892}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 281018393}, "child": {"skip": 124, "offset": 152, "next": [], "symbols": [{"name": "BN_mul_word", "hash": "36ac0f2c89660e12fbb7e60849b1debeffe0d5fa", "variant": 814630856, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2382495764}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2382561304}, "child": {"skip": 264, "offset": 292, "next": [], "symbols": [{"name": "contract", "hash": "c7f64399b15f06c07f67e9da4a701058972b17c3", "variant": 3092127918, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 637796360}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "BER_parse"}}, "child": {"skip": 52, "offset": 80, "next": [], "symbols": [{"name": "OP_CTX_decode", "hash": "a996acc4bb2cab69c53c5dd39cdc0358dcc3f8fd", "variant": 547222892, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2382561364}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2355232916}, "child": {"skip": 176, "offset": 204, "next": [], "symbols": [{"name": "ssl3_setup_buffers", "hash": "1a3e5e0031598f7cd5c7fbfadb9e7878b8033717", "variant": 443343513, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 301989943}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289789968}, "child": {"skip": 240, "offset": 264, "next": [], "symbols": [{"name": "sceHTTPCloneURI", "hash": "ef17234e780a5a5da28875d4bb4f6da3592f779d", "variant": 1172498695, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 301989905}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289789968}, "child": {"skip": 88, "offset": 112, "next": [], "symbols": [{"name": "sceHTTPFreeHeaderList", "hash": "2703c244a63cb8e3f7066d16b3123c60c7552408", "variant": 747626103, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 369098755}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 268435461}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604175380}, "child": {"skip": 220, "offset": 252, "next": [], "symbols": [{"name": "sceHTTPClose", "hash": "a781ade3f074caca6defa745f6c1e71c3c1a2dcc", "variant": 2267606664, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 268435474}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4141}, "child": {"skip": 88, "offset": 120, "next": [], "symbols": [{"name": "buffer_free", "hash": "d6fe046933e0a0088538eae48b0a03208cdd6558", "variant": 2868118267, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 100728836}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289789968}, "child": {"skip": 168, "offset": 192, "next": [], "symbols": [{"name": "R_lock_get_name", "hash": "2a511630b8ddcb66dfe0e736e1ef53c924b518de", "variant": 4063306902, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 278921220}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289789968}, "child": {"skip": 152, "offset": 176, "next": [], "symbols": [{"name": "ssl_verify_cert_chain", "hash": "a86438cf2811548cbdc6da9e6244a8bf7e79ef5e", "variant": 2399382389, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2426601516}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2426535956}, "child": {"skip": 120, "offset": 144, "next": [], "symbols": [{"name": "setupStartVoiceNoise", "hash": "d05b476cdcef6879db4318ec518f77e0c2f3fc2a", "variant": 2262987264, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 2358312972}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2384789508}, "child": {"skip": 152, "offset": 176, "next": [], "symbols": [{"name": "free_dir", "hash": "43be5fa7ce57d056238c2f12bee93ab5ef0be4a5", "variant": 1276697129, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 32813}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789968}, "child": {"skip": 272, "offset": 292, "next": [], "symbols": [{"name": "op_call", "hash": "bb3e496107e98166b81d7abd800e1112359c28d2", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855504}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289789960}, "child": {"skip": 32, "offset": 48, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 604241916}, "child": {"skip": 300, "offset": 356, "next": [], "symbols": [{"name": "_malloc_trim_r", "hash": "cf953d8fc5051dd8f41384dd88ee69b78b296cce", "variant": 2536787967, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 1007616000, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 604962812}, "child": {"skip": 292, "offset": 348, "next": [], "symbols": [{"name": "_malloc_trim_r", "hash": "513f7c60837b62c156b63ab3d8f0976ccb25330c", "variant": 559328493, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 12615725}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289789960}, "child": {"skip": 8, "offset": 24, "next": [{"match": {"value": 10522669}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4289921048}, "child": {"skip": 108, "offset": 140, "next": [], "symbols": [{"name": "_setlocale_r", "hash": "940e4c122e7d95c0d255dbb28c48302158c7e686", "variant": 1430578135, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 12591149}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4289921048}, "child": {"skip": 104, "offset": 136, "next": [], "symbols": [{"name": "_setlocale_r", "hash": "c6729470aa42b02ea41baf8dbff65345432a929c", "variant": 2035040469, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289986592}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289789960}, "child": {"skip": 24, "offset": 40, "next": [{"match": {"value": 41029674}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 272629765}, "child": {"skip": 476, "offset": 524, "next": [], "symbols": [{"name": "_multiply", "hash": "a61803fff94e0ae3d64f820dc948706111bd475f", "variant": 2920750040, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 41056298}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 299892741}, "child": {"skip": 468, "offset": 516, "next": [], "symbols": [{"name": "_multiply", "hash": "0d9aa4526560e6b24fa2446c7b5027f67952da36", "variant": 2920750040, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789960}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289986592}, "child": {"skip": 20, "offset": 36, "next": [{"match": {"value": 2357329936}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 135296}, "child": {"skip": 356, "offset": 400, "next": [], "symbols": [{"name": "_b2d", "hash": "5ddc03fd9799bcabd4e8bb0d7fe29f593ccc2211", "variant": 2922173840, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 2358181904}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 1013888}, "child": {"skip": 352, "offset": 396, "next": [], "symbols": [{"name": "_b)PS2SDB", 8192}, + std::string_view{R"PS2SDB(2d", "hash": "3cb0bf6b537ae2d99b6b9a8ce4e96d2810056ea7", "variant": 2922173840, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604372995}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789968}, "child": {"skip": 28, "offset": 40, "next": [{"match": {"value": 1006817280}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 1006915584}, "child": {"skip": 40, "offset": 88, "next": [], "symbols": [{"name": "sceVif1PkOpenDirectCode", "hash": "acf98c80fc215b2d2665ae8b5cfbfae77815b7fc", "variant": 872449854, "library": "libpkt"}]}}], "symbols": []}}, {"match": {"value": 1006817536}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 1006915840}, "child": {"skip": 40, "offset": 88, "next": [], "symbols": [{"name": "sceVif1PkOpenDirectHLCode", "hash": "8f76ba9a0b2a0d3552b3dc0eae551e7d9ecca81a", "variant": 872449854, "library": "libpkt"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8237}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789968}, "child": {"skip": 176, "offset": 188, "next": [], "symbols": [{"name": "sceTtyInit", "hash": "7dcdf0cb3749ea3be4d6bd1b0ef54ec80f918d19", "variant": 1729479097, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006796800}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 876740618}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707488}, "child": {"skip": 160, "offset": 180, "next": [], "symbols": [{"name": "_request_end", "hash": "73b849fa996f4c3d02134b89ec9ab12bc7a73648", "variant": 2226100107, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 876740634}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707488}, "child": {"skip": 244, "offset": 264, "next": [], "symbols": [{"name": "_request_end", "hash": "d7d155bc62d2ea3976d7e4ce8d3ef7e2717286ed", "variant": 1863598548, "library": "libmrpc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724432}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 144, "offset": 160, "next": [], "symbols": [{"name": "scePadSetActDirect", "hash": "bf0b4762e7adf92a62dd4c4bca8679b77d0304aa", "variant": 162452553, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724432}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1007681536, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707488}, "child": {"skip": 4, "offset": 20, "next": [{"match": {"value": 339738649}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 8398893}, "child": {"skip": 32, "offset": 60, "next": [{"match": {"value": 619118592, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 623443968, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 72, "offset": 140, "next": [], "symbols": [{"name": "sceMcChangeThreadPriority", "hash": "2a4ca99cafe102e7eaee174db5b0144458c324d2", "variant": 2681647176, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 2900688896, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 623443968, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 8, "offset": 76, "next": [{"match": {"value": 604307459}, "child": {"skip": 0, "offset": 80, "next": [{"match": {"value": 604372993}, "child": {"skip": 56, "offset": 140, "next": [], "symbols": [{"name": "sceMcClose", "hash": "8a92fa5a443b6373be89ab838678af07c80d42b5", "variant": 2370040645, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 604307466}, "child": {"skip": 0, "offset": 80, "next": [{"match": {"value": 604372993}, "child": {"skip": 56, "offset": 140, "next": [], "symbols": [{"name": "sceMcFlush", "hash": "f824fa2bd92660d7af87940e8443eadaf92e0aab", "variant": 2370040645, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 339738650}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 8405037}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 112, "offset": 144, "next": [], "symbols": [{"name": "sceMcSeek", "hash": "722dc4f02ecadcdd4b6d0454d51b430ea077607c", "variant": 2071768329, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 8400941}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 52, "offset": 84, "next": [{"match": {"value": 604307472}, "child": {"skip": 0, "offset": 88, "next": [{"match": {"value": 604504112}, "child": {"skip": 52, "offset": 144, "next": [], "symbols": [{"name": "sceMcFormat", "hash": "462ee12ab7ba67587c990eecff3dc7e1a8a4a186", "variant": 2396973247, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 604307473}, "child": {"skip": 0, "offset": 88, "next": [{"match": {"value": 604504112}, "child": {"skip": 52, "offset": 144, "next": [], "symbols": [{"name": "sceMcUnformat", "hash": "adc31432962e163e9cfde243ea11715a7bbfd34a", "variant": 2396973247, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707488}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_lf_bind"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 140, "offset": 160, "next": [], "symbols": [{"name": "sceSifSearchModuleByName", "hash": "7aff60ca9a0d83301ee9e584ebf9f8d37f600c08", "variant": 1117645455, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "GetOsdConfigParam"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 60825645}, "child": {"skip": 84, "offset": 104, "next": [], "symbols": [{"name": "PatchIsNeeded", "hash": "52cf444bdb14214781a250137851098be2ab534e", "variant": 62865387, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "scePadSetDmaCallback"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8237}, "child": {"skip": 124, "offset": 144, "next": [], "symbols": [{"name": "scePadEnd", "hash": "6904cc24b83602a420597829f2fb33d98ee5817e", "variant": 3865960684, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceHiDMAMake_ChainStart"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 68, "offset": 88, "next": [], "symbols": [{"name": "MicroMakeDATAPacket", "hash": "c2a878d079469971346ce61d00a8941cd2767363", "variant": 2911001261, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceNetcnfifInit"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 60, "offset": 88, "next": [], "symbols": [{"name": "sceNetcnfifAllocWorkarea", "hash": "2e201278d85bc26589657a5f4e0465a9b97ba353", "variant": 3670076861, "library": "netcnfif"}]}}], "symbols": []}}, {"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "c)PS2SDB", 8192}, + std::string_view{R"PS2SDB(hild": {"skip": 76, "offset": 104, "next": [], "symbols": [{"name": "sceNetcnfifSetEnv", "hash": "dd451cf67798a1c9f0a77c0b1532bb573aa073d2", "variant": 3102456743, "library": "netcnfif"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "GetTimerSystemTime"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 128, "offset": 148, "next": [], "symbols": [{"name": "__sceEENetmicrotime", "hash": "5a6aabccbc2c6527627249a6e0ab7d4334c93b2e", "variant": 3857844283, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__sceEENetmicrotime"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 60825645}, "child": {"skip": 80, "offset": 100, "next": [], "symbols": [{"name": "__sceEENetiptime", "hash": "58eadd85db1e64259c5388f8484ac1d342a31dfe", "variant": 3501173539, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 32813}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2946760704}, "child": {"skip": 4, "offset": 24, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceCccDecodeUTF16"}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 60825645}, "child": {"skip": 28, "offset": 60, "next": [], "symbols": [{"name": "sceCccStrlenUTF16", "hash": "d851d95de219658da474d1cc72330be5b0fa423e", "variant": 3471214147, "library": "libccc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceCccDecodeUTF8"}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 60825645}, "child": {"skip": 28, "offset": 60, "next": [], "symbols": [{"name": "sceCccStrlenUTF8", "hash": "d851d95de219658da474d1cc72330be5b0fa423e", "variant": 4057208003, "library": "libccc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceCccDecodeSJIS"}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 60825645}, "child": {"skip": 28, "offset": 60, "next": [], "symbols": [{"name": "sceCccStrlenSJIS", "hash": "d851d95de219658da474d1cc72330be5b0fa423e", "variant": 2684313978, "library": "libccc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2946760704}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2409889792}, "child": {"skip": 80, "offset": 100, "next": [], "symbols": [{"name": "__sceEENetin_fmtaddr", "hash": "b860ebadccdfefb3b1d03bf9ceeb6cda140e7c3d", "variant": 2295471172, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 8421421}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "EVP_PKEY_type"}}, "child": {"skip": 56, "offset": 76, "next": [], "symbols": [{"name": "EVP_PKEY_get_num_primes", "hash": "96f9964f7771e1eb3066850cd78e291447987253", "variant": 375806987, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8421421}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289789976}, "child": {"skip": 44, "offset": 60, "next": [{"match": {"value": 268435509}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 4460568}, "child": {"skip": 1032, "offset": 1100, "next": [], "symbols": [{"name": "execute_cfa_insn", "hash": "10d030af63a8db642853111aa6ee07b3e53168af", "variant": 1085797111, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 268435499}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 4460568}, "child": {"skip": 1000, "offset": 1068, "next": [], "symbols": [{"name": "execute_cfa_insn", "hash": "e815196396f753bd9de40c5a9333feaaa4c04108", "variant": 1128463646, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10518573}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 60827693}, "child": {"skip": 180, "offset": 196, "next": [], "symbols": [{"name": "_ratio", "hash": "2efbd40a79b48a24b384bfaee6a00656af1f6518", "variant": 3517035346, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4289789976}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10518573}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855520}, "child": {"skip": 32, "offset": 52, "next": [{"match": {"value": 2382561296}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 143423}, "child": {"skip": 124, "offset": 184, "next": [], "symbols": [{"name": "_ratio", "hash": "5abf9a7f6b90592d293404ee2b3f46705e0e4ca7", "variant": 3314849500, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 2383347728}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 1204287}, "child": {"skip": 120, "offset": 180, "next": [], "symbols": [{"name": "_ratio", "hash": "51ad898d336e6161abcc38e697ce33747723ea37", "variant": 3482190875, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707488}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 800, "offset": 820, "next": [], "symbols": [{"name": "validate_structure", "hash": "bf650dd976225d494e8cb6b62fc9e344f4675b04", "variant": 1778453556, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 60827693}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8421421}, "child": {"skip": 148, "offset": 164, "next": [], "symbols": [{"name": "allocate_sif_code", "hash": "bbfdfd91979c7a15990cb7fdbf5382269d098216", "variant": 2118317534, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2946760704}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8421421}, "child": {"skip": 52, "offset": 68, "next": [], "symbols": [{"name": "__sceEENet__dn_skipname", "hash": "014f315864dd9cff07cb19c8bad62ad872d86199", "variant": 3972597453, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 60829741}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707488}, "child": {"skip": 72, "offset": 88, "next": [], "symbols": [{"name": "lh_retrieve", "hash": "93c9cec5dcffb8aac78f70038bcfb9556a2ffdf4", "variant": 1123424637, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 933560324}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8421421}, "child": {"skip": 80, "offset": 96, "next": [], "symbols": [{"name": "R_DIAG_print_stack_depth", "hash": "b15ba5947e733b0b89b66c1901a58c19311f13d9", "variant": 4273986090, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 813957375}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2946826244}, "child": {"skip": 36, "offset": 48, "next": [], "symbols": [{"name": "sceDeci2GrpOpen", "hash": "f1128d706ee88e2b34405d842f6dbf4ae8ab8ba6", "variant": 2119435786, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 266882}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707488}, "child": {"skip": 32, "offset": 48, "next": [{"match": {"value": 268435478}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 876773378}, "child": {"skip": 104, "offset": 160, "next": [], "symbols": [{"name": "iFreeTimerCounter", "hash": "2edddd48376878cf05d6bd15c047584679f21933", "variant": 3000552516, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 268435481}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 876773378}, "child": {"skip": 116, "offset": 172, "next": [], "symbols": [{"name": "iStartTimerCounter", "hash": "413e2917fe28e291834c8cd66088b392628bf922", "variant": 4015506683, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 268435487}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 876773378}, "child": {"skip": 140, "offset": 196, "next": [], "symbols": [{"name": "iStopTimerCounter", "hash": "33f5ef3f00e235b1b98bbf8f24ac8bcb8a248097", "variant": 2919937591, "library": "libkernl"}]}}], "symbols": []})PS2SDB", 8192}, + std::string_view{R"PS2SDB(}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707488}, "child": {"skip": 92, "offset": 108, "next": [], "symbols": [{"name": "iGetTimerCount", "hash": "e53fe06f8452cff59af17ad9991dcf2d34aaed5c", "variant": 3100114170, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289921048}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1007878144, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2388787200, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855504}, "child": {"skip": 312, "offset": 332, "next": [], "symbols": [{"name": "scePadInit", "hash": "825183f97108fd51d757bf34b37200f91cb61331", "variant": 963940007, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 4289855504}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8425517}, "child": {"skip": 404, "offset": 424, "next": [], "symbols": [{"name": "find_fde", "hash": "d86b057066ff1aa0a9dde75cfce27f2777399724", "variant": 2986695006, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 338176}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 270784}, "child": {"skip": 96, "offset": 108, "next": [], "symbols": [{"name": "scePadSetReqState", "hash": "4108edd27ec96c4c3a324bf29ac7176f9cf9553b", "variant": 2695996191, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 4289789960}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 8423469}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289855504}, "child": {"skip": 164, "offset": 180, "next": [], "symbols": [{"name": "scePadSetReqState", "hash": "257ee05f6790016c691f3ef3846c658e59997155", "variant": 2865515383, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 1141989376}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289724416}, "child": {"skip": 60, "offset": 76, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 80, "next": [{"match": {"value": 1174495298}, "child": {"skip": 868, "offset": 952, "next": [], "symbols": [{"name": "__ieee754_asinf", "hash": "7eefc57873125053fa56a8a741c0c835274116ba", "variant": 977725173, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 1174495298}, "child": {"skip": 0, "offset": 80, "next": [{"match": {"value": 1174429698}, "child": {"skip": 844, "offset": 928, "next": [], "symbols": [{"name": "__ieee754_asinf", "hash": "96544809784073d729574246bec1dc0ab2bace54", "variant": 1828428528, "library": "libm"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289855504}, "child": {"skip": 64, "offset": 80, "next": [{"match": {"value": 6189}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 2922381364}, "child": {"skip": 48, "offset": 136, "next": [], "symbols": [{"name": "_setlocale_r", "hash": "76190ccd7ef4cda51582d4768857444a6055bbdf", "variant": 2035040469, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 30765}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 2922381364}, "child": {"skip": 48, "offset": 136, "next": [], "symbols": [{"name": "_setlocale_r", "hash": "1e146c7d9b2f63293a0d5837db4c9108f3ce992e", "variant": 2035040469, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 12617773}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 841089027}, "child": {"skip": 236, "offset": 252, "next": [], "symbols": [{"name": "_pow5mult", "hash": "76f7a8b3d87df60b8466f19f51d35e39cfedd60a", "variant": 2836758089, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 10520621}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289855504}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 12619821}, "child": {"skip": 380, "offset": 400, "next": [], "symbols": [{"name": "__mdiff", "hash": "800f66bdee0ae595872fb23e3684c5a0a54a64c3", "variant": 2326187386, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4289921048}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 12593197}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8427565}, "child": {"skip": 368, "offset": 392, "next": [], "symbols": [{"name": "__mdiff", "hash": "3566924eb0fbb656f52a1f673acb371b974a5f51", "variant": 3769618778, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 8427565}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289724416}, "child": {"skip": 368, "offset": 392, "next": [], "symbols": [{"name": "isWildFit", "hash": "3e70c1eff00e20ac834e956625d777bbb7e66ea2", "variant": 4188810409, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289921048}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289855504}, "child": {"skip": 32, "offset": 48, "next": [{"match": {"value": 339738639}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 39854125}, "child": {"skip": 336, "offset": 392, "next": [], "symbols": [{"name": "__mdiff", "hash": "64a5aadb2e1bf0cec1eadec64d6234a1791d9ba6", "variant": 3769618778, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 339738637}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 39854125}, "child": {"skip": 324, "offset": 380, "next": [], "symbols": [{"name": "__mdiff", "hash": "cd897a061cd0410a1ebb697322815a1b9e1c8e2a", "variant": 3131834935, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 333952}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 270656}, "child": {"skip": 96, "offset": 108, "next": [], "symbols": [{"name": "scePadSetReqState", "hash": "351ddc37438a239a39bae68af804a2680a5dec1a", "variant": 2695996191, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 10502189}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789968}, "child": {"skip": 120, "offset": 132, "next": [], "symbols": [{"name": "sceSdTransToIOP", "hash": "d50ab1a3fccb884ffb0f4c166d88343961fe73e9", "variant": 2259521070, "library": "libsdr"}]}}], "symbols": []}}, {"match": {"value": 604176383}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289921048}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 14719021}, "child": {"skip": 148, "offset": 164, "next": [], "symbols": [{"name": "sceSdTransToIOP", "hash": "cad999be07f994a44f80f08d4b0a6dc7e9250119", "variant": 347630788, "library": "libsdr"}]}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289724416}, "child": {"skip": 8, "offset": 24, "next": [{"match": {"value": 304218200}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 10518573}, "child": {"skip": 368, "offset": 400, "next": [], "symbols": [{"name": "ungetc", "hash": "95d830cd00283e6b453a7ed49390cb5cadeaf0f4", "variant": 1895208670, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 304218198}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 10518573}, "child": {"skip": 360, "offset": 392, "next": [], "symbols": [{"name": "ungetc", "hash": "7ce7746d792bc54fc62f0d153591b70955218dfd", "variant": 1263196967, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10518573}, "child": {"skip": 248, "offset": 264, "next": [], "symbols": [{"name": "sceMc2Sync2", "hash": "f7de9b4dc1dfc47cf34aa3c2345a23323bf191f9", "variant": 3357306834, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8402989}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789968}, "child": {"skip": 144, "offset": 156, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": "eb6236ccbae3cd849c9d0d1727a3669c5b07b13a", "variant": 3517315335, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 604241922}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707488}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceCd_ncmd_prechk"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724432}, "child": {"skip": 8, "offset": 28, "next": [{"match": {"value": 268435482}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4141}, "child": {"skip": 116, "offset": 152, "next": [], "symbols": [{"name": "sceCdNcmdDiskReady", "hash": "f9f8a93016e6103f9c68bd24ac8977cc89774961", "variant": 3707972631, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 268435483}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4141}, "child": {"skip": 120, "offset": 156, "next": [], "symbols": [{"name": "sceCdNcmdDiskReady", "hash": "461e7c1e8574673c94fca5d6100f7b173da407a4", "variant": 1733465097, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "ncmd_prechk"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724432}, "child": {"skip": 132, "offset": 152, "next": [], "symbols": [{"name": "sceCdNcmdDiskReady", "hash": "6e123246adf1bb76e402ca999778d086846c5d6b", "variant": 2156792764, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceCd_scmd_prechk"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724432}, "child": {"skip": 8, "offset": 28, "next": [{"match": {"value": 268435490}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 604176383}, "child": {"skip": 148, "offset": 184, "next": [], "symbols": [{"name": "sceCdStatus", "hash": "f57a1aa834c8bfc33f3a0dd9df198df0d666ba0c", "variant": 2354182409, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 268435491}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 604176383}, "child": {"skip": 152, "offset": 188, "next": [], "symbols": [{"name": "sceCdStatus", "hash": "e6188b72e8fd633134b19b855a92fcaf2ad8ac6c", "variant": 1389263893, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "scmd_prechk"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724432}, "child": {"skip": 8, "offset": 28, "next": [{"match": {"value": 268435490}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 604176383}, "child": {"skip": 148, "offset": 184, "next": [], "symbols": [{"name": "sceCdStatus", "hash": "f57a1aa834c8bfc33f3a0dd9df198df0d666ba0c", "variant": 4272698842, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 268435491}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 604176383}, "child": {"skip": 152, "offset": 188, "next": [], "symbols": [{"name": "sceCdStatus", "hash": "e6188b72e8fd633134b19b855a92fcaf2ad8ac6c", "variant": 3491160064, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707488}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "ncmd_prechk"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289724432}, "child": {"skip": 132, "offset": 148, "next": [], "symbols": [{"name": "sceCdNcmdDiskReady", "hash": "f11800819445cb26686490db17998b9e9a07fdbb", "variant": 2632855359, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "scmd_prechk"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289724432}, "child": {"skip": 8, "offset": 24, "next": [{"match": {"value": 268435482}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604176383}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 112, "offset": 148, "next": [], "symbols": [{"name": "sceCdGetError", "hash": "2f0e09eb2680b9fd930555bc5671b4a2a74f8b78", "variant": 2264769315, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 4141}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 12, "offset": 48, "next": [{"match": {"value": 604307478}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 12333}, "child": {"skip": 92, "offset": 148, "next": [], "symbols": [{"name": "sceCdBreak", "hash": "7bf6ff2d5f03137bda9210a211e9e69e594873b9", "variant": 2264769315, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 604307459}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 12333}, "child": {"skip": 92, "offset": 148, "next": [], "symbols": [{"name": "sceCdGetDiskType", "hash": "b4584a38e834f45c9582690c8766881e580d1035", "variant": 2264769315, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 268435490}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604176383}, "child": {"skip": 148, "offset": 180, "next": [], "symbols": [{"name": "sceCdStatus", "hash": "8adba0047c8efb8e8b0e65f768b0cc5311bc7ff2", "variant": 3842922379, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__builtin_new"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289724432}, "child": {"skip": 100, "offset": 116, "next": [], "symbols": [{"name": "__builtin_vec_new", "hash": "98b5a6f9be921dc2c97752362fc844dfd39acaed", "variant": 306095248, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "IsT10K"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289724432}, "child": {"skip": 8, "offset": 24, "next": [{"match": {"value": 268435469}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2219835392, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 68, "offset": 100, "next": [], "symbols": [{"name": "sceScfGetTimeZone", "hash": "8e747697a1958edef7b5a55a1a2987d06a3c17f9", "variant": 3152804328, "library": "libscf"}]}}], "symbols": []}}, {"match": {"value": 268435475}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2421161984, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 92, "offset": 124, "next": [], "symbols": [{"name": "sceScfGetDateNotation", "hash": "1a649a0c7f8d2bcd9deaeebd0cf574728dbdd577", "variant": 2148863018, "library": "libscf"}]}}], "symbols": []}}, {"match": {"value": 268435476}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2421161984, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 60, "offset": 92, "next": [{"match": {"value": 203010}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 812646401}, "child": {"skip": 28, "offset": 128, "next": [], "symbols": [{"name": "sceScfGetSummerTime", "hash": "83bde1a672124e80ce712189307c70a12f4cfb08", "variant": 2199074645, "library": "libscf"}]}}], "symbols": []}}, {"match": {"value": 203074}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 812646401}, "child": {"skip": 28, "offset": 128, "next": [], "symbols": [{"name": "sceScfGetTimeNotation", "hash": "2d60f946f351b8ee14fd138bae650dc7d4039f3d", "variant": 2199074645, "library": "libscf"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceEENetInetMakeaddr"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 60, "offset": 76, "next": [], "symbols": [{"name": "sceNetGlueInetMakead)PS2SDB", 8192}, + std::string_view{R"PS2SDB(dr", "hash": "c4928a64b3ba31b99e8956f9ca627d6f42363c72", "variant": 3502612824, "library": "netglue_eenet"}]}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "check_all_ifaces_stopped"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724416}, "child": {"skip": 204, "offset": 224, "next": [], "symbols": [{"name": "__sce_eenetctl_term", "hash": "4fdbecaa90570dc92176b464d5e7853c323fdfbf", "variant": 2268922212, "library": "eenetctl"}]}}], "symbols": []}}, {"match": {"value": 343932949}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724416}, "child": {"skip": 16, "offset": 36, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "scePrintf"}}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 12, "offset": 56, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceCdDelayThread"}}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 604241980}, "child": {"skip": 96, "offset": 160, "next": [], "symbols": [{"name": "sceCdSync", "hash": "7d6b923d9842202ec30fb4cec11096e9acdb8493", "variant": 3683076238, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "DelayThread"}}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 604245920}, "child": {"skip": 96, "offset": 160, "next": [], "symbols": [{"name": "sceCdSync", "hash": "da8313648996afc061484a272d9f67fe1b4f77fb", "variant": 3330299491, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "printf"}}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 16, "offset": 60, "next": [{"match": {"value": 604241980}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 2384592896, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 92, "offset": 160, "next": [], "symbols": [{"name": "sceCdSync", "hash": "7d6b923d9842202ec30fb4cec11096e9acdb8493", "variant": 733719793, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 604242040}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 2384592896, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 92, "offset": 160, "next": [], "symbols": [{"name": "sceCdSync", "hash": "56097ada6e521dbf2de8429ac1b5d01871a5988b", "variant": 733719793, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 343932951}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724416}, "child": {"skip": 148, "offset": 168, "next": [], "symbols": [{"name": "sceCdSync", "hash": "3305b985e641d2d0e7312d6c52652f264255e5b2", "variant": 1656113042, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 276824151}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724416}, "child": {"skip": 440, "offset": 460, "next": [], "symbols": [{"name": "sceLout_Init", "hash": "2b7149c0bfdca902089951391b7e480714cb2c59", "variant": 1908881169, "library": "liblout"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 665059344}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 3886809104}, "child": {"skip": 8, "offset": 24, "next": [{"match": {"value": 2409824256}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 945946626}, "child": {"skip": 12, "offset": 44, "next": [{"match": {"value": 945946628}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 268435475}, "child": {"skip": 88, "offset": 140, "next": [], "symbols": [{"name": "fptosi", "hash": "c4075b07ae07cde564e61d154fac7ced5d4cfa81", "variant": 1229635772, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 2409758724}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 268435478}, "child": {"skip": 100, "offset": 152, "next": [], "symbols": [{"name": "fptoui", "hash": "7dc96fe2f7a7173a50224a05a69407d8878c5883", "variant": 1229635772, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2410086412}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2409889792}, "child": {"skip": 32, "offset": 64, "next": [], "symbols": [{"name": "fptodp", "hash": "6761db1ebd64b8a0ae4d36fb90466746754b6b53", "variant": 3065347896, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 2678521868}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2409889792}, "child": {"skip": 28, "offset": 60, "next": [], "symbols": [{"name": "fptodp", "hash": "5f4c86c4b7930d6641f99a322de5ad878822de93", "variant": 1019812443, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 2409758724}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 60825645}, "child": {"skip": 24, "offset": 56, "next": [], "symbols": [{"name": "__negsf2", "hash": "e2b62b7f9d1388bc317d993a5c29fea4689d2225", "variant": 1896685267, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2142306320}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10520621}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2142240768}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 9504811}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 270532617}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 8421421}, "child": {"skip": 20, "offset": 52, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 341901305}, "child": {"skip": 24, "offset": 84, "next": [], "symbols": [{"name": "__initialize_cpp_rts", "hash": "361c0dc19e8ca31835fc2114c94dac2da24138b9", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 341901306}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 0}, "child": {"skip": 24, "offset": 84, "next": [], "symbols": [{"name": "__initialize_cpp_rts", "hash": "33b613e104c9f963203495dee87ad540535ff1cd", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 270532618}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 8421421}, "child": {"skip": 60, "offset": 92, "next": [], "symbols": [{"name": "__initialize_cpp_rts", "hash": "364f18f38c27dfeb5d989d1f2eba50486ac17438", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 9508907}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 341835779}, "child": {"skip": 68, "offset": 96, "next": [], "symbols": [{"name": "__initialize_cpp_rts", "hash": "9a5fe3ff679fa41ae1948040ffa641638ba6132f", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1889570344}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2142240768}, "child": {"skip": 64, "offset": 84, "next": [], "symbols": [{"name": "__initialize_cpp_rts", "hash": "97a2fa2faabaa96658351371739e941eb2c9739e", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 2142240768}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8423469}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2359492612}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2153906176}, "child": {"skip": 100, "offset": 128, "next": [{"match": {"value": 301989893}, "child": {"skip": 0, "offset": 132, "next": [{"match": {"value": 639959604}, "child": {"skip": 12, "offset": 148, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 152, "next": [{"match": {"value": 2921333300}, "child": {"skip": 24, "offset": 180, "next": [], "symbols": [{"name": "__SetupFrameInfo__FP12Th)PS2SDB", 8192}, + std::string_view{R"PS2SDB(rowContextP13ExceptionInfo", "hash": "811f6e4b0716815ee42fb9e692695c5a09ebbded", "variant": 1098343976, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 3753836576}, "child": {"skip": 0, "offset": 152, "next": [{"match": {"value": 2921333300}, "child": {"skip": 20, "offset": 176, "next": [], "symbols": [{"name": "__SetupFrameInfo__FP12ThrowContextP13ExceptionInfo", "hash": "649dc15f918fe9a70e37cddda8d6fb24ee8ca355", "variant": 1098343976, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1375731715}, "child": {"skip": 0, "offset": 132, "next": [{"match": {"value": 2921333300}, "child": {"skip": 28, "offset": 164, "next": [], "symbols": [{"name": "__SetupFrameInfo__FP12ThrowContextP13ExceptionInfo", "hash": "77d2e0e316ff554b0a3fc5dfef3f720f64a385a5", "variant": 1098343976, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10518573}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 36702251}, "child": {"skip": 64, "offset": 92, "next": [], "symbols": [{"name": "__call_static_initializers__FPPFv_vPPFv_v", "hash": "2dd2faa3fd62ddada1d5f834042f5e1ab5ddd0a4", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2359492612}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1887473192}, "child": {"skip": 152, "offset": 176, "next": [], "symbols": [{"name": "__SetupFrameInfo__FP12ThrowContextP13ExceptionInfo", "hash": "4123b8d5c32f3044be6faa604db6770ecdf51795", "variant": 1098343976, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 10520621}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "mwBload"}}, "child": {"skip": 48, "offset": 72, "next": [], "symbols": [{"name": "mwLoadOverlay", "hash": "3d47cfdb91d5e8fb190732454328bd1ecc2ced0a", "variant": 3759989558, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604241923}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707488}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceCd_scmd_prechk"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724432}, "child": {"skip": 8, "offset": 28, "next": [{"match": {"value": 268435482}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 604176383}, "child": {"skip": 116, "offset": 152, "next": [], "symbols": [{"name": "sceCdGetError", "hash": "9803b52b8d87031c96f2c8ed289a13a58065bebc", "variant": 1553848630, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 268435483}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 604176383}, "child": {"skip": 120, "offset": 156, "next": [], "symbols": [{"name": "sceCdGetError", "hash": "189a53b35130d84bb0eb7d29476cb8f6ed484213", "variant": 3872153896, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "scmd_prechk"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724432}, "child": {"skip": 132, "offset": 152, "next": [], "symbols": [{"name": "sceCdGetError", "hash": "faf479b4756c7f4fb17b254ae1ab6c4ab8eed594", "variant": 2594015136, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289724416}, "child": {"skip": 144, "offset": 160, "next": [], "symbols": [{"name": "_sequenceDisplayExtension", "hash": "7ab21153e1db64217ba469884d5e6f7ca9116014", "variant": 4162586078, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604241947}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707488}, "child": {"skip": 140, "offset": 152, "next": [], "symbols": [{"name": "sceCdBreak", "hash": "ca59de5dc6dc91f1a7861a57b8d10b7c5d624e0e", "variant": 2594015136, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 604241921}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707488}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceCd_scmd_prechk"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724432}, "child": {"skip": 8, "offset": 28, "next": [{"match": {"value": 268435482}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4141}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 112, "offset": 152, "next": [], "symbols": [{"name": "sceCdGetDiskType", "hash": "fb75ab361db0f00aa15c3554aa8223d8632e8a47", "variant": 1553848630, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 604176383}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 112, "offset": 152, "next": [], "symbols": [{"name": "sceCdGetDiskType2", "hash": "8a5f73e021854b2cae544c7a8e8c3db3b72997f1", "variant": 1553848630, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 268435483}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4141}, "child": {"skip": 120, "offset": 156, "next": [], "symbols": [{"name": "sceCdGetDiskType", "hash": "53e47bd024a4ca687cecc6ef14a2bc6d90f63f16", "variant": 3872153896, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "scmd_prechk"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724432}, "child": {"skip": 132, "offset": 152, "next": [], "symbols": [{"name": "sceCdGetDiskType", "hash": "0768f3d996ce377536c543fb6d302fbae620cb64", "variant": 2594015136, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006862335}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855520}, "child": {"skip": 4, "offset": 16, "next": [{"match": {"value": 1142054912}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1006780233}, "child": {"skip": 892, "offset": 916, "next": [], "symbols": [{"name": "__ieee754_rem_pio2f", "hash": "2278e6395ca1edc2a157a751f4ab02fe9e2f294f", "variant": 517736664, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 4289724432}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1006780233}, "child": {"skip": 904, "offset": 928, "next": [], "symbols": [{"name": "__ieee754_rem_pio2f", "hash": "f89e94ab3b9094376ef03d4c1be39b84cfc6daae", "variant": 1055860187, "library": "libm"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1007583231}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855520}, "child": {"skip": 908, "offset": 920, "next": [], "symbols": [{"name": "__ieee754_rem_pio2f", "hash": "24e3df20a1739681f013fbb6e2e34e8d36d60566", "variant": 4217565829, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 1174429702}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707488}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 3886022672}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1006862335}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1149265920}, "child": {"skip": 96, "offset": 120, "next": [], "symbols": [{"name": "tanf", "hash": "f50a538ebee42317f9e17cdc5549468d63601acb", "variant": 2961354767, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 1006796799}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1006845769}, "child": {"skip": 32, "offset": 56, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__kernel_cosf"}}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 0}, "child": {"skip": 148, "offset": 212, "next": [], "symb)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ols": [{"name": "cosf", "hash": "4fc6accec82e13012257c7593d38331777a9b547", "variant": 2127779154, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__kernel_sinf"}}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 8237}, "child": {"skip": 168, "offset": 232, "next": [], "symbols": [{"name": "sinf", "hash": "bcc305695fb590f54a6d2edac287a986f6738edd", "variant": 2506155547, "library": "libm"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724432}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707480}, "child": {"skip": 328, "offset": 344, "next": [], "symbols": [{"name": "__ieee754_coshf", "hash": "85700ae3fd26eee8ce65b1a231d0b07d685a9193", "variant": 4267904565, "library": "libm"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1174430406}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707472}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 3887464488}, "child": {"skip": 36, "offset": 52, "next": [{"match": {"value": 478150908}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 3753836560}, "child": {"skip": 1024, "offset": 1084, "next": [], "symbols": [{"name": "__ieee754_acosf", "hash": "5bc6f4e030993b89b79503b0c8d95bd3c8cff5b1", "variant": 806967807, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 478150902}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 3753836560}, "child": {"skip": 1000, "offset": 1060, "next": [], "symbols": [{"name": "__ieee754_acosf", "hash": "0b06fa112ce25faf00d865bd723953a9b569fae9", "variant": 256249168, "library": "libm"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707456}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 3887464480}, "child": {"skip": 1056, "offset": 1072, "next": [], "symbols": [{"name": "__ieee754_acosf", "hash": "1a005c71f12283e0c734e5e0dc27b6b2b17c8d8c", "variant": 3505878067, "library": "libm"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1007648767}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789960}, "child": {"skip": 908, "offset": 920, "next": [], "symbols": [{"name": "__ieee754_asinf", "hash": "9a5f0ef925c869e8e0c7ecb702ee2cb4fdfa0815", "variant": 2696845244, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 3887398952}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 3887333408}, "child": {"skip": 376, "offset": 388, "next": [], "symbols": [{"name": "__kernel_cosf", "hash": "d10c1f727b0cbd54b4f6a2f2e00afb912b9ca7d4", "variant": 3646828614, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 8400941}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 48, "offset": 60, "next": [{"match": {"value": 272629812}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 4290707496}, "child": {"skip": 464, "offset": 532, "next": [], "symbols": [{"name": "floor", "hash": "bb5428b3db7b4426015c47d9ac3f14b617edee9e", "variant": 2572258734, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 272629810}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 4290707496}, "child": {"skip": 456, "offset": 524, "next": [], "symbols": [{"name": "ceil", "hash": "cf19de23c4cb88fbb77c9b32b1745445d9526e05", "variant": 787649007, "library": "libm"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8398893}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789960}, "child": {"skip": 520, "offset": 532, "next": [], "symbols": [{"name": "floor", "hash": "b9ecc55364d9d6b5e10eac20348336fe0e3e3b78", "variant": 2158738831, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 1141006336}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789968}, "child": {"skip": 668, "offset": 680, "next": [], "symbols": [{"name": "atanf", "hash": "cdec2e2cfc7da72bc85a8923ba121ef1bda7a12d", "variant": 3680095019, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 1006796799}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289921048}, "child": {"skip": 1152, "offset": 1164, "next": [], "symbols": [{"name": "atan", "hash": "41d83d5cda0ac2619ea327abbd96582074ec6e6f", "variant": 2965298186, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 346175}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 282687}, "child": {"skip": 16, "offset": 28, "next": [{"match": {"value": 354418867}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 60866605}, "child": {"skip": 1308, "offset": 1344, "next": [], "symbols": [{"name": "__umoddi3", "hash": "f0ddf0ec254e87f37798e6a6055d979e3f42981a", "variant": 1555011979, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 354418859}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 60866605}, "child": {"skip": 1268, "offset": 1304, "next": [], "symbols": [{"name": "__umoddi3", "hash": "3106af27773ec8106fd5617c1f5c142860ad3545", "variant": 541741650, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 665059344}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 60827693}, "child": {"skip": 12, "offset": 24, "next": [{"match": {"value": 2409824256}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 946012162}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 274726931}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 4141}, "child": {"skip": 84, "offset": 124, "next": [], "symbols": [{"name": "fptosi", "hash": "608f3c83fe8a64809d05d2cdf808a12c49e5058a", "variant": 1229635772, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 274726932}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 4141}, "child": {"skip": 88, "offset": 128, "next": [], "symbols": [{"name": "fptoui", "hash": "c7e15ed82718ea03eabb6f5c755d5b15689f88da", "variant": 1229635772, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2678521868}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2409889792}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2409955332}, "child": {"skip": 24, "offset": 60, "next": [], "symbols": [{"name": "fptodp", "hash": "62efbcd685945ff0973ac3707cf71dc3adc85c16", "variant": 1019812443, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 2410020872}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2409889792}, "child": {"skip": 24, "offset": 60, "next": [], "symbols": [{"name": "fptodp", "hash": "99f3013b98cd2385d2c489da933c5535079f6ab9", "variant": 1019812443, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2946760720}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 60827693}, "child": {"skip": 12, "offset": 24, "next": [{"match": {"value": 2409824256}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 945946626}, "child": {"skip": 12, "offset": 44, "next": [{"match": {"value": 945946628}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 268435475}, "child": {"skip": 88, "offset": 140, "next": [], "symbols": [{"name": "fptosi", "hash": "7f28ecf11631285ccce99fdedfaa9f8d88886a2c", "variant": 1229635772, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 2409758724}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 268435478}, "child": {"skip": 100, "offset": 152, "next": [], "symbols": [{"name": "fptoui", "hash": "6453d7a0d8d48af2fe898cf3ed716377538e92e6", "variant": 1229635772, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2410086412}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2409889792}, "child": {"skip": 32, "offset": 64, "next": [], "symbols": [{"name": "fptodp", "hash": "67f44c72201da89a3937e41ff447ef40a0ffe1e5", "variant": 3065347896, "libr)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ary": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 2409758724}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 60825645}, "child": {"skip": 24, "offset": 56, "next": [], "symbols": [{"name": "__negsf2", "hash": "8680ece28d079c9e2ba473187a35913af66346d8", "variant": 1896685267, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604110851}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 270274}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707488}, "child": {"skip": 36, "offset": 52, "next": [{"match": {"value": 1006862336}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 872595936}, "child": {"skip": 124, "offset": 184, "next": [], "symbols": [{"name": "litodp", "hash": "24fcb012f4d102f537bb334e7ee155b1b88fd256", "variant": 1956013601, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 1006796800}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 344064005}, "child": {"skip": 76, "offset": 136, "next": [{"match": {"value": 6301741}, "child": {"skip": 0, "offset": 140, "next": [{"match": {"value": 12783659}, "child": {"skip": 40, "offset": 184, "next": [], "symbols": [{"name": "litodp", "hash": "04879367ca35a03ea3f338279533a2ec5e690e5b", "variant": 1956013601, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 12783659}, "child": {"skip": 0, "offset": 140, "next": [{"match": {"value": 0}, "child": {"skip": 40, "offset": 184, "next": [], "symbols": [{"name": "litodp", "hash": "2855cbc5af1a5840a56789c9c931d3dfe37a5db0", "variant": 1956013601, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707488}, "child": {"skip": 8, "offset": 24, "next": [{"match": {"value": 2382561652}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 341966858}, "child": {"skip": 172, "offset": 204, "next": [], "symbols": [{"name": "_decPicture", "hash": "ee44f77c31d02108bca823102975d78c2691b761", "variant": 3532487508, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2382561676}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 341966858}, "child": {"skip": 172, "offset": 204, "next": [], "symbols": [{"name": "_decPicture", "hash": "9a9e2165d831bcde17c7acf3f5656a093a3d5a3d", "variant": 3532487508, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2382561668}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 341966858}, "child": {"skip": 172, "offset": 204, "next": [], "symbols": [{"name": "_decPicture", "hash": "f291ef599136e5a1d3842c2a560c94afcc19bf01", "variant": 1628297642, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 270274}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 604110851}, "child": {"skip": 56, "offset": 68, "next": [{"match": {"value": 274726937}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 2946629640}, "child": {"skip": 104, "offset": 180, "next": [], "symbols": [{"name": "litodp", "hash": "82c85f8a2450af31a6200f7764e6f801fe972e9a", "variant": 4159015363, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 274726938}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 2946629640}, "child": {"skip": 108, "offset": 184, "next": [], "symbols": [{"name": "litodp", "hash": "9c243eeac82b650d9270dac5e15e51dafecb7088", "variant": 4159015363, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 292802}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 604962819}, "child": {"skip": 164, "offset": 176, "next": [], "symbols": [{"name": "litodp", "hash": "6dd5f47eed93a329ecb2b116f24890afa0632303", "variant": 4159015363, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 2946760704}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 60825645}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707488}, "child": {"skip": 28, "offset": 44, "next": [], "symbols": [{"name": "__make_dp", "hash": "0a7b5fc855837aff08c032f29c7ea8be4489b4fc", "variant": 1992711258, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 4290707488}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 60825645}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2946826244}, "child": {"skip": 24, "offset": 44, "next": [], "symbols": [{"name": "__make_dp", "hash": "9990180e7381534be4698aed44a292642767e546", "variant": 1992711258, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 2946826244}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 60825645}, "child": {"skip": 24, "offset": 44, "next": [], "symbols": [{"name": "__make_dp", "hash": "597c1cc6db3cd232a4524686af58956b5e93e1f1", "variant": 1992711258, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8392749}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 60825645}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707488}, "child": {"skip": 32, "offset": 48, "next": [], "symbols": [{"name": "__make_dp", "hash": "2b86dda5f9feb0a455255754edaee5e5c510c301", "variant": 1869271873, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289789968}, "child": {"skip": 80, "offset": 96, "next": [], "symbols": [{"name": "file_gets", "hash": "f7842fcc9476b91499ad5f5550e96c4bcf75b407", "variant": 1667914804, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289724416}, "child": {"skip": 236, "offset": 252, "next": [], "symbols": [{"name": "fde_merge", "hash": "3c57875ceccfa629e7db2f9e16475104b9e99022", "variant": 0, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 10522669}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 12593197}, "child": {"skip": 204, "offset": 220, "next": [], "symbols": [{"name": "_fopen_r", "hash": "98a72b7ce48079367e1a5ab733194ee67436178e", "variant": 275775717, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4289724432}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289789976}, "child": {"skip": 264, "offset": 280, "next": [], "symbols": [{"name": "_sceMcFatUnFormat", "hash": "5b2e1e2cffcbf74a63914db30573993a4a4848c5", "variant": 3098860258, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789976}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 10520621}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289724432}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289855520}, "child": {"skip": 248, "offset": 272, "next": [], "symbols": [{"name": "extract_cie_info", "hash": "1c3256951da0d1c3c9883f9c07a9e9321c8b0c98", "variant": 3209072916, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 4290707488}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2425356288}, "child": {"skip": 264, "offset": 288, "next": [], "symbols": [{"name": "decode_stack_op", "hash": "b478e4ee86432f7448a7a83c954f3f702697aae8", "variant": 671284542, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 60827693}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724432}, "child": {"skip": 184, "offset": 204, "next": [], "symbols": [{"name": "_ratio", "hash": "5c6515e147ffecf3e6a531d818696a9ab5a7fdac", "variant": 4090587785, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855504}, "child": {"skip": 0, "offset": 8, "n)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ext": [{"match": {"value": 613548504}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289921048}, "child": {"skip": 8, "offset": 24, "next": [{"match": {"value": 10526765}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4289724416}, "child": {"skip": 116, "offset": 148, "next": [], "symbols": [{"name": "_fwalk", "hash": "53efa4ec3a7475871ac223ee46c3d3d4d5bbb03b", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4289789960}, "child": {"skip": 112, "offset": 144, "next": [], "symbols": [{"name": "_fwalk", "hash": "ca9f36ef9e05e22476c19179581d172b278e3b73", "variant": 0, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289921048}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289986592}, "child": {"skip": 44, "offset": 60, "next": [{"match": {"value": 2248278028}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 1346371589}, "child": {"skip": 76, "offset": 144, "next": [], "symbols": [{"name": "_fwalk", "hash": "aa4b59512ee510611f99c83b5d2fe89308825f3b", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 2249129996}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 1373634565}, "child": {"skip": 76, "offset": 144, "next": [], "symbols": [{"name": "_fwalk", "hash": "96156523df7e2cadecf8161a7d9b9693ae84e826", "variant": 0, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8425517}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289724416}, "child": {"skip": 216, "offset": 232, "next": [], "symbols": [{"name": "__submore", "hash": "fe7593f126581c914b1095b65a1a78ce7ef75638", "variant": 1953628029, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 614662163}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855504}, "child": {"skip": 1764, "offset": 1776, "next": [], "symbols": [{"name": "_malloc_r", "hash": "56b09f4ea6e11064bda9b75d9620e84ff60e9874", "variant": 3363877666, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 614793235}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855504}, "child": {"skip": 1756, "offset": 1768, "next": [], "symbols": [{"name": "_malloc_r", "hash": "c0cfb1015669683723561eae11181177315e94e1", "variant": 3264259805, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 12599341}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789960}, "child": {"skip": 252, "offset": 264, "next": [], "symbols": [{"name": "_multadd", "hash": "ebe53381f5e70a2a204ec18e334b83c60844ee79", "variant": 2528821013, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 12601389}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789960}, "child": {"skip": 8, "offset": 20, "next": [{"match": {"value": 14714925}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289986592}, "child": {"skip": 236, "offset": 264, "next": [], "symbols": [{"name": "_multadd", "hash": "a64bf7bfd02f9387b3606ad8fdcea8c8c6d5e8b4", "variant": 2528821013, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4289986592}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 14714925}, "child": {"skip": 236, "offset": 264, "next": [], "symbols": [{"name": "_multadd", "hash": "05a5a6d074d90a8c9cad200df7684011aa64bb1f", "variant": 2477847188, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 615120916}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789960}, "child": {"skip": 248, "offset": 260, "next": [], "symbols": [{"name": "_multadd", "hash": "94da82e232ee1a05cc2a60ae25906649fe5c1fa0", "variant": 1173241269, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 604110857}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289986592}, "child": {"skip": 292, "offset": 304, "next": [], "symbols": [{"name": "_s2b", "hash": "149b3a375e601fe3c3299c7a341c0363d05c06c6", "variant": 3371562830, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 818085891}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789960}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 12617773}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289921048}, "child": {"skip": 244, "offset": 264, "next": [], "symbols": [{"name": "_pow5mult", "hash": "9daab6b96cc0b083a880694625a6bd6e6188e1ca", "variant": 2230925956, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4289921048}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289986592}, "child": {"skip": 240, "offset": 260, "next": [], "symbols": [{"name": "_pow5mult", "hash": "72c1e560c21dff75c74a75bf0b65d246e659b608", "variant": 658147147, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 818806787}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789960}, "child": {"skip": 248, "offset": 260, "next": [], "symbols": [{"name": "_pow5mult", "hash": "81f478071047dfbec454901e7b185109a7f336c2", "variant": 658147147, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 612499520}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855504}, "child": {"skip": 216, "offset": 228, "next": [], "symbols": [{"name": "__submore", "hash": "de4764e4abb4719c7346582340750c64c0ca8c69", "variant": 2974175042, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 77660206}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2693136384}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 337955}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 612827138}, "child": {"skip": 184, "offset": 204, "next": [], "symbols": [{"name": "exponent", "hash": "f766dce783f1bb52a1bb23a9da9f71e7260d7ea9", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 604110893}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 337955}, "child": {"skip": 188, "offset": 208, "next": [], "symbols": [{"name": "exponent", "hash": "11a75c7d010865d95bf1b27fcbc5ec3ae9517f12", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 604962861}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 337955}, "child": {"skip": 188, "offset": 208, "next": [], "symbols": [{"name": "exponent", "hash": "1facb4c988e3587f94e24b653ab0c96bbfd359e8", "variant": 0, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289986592}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1007943680, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 160, "offset": 172, "next": [], "symbols": [{"name": "exit", "hash": "cb3eecf5aecd0cec5335efed5f4018fc08a4567c", "variant": 3675408468, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4289724448}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 10518573}, "child": {"skip": 64, "offset": 76, "next": [], "symbols": [{"name": "fputs", "hash": "dbd273bf199bd063ee2755b4ac12781e23e8812d", "variant": 3400162454, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 1006768128}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707488}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 876748800}, "child": {"skip": 148, "offset": 164, "next": [], "symbols": [{"name": "_waitIpuIdle64", "hash": "40baa9c8b7f8069549104b215d5cf2b9d456229f", "variant": 3396773896, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 876797968}, "child": {"skip": 244, "offset": 260, "next": [], "symbols": [{"name": "_ch4dma", "hash": "bddc81c9e8badf2f5310f2992f4b5f69e402c26e", "variant": 3581584955, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604307466}, "child": {"skip": 0, "offset": 8, "next": [{"mat)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ch": {"value": 4289724416}, "child": {"skip": 8, "offset": 20, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_nextBit"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 8421421}, "child": {"skip": 16, "offset": 44, "next": [{"match": {"value": 2919366992}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 33562669}, "child": {"skip": 144, "offset": 196, "next": [], "symbols": [{"name": "_pictureHeader", "hash": "02df5789a4010610c75b2478e9776c3330b88b5d", "variant": 4105479960, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2919367016}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 33562669}, "child": {"skip": 144, "offset": 196, "next": [], "symbols": [{"name": "_pictureHeader", "hash": "3d0497ae703eaf6a23c5e62279279b06cef16abd", "variant": 4105479960, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceMpegNextBit"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 8421421}, "child": {"skip": 296, "offset": 324, "next": [], "symbols": [{"name": "_pictureHeader", "hash": "0471152e9b4ea5e4db693d529bc8e924899f6f13", "variant": 626591140, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006833664}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707488}, "child": {"skip": 36, "offset": 48, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 1006768127}, "child": {"skip": 176, "offset": 232, "next": [], "symbols": [{"name": "_doCSC", "hash": "66a003483183849e538da3a0d16aa3c1a4d1db47", "variant": 3850629038, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 1006768127}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 1006899200}, "child": {"skip": 56, "offset": 112, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 116, "next": [{"match": {"value": 604176388}, "child": {"skip": 100, "offset": 220, "next": [], "symbols": [{"name": "_doCSC", "hash": "241b41afd96a1e3a34edbe6fcd558547d5a4e71f", "variant": 774908499, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 604110852}, "child": {"skip": 0, "offset": 116, "next": [{"match": {"value": 2407792640, "relocation": {"type": "MIPS_GPREL16", "symbol": "_theSceMpeg"}}, "child": {"skip": 100, "offset": 220, "next": [], "symbols": [{"name": "_doCSC", "hash": "dbbca190fbacc6687b9e5815dc0e994f0a750d32", "variant": 2990168361, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604110849}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707488}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 60827693}, "child": {"skip": 12, "offset": 28, "next": [{"match": {"value": 65011720}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 666697776}, "child": {"skip": 0, "offset": 36, "next": [], "symbols": [{"name": "_dispatchMpegCbNodata", "hash": "bacf8caa61d30456debd49a8d8b152090bdd8eae", "variant": 569646351, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 604110849}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 40, "next": [], "symbols": [{"name": "_dispatchMpegCbNodata", "hash": "a75e6dd305f5e9dba7c0658408c0b312f4149827", "variant": 569646351, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289724416}, "child": {"skip": 176, "offset": 192, "next": [], "symbols": [{"name": "by_file_ctrl", "hash": "c7c9e9f2fbeac4e9d1e4f472109fed65f438e353", "variant": 2678102976, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604241952}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789968}, "child": {"skip": 328, "offset": 340, "next": [], "symbols": [{"name": "_sequenceHeader", "hash": "a3785d4d50d20cca17608cb82c2c7c9bc30055e1", "variant": 2958792673, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 604307457}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289789968}, "child": {"skip": 52, "offset": 68, "next": [], "symbols": [{"name": "_sysbitMarker", "hash": "89f26d05df6a41932e1c016fdd4d2b43ef1b22fc", "variant": 3573445710, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8423469}, "child": {"skip": 4, "offset": 20, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sce_eenet_dhclient_reset_if"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289724416}, "child": {"skip": 164, "offset": 192, "next": [], "symbols": [{"name": "init", "hash": "3adba897c260e5e0c838d0d6806343016e4e16c2", "variant": 2571697721, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceSynthesizerSetupReleaseEnv"}}, "child": {"skip": 136, "offset": 164, "next": [], "symbols": [{"name": "phaseChange2Release", "hash": "84e52360505608a174b753459e17209f7a5b3986", "variant": 2052374896, "library": "libssyn"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604307512}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 96, "offset": 108, "next": [], "symbols": [{"name": "_system_header", "hash": "1bf1ec95e77f92f2356938af60622b0db09667da", "variant": 3564835977, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 820183280}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2946957328}, "child": {"skip": 152, "offset": 164, "next": [], "symbols": [{"name": "sceSEIn_PutMsg", "hash": "1ee61b2b1dccb105680cc58b64f60da955a8fd54", "variant": 1014119640, "library": "libsein"}]}}], "symbols": []}}, {"match": {"value": 1006829567}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789968}, "child": {"skip": 324, "offset": 336, "next": [], "symbols": [{"name": "sceHiDMAMake_LumpEnd", "hash": "1b009ceef6f595d1fac83430c1235bf96532d748", "variant": 1526084219, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 818282559}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855520}, "child": {"skip": 296, "offset": 308, "next": [], "symbols": [{"name": "sceHiGsEnvSetRegBitblt", "hash": "19f4b925b2ecc6d28c60ce83f5aaf6917d6a9591", "variant": 0, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 2143223840}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2142306320}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1889570344}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2142240768}, "child": {"skip": 4, "offset": 24, "next": [{"match": {"value": 270532617}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 1887471144}, "child": {"skip": 20, "offset": 52, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 341901305}, "child": {"skip": 24, "offset": 84, "next": [], "symbols": [{"name": "__initialize_cpp_rts", "hash": "c6f6989720fb1f54cc5af563de51231c0f8a91f6", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 341901306}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 0}, "child": {"skip": 24, "offset": 84, "next": [], "symbols": [{"name": "__initialize_cpp_rts", "hash": "8b158764adeea3745b59470a9841e8bef1b83406", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 270532616}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 188)PS2SDB", 8192}, + std::string_view{R"PS2SDB(7471144}, "child": {"skip": 48, "offset": 80, "next": [], "symbols": [{"name": "__initialize_cpp_rts", "hash": "6f1f3d7a66e9e5511c572f09ac283262bfdd2c8f", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2142240768}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2359492612}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1887473192}, "child": {"skip": 52, "offset": 76, "next": [{"match": {"value": 1883252264}, "child": {"skip": 0, "offset": 80, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi"}}, "child": {"skip": 48, "offset": 132, "next": [{"match": {"value": 639959604}, "child": {"skip": 0, "offset": 136, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi"}}, "child": {"skip": 36, "offset": 176, "next": [], "symbols": [{"name": "__SetupFrameInfo__FP12ThrowContextP13ExceptionInfo", "hash": "a889aaea04d28959ba144339eaabcc172fe5b9b9", "variant": 1098343976, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 0}, "child": {"skip": 0, "offset": 136, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi"}}, "child": {"skip": 36, "offset": 176, "next": [], "symbols": [{"name": "__SetupFrameInfo__FP12ThrowContextP13ExceptionInfo", "hash": "55bdfa077972ff0d89fd72d531a88d8b4a60a0a3", "variant": 1098343976, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 639959588}, "child": {"skip": 0, "offset": 80, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi"}}, "child": {"skip": 92, "offset": 176, "next": [], "symbols": [{"name": "__SetupFrameInfo__FP12ThrowContextP13ExceptionInfo", "hash": "131db3742f1c1106b8fa88ae4522203fd676829d", "variant": 1098343976, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1889570344}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "mwBload"}}, "child": {"skip": 52, "offset": 76, "next": [], "symbols": [{"name": "mwLoadOverlay", "hash": "19fe842594cb0a61e71049e62d9ff933088a4419", "variant": 14021457, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 1887473192}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1889568296}, "child": {"skip": 68, "offset": 92, "next": [], "symbols": [{"name": "__call_static_initializers__FPPFv_vPPFv_v", "hash": "34e43aaa4c645e5479dd53aeaea7e2579ed914f8", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2143223808}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2946760720}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2946826264}, "child": {"skip": 32, "offset": 48, "next": [], "symbols": [{"name": "__initialize_cpp_rts", "hash": "9e8fa3ba87cb8263d7f290017c62b786c9e74679", "variant": 2765367038, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 2946760736}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2946826280}, "child": {"skip": 84, "offset": 100, "next": [], "symbols": [{"name": "__call_static_initializers__FPPFv_vPPFv_v", "hash": "cc4269e885b35d908a01705151a4ad3f04a4a001", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707456}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2946760720}, "child": {"skip": 84, "offset": 96, "next": [], "symbols": [{"name": "__dt__Q23std9exceptionFv", "hash": "b06ab256730f22da8a213893f9af74c58dd0d984", "variant": 2426117484, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 4290707472}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 665124908}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2142240768}, "child": {"skip": 28, "offset": 44, "next": [{"match": {"value": 301989892}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 4202541}, "child": {"skip": 28, "offset": 80, "next": [], "symbols": [{"name": "__SkipUnwindInfo__FPc", "hash": "628eaec6c204a6348852f6b662f8902064508a80", "variant": 2335560936, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 301989891}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 4202541}, "child": {"skip": 24, "offset": 76, "next": [], "symbols": [{"name": "__SkipUnwindInfo__FPc", "hash": "90b504c9369ea63382136d0d7b26d91e3ddb4600", "variant": 2335560936, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 1375731717}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 3753836560}, "child": {"skip": 28, "offset": 80, "next": [], "symbols": [{"name": "__SkipUnwindInfo__FPc", "hash": "fb615590f03102554ea1d0e3e151e3300e164628", "variant": 3284483409, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2142240768}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2156003328}, "child": {"skip": 60, "offset": 76, "next": [], "symbols": [{"name": "__SkipUnwindInfo__FPc", "hash": "8a54ad66ecac6c7a8eef97475b254338c0a718a3", "variant": 2335560936, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 2143158272}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 343932932}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 60878881}, "child": {"skip": 552, "offset": 572, "next": [], "symbols": [{"name": "__dynamic_cast", "hash": "0c559f8732588fcf61306d98ce88bf2bd495f606", "variant": 1897449327, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 343932931}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 60878881}, "child": {"skip": 24, "offset": 44, "next": [{"match": {"value": 2353725440}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 291504240}, "child": {"skip": 520, "offset": 572, "next": [], "symbols": [{"name": "__dynamic_cast", "hash": "8e250189a3bf5c5bb5a7219ac96f27033c485e73", "variant": 1435926152, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 2353594368}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 287309937}, "child": {"skip": 520, "offset": 572, "next": [], "symbols": [{"name": "__dynamic_cast", "hash": "40c5905c1be5134e159a8cac14a87e9b219c5e97", "variant": 1435926152, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2143223824}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2142240768}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2156003328}, "child": {"skip": 4, "offset": 20, "next": [{"match": {"value": 810549312}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi"}}, "child": {"skip": 16, "offset": 44, "next": [{"match": {"value": 301989891}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 1883252264}, "child": {"skip": 24, "offset": 76, "next": [], "symbols": [{"name": "__SkipUnwindInfo__FPc", "hash": "607a60765c325e98055a96cb7c17cd4c220e2ffb", "variant": 2335560936, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 301989892}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 0}, "child": {"skip": 28, "offset": 80, "next": [], "symbols": [{"name": "__SkipUnwindInfo__FPc", "hash": "32c4c066e854bd50cc10a839d89aa1f98de008f2", "variant": 3284483409, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 612630529}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi"}}, "child": {"skip": 52, "offset": 80, "next": [], "symbols": [{"name": "__SkipUnwindInfo__FPc", "hash": "ac5e1e8d0209)PS2SDB", 8192}, + std::string_view{R"PS2SDB(0ef8e0a6843bc971451123cbf41c", "variant": 3284483409, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2143158272}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 343932931}, "child": {"skip": 556, "offset": 572, "next": [], "symbols": [{"name": "__dynamic_cast", "hash": "1df794fb7a0dcec143103b7299dbaa91d80238d2", "variant": 3708315118, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604110911}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855520}, "child": {"skip": 260, "offset": 272, "next": [], "symbols": [{"name": "sceGpInitLoadTexelClut", "hash": "082d8c1fc389677ddb899081a0965aad34358327", "variant": 0, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 748814364}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789968}, "child": {"skip": 104, "offset": 116, "next": [], "symbols": [{"name": "sceGpSetAlphaEnvFunc", "hash": "6dc76bca547dd63ab79fdb90020f9d400600e8e5", "variant": 3147764718, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 8394797}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 604176383}, "child": {"skip": 144, "offset": 160, "next": [], "symbols": [{"name": "sceUsbKbSync", "hash": "1d715aa1ca03d4e00516c7bdf9b0b79dced959ec", "variant": 2460932619, "library": "libusbkb"}]}}], "symbols": []}}, {"match": {"value": 604110861}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707488}, "child": {"skip": 44, "offset": 60, "next": [], "symbols": [{"name": "ASN1_OBJECT_create", "hash": "b154b667e973799b4472d9974dfdf1daabb0c466", "variant": 2273894798, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 4290707488}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2946760720}, "child": {"skip": 128, "offset": 144, "next": [], "symbols": [{"name": "OBJ_obj2nid", "hash": "66d4a8af287c0481413fb39f6d15e8d25f8b8a0d", "variant": 2620488402, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 818348031}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 404, "offset": 416, "next": [], "symbols": [{"name": "sceSynthesizerSetupLfo", "hash": "81b2b3b429dbe51a52553060e9b3c08fa9abba32", "variant": 1542931743, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 1006968832}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 204, "offset": 216, "next": [], "symbols": [{"name": "procVoiceStop", "hash": "e5271637410d34632f9c358576e48909feae76a0", "variant": 438409138, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 10504237}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789968}, "child": {"skip": 704, "offset": 716, "next": [], "symbols": [{"name": "setupStartVoicePcm", "hash": "886afdf37d6604891c9e8f4e1432ed8a66da770d", "variant": 2877916148, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 1006817279}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 168, "offset": 180, "next": [], "symbols": [{"name": "truncateVoice", "hash": "3bfd780c30095941e13a5e58180631fec7a3ceac", "variant": 726759145, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 1006772224}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 164, "offset": 176, "next": [], "symbols": [{"name": "turnOffVoice", "hash": "545faa96b6098b8efaf2a29cd4243009fec08ea4", "variant": 3816161039, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 604373920}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789968}, "child": {"skip": 48, "offset": 60, "next": [{"match": {"value": 2921530260}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 1272971564}, "child": {"skip": 140, "offset": 208, "next": [], "symbols": [{"name": "scePFontInit", "hash": "9df6b0d7cdd6e20d117abc9b9872acb9e08cf677", "variant": 2643897914, "library": "libpfont"}]}}], "symbols": []}}, {"match": {"value": 2921530264}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 1272971564}, "child": {"skip": 140, "offset": 208, "next": [], "symbols": [{"name": "scePFontInit", "hash": "13c84bccf83819ec678cae3a6645d75838d64b94", "variant": 2643897914, "library": "libpfont"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604307503}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724448}, "child": {"skip": 196, "offset": 208, "next": [], "symbols": [{"name": "isPathCurParent", "hash": "e9a8ec2df17a53a5244fbc1fa4bc9fd675f4c27c", "variant": 1054153969, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 604113048}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 132, "offset": 144, "next": [], "symbols": [{"name": "_sceMcFatFlushFatCache", "hash": "d4f93192a3cd6c3727838bc517ee9b3ebb0421a8", "variant": 795089290, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 604110850}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789968}, "child": {"skip": 4, "offset": 16, "next": [{"match": {"value": 8423469}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 279052319}, "child": {"skip": 244, "offset": 268, "next": [], "symbols": [{"name": "sceHiPlugHrchy", "hash": "c055243e2ad7b9883932f954a15a286ddc02f72d", "variant": 1482090244, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 34861}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289724416}, "child": {"skip": 168, "offset": 192, "next": [], "symbols": [{"name": "dir_ctrl", "hash": "323dc399e7801bb9ee1edd881da17392387c2a9f", "variant": 2556716450, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10498093}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 3887333408}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8398893}, "child": {"skip": 72, "offset": 88, "next": [], "symbols": [{"name": "spline", "hash": "3c5e1f576bfb3b7f0902c4956750abc551b2f54c", "variant": 4004589899, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 4289724432}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 60827693}, "child": {"skip": 72, "offset": 88, "next": [], "symbols": [{"name": "_sce_eenet_dhclient_arp_check", "hash": "e59dec00d0d5724b1f3562e783618db9f92c7d7d", "variant": 1297451830, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290641952}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707496}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 60878893}, "child": {"skip": 8, "offset": 24, "next": [{"match": {"value": 2948595732}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2411855872}, "child": {"skip": 444, "offset": 476, "next": [], "symbols": [{"name": "sceNetGlueInetAton", "hash": "ac578437c35dd0ce3aaed28357f852847612f945", "variant": 258374810, "library": "netglue_insck"}]}}], "symbols": []}}, {"match": {"value": 2948988936}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2949054476}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2949120016}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 2948595732}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 40, "offset": 84, "next": [], "symbols": [{"name": "sceNetGlueGetsockopt", "hash": "ea7ff2745a0f9e72f09f4649af33f6cf2982cfc9", "variant": 3132759232, "library": "netglue_insck"}, {"name": "sceNetGlueSetsockopt", "hash": "ea7ff2745a0f9e72f09f4649af33f6cf2982cfc9", "variant": 3132759232, "library": "netglue_insck"}]}}], "symbols": []}}, {"match": {"value": 2949185556}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 4290773016}, "child": {"skip": 44, "offset": 88, "ne)PS2SDB", 8192}, + std::string_view{R"PS2SDB(xt": [], "symbols": [{"name": "sceNetGlueRecvfrom", "hash": "16d6416d241a8133ffe8af04cb5d4fb6e1ce936d", "variant": 1166844660, "library": "netglue_insck"}, {"name": "sceNetGlueSendto", "hash": "16d6416d241a8133ffe8af04cb5d4fb6e1ce936d", "variant": 1166844660, "library": "netglue_insck"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2411855872}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 71303177}, "child": {"skip": 132, "offset": 172, "next": [{"match": {"value": 604110853}, "child": {"skip": 0, "offset": 176, "next": [{"match": {"value": 2892103696}, "child": {"skip": 176, "offset": 356, "next": [], "symbols": [{"name": "sceNetGlueRecv", "hash": "f5eec932913aed08d7538c8a1fa37cfe2b2bc8e6", "variant": 2965767393, "library": "netglue_insck"}]}}], "symbols": []}}, {"match": {"value": 604110854}, "child": {"skip": 0, "offset": 176, "next": [{"match": {"value": 2892103696}, "child": {"skip": 176, "offset": 356, "next": [], "symbols": [{"name": "sceNetGlueSend", "hash": "0937be96bf7ce9671faf90942d8bf20a10bece96", "variant": 2965767393, "library": "netglue_insck"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 60878893}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2948857856}, "child": {"skip": 96, "offset": 112, "next": [{"match": {"value": 2411855892}, "child": {"skip": 0, "offset": 116, "next": [{"match": {"value": 2546139146}, "child": {"skip": 7600, "offset": 7720, "next": [], "symbols": [{"name": "RC2_encrypt", "hash": "ac95f1138cf1fd8b90304cb9698177ffcfcfe30d", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2546073616}, "child": {"skip": 0, "offset": 116, "next": [{"match": {"value": 137920}, "child": {"skip": 7064, "offset": 7184, "next": [], "symbols": [{"name": "RC2_decrypt", "hash": "3d47c91b89e70dd365ad32bcfa7d93943be94fd6", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10491949}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789968}, "child": {"skip": 20, "offset": 32, "next": [{"match": {"value": 604110852}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 350355479}, "child": {"skip": 112, "offset": 152, "next": [], "symbols": [{"name": "__sceEENetsysctl_int", "hash": "59acb01e39ab7f8cc6a9b962dbac63d1deae0368", "variant": 1639268436, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 604110856}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 350355479}, "child": {"skip": 112, "offset": 152, "next": [], "symbols": [{"name": "__sceEENetsysctl_quad", "hash": "a744bfd1a9613b0103367156aedfb0144ca6e840", "variant": 1639268436, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10285}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289789968}, "child": {"skip": 104, "offset": 120, "next": [], "symbols": [{"name": "__sceEENetif_clone_destroy", "hash": "2cba9c17b47c4d0b740e5bcb7e1ec973fd2b6287", "variant": 1742096833, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289724432}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8421421}, "child": {"skip": 48, "offset": 64, "next": [], "symbols": [{"name": "sceEENetTime", "hash": "a2971f22d2a8325b273b36b38660b8caec6c6888", "variant": 634918445, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604262288}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789968}, "child": {"skip": 316, "offset": 328, "next": [], "symbols": [{"name": "__sceEENetpppoe_clone_create", "hash": "2844bda50cd9cd9b1776a2228fcdfbf8b1ccda9a", "variant": 61433555, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 604307470}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 64, "offset": 76, "next": [], "symbols": [{"name": "pppoe_disc_input", "hash": "48620c83ef6911ee5b7cbfd61be738089dbf8b4e", "variant": 2914751950, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 8409133}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707488}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 16429}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2370372272}, "child": {"skip": 448, "offset": 468, "next": [], "symbols": [{"name": "sppp_ipcp_scr", "hash": "c5e79dfa1a3361265c52b1bf17950623e421d801", "variant": 1206213974, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2370044112}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 75497537}, "child": {"skip": 272, "offset": 292, "next": [], "symbols": [{"name": "op_asn1_get", "hash": "b669bc1d80540df065270082ab0f4325e95f5d62", "variant": 1362624145, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 872661539}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789968}, "child": {"skip": 116, "offset": 128, "next": [], "symbols": [{"name": "sppp_chap_open", "hash": "e1452c4571ca22ed4991ca46505ba62d7f9a55c7", "variant": 2404698627, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 1006813204}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789968}, "child": {"skip": 800, "offset": 812, "next": [], "symbols": [{"name": "sppp_params", "hash": "1e9e70620a3e063e1e8fb7457442c29d1dfdf073", "variant": 1327771601, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 604315272}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 116, "offset": 128, "next": [], "symbols": [{"name": "__sceEENetsl_compress_init", "hash": "30502baf4e9b55b747c3fe83e19948ed19d5b95f", "variant": 601095088, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 604373124}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789968}, "child": {"skip": 120, "offset": 132, "next": [], "symbols": [{"name": "link_state", "hash": "887bf02a80d26b8fff2ddc557ba3cc1544e66317", "variant": 2246570470, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 8407085}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789968}, "child": {"skip": 256, "offset": 268, "next": [], "symbols": [{"name": "up_based_on_ipversion", "hash": "fbfb4e82f9c156aed130fb5c01f9f3415278bc32", "variant": 3267222253, "library": "eenetctl"}]}}], "symbols": []}}, {"match": {"value": 10754085}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789968}, "child": {"skip": 148, "offset": 160, "next": [], "symbols": [{"name": "xcalloc", "hash": "4583ec5135138c0466aab724b3513146b1351eb6", "variant": 1615645444, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604438551}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789968}, "child": {"skip": 152, "offset": 164, "next": [], "symbols": [{"name": "d2i_ASN1_UTCTIME", "hash": "1099a3c51dde78206e9c12eacdb362072f2d444a", "variant": 775385429, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 10506285}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724432}, "child": {"skip": 248, "offset": 260, "next": [], "symbols": [{"name": "ASN1_put_object", "hash": "f6b8bc3efed4dc8e6518594ac2c60d432eb65713", "variant": 2369692832, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2946826240}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 60831789}, "child": {"skip": 56, "offset": 68, "next": [], "symbols": [{"name": "BIO_open_file", "hash": "294d7f6afba9745c9da09b532c0c215a07ff4c0e", "variant": 3358857882, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 14688301}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 60, "offset": 72, "next": [], "symbols": [{"name": "crypto_sslc_null_cipher_encrypt", "hash": "4cff1cf6f5f36f239cde20a5a0768498)PS2SDB", 8192}, + std::string_view{R"PS2SDB(782472aa", "variant": 863983187, "library": "libhttps"}, {"name": "crypto_sslc_null_cipher_decrypt", "hash": "4cff1cf6f5f36f239cde20a5a0768498782472aa", "variant": 863983187, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604307474}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724432}, "child": {"skip": 88, "offset": 100, "next": [], "symbols": [{"name": "DH_size", "hash": "4fd9a6270444331b20c43d158a139f873b4619a0", "variant": 983212951, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604373224}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789968}, "child": {"skip": 68, "offset": 80, "next": [], "symbols": [{"name": "OP_CTX_init_meth", "hash": "6e208ef66b4fca667b7351ab40db245334f7f3be", "variant": 2049803785, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604110964}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789968}, "child": {"skip": 152, "offset": 164, "next": [], "symbols": [{"name": "EVP_PKEY_cmp_parameters", "hash": "a0fa1dd488e064f654ecb3040e6661b3c84fcab3", "variant": 2099429268, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 620888075}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 168, "offset": 180, "next": [], "symbols": [{"name": "rsa_padding_add_pkcs1_type_1", "hash": "f86a2ded5f762cf910c00ae946ecec77422257a8", "variant": 159700713, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604176375}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 21123108}, "child": {"skip": 52, "offset": 64, "next": [], "symbols": [{"name": "R_EITEMS_add", "hash": "9d63260645ca8e5d1eba13c938cdfe0912bd0695", "variant": 2699400280, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 18477}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724432}, "child": {"skip": 140, "offset": 152, "next": [], "symbols": [{"name": "R_EITEMS_delete", "hash": "ab4b208ee6a8c2d6b61ba98b3e055abe5402a791", "variant": 3776307398, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 6189}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724432}, "child": {"skip": 76, "offset": 88, "next": [], "symbols": [{"name": "R_rand_entropy_count", "hash": "15f3261873b5c28d174dfbec56f7022cf1b4e44b", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604241932}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789968}, "child": {"skip": 80, "offset": 92, "next": [], "symbols": [{"name": "R_time_new", "hash": "abcb63f5eaef8105f8e24b56b5465548f8a9d3d7", "variant": 3132767884, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604307472}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724432}, "child": {"skip": 92, "offset": 104, "next": [], "symbols": [{"name": "RSA_size", "hash": "6827db050c462c67d34ccd5ce86d87b33b49fa62", "variant": 3902250793, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604311904}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724432}, "child": {"skip": 124, "offset": 136, "next": [], "symbols": [{"name": "ssl3_get_server_done", "hash": "249c50dc1694974a4600a4dca5cebd9db158d97b", "variant": 1885993359, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604373004}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707488}, "child": {"skip": 264, "offset": 276, "next": [], "symbols": [{"name": "mktime", "hash": "1eda9d1b2441878ec1804193881ec470206f1955", "variant": 2466844081, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 10489901}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789968}, "child": {"skip": 92, "offset": 104, "next": [], "symbols": [{"name": "SSL_X509_certificate_type", "hash": "b1b3f7938135d18a19952381a42e0f06eae34671", "variant": 1401596614, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 12333}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789968}, "child": {"skip": 148, "offset": 160, "next": [], "symbols": [{"name": "X509_STORE_add_lookup", "hash": "8db5b794029530faeb1e304070adb01445f1bb67", "variant": 1790874425, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604110858}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 112, "offset": 124, "next": [], "symbols": [{"name": "X509_STORE_CTX_init", "hash": "59ac1f0e47ec75b57ea61b2ccaf7632f5a845584", "variant": 847146400, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 12597293}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789968}, "child": {"skip": 100, "offset": 112, "next": [], "symbols": [{"name": "sceInetCreate", "hash": "f7ed98516c00e18853ae95f13eb18e72533d16bc", "variant": 2795501121, "library": "libnet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 3699507248}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 338944}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 406528}, "child": {"skip": 124, "offset": 136, "next": [], "symbols": [{"name": "sceGsSetHalfOffset", "hash": "6111fff298806920f0db8c71f26138b96421b422", "variant": 0, "library": "libgraph"}, {"name": "sceGsSetHalfOffset2", "hash": "6111fff298806920f0db8c71f26138b96421b422", "variant": 0, "library": "libgraph"}]}}], "symbols": []}}, {"match": {"value": 612827184}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 149310}, "child": {"skip": 132, "offset": 144, "next": [], "symbols": [{"name": "sceGpSetZ32", "hash": "a9c35f48d8f76c41126aa07c259613f46d47f531", "variant": 0, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 612892720}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 151358}, "child": {"skip": 132, "offset": 144, "next": [], "symbols": [{"name": "sceGpSetZ32", "hash": "e15c48888f992d82dff51747faa0fbc309f73909", "variant": 0, "library": "libgp"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 406528}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 474112}, "child": {"skip": 204, "offset": 212, "next": [{"match": {"value": 604241926}, "child": {"skip": 0, "offset": 216, "next": [{"match": {"value": 604373012}, "child": {"skip": 48, "offset": 268, "next": [], "symbols": [{"name": "sceGsSetDefTexEnv", "hash": "5a3c015b36a2e1d67eab1dc35323d8f1bab9823b", "variant": 0, "library": "libgraph"}]}}], "symbols": []}}, {"match": {"value": 604241927}, "child": {"skip": 0, "offset": 216, "next": [{"match": {"value": 604373013}, "child": {"skip": 48, "offset": 268, "next": [], "symbols": [{"name": "sceGsSetDefTexEnv2", "hash": "81c8a8b6a29f3bd9e5688f2ceb2bfc0111a2be58", "variant": 0, "library": "libgraph"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604176391}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 268034}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 339935237}, "child": {"skip": 28, "offset": 40, "next": [], "symbols": [{"name": "CheckAddress", "hash": "1e8792ca3bdeb56dca042d47a5c07be4b77f24f8", "variant": 0, "library": "libdma"}]}}], "symbols": []}}, {"match": {"value": 12}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 16, "next": [], "symbols": [{"name": "_ExecPS2", "hash": "2941b20999f5a30ea77eb78af84b6a1a5e654567", "variant": 0, "library": "libkernl"}, {"name": "ExecPS2", "hash": "2941b20999f5a30ea77eb78af84b6a1a5e654567", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 278921226}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 614662143}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 604241919}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2692743168}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 608370687}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 612630529}, "child": {"ski)PS2SDB", 8192}, + std::string_view{R"PS2SDB(p": 0, "offset": 28, "next": [{"match": {"value": 0}, "child": {"skip": 20, "offset": 52, "next": [], "symbols": [{"name": "memclr", "hash": "1a787d56e8013409a0bb30ab96e52478ae685330", "variant": 0, "library": "libdma"}]}}], "symbols": []}}, {"match": {"value": 0}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 0}, "child": {"skip": 20, "offset": 52, "next": [], "symbols": [{"name": "memclr", "hash": "302d6538cea443ecebfe272754310286dd18230c", "variant": 0, "library": "libdma"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 608370687}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2692743168}, "child": {"skip": 28, "offset": 52, "next": [], "symbols": [{"name": "bzero", "hash": "88f81d2e507b6fcae254985aa5254722abc41040", "variant": 0, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006895103}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 878968831}, "child": {"skip": 8, "offset": 24, "next": [{"match": {"value": 612630529}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 0}, "child": {"skip": 20, "offset": 52, "next": [], "symbols": [{"name": "bzero", "hash": "dd31f0c19b9b568483a7bd02c796998418e5b3a8", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 0}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 0}, "child": {"skip": 20, "offset": 52, "next": [], "symbols": [{"name": "bzero", "hash": "d6fed887fc309d7c5579b7bbc4f977bc404cfc40", "variant": 0, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 14381}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 604176390}, "child": {"skip": 88, "offset": 100, "next": [], "symbols": [{"name": "sslcert_name_entry_get_info", "hash": "1bbd01bffb02c4ef97e26e82d24bb5fbe3829bc4", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 0}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 3699507208}, "child": {"skip": 40, "offset": 52, "next": [], "symbols": [{"name": "ssl23_put_cipher_by_char", "hash": "596a18a643bfefc65bd70dc238e9a74157600743", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 746717194}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 272629766}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 28, "offset": 40, "next": [], "symbols": [{"name": "sceDmaGetChan", "hash": "407dcd268ed3f353e5b22576b39bcc253bb111c6", "variant": 201230608, "library": "libdma"}]}}], "symbols": []}}, {"match": {"value": 272629797}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 268416}, "child": {"skip": 156, "offset": 168, "next": [], "symbols": [{"name": "sppp_state_name", "hash": "a39b91c461961f3977bf5a31cd03cfa9af9d79c9", "variant": 2409852898, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006833664}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 878907392}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2623668224}, "child": {"skip": 60, "offset": 76, "next": [], "symbols": [{"name": "iGetTimerSystemTime", "hash": "dc670a61f03e4dd5595ead4034d34a076484e833", "variant": 3019051150, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 878905344}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2623668224}, "child": {"skip": 60, "offset": 76, "next": [], "symbols": [{"name": "isceTimerGetSystemTime", "hash": "5a8d3bf1fc0ef25e877c70e31bb67cc1462a9360", "variant": 3019051150, "library": "libtimer"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 878960736}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2355232768}, "child": {"skip": 8, "offset": 20, "next": [], "symbols": [{"name": "sceDmaPutStallAddr", "hash": "ac4f5690a12e19b2124423985b3d43c568dea91b", "variant": 0, "library": "libdma"}]}}], "symbols": []}}, {"match": {"value": 604241928}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 878915584}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 604110849}, "child": {"skip": 8, "offset": 24, "next": [], "symbols": [{"name": "sceDevGifPause", "hash": "c66385aefdd7034fa0caf10bb158d7e76b19e6ce", "variant": 0, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 878960656}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006768128}, "child": {"skip": 168, "offset": 184, "next": [], "symbols": [{"name": "_ch3dmaCSC", "hash": "9035ba64c95c752cddb8086bc690f9b8b6aa8949", "variant": 1021772881, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 878915616}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2355232768}, "child": {"skip": 12, "offset": 24, "next": [], "symbols": [{"name": "sceDevGifGetImtMode", "hash": "d7256163d0b8b4f4da63e1bc039ba6832597f389", "variant": 0, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 878917664}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 16, "next": [], "symbols": [{"name": "sceDevVif0GetErr", "hash": "11bf66fd7d1e8ebb899f5710a4d1a66820c72e69", "variant": 0, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 878918688}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 16, "next": [], "symbols": [{"name": "sceDevVif1GetErr", "hash": "bba80910659c37c1fdbe302d7c9c069c1ea46601", "variant": 0, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 604110852}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 878964736}, "child": {"skip": 44, "offset": 56, "next": [], "symbols": [{"name": "VSync", "hash": "2e04d8d30787085ffe7f73ff105ec480433de1ee", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 878965040}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2355232768}, "child": {"skip": 20, "offset": 32, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 1006833664}, "child": {"skip": 8, "offset": 48, "next": [{"match": {"value": 65011720}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 2690908160}, "child": {"skip": 0, "offset": 56, "next": [], "symbols": [{"name": "kputchar", "hash": "2b7ca6473db17a09708beb7253d3b5341ad79700", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 2690908160}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 60, "next": [], "symbols": [{"name": "kputchar", "hash": "24888df5e2b131392e8b83dfae2b73cb2c88560b", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8392749}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 1006833664}, "child": {"skip": 12, "offset": 52, "next": [], "symbols": [{"name": "kputchar", "hash": "b44d275f80895ffcb514a840714385a96fe5067f", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666763168}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1007222784, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707536}, "child": {"skip": 656, "offset": 668, "next": [], "symbols": [{"name": "sceSifInitCmd", "hash": "c68214c672ed25a488be94b00ed79bb1e357e7fd", "variant": 755685614, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855536}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289724432}, "child": {"skip": 0, "offset": 16, "next": [)PS2SDB", 8192}, + std::string_view{R"PS2SDB({"match": {"value": 611450880, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 24, "offset": 44, "next": [{"match": {"value": 268435486}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 604176284}, "child": {"skip": 144, "offset": 196, "next": [], "symbols": [{"name": "sceMcGetSlotMax", "hash": "9359329ec2413332403f9afe40b2ed0ec4f793e4", "variant": 3400114233, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 268435487}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 604176284}, "child": {"skip": 148, "offset": 200, "next": [], "symbols": [{"name": "sceMcGetSlotMax", "hash": "5a79f5c23ebf45df0a7d13d57d1072aff47cca4a", "variant": 213141844, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789984}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 611450880, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 172, "offset": 192, "next": [], "symbols": [{"name": "sceMcGetSlotMax", "hash": "a7a59f5cd283fc394994448a56ea8ed2f9af7a66", "variant": 3265419516, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289986624}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289921072}, "child": {"skip": 156, "offset": 172, "next": [], "symbols": [{"name": "exit", "hash": "0d395d82f9f221725e8cf0c7f9abf9a31e8f263f", "variant": 1487746091, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4289789984}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2355232768, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 24, "offset": 40, "next": [{"match": {"value": 35786795}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 339738627}, "child": {"skip": 96, "offset": 144, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "scePrintf"}}, "child": {"skip": 0, "offset": 148, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 56, "offset": 208, "next": [], "symbols": [{"name": "sceUsbKbRead", "hash": "48ab219bf4099951647099e36e064482a97569bf", "variant": 2657785671, "library": "libusbkb"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "printf"}}, "child": {"skip": 0, "offset": 148, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 56, "offset": 208, "next": [], "symbols": [{"name": "sceUsbKbRead", "hash": "48ab219bf4099951647099e36e064482a97569bf", "variant": 1563043266, "library": "libusbkb"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 35786794}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 339738627}, "child": {"skip": 96, "offset": 144, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "scePrintf"}}, "child": {"skip": 0, "offset": 148, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 56, "offset": 208, "next": [], "symbols": [{"name": "sceUsbKbGetLocation", "hash": "780a8ef1f2f26944f84a25d80bd523abfa0b588a", "variant": 2657785671, "library": "libusbkb"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "printf"}}, "child": {"skip": 0, "offset": 148, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 56, "offset": 208, "next": [], "symbols": [{"name": "sceUsbKbGetLocation", "hash": "780a8ef1f2f26944f84a25d80bd523abfa0b588a", "variant": 1563043266, "library": "libusbkb"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8425517}, "child": {"skip": 308, "offset": 324, "next": [], "symbols": [{"name": "_sceMcFatGetFreeClust", "hash": "7e7a1342c1c65c9beed0cd83176845bf469e552b", "variant": 1995422433, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2353266688, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 212, "offset": 228, "next": [], "symbols": [{"name": "_groupOfPicturesHeader", "hash": "cb1f57e532ef34d92c1bf3e2c024284ecdccf3ab", "variant": 3460251645, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 4289986624}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4235309}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289789968}, "child": {"skip": 84, "offset": 108, "next": [{"match": {"value": 608370687}, "child": {"skip": 0, "offset": 112, "next": [{"match": {"value": 0}, "child": {"skip": 124, "offset": 240, "next": [], "symbols": [{"name": "sceMcSync", "hash": "55904a4171aa9c408cc2d8020a952669b6df81e9", "variant": 3282125701, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 0}, "child": {"skip": 0, "offset": 112, "next": [{"match": {"value": 608370687}, "child": {"skip": 124, "offset": 240, "next": [], "symbols": [{"name": "sceMcSync", "hash": "26d4c65d000312b8d4f7160afc58586b1c9046ce", "variant": 3282125701, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 12623917}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289789968}, "child": {"skip": 148, "offset": 172, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceMcCoreSetAlaram"}}, "child": {"skip": 0, "offset": 176, "next": [{"match": {"value": 2920546316}, "child": {"skip": 36, "offset": 216, "next": [], "symbols": [{"name": "sceMc2ChdirAsync", "hash": "4ed57749d87822a91a85d2bd2026f6ef6b2224ef", "variant": 831671100, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceMcCoreExecSubs"}}, "child": {"skip": 0, "offset": 176, "next": [{"match": {"value": 2920546316}, "child": {"skip": 36, "offset": 216, "next": [], "symbols": [{"name": "sceMc2ChdirAsync", "hash": "4ed57749d87822a91a85d2bd2026f6ef6b2224ef", "variant": 920996703, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 819265535}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289789968}, "child": {"skip": 148, "offset": 172, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceMcCoreSetAlaram"}}, "child": {"skip": 0, "offset": 176, "next": [{"match": {"value": 2920546316}, "child": {"skip": 36, "offset": 216, "next": [], "symbols": [{"name": "sceMc2ChmodAsync", "hash": "9fe2779b40827c95de979898de7e26e043affbe1", "variant": 831671100, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceMcCoreExecSubs"}}, "child": {"skip": 0, "offset": 176, "next": [{"match": {"value": 2920546316}, "child": {"skip": 36, "offset": 216, "next": [], "symbols": [{"name": "sceMc2ChmodAsync", "hash": "9fe2779b40827c95de979898de7e26e043affbe1", "variant": 920996703, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289921072}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 10524717}, "child": {"skip": 288, "offset": 312, "next": [], "symbols": [{"name": "__sceEENetrt_timer_add", "hash": "3e634c145442819f1ccf5c52941c7eedecefdf7d", "variant": 2162234662, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 10526765}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289855520}, "child": {"skip": 160, "offset": 18)PS2SDB", 8192}, + std::string_view{R"PS2SDB(4, "next": [], "symbols": [{"name": "R_locked_add", "hash": "b479f178a8680880d36d7f8ea1c6a895cc33ac0d", "variant": 3036896432, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289921088}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 12601389}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4233261}, "child": {"skip": 304, "offset": 324, "next": [], "symbols": [{"name": "sceMcGetInfo", "hash": "6a242bff001f9ff19fdf7cc8b1b95b9cfc971dbd", "variant": 706341674, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 10524717}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 3695575040, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 184, "offset": 204, "next": [], "symbols": [{"name": "vu0_skin_init", "hash": "31a7df45a563ad845e9f9b76d1aadb9983bd2a4a", "variant": 2947030319, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 4289789984}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 10524717}, "child": {"skip": 1180, "offset": 1200, "next": [], "symbols": [{"name": "prepare_headers", "hash": "99839301543680bce26ac276cc756e1d71e5561b", "variant": 1945770041, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855536}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289789984}, "child": {"skip": 56, "offset": 72, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 76, "next": [{"match": {"value": 268435480}, "child": {"skip": 36, "offset": 116, "next": [{"match": {"value": 604307472}, "child": {"skip": 0, "offset": 120, "next": [{"match": {"value": 604372993}, "child": {"skip": 80, "offset": 204, "next": [], "symbols": [{"name": "sceMcFormat", "hash": "2a5ac689b54152f496f2c96640290d781c22227e", "variant": 3291125912, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 604307473}, "child": {"skip": 0, "offset": 120, "next": [{"match": {"value": 604372993}, "child": {"skip": 80, "offset": 204, "next": [], "symbols": [{"name": "sceMcUnformat", "hash": "3394e76a81723f6121acfd842755e91556fc7c53", "variant": 3291125912, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1007091712, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 76, "next": [{"match": {"value": 268435480}, "child": {"skip": 40, "offset": 120, "next": [{"match": {"value": 604307472}, "child": {"skip": 0, "offset": 124, "next": [{"match": {"value": 604372993}, "child": {"skip": 12, "offset": 140, "next": [{"match": {"value": 4227117}, "child": {"skip": 0, "offset": 144, "next": [{"match": {"value": 369098756}, "child": {"skip": 56, "offset": 204, "next": [], "symbols": [{"name": "sceMcFormat", "hash": "a75057c56a9dff56e1311717abfcb6ce4f959f65", "variant": 4292821554, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 272629765}, "child": {"skip": 0, "offset": 144, "next": [{"match": {"value": 604110864}, "child": {"skip": 56, "offset": 204, "next": [], "symbols": [{"name": "sceMcFormat", "hash": "361a1741fe7ee809f18946b3869b87b5482e21a4", "variant": 3181988780, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604307473}, "child": {"skip": 0, "offset": 124, "next": [{"match": {"value": 604372993}, "child": {"skip": 12, "offset": 140, "next": [{"match": {"value": 4227117}, "child": {"skip": 0, "offset": 144, "next": [{"match": {"value": 369098756}, "child": {"skip": 56, "offset": 204, "next": [], "symbols": [{"name": "sceMcUnformat", "hash": "334bed80862a78a71f400d050a4a3f4cd6ef7576", "variant": 4292821554, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 272629765}, "child": {"skip": 0, "offset": 144, "next": [{"match": {"value": 604110865}, "child": {"skip": 56, "offset": 204, "next": [], "symbols": [{"name": "sceMcUnformat", "hash": "29b0223b888df35cc778adc18aeb706a3a7445fe", "variant": 3181988780, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290183240}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 609681408, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 584, "offset": 600, "next": [], "symbols": [{"name": "malloc_extend_top", "hash": "ecbad5864596879471bec712157b12647fa18d47", "variant": 1244398515, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4289789976}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10520621}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289921064}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 14719021}, "child": {"skip": 552, "offset": 576, "next": [], "symbols": [{"name": "_strtol_r", "hash": "7d92c27418c228c85be7fffb7d41eda465006652", "variant": 1092256834, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 14716973}, "child": {"skip": 512, "offset": 536, "next": [], "symbols": [{"name": "_strtoul_r", "hash": "b99c9b488cad66104e6bb8e59ccd805a61f252df", "variant": 240551774, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289921064}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290183240}, "child": {"skip": 560, "offset": 580, "next": [], "symbols": [{"name": "_strtol_r", "hash": "38e496005be778215d4af05a486c2875866b7230", "variant": 2686862570, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290183240}, "child": {"skip": 516, "offset": 536, "next": [], "symbols": [{"name": "_strtoul_r", "hash": "57e5271f8555fd2a0f90bc765074e380306c6b8e", "variant": 62603307, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8237}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 605028353}, "child": {"skip": 336, "offset": 356, "next": [], "symbols": [{"name": "_sequenceExtension", "hash": "e49b866fab324e6bf7fcd4dc83a180f6560a4110", "variant": 3745084490, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 8402989}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855520}, "child": {"skip": 596, "offset": 616, "next": [], "symbols": [{"name": "free_bytes", "hash": "4804e8d601a0fa87b726967c3481729c42af5f54", "variant": 1123014301, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 604176390}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 528, "offset": 548, "next": [], "symbols": [{"name": "sceEENetInit", "hash": "60895137a8436a7afcd6c902d3e8df9fb5294612", "variant": 55379622, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289986624}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289921072}, "child": {"skip": 144, "offset": 164, "next": [], "symbols": [{"name": "sceEENetCtlGetState", "hash": "8be5f7b6810c3231e25239737afaade1437929a5", "variant": 38635678, "library": "eenetctl"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289921072}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8427565}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2353201152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 192, "offset": 216, "next": [], "symbols": [{"name": "sceHiGsCtxSwapAll", "hash": "ec6b31427a38693ddfbc0efd7ef8e38131378f7c", "variant": 1976119770, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 12621869}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289789968}, "child": {"skip": 180, "offset": 204, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceMcCoreSetAlaram"}}, "child": {"skip": )PS2SDB", 8192}, + std::string_view{R"PS2SDB(0, "offset": 208, "next": [{"match": {"value": 0}, "child": {"skip": 36, "offset": 248, "next": [], "symbols": [{"name": "sceMc2RenameAsync", "hash": "d817cef3b5c2b65fc97669addd0b020b289cb703", "variant": 3629286138, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceMcCoreExecSubs"}}, "child": {"skip": 0, "offset": 208, "next": [{"match": {"value": 0}, "child": {"skip": 36, "offset": 248, "next": [], "symbols": [{"name": "sceMc2RenameAsync", "hash": "d817cef3b5c2b65fc97669addd0b020b289cb703", "variant": 2508830809, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 10524717}, "child": {"skip": 436, "offset": 456, "next": [], "symbols": [{"name": "anime_init", "hash": "38d90795907e7d45701e53e2909583ccfc6e73c2", "variant": 3626426510, "library": "libhip"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789984}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8423469}, "child": {"skip": 40, "offset": 56, "next": [{"match": {"value": 35786795}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 339738627}, "child": {"skip": 156, "offset": 220, "next": [], "symbols": [{"name": "sceUsbKbRead", "hash": "d8486cf25ff5db02104a5b95b66e0e214799a920", "variant": 2774409361, "library": "libusbkb"}]}}], "symbols": []}}, {"match": {"value": 35786794}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 339738627}, "child": {"skip": 156, "offset": 220, "next": [], "symbols": [{"name": "sceUsbKbGetLocation", "hash": "aad71364cc7a6015b19bd79022cabd000dae6644", "variant": 2774409361, "library": "libusbkb"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289986624}, "child": {"skip": 204, "offset": 220, "next": [], "symbols": [{"name": "__sceEENetbpfdetach", "hash": "be765c65d4842c08dd76054f798a43109ba5dfc9", "variant": 1564837395, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289855552}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289790000}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 10522669}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289724448}, "child": {"skip": 120, "offset": 144, "next": [], "symbols": [{"name": "SSLCERT_get_serialNumber_info", "hash": "e6fca54043fc9f1a1f55470eb5c9bba566cd275d", "variant": 2839044485, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 14716973}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289724448}, "child": {"skip": 24, "offset": 48, "next": [{"match": {"value": 604307571}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 604373006}, "child": {"skip": 96, "offset": 152, "next": [], "symbols": [{"name": "SSLCERT_get_notAfter", "hash": "eac369140682a55819c1eec93791a90c02e8caa3", "variant": 2839044485, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604307572}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 604373006}, "child": {"skip": 96, "offset": 152, "next": [], "symbols": [{"name": "SSLCERT_get_notBefore", "hash": "f52cf4cdc6179daa27f0e80ba8e7fef636d7cb4f", "variant": 2839044485, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2407661568, "relocation": {"type": "MIPS_GPREL16", "symbol": ".sdata"}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289921088}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289789984}, "child": {"skip": 108, "offset": 124, "next": [{"match": {"value": 604307471}, "child": {"skip": 0, "offset": 128, "next": [{"match": {"value": 2946498560}, "child": {"skip": 72, "offset": 204, "next": [], "symbols": [{"name": "sceMcDelete", "hash": "bc1c90b4bcab7fb6363554918b1d43258533b38f", "variant": 1548901837, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 604307577}, "child": {"skip": 0, "offset": 128, "next": [{"match": {"value": 2946498560}, "child": {"skip": 72, "offset": 204, "next": [], "symbols": [{"name": "sceMcDelete", "hash": "de343ef4e0aea6fa7ace41c5e00cdd483d517354", "variant": 1548901837, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855536}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707536}, "child": {"skip": 148, "offset": 164, "next": [{"match": {"value": 604307470}, "child": {"skip": 0, "offset": 168, "next": [{"match": {"value": 604372993}, "child": {"skip": 68, "offset": 240, "next": [], "symbols": [{"name": "sceMcRename", "hash": "18df3e6fb15fcd7b12f45f0f2ad249aee0398532", "variant": 3867297405, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 604307580}, "child": {"skip": 0, "offset": 168, "next": [{"match": {"value": 604372993}, "child": {"skip": 68, "offset": 240, "next": [], "symbols": [{"name": "sceMcRename", "hash": "899c5a0fbe837028c9a7adb73fa790ca6e14d5e6", "variant": 3867297405, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1007616000, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789976}, "child": {"skip": 564, "offset": 576, "next": [], "symbols": [{"name": "_strtol_r", "hash": "15ecaa9f1b5b757e2a124498919f4d74d598f8ee", "variant": 1659687416, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 2944401408, "relocation": {"type": "MIPS_GPREL16", "symbol": "_isError"}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289986624}, "child": {"skip": 260, "offset": 272, "next": [], "symbols": [{"name": "_sliceA0", "hash": "629d39543355bf59452fe3fd7cd1fa5db4cc4b5b", "variant": 680812049, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2944401408, "relocation": {"type": "MIPS_GPREL16", "symbol": "_isSecondField"}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289986624}, "child": {"skip": 328, "offset": 340, "next": [], "symbols": [{"name": "_decodeOrSkipField", "hash": "da28cb4666dd384ccf0f698f63b0a8ad6223ceb6", "variant": 2814331257, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 1007288320, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724432}, "child": {"skip": 144, "offset": 156, "next": [{"match": {"value": 883231000}, "child": {"skip": 0, "offset": 160, "next": [{"match": {"value": 12333}, "child": {"skip": 164, "offset": 328, "next": [], "symbols": [{"name": "sceDbcSRData", "hash": "90418b89479b552f5bd0d13f6d61b97c8d52280c", "variant": 3664176990, "library": "libdbc"}]}}], "symbols": []}}, {"match": {"value": 883233560}, "child": {"skip": 0, "offset": 160, "next": [{"match": {"value": 12333}, "child": {"skip": 0, "offset": 164, "next": [{"match": {"value": 604504704}, "child": {"skip": 0, "offset": 168, "next": [{"match": {"value": 14698541}, "child": {"skip": 156, "offset": 328, "next": [], "symbols": [{"name": "sceDbcSRData", "hash": "036ce5483322094e58b7cd231c0fd1dfef7f8fdd", "variant": 3664176990, "library": "libdbc"}]}}], "symbols": []}}, {"match": {"value": 604504208}, "child": {"skip": 0, "offset": 168, "next": [{"match": {"value": 14698541}, "child": {"skip": 156, "offset": 328, "next": [], "symbols": [{"name": "sceDbcSRData", "hash": "7253309c6ea0543e888510ac21e619b70da173ce", "variant": 3664176990, "library": "libdbc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": "sce_callback_function"}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289790016}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "sce_callback_function"}}, "child": {"skip": 148, "offset": 168, "next": [], "symbols": [{"name": "sce_create_callback_thread", "hash": "6a4170c8f46a1e8167b9bb64c46b04f3da497900", "variant": 4188415394, "library": "netcnfif"}]}}], "symbols": []}}, {"match": {"value": 1006829643}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "sce_callback_function"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 610481776}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 8423469}, "child": {"skip": 140, "offset": 168, "next": [], "symbols": [{"name": "sce_create_callback_thread", "hash": "eeeda3917c958c086dd1740c37520c39f8aa0360", "variant": 2648696576, "library": "netcnfif"}]}}], "symbols": []}}, {"match": {"value": 610519792}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 8423469}, "child": {"skip": 140, "offset": 168, "next": [], "symbols": [{"name": "sce_create_callback_thread", "hash": "bf4dbf934cf5d948518d5f7b77df6d5e131bc978", "variant": 2648696576, "library": "netcnfif"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006829646}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "sce_callback_function"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 610530416}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 8423469}, "child": {"skip": 140, "offset": 168, "next": [], "symbols": [{"name": "sce_create_callback_thread", "hash": "6e824991a48265885e0e4c125baf0d648ca7bcbb", "variant": 2648696576, "library": "netcnfif"}]}}], "symbols": []}}, {"match": {"value": 610468848}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 8423469}, "child": {"skip": 140, "offset": 168, "next": [], "symbols": [{"name": "sce_create_callback_thread", "hash": "0e11e1e26f26c7976e814d3643ad27917b6ad717", "variant": 2648696576, "library": "netcnfif"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006829650}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "sce_callback_function"}}, "child": {"skip": 148, "offset": 168, "next": [], "symbols": [{"name": "sce_create_callback_thread", "hash": "e638680670d7f4d036707d169702bed2c623c3bb", "variant": 2648696576, "library": "netcnfif"}]}}], "symbols": []}}, {"match": {"value": 1006829642}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": "sce_callback_function"}}, "child": {"skip": 148, "offset": 168, "next": [], "symbols": [{"name": "sce_create_callback_thread", "hash": "fb3fa62867986f9e8d9e22e0db9f13154d5f741b", "variant": 2648696576, "library": "netcnfif"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1007026176, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289986624}, "child": {"skip": 892, "offset": 904, "next": [], "symbols": [{"name": "__sceEENetarp_rtrequest", "hash": "16ed4a6c52811d76e0deaa15adcc1fc886f3a948", "variant": 3136685375, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289986624}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1007943680, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289921072}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707536}, "child": {"skip": 156, "offset": 176, "next": [], "symbols": [{"name": "exit", "hash": "4c1e7b9e10707faed4d4ca2750ed9fdc4294b43c", "variant": 1132807546, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2390884352, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 288, "offset": 308, "next": [], "symbols": [{"name": "_peepBit", "hash": "0fe998aca3ddf42fb477f3d61e5fc087933b032a", "variant": 596921365, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 4290707536}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2390884352, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 328, "offset": 348, "next": [], "symbols": [{"name": "sceHiGsServiceInit", "hash": "ad5414fb3235120479e9461e1f82a1a8111e6ca3", "variant": 678227086, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789968}, "child": {"skip": 240, "offset": 260, "next": [], "symbols": [{"name": "sceEENetCtlRegIfName", "hash": "c003c48a8680dcb3a162be4dc9008759b8d91ea1", "variant": 2169608070, "library": "eenetctl"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289921072}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1007943680, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855520}, "child": {"skip": 152, "offset": 172, "next": [], "symbols": [{"name": "topThread", "hash": "e16d2c77838a3d80289cc9e9cc4af637cac24f5f", "variant": 2095879429, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 12623917}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 10524717}, "child": {"skip": 88, "offset": 112, "next": [{"match": {"value": 6299693}, "child": {"skip": 0, "offset": 116, "next": [{"match": {"value": 0}, "child": {"skip": 60, "offset": 180, "next": [{"match": {"value": 2920546336}, "child": {"skip": 0, "offset": 184, "next": [{"match": {"value": 4395044}, "child": {"skip": 4, "offset": 192, "next": [{"match": {"value": 876740865}, "child": {"skip": 0, "offset": 196, "next": [{"match": {"value": 3753115712}, "child": {"skip": 28, "offset": 228, "next": [], "symbols": [{"name": "sceDmaSendN", "hash": "da5a6568b7b748320e22373ae236bc0d8854f7bc", "variant": 2652797131, "library": "libdma"}]}}], "symbols": []}}, {"match": {"value": 876740873}, "child": {"skip": 0, "offset": 196, "next": [{"match": {"value": 3753115712}, "child": {"skip": 28, "offset": 228, "next": [], "symbols": [{"name": "sceDmaSendI", "hash": "f3d03326ef027866f729efc89178fe934f6a39cd", "variant": 2652797131, "library": "libdma"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604307454}, "child": {"skip": 0, "offset": 184, "next": [{"match": {"value": 2920546336}, "child": {"skip": 8, "offset": 196, "next": [{"match": {"value": 4460580}, "child": {"skip": 0, "offset": 200, "next": [{"match": {"value": 3753115712}, "child": {"skip": 32, "offset": 236, "next": [], "symbols": [{"name": "sceDmaRecvN", "hash": "a490143d1bbc5d4898a582c2d4b325df876bc1b8", "variant": 2652797131, "library": "libdma"}]}}], "symbols": []}}, {"match": {"value": 876740616}, "child": {"skip": 0, "offset": 200, "next": [{"match": {"value": 3753115712}, "child": {"skip": 36, "offset": 240, "next": [], "symbols": [{"name": "sceDmaRecvI", "hash": "47691564c9184d5c6f831b93315a300947919712", "variant": 2652797131, "library": "libdma"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 0}, "child": {"skip": 0, "offset": 116, "next": [{"match": {"value": 0}, "child": {"skip": 60, "offset": 180, "next": [{"match": {"value": 2920546336}, "child": {"skip": 0, "offset": 184, "next": [{"match": {"value": 4395044}, "child": {"skip": 4, "offset": 192, "next": [{"match": {"value": 876740865}, "child": {"skip": 0, "offset": 196, "next": [{"match": {"value": 3753115712}, "child": {"skip": 28, "offset": 228, "next": [], "symbols": [{"name": "sceDmaSendN", "hash": "737bc66d96c64a3ac06d1e51fdc210b4bc74bfe6", "variant": 2652797131, "library": "libdma"}]}}], "symbols": []}}, {"match": {"value": 876740873}, "child": {"skip": 0, "offset": 196, "next": [{"match": {"value": 3753115712}, "child": {"skip)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": 28, "offset": 228, "next": [], "symbols": [{"name": "sceDmaSendI", "hash": "bc70ec1cf357c3c02eb1ae9cc8cdfbb865ba6d6c", "variant": 2652797131, "library": "libdma"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604307454}, "child": {"skip": 0, "offset": 184, "next": [{"match": {"value": 2920546336}, "child": {"skip": 8, "offset": 196, "next": [{"match": {"value": 4460580}, "child": {"skip": 0, "offset": 200, "next": [{"match": {"value": 3753115712}, "child": {"skip": 32, "offset": 236, "next": [], "symbols": [{"name": "sceDmaRecvN", "hash": "9f3c0144c1cae617d5bcc4f893668cbf5192ea26", "variant": 2652797131, "library": "libdma"}]}}], "symbols": []}}, {"match": {"value": 876740616}, "child": {"skip": 0, "offset": 200, "next": [{"match": {"value": 3753115712}, "child": {"skip": 36, "offset": 240, "next": [], "symbols": [{"name": "sceDmaRecvI", "hash": "6d8c23851d7edb85120149b3a3525ac0bb93bf8d", "variant": 2652797131, "library": "libdma"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 10524717}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289724416}, "child": {"skip": 216, "offset": 244, "next": [], "symbols": [{"name": "BIO_ctrl", "hash": "95f80dffad2023f099f48bc19eb3edf7155b3ab6", "variant": 1237594220, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 8427565}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289789968}, "child": {"skip": 312, "offset": 340, "next": [], "symbols": [{"name": "X509_STORE_load_locations", "hash": "c435ff559d81f36fc73876796ea3bb21d8a477c7", "variant": 932416227, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8429613}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 10524717}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 12619821}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4289724416}, "child": {"skip": 16, "offset": 52, "next": [{"match": {"value": 1007157248, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 621281280, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 204, "offset": 264, "next": [], "symbols": [{"name": "set_euler_quat", "hash": "e8deab05e97bd694f13dec524ce73cd3a340b69b", "variant": 291346177, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 3663986688}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 3664052240}, "child": {"skip": 136, "offset": 196, "next": [], "symbols": [{"name": "sceVu0RotTransPersN", "hash": "3338225963d2de468279321406e7bd0b14aa959f", "variant": 4120266849, "library": "libvu0"}]}}], "symbols": []}}, {"match": {"value": 3660054528}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 3661889536}, "child": {"skip": 176, "offset": 236, "next": [], "symbols": [{"name": "sceVu0ClipAll", "hash": "eb218a5155e4f743c2a86b5e6913aaff778cd65e", "variant": 2772622937, "library": "libvu0"}]}}], "symbols": []}}, {"match": {"value": 3657498624}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 3659792384}, "child": {"skip": 192, "offset": 252, "next": [], "symbols": [{"name": "set_local_world", "hash": "018cef2ae37ac0a34126a5c14d49728e0235419f", "variant": 2977430487, "library": "libhip"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 16814125}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4289724416}, "child": {"skip": 372, "offset": 408, "next": [], "symbols": [{"name": "Vu0Weight", "hash": "d452511422f8fbdf8536c4d7af4d00f4c4c077a5", "variant": 2782050406, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 645005332}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4289724416}, "child": {"skip": 352, "offset": 388, "next": [], "symbols": [{"name": "sppp_open_event", "hash": "f7504d52544c5748d3af041e8bf17a4a1b001300", "variant": 2624347590, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707536}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 12619821}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4289789968}, "child": {"skip": 220, "offset": 256, "next": [], "symbols": [{"name": "__sceEENetuiomove", "hash": "eb297f46d7e5642ca37d6d0df14e14cbbe50c064", "variant": 3201794952, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4289724416}, "child": {"skip": 116, "offset": 152, "next": [], "symbols": [{"name": "lh_doall_arg", "hash": "7c2cc9db39d01beed02848019ee6028152d8077d", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 12621869}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 10522669}, "child": {"skip": 136, "offset": 168, "next": [], "symbols": [{"name": "__sceEENetbpfattach", "hash": "cc05932ae05cf565d6e97ee499a2a65ab41f3bd8", "variant": 1509061266, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 10522669}, "child": {"skip": 168, "offset": 200, "next": [], "symbols": [{"name": "sceEENetGethostbynameTO", "hash": "2d6f14fc5d2657561332fc29b31e4fd9309f415f", "variant": 597653036, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 14719021}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289789968}, "child": {"skip": 276, "offset": 304, "next": [], "symbols": [{"name": "err_get_error_values", "hash": "b43691d9f306e4bebddcc5b11779eadd61d75f42", "variant": 176327260, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10526765}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 38957}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290707536}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 613548504}, "child": {"skip": 116, "offset": 148, "next": [], "symbols": [{"name": "_fwalk", "hash": "d3bcd3c39ab8467804373ba3956622639a4d64b5", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 8425517}, "child": {"skip": 248, "offset": 280, "next": [], "symbols": [{"name": "X509v3_add_ext", "hash": "6d67291deb9e2b1c101bfef068f8c5a75e67d566", "variant": 2334578087, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 12621869}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 14716973}, "child": {"skip": 140, "offset": 172, "next": [], "symbols": [{"name": "MakeShare", "hash": "0ac0e1c8e9b4940248f97f996e3f2f1ef330e7e2", "variant": 1081432146, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 4290707536}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 8425517}, "child": {"skip": 272, "offset": 304, "next": [], "symbols": [{"name": "sceEENetMPrepend", "hash": "c3bce223a85d865e654186e6cd7131e0f90f8aab", "variant": 4265660222, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8427565}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 647102484}, "child": {"skip": 460, "offset": 492, "next": [], "symbols": [{"name": "sppp_close_event", "hash": "40770ac018a172f58d22445561cb2c5dde90e494", "variant": 126440445, "library": "libeenet"}]}}], "symbols": []}},)PS2SDB", 8192}, + std::string_view{R"PS2SDB( {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 14716973}, "child": {"skip": 152, "offset": 184, "next": [], "symbols": [{"name": "ASN1_d2i_fp", "hash": "a0ca9faf46ff03a7b7264439e1682db4ff4cc14b", "variant": 2301506358, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 432256}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289789968}, "child": {"skip": 112, "offset": 140, "next": [], "symbols": [{"name": "StrcpyD", "hash": "d6fa8769911e8f242cc0338bd36045b0b249624a", "variant": 2441515744, "library": "libnet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8427565}, "child": {"skip": 248, "offset": 272, "next": [], "symbols": [{"name": "ShapeMakeShapePacket", "hash": "f6f59d6b33355d315017ebe822302fdf02755149", "variant": 907605073, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 4290707536}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8427565}, "child": {"skip": 296, "offset": 320, "next": [], "symbols": [{"name": "X509_NAME_cmp", "hash": "9e260c19ba4d1b7a00ba251b427c808f1ee56080", "variant": 2159397342, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 605290497}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855520}, "child": {"skip": 20, "offset": 40, "next": [{"match": {"value": 2923431952}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 2386690352}, "child": {"skip": 80, "offset": 128, "next": [{"match": {"value": 604176386}, "child": {"skip": 0, "offset": 132, "next": [{"match": {"value": 1006899200}, "child": {"skip": 128, "offset": 264, "next": [], "symbols": [{"name": "_pictureData0", "hash": "8e2c3cfadec9c1a7e4327e3053e9cdbc645ea31b", "variant": 1269835577, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 339738632}, "child": {"skip": 0, "offset": 132, "next": [{"match": {"value": 1006833664}, "child": {"skip": 152, "offset": 288, "next": [], "symbols": [{"name": "_pictureData0", "hash": "3f661a5b2d256599b46865aad2ef62f3cdb2eb4f", "variant": 3626234775, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2923431976}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 2386690376}, "child": {"skip": 232, "offset": 280, "next": [], "symbols": [{"name": "_pictureData0", "hash": "a77c47cb4526615f97d7f7b18789203c780a7137", "variant": 528630322, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 16818221}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855520}, "child": {"skip": 8, "offset": 28, "next": [{"match": {"value": 8425517}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4289724416}, "child": {"skip": 144, "offset": 180, "next": [], "symbols": [{"name": "sceHiGsAlphaRegs", "hash": "d22daa8c0c1f8fd2b0171871c24c7f0357fe1b14", "variant": 733225796, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 12619821}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4289724416}, "child": {"skip": 220, "offset": 256, "next": [], "symbols": [{"name": "ssl_rsa_public_encrypt", "hash": "4616f55d8e0ed0edddac7f9ce43669dc8acac9f4", "variant": 2208845174, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 14721069}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855520}, "child": {"skip": 8, "offset": 28, "next": [{"match": {"value": 10522669}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 4290707536}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceNetcnfifInit"}}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 8423469}, "child": {"skip": 36, "offset": 84, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 88, "next": [{"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 60, "offset": 152, "next": [], "symbols": [{"name": "sceNetcnfifLoadEntry", "hash": "1d805bad1de3c4d91cab1f8d81a4ebab9427d25e", "variant": 343956999, "library": "netcnfif"}]}}], "symbols": []}}, {"match": {"value": 41953325}, "child": {"skip": 0, "offset": 88, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "strcpy"}}, "child": {"skip": 68, "offset": 160, "next": [], "symbols": [{"name": "sceNetcnfifEditEntry", "hash": "24379c4daab3dfdcdad27983be4065cff04dfccf", "variant": 2802654062, "library": "netcnfif"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__sceEENetthread_enter"}}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 8423469}, "child": {"skip": 128, "offset": 176, "next": [], "symbols": [{"name": "sceEENetInetNtop", "hash": "639ca3e4a035f23a8c07fd6393359affa9094a6c", "variant": 385379776, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707536}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 8423469}, "child": {"skip": 216, "offset": 256, "next": [], "symbols": [{"name": "X509_EXTENSION_create_by_OBJ", "hash": "65dd7e3baf48bd92101dd3fef4395ae23beb38f5", "variant": 664968886, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8425517}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4290707536}, "child": {"skip": 48, "offset": 84, "next": [{"match": {"value": 604307611}, "child": {"skip": 0, "offset": 88, "next": [{"match": {"value": 604375046}, "child": {"skip": 232, "offset": 324, "next": [], "symbols": [{"name": "d2i_PrivateKey", "hash": "97c85a31fb9213a9c3ef00ec334a01843422364e", "variant": 752821479, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604307612}, "child": {"skip": 0, "offset": 88, "next": [{"match": {"value": 604375046}, "child": {"skip": 232, "offset": 324, "next": [], "symbols": [{"name": "d2i_PublicKey", "hash": "8f73c78306ed898ff710a48c9837ae097a18b695", "variant": 2915260644, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 41005}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8427565}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289789968}, "child": {"skip": 140, "offset": 168, "next": [], "symbols": [{"name": "__sceEENetsysctl_rdstring", "hash": "af2fb626cc410d1c7fe15403554fda4bdce45554", "variant": 55692823, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 38957}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289789968}, "child": {"skip": 288, "offset": 316, "next": [], "symbols": [{"name": "__sceEENettcp_mss_from_peer", "hash": "8aeb4ca9095befd558317beac167c9009e2c358f", "variant": 1092189230, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 10524717}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289789968}, "child": {"skip": 348, "offset": 372, "next": [], "symbols": [{"name": "sppp_down_event", "hash": "230bd590c2db7049f0707ef51ec1cca2516347f0", "variant": 3850955872, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 12621869}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4290707536}, "child": {"skip": 416, "offset": 440, "next": [], "symbols": [{"name": "BN_usub", "hash": "3232587beca00353ee27c63a0c5e109e4122045d", "variant": 2203150588, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 18915373}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": 4289855520}, "child": {"skip": 248, "offset": 268, "next": [], "symbols": [{"name": "BN_ME_CTX_mod_exp", "hash": "1082be08c9ad0e493f8b7b4f9cbd73ee51f105f2", "variant": 3498819223, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1007943680, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8423469}, "child": {"skip": 28, "offset": 48, "next": [{"match": {"value": 343932956}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 4290707536}, "child": {"skip": 36, "offset": 92, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 112, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "bb4b0abf30dbc5a8822dbf1403c3c1b5ab6aba73", "variant": 4077159348, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 1006764063}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 4, "offset": 104, "next": [{"match": {"value": 608306800}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "67b2a3372bbb1495233ee1cca4f07b5d5e190c35", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608320752}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "ce1bbdd0ce7a8db5e57c353667e008f888277e13", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764095}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 4, "offset": 104, "next": [{"match": {"value": 608361968}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "85d4cbd62ff29fcdf606b658a943df48e356ca0e", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608320240}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "5798a97679689c9b35f196912d0b9bb3fb8d70dd", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608313584}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "ea22c7209ba6adca623611e7a5c4f13e9aa8ec80", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608361712}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "20c9475c490efb68dcbb9e7d6d2d738004c8a88a", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764072}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 4, "offset": 104, "next": [{"match": {"value": 608367600}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "74b294dfc57afd8dc72b4cba4845f188e24c12e3", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608322032}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "98c2266995cc5f018c68ed951aa434b08ca5c3ac", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608349552}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "bfc8f56cfeb16d1c2f303efce8bb5a60a294a951", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608312176}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "494aae6c3cf0dea5367b3327ad06f661bf8f0805", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608352752}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "4031b72aed298eccc2b78b289b4805843b4e0fb2", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608360816}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "3e5b1b6804cc4dc9d4ca886b9673995e7176a37c", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608362992}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "80eee050f4792ee668f964497083b69ca3863b25", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608346992}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "27c126ddd638cea9b59d658b61d6d6559798e206", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764053}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 4, "offset": 104, "next": [{"match": {"value": 608343024}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "cb51212c7af8a01127989c1c3e241ef3c2ad9dcd", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608305904}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "e1e2c2827b3e8604def3d3293ec00ed9cef34a80", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbo)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ls": []}}, {"match": {"value": 1006764067}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 4, "offset": 104, "next": [{"match": {"value": 608356848}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "87e63b69528e9f930930b67deb045c0e691c8bc9", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608313584}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "54bdd261a69dd17d4d103a48e4b703c5ca0c2a58", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608357488}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "b888b5b957e4e94bd42d46f011233b9aa1289382", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608333680}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "cfb267dbc7bca429071142528d1a80ca189537f3", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608356336}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "cee9f7d507f162f38f5dba47d47d0eacbfc7f965", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764069}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 4, "offset": 104, "next": [{"match": {"value": 608326512}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "847fab189c39d73cfd7e310de9ebeb969b52ad0b", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608317552}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "92b7d6564306151b45d5fccfff177075957688bf", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608337008}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "02974aff4a721bf912028382226beaf7f42ba732", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608337392}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "068b35b7e6b5b20740f59fd0cddb04216458efb6", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608318704}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "9a31e77ac2700f8d367777e6ab2f9dd807a80775", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608343536}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "334c100e6323ac148897d593d25c614a16e5f49c", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764054}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 4, "offset": 104, "next": [{"match": {"value": 608335216}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "8fcac7ab8367a6409b2a9307f3c6a3b8db624b14", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608323440}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "94900761243fe80465ce8cea84e30f0ac100cc9e", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608351344}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "fbf907641451cde628273c9daded781131fcd3cc", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608314480}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "5d2dd38dcb3ee81aa8b2e13e2765a087b47eec7f", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608349552}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "446a01e7fd4390aa702dc39afe4c42a5b6c5bddc", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608324208}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "177cefa64a3df78a36047be4506c8ac30fb57918", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764055}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 4, "offset": 104, "next": [{"match": {"value": 608339696}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "270ee35321ef379a7258b3f9cc1eeb00ce74000a", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608345200}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "c4bb13e41bbc1eda282a1ed84fe9d064b079f135", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}],)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764097}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 4, "offset": 104, "next": [{"match": {"value": 608348400}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "b474bd3ca6aed1a573860004a3fbfa20ac06fad7", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608318448}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "02b9db5a336002973d3deb3e5d92acc9a77b6728", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608362352}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "ebf6956e3e494563140fb9a2150160bcac6fc27b", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764071}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 4, "offset": 104, "next": [{"match": {"value": 608344560}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "aec3df045dabcdc16afe8090d6a6e3fb72bf9190", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608319088}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "5935089da98dd7ad3f31c2a55b917345f1153162", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608341104}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "b280a45d5fe130c0b6e9ec34d45f0755998768f3", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608368368}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "ea00be8ca4f71b2f1b39a8d0b2e017f90c631c92", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608314096}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "c73afcdb32d4c45620cb2427d62f992853230710", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764116}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 112, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "92d36948d01101c769ff344c1fc5a69af4a54ba6", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 1006764118}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 4, "offset": 104, "next": [{"match": {"value": 608359536}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "bda6837764f3864d01c0038b971a10f48bc8a5b9", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608342768}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "f67a27afbea200b6685e81d7e28d23a019f1610e", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608361712}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "3252b7caeba6e0d23e58c6622e1ba2f47edef79f", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764087}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 4, "offset": 104, "next": [{"match": {"value": 608345328}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "bfe5e1a14f1e8671b31f4183b7ae95354197873c", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608338672}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "e088bd1b2de8c970e59aaa4a6858c388c7d0de8b", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608321008}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "959a02346d088755d7356a3926f0eae102396c4b", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608324720}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "c667c9519435db98c469973b3fdd2c22fcce0890", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608326640}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "4db1bd7ed4bf2d08be77b8a4029b07ae74607bd8", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764085}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 4, "offset": 104, "next": [{"match": {"value": 608357744}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "bcbde7b232d7547e1ab31b495af12c4970a279a9", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608355312}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 61)PS2SDB", 8192}, + std::string_view{R"PS2SDB(4793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "620d059d0cc7f7bade2923b753f166219fb36b68", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764077}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 4, "offset": 104, "next": [{"match": {"value": 608356848}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "aa557672661bab2d84f14419e8411ed087358542", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608370544}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "35ceec5526eabc09e3f1660bd46f0da336b792c9", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608315888}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "c8b0701133addc4787447bbd893b0d1965edddf6", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608346224}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "8c0501702fbf1d3c807d8068239b9a6513ba5f8a", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764061}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 4, "offset": 104, "next": [{"match": {"value": 608349040}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "0b81379bae79ac82fb0f166e096403f1d43fc794", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608362864}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "9e7e025b9e22c2cd6ee1f3290aaa030fe8b19ae1", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608307184}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "9bff11b6aec776478f15e2b336bbabde112089c0", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764076}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 4, "offset": 104, "next": [{"match": {"value": 608310128}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "0eb6440c369b078b69d7abacbe4055e27c095e5f", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608368880}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "02f08b4489fa0b2d69919a46edb2bc095d8b37f0", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608363376}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "3a7c8b97820622e3b309cb6684ae689ec5d717d3", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608363760}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "428ffb1d52388705ac032e07fee11a8be37ae6b3", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764096}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 4, "offset": 104, "next": [{"match": {"value": 608352240}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "251c0801fd0e1c7dd5a164f701a8e387dde84978", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608355952}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "58e94fec90f8635d6cb161a21f4b80c6995a00f8", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608327664}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "ebeebeb025ed1da4855c647a851f21ec843cf8f4", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608338928}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "bee4914a90a9b4e83b03ed37a1510ff841bc6605", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608348400}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "bf1c9a70f1bc0fdd8a37f8c2c8a23bc8866c4b9a", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764065}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 4, "offset": 104, "next": [{"match": {"value": 608354672}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "2e8a6ffd041532b19eea06d089e6e76957363cc4", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608364144}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "off)PS2SDB", 8192}, + std::string_view{R"PS2SDB(set": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "0ad2101c1979792f051529291e1930104f2a3438", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608307312}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "14df84df0bf4362341438e17ac2bec405e380bf5", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608353008}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "bd10075d46a7e0c0b936ca52f9b966a3daf19b70", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764079}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 4, "offset": 104, "next": [{"match": {"value": 608306672}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "05400ba003bc81c2e6a3de98987cb86d30ab892c", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608332528}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "bbdd65d69816785a5ade76a6776fb972a5d1283c", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608354160}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "797bb623be06585abc6d24280564c357e91cd561", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608306416}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "df7b76e819826395cad0148ddcfe182aa8900a3a", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764093}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 4, "offset": 104, "next": [{"match": {"value": 608322544}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "db35d626bec1d06cd0f460187b4d72439fe35b2b", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608313200}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "fe49b231eb8fd3622db12178d8041a14717921db", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608362736}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "84bc8e6040ba1f3d272f46d684bde49c5a21b181", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608349168}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "20da781f1b5dab57d6f279ccd1ddacaea8e24c14", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608327792}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "bb9b89907f54ecb26e4c27a6dee59dd1fb6a68d6", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608350064}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "5fd2fbb4f614819f1f1b613419d908c1778da131", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764073}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 4, "offset": 104, "next": [{"match": {"value": 608310128}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "58dd6475fc7300aa9e244e90dc982ecfe8995e81", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608357744}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "7f5c590810d1b0878f8d05592865103568083cf2", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608357104}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "0619dab2d49e493d783436cdca14309cacf7eea4", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608355440}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "682dced468e5cf8c97da5d01d2c4cd705ee7ba21", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608353520}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "37a616dc1662971d6ced20d68e31f5366b08fd8b", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608311536}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "6c2337ce08efa4c7c5a015f0d1523d51b5db2d97", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608362992}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "5a515ef8edbd588021498298a1690ec32ae3c0ae", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608361968}, "child": {"skip":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "7583b0e2534c0e392444911db5acdebd8db519b2", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764066}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 4, "offset": 104, "next": [{"match": {"value": 608321264}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "77898c4f7d3d8c910a9398c6f53214c67c0c0e13", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608329584}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "9a880664532e85d930b6a9ce38c0bc1740047460", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608344688}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "f85f8031478af881efb60890b0cb1b6d9d542a7e", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764068}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 4, "offset": 104, "next": [{"match": {"value": 608326384}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "1572617f3c6e619eb6bf3e3e4eecaf05eeebdaff", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608334832}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "3c8373c0b91aba3a72f33fde06bf2f3eb66ce5d4", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608313968}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "d9d0252dda527e070a94d0bf9876ec39fc15888e", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764182}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 112, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "4db392ac0053507cc2e83992e1d2aa18f7d88fea", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 1006764436}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 112, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "0f26072f92e62be3295edcaeab2ba70de732a504", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 1006764082}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 4, "offset": 104, "next": [{"match": {"value": 608369264}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "0da4744d9381ea933e97daa7f58783aeaa98de67", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608360688}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "89d387b0def884293e26307a8c74ce010ab77897", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608325872}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "808ab148be84e9165b98c917a38fd9c66321c53f", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764056}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 4, "offset": 104, "next": [{"match": {"value": 608356080}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "6ae2dbaa9e44e7fc604e64c001c6c82e0afc4044", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608306544}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "2ec7914b8fffdb73c26564c481dde82bea70a3a8", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764136}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 112, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "e9830daa14516c82126547a4a39090ee468cd004", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 1006764059}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 4, "offset": 104, "next": [{"match": {"value": 608351472}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "d619383f88b83e9fe473fd6b97004c970a296e09", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608347888}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "c1e97d435333d74bc94480835efa74cab5a525cd", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764120}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 4, "offset": 104, "next": [{"match": {"value": 608321136}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "bd)PS2SDB", 8192}, + std::string_view{R"PS2SDB(94ca36a3578f00c9267210a3abbaea55efeb7b", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608330480}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "a89abaf061d7b199f15d6d7c4ff5838ace501635", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608330608}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "90f603909b64bdd38f82cdd5de4d56dde21f6201", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764092}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 4, "offset": 104, "next": [{"match": {"value": 608349296}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "82f3476b7ad101e82c660ae45aeb039751cff0ca", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608368496}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "d69f9a3199528074109f9bbf90c91f556f476b7d", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608363248}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "76a44114fc700639ba1cf293761dd3676746e5b0", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608330352}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "51d788e24c58b7406109d6a3dbfd7da926ec84a5", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608323568}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "391e0d1769205418e211298f8bc00b164f6ce41c", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608332272}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "0eecf7f8d19266b9ff308bd668f4f2517d1e33dd", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764107}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 4, "offset": 104, "next": [{"match": {"value": 608354416}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "fd58ef5c61d8a787dfbc4c305c3a907d8098cb60", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608332016}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "26c3feed7113c42c4499f14e933befafa395a3e5", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608333552}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "3093ee0e62099df2533f8054df4102533fb07c57", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764090}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 4, "offset": 104, "next": [{"match": {"value": 608310256}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "33aee68a38ae38c215a29c33b483e239d966471c", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608347120}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "b961a1f49e0ff6e09c6215ece8fd1f3436401cdc", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608367984}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "f4a9de0f9a8dbb6ba398829a8c3eaad30dc8d7d1", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608322416}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "2e2d9f2c45dfc1d13f0170384d128488218863f7", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764088}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 4, "offset": 104, "next": [{"match": {"value": 608357360}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "a0cfaea9bf928f79f5d078193f3eec6a5937585f", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608333936}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "c00d42840d86d1750d7c526a10c5540d95fbb80d", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608328304}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "3dc642709e210e4602308c570aaec6b7898353bb", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608328560}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sc)PS2SDB", 8192}, + std::string_view{R"PS2SDB(eCdInitEeCB", "hash": "f3615afdcdc663032bf4e2fc9434e0797eb2e992", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764086}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 4, "offset": 104, "next": [{"match": {"value": 608308336}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "b7522164fa6a317885c0a042f19bbbd72e4ce12f", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608336368}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "0162ea1cd3925890f7d7ffde82eed1d031de387d", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608328560}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "e824e51fdff990aa5e88e8d6d019031591fdc5d7", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764112}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 112, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "d4382db54ca0ebb8448d4ce7fdfd7c7c6c088379", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 1006764102}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 4, "offset": 104, "next": [{"match": {"value": 608325744}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "1c2443c8c3e19b4207ad4b324a4c842b90cda398", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608346864}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "a2074e59670b258f3e900d363503a48d823baa62", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608360176}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "bc97d22ba725d62389456d4b3a5e826c9e9c95e6", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764078}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 4, "offset": 104, "next": [{"match": {"value": 608323824}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "4b7f2ffd4e4809d22584c1a486bdd065c8bdea5f", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608364144}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "bb3f05f1d22b55b3764c3388c030c01fe6d58e6f", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608335472}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "60b5697f2e711a387b01c74070c42949d696fdb0", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608320624}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "60ee7ca5bd052bed181d188a8834c273b71c7bdf", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608317168}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "56fd4663b7c59f40d692371d8294261e26419b75", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764094}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 4, "offset": 104, "next": [{"match": {"value": 608310000}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "e83fd8e5314ea519025c0e584420763e3be962fe", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608366448}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "a047bb655edb133612d2c828a2d10eb66c2f12cb", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764127}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 4, "offset": 104, "next": [{"match": {"value": 608339184}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "b43884b81c57f0d1fbd8dbe72053a5d29178146a", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608338288}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "e2649d2a939db7dac42cff64ac7136e140394f65", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764098}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 4, "offset": 104, "next": [{"match": {"value": 608344304}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "2883e0f554a75c3abb15bd169a09c3903e41871c", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608313200}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"va)PS2SDB", 8192}, + std::string_view{R"PS2SDB(lue": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "c86d7627495a81d7f4c58e4045faff44d207ae70", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764100}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 4, "offset": 104, "next": [{"match": {"value": 608335984}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "10388ab2653c997a80e2ab9566edb8f9b78e104a", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608356720}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "89f45819e7dfb2f1c29365e0c42956f7b5aab530", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608352624}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "7372ef16e3552862a152a1c0f1bd62dca1054cd0", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608370672}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "0eea4d2b3b17dabd9fa69e4b7e12b47b433cc3d0", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764064}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 4, "offset": 104, "next": [{"match": {"value": 608319216}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "f45a645c8c37fbb564fb061f7d221d0873db4b17", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608315376}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "1f6d95c1f6cc013a5cf7e5f34d5dabc4a2f3667f", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764081}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 4, "offset": 104, "next": [{"match": {"value": 608322800}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "aded5ba16a935a2d8ce2aae0d25cc3625f5bb1a1", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608323440}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "d1847e63bb841405f98ebef9128a340ae4ec520e", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608348144}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "ccb4ef6eab058550f3b784c61cb98887c9c42632", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608339184}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "c6c38f8d9b83f69a563ada249b7a47253c528538", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764075}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 4, "offset": 104, "next": [{"match": {"value": 608368880}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "58bb19dd8cce7546dd3b8ee43d0821d12dc1d6b6", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608349808}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "0576213d18ad51a36cac7506ab139b73c6822bb7", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608353648}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "0bd23e59cd0892648351b7a23c75b2c6f4ed9864", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608339824}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "f85048c005d04dd1bf4b8fc31d013c60d5b3916f", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608356464}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "9ddfe64891f1a67c24ae9f076ee61beb385897a0", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764142}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 112, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "6f91639b306598099a4f9af4e9f77d412c321724", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 1006764122}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 4, "offset": 104, "next": [{"match": {"value": 608343536}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "ebc53bd6cc8f6d66eb536218ad2cb45d01704b50", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608310256}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": )PS2SDB", 8192}, + std::string_view{R"PS2SDB(100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "b5797228227f650af900cb6d7a1d434596ea0064", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608321264}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "f915fbf0e5b5aefd9864801d6f477c0a2d180b3b", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608322288}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "46a7ae4c2bd86c7d4640c83d20ea46121cafc304", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764070}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 4, "offset": 104, "next": [{"match": {"value": 608327920}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "c426ecc24ef94f832969eb10ef79ce9f33246410", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608309104}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "1e36a758292ea93862577722293ba1b38019dcae", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608364912}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "34dec97ebd9e9f46875c00d5f1fb3116bdc26fcb", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608331888}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "f788677eb28047435682e1b40a545db43c7a588c", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608310384}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "1cd62c3772824b8f26374c98683df1e0a9d3c0b8", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608318832}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "39f42ce42946dc37f0f997f835776671ed82e62b", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764105}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 4, "offset": 104, "next": [{"match": {"value": 608319856}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "81418c9b61b4e9fddf8ef93dd8b4b2c99cb14253", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608366192}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "a26529618be0f287d5db0f4fbac42f24e055b29f", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608347376}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "5598c17dd43df38815618634b45893ae03e43bca", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608342768}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "3817e1b811a06caa19b92f6fcbe708b63d688859", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764084}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 4, "offset": 104, "next": [{"match": {"value": 608323312}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "e6a67d6449772eb12da4020257007722ac8eba91", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608340848}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "e8857728e6e0c35a5ae2f4ab9afbaa1a83d63928", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764108}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 4, "offset": 104, "next": [{"match": {"value": 608348400}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "3e6787a88d20ec1a87609e3ac0dd0ef23538a175", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608348656}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "c291d92405cd0f04e254ccd6033cad73373bd67c", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764161}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 112, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "6e42d3d74808da9a8f0185da7a1ba759d0a506c7", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 1006764434}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 112, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "1b1c23a24d5efa9ba940a5a0d4e1a853a98144ba", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 1006764062}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"ty)PS2SDB", 8192}, + std::string_view{R"PS2SDB(pe": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 4, "offset": 104, "next": [{"match": {"value": 608334320}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "622b61305db4b91c6e1883999e682e53b9354601", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608312304}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "e4669e322961663c69d3373ed0059a7fbaa21d45", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764158}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 112, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "b7e25cec2373f445ae4700b895c9406b3aa8846b", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 1006764160}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 4, "offset": 104, "next": [{"match": {"value": 608314992}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "543315046e97a00ee54f73222b89b5b99e653a6b", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608313200}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "5b49684b98668fc3de087ecf709f8f8910763061", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764117}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 4, "offset": 104, "next": [{"match": {"value": 608334320}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "ef479d089e7db6006a8e17c410d2a8a3ea2a13de", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608335088}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "607e460cca0f9353863baec7b1a893e9190065ef", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764172}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 112, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "18f2a8e9fb2b61287a4d90f094af3227bfba38ab", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 1006764050}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 4, "offset": 104, "next": [{"match": {"value": 608370672}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "407e00f07b3bf6a3bd928fc46e92f30cfd65d0e6", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608308464}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "5de1423dad867eb7d268b9d77ca7e9cd746473f5", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764101}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 112, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "93477cd98af6d026e1abe3f0355a8d416ceecf7c", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 1006764051}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 4, "offset": 104, "next": [{"match": {"value": 608312304}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "5ade5924f98b7d050b819df0fc0607996939581a", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608346992}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "5b49c8d6357dd31866d136c33b942c32529d7ffa", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764089}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 112, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "be1972956916b85d26a5b393aef5ee08ec7fb02b", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 1006764115}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 112, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "286c90cf61c509be366066612ea28920f681cb76", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 1006764057}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 4, "offset": 104, "next": [{"match": {"value": 608316144}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "01827b69203c07fb1816d0678e0e68ca6543ce21", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608316272}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "9a4761a5bf2eea6c183832b1a2e8625d3aecfaf1", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608315632}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "35665973b71b66eca2a6431f99973d2d9ebe790d", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"ma)PS2SDB", 8192}, + std::string_view{R"PS2SDB(tch": {"value": 608315888}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "9183cb57d2ffb8ba9b97577a9be090dc80b63d85", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608346736}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "96601c8ca66f29fd48bae4f160edf723338490f4", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608309488}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "9b3951176afeebcf7547cb76a1f2cb9bd6a46e49", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764091}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 4, "offset": 104, "next": [{"match": {"value": 608346608}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "9ab6ad5474d4f52b90ec683fd0fb75cc8123c8fa", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608316016}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "aecb9bdbdc0b5d91e86d1e503d383a2189d9329b", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764104}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 112, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "9250f8245ec60362454c54835abf409d479112da", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 1006764129}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 112, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "8621db29c882bf0eaf659a9ed9b1ebb4f25e905f", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 1006764198}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 112, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "207a027ef11e3a9267d0863806249c1d1d9edacc", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 1006764110}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 4, "offset": 104, "next": [{"match": {"value": 608309104}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "a8c1e6d251b02b672bc77f28f2e8ca5da584cc7b", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608305392}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "603916d8d9b9f23b0960090039415e68299ec3ec", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764109}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 112, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "1beb5ad9b29e5c73b7ae97d2aa448fea0d2c06f5", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 1006764083}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 4, "offset": 104, "next": [{"match": {"value": 608311024}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "fdabb3f3f5efa97a6dc9076a63c7c223bf9d4aae", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608337520}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "74b298db7cc34fba37c49f2aca2fef701c52b715", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608362352}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "e61430665bfe963eb0e8adf03677e6d78900bc13", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608328560}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "99167b8dac4d1b84550fa4a3c9f017917c678abb", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764060}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 4, "offset": 104, "next": [{"match": {"value": 608314864}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "37c386ac4ec209ecc89164fe1a4fae6e831b273d", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608345968}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "de9f3b23402326c09b6d976803c9106442e184d5", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 608338800}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 614793216, "relocation": {"type": "MIPS_LO16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 100, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "dc518c7d8beb0abf50eafd9d57d16737f468c3d4", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764137}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 112, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "e3085acceee37066a0ff6a077e0701918deb86a2", "vari)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 1006764179}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 112, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "eb4662cf57f113f51b25c614c853eeff4d80c947", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 1006764168}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 112, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "bc5d41468176d9852c6c0fa27acf3a41f8b85559", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 1006764206}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 112, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "d0a2e1ce0e192ceceaa92a347d1b7890fee18083", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 1006764114}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 112, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "7be63ed9ad8986851c67b8b112f718d5d0a6af12", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 1006764103}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 112, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "214938fe98700e660f0d6877a07a815d4ca4b8bb", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 1006764058}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 112, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "b8f91ed35a4b584698862be9fcda6a460fe9c186", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 1006764141}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 112, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "f3ca66fc319c9cfcbb02ec90aa9c9fa04fca182c", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 1006764164}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 112, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "ecfb1ba293d8deee09873bcf4359d8d7c75c1634", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 1006764163}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 112, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "fde2fc14de382c553fd7ae4055bf8952763bdc53", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 1006764074}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 112, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "ec4edb37f75a2730e3f5708d956771238b835c71", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 1006764123}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 112, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "3fa4927b95eabb576e4ff6830b85e41f593b0cc7", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 1006764355}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_Cdvd_cbLoop"}}, "child": {"skip": 112, "offset": 212, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "305c26cf49e8b446b2e7dbedb7af022e8108a3ee", "variant": 1218918497, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 343932954}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 4290707536}, "child": {"skip": 148, "offset": 204, "next": [], "symbols": [{"name": "sceCdInitEeCB", "hash": "bc48593bdbe94fae5ffba8bcf0cc1fceb199e1be", "variant": 3937991061, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 14721069}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724416}, "child": {"skip": 264, "offset": 284, "next": [], "symbols": [{"name": "sceDevConsMessage", "hash": "bfaef79ad426287ca49457b59a8cca6c2297c343", "variant": 2470276449, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 10526765}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707536}, "child": {"skip": 256, "offset": 276, "next": [], "symbols": [{"name": "__sceEENetsyn_cache_lookup", "hash": "2b45d8145d3e13df3727e37062ec8548d5d03fbb", "variant": 1108214430, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 605290497}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707536}, "child": {"skip": 256, "offset": 276, "next": [], "symbols": [{"name": "X509_STORE_add_crl", "hash": "55d8c4c13e41204626eb17fa1c700bcc0bde86e8", "variant": 2120671526, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10526765}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8425517}, "child": {"skip": 132, "offset": 152, "next": [], "symbols": [{"name": "sceHiNewPlugBlk", "hash": "168e8069f9c95a70ba120da9ea2f11354ac915c6", "variant": 1583773818, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 16818221}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789968}, "child": {"skip": 240, "offset": 260, "next": [], "symbols": [{"name": "sceAtokDicInfo", "hash": "3492fb34eaa79d412f29b31d1c678dfc601fa1b3", "variant": 1959152068, "library": "libatok"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10526765}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707536}, "child": {"skip": 444, "offset": 464, "next": [], "symbols": [{"name": "sceHiGsMemAlloc", "hash": "d11d51afadf90c7719460c759298a7b926b4f54c", "variant": 3385683847, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 14721069}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289921072}, "child": {"skip": 208, "offset": 228, "next": [], "symbols": [{"name": "sceInetSendTo", "hash": "38366c70c6b5677a02dd03339586c7d339d235c3", "variant": 153447149, "library": "libnet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707536}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289921072}, "child": {"skip": 272, "offset": 288, "next": [], "symbols": [{"name": "__sceEENetip_slowtimo", "hash": "894de258178bad82d017d60cdeb7ad7b9aaaf922", "variant": 4097149925, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855536}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707536}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8425517}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289921088}, "child": {"skip": 4, "offset": 24, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceVuCheckBusy"}}, "chi)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ld": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4289724432}, "child": {"skip": 296, "offset": 328, "next": [], "symbols": [{"name": "sceDevVu1PutCnd", "hash": "7f0a6c5cb23eb6479138eaf8ab6cf08203a8ec01", "variant": 3662631982, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "scmd_prechk"}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4289724432}, "child": {"skip": 212, "offset": 244, "next": [], "symbols": [{"name": "sceCdReadClock", "hash": "5902422fe7c7e12db0a484a70971baec26780d48", "variant": 3425166141, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 4289724432}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2386690132}, "child": {"skip": 312, "offset": 344, "next": [], "symbols": [{"name": "tls1_setup_key_block", "hash": "b57e569ea3c81354f100238629db7eed9b8979be", "variant": 1949222096, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 14716973}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289921088}, "child": {"skip": 208, "offset": 228, "next": [], "symbols": [{"name": "sceMcChdir", "hash": "c3295f24c6c5569062fe1f66b61ef761396472cb", "variant": 1195518716, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8425517}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707536}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289921088}, "child": {"skip": 8, "offset": 28, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceCd_scmd_prechk"}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4289724432}, "child": {"skip": 8, "offset": 44, "next": [{"match": {"value": 268435499}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 4141}, "child": {"skip": 196, "offset": 248, "next": [], "symbols": [{"name": "sceCdReadClock", "hash": "9e5950d53fca344d9cd9e7d69c5d304700f2278d", "variant": 3830156200, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 268435500}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 4141}, "child": {"skip": 200, "offset": 252, "next": [], "symbols": [{"name": "sceCdReadClock", "hash": "239d40c249a2a4cd7007cd5ad426d64f4530c913", "variant": 2610963532, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "scmd_prechk"}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4289724432}, "child": {"skip": 8, "offset": 44, "next": [{"match": {"value": 268435499}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 4141}, "child": {"skip": 196, "offset": 248, "next": [], "symbols": [{"name": "sceCdReadClock", "hash": "9e5950d53fca344d9cd9e7d69c5d304700f2278d", "variant": 1695815455, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 268435500}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 4141}, "child": {"skip": 200, "offset": 252, "next": [], "symbols": [{"name": "sceCdReadClock", "hash": "239d40c249a2a4cd7007cd5ad426d64f4530c913", "variant": 4283223338, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789984}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707536}, "child": {"skip": 172, "offset": 192, "next": [], "symbols": [{"name": "clrIopBuf", "hash": "efcf5fe9e0b7b7eb262cc917d06011ab73642a60", "variant": 1593591054, "library": "liblout"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789984}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 16814125}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707536}, "child": {"skip": 208, "offset": 228, "next": [], "symbols": [{"name": "sceMcGetDir", "hash": "f7d31144d5b551e853c0d2c7d6c1ae3312266d06", "variant": 325462683, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 8425517}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707536}, "child": {"skip": 524, "offset": 544, "next": [], "symbols": [{"name": "sceHiGsPackedCreate", "hash": "b7a5b9d13658aa399701c83c4dc85282992f74ca", "variant": 1988975174, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 12619821}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724432}, "child": {"skip": 44, "offset": 64, "next": [{"match": {"value": 301989898}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 0}, "child": {"skip": 352, "offset": 424, "next": [], "symbols": [{"name": "__sceEENetsyn_cache_reset", "hash": "711a04dc7e55ee83b542f76b6b07c701db16263e", "variant": 204359012, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 301989895}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 0}, "child": {"skip": 392, "offset": 464, "next": [], "symbols": [{"name": "__sceEENetsyn_cache_unreach", "hash": "8bbc429d3800b25ea87f430f85b1a1e4f84b6193", "variant": 726681082, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10522669}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707536}, "child": {"skip": 16, "offset": 36, "next": [{"match": {"value": 268435488}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 4141}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 2384723972}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "i2d_ASN1_OBJECT"}}, "child": {"skip": 144, "offset": 196, "next": [], "symbols": [{"name": "i2d_X509_NAME_ENTRY", "hash": "7e933c1b3bc303a7a889f236bfc571b069a21f51", "variant": 3407513359, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2384723968}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "i2d_X509_ALGOR"}}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 10285}, "child": {"skip": 8, "offset": 64, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "i2d_ASN1_BIT_STRING"}}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 10285}, "child": {"skip": 124, "offset": 196, "next": [], "symbols": [{"name": "i2d_X509_PUBKEY", "hash": "4ffb5ef3b37277794cab504ab8216f1fecee0e65", "variant": 4136985032, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "i2d_ASN1_OCTET_STRING"}}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 10285}, "child": {"skip": 124, "offset": 196, "next": [], "symbols": [{"name": "i2d_X509_SIG", "hash": "4ffb5ef3b37277794cab504ab8216f1fecee0e65", "variant": 2428856328, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "i2d_ASN1_UTCTIME"}}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 10285}, "child": {"skip": 140, "offset": 196, "next": [], "symbols": [{"name": "i2d_X509_VAL", "hash": "4ffb5ef3b37277794cab504ab8216f1fecee0e65", "variant": 2377747205, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 268435491}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 4141}, "child": {"skip": 164, "offset": 208, "next": [], "symbols": [{"name": "i2d_X509_ALGOR", "hash": "34498be9d7628c9660bf47ce76b5a18f79d109d1", "variant": 82710715, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 268435510}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 4141}, "child": {"skip": 240, "offset": 284, "next": [], "symbols": [{"name": "i2d_X509_REVOKED", "hash": "e68f21e0f77a32a3bb286e3f8e0ff302d837b07f", "variant": 1512723171, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 268435495}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 4141}, "child": {"skip": 0, "offset": 44, )PS2SDB", 8192}, + std::string_view{R"PS2SDB("next": [{"match": {"value": 2384723968}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "i2d_X509_CRL_INFO"}}, "child": {"skip": 172, "offset": 224, "next": [], "symbols": [{"name": "i2d_X509_CRL", "hash": "50e09f025d7e0454714fdac31e7c26e077a3bac8", "variant": 78716428, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2384723972}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "i2d_X509_CINF"}}, "child": {"skip": 172, "offset": 224, "next": [], "symbols": [{"name": "i2d_X509", "hash": "38ae5b795b883818e0f54d981057c05705185af5", "variant": 2071705033, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006768128}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289921072}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 876755008}, "child": {"skip": 368, "offset": 384, "next": [], "symbols": [{"name": "sceDevVif0GetCnd", "hash": "bbc3de2a44ef43dddb151da915a52fe5993e7e85", "variant": 1146443597, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 4289986624}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 876748816}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1006993408}, "child": {"skip": 12, "offset": 36, "next": [{"match": {"value": 8429613}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 4289789968}, "child": {"skip": 328, "offset": 372, "next": [], "symbols": [{"name": "_ipuVdec", "hash": "9182e504677804e758957029453062a8dd6dca6f", "variant": 1956197636, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 8425517}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 4289789968}, "child": {"skip": 284, "offset": 328, "next": [], "symbols": [{"name": "_nextBit", "hash": "9107894ca40cafd80f8da1c9980900ff08322bdd", "variant": 1747025623, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707536}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1006993408}, "child": {"skip": 236, "offset": 260, "next": [], "symbols": [{"name": "_flushBuf", "hash": "a7016dee35988ca57040df035746401582586b1b", "variant": 360429210, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 876748816}, "child": {"skip": 136, "offset": 152, "next": [{"match": {"value": 2388787200, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 156, "next": [{"match": {"value": 268435461}, "child": {"skip": 200, "offset": 360, "next": [], "symbols": [{"name": "_nextBit", "hash": "688801a799c1c0745428f943a0424beb90e851d9", "variant": 987511196, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 1006845952}, "child": {"skip": 0, "offset": 156, "next": [{"match": {"value": 268435462}, "child": {"skip": 116, "offset": 276, "next": [], "symbols": [{"name": "_flushBuf", "hash": "d9aba09113a50d966b232527ce83d35f18056769", "variant": 2372005079, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1007812608, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289986624}, "child": {"skip": 216, "offset": 232, "next": [], "symbols": [{"name": "sceMcSync", "hash": "6fbaf33db1005337c21060947c5aaf134a723443", "variant": 1811016307, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 4289986624}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1007812608, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789968}, "child": {"skip": 28, "offset": 48, "next": [{"match": {"value": 1006796800}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 268435519}, "child": {"skip": 284, "offset": 340, "next": [], "symbols": [{"name": "InitTimer", "hash": "898144d8447c30d2ec34226cf8c67ad3a71e5154", "variant": 2937376112, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006797062}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 268435522}, "child": {"skip": 296, "offset": 352, "next": [], "symbols": [{"name": "sceTimerInit", "hash": "3a468d1416d60d5444f1482a0270817a647405c1", "variant": 3496145513, "library": "libtimer"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 12619821}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289921072}, "child": {"skip": 232, "offset": 252, "next": [], "symbols": [{"name": "sceDevConsOpen", "hash": "0fdbc20718d83f5163b83fe6762781d4ca985dfc", "variant": 34194080, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 8425517}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289921072}, "child": {"skip": 436, "offset": 456, "next": [], "symbols": [{"name": "MD5_Update", "hash": "0ad137e9f31d872fa4346057b1e388e06886594c", "variant": 1821326230, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8425517}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289986624}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 10518573}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289789968}, "child": {"skip": 336, "offset": 364, "next": [], "symbols": [{"name": "_malloc_trim_r", "hash": "746a8be7f3547aca4e90ccc2b29547d360d17e4b", "variant": 2207615486, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4289921072}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289789968}, "child": {"skip": 340, "offset": 368, "next": [], "symbols": [{"name": "_malloc_trim_r", "hash": "a89c797d80e9f430c97b243c39ab268ca48966e8", "variant": 1754289321, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707536}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 10518573}, "child": {"skip": 260, "offset": 284, "next": [], "symbols": [{"name": "lrealloc", "hash": "f83d07397a0aa5879f933dd3e841367b76cadf7b", "variant": 4172729718, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707536}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 312, "offset": 332, "next": [], "symbols": [{"name": "OP_CTX_run", "hash": "732cd22b767edce6b2b0a12f6dfa950515ee12b6", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707536}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8425517}, "child": {"skip": 12, "offset": 28, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceHiDMAMake_ChainStart"}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4289724416}, "child": {"skip": 412, "offset": 448, "next": [], "symbols": [{"name": "ShapeFrameMakePacketInStatic", "hash": "8ca7c4fd27b1cb7c117bc011b99163d37271c16b", "variant": 2213825458, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2387607552}, "child": {"skip": 156, "offset": 192, "next": [], "symbols": [{"name": "toneGeneratorProc", "hash": "ac7eaa1d04c08ea9b6773969d43b4b88fa4649de", "variant": 2497243810, "library": "libssyn"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 12619821}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724416}, "child": {"skip": 424, "offset": 444, "next": [], "symbols": [{"n)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ame": "setupStartVoiceTvf", "hash": "bdec694b279eff627c0552ea66d6d61627c80513", "variant": 638625999, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 8425517}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707536}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289986624}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289921072}, "child": {"skip": 140, "offset": 168, "next": [], "symbols": [{"name": "__sceEENetifmedia_delete_instance", "hash": "8afa437f23a3817ff12d3e19d3168a8c69336cba", "variant": 1747223288, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 12617773}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289986624}, "child": {"skip": 320, "offset": 348, "next": [], "symbols": [{"name": "BER_ITEM_set_long", "hash": "9cd276c8c3a4957cc2da43b6e1dfa8eaef35beb4", "variant": 3878470031, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289986624}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 10520621}, "child": {"skip": 200, "offset": 224, "next": [], "symbols": [{"name": "sceEENetGetIfstat", "hash": "70b7974bc10128a5cb676c70907f4f5e1d072529", "variant": 3131673517, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 12617773}, "child": {"skip": 1452, "offset": 1476, "next": [], "symbols": [{"name": "SHA1_Update", "hash": "34cc5a24e51129d2179c6a8d5a1d622d519d1dce", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10522669}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724416}, "child": {"skip": 132, "offset": 152, "next": [], "symbols": [{"name": "WaitGetAddressAutoUpIf", "hash": "83d76d5700b0987a413fdf899be87f9f3a80768f", "variant": 119147491, "library": "libnet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8425517}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289986624}, "child": {"skip": 488, "offset": 504, "next": [], "symbols": [{"name": "smap_input", "hash": "ceb590c3c15bfaf2997aa10f6bdd23d908a4df03", "variant": 2395354291, "library": "ent_smap"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 8423469}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289986624}, "child": {"skip": 124, "offset": 140, "next": [], "symbols": [{"name": "sceGifPkCall", "hash": "b3fa520dc651ff868c3f60337edef1486a437414", "variant": 4236216496, "library": "libpkt"}]}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 12617773}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707536}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 10518573}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289986624}, "child": {"skip": 492, "offset": 520, "next": [], "symbols": [{"name": "_multiply", "hash": "d04c7d2d18799c2acd5a4a2e47860b31a02c747f", "variant": 883794467, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 14712877}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289986624}, "child": {"skip": 376, "offset": 404, "next": [], "symbols": [{"name": "X509_NAME_add_entry", "hash": "7d66de8e38c8eab022217a63831b91989c738af0", "variant": 403220867, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707536}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 968, "offset": 988, "next": [], "symbols": [{"name": "ether_input", "hash": "f2376b69efa9f42e54ecd3fba0232d1fa3a7a5bc", "variant": 507279240, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 8423469}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707536}, "child": {"skip": 188, "offset": 208, "next": [], "symbols": [{"name": "lh_strhash", "hash": "79d88811deed122800b5a23acc138a69ecd8e381", "variant": 2410619521, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707536}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8423469}, "child": {"skip": 12, "offset": 28, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceHiDMAMake_DynamicChainStart"}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4289724416}, "child": {"skip": 412, "offset": 448, "next": [], "symbols": [{"name": "ShapeFrameMakePacket", "hash": "29b395402564b6be1412e51a59823ff33bba2247", "variant": 1983306406, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 1007681536, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 300, "offset": 336, "next": [], "symbols": [{"name": "__sceEENeteenet_malloc_internal", "hash": "e0095761ffdd1e7f35de3f920443aa24aafcfc91", "variant": 4194309967, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289986624}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8423469}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289921072}, "child": {"skip": 124, "offset": 144, "next": [], "symbols": [{"name": "__sceEENetifmedia_add", "hash": "d32832a3180f71fa89549f8717135e0a44d97b06", "variant": 4279354928, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 10520621}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855520}, "child": {"skip": 220, "offset": 240, "next": [], "symbols": [{"name": "scefd_gets", "hash": "4dc0ae147fde5357ac8b444bd231e94d16e40f9a", "variant": 2600496255, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 3887333456}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006747520}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1149345792}, "child": {"skip": 116, "offset": 132, "next": [{"match": {"value": 1006714752}, "child": {"skip": 0, "offset": 136, "next": [{"match": {"value": 1149306880}, "child": {"skip": 52, "offset": 192, "next": [], "symbols": [{"name": "sceVu0NormalLightMatrix", "hash": "80c9efcd69c7492851590b94f6ed233b5e81110c", "variant": 4098359323, "library": "libvu0"}]}}], "symbols": []}}, {"match": {"value": 8398893}, "child": {"skip": 0, "offset": 136, "next": [{"match": {"value": 3858759728}, "child": {"skip": 44, "offset": 184, "next": [], "symbols": [{"name": "sceVu0NormalLightMatrix", "hash": "b0773c660faabffde55c947543bf7b3d185a3a4d", "variant": 919262865, "library": "libvu0"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724464}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 3887399000}, "child": {"skip": 4, "offset": 20, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__ieee754_acosf"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1174430982}, "child": {"skip": 224, "offset": 252, "next": [], "symbols": [{"name": "acosf", "hash": "c49d1283ce55f2893969caaf0224ed8368ca3952", "variant": 3792405011, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__ieee754_asinf"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1174430982}, "child": {"skip": 224, "offset": 252, "next": [], "symbols": [{"name": "asinf", "hash": "c49d1283ce55f2893969caaf0224ed8368ca3952", "variant": 2325496308, "library": "libm"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724464}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707536}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8421421}, "child": {"skip": 4, "offset": 20, "next": [{"match": {"value": 604241873}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 12}, "child": {"skip": 132, "offset": 160, "next": [], "symbols")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: [{"name": "iWakeupThread", "hash": "4956b1a9e9351584b7d2d6741ee91ae43844da4b", "variant": 475046521, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 2382495860}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 272629763}, "child": {"skip": 316, "offset": 344, "next": [], "symbols": [{"name": "sceHTTPOpen", "hash": "5df91ebdfa1a648ca74e2d31fd256283a63fd11f", "variant": 2497029700, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289790008}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289855552}, "child": {"skip": 228, "offset": 244, "next": [], "symbols": [{"name": "_malloc_stats_r", "hash": "4d43a2817793656e245fffc5f60410ec65be38b9", "variant": 3771056320, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 6189}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289986624}, "child": {"skip": 4, "offset": 16, "next": [{"match": {"value": 8429613}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4290707536}, "child": {"skip": 184, "offset": 208, "next": [], "symbols": [{"name": "sceTtyRead", "hash": "07948f7446defb6b40e5f9d0d995b76398d30cca", "variant": 2792841652, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 4290707536}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289921072}, "child": {"skip": 140, "offset": 164, "next": [], "symbols": [{"name": "BN_mod_word", "hash": "c4e36e14db93ba487d5a15144580983b1c210721", "variant": 3818288682, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707536}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289986624}, "child": {"skip": 12, "offset": 24, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "DIntr"}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4289724416}, "child": {"skip": 96, "offset": 128, "next": [{"match": {"value": 623378432, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 132, "next": [{"match": {"value": 2923823104, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 504, "offset": 640, "next": [], "symbols": [{"name": "sceSifInitCmd", "hash": "883e2b6cbf774f83546458b827ade169878699d0", "variant": 445182730, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 132, "next": [{"match": {"value": 623378432, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 504, "offset": 640, "next": [], "symbols": [{"name": "sceSifInitCmd", "hash": "125aae804e45fe35708c54b692eab843dcfa0688", "variant": 888837836, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2358247432}, "child": {"skip": 248, "offset": 280, "next": [], "symbols": [{"name": "pk_rsa_sslc_cleanup", "hash": "7e4a89d8de42d703039f57230eea0c0d0248c6e7", "variant": 1327492837, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289921072}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8427565}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289986624}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 10522669}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604241947}, "child": {"skip": 56, "offset": 88, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 92, "next": [{"match": {"value": 2928803844}, "child": {"skip": 4, "offset": 100, "next": [{"match": {"value": 2893807616, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 104, "next": [{"match": {"value": 272629763}, "child": {"skip": 56, "offset": 164, "next": [], "symbols": [{"name": "scePowerOffHandler", "hash": "905b3614645d2773869e73ee1af61f0be30eb6a8", "variant": 3605755106, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 272629763}, "child": {"skip": 0, "offset": 104, "next": [{"match": {"value": 2893807616, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 52, "offset": 160, "next": [], "symbols": [{"name": "scePowerOffHandler", "hash": "dee73fa32090c37c9f80e7fb2910abb22f146a37", "variant": 1876289386, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2928803844}, "child": {"skip": 0, "offset": 92, "next": [{"match": {"value": 272629763}, "child": {"skip": 56, "offset": 152, "next": [], "symbols": [{"name": "scePowerOffHandler", "hash": "362b7a58666b9520b93dc7ba9fe2687b6c4d2ffc", "variant": 408347004, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604241947}, "child": {"skip": 112, "offset": 144, "next": [], "symbols": [{"name": "scePowerOffHandler", "hash": "cae2e1dcfc989b77cc6904cca33cd7dde152b34a", "variant": 4190622874, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 10522669}, "child": {"skip": 228, "offset": 252, "next": [], "symbols": [{"name": "MD2_Update", "hash": "44a52c01d2c19e72ec10f7b149722bd3da0718b4", "variant": 938119641, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 10522669}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290707536}, "child": {"skip": 128, "offset": 156, "next": [], "symbols": [{"name": "ssl_cipher_list_to_bytes", "hash": "69778bb8719a5e67b02894b1a35d2ba40c0ae36d", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 12619821}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289986624}, "child": {"skip": 248, "offset": 276, "next": [], "symbols": [{"name": "SSL_CTX_use_PrivateKey_file", "hash": "36a0dea5417a87f378bd6c151b690bdab5b89ae4", "variant": 921076273, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 14719021}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789968}, "child": {"skip": 28, "offset": 48, "next": [{"match": {"value": 33562669}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 4235309}, "child": {"skip": 68, "offset": 124, "next": [], "symbols": [{"name": "SetTimerHandler", "hash": "1c21c4f5b5a8f9e45dd336dbf8061f62e61a258d", "variant": 1305127240, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 4235309}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 33562669}, "child": {"skip": 64, "offset": 120, "next": [], "symbols": [{"name": "sceTimerSetHandler", "hash": "6adc8aaebf2c24bbbc65faf0cd8214978c6d95a0", "variant": 537669864, "library": "libtimer"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 12621869}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 10522669}, "child": {"skip": 160, "offset": 184, "next": [], "symbols": [{"name": "sceEENetSifAddCmdHandler", "hash": "8f1df9cf264f8f53dc8733df0d88380cefbe6f40", "variant": 3435437514, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4290707536}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 14716973}, "child": {"skip": 380, "offset": 404, "next": [], "symbols": [{"name": "pk_dh_sslc_get", "hash": "318388d46ddbfb1110dde96f0b7081701d96fd15", "variant": 2679447555, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10524717}, "child": {"skip")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: 0, "offset": 16, "next": [{"match": {"value": 4290707536}, "child": {"skip": 488, "offset": 508, "next": [], "symbols": [{"name": "BER_ITEMS_SK_grow", "hash": "15557f86c414d51a916519d1c19ec4cbf035bb39", "variant": 2439872862, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 605224961}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789968}, "child": {"skip": 268, "offset": 288, "next": [], "symbols": [{"name": "X509_STORE_add_cert", "hash": "783a6dbf322dc2459361b964e0ff0d32bc6f6355", "variant": 993778460, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707536}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8427565}, "child": {"skip": 96, "offset": 112, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 116, "next": [{"match": {"value": 104988666}, "child": {"skip": 120, "offset": 240, "next": [], "symbols": [{"name": "__submore", "hash": "9fc5e9ba5896ce0694d6df252addd4934ae74b2a", "variant": 1957330423, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 2692939776}, "child": {"skip": 0, "offset": 116, "next": [{"match": {"value": 104988666}, "child": {"skip": 120, "offset": 240, "next": [], "symbols": [{"name": "__submore", "hash": "a52d813da58fbda1da86d06c8aa2723cf4be656a", "variant": 1957330423, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10524717}, "child": {"skip": 408, "offset": 424, "next": [], "symbols": [{"name": "__sceEENeteenet_realloc_internal", "hash": "c0e8670aa62bafbe9d848c7c86edf04722fd8858", "variant": 3079861384, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 617873404}, "child": {"skip": 396, "offset": 412, "next": [], "symbols": [{"name": "sppp_lcp_RCN_rej", "hash": "1a1b4e427c4aaf5c0f6fefc6dc6e314c7e77d12b", "variant": 638606193, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289986624}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8427565}, "child": {"skip": 268, "offset": 284, "next": [], "symbols": [{"name": "R_lockid_new", "hash": "e3151bd47be9b12a030be6665cb63c8a2d3cd03d", "variant": 3823134856, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289921088}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1007878144, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289724432}, "child": {"skip": 356, "offset": 372, "next": [], "symbols": [{"name": "OBJ_add_object", "hash": "2eea11de2d70a1b17b023f8a5aed0116933e87a3", "variant": 3919405366, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 4289789984}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289724432}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1007747072, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 164, "offset": 184, "next": [], "symbols": [{"name": "sceClose", "hash": "b9e151778e2e2c3cdf14803bc73c3e36e240dbe6", "variant": 2611733507, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 12621869}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724432}, "child": {"skip": 168, "offset": 188, "next": [], "symbols": [{"name": "sceEENetBind", "hash": "669e4ea6b61c447a23cbfeb53049ce8d36f84459", "variant": 3991694144, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855536}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1007878144, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789984}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8425517}, "child": {"skip": 188, "offset": 212, "next": [], "symbols": [{"name": "_sceCdSetTimeout", "hash": "bcd20aa51b130049757c27be2f7d924a3336d763", "variant": 1391353149, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 8425517}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289789984}, "child": {"skip": 188, "offset": 212, "next": [], "symbols": [{"name": "sceMcSeek", "hash": "faf8dda9ce23d00c6f72860c5c1d6349d04cac88", "variant": 3308590337, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724432}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1007812608, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 224, "offset": 244, "next": [], "symbols": [{"name": "sceClose", "hash": "615cf34fa14570418390b611588a1402339bdb9e", "variant": 10502048, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 14719021}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789984}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 10522669}, "child": {"skip": 20, "offset": 44, "next": [{"match": {"value": 71368707}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 268435554}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 1006829567}, "child": {"skip": 416, "offset": 476, "next": [], "symbols": [{"name": "_sceSifLoadModule", "hash": "34194e63e607b54bbd207c605957921f67017f24", "variant": 2911679349, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 268435558}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 1006829567}, "child": {"skip": 432, "offset": 492, "next": [], "symbols": [{"name": "_sceSifLoadModule", "hash": "60c0d53f26bcc4f9654289d4def3c94a93f7714b", "variant": 806308060, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 71303277}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 1006829567}, "child": {"skip": 460, "offset": 512, "next": [], "symbols": [{"name": "_sceSifLoadModule", "hash": "3ec1d370c6db88f0b8d7680e67534c44a7faef80", "variant": 850797055, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707536}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8425517}, "child": {"skip": 192, "offset": 216, "next": [], "symbols": [{"name": "sceMcOpen", "hash": "554b37d5cd584804c549a361a1dfa154f6aeebec", "variant": 218877624, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8427565}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724432}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 10522669}, "child": {"skip": 8, "offset": 32, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_lf_bind"}}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 4289789984}, "child": {"skip": 196, "offset": 236, "next": [], "symbols": [{"name": "sceSifGetIopAddr", "hash": "a1cc3b2776e30604d5676d93347e38a79c5898c5", "variant": 3430424407, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 4289789984}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 2382495744}, "child": {"skip": 96, "offset": 136, "next": [], "symbols": [{"name": "R_EITEMS_check_list", "hash": "d0d9b7f9e6eafcf55bf808a871a81e94efcba008", "variant": 1503331769, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789984}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 12619821}, "child": {"skip": 120, "offset": 144, "next": [], "symbols": [{"name": "sce_call_rpc", "hash": "4198663ea9c11dcfac4bee3aefc520452de7304c", "variant": 3843263792, "library": "netcnfif"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 12621869}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789984}, "child": {"skip": 8, "offset": 28, "next": [{"match": {"value": 4290707536}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2)PS2SDB", 8192}, + std::string_view{R"PS2SDB(01326592, "relocation": {"type": "MIPS_26", "symbol": "sceNetcnfifInit"}}, "child": {"skip": 40, "offset": 76, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 80, "next": [{"match": {"value": 33568813}, "child": {"skip": 20, "offset": 104, "next": [{"match": {"value": 604307459}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 604372993}, "child": {"skip": 48, "offset": 160, "next": [], "symbols": [{"name": "sceNetcnfifAddEntry", "hash": "90c5eae50c81b6351b253cb691074ccd1e319cd0", "variant": 988166829, "library": "netcnfif"}]}}], "symbols": []}}, {"match": {"value": 604307466}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 604372993}, "child": {"skip": 48, "offset": 160, "next": [], "symbols": [{"name": "sceNetcnfifCheckSpecialProvider", "hash": "7d50448b54250e64da9f2397d376cea87a5e61b5", "variant": 988166829, "library": "netcnfif"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 33568813}, "child": {"skip": 0, "offset": 80, "next": [{"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 8, "offset": 92, "next": [{"match": {"value": 604307461}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 604372993}, "child": {"skip": 48, "offset": 148, "next": [], "symbols": [{"name": "sceNetcnfifDeleteEntry", "hash": "23f635574baf4574cdaeb69b945a72efb319238a", "variant": 3330752235, "library": "netcnfif"}]}}], "symbols": []}}, {"match": {"value": 604307462}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 604372993}, "child": {"skip": 48, "offset": 148, "next": [], "symbols": [{"name": "sceNetcnfifSetLatestEntry", "hash": "899824ab59aecdec395c8eaa4e12be2cd4554a90", "variant": 3330752235, "library": "netcnfif"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8423469}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4290707536}, "child": {"skip": 32, "offset": 68, "next": [{"match": {"value": 301989909}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 0}, "child": {"skip": 128, "offset": 204, "next": [], "symbols": [{"name": "d2i_RSAPublicKey", "hash": "e31fadee334b2d24c8cccb67b72f0adc4a21dfcb", "variant": 950356046, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 301989914}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 33558573}, "child": {"skip": 128, "offset": 204, "next": [], "symbols": [{"name": "d2i_RSAPrivateKey", "hash": "784cf404397fc673a6a9a5747c04b2e9539a2f83", "variant": 564623731, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10524717}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724432}, "child": {"skip": 176, "offset": 196, "next": [], "symbols": [{"name": "ASN1_dup", "hash": "72f37c4e14132f246d48e9a14fc03db9aff220ca", "variant": 1107420243, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 665124867}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289855536}, "child": {"skip": 240, "offset": 256, "next": [], "symbols": [{"name": "ssl2_write_error", "hash": "53d43826576f1a2848770d11e107d492e893645f", "variant": 3854710727, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 266882}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289986624}, "child": {"skip": 256, "offset": 268, "next": [], "symbols": [{"name": "iSetTimerHandler", "hash": "deb108d3f1d5e0d1b4212298f370c3d267a3e849", "variant": 2693111692, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 4289986608}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 12623917}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 847380543}, "child": {"skip": 484, "offset": 500, "next": [], "symbols": [{"name": "scePadPortOpen", "hash": "edc1029d00cbf7309c1b45fd5f4d4da4625317e5", "variant": 3519563434, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 10526765}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290052152}, "child": {"skip": 1412, "offset": 1428, "next": [], "symbols": [{"name": "_realloc_r", "hash": "512eabb4e24f61fbad1969a051c48033e8cfefd9", "variant": 1663196057, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289790016}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1007747072, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289724464}, "child": {"skip": 8, "offset": 24, "next": [{"match": {"value": 71368754}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4290707536}, "child": {"skip": 96, "offset": 128, "next": [{"match": {"value": 1007026176, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 132, "next": [{"match": {"value": 610467840, "relocation": {"type": "MIPS_LO16", "symbol": "_sdrCBThread"}}, "child": {"skip": 116, "offset": 252, "next": [], "symbols": [{"name": "sceSdRemoteCallbackInit", "hash": "9eb1a799f2c75b0ae1a09622c43e987e5757f54c", "variant": 801011215, "library": "libsdr"}]}}], "symbols": []}}, {"match": {"value": 1007026300}, "child": {"skip": 0, "offset": 132, "next": [{"match": {"value": 610467840, "relocation": {"type": "MIPS_LO16", "symbol": "_sdrCBThread"}}, "child": {"skip": 116, "offset": 252, "next": [], "symbols": [{"name": "sceSdRemoteCallbackInit", "hash": "472c969c42579671a1c4164b8ad3d1cfacde0934", "variant": 4017071423, "library": "libsdr"}]}}], "symbols": []}}, {"match": {"value": 1007026387}, "child": {"skip": 0, "offset": 132, "next": [{"match": {"value": 610467840, "relocation": {"type": "MIPS_LO16", "symbol": "_sdrCBThread"}}, "child": {"skip": 116, "offset": 252, "next": [], "symbols": [{"name": "sceSdRemoteCallbackInit", "hash": "cb29418cab7fea0fdfde67b7e2d5b50adbb7363e", "variant": 4017071423, "library": "libsdr"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 71368751}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4290707536}, "child": {"skip": 92, "offset": 124, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 128, "next": [{"match": {"value": 610467840, "relocation": {"type": "MIPS_LO16", "symbol": "_sdrCBThread"}}, "child": {"skip": 108, "offset": 240, "next": [], "symbols": [{"name": "sceSdRemoteCallbackInit", "hash": "0f653b1647183e857940acad27a848b9342db2f2", "variant": 2406220930, "library": "libsdr"}]}}], "symbols": []}}, {"match": {"value": 1006960739}, "child": {"skip": 0, "offset": 128, "next": [{"match": {"value": 610467840, "relocation": {"type": "MIPS_LO16", "symbol": "_sdrCBThread"}}, "child": {"skip": 108, "offset": 240, "next": [], "symbols": [{"name": "sceSdRemoteCallbackInit", "hash": "1adac3f54d63444893af76d22f50a859b9749284", "variant": 2221601232, "library": "libsdr"}]}}], "symbols": []}}, {"match": {"value": 1006960841}, "child": {"skip": 0, "offset": 128, "next": [{"match": {"value": 610467840, "relocation": {"type": "MIPS_LO16", "symbol": "_sdrCBThread"}}, "child": {"skip": 108, "offset": 240, "next": [], "symbols": [{"name": "sceSdRemoteCallbackInit", "hash": "fac27eec3fc9d2d92f3cb03ffe804650ee67a4ca", "variant": 2221601232, "library": "libsdr"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707536}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8423469}, "child": {"skip": 148, "offset": 164, "next": [], "symbols": [{"name": "__sceEENetin_losing", "hash": "8132ebc160bb00fb46650c41c5d961b1758b5a3e", "variant": 2213645849, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2946760708}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 16812077}, "child": {"skip": 96, "offset": 112, "next": [], "symbols": [{"name": "start_thread", "hash": "073ef593f62)PS2SDB", 8192}, + std::string_view{R"PS2SDB(3072e018de77822b65e75787984a2", "variant": 3259568597, "library": "libeenet"}, {"name": "start_thread", "hash": "073ef593f623072e018de77822b65e75787984a2", "variant": 3259568597, "library": "eenetctl"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604241919}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289790000}, "child": {"skip": 44, "offset": 56, "next": [{"match": {"value": 339935258}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 3753836624}, "child": {"skip": 120, "offset": 184, "next": [], "symbols": [{"name": "cmd_sem_init", "hash": "77795d95c4a11b85635c2bb10e99b06d418c563c", "variant": 2037101184, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 339935269}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 3753836624}, "child": {"skip": 164, "offset": 228, "next": [], "symbols": [{"name": "cmd_sem_init", "hash": "077e08d41ef5a698d15b6803d63a737ddd3d337f", "variant": 513565920, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 339935260}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 3753836624}, "child": {"skip": 128, "offset": 192, "next": [], "symbols": [{"name": "cmd_sem_init", "hash": "1fd3bf19b8e333381cf6906e7dbaf3e22200e4cf", "variant": 2562863244, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8237}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855536}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707536}, "child": {"skip": 20, "offset": 36, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "DIntr"}}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 0}, "child": {"skip": 316, "offset": 360, "next": [], "symbols": [{"name": "PowerOffCB", "hash": "3acf6a870562d680e1c53decb3a9ee223f258202", "variant": 2288194588, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 2386690048, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 71368751}, "child": {"skip": 284, "offset": 328, "next": [], "symbols": [{"name": "PowerOffCB", "hash": "bee4a20172bc3c9f3cf954f6b81719a93ce6035c", "variant": 1404685110, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289921088}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289855536}, "child": {"skip": 336, "offset": 352, "next": [], "symbols": [{"name": "PowerOffCB", "hash": "be53afa464d4af8ca0f18a81f0a9f10581098eee", "variant": 2920867461, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 605028353}, "child": {"skip": 296, "offset": 312, "next": [], "symbols": [{"name": "_sequenceExtension", "hash": "08b1ef8340c3b2c2791cb196ae4153f01e77fb38", "variant": 2531065431, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789984}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724432}, "child": {"skip": 224, "offset": 236, "next": [], "symbols": [{"name": "sceCdTrayReq", "hash": "e2a38780a3deb89174c43278dee4686a3470e0fe", "variant": 1304714053, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 10500141}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289921088}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1007878144, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707536}, "child": {"skip": 196, "offset": 216, "next": [], "symbols": [{"name": "sceMcRead", "hash": "9a53e78b8016403c7fb71accd0b89d26a27d1948", "variant": 2183635985, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707536}, "child": {"skip": 7572, "offset": 7592, "next": [], "symbols": [{"name": "_PES_packet", "hash": "97ae7c618d8c3be4caf0f399c51845ca70d71e2f", "variant": 3729552541, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10502189}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289921088}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1007878144, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 304, "offset": 320, "next": [], "symbols": [{"name": "sceMcWrite", "hash": "c954059beeeb1a689d31c184d31d8598b9c3d6f9", "variant": 2634240671, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 4289855536}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 12593197}, "child": {"skip": 132, "offset": 148, "next": [{"match": {"value": 604307468}, "child": {"skip": 0, "offset": 152, "next": [{"match": {"value": 604372993}, "child": {"skip": 64, "offset": 220, "next": [], "symbols": [{"name": "sceMcChdir", "hash": "ff63d9a9fca2a27a4f95c71bfca69a5d724c3f4c", "variant": 224403341, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 604307579}, "child": {"skip": 0, "offset": 152, "next": [{"match": {"value": 604372993}, "child": {"skip": 64, "offset": 220, "next": [], "symbols": [{"name": "sceMcChdir", "hash": "035390a13fc8dcd7b169063c36ac71dfceeb6d80", "variant": 224403341, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289986624}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1007157247}, "child": {"skip": 2508, "offset": 2524, "next": [], "symbols": [{"name": "des_encrypt2", "hash": "494e86c4e0877d4088a9dbeacae2f42b9a83c222", "variant": 3349254026, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 12601389}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289921088}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1007878144, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 292, "offset": 308, "next": [], "symbols": [{"name": "sceMcGetInfo", "hash": "cf66d01a91365b6025a029de3de3d5a17b3c2807", "variant": 1513217458, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 4289986624}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707536}, "child": {"skip": 260, "offset": 276, "next": [], "symbols": [{"name": "rsa_padding_add_pkcs1_type_2", "hash": "ed5144aafd070dec7fe922ecef77a103c2c5656d", "variant": 1757778666, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10506285}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855536}, "child": {"skip": 132, "offset": 144, "next": [{"match": {"value": 604307469}, "child": {"skip": 0, "offset": 148, "next": [{"match": {"value": 604372993}, "child": {"skip": 68, "offset": 220, "next": [], "symbols": [{"name": "sceMcGetDir", "hash": "f35cdba27f7229d8866eea48673c0b69274d089e", "variant": 4221190566, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 604307574}, "child": {"skip": 0, "offset": 148, "next": [{"match": {"value": 604372993}, "child": {"skip": 68, "offset": 220, "next": [], "symbols": [{"name": "sceMcGetDir", "hash": "cdbe9af4a55397df89d4be6e15d99078e73f3059", "variant": 4221190566, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 3887399000}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1174433094}, "child": {"skip": 72, "offset": 84, "next": [{"match": {"value": 274727399}, "child": {"skip": 0, "offset": 88, "next": [{"match": {"value": 40011812}, "child": {"skip": 1984, "offset": 2076, "next": [], "symbols": [{"name": "__ieee754_powf", "hash": "b726303730c27c0dd5d9f78b2eef4e3ac0bdf4b6", "variant": 2025835680, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 274727384}, "child": {"skip": 0, "offset": 88, "next": [{"match": {"value": 40011812}, "child": {"skip": 1924, "offset": 2016, "next": [], "symbols": [{"name": "__ieee754_powf", "hash": "668f52760d828e5c4129a882e0d2975047a14253", "variant": 399011)PS2SDB", 8192}, + std::string_view{R"PS2SDB(6628, "library": "libm"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289921064}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 8427565}, "child": {"skip": 1372, "offset": 1384, "next": [], "symbols": [{"name": "__kernel_tan", "hash": "a8b11f58054b73edc54f8be2fb9ad6dbd5c3a5aa", "variant": 2463732819, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 8398893}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707536}, "child": {"skip": 496, "offset": 508, "next": [], "symbols": [{"name": "rint", "hash": "ee41c9f6689b37fdcd2ab35691e7a00dbddbb2a9", "variant": 1905461542, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 4288938048}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 665059392}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289003592}, "child": {"skip": 32, "offset": 48, "next": [{"match": {"value": 2410020864}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 60833837}, "child": {"skip": 4, "offset": 60, "next": [{"match": {"value": 339738682}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 60825645}, "child": {"skip": 252, "offset": 320, "next": [], "symbols": [{"name": "dpdiv", "hash": "efce2ed9268781fc4fa3aadbaf62f399cad23de9", "variant": 2109064322, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 339738695}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 60825645}, "child": {"skip": 304, "offset": 372, "next": [], "symbols": [{"name": "dpdiv", "hash": "151ed6cb0a6cb4ad28b8061b19dff894b1ac56bf", "variant": 2390161628, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 33564717}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__fpcmp_parts_d"}}, "child": {"skip": 20, "offset": 76, "next": [], "symbols": [{"name": "dpcmp", "hash": "03836640c339238cc019d23686898d02bb05ce47", "variant": 1793462211, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289003592}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707544}, "child": {"skip": 36, "offset": 52, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_fpdiv_parts"}}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 60825645}, "child": {"skip": 24, "offset": 84, "next": [], "symbols": [{"name": "dpdiv", "hash": "581b50f79a01c189a97e1ca26bdd08609d570337", "variant": 702385599, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__fpcmp_parts_d"}}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 60825645}, "child": {"skip": 16, "offset": 76, "next": [], "symbols": [{"name": "dpcmp", "hash": "76f6577923b49a07472c2dea9511ed759f65e6ad", "variant": 1793462211, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10491949}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 8392749}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289724496}, "child": {"skip": 12, "offset": 28, "next": [{"match": {"value": 4288872520}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4288806976}, "child": {"skip": 56, "offset": 92, "next": [], "symbols": [{"name": "dpdiv", "hash": "1f307a04a91cca3becbffa5dc5ddc1d7a1c31a34", "variant": 3270797988, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 4288806976}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4288872520}, "child": {"skip": 48, "offset": 84, "next": [], "symbols": [{"name": "dpcmp", "hash": "b8b8dc64669c96cfa3a146da838fad770d3532f3", "variant": 3390742468, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289921088}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 872611839}, "child": {"skip": 664, "offset": 680, "next": [], "symbols": [{"name": "__sceEENetsogetopt", "hash": "0c28f596f7082df20402e0672f2540477927478d", "variant": 2973902350, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724480}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 665059376}, "child": {"skip": 36, "offset": 48, "next": [{"match": {"value": 33564717}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 665190432}, "child": {"skip": 32, "offset": 88, "next": [], "symbols": [{"name": "fpadd", "hash": "9443436e9e6fe7293b074718e32f9fc4d115137f", "variant": 4214624274, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 2409758740}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 33564717}, "child": {"skip": 44, "offset": 100, "next": [], "symbols": [{"name": "fpsub", "hash": "3cecb58045a1af3f7bcd6af4bc2138dd927415da", "variant": 299083742, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 2409889792}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 746717186}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 339738646}, "child": {"skip": 440, "offset": 500, "next": [], "symbols": [{"name": "fpmul", "hash": "2f71584b3d24c2c18e3c8c6647853c14ccb20fa8", "variant": 975046496, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 665387040}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 746717186}, "child": {"skip": 440, "offset": 500, "next": [], "symbols": [{"name": "fpmul", "hash": "6def8b9d082e44a1a1d78d328c83bef8b3dcc13b", "variant": 1262120181, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2946760752}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2946826292}, "child": {"skip": 36, "offset": 48, "next": [{"match": {"value": 33564717}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 665190432}, "child": {"skip": 32, "offset": 88, "next": [], "symbols": [{"name": "fpadd", "hash": "f6aaa626d467c76714b8e571fc09deedbb1ed3bc", "variant": 4214624274, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 2409758740}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 33564717}, "child": {"skip": 44, "offset": 100, "next": [], "symbols": [{"name": "fpsub", "hash": "252bdb8e1141cf5b6484c4656217d491046b6c08", "variant": 299083742, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 2409889792}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 746717186}, "child": {"skip": 444, "offset": 500, "next": [], "symbols": [{"name": "fpmul", "hash": "dd5d3b1585653b7c1d12ef2cba40abdfb27555f5", "variant": 975046496, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289790000}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707536}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8423469}, "child": {"skip": 4, "offset": 20, "next": [{"match": {"value": 4289724448}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2384592908}, "child": {"skip": 264, "offset": 292, "next": [], "symbols": [{"name": "frame_init", "hash": "13f24b86bc1bfdddb7a9c84f3f47d91fc89b45d2", "variant": 2528837722, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 278921222}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289724448}, "child": {"skip": 256, "offset": 284, "next": [], "symbols": [{"name": "sceSifMUnBindRpc", "hash": "ad75e22385d294bd1b1aa5d767caa1f1caf2b885", "variant": 2709039446, "library": "libmrpc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 605093889}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707536}, "child": {"skip": 280, "offset": 296, "next": [], "symbols": [{"name": "__builtin_new", "hash": "209e0760efed1ee191897f0181cbc1cd1dc6b41e", "variant": 2629601328, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 614662163}, "child": {"skip": 0, "offset": 8, "next": [{"mat)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ch": {"value": 4289921072}, "child": {"skip": 64, "offset": 76, "next": [{"match": {"value": 272629782}, "child": {"skip": 0, "offset": 80, "next": [{"match": {"value": 1007943680, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 1828, "offset": 1912, "next": [], "symbols": [{"name": "_malloc_r", "hash": "f2310ca466bc842bf942237e69b7482f74fe0761", "variant": 318579303, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 272629783}, "child": {"skip": 0, "offset": 80, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 1820, "offset": 1904, "next": [], "symbols": [{"name": "_malloc_r", "hash": "6705baae2dac541cf17c00686ba4038c8d3427fe", "variant": 1092589805, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 12599341}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289986624}, "child": {"skip": 32, "offset": 44, "next": [{"match": {"value": 640286740}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 4289855520}, "child": {"skip": 224, "offset": 276, "next": [], "symbols": [{"name": "_multadd", "hash": "bb9fb9dac77703f49f75636c910c8e3718844a4f", "variant": 2587003807, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 640090132}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 4289855520}, "child": {"skip": 212, "offset": 264, "next": [], "symbols": [{"name": "_multadd", "hash": "4db05d57e80d39837b76f8d26a7b7035e8faa1e4", "variant": 2477847188, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707456}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289069104}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10498093}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289134648}, "child": {"skip": 20, "offset": 40, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_vfprintf_r"}}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 2357526536}, "child": {"skip": 12, "offset": 60, "next": [], "symbols": [{"name": "_printf_r", "hash": "75013d96c50903af86e60087d413fe53e284c1a3", "variant": 201118882, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 3886809104}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 3886874644}, "child": {"skip": 44, "offset": 92, "next": [], "symbols": [{"name": "_printf_r", "hash": "6653a6f2ae84b65d5deead2c0f01afc57722f13f", "variant": 2014938028, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 665190448}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289134648}, "child": {"skip": 68, "offset": 88, "next": [], "symbols": [{"name": "_scanf_r", "hash": "7283e09ceefabb2f6f593bb5a460dc170f793302", "variant": 43509681, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289069104}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289134648}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10498093}, "child": {"skip": 44, "offset": 60, "next": [], "symbols": [{"name": "_printf_r", "hash": "6de9c3652a2c259707e499d92c73079b79aa98cf", "variant": 201118882, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 665190448}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707456}, "child": {"skip": 16, "offset": 32, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "vfprintf"}}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 4289396824}, "child": {"skip": 12, "offset": 52, "next": [], "symbols": [{"name": "fprintf", "hash": "bfc122f8f0bb1bce73709fbc63f5bb7fa5f24566", "variant": 4105754879, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4289396824}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 3886809104}, "child": {"skip": 24, "offset": 64, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "vfprintf"}}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 3887267884}, "child": {"skip": 12, "offset": 84, "next": [], "symbols": [{"name": "fprintf", "hash": "787bfade542f8f83f118773185c2b6a0781da625", "variant": 2019907542, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "vfiprintf"}}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 3887267884}, "child": {"skip": 12, "offset": 84, "next": [], "symbols": [{"name": "fiprintf", "hash": "787bfade542f8f83f118773185c2b6a0781da625", "variant": 1161267487, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290052152}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 10528813}, "child": {"skip": 16, "offset": 28, "next": [{"match": {"value": 4290707544}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2946760704}, "child": {"skip": 532, "offset": 568, "next": [], "symbols": [{"name": "_strtol_r", "hash": "5f023d30b5fec9ea164bc88ea873d898b82469e1", "variant": 2359730899, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4290183240}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4290707544}, "child": {"skip": 520, "offset": 556, "next": [], "symbols": [{"name": "_strtoul_r", "hash": "d8d0b412b8056ce3c600d64eb450758eb2f7d282", "variant": 1350869847, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604110950}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789976}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 21006381}, "child": {"skip": 432, "offset": 448, "next": [], "symbols": [{"name": "cvt", "hash": "015532c48e4941e4e5e4ac40847711fa4ecf2ee9", "variant": 1674319047, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4289724432}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 16810029}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789976}, "child": {"skip": 412, "offset": 432, "next": [], "symbols": [{"name": "cvt", "hash": "39b397f15c4ac5ca3bd51413516e71198407a87e", "variant": 3913051887, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4289789976}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855520}, "child": {"skip": 400, "offset": 420, "next": [], "symbols": [{"name": "cvt", "hash": "c8f573fcb8d69903497a0acd3e325fda633f27a6", "variant": 398369488, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604962918}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724432}, "child": {"skip": 412, "offset": 424, "next": [], "symbols": [{"name": "cvt", "hash": "1ec14370579f55d73ebd40843c5c2389cedd77db", "variant": 398369488, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 604176385}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855552}, "child": {"skip": 120, "offset": 132, "next": [], "symbols": [{"name": "fwrite", "hash": "038bb25f43f2714317f10c35e1cc1b8f4b42bb5c", "variant": 2294045056, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 614596611}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 135298}, "child": {"skip": 560, "offset": 572, "next": [], "symbols": [{"name": "sceMpegCreate", "hash": "7e5eb46e911a9bf5de38de67c5b479feb2ef1139", "variant": 2442714738, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 604176383}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289986624}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289789968}, "child": {"skip": 36, "offset": 52, "next": [{"match": {"value": 272629779}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 8237}, "child": {"skip": 232, "offset": 292, "next": [], "symbols": [{"name": "_decodeOrSkipFrame", "hash": "ba5f67da1f2c7d488f6ef4b6ca8a7af9a28d7590", "variant": 456382056,)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 272629777}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 8237}, "child": {"skip": 220, "offset": 280, "next": [], "symbols": [{"name": "_decodeOrSkipFrame", "hash": "f0a2f139c9501a865d1bfe1e3a28f0fbb9a2c7fc", "variant": 3393407053, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289921072}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289855520}, "child": {"skip": 32, "offset": 48, "next": [{"match": {"value": 2919235872}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 10883114}, "child": {"skip": 292, "offset": 348, "next": [], "symbols": [{"name": "_decodeOrSkipField", "hash": "5dd4f04fb6f29a600dd39b3d5382cf8782030830", "variant": 621124944, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2919235896}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 10883114}, "child": {"skip": 316, "offset": 372, "next": [], "symbols": [{"name": "_decodeOrSkipField", "hash": "91703e2ff606b01e3f8d8ac31d2d160c128861ca", "variant": 3154996479, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604307488}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289790000}, "child": {"skip": 672, "offset": 684, "next": [], "symbols": [{"name": "_sequenceHeader", "hash": "02c7bd06ff6981026c0b48446a584309c943b7a3", "variant": 3770344492, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 604110850}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855552}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289790000}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 10522669}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289724448}, "child": {"skip": 16, "offset": 40, "next": [{"match": {"value": 2384726104}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback"}}, "child": {"skip": 44, "offset": 92, "next": [{"match": {"value": 1006768128}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 878968831}, "child": {"skip": 112, "offset": 212, "next": [], "symbols": [{"name": "_setDefaultQM", "hash": "2a79fd17eb813007531fd9b4dfb9560dc7bb1aec", "variant": 1150058640, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 1006899200}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 878968831}, "child": {"skip": 124, "offset": 224, "next": [], "symbols": [{"name": "_setDefaultQM", "hash": "6e0f44873ce80568dcf0c9fb16ccdbc583b17a40", "variant": 2476958326, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2384726128}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_dispatchMpegCallback"}}, "child": {"skip": 176, "offset": 224, "next": [], "symbols": [{"name": "_setDefaultQM", "hash": "0b544e093c9a9ca276852d1acf52c79ede544ede", "variant": 2476958326, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8425517}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1007747072, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 44, "offset": 68, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_waitIpuIdle"}}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 2889875456}, "child": {"skip": 116, "offset": 192, "next": [], "symbols": [{"name": "_setDefaultQM", "hash": "e9e49b76bb9f25c78472b39a5f85fe1ba07d589f", "variant": 2052607565, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2889875456}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_waitIpuIdle"}}, "child": {"skip": 124, "offset": 200, "next": [], "symbols": [{"name": "_setDefaultQM", "hash": "4e177fd53d68b253a60454f28967325fb3080370", "variant": 825138846, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289921072}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289724416}, "child": {"skip": 848, "offset": 864, "next": [], "symbols": [{"name": "sceHiPlugMicro", "hash": "7cd776a17478a39873914dc90d3eb8673fdcaf18", "variant": 1609713733, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 4289724480}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10518573}, "child": {"skip": 4, "offset": 20, "next": [{"match": {"value": 302120979}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 12593197}, "child": {"skip": 104, "offset": 132, "next": [], "symbols": [{"name": "find_and_load_ibm", "hash": "3e6ab48a6bca99525a134af9afb59c8d5734c1e9", "variant": 50729763, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 302120975}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 12593197}, "child": {"skip": 116, "offset": 144, "next": [], "symbols": [{"name": "find_and_load_ibm", "hash": "279ad0f3e13de4d206acc7b87eac8fbcb3d4d15b", "variant": 629305486, "library": "libhip"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724448}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8421421}, "child": {"skip": 348, "offset": 364, "next": [], "symbols": [{"name": "smap_attach", "hash": "cadb9715b8d2cb27db3bd5890a3f8e4f15b21081", "variant": 1389208184, "library": "ent_smap"}]}}], "symbols": []}}, {"match": {"value": 4289986624}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707536}, "child": {"skip": 436, "offset": 452, "next": [], "symbols": [{"name": "__sceEENettcp_template", "hash": "7e9aa11dab6270fd8f2e137fc8df053d62491769", "variant": 1691306718, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289921088}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289789984}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 38957}, "child": {"skip": 1580, "offset": 1600, "next": [], "symbols": [{"name": "_sceEENetRPCServerFunc", "hash": "bd9baa386fc238d8a5119e88eb13c4bf3a5d71cb", "variant": 4181342808, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289855536}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 12621869}, "child": {"skip": 384, "offset": 404, "next": [], "symbols": [{"name": "md_ctrl", "hash": "44a231d87afd893eea51001774f3155573d95816", "variant": 3204233174, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289986624}, "child": {"skip": 404, "offset": 416, "next": [], "symbols": [{"name": "_sceMpegSliceA0", "hash": "e3625409d4d93cbc465f5b17b6df8ee42544ccbe", "variant": 2685466289, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 753008656}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855552}, "child": {"skip": 32, "offset": 44, "next": [{"match": {"value": 627245040}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 742522883}, "child": {"skip": 96, "offset": 148, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": ""}}, "child": {"skip": 0, "offset": 152, "next": [{"match": {"value": 665124880}, "child": {"skip": 84, "offset": 240, "next": [], "symbols": [{"name": "sceSEIn_MakePitchLFO", "hash": "2d5ed9c6f23a7ade0c7b86d5fa12e2c6b89a37ba", "variant": 2941183370, "library": "libsein"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "make_delta_time"}}, "child": {"skip": 0, "offset": 152, "next": [{"match": {"value": 665124880}, "child": {"skip": 84, "offset": 240, "next": [], "symbols": [{"name": "sceSEIn_MakePitchLFO", "hash": "2d5ed9c6f23a7ade0c7b86d5fa12e2c6b89a37ba", "variant": 371380930, "library": "libsein"}]}}], "symbols)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 627245024}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 742522883}, "child": {"skip": 8, "offset": 60, "next": [{"match": {"value": 268435490}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 604176383}, "child": {"skip": 156, "offset": 224, "next": [], "symbols": [{"name": "sceSEIn_MakeAmpLFO", "hash": "471b01d418799c5a5a65a62333c539d17c18862f", "variant": 112832459, "library": "libsein"}]}}], "symbols": []}}, {"match": {"value": 268435493}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 604176383}, "child": {"skip": 168, "offset": 236, "next": [], "symbols": [{"name": "sceSEIn_MakeAmpLFO", "hash": "884653aa9c8bf5c4e7f93b54055f361dba436f70", "variant": 1513565571, "library": "libsein"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764287}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855520}, "child": {"skip": 196, "offset": 208, "next": [], "symbols": [{"name": "sceHiParseHeader", "hash": "906780468ca50ac80e9b0589098807bfac806ae8", "variant": 14278704, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 2143223872}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2142437424}, "child": {"skip": 12, "offset": 24, "next": [{"match": {"value": 2946760784}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2946826328}, "child": {"skip": 168, "offset": 200, "next": [], "symbols": [{"name": "__destroy_new_array", "hash": "8ac49d427794af950a30be8efbdd07f1b1b1912e", "variant": 3295927855, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 2360344588}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 1887477288}, "child": {"skip": 184, "offset": 216, "next": [], "symbols": [{"name": "IsInSpecification__FPcP16ex_specification", "hash": "d48827e78c883f3a3a50764908accc9887a3e94c", "variant": 2835552188, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2142437424}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2142371872}, "child": {"skip": 8, "offset": 20, "next": [{"match": {"value": 2946760776}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2946826320}, "child": {"skip": 1020, "offset": 1048, "next": [], "symbols": [{"name": "__throw_catch_compare", "hash": "0f47cee3509daa701103b2f9cba6352a851fde98", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 2946760768}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2946826320}, "child": {"skip": 4, "offset": 32, "next": [{"match": {"value": 2420244480}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 810549503}, "child": {"skip": 252, "offset": 292, "next": [], "symbols": [{"name": "__DecodeUnsignedNumber__FPcPUi", "hash": "9afecf332acf77990682724a772ecb37322268ea", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 2151809024}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 165436}, "child": {"skip": 256, "offset": 296, "next": [], "symbols": [{"name": "__DecodeSignedNumber__FPcPi", "hash": "39641819e286278f85a5909e53f6c6e365149fcd", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707488}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2142306320}, "child": {"skip": 360, "offset": 372, "next": [], "symbols": [{"name": "__ThrowHandler__FP12ThrowContext", "hash": "2261a34a6b8e56bf4091e4808aa2337541a18b1e", "variant": 3358473157, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 2143223840}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2143158288}, "child": {"skip": 212, "offset": 224, "next": [], "symbols": [{"name": "__unexpected", "hash": "e6e41f973ea2cb37cb300cb688ea2b322b0394f4", "variant": 2465254002, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 2143223856}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2142371872}, "child": {"skip": 128, "offset": 140, "next": [], "symbols": [{"name": "mwOverlayInit", "hash": "6f30da9679f4789159c0085682f9ff398fdbdd1e", "variant": 3808256822, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2142371872}, "child": {"skip": 56, "offset": 68, "next": [{"match": {"value": 35659821}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 10285}, "child": {"skip": 64, "offset": 140, "next": [], "symbols": [{"name": "mwOverlayInit", "hash": "0408add2eb0bfc768104b98febedb253ace5ac1b", "variant": 3808256822, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 1914709544}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 1879060008}, "child": {"skip": 64, "offset": 140, "next": [], "symbols": [{"name": "mwOverlayInit", "hash": "3f1ac81dba37f9d5bce0bcfd9128b66ddef13974", "variant": 3808256822, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707520}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2142437424}, "child": {"skip": 12, "offset": 24, "next": [{"match": {"value": 1889574440}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 1879084584}, "child": {"skip": 224, "offset": 256, "next": [], "symbols": [{"name": "mwBload", "hash": "cc3efc57fc375586dfe22edc62769c8a3d1382e9", "variant": 979203928, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 10524717}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 34861}, "child": {"skip": 224, "offset": 256, "next": [], "symbols": [{"name": "mwBload", "hash": "74c9ae690494caa85b52c1f494d89cae207f8a28", "variant": 979203928, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604176396}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8423469}, "child": {"skip": 264, "offset": 284, "next": [], "symbols": [{"name": "_PsceSkSsSTRADPCM_Sync1", "hash": "9f4d6adf18da8d63fb1a54790d39ece66a57c702", "variant": 2404718134, "library": "libsk"}]}}], "symbols": []}}, {"match": {"value": 8423469}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289986624}, "child": {"skip": 224, "offset": 244, "next": [], "symbols": [{"name": "_PsceSkSsSTRADPCM_Sync2", "hash": "08779f2a7937c33097db737682979f70b574f349", "variant": 328698619, "library": "libsk"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604176772}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289921072}, "child": {"skip": 904, "offset": 916, "next": [], "symbols": [{"name": "_sceMcpWriteUserClustOnCache", "hash": "5afeaa80fc090bb0a2e96cd749e231414115140e", "variant": 2751846034, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 604110851}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289724416}, "child": {"skip": 516, "offset": 532, "next": [], "symbols": [{"name": "sceHiPlugTex2D", "hash": "c5b08228fb62a9c615b21e62933188d2d8fe2468", "variant": 2541791671, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 4289986624}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289921072}, "child": {"skip": 304, "offset": 320, "next": [], "symbols": [{"name": "sockargs", "hash": "d59085f678eb658bbb4831702bc8f79fe8b4929f", "variant": 2708794575, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10285}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 284, "offset": 296, "next": [], "symbols": [{"name": "ShapeMakeExceptionTriFan", "hash": )PS2SDB", 8192}, + std::string_view{R"PS2SDB("51c998d4b2f33305bc0eafab88c17c909ebb6346", "variant": 2345668647, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 604176128}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 364, "offset": 376, "next": [], "symbols": [{"name": "clip_init", "hash": "75f5de4aeaa08910d7d0bbc5eec05504fd99848a", "variant": 2580995597, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 604110992}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289986624}, "child": {"skip": 196, "offset": 208, "next": [], "symbols": [{"name": "sub_func", "hash": "a4ce254844b024bf5d2374549155793fd05124c9", "variant": 2775835735, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 604319424}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289986624}, "child": {"skip": 208, "offset": 220, "next": [], "symbols": [{"name": "smap_rpc_server", "hash": "576652d6137abd304d31ecb6da004b3a1b112180", "variant": 3930327750, "library": "ent_smap"}]}}], "symbols": []}}, {"match": {"value": 331818}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289986624}, "child": {"skip": 196, "offset": 208, "next": [], "symbols": [{"name": "__sceEENetcallout_reset", "hash": "5e5df4802f5b8a3ab5a4a98c8e423c73f6c4aa4c", "variant": 919210545, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289724448}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707536}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8421421}, "child": {"skip": 184, "offset": 200, "next": [], "symbols": [{"name": "__sceEENetifpromisc", "hash": "d6cd5c3a9d573c0365c4546adbeea427570b9382", "variant": 1258638851, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 8421421}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289855552}, "child": {"skip": 28, "offset": 44, "next": [{"match": {"value": 2382627152}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 304087046}, "child": {"skip": 120, "offset": 172, "next": [], "symbols": [{"name": "recv_thread", "hash": "1c8a54e38535ce6ea0507e6942a6829d21568027", "variant": 1230677857, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2382627160}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 304087046}, "child": {"skip": 120, "offset": 172, "next": [], "symbols": [{"name": "send_thread", "hash": "fd3b627ccbb6f9d91f506996ebee45b4159470f3", "variant": 2501421315, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604307492}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2946760752}, "child": {"skip": 160, "offset": 172, "next": [], "symbols": [{"name": "rtdeletemsg", "hash": "3725f5160018264bd6e7dd199b29a1448c813666", "variant": 1487029843, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 616955912}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289921072}, "child": {"skip": 240, "offset": 252, "next": [], "symbols": [{"name": "__sceEENet_dns_gethtbyname", "hash": "a1ef1ea5aa2c2c745297971d11f4723f03962175", "variant": 134864698, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 604373012}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289790000}, "child": {"skip": 200, "offset": 212, "next": [], "symbols": [{"name": "_sce_eenet_sppp_error_code", "hash": "9890310cbc9c31d046cfd01af6e78800a470979f", "variant": 3293464637, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 12333}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855552}, "child": {"skip": 44, "offset": 56, "next": [{"match": {"value": 268435494}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 604176383}, "child": {"skip": 172, "offset": 236, "next": [], "symbols": [{"name": "_sce_eenet_if_updown", "hash": "323e6f17d995ba0d41471e91dcedf705722afa9d", "variant": 347873350, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 268435475}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 604176383}, "child": {"skip": 96, "offset": 160, "next": [], "symbols": [{"name": "_sce_eenet_if_set_mtu", "hash": "cb4faaf676da72c0479938621227747b065d00b5", "variant": 4134134280, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604307458}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855552}, "child": {"skip": 168, "offset": 180, "next": [], "symbols": [{"name": "_sce_eenet_if_clearinaddr", "hash": "8a303498d6d391038c5ddf0ba01bf18de9b08ad3", "variant": 942414244, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289724432}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789984}, "child": {"skip": 400, "offset": 412, "next": [], "symbols": [{"name": "process_header", "hash": "f261eae413356d46eb0967457beb4f3aeb5b93f1", "variant": 4233200065, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 4289855552}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724448}, "child": {"skip": 428, "offset": 440, "next": [], "symbols": [{"name": "asn1_collate_primative", "hash": "aaa7451d67745013102c406524949e9357ec59c1", "variant": 1960309087, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 14686253}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855536}, "child": {"skip": 244, "offset": 256, "next": [], "symbols": [{"name": "bn_mont_ctx_set_word", "hash": "ac8b335d84b7d4b4908d4bda2c10beb20caf33f0", "variant": 12813676, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604176404}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289986624}, "child": {"skip": 176, "offset": 188, "next": [], "symbols": [{"name": "BN_mod_mul", "hash": "6743cb8d423859b744f55949c8baafe067305189", "variant": 1309331060, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 614727679}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289986624}, "child": {"skip": 272, "offset": 284, "next": [], "symbols": [{"name": "mem_ctrl", "hash": "60514540f82b21072707f48a54c18e719644a798", "variant": 3948804191, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 1006833423}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 878907151}, "child": {"skip": 2816, "offset": 2828, "next": [], "symbols": [{"name": "des_encrypt", "hash": "39490c04ef29e30f497b616ac2bfa3ee9da23a65", "variant": 3056540887, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604110864}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289986624}, "child": {"skip": 228, "offset": 240, "next": [], "symbols": [{"name": "MD2_Final", "hash": "ef09998aa76b0cc7ffdd7dcda378780fb6f6adcb", "variant": 1325881120, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 8417325}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290052176}, "child": {"skip": 872, "offset": 884, "next": [], "symbols": [{"name": "md5_block_small", "hash": "a342979168c910952fad548b5c9db82e0a40762b", "variant": 3479230316, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604110856}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289986624}, "child": {"skip": 216, "offset": 228, "next": [], "symbols": [{"name": "pk_dh_sslc_final", "hash": "f5bfc378e087beccf034b466579f4490935ded4d", "variant": 1599952295, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 18880557}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289986624}, "child": {"skip": 316, "offset": 328, "next": [], "symbols": [{"name": "rsa_padding_add_SSLv23", "hash": "99a4b92bee92fbe52d8effa027ffbfb96feb98f8", "variant": 2254080418, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604373006}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289986624}, "child": {"skip": 312, "offset": 324, "next": [], "symbols": [{"name": "SSL_CTX_add_session", "hash": "12e19497799b70e1929b34105a97a7f0b303048b", "variant": 3941497007, "library":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604700671}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289986624}, "child": {"skip": 584, "offset": 596, "next": [], "symbols": [{"name": "ASN1_UTCTIME_print", "hash": "3ad9bf1af5f3f6e8111a4ace412e7f22a8892fc6", "variant": 931846230, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2357329920}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604241663}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4397092}, "child": {"skip": 16, "offset": 28, "next": [], "symbols": [{"name": "sceDmaPause", "hash": "c03dad0706d89a1ab43eaf058b2663dcb978d178", "variant": 0, "library": "libdma"}, {"name": "sceDmaRestart", "hash": "c03dad0706d89a1ab43eaf058b2663dcb978d178", "variant": 0, "library": "libdma"}]}}], "symbols": []}}, {"match": {"value": 2894397440}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 135682}, "child": {"skip": 8, "offset": 20, "next": [], "symbols": [{"name": "sceDmaRestart", "hash": "204fcca4072f8e540a3b759abe24a4d9d55c3255", "variant": 0, "library": "libdma"}]}}], "symbols": []}}, {"match": {"value": 604373008}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 334080}, "child": {"skip": 36, "offset": 48, "next": [], "symbols": [{"name": "sceDmaAddCont", "hash": "72989f4de779f87f1542e8f15f9a6c863f48b95a", "variant": 0, "library": "libdma"}]}}], "symbols": []}}, {"match": {"value": 604438560}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2689007619}, "child": {"skip": 24, "offset": 36, "next": [], "symbols": [{"name": "sceDmaAddNext", "hash": "63a8308b5eee8daa74cb253454406f5b617511b0", "variant": 0, "library": "libdma"}]}}], "symbols": []}}, {"match": {"value": 604373088}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 334080}, "child": {"skip": 36, "offset": 48, "next": [], "symbols": [{"name": "sceDmaAddRet", "hash": "408899f8984dbaf145e8d029d75ca3c63f63b79b", "variant": 0, "library": "libdma"}]}}], "symbols": []}}, {"match": {"value": 604373136}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 334080}, "child": {"skip": 36, "offset": 48, "next": [], "symbols": [{"name": "sceDmaAddICont", "hash": "11481715e754fb367a703d132bf78ed81f02e767", "variant": 0, "library": "libdma"}]}}], "symbols": []}}, {"match": {"value": 604438688}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2689007619}, "child": {"skip": 24, "offset": 36, "next": [], "symbols": [{"name": "sceDmaAddINext", "hash": "6d1592cf0b68f2fd910ef291f117d56655428318", "variant": 0, "library": "libdma"}]}}], "symbols": []}}, {"match": {"value": 604373216}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 334080}, "child": {"skip": 36, "offset": 48, "next": [], "symbols": [{"name": "sceDmaAddIRet", "hash": "e6a20026bfbde698e2e58a080724aa3911a935df", "variant": 0, "library": "libdma"}]}}], "symbols": []}}, {"match": {"value": 4232380416}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2894200844}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "chaGifPkOpenGifTag2", "hash": "c35607149cedd72557231401ade061ca65110c85", "variant": 0, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 333884}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 202815}, "child": {"skip": 28, "offset": 40, "next": [], "symbols": [{"name": "sceGifPkAddGsData", "hash": "f0ebc6b5fc7fc707bba73408152a2b886bfc484c", "variant": 0, "library": "libpkt"}, {"name": "sceVif1PkAddUpkData64", "hash": "f0ebc6b5fc7fc707bba73408152a2b886bfc484c", "variant": 0, "library": "libpkt"}, {"name": "sceVif1PkAddGsData", "hash": "f0ebc6b5fc7fc707bba73408152a2b886bfc484c", "variant": 0, "library": "libpkt"}]}}], "symbols": []}}, {"match": {"value": 338048}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4532257}, "child": {"skip": 8, "offset": 20, "next": [], "symbols": [{"name": "sceGifPkReserve", "hash": "dbc336b6605b1d5d74b5cdd1c287aa423e1a2b8d", "variant": 0, "library": "libpkt"}, {"name": "sceVif1PkReserve", "hash": "dbc336b6605b1d5d74b5cdd1c287aa423e1a2b8d", "variant": 0, "library": "libpkt"}, {"name": "sceVif0PkReserve", "hash": "dbc336b6605b1d5d74b5cdd1c287aa423e1a2b8d", "variant": 0, "library": "libpkt"}]}}], "symbols": []}}, {"match": {"value": 608370704}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2084896768}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2894266368}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 65011720}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2894200844}, "child": {"skip": 0, "offset": 24, "next": [], "symbols": [{"name": "sceGifPkOpenGifTag", "hash": "475d591c58551e482a397f82c9ce9e4b31fdedb8", "variant": 0, "library": "libpkt"}]}}, {"match": {"value": 2894200852}, "child": {"skip": 0, "offset": 24, "next": [], "symbols": [{"name": "sceVif1PkOpenGifTag", "hash": "876a11c2e72d964160f7e1d642000a82118ad7af", "variant": 0, "library": "libpkt"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 65011720}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2894266368}, "child": {"skip": 0, "offset": 20, "next": [], "symbols": [{"name": "sceDmaPkAddData", "hash": "b21a4cc4de9061f08ef7f13b1854c78f2d7581ed", "variant": 0, "library": "libpkt"}, {"name": "sceVif1PkAddGsPacked", "hash": "b21a4cc4de9061f08ef7f13b1854c78f2d7581ed", "variant": 0, "library": "libpkt"}, {"name": "sceGifPkAddGsPacked", "hash": "b21a4cc4de9061f08ef7f13b1854c78f2d7581ed", "variant": 0, "library": "libpkt"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 337980}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 337982}, "child": {"skip": 24, "offset": 36, "next": [], "symbols": [{"name": "sceGifPkAddGsAD", "hash": "def974bd556fc9b3ca0a1ec82d96807abd23b1e5", "variant": 0, "library": "libpkt"}]}}], "symbols": []}}, {"match": {"value": 2357526540}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608370684}, "child": {"skip": 32, "offset": 44, "next": [], "symbols": [{"name": "sceVif1PkCloseDirectCode", "hash": "dfb2d3d0329c23a4e7fc4080cebcd2db055f543e", "variant": 0, "library": "libpkt"}, {"name": "sceVif1PkCloseDirectHLCode", "hash": "dfb2d3d0329c23a4e7fc4080cebcd2db055f543e", "variant": 0, "library": "libpkt"}]}}], "symbols": []}}, {"match": {"value": 2890203136}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608305156}, "child": {"skip": 8, "offset": 20, "next": [], "symbols": [{"name": "sceVif1PkAddCode", "hash": "2c1a7395dd9d3f6a26a385e17a8ef22c20d651cf", "variant": 0, "library": "libpkt"}, {"name": "sceVif1PkAddData", "hash": "2c1a7395dd9d3f6a26a385e17a8ef22c20d651cf", "variant": 0, "library": "libpkt"}, {"name": "sceVif1PkAddUpkData32", "hash": "2c1a7395dd9d3f6a26a385e17a8ef22c20d651cf", "variant": 0, "library": "libpkt"}, {"name": "sceVif0PkAddCode", "hash": "2c1a7395dd9d3f6a26a385e17a8ef22c20d651cf", "variant": 0, "library": "libpkt"}, {"name": "sceVif0PkAddData", "hash": "2c1a7395dd9d3f6a26a385e17a8ef22c20d651cf", "variant": 0, "library": "libpkt"}]}}], "symbols": []}}, {"match": {"value": 399420}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 202815}, "child": {"skip": 36, "offset": 48, "next": [], "symbols": [{"name": "sceVif1PkAddGsAD", "hash": "4a927b672df552f5d674f32735fa888a30fdd952", "variant": 0, "library": "libpkt"}]}}], "symbols": []}}, {"match": {"value": 1006895103}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2357657612}, "child": {"skip": 76, "offset": 88, "next": [], "symbols": [{"name": "sceVif1PkCloseUpkCode", "hash": "f3862da8b17d77db62e234243abce868b8651dee", "variant": 0, "library": "libpkt"}]}}], "symbols": []}}, {"match": {"value": 1007026175}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2357657612}, "child": {"skip": 68, "offset": 80, "next": [], "symbols": [{"name": "sceVif1PkCloseUpkCode", "hash": "af1920768a965c6546a64f612f53e8cc138c07ac", "variant": 0, "library": "libpkt"}, {"name": "sceVif0PkCloseUpkCode", "hash": "af1920768a965c6546a64f612f53e8cc13)PS2SDB", 8192}, + std::string_view{R"PS2SDB(8c07ac", "variant": 0, "library": "libpkt"}]}}], "symbols": []}}, {"match": {"value": 273022987}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 8720427}, "child": {"skip": 52, "offset": 64, "next": [], "symbols": [{"name": "kFindAddress", "hash": "26a2b72a186c3474375a840d3a2a7f5c16c9e628", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 14381}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2357526540}, "child": {"skip": 4, "offset": 16, "next": [{"match": {"value": 272629776}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2357723140}, "child": {"skip": 156, "offset": 180, "next": [], "symbols": [{"name": "__pack_f", "hash": "5a2e7b0b3b76031fab29ce0d1a6f8bf60f30fb00", "variant": 0, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 272629771}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2357723140}, "child": {"skip": 184, "offset": 208, "next": [], "symbols": [{"name": "__pack_f", "hash": "deef44020f81f8c4e8ad685de3aba0cd7c2a7f5b", "variant": 0, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006829695}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 878968831}, "child": {"skip": 132, "offset": 144, "next": [], "symbols": [{"name": "__unpack_f", "hash": "9b3db73d5eb1b4bc1607a0ef65812f52a4eec633", "variant": 0, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 10498093}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006895231}, "child": {"skip": 76, "offset": 88, "next": [], "symbols": [{"name": "__unpack_f", "hash": "1e457fb20e0fd5bb48c8cb93c0144fc4d71372f0", "variant": 0, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 272629772}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 10285}, "child": {"skip": 52, "offset": 64, "next": [], "symbols": [{"name": "count_fdes", "hash": "e6cd6869798447cadc1a1db2fb3a367ffc52bac2", "variant": 0, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 2357395460}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2357526536}, "child": {"skip": 12, "offset": 24, "next": [], "symbols": [{"name": "_alalcRest", "hash": "88d16f3162e3eaa97b062bbc6f54bdd22592784e", "variant": 0, "library": "libmpeg"}, {"name": "_sceMpegAlalcReset", "hash": "88d16f3162e3eaa97b062bbc6f54bdd22592784e", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 338176}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 12599341}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1007120384}, "child": {"skip": 88, "offset": 104, "next": [], "symbols": [{"name": "sceGpAddPacket", "hash": "f8c95fe34fc32ba562e4ef2dda6baee023a1c88e", "variant": 0, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 65011720}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4526113}, "child": {"skip": 0, "offset": 16, "next": [], "symbols": [{"name": "sceGpGetTailChain", "hash": "1010b62d13f28a93a4a5382a8a5023062dba6411", "variant": 0, "library": "libgp"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604176500}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 339935245}, "child": {"skip": 60, "offset": 72, "next": [], "symbols": [{"name": "EVP_PKEY_missing_parameters", "hash": "2873429c3dfeaf55b2b0b6a8505f3352a66ed744", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2359492608}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006895359}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 881131519}, "child": {"skip": 48, "offset": 64, "next": [], "symbols": [{"name": "cmp_by_num", "hash": "0390d4620cf636656f243a13e6e4b5e96c85f1e2", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2353266688}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2355232768}, "child": {"skip": 8, "offset": 24, "next": [], "symbols": [{"name": "xem_cmp", "hash": "a61b6cd1abf643a740bd74640d5f932509e0dadd", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2353266700}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2355232780}, "child": {"skip": 8, "offset": 24, "next": [], "symbols": [{"name": "X509_REVOKED_seq_cmp", "hash": "ba6f71fa186c54e336f0b6e3773b7a7f134f9abb", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604176385}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 339935235}, "child": {"skip": 4, "offset": 16, "next": [{"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "X509_reference_inc"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2357460996}, "child": {"skip": 8, "offset": 32, "next": [], "symbols": [{"name": "X509_OBJECT_up_ref_count", "hash": "b2918cc81e0a3b44ddb79b15fd5a65eface0471e", "variant": 3121101048, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "X509_free"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2357460996}, "child": {"skip": 8, "offset": 32, "next": [], "symbols": [{"name": "X509_OBJECT_free_contents", "hash": "b2918cc81e0a3b44ddb79b15fd5a65eface0471e", "variant": 2062607524, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2424438787}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604176432}, "child": {"skip": 116, "offset": 124, "next": [], "symbols": [{"name": "sceDmaGetNextTag", "hash": "49542b4b9b59a10e2a2323d28ea58cbd1caf1edb", "variant": 0, "library": "libdma"}]}}], "symbols": []}}, {"match": {"value": 2357657600}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604504112}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 12587053}, "child": {"skip": 28, "offset": 40, "next": [], "symbols": [{"name": "sceDmaAddRef", "hash": "5727f20742e9b31191c2f349c34bdb8f2115a352", "variant": 0, "library": "libdma"}]}}], "symbols": []}}, {"match": {"value": 12587053}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2699034627}, "child": {"skip": 24, "offset": 36, "next": [], "symbols": [{"name": "sceDmaAddRefe", "hash": "f3b20b7deaf2b05143be1505b65bba218438e9d1", "variant": 0, "library": "libdma"}]}}], "symbols": []}}, {"match": {"value": 604504128}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 12587053}, "child": {"skip": 28, "offset": 40, "next": [], "symbols": [{"name": "sceDmaAddRefs", "hash": "8b2ee8d92d6323eb086658292695895b5731d120", "variant": 0, "library": "libdma"}]}}], "symbols": []}}, {"match": {"value": 332032}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608305168}, "child": {"skip": 32, "offset": 44, "next": [], "symbols": [{"name": "sceDmaAddDests", "hash": "ad4dae04268bddccd84decc8845eb0986d96fa1c", "variant": 0, "library": "libdma"}]}}], "symbols": []}}, {"match": {"value": 604504240}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 12587053}, "child": {"skip": 28, "offset": 40, "next": [], "symbols": [{"name": "sceDmaAddIRef", "hash": "0420fed718619129fa31d05960920aa02cb7b0c4", "variant": 0, "library": "libdma"}]}}], "symbols": []}}, {"match": {"value": 604504192}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 12587053}, "child": {"skip": 28, "offset": 40, "next": [], "symbols": [{"name": "sceDmaAddIRefe", "hash": "45b7f8661e52743774a9bcad0ed2160181c760ad", "variant": 0, "library": "libdma"}]}}], "symbols": []}}, {"match": {"value": 604504256}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 12587053}, "child": {"skip": 28, "offset": 40, "next": [], "symbols": [{"name": "sceDmaAddIRefs", "hash": "600e3928e3e3538d19392bbe78ee680962d98762", "variant": 0, "library": "libdma"}]}}], "symbols": []}}, {"match": {"value": 283115538}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4141}, "child": {"skip": 76, "offset": 88, "next": [], "symbols": [{"name": "search_fdes", "hash": "354cd6e5d63f0f5a204300e159bb6)PS2SDB", 8192}, + std::string_view{R"PS2SDB(0ce06e692e6", "variant": 0, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 2430795776}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 202240}, "child": {"skip": 104, "offset": 116, "next": [], "symbols": [{"name": "sceCccDecodeUTF8", "hash": "545a333939f7f3623fa849750dd37c069c9e9b1a", "variant": 1181981167, "library": "libccc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2357395456}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604438608}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 332032}, "child": {"skip": 36, "offset": 48, "next": [], "symbols": [{"name": "sceDmaAddCall", "hash": "9771e787a7947f8bfc9fda9cbf0ef5e6ade97b70", "variant": 0, "library": "libdma"}]}}], "symbols": []}}, {"match": {"value": 604438640}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 332032}, "child": {"skip": 36, "offset": 48, "next": [], "symbols": [{"name": "sceDmaAddEnd", "hash": "53e0c271674b939b769213b4a7e4d75a6f114878", "variant": 0, "library": "libdma"}]}}], "symbols": []}}, {"match": {"value": 604438544}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 332032}, "child": {"skip": 36, "offset": 48, "next": [], "symbols": [{"name": "sceDmaAddDest", "hash": "e92aa09d5aa4571d20dbae8885ec8ba2b20b305c", "variant": 0, "library": "libdma"}]}}], "symbols": []}}, {"match": {"value": 604438736}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 332032}, "child": {"skip": 36, "offset": 48, "next": [], "symbols": [{"name": "sceDmaAddICall", "hash": "3e6277ad469e86d7218e754d70140a1cc793a703", "variant": 0, "library": "libdma"}]}}], "symbols": []}}, {"match": {"value": 604438768}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 332032}, "child": {"skip": 36, "offset": 48, "next": [], "symbols": [{"name": "sceDmaAddIEnd", "hash": "28ba84dcc33bfc736b52a1f587bd808bd39d4f63", "variant": 0, "library": "libdma"}]}}], "symbols": []}}, {"match": {"value": 604438672}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 332032}, "child": {"skip": 36, "offset": 48, "next": [], "symbols": [{"name": "sceDmaAddIDest", "hash": "36159f70b9d106e816ae9969435ec30c1c48bd07", "variant": 0, "library": "libdma"}]}}], "symbols": []}}, {"match": {"value": 604438656}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 332032}, "child": {"skip": 36, "offset": 48, "next": [], "symbols": [{"name": "sceDmaAddIDests", "hash": "625c37e30910c62b38a3cb8070f0aba158080460", "variant": 0, "library": "libdma"}]}}], "symbols": []}}, {"match": {"value": 2357329924}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 10698795}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 12728363}, "child": {"skip": 28, "offset": 44, "next": [], "symbols": [{"name": "sceDevConsLocate", "hash": "f6750c232c4a3d93cf11b5ede4fd6dc0646f7dae", "variant": 0, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 2894069792}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4395043}, "child": {"skip": 32, "offset": 48, "next": [], "symbols": [{"name": "_buf_clear", "hash": "bef1648a14fceb8c8126125732d9010695f31d11", "variant": 0, "library": "libhig"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 281018379}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 617086975}, "child": {"skip": 12, "offset": 24, "next": [{"match": {"value": 2023882752}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 619184127}, "child": {"skip": 8, "offset": 40, "next": [{"match": {"value": 610467856}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 350683130}, "child": {"skip": 12, "offset": 60, "next": [], "symbols": [{"name": "sceDmaPkAddDataN", "hash": "2168c7595dd8baef649b0d8ed8f7738f176187b0", "variant": 0, "library": "libpkt"}, {"name": "sceVif1PkAddGsPackedN", "hash": "2168c7595dd8baef649b0d8ed8f7738f176187b0", "variant": 0, "library": "libpkt"}, {"name": "sceGifPkAddGsPackedN", "hash": "2168c7595dd8baef649b0d8ed8f7738f176187b0", "variant": 0, "library": "libpkt"}]}}], "symbols": []}}, {"match": {"value": 0}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 350683130}, "child": {"skip": 12, "offset": 60, "next": [], "symbols": [{"name": "sceGifPkAddGsPackedN", "hash": "a6ce7809b55d64dd714634bf8cfcf5263a463e6c", "variant": 0, "library": "libpkt"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 3701604352}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 619184127}, "child": {"skip": 8, "offset": 40, "next": [{"match": {"value": 610467848}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 350683130}, "child": {"skip": 12, "offset": 60, "next": [], "symbols": [{"name": "sceGifPkAddGsDataN", "hash": "8ea0b935c2b43180ee31dfe8ef8c981f4a3e55ab", "variant": 0, "library": "libpkt"}]}}], "symbols": []}}, {"match": {"value": 0}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 350683130}, "child": {"skip": 12, "offset": 60, "next": [], "symbols": [{"name": "sceGifPkAddGsDataN", "hash": "89710c067aa47865b3ea84440f73c435dcccf846", "variant": 0, "library": "libpkt"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006772224}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 6434853}, "child": {"skip": 140, "offset": 152, "next": [], "symbols": [{"name": "fs_read_intr", "hash": "547bc51a2510edd2fe91ad135c10473850f613f6", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 14381}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2357723140}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 744620034}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 272629765}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2357526540}, "child": {"skip": 244, "offset": 268, "next": [], "symbols": [{"name": "__pack_f", "hash": "0488032ae27c0ee70d9295b2f524e2288099e302", "variant": 0, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 272629766}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 3699703824}, "child": {"skip": 276, "offset": 300, "next": [], "symbols": [{"name": "__pack_d", "hash": "4d5539727209b8e56e092207630f351bb206240f", "variant": 0, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2357592076}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 744620034}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 339738661}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2357723140}, "child": {"skip": 160, "offset": 184, "next": [], "symbols": [{"name": "__pack_f", "hash": "b6376d15aa5e9a7e7cff4a8ae130a96a7ea00fe9", "variant": 0, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 339738660}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2357723140}, "child": {"skip": 156, "offset": 180, "next": [], "symbols": [{"name": "__pack_f", "hash": "2aa96ec3b7e7f00b3f6e8c127e2b6b932fbac61e", "variant": 0, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 3699703824}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 744620034}, "child": {"skip": 20, "offset": 36, "next": [{"match": {"value": 268435477}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 10627109}, "child": {"skip": 172, "offset": 216, "next": [], "symbols": [{"name": "__pack_d", "hash": "db7eb45b422f3855ec7a91d7800bbd97c15f0898", "variant": 0, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 268435493}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 10627109}, "child": {"skip": 236, "offset": 280, "next": [], "symbols": [{"name": "__pack_d", "hash": "6fb58d82d6d2953467632206fdead9cf5baa27d1", "variant": 0, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 3699769360}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 744620034}, "child": {"skip": 0, "offset": 16, "next")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: [{"match": {"value": 272629788}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2357723140}, "child": {"skip": 184, "offset": 208, "next": [], "symbols": [{"name": "__pack_d", "hash": "8a0bf94d14dbd8a6057b101d81aaf681c06b4204", "variant": 0, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 272629785}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2357723140}, "child": {"skip": 172, "offset": 196, "next": [], "symbols": [{"name": "__pack_d", "hash": "dc53c55826c0d5adaaa5584942da5e8e4c015dab", "variant": 0, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10285}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2357723140}, "child": {"skip": 252, "offset": 264, "next": [], "symbols": [{"name": "__pack_f", "hash": "377eb851ec9d2490c51373ead0606ec02f7c42b5", "variant": 0, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 1006895231}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 881131519}, "child": {"skip": 80, "offset": 92, "next": [], "symbols": [{"name": "__unpack_f", "hash": "5077e3a809171dd9793399d5586d6c23e5939d02", "variant": 0, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 1007026303}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 885456895}, "child": {"skip": 72, "offset": 84, "next": [], "symbols": [{"name": "__unpack_f", "hash": "cb6327e10322df2fe3458fbcdb2fc7c55e6b7774", "variant": 0, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 8405037}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 744620034}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 339738640}, "child": {"skip": 184, "offset": 200, "next": [{"match": {"value": 272629841}, "child": {"skip": 0, "offset": 204, "next": [{"match": {"value": 3702128656}, "child": {"skip": 348, "offset": 556, "next": [], "symbols": [{"name": "_fpadd_parts", "hash": "1393e289147a4c3854740cd661bf1e3a7eacde22", "variant": 341009448, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 272629839}, "child": {"skip": 0, "offset": 204, "next": [{"match": {"value": 3702128656}, "child": {"skip": 340, "offset": 548, "next": [], "symbols": [{"name": "_fpadd_parts", "hash": "11f3624988164b2a84f446dac5c71e16b3cebc92", "variant": 341009448, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10508333}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 744620034}, "child": {"skip": 500, "offset": 516, "next": [], "symbols": [{"name": "_fpmul_parts", "hash": "010ee5a42b15da89c5ede0e321ded04f8b45bad3", "variant": 1107337542, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 744620034}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 339738629}, "child": {"skip": 240, "offset": 252, "next": [], "symbols": [{"name": "__fpcmp_parts_d", "hash": "952aabd5d541d678a1458fa79b3d809f4477ff8c", "variant": 0, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 8402989}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 10506285}, "child": {"skip": 584, "offset": 596, "next": [], "symbols": [{"name": "_fpmul_parts", "hash": "c772fd58085068d75df6ed7982db9313aca02d28", "variant": 1107337542, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 811728903}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 272629774}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 811728897}, "child": {"skip": 176, "offset": 192, "next": [], "symbols": [{"name": "_lo0bits", "hash": "7e0351a4c2ef731e08a1b192e12d1c96fbeb008b", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 272629773}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 811728897}, "child": {"skip": 140, "offset": 156, "next": [{"match": {"value": 202818}, "child": {"skip": 0, "offset": 160, "next": [{"match": {"value": 616955905}, "child": {"skip": 20, "offset": 184, "next": [], "symbols": [{"name": "_lo0bits", "hash": "a57362c4fa3570cd99c91c98d4064bb4445bf58d", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 616955905}, "child": {"skip": 0, "offset": 160, "next": [{"match": {"value": 202818}, "child": {"skip": 20, "offset": 184, "next": [], "symbols": [{"name": "_lo0bits", "hash": "80c75342bd6a533e0695159fbf3c6f5fb821d644", "variant": 0, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2489647104}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 614606848}, "child": {"skip": 88, "offset": 100, "next": [], "symbols": [{"name": "sceCccDecodeUTF16", "hash": "5baa484a5646151cbf01f6b64d8d9c4255bf500b", "variant": 3744296823, "library": "libccc"}]}}], "symbols": []}}, {"match": {"value": 4141}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 16, "next": [], "symbols": [{"name": "sceHiDMAGet_ChainAddr", "hash": "25ec7106b77ef94e7a605f0ab302a21ec8e84c65", "variant": 0, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 816120063}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 3697410048}, "child": {"skip": 68, "offset": 80, "next": [], "symbols": [{"name": "getPackedData", "hash": "8ecd7761be5090c77a4c3af6957929dc0b67cbca", "variant": 0, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 274726916}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2357329924}, "child": {"skip": 36, "offset": 48, "next": [], "symbols": [{"name": "__sceEENetif_clone_detach", "hash": "f766329050b6986e6485386428b0cd0149251a56", "variant": 2698062916, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 65011720}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2355232772}, "child": {"skip": 0, "offset": 12, "next": [], "symbols": [{"name": "BIO_method_name", "hash": "c0f599a35757a140584779ba9a810354a9977e0a", "variant": 0, "library": "libhttps"}, {"name": "EVP_CIPHER_CTX_block_size", "hash": "c0f599a35757a140584779ba9a810354a9977e0a", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 2355232768}, "child": {"skip": 0, "offset": 12, "next": [], "symbols": [{"name": "BIO_method_type", "hash": "f5c2bc61f6e168d8e16c4f57ebfb0f678d15868b", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 2355232776}, "child": {"skip": 0, "offset": 12, "next": [], "symbols": [{"name": "EVP_MD_CTX_size", "hash": "002681fb2dc34e9d5792f375e62e8cba0fab143b", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604110964}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 341966853}, "child": {"skip": 36, "offset": 48, "next": [], "symbols": [{"name": "EVP_PKEY_save_parameters", "hash": "660c9c451555159c16656359756468fbe41fa9c7", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604110914}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 274858016}, "child": {"skip": 144, "offset": 156, "next": [], "symbols": [{"name": "EVP_PKEY_free_it", "hash": "671b18c20a3218523ae1ae86d4f0f0b73bdf4745", "variant": 4266098459, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2359558144}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 3697606664}, "child": {"skip": 40, "offset": 52, "next": [], "symbols": [{"name": "ssl_cipher_ptr_id_cmp", "hash": "9d2298e0c7d497f19e18da14e0fd19822c61655e", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1212344320}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 809631759}, "child": {"skip": 12, "offset": 20, "next": [], "symbols": [{"name": "sceDevVu0CheckBusy", "hash": "6d50fd45e6b110a4744499edaf74d67c33880da2", "variant": 0, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 1212342272}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 876740610}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1220730880}, "child": {"skip": 8, "offset": 20, "next": [], "symbols": [{"na)PS2SDB", 8192}, + std::string_view{R"PS2SDB(me": "sceDevVu0Reset", "hash": "981de50b4fb7cd5b5e73642050e146c2cbbb7fb6", "variant": 0, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 135298}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 16, "next": [], "symbols": [{"name": "sceDevVu0GetDBit", "hash": "0486c0cedb0b78cec6bbce7d9d525316026dffd7", "variant": 0, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 135362}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 16, "next": [], "symbols": [{"name": "sceDevVu0GetTBit", "hash": "bdfa32d9a81c80ace3431417f84095610372e26d", "variant": 0, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 876741120}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1220730880}, "child": {"skip": 8, "offset": 20, "next": [], "symbols": [{"name": "sceDevVu1Reset", "hash": "d365a5016d51e9608cec1a7c1a0d892beae44094", "variant": 0, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 135810}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 16, "next": [], "symbols": [{"name": "sceDevVu1GetDBit", "hash": "0137cc72d8c11fcf1ba048446637e6ce03a63c7d", "variant": 0, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 135874}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 16, "next": [], "symbols": [{"name": "sceDevVu1GetTBit", "hash": "0ba1c7e9ecd278aae8762bc5a5c2c0aeee41af62", "variant": 0, "library": "libdev"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1212407808}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604110849}, "child": {"skip": 12, "offset": 20, "next": [{"match": {"value": 878903300}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1006829567}, "child": {"skip": 20, "offset": 48, "next": [], "symbols": [{"name": "sceDevVu0PutDBit", "hash": "dc25dca2a7ce5c5696246e565e593d22a9fddf3a", "variant": 0, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 878903304}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1006829567}, "child": {"skip": 20, "offset": 48, "next": [], "symbols": [{"name": "sceDevVu0PutTBit", "hash": "2cd9ab67bea0d3252d8465d07993afca71830e92", "variant": 0, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 878904320}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1006829567}, "child": {"skip": 20, "offset": 48, "next": [], "symbols": [{"name": "sceDevVu1PutDBit", "hash": "f354d77abadac04121162fed88dabd32f58cd558", "variant": 0, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 878905344}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1006829567}, "child": {"skip": 20, "offset": 48, "next": [], "symbols": [{"name": "sceDevVu1PutTBit", "hash": "d92abf4bc84223c715fd920b4675779e4418aeba", "variant": 0, "library": "libdev"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1212409856}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 811728898}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 272629763}, "child": {"skip": 52, "offset": 64, "next": [], "symbols": [{"name": "sceDevVu0Sync", "hash": "03c1894378ea8f31c92fc6800aa135cc56d44a3a", "variant": 0, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 604241921}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 811728911}, "child": {"skip": 32, "offset": 44, "next": [], "symbols": [{"name": "sceVuCheckBusy", "hash": "4cde66b9b38c96fb39e0728bb78ca301f867c761", "variant": 0, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 811729408}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 272629763}, "child": {"skip": 60, "offset": 72, "next": [], "symbols": [{"name": "sceDevVu1Sync", "hash": "8537337d72835c789b65b38d199c9f084e00d547", "variant": 0, "library": "libdev"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 814022655}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1220859904}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 16, "next": [], "symbols": [{"name": "sceDevVu0Exec", "hash": "de159ef04e81c8b0f4380a337924cc6512cda748", "variant": 0, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 1220868096}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 16, "next": [], "symbols": [{"name": "sceDevVu1Exec", "hash": "66cf70031e905e8261ced178ae3a600c5f461902", "variant": 0, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 272898}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 748814496}, "child": {"skip": 104, "offset": 116, "next": [], "symbols": [{"name": "sjis2jis", "hash": "8d99903d0c63f52407afe905755a52531f90648e", "variant": 0, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 813891328}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 272629767}, "child": {"skip": 36, "offset": 48, "next": [], "symbols": [{"name": "sceDevFontKnj2Chr", "hash": "edc3348b67f729c2c3ec9671a3410d9695ba2762", "variant": 0, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 813891711}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 273346}, "child": {"skip": 112, "offset": 124, "next": [], "symbols": [{"name": "sceCccIsValidJIS", "hash": "e628971c227ba4379f1644fbcc1f102a2c865fd3", "variant": 0, "library": "libccc"}]}}], "symbols": []}}, {"match": {"value": 746717312}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 339738628}, "child": {"skip": 140, "offset": 152, "next": [], "symbols": [{"name": "sceCccIsValidSJIS", "hash": "cdd4575dc103c1994eec6ac7397ba7535caf0fed", "variant": 0, "library": "libccc"}]}}], "symbols": []}}, {"match": {"value": 266754}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2695102465}, "child": {"skip": 8, "offset": 20, "next": [], "symbols": [{"name": "__sceEENet__putshort", "hash": "6882b63b89bf9f70fd7f1aa34a57221445d4bd5a", "variant": 0, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1212338176}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 12, "next": [], "symbols": [{"name": "sceDevVu0GetTpc", "hash": "614a614590e1fb5afb5c0365881bbe750e761244", "variant": 0, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 3701604360}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 666763248}, "child": {"skip": 12, "offset": 20, "next": [{"match": {"value": 1212549120}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4288872448}, "child": {"skip": 36, "offset": 64, "next": [], "symbols": [{"name": "sceVu0MemWriteQ", "hash": "555a52a10d8157416fce7de5dae9995e7606b52f", "variant": 0, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 4288872448}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2074214400}, "child": {"skip": 36, "offset": 64, "next": [], "symbols": [{"name": "sceVu0MemWriteQ", "hash": "0077402190592b3f86a57c4178882ca5f0ce4d36", "variant": 0, "library": "libdev"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1212549120}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1210255360}, "child": {"skip": 60, "offset": 68, "next": [], "symbols": [{"name": "sceVu0MemReadQ", "hash": "5143ccaad941eb51f69e5e544229229e0ef24ae5", "variant": 0, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 816185343}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 666763248}, "child": {"skip": 60, "offset": 68, "next": [], "symbols": [{"name": "sceVu0MemReadQ", "hash": "7a92e00307f1491353eba301983d50fccb95baaf", "variant": 0, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 666762960}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 4289855664}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707744}, "child)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": {"skip": 384, "offset": 396, "next": [], "symbols": [{"name": "sceDevVu1GetCnd", "hash": "c14254d864b5d9f31a85ba2e7e644b2fd49f2176", "variant": 500685049, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 4289724672}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707744}, "child": {"skip": 8, "offset": 20, "next": [{"match": {"value": 2382627040}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 276824074}, "child": {"skip": 132, "offset": 160, "next": [], "symbols": [{"name": "_isOutSizeOK", "hash": "1cbbae25126eb30fa57c2bfd2dc6a8471da037a5", "variant": 2513740965, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2382627064}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 276824074}, "child": {"skip": 132, "offset": 160, "next": [], "symbols": [{"name": "_isOutSizeOK", "hash": "add31486cfbd664dbb4b3295b747b57d3ce00d90", "variant": 2513740965, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006714752}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1149308928}, "child": {"skip": 376, "offset": 388, "next": [], "symbols": [{"name": "shadowbox_calc", "hash": "6f8c09a5ea95cf4ab57546289f2adba26d0c9159", "variant": 4228902184, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 4290642208}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707752}, "child": {"skip": 496, "offset": 508, "next": [], "symbols": [{"name": "sceNetGlueGethostbyname", "hash": "1e33bddbfcf8f084c5a2cdc386edc6ce4624278c", "variant": 3141081580, "library": "netglue_insck"}]}}], "symbols": []}}, {"match": {"value": 4289069312}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290183296}, "child": {"skip": 1368, "offset": 1380, "next": [], "symbols": [{"name": "__sceEENeticmp_input", "hash": "00fa17194452a87066c549dc928daf99e16d95ac", "variant": 3581908070, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 12597293}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290052368}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 604373012}, "child": {"skip": 384, "offset": 400, "next": [], "symbols": [{"name": "BN_sqr", "hash": "7bbfe96d0580721720a0ff3ca89dd3b9ff02ce2b", "variant": 3353185600, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 4290642208}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290183440}, "child": {"skip": 1296, "offset": 1312, "next": [], "symbols": [{"name": "sha1_block", "hash": "397b9e7a944545d04b5d2c33bf29a477ad280971", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 14381}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 278921235}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 614727679}, "child": {"skip": 8, "offset": 20, "next": [{"match": {"value": 885403680}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1007226880}, "child": {"skip": 64, "offset": 92, "next": [], "symbols": [{"name": "sceDevGifPutFifo", "hash": "8d31a56155b005daf43967d7f547acdd1825d9b4", "variant": 0, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 885405696}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1007226880}, "child": {"skip": 64, "offset": 92, "next": [], "symbols": [{"name": "sceDevVif0PutFifo", "hash": "d01814532282e0b1eb97c9092a5f300462baebcc", "variant": 0, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 885406720}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1007226880}, "child": {"skip": 64, "offset": 92, "next": [], "symbols": [{"name": "sceDevVif1PutFifo", "hash": "5a0f38b0541f1264252095b381afa638d6f82125", "variant": 0, "library": "libdev"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 278921234}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 614727679}, "child": {"skip": 84, "offset": 96, "next": [], "symbols": [{"name": "sceDevVif1GetFifo", "hash": "c3e676ca8e186dc9448aad01608715ec21351a6c", "variant": 0, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 16429}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2424700928}, "child": {"skip": 16, "offset": 28, "next": [{"match": {"value": 619118599}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 341901305}, "child": {"skip": 52, "offset": 88, "next": [], "symbols": [{"name": "decode_sleb128", "hash": "a49eca4cd58fdcba4f586af1db0e8c6456200f07", "variant": 0, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 16924709}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 341901305}, "child": {"skip": 44, "offset": 80, "next": [], "symbols": [{"name": "decode_sleb128", "hash": "cab970784b2444f0dbc57987a053ac129a1315dd", "variant": 0, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 281018391}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 16429}, "child": {"skip": 96, "offset": 108, "next": [], "symbols": [{"name": "keypoint", "hash": "71711c6882d456e9646f880181946a1261455f5a", "variant": 0, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 415236119}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 16429}, "child": {"skip": 96, "offset": 108, "next": [], "symbols": [{"name": "keypoint", "hash": "6c9fd89ceccf3f74180384f9d4d9d5d89c2614af", "variant": 0, "library": "libhip"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 337984}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 405632}, "child": {"skip": 12, "offset": 20, "next": [{"match": {"value": 878917664}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 32, "next": [], "symbols": [{"name": "sceDevVif0PutErr", "hash": "72d2fb4152443b9dddd0edee669407a0da6c72e6", "variant": 0, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 878918688}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 32, "next": [], "symbols": [{"name": "sceDevVif1PutErr", "hash": "2c92b37f387ba7bc17c5fc3aa40bdcffb013fec6", "variant": 0, "library": "libdev"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006862336}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1007124735}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1007190016}, "child": {"skip": 124, "offset": 136, "next": [], "symbols": [{"name": "sceDevFontDefault", "hash": "1f48be4125aa4e589bc9ebd60f290272f342c8ce", "variant": 0, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 2355232768}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 272891912}, "child": {"skip": 40, "offset": 52, "next": [], "symbols": [{"name": "kFindAddress", "hash": "8ca94cb21e4e2f45afd4367c083cbd29ba34a35d", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2357329944}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 2357592092}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4528161}, "child": {"skip": 52, "offset": 64, "next": [], "symbols": [{"name": "sceDevFontIdle", "hash": "032b8d27775b43a962da60c79f243dc009cc074f", "variant": 0, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 2894397612}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 272629764}, "child": {"skip": 24, "offset": 36, "next": [], "symbols": [{"name": "SSL_CTX_set_verify", "hash": "584edd670fbe5ce4eee9e1ef460c4ad92a8e6963", "variant": 1939852337, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 820445439}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 822608127}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 818282751}, "child": {"skip": 44, "offset": 56, "next": [], "symbols": [{"name": "sceDevFontSetColor", "hash": "2c0950b7be42afc0ee3bad8248c9d244736456c2", "variant": 0, "library": "libdev"}]}}], "symbol)PS2SDB", 8192}, + std::string_view{R"PS2SDB(s": []}}, {"match": {"value": 77594646}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 822608127}, "child": {"skip": 92, "offset": 104, "next": [], "symbols": [{"name": "sceDevConsPiece", "hash": "b69c5ca66439d7258fe8ec5988d40e253911cbf9", "variant": 0, "library": "libdev"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1007419396}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006764036}, "child": {"skip": 448, "offset": 456, "next": [], "symbols": [{"name": "sceDevConsDraw", "hash": "4523331c2d5d8fceb982d865789f6c6b17bac861", "variant": 4293748042, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 666763040}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289986640}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289921088}, "child": {"skip": 432, "offset": 448, "next": [], "symbols": [{"name": "sceOpen", "hash": "85c4d521110393e1bc0dbeed9a924e367b0f3059", "variant": 613751966, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 4289921200}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289855648}, "child": {"skip": 192, "offset": 208, "next": [], "symbols": [{"name": "__sceEENetrt_missmsg", "hash": "9fccf0cfb68bc23bab2f30a0e7dcaaa3a935072b", "variant": 3732132994, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4290642112}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 548, "offset": 564, "next": [], "symbols": [{"name": "sceEENetCtlInit", "hash": "424ac439167be534c34b48d3ada230953471af7f", "variant": 4107568470, "library": "eenetctl"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855680}, "child": {"skip": 308, "offset": 320, "next": [], "symbols": [{"name": "sppp_chap_my_TO", "hash": "e677d00e40aae2753bacd051cdcd346eb72349cd", "variant": 2620752256, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2946760736}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290117792}, "child": {"skip": 416, "offset": 428, "next": [], "symbols": [{"name": "sceDevConsDrawS", "hash": "0c3b36d30f277d68349dc338d95afbc16cfb77d3", "variant": 2929768166, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 4290183344}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290117792}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 12630061}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289986688}, "child": {"skip": 80, "offset": 100, "next": [{"match": {"value": 268435574}, "child": {"skip": 0, "offset": 104, "next": [{"match": {"value": 604176383}, "child": {"skip": 516, "offset": 624, "next": [], "symbols": [{"name": "sceRead", "hash": "139a38e95428460316ce641a50a6e45ab229adc5", "variant": 3409993348, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 268435570}, "child": {"skip": 0, "offset": 104, "next": [{"match": {"value": 604176383}, "child": {"skip": 36, "offset": 144, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 148, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 456, "offset": 608, "next": [], "symbols": [{"name": "sceRead", "hash": "46ff5d6d48639c8f3d585664a935ae6cf63fd6fb", "variant": 1211451435, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604110849}, "child": {"skip": 0, "offset": 148, "next": [{"match": {"value": 2946629652}, "child": {"skip": 456, "offset": 608, "next": [], "symbols": [{"name": "sceRead", "hash": "133537e17b3433c05c061b0ac36ad41e66b7918d", "variant": 483306280, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10532909}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290052240}, "child": {"skip": 648, "offset": 668, "next": [], "symbols": [{"name": "ASN1_d2i_bio", "hash": "61eece38cca54da716c833f605b1bc5a7800db0a", "variant": 1532255485, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290642112}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290183344}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 12644397}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290052240}, "child": {"skip": 600, "offset": 620, "next": [], "symbols": [{"name": "sceRead", "hash": "1ef3fc021b12d52b44f0a9ea3483c8116fecdc0f", "variant": 1354571893, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 605945857}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290117792}, "child": {"skip": 444, "offset": 464, "next": [], "symbols": [{"name": "_waitBdecOut", "hash": "77b500c310f6e0e7db3f62ff1039a0d9da4ec9d5", "variant": 1043190264, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290117792}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 61485}, "child": {"skip": 500, "offset": 516, "next": [], "symbols": [{"name": "i2d_DSAPublicKey", "hash": "c5d13487e9823a29d73e71caab2f45982bcdc69e", "variant": 3828462530, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 4289724480}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 16838701}, "child": {"skip": 1992, "offset": 2008, "next": [], "symbols": [{"name": "time_mi_export", "hash": "8c9d99636d2423e3a27a1585c883bee2662591e7", "variant": 2717274543, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290052240}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289790032}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 12625965}, "child": {"skip": 84, "offset": 100, "next": [{"match": {"value": 268435594}, "child": {"skip": 0, "offset": 104, "next": [{"match": {"value": 604176383}, "child": {"skip": 596, "offset": 704, "next": [], "symbols": [{"name": "sceWrite", "hash": "86065333db2a4444794d80b4f0d42bc7c6a9a775", "variant": 4053763221, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 268435588}, "child": {"skip": 0, "offset": 104, "next": [{"match": {"value": 604176383}, "child": {"skip": 572, "offset": 680, "next": [], "symbols": [{"name": "sceWrite", "hash": "f1ee046624c0c6ada9e213e24ff8018ba6132431", "variant": 490401186, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855584}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8431661}, "child": {"skip": 1780, "offset": 1796, "next": [], "symbols": [{"name": "_scePFontUpdateTex", "hash": "ac751e0b182e639e507c4feb68c1ce6af791bc49", "variant": 1011365144, "library": "libpfont"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290117792}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289790032}, "child": {"skip": 692, "offset": 704, "next": [], "symbols": [{"name": "sceWrite", "hash": "93d4b75e0c75a3f9ea4d0b158eea2b0d513a8e6e", "variant": 1697893487, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 4289855584}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290183344}, "child": {"skip": 96, "offset": 108, "next": [{"match": {"value": 274726926}, "child": {"skip": 0, "offset": 112, "next": [{"match": {"value": 2724331600}, "child": {"skip": 456, "offset": 572, "next": [], "symbols": [{"name": "sceChstat", "hash": "33be0027c7dff61655594bc22b9df086e37cecea", "variant": 937126638, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 274726928}, "child": {"skip": 0, "offset": 112, "next": [{"match": {"value": 2724331600}, "child": {"skip": 472, "offset": 588, "next": [], "symbols": [{"name": "sceChstat", "hash": "de600a83e460b86fcb)PS2SDB", 8192}, + std::string_view{R"PS2SDB(843108613f133647f2f50c", "variant": 3737968178, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724480}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290183344}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8421421}, "child": {"skip": 272, "offset": 288, "next": [{"match": {"value": 268435526}, "child": {"skip": 0, "offset": 292, "next": [{"match": {"value": 604176377}, "child": {"skip": 324, "offset": 620, "next": [], "symbols": [{"name": "sceMount", "hash": "7bae7b63f6cc47473123f420ede646d8ff20e020", "variant": 4283539079, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 268435531}, "child": {"skip": 0, "offset": 292, "next": [{"match": {"value": 604176377}, "child": {"skip": 344, "offset": 640, "next": [], "symbols": [{"name": "sceMount", "hash": "453fa1bf6aa061cf3c244a4e8217aea2dc5454d6", "variant": 1408018003, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290117792}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10518573}, "child": {"skip": 1924, "offset": 1940, "next": [], "symbols": [{"name": "getanswer", "hash": "793e7cb623106a21e1d216ad59e6f31af7113118", "variant": 3998092098, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289790032}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290642112}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8423469}, "child": {"skip": 188, "offset": 204, "next": [{"match": {"value": 339738629}, "child": {"skip": 0, "offset": 208, "next": [{"match": {"value": 0}, "child": {"skip": 356, "offset": 568, "next": [], "symbols": [{"name": "sceDevctl", "hash": "7f76ae7a9557d79ab1b4678500a801923424972d", "variant": 2787929761, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 339738627}, "child": {"skip": 0, "offset": 208, "next": [{"match": {"value": 0}, "child": {"skip": 348, "offset": 560, "next": [], "symbols": [{"name": "sceDevctl", "hash": "708a11121749ff26658d0b2d40cc66434c643592", "variant": 630240718, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290052240}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8423469}, "child": {"skip": 464, "offset": 480, "next": [], "symbols": [{"name": "sceReadlink", "hash": "94a16055103ad45e1a8a349c732678b1e03ab8f7", "variant": 2474827037, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289921136}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290642112}, "child": {"skip": 668, "offset": 680, "next": [], "symbols": [{"name": "sceDevctl", "hash": "9f6b308edc9cc99eda6d55295cc6dcc9261db2c5", "variant": 1025101351, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176496}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289790096}, "child": {"skip": 344, "offset": 356, "next": [], "symbols": [{"name": "scePadRead", "hash": "704ed268e8fb174722966b6ab9de0c240737cb59", "variant": 3166440074, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 10510381}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006796799}, "child": {"skip": 48, "offset": 60, "next": [{"match": {"value": 2812477452}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 2947285008}, "child": {"skip": 36, "offset": 104, "next": [], "symbols": [{"name": "_sprintf_r", "hash": "3d22e79d4456d5972e17cc3a51ac0d6187f08ac4", "variant": 1385219835, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 3886809256}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 3886940332}, "child": {"skip": 52, "offset": 120, "next": [], "symbols": [{"name": "_sprintf_r", "hash": "0a7d03e006fc82b15b84af5e69db2d8f0f2200da", "variant": 874707607, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290117824}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 665190464}, "child": {"skip": 800, "offset": 812, "next": [], "symbols": [{"name": "_slice0", "hash": "c0a2d0af6be4c6941bd06ae8e105e791c3fcc56e", "variant": 247218215, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 4289724544}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1007681536, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 212, "offset": 224, "next": [], "symbols": [{"name": "sceMtapGetInfo", "hash": "2d1394da1c59a0b542fe12fd6a3ef63711010969", "variant": 3848047402, "library": "libmtap"}]}}], "symbols": []}}, {"match": {"value": 4289855648}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289790096}, "child": {"skip": 28, "offset": 40, "next": [{"match": {"value": 406847522}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 34861}, "child": {"skip": 164, "offset": 212, "next": [], "symbols": [{"name": "SetHierarchy", "hash": "1d5f079d19f6c4aa8e3f57b6b9eb4e78c9e827aa", "variant": 3855538999, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 406847523}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 34861}, "child": {"skip": 168, "offset": 216, "next": [], "symbols": [{"name": "SetHierarchy", "hash": "18456fb31fda99a72c54c2f952914b7691bfd7dd", "variant": 3257983949, "library": "libhip"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604373000}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290642112}, "child": {"skip": 360, "offset": 372, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "getTbp"}}, "child": {"skip": 0, "offset": 376, "next": [{"match": {"value": 139650}, "child": {"skip": 1132, "offset": 1512, "next": [], "symbols": [{"name": "DecodeTim2Image", "hash": "fd381c46c5f0e76daceb3d2ce62e9cbcc849585d", "variant": 887440211, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "getLocalTbp"}}, "child": {"skip": 0, "offset": 376, "next": [{"match": {"value": 0}, "child": {"skip": 1132, "offset": 1512, "next": [], "symbols": [{"name": "DecodeTim2Image", "hash": "8613de418eebc42db94638c868a3a0f009266453", "variant": 1655960620, "library": "libhip"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289986688}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289790032}, "child": {"skip": 616, "offset": 628, "next": [], "symbols": [{"name": "sysctl_iflist", "hash": "fdce80793c481b9581fcb42be2d42978d2c80eaa", "variant": 3174065510, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789968}, "child": {"skip": 572, "offset": 584, "next": [], "symbols": [{"name": "__sceEENetudp_output", "hash": "c6a05446a39a321ed4b3da9af0e20dc0b3b83f1d", "variant": 317342839, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 604373160}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289790144}, "child": {"skip": 4, "offset": 16, "next": [{"match": {"value": 10520621}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8421421}, "child": {"skip": 140, "offset": 164, "next": [], "symbols": [{"name": "_sce_eenet_sppp_config_mtu", "hash": "113b12e75080a05bf536f23e6213e7c6313d6f43", "variant": 1871962169, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 8423469}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 10518573}, "child": {"skip": 112, "offset": 136, "next": [], "symbols": [{"name": "_sce_eenet_sppp_is_ipcp_up", "hash": "11edfc721b40ed3804c394cdf06ecaf15247796c", "variant": 1811154577, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724560}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289921216}, "child": {"skip": 280, "offset": 292, "next": [], "symbols": [{"name": "ppp_set_error_code", "hash": "6d393d52a680af8421fa8fec4dcf14ab686ca8b6", "variant": 2087250596, "library": "libeenet"}]}})PS2SDB", 8192}, + std::string_view{R"PS2SDB(], "symbols": []}}, {"match": {"value": 10504237}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290642112}, "child": {"skip": 540, "offset": 552, "next": [], "symbols": [{"name": "EVP_DecodeUpdate", "hash": "61e06623954aff53c29a0a693df0507338c1ba0c", "variant": 1615419681, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 8392749}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290642112}, "child": {"skip": 556, "offset": 568, "next": [], "symbols": [{"name": "EVP_BytesToKey", "hash": "1a1bda71b334766147cbe554c0147eb72b7fda17", "variant": 47251357, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 1006764033}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 876777472}, "child": {"skip": 1996, "offset": 2008, "next": [], "symbols": [{"name": "ssl3_get_key_exchange", "hash": "7d30456bed03c55b2508088b1bf3e28f86f523b9", "variant": 3592266475, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 4290052272}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 664928288}, "child": {"skip": 392, "offset": 404, "next": [], "symbols": [{"name": "rsa_sign_cb", "hash": "cf04fe08450da73c2b76e048670fba56d8ac4298", "variant": 1516213615, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8400941}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1007222784, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 3703701536}, "child": {"skip": 120, "offset": 132, "next": [], "symbols": [{"name": "InsertAlarm", "hash": "0b71c7eb7da3ef8ca6d4157d84a846e34120d04a", "variant": 1302115360, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 604242308}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 610467840, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 232, "offset": 248, "next": [], "symbols": [{"name": "_sceMcpWriteSysInfo", "hash": "9c0c5195eba4f2a4b77b8e5bc34c5e69bc7ccee8", "variant": 2302575815, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 2428633088}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 610729984, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 180, "offset": 196, "next": [], "symbols": [{"name": "lla_snprintf", "hash": "2e25abd2adc1d7952b9bbb17ed97f3b2c0c52b63", "variant": 789700774, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006829567}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2361655296}, "child": {"skip": 76, "offset": 88, "next": [], "symbols": [{"name": "sceDevConsClear", "hash": "dd23c2ae494d442f11649e16781e0405ea7ee367", "variant": 0, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 79757323}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 604110860}, "child": {"skip": 64, "offset": 76, "next": [], "symbols": [{"name": "sceSifRemoveCmdHandler", "hash": "0b79685eca593ce98d637afc5085692c7f4b753f", "variant": 1738404888, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 666763232}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 616890367}, "child": {"skip": 120, "offset": 132, "next": [], "symbols": [{"name": "SetDebugHandler", "hash": "5489caa7b1c700198b7ecaa15e7286d22081a15b", "variant": 716606873, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176496}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 604241948}, "child": {"skip": 8, "offset": 20, "next": [{"match": {"value": 666763248}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 20, "offset": 48, "next": [{"match": {"value": 274726916}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 4141}, "child": {"skip": 8, "offset": 64, "next": [{"match": {"value": 2353135704}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 3753836544}, "child": {"skip": 8, "offset": 80, "next": [], "symbols": [{"name": "scePadGetFrameCount", "hash": "82b30738816320d4c4ff5d6e518dfea7403d8084", "variant": 1175353635, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 2420244593}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 3753836544}, "child": {"skip": 8, "offset": 80, "next": [], "symbols": [{"name": "scePadGetReqState", "hash": "6c14d45d989897cdf73ac52c8d1de54fa3cd7d18", "variant": 1175353635, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 341835779}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 12591149}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 268435460}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 4141}, "child": {"skip": 8, "offset": 72, "next": [{"match": {"value": 2353135704}, "child": {"skip": 0, "offset": 76, "next": [{"match": {"value": 3753836544}, "child": {"skip": 8, "offset": 88, "next": [], "symbols": [{"name": "scePadGetFrameCount", "hash": "cdc38677048a7a3175b043e66ee443563d7e7834", "variant": 1261505168, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 2420244593}, "child": {"skip": 0, "offset": 76, "next": [{"match": {"value": 3753836544}, "child": {"skip": 8, "offset": 88, "next": [], "symbols": [{"name": "scePadGetReqState", "hash": "e55541ae71f899c4e4127480e2cb55125d4709b4", "variant": 1261505168, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 268435459}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 4141}, "child": {"skip": 4, "offset": 68, "next": [{"match": {"value": 604377087}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 3753836544}, "child": {"skip": 8, "offset": 84, "next": [], "symbols": [{"name": "scePadEnterPressMode", "hash": "8cab48a4a7ecb766c01fdb5a1d5e3444439ae373", "variant": 1623689557, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 12333}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 3753836544}, "child": {"skip": 8, "offset": 84, "next": [], "symbols": [{"name": "scePadExitPressMode", "hash": "1cd76a7f460323c945ed8bb50fe4e20b66a63037", "variant": 1623689557, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 274726926}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 604110947}, "child": {"skip": 64, "offset": 120, "next": [], "symbols": [{"name": "scePadGetState", "hash": "bc2ba54693efaf1b65614c037421d7c771151b79", "variant": 1175353635, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 274726941}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 4141}, "child": {"skip": 124, "offset": 180, "next": [], "symbols": [{"name": "scePadGetButtonMask", "hash": "6de6267c96fee2b5a2feedb2ccd487283c078376", "variant": 1175353635, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 274726919}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 4141}, "child": {"skip": 36, "offset": 92, "next": [], "symbols": [{"name": "scePadInfoPressMode", "hash": "9202e24754618ac137d5e0fe68efeb1426d9f7c6", "variant": 3749762690, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666763120}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 20, "offset": 48, "next": [{"match": {"value": 341835779}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 12591149}, "child": {"skip": 64, "offset": 120, "next": [], "symbols": [{"name": "scePadGetState", "hash": "e2abe0704d6ea9271c258d55ed0074b18dcdbc7d", "variant": 1261505168, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 274726919}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"va)PS2SDB", 8192}, + std::string_view{R"PS2SDB(lue": 12591149}, "child": {"skip": 24, "offset": 80, "next": [{"match": {"value": 268435476}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 4141}, "child": {"skip": 88, "offset": 176, "next": [], "symbols": [{"name": "scePadGetButtonMask", "hash": "31f50dfe987567d6566d2f64aa6e7315a7f0ab6b", "variant": 1175353635, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 268435464}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 4141}, "child": {"skip": 40, "offset": 128, "next": [], "symbols": [{"name": "scePadInfoPressMode", "hash": "7f90702753cad671b07dc2f67a586cd032574a19", "variant": 1175353635, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604110944}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 604242304}, "child": {"skip": 36, "offset": 48, "next": [{"match": {"value": 276824068}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 4141}, "child": {"skip": 8, "offset": 64, "next": [{"match": {"value": 2353135704}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 3753836544}, "child": {"skip": 8, "offset": 80, "next": [], "symbols": [{"name": "scePadGetFrameCount", "hash": "8c71d33c5245567e31a203c36dca82705a3b7f19", "variant": 1175353635, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 2420244593}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 3753836544}, "child": {"skip": 8, "offset": 80, "next": [], "symbols": [{"name": "scePadGetReqState", "hash": "f8d55e671fb0b0c59c91ce6b77d89d2218cadda5", "variant": 1175353635, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 276824078}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 604110947}, "child": {"skip": 64, "offset": 120, "next": [], "symbols": [{"name": "scePadGetState", "hash": "c0103018c99b0d289eef3ef2602920cf048a76db", "variant": 1175353635, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 276824093}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 4141}, "child": {"skip": 124, "offset": 180, "next": [], "symbols": [{"name": "scePadGetButtonMask", "hash": "e1e075374e664de51eedf16aac54894834b6fd0f", "variant": 1175353635, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 276824071}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 4141}, "child": {"skip": 36, "offset": 92, "next": [], "symbols": [{"name": "scePadInfoPressMode", "hash": "4621a73cd7a53e149a7a6c6bf6ab62fd2316ae49", "variant": 3749762690, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 343932931}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 12591149}, "child": {"skip": 12, "offset": 68, "next": [{"match": {"value": 604377087}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 3753836544}, "child": {"skip": 8, "offset": 84, "next": [], "symbols": [{"name": "scePadEnterPressMode", "hash": "466a0520cabad416fd1dd1494c388176c49fd1ee", "variant": 1623689557, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 12333}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 3753836544}, "child": {"skip": 8, "offset": 84, "next": [], "symbols": [{"name": "scePadExitPressMode", "hash": "9671b5961ce6aa9e2d4da689df34258b8762d094", "variant": 1623689557, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604241922}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 666763248}, "child": {"skip": 132, "offset": 144, "next": [], "symbols": [{"name": "get_reg_addr", "hash": "85605bc450eace72e6cfe0c93c305ebf3fab609f", "variant": 2770457017, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 14381}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2361590096}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 604110851}, "child": {"skip": 100, "offset": 116, "next": [], "symbols": [{"name": "_updateTempTackData", "hash": "fd2b7b5c867c5d78221ed51978d30c99d0d8f9c6", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2361590120}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 604110851}, "child": {"skip": 100, "offset": 116, "next": [], "symbols": [{"name": "_updateTempTackData", "hash": "158cb53dc6330d21c3670b13ba6b6c4b28ac85e0", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 3703701504}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2361589776}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10620948}, "child": {"skip": 136, "offset": 152, "next": [], "symbols": [{"name": "_sysbitFlush", "hash": "9a02e17e66e4ca4c8abbb77a5b4e1cdaf2592f00", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2361589784}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 136764}, "child": {"skip": 448, "offset": 464, "next": [], "symbols": [{"name": "_system_header", "hash": "4115f10989468ad4cf06aedb82460920159ffc53", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10502189}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 3703701504}, "child": {"skip": 124, "offset": 136, "next": [], "symbols": [{"name": "_sysbitFlush", "hash": "ced02cd0ae83757ed905f099ffbbd3dcde4c8e44", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2361524252}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2361655304}, "child": {"skip": 140, "offset": 152, "next": [{"match": {"value": 1006768128}, "child": {"skip": 0, "offset": 156, "next": [{"match": {"value": 1006833664}, "child": {"skip": 124, "offset": 284, "next": [], "symbols": [{"name": "sceIpuRestartDMA", "hash": "7b72486265ac301d801a108241554720e18696a1", "variant": 0, "library": "libipu"}]}}], "symbols": []}}, {"match": {"value": 0}, "child": {"skip": 0, "offset": 156, "next": [{"match": {"value": 1006768128}, "child": {"skip": 124, "offset": 284, "next": [], "symbols": [{"name": "sceIpuRestartDMA", "hash": "d10b1fe1c5f1a7e70452c677381d30fe59e801e9", "variant": 0, "library": "libipu"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2428633318}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 272629790}, "child": {"skip": 128, "offset": 140, "next": [], "symbols": [{"name": "sceHiGsCtxSendClear", "hash": "b9bb6eb7c5d28a9ae38867fe9a601338916e5219", "variant": 0, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 2359558152}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 75694087}, "child": {"skip": 56, "offset": 68, "next": [], "symbols": [{"name": "sceGpAddChain2", "hash": "d7627e46c8e76fcd377c17239baa36482d4fc43b", "variant": 0, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 338176}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2361589760}, "child": {"skip": 60, "offset": 72, "next": [], "symbols": [{"name": "sceGpSetStartLevel", "hash": "e3465ae2e3ae5b6185a7042336431ba30d151c5e", "variant": 0, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 1006712962}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 874579472}, "child": {"skip": 92, "offset": 104, "next": [], "symbols": [{"name": "ChangePartVolumeExpression", "hash": "84f50a9c90fe6a683875a56ce672667b344b5dc1", "variant": 1214093237, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 815988863}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2428633163}, "child": {"skip": 48, "offset": 60, "next": [], "symbols": [{"name": "sceSynthesizerChangeNrpnLfoDepth", "hash": "cea82173ee69a1b5f48af8e88be73264dc34beec", "variant": 2240525433, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 2362966924}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2361590664}, "child": {"skip": 632, "offset": 644, "next": [], "symbols": [{"name": "_scePFontSetupTexEnv", "has)PS2SDB", 8192}, + std::string_view{R"PS2SDB(h": "2d876a961ced8e508349f842ac5de95407001f44", "variant": 0, "library": "libpfont"}]}}], "symbols": []}}, {"match": {"value": 2495955512}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1352663045}, "child": {"skip": 416, "offset": 428, "next": [], "symbols": [{"name": "sppp_lcp_open", "hash": "f5d74a1a5e2cc544ab94fe908972dea9b1d42245", "variant": 2532430152, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 10504237}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 281018393}, "child": {"skip": 112, "offset": 124, "next": [], "symbols": [{"name": "sceHTTPLibStrtodi", "hash": "9e649be9388202db924dbcbe5ab63a1c6f0026e3", "variant": 2694102125, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2361720836}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 413138960}, "child": {"skip": 72, "offset": 84, "next": [], "symbols": [{"name": "bn_fix_top", "hash": "71c05786b99ad50eaecc1294122082c96db9d346", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 666763248}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": "i2d_DSAparams"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "d2i_DSAparams"}}, "child": {"skip": 28, "offset": 44, "next": [], "symbols": [{"name": "do_DSAparams_dup", "hash": "2dda7fa9853c9b2c64e6099dcf7bb506f35bf9f9", "variant": 4217918214, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": "i2d_X509_EXTENSION"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "d2i_X509_EXTENSION"}}, "child": {"skip": 28, "offset": 44, "next": [], "symbols": [{"name": "X509_EXTENSION_dup", "hash": "2dda7fa9853c9b2c64e6099dcf7bb506f35bf9f9", "variant": 194083655, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": "i2d_X509_NAME"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "d2i_X509_NAME"}}, "child": {"skip": 28, "offset": 44, "next": [], "symbols": [{"name": "X509_NAME_dup", "hash": "2dda7fa9853c9b2c64e6099dcf7bb506f35bf9f9", "variant": 2758627996, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": "i2d_X509_NAME_ENTRY"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "d2i_X509_NAME_ENTRY"}}, "child": {"skip": 28, "offset": 44, "next": [], "symbols": [{"name": "X509_NAME_ENTRY_dup", "hash": "2dda7fa9853c9b2c64e6099dcf7bb506f35bf9f9", "variant": 1246282446, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 10493997}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707456}, "child": {"skip": 4, "offset": 20, "next": [{"match": {"value": 872775682}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 3753836544}, "child": {"skip": 8, "offset": 36, "next": [], "symbols": [{"name": "EVP_OBJ_add_cipher_alias", "hash": "ffb91e617e4ef08261701e1474b60f55730d25ba", "variant": 3560921271, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 872775681}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 3753836544}, "child": {"skip": 8, "offset": 36, "next": [], "symbols": [{"name": "EVP_OBJ_add_digest_alias", "hash": "0d55575b421884d7f7dc0362d5eb83482b8f7fb6", "variant": 3560921271, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10500141}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 666763248}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": "X509_new"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "d2i_X509"}}, "child": {"skip": 28, "offset": 48, "next": [], "symbols": [{"name": "d2i_X509_bio", "hash": "323a42b30d3366ded9dbef7ecfbc693fb79a5a77", "variant": 2293247285, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": "X509_CRL_new"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "d2i_X509_CRL"}}, "child": {"skip": 28, "offset": 48, "next": [], "symbols": [{"name": "d2i_X509_CRL_bio", "hash": "323a42b30d3366ded9dbef7ecfbc693fb79a5a77", "variant": 634165371, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 612630552}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 816120063}, "child": {"skip": 16, "offset": 24, "next": [], "symbols": [{"name": "sceDevConsSetColor", "hash": "ea44f1c6837c166e423b472c65e47ac261d142ae", "variant": 219449794, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 666762048}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 4289790992}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289070224}, "child": {"skip": 4, "offset": 16, "next": [{"match": {"value": 4289922096}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 60825645}, "child": {"skip": 572, "offset": 596, "next": [], "symbols": [{"name": "sceDevConsPrintf", "hash": "c912b2bdad338e1fa9c363997ddcf5040b5f1d8c", "variant": 1842651700, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 4289135768}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 10498093}, "child": {"skip": 580, "offset": 604, "next": [], "symbols": [{"name": "sceDevConsPrintf", "hash": "794aa6efe57178160e7f0c70a85a91e65cc9ffb0", "variant": 923441559, "library": "libdev"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290184352}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290053248}, "child": {"skip": 432, "offset": 444, "next": [], "symbols": [{"name": "PEM_do_header", "hash": "01d9495fa2f04e94b4d7fc459749c61ed1915953", "variant": 2320647751, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 65011720}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 2944663552, "relocation": {"type": "MIPS_GPREL16", "symbol": ".sdata"}}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "sceSdCallBack", "hash": "df64137a004d30a15c13927c9642063972d3d686", "variant": 3674353051, "library": "libsdr"}, {"name": "sceSpu2RemoteCallBack", "hash": "df64137a004d30a15c13927c9642063972d3d686", "variant": 3674353051, "library": "librspu2"}]}}, {"match": {"value": 2693070860}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "sceDevConsAttribute", "hash": "3b0975dd727a1ec02a7ee40136377efd9197c6a9", "variant": 0, "library": "libdev"}]}}, {"match": {"value": 604176383}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "close", "hash": "6ff945fc330f7399332218593017afc7455e7acb", "variant": 0, "library": "libkernl"}, {"name": "ioctl", "hash": "6ff945fc330f7399332218593017afc7455e7acb", "variant": 0, "library": "libkernl"}, {"name": "lseek", "hash": "6ff945fc330f7399332218593017afc7455e7acb", "variant": 0, "library": "libkernl"}, {"name": "passwd_read_pw_string", "hash": "6ff945fc330f7399332218593017afc7455e7acb", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 604110849}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "isatty", "hash": "98ab17e54d84a098b4240053ee845921141318c1", "variant": 0, "library": "libkernl"}, {"name": "getpid", "hash": "98ab17e54d84a098b4240053ee845921141318c1", "variant": 0, "library": "libkernl"}, {"name": "finitef", "hash": "98ab17e54d84a098b4240053ee845921141318c1", "variant": 0, "library": "libm"}, {"name": "sceMpegDelete", "hash": "98ab17e54d84a098b4240053ee845921141318c1", "variant": 0, "library": "libmpeg"}, {"name": ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(sceDbcEnd", "hash": "98ab17e54d84a098b4240053ee845921141318c1", "variant": 0, "library": "libdbc"}, {"name": "ssl_ok", "hash": "98ab17e54d84a098b4240053ee845921141318c1", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 0}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "_sceFsSemInit", "hash": "7678540574197b420f17571673856a74783eb9d5", "variant": 0, "library": "libkernl"}, {"name": "_sceFsSigSema", "hash": "7678540574197b420f17571673856a74783eb9d5", "variant": 0, "library": "libkernl"}, {"name": "_sceFsSemExit", "hash": "7678540574197b420f17571673856a74783eb9d5", "variant": 0, "library": "libkernl"}, {"name": "_sceFsIntrSigSema", "hash": "7678540574197b420f17571673856a74783eb9d5", "variant": 0, "library": "libkernl"}, {"name": "__empty", "hash": "7678540574197b420f17571673856a74783eb9d5", "variant": 0, "library": "libgcc"}, {"name": "__unwinding_cleanup", "hash": "7678540574197b420f17571673856a74783eb9d5", "variant": 0, "library": "libgcc"}, {"name": "__malloc_lock", "hash": "7678540574197b420f17571673856a74783eb9d5", "variant": 0, "library": "libc"}, {"name": "__malloc_unlock", "hash": "7678540574197b420f17571673856a74783eb9d5", "variant": 0, "library": "libc"}, {"name": "__env_lock", "hash": "7678540574197b420f17571673856a74783eb9d5", "variant": 0, "library": "libc"}, {"name": "__env_unlock", "hash": "7678540574197b420f17571673856a74783eb9d5", "variant": 0, "library": "libc"}, {"name": "__sceEENetif_nullinput", "hash": "7678540574197b420f17571673856a74783eb9d5", "variant": 0, "library": "libeenet"}, {"name": "__sceEENetif_nullstart", "hash": "7678540574197b420f17571673856a74783eb9d5", "variant": 0, "library": "libeenet"}, {"name": "__sceEENetif_nullwatchdog", "hash": "7678540574197b420f17571673856a74783eb9d5", "variant": 0, "library": "libeenet"}, {"name": "__sceEENetif_nulldrain", "hash": "7678540574197b420f17571673856a74783eb9d5", "variant": 0, "library": "libeenet"}, {"name": "sppp_ipv6cp_init", "hash": "7678540574197b420f17571673856a74783eb9d5", "variant": 0, "library": "libeenet"}, {"name": "sppp_ipv6cp_up", "hash": "7678540574197b420f17571673856a74783eb9d5", "variant": 0, "library": "libeenet"}, {"name": "sppp_ipv6cp_down", "hash": "7678540574197b420f17571673856a74783eb9d5", "variant": 0, "library": "libeenet"}, {"name": "sppp_ipv6cp_open", "hash": "7678540574197b420f17571673856a74783eb9d5", "variant": 0, "library": "libeenet"}, {"name": "sppp_ipv6cp_close", "hash": "7678540574197b420f17571673856a74783eb9d5", "variant": 0, "library": "libeenet"}, {"name": "sppp_ipv6cp_TO", "hash": "7678540574197b420f17571673856a74783eb9d5", "variant": 0, "library": "libeenet"}, {"name": "sppp_ipv6cp_RCN_rej", "hash": "7678540574197b420f17571673856a74783eb9d5", "variant": 0, "library": "libeenet"}, {"name": "sppp_ipv6cp_RCN_nak", "hash": "7678540574197b420f17571673856a74783eb9d5", "variant": 0, "library": "libeenet"}, {"name": "sppp_ipv6cp_tlu", "hash": "7678540574197b420f17571673856a74783eb9d5", "variant": 0, "library": "libeenet"}, {"name": "sppp_ipv6cp_tld", "hash": "7678540574197b420f17571673856a74783eb9d5", "variant": 0, "library": "libeenet"}, {"name": "sppp_ipv6cp_tls", "hash": "7678540574197b420f17571673856a74783eb9d5", "variant": 0, "library": "libeenet"}, {"name": "sppp_ipv6cp_tlf", "hash": "7678540574197b420f17571673856a74783eb9d5", "variant": 0, "library": "libeenet"}, {"name": "sppp_ipv6cp_scr", "hash": "7678540574197b420f17571673856a74783eb9d5", "variant": 0, "library": "libeenet"}, {"name": "sppp_null", "hash": "7678540574197b420f17571673856a74783eb9d5", "variant": 0, "library": "libeenet"}, {"name": "flowpoint_output", "hash": "7678540574197b420f17571673856a74783eb9d5", "variant": 0, "library": "libhttps"}, {"name": "SSL_load_error_strings", "hash": "7678540574197b420f17571673856a74783eb9d5", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 4141}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "_sceFsDbChk", "hash": "0a5385cf4a659d302a43046ea0269e2b17a3ef1d", "variant": 0, "library": "libkernl"}, {"name": "isnanf", "hash": "0a5385cf4a659d302a43046ea0269e2b17a3ef1d", "variant": 0, "library": "libm"}, {"name": "isinff", "hash": "0a5385cf4a659d302a43046ea0269e2b17a3ef1d", "variant": 0, "library": "libm"}, {"name": "eofread", "hash": "0a5385cf4a659d302a43046ea0269e2b17a3ef1d", "variant": 0, "library": "libc"}, {"name": "_user_strerror", "hash": "0a5385cf4a659d302a43046ea0269e2b17a3ef1d", "variant": 0, "library": "libc"}, {"name": "sceMSIn_ATick", "hash": "0a5385cf4a659d302a43046ea0269e2b17a3ef1d", "variant": 0, "library": "libmsin"}, {"name": "sceMSIn_Load", "hash": "0a5385cf4a659d302a43046ea0269e2b17a3ef1d", "variant": 0, "library": "libmsin"}, {"name": "sceSEIn_ATick", "hash": "0a5385cf4a659d302a43046ea0269e2b17a3ef1d", "variant": 0, "library": "libsein"}, {"name": "sceSEIn_Load", "hash": "0a5385cf4a659d302a43046ea0269e2b17a3ef1d", "variant": 0, "library": "libsein"}, {"name": "sceHiDMAPurge", "hash": "0a5385cf4a659d302a43046ea0269e2b17a3ef1d", "variant": 0, "library": "libhig"}, {"name": "_RegisterExceptionTables", "hash": "0a5385cf4a659d302a43046ea0269e2b17a3ef1d", "variant": 0, "library": "mslgcc_ps2"}, {"name": "sceSkInit", "hash": "0a5385cf4a659d302a43046ea0269e2b17a3ef1d", "variant": 0, "library": "libsk"}, {"name": "sceSkQuit", "hash": "0a5385cf4a659d302a43046ea0269e2b17a3ef1d", "variant": 0, "library": "libsk"}, {"name": "sppp_ipv6cp_RCR", "hash": "0a5385cf4a659d302a43046ea0269e2b17a3ef1d", "variant": 0, "library": "libeenet"}, {"name": "__sceEENetraw_ctlinput", "hash": "0a5385cf4a659d302a43046ea0269e2b17a3ef1d", "variant": 0, "library": "libeenet"}, {"name": "icmp_ratelimit", "hash": "0a5385cf4a659d302a43046ea0269e2b17a3ef1d", "variant": 0, "library": "libeenet"}, {"name": "sceHTTPLibInitIO", "hash": "0a5385cf4a659d302a43046ea0269e2b17a3ef1d", "variant": 0, "library": "libhttps"}, {"name": "sceHTTPLibTerminateIO", "hash": "0a5385cf4a659d302a43046ea0269e2b17a3ef1d", "variant": 0, "library": "libhttps"}, {"name": "bn_mont_ctx_useit", "hash": "0a5385cf4a659d302a43046ea0269e2b17a3ef1d", "variant": 0, "library": "libhttps"}, {"name": "crypto_sslc_ecdh_key_exch_init", "hash": "0a5385cf4a659d302a43046ea0269e2b17a3ef1d", "variant": 0, "library": "libhttps"}, {"name": "crypto_sslc_null_cipher_encrypt_init", "hash": "0a5385cf4a659d302a43046ea0269e2b17a3ef1d", "variant": 0, "library": "libhttps"}, {"name": "crypto_sslc_null_cipher_decrypt_init", "hash": "0a5385cf4a659d302a43046ea0269e2b17a3ef1d", "variant": 0, "library": "libhttps"}, {"name": "crypto_sslc_null_key_exch_init", "hash": "0a5385cf4a659d302a43046ea0269e2b17a3ef1d", "variant": 0, "library": "libhttps"}, {"name": "crypto_sslc_ecdh_ctx_init", "hash": "0a5385cf4a659d302a43046ea0269e2b17a3ef1d", "variant": 0, "library": "libhttps"}, {"name": "crypto_sslc_ecdh_ctx_final", "hash": "0a5385cf4a659d302a43046ea0269e2b17a3ef1d", "variant": 0, "library": "libhttps"}, {"name": "crypto_sslc_null_cipher_ctx_init", "hash": "0a5385cf4a659d302a43046ea0269e2b17a3ef1d", "variant": 0, "library": "libhttps"}, {"name": "crypto_sslc_null_cipher_ctx_final", "hash": "0a5385cf4a659d302a43046ea0269e2b17a3ef1d", "variant": 0, "library": "libhttps"}, {"name": "crypto_sslc_null_key_exch_ctx_init", "hash": "0a5385cf4a659d302a43046ea0269e2b17a3ef1d", "variant": 0, "library": "libhttps"}, {"name": "crypto_sslc_null_key_exch_ctx_final", "hash": "0a5385cf4a659d302a43046ea0269e2b17a3ef1d", "variant": 0, "library": "libhttps"}, {"name": "crypto_sslc_random_ctx_init", "hash": "0a5385cf4a659d302a43046ea0269e2b17a3ef1d", "variant": 0, "library": "libhttps"}, {"name": "passwd_read_pw", "hash": "0a5385cf4a659d302a43046ea0269e2b17a3ef1d", "variant": 0, "library": "libhttps"}, {"name": "op_label", "hash": "0a5385cf4a659d302a43046ea0269e2b17a3ef1d", "variant": 0, "library": "libhttps"}, {"name": "ssl_return_zero", "hash": "0a5385cf4a659d302a43046ea0269e2b17a3ef1d", "variant": 0, "library": "libhttps"}, {"name": "ssl2_ctrl", "hash": "0a5385cf4a659d302a43046ea0269e2b17a3ef1d", "variant": 0, "library": "libhttps"}, {"name": "ssl2_ctx_ctrl", "hash": "0a5385cf4a659d302a43046ea0269e2b17a3ef1d", "variant": 0, "library": "libhttps"}, {"name": "sceNetGlueThreadIn)PS2SDB", 8192}, + std::string_view{R"PS2SDB(it", "hash": "0a5385cf4a659d302a43046ea0269e2b17a3ef1d", "variant": 0, "library": "netglue_eenet"}]}}, {"match": {"value": 2223112198}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "__get_eh_table_version", "hash": "5f834d827b9633d2e1da3b2325960d7b697554f9", "variant": 0, "library": "libgcc"}]}}, {"match": {"value": 2223112196}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "__get_eh_table_language", "hash": "615df7573846bd8605baaefe68bc5f9436247523", "variant": 0, "library": "libgcc"}]}}, {"match": {"value": 10489901}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "__vn__FUiPv", "hash": "61338ddd48d690814975989133ebddfb007f8711", "variant": 0, "library": "libgcc"}, {"name": "__nw__FUiPv", "hash": "61338ddd48d690814975989133ebddfb007f8711", "variant": 0, "library": "libgcc"}]}}, {"match": {"value": 2357329920}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "name__C9type_info", "hash": "bc3f406df1b64926c4af204c6d9c18c1a685f849", "variant": 0, "library": "libgcc"}, {"name": "EVP_MD_type", "hash": "bc3f406df1b64926c4af204c6d9c18c1a685f849", "variant": 0, "library": "libhttps"}, {"name": "EVP_MD_CTX_digest", "hash": "bc3f406df1b64926c4af204c6d9c18c1a685f849", "variant": 0, "library": "libhttps"}, {"name": "EVP_CIPHER_nid", "hash": "bc3f406df1b64926c4af204c6d9c18c1a685f849", "variant": 0, "library": "libhttps"}, {"name": "EVP_CIPHER_CTX_cipher", "hash": "bc3f406df1b64926c4af204c6d9c18c1a685f849", "variant": 0, "library": "libhttps"}, {"name": "HMAC_digest", "hash": "bc3f406df1b64926c4af204c6d9c18c1a685f849", "variant": 0, "library": "libhttps"}, {"name": "SSL_version", "hash": "bc3f406df1b64926c4af204c6d9c18c1a685f849", "variant": 0, "library": "libhttps"}, {"name": "SSL_CIPHER_get_valid", "hash": "bc3f406df1b64926c4af204c6d9c18c1a685f849", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 8392749}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "_buf_get_ancestor", "hash": "e76f4eb6c6308b87e67e6813cb81c9dcccb566f4", "variant": 0, "library": "libhig"}, {"name": "null_cb", "hash": "e76f4eb6c6308b87e67e6813cb81c9dcccb566f4", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 3834380808}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "_callback_sceSynthesizerChangePartPitchBend", "hash": "c6f3bf8eb1d9d0e8aa87ad06ac75bcb696b58f7c", "variant": 0, "library": "libssyn"}]}}, {"match": {"value": 3834380540}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "_callback_sceSynthesizerChangePartVolumeExpression", "hash": "66aa55392775c053eb62e9d882fea4abf7a901ec", "variant": 0, "library": "libssyn"}]}}, {"match": {"value": 3834380392}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "_callback_sceSynthesizerChangeEffectSend0", "hash": "0577f2547d42d593d2cceab3ceb2d6097e926386", "variant": 0, "library": "libssyn"}]}}, {"match": {"value": 3834380396}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "_callback_sceSynthesizerChangeEffectSend1", "hash": "43eecbbe3ce5212c8749f17edc76b33332f61c5a", "variant": 0, "library": "libssyn"}]}}, {"match": {"value": 3834380400}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "_callback_sceSynthesizerChangeEffectSend2", "hash": "cc5c4f3e5684058f00558595277077b444840d1a", "variant": 0, "library": "libssyn"}]}}, {"match": {"value": 3834380404}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "_callback_sceSynthesizerChangeEffectSend3", "hash": "bd28b7b1ce15dc07c1e6832c7b8723e94321eeb0", "variant": 0, "library": "libssyn"}]}}, {"match": {"value": 2693070910}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "sceSynthesizerSetRVoice", "hash": "3bd1bd485b429eedbc54feec5b9e0b50e857822f", "variant": 0, "library": "libssyn"}]}}, {"match": {"value": 3834380436}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "_callback_sceSynthesizerChangeNrpnCutOff", "hash": "92d98a0b994050485ec0837f44fc0e0958cb62e5", "variant": 0, "library": "libssyn"}]}}, {"match": {"value": 3834380832}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "_callback_sceSynthesizerChangeNrpnLfoDepth", "hash": "b55b395956d8d221515ce94215b55bf114b0722d", "variant": 0, "library": "libssyn"}]}}, {"match": {"value": 1073924097}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "scePcGetCounter0", "hash": "1e58db034e69e445e08dccb7c8d8539435275021", "variant": 0, "library": "libpc"}]}}, {"match": {"value": 1073924099}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "scePcGetCounter1", "hash": "7c28b106d3c6a48ec706eb4762eafe7c503f9cf1", "variant": 0, "library": "libpc"}]}}, {"match": {"value": 2357330816}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "scePFontGetFontInfo", "hash": "de0dccdffc51774dea6155a91962a8f33967b38e", "variant": 0, "library": "libpfont"}]}}, {"match": {"value": 3834381004}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "scePFontSetPitch", "hash": "03f8b712f573f1b5be1aa12872c1a1fee47e43fe", "variant": 0, "library": "libpfont"}]}}, {"match": {"value": 3296723660}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "scePFontGetPitch", "hash": "4be264f6db3dcf25111668e6e16703767d800de1", "variant": 0, "library": "libpfont"}]}}, {"match": {"value": 2223112904}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "scePFontGetWidth", "hash": "627c63b62962aa8a0277561209e3fa79465b142d", "variant": 0, "library": "libpfont"}]}}, {"match": {"value": 612499488}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "sceHiPlugTex2DGetTexel", "hash": "54230f79524bce78f3e55702a8a739716d177cae", "variant": 0, "library": "libhip"}]}}, {"match": {"value": 1272973139}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "Vu0SetInit", "hash": "ea3a2883567599465007d14e56f3eb6c56821d07", "variant": 0, "library": "libhip"}]}}, {"match": {"value": 604110854}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "__sceEENetif_nulloutput", "hash": "277ed00e9c420de34cb790f5852ed63e6d9980d5", "variant": 0, "library": "libeenet"}, {"name": "__sceEENetif_nullioctl", "hash": "277ed00e9c420de34cb790f5852ed63e6d9980d5", "variant": 0, "library": "libeenet"}, {"name": "__sceEENetif_nullreset", "hash": "277ed00e9c420de34cb790f5852ed63e6d9980d5", "variant": 0, "library": "libeenet"}]}}, {"match": {"value": 604110943}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "__sceEENetrtioctl", "hash": "cb2f38ba5185ad761fd2d7d1cb34e5d7ced2c2f2", "variant": 0, "library": "libeenet"}, {"name": "__sceEENetarpioctl", "hash": "cb2f38ba5185ad761fd2d7d1cb34e5d7ced2c2f2", "variant": 0, "library": "libeenet"}]}}, {"match": {"value": 4236574720}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "__sceEENetrt_timer_queue_change", "hash": "0d71eb9f43fdae3c1916d74b436172a34a6f654b", "variant": 0, "library": "libeenet"}]}}, {"match": {"value": 604110850}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "get_af", "hash": "d2362927ecfc5f7d03618c9b8ef42690ee17299f", "variant": 0, "library": "eenetctl"}, {"name": "op_undef", "hash": "d2362927ecfc5f7d03618c9b8ef42690ee17299f", "variant": 0, "library": "libhttps"}, {"name": "pk_unimplemented", "hash": "d2362927ecfc5f7d03618c9b8ef42690ee17299f", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 2894069780}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "lap_start", "hash": "14385c4c32ce51a816488a3dd6718f15c67e7053", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 2357329940}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "laptime", "hash": "e930242059a232be90389cb0e1523b75ed86b1d8", "variant": 0, "library": "libhttps"}, {"name": "BIO_get_flags", "hash": "e930242059a232be90389cb0e1523b75ed86b1d8", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 612499680}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "sceHTTPGetResponse", "hash": "3a31116b0bb4f3bcdebad553683e2b4b82e33f4f)PS2SDB", 8192}, + std::string_view{R"PS2SDB(", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 2357329952}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "sceHTTPGetClientError", "hash": "77bb6a8892faca17a5374129383d12e1d4bf0bb8", "variant": 0, "library": "libhttps"}, {"name": "X509_STORE_CTX_get_error_depth", "hash": "77bb6a8892faca17a5374129383d12e1d4bf0bb8", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 3699507480}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "sceHTTPGetContentLength", "hash": "0bda46457b72bbc40216511c869d67944dd96871", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 2357330280}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "sceHTTPGetSSLError", "hash": "62a00e19e578daf45e8abacebeccf939ef4f2331", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 2894397444}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "BIO_set_cb", "hash": "cccf1f417a0defdeba45c18ad5b9286e98926f5a", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 2894397448}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "BIO_set_cb_arg", "hash": "96ee6a60a582974c882f240f72ad05d69c0ff7c0", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 2357329928}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "BIO_get_cb_arg", "hash": "2ad1539f6f0c447b85ffcea2077d55f9a17f4183", "variant": 0, "library": "libhttps"}, {"name": "EVP_MD_size", "hash": "2ad1539f6f0c447b85ffcea2077d55f9a17f4183", "variant": 0, "library": "libhttps"}, {"name": "EVP_CIPHER_key_length", "hash": "2ad1539f6f0c447b85ffcea2077d55f9a17f4183", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 2357329924}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "BIO_get_cb", "hash": "49629bfd21111872a95cda909da7446d13180ce9", "variant": 0, "library": "libhttps"}, {"name": "EVP_MD_pkey_type", "hash": "49629bfd21111872a95cda909da7446d13180ce9", "variant": 0, "library": "libhttps"}, {"name": "EVP_PKEY_save_type", "hash": "49629bfd21111872a95cda909da7446d13180ce9", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 2357329944}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "BIO_get_retry_reason", "hash": "b00649096422e3defabf3beac23728730eec5e86", "variant": 0, "library": "libhttps"}, {"name": "SSL_want", "hash": "b00649096422e3defabf3beac23728730eec5e86", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 604120866}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "crypto_sslc_ecdh_get_info", "hash": "69c675f545dead4fb8469b1ed86f331e1c4a3af6", "variant": 0, "library": "libhttps"}, {"name": "crypto_sslc_ecdh_set_info", "hash": "69c675f545dead4fb8469b1ed86f331e1c4a3af6", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 612499500}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "EVP_CIPHER_CTX_iv", "hash": "a2b5cc0a96766a0afbbc7a1096d2c154acf9869d", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 2357329972}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "EVP_MD_block_size", "hash": "8229fd7b4e65873204b3573e2906750ac5896613", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 2357329932}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "EVP_CIPHER_iv_length", "hash": "3f2e95770cde9332a459df92798c8ef91b588f46", "variant": 0, "library": "libhttps"}, {"name": "SSL_get_rbio", "hash": "3f2e95770cde9332a459df92798c8ef91b588f46", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 2894397568}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "EVP_CIPHER_CTX_set_key_length", "hash": "057181dc76824f67f6dbeb94e9826fe9db608763", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 3699507336}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "EVP_CIPHER_CTX_ex_long", "hash": "54c30b7bfdad08dc8a691d631845ade2e4aa83cf", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 4236574856}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "EVP_CIPHER_CTX_set_ex_long", "hash": "fed0b28b1bd6e9f3ae11912d09257915398f69a4", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 604110860}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "R_time_size", "hash": "4a24a668bd2b5c5e6152a6c01b379c65d802bd4a", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 604111148}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "ssl23_default_timeout", "hash": "9de1eeab7fc103960e43fc8f489ba7c1c6c02e7b", "variant": 0, "library": "libhttps"}, {"name": "ssl2_default_timeout", "hash": "9de1eeab7fc103960e43fc8f489ba7c1c6c02e7b", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 604110856}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "ssl2_num_ciphers", "hash": "5ccbbb80d5705e01c0a1e2ea71529636ed42aff1", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 604118048}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "ssl3_default_timeout", "hash": "5b736863961dbb616a555ca251098f9122d262b3", "variant": 0, "library": "libhttps"}, {"name": "tls1_default_timeout", "hash": "5b736863961dbb616a555ca251098f9122d262b3", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 604110883}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "ssl3_num_ciphers", "hash": "f2154d00f5e76d73c89cf845452daa8cba910c9c", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 2357329936}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "SSL_get_wbio", "hash": "5ae463b7fee46cd928807353b15cf885cd41b2d6", "variant": 0, "library": "libhttps"}, {"name": "SSL_SESSION_get_master_key_length", "hash": "5ae463b7fee46cd928807353b15cf885cd41b2d6", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 2357330100}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "SSL_get_verify_mode", "hash": "5270dd8a8247048fe9c1fe71b555e0b1ecc3814e", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 2357330104}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "SSL_get_verify_depth", "hash": "5829971d5f9f51ed02cc6e5876d45ce094ed2910", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 2357330108}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "SSL_get_verify_cb", "hash": "0a31ce50d4dd2380e7537b47ecb03b485b7cceee", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 2357330092}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "SSL_CTX_get_verify_mode", "hash": "c4b6a40966b182f63e3dd243bd17d0c82b29ed93", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 2357330088}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "SSL_CTX_get_verify_depth", "hash": "bea34707616089dbd585ebda05d5834770819080", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 2357330096}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "SSL_CTX_get_verify_cb", "hash": "54fe661393e108eaecc0640a96558a573a7ec2da", "variant": 0, "library": "libhttps"}, {"name": "SSL_get_session", "hash": "54fe661393e108eaecc0640a96558a573a7ec2da", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 2894397624}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "SSL_set_verify_depth", "hash": "81813f740156745bc146a50f7ab219e9d30db9ed", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 2894397528}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "SSL_set_read_ahead", "hash": "0acc9c48ef5b8687a9a1b1e787f9be95f9e9350d", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 2357330008}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "SSL_get_read_ahead", "hash": "52953ac0fbff55464615822cae0c262d4822e840", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 2894397608}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "SSL_CTX_set_verify_depth", "hash": "8c0859af39c012ee32790478385a41bd90bb0efc", "variant": 0, "library": "libhttps"}]})PS2SDB", 8192}, + std::string_view{R"PS2SDB(}, {"match": {"value": 2894397484}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "SSL_set_shutdown", "hash": "31fcd37f04a168aceae1400bc316e90d1e9b3fc5", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 2357329964}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "SSL_get_shutdown", "hash": "6f1fd5f8354ca2bf55d496cc72d5ce5fb8b9e71d", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 2357330140}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "SSL_get_SSL_CTX", "hash": "6a6e0159fa3702fed9cae73048c479d74f3e90e0", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 2894397632}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "SSL_set_info_cb", "hash": "67746b219f139c2cb2a505a3cff4c71cd124f54f", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 2357330112}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "SSL_get_info_cb", "hash": "a573bb48069bcd8a33ebec68ea8f94340fe1a0fe", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 2357330116}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "SSL_get_alert_info_cb", "hash": "3635fc6760fe579f71636c66d7f9faaa0a09aed5", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 2357330120}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "SSL_get_alert_info_cb_arg", "hash": "204f81324c76fc58dad21743f87dd7c8737c28cb", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 2357330124}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "SSL_get_app_data_cb", "hash": "640420a36bd99b225c725b909b2db0736ee5820d", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 2357330128}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "SSL_get_app_data_cb_arg", "hash": "3a13f253d8f7256122cf1206a9f23b525f7882d9", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 2357329968}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "SSL_state", "hash": "682d5fc4790f5d3984a1e9dc9e4c3ca78839c92f", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 4236574952}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "SSL_set_verify_result", "hash": "00418021344d026c7a78ddf6f9d5f3d094fb4802", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 3699507432}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "SSL_get_verify_result", "hash": "ab1227a1d19ede2a0b2ca894f0778632547fe821", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 2357330012}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "SSL_reuse", "hash": "ed7d613af56e54f3ee8392e4e74d8ffc1b645f89", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 2357330068}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "SSL_SESSION_get_peer_certificate", "hash": "e12e3375b6a1467285b81d813e7307ea44e90fe2", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 612499476}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "SSL_SESSION_get_master_key", "hash": "3066a26c6b62a206476eeb572612dc73b8a266b9", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 2357329988}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "SSL_SESSION_get_session_id_length", "hash": "1640d49c88141abc6cafb512dc1043fa619af083", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 612499528}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "SSL_SESSION_get_session_id", "hash": "afddbd78173f46f4919b6d6b492d6c832db69274", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 2894397456}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "X509_STORE_CTX_set_depth", "hash": "cc28dca5348f9c52727985d4f9c5ad319e04a28e", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 2357329956}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "X509_STORE_CTX_get_error", "hash": "0dcb67a5b25504dba06f1288b11bde9216a8d1b9", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 2894397476}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "X509_STORE_CTX_set_error", "hash": "49f2b64a8ac17683a743c8d517e7276d4d33a5bd", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 2357329960}, "child": {"skip": 0, "offset": 8, "next": [], "symbols": [{"name": "X509_STORE_CTX_get_current_cert", "hash": "e7b505edd644f34906961bf238efb74966b505f8", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 666763088}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": "deci2Putchar"}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724416}, "child": {"skip": 52, "offset": 64, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_printf"}}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 4289396904}, "child": {"skip": 24, "offset": 96, "next": [], "symbols": [{"name": "scePrintf", "hash": "2f2ae120a57c01dc2639b463558759cf8af3073f", "variant": 2226853755, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 4289396904}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 3886809192}, "child": {"skip": 40, "offset": 112, "next": [], "symbols": [{"name": "scePrintf", "hash": "406fa14845b816129fe0d393593b453615c2d0aa", "variant": 3501514217, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724560}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 608370688, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707616}, "child": {"skip": 232, "offset": 252, "next": [], "symbols": [{"name": "tls1_generate_master_secret", "hash": "b27df6b77ab664c441290f376929bea9a68105e5", "variant": 187132503, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 1006862336}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 609222656, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 878903566}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 108, "offset": 136, "next": [], "symbols": [{"name": "scePadEnd", "hash": "d5ec6959dcd076bb90acfcf7f6a74b0143e1622d", "variant": 880998737, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 4290707616}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2919497732}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 878903565}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2919563272}, "child": {"skip": 88, "offset": 124, "next": [], "symbols": [{"name": "scePadPortClose", "hash": "6799d4dfb443a0a42e06475b8f71acfd5724f6a8", "variant": 15613977, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 878903560}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2919563272}, "child": {"skip": 88, "offset": 124, "next": [], "symbols": [{"name": "scePadGetButtonMask", "hash": "0d5839addd0d28fa0bea5f76f8cd9a077af1c343", "variant": 15613977, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 878903563}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 88, "offset": 116, "next": [], "symbols": [{"name": "scePadGetPortMax", "hash": "ccb30c9edc2618c53ca50d7f84fca5662e368122", "variant": 3967289572, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290642064}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 815661311}, "child": {"skip": 0, "offset": 16, "next": [{"matc)PS2SDB", 8192}, + std::string_view{R"PS2SDB(h": {"value": 4290183296}, "child": {"skip": 492, "offset": 512, "next": [], "symbols": [{"name": "sceCdApplyNCmd", "hash": "8f0ce34c961182f3ccbd414a4ab18377f3ebbb68", "variant": 1907400345, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 4290052192}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 12644397}, "child": {"skip": 384, "offset": 404, "next": [], "symbols": [{"name": "_getPtsDtsFlags", "hash": "2c023e3d889dd7a59b6824d64acb8b2bc6350eb3", "variant": 3935291530, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2946826244}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289855536}, "child": {"skip": 12, "offset": 28, "next": [{"match": {"value": 61485}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4290707616}, "child": {"skip": 532, "offset": 568, "next": [], "symbols": [{"name": "_strtol_r", "hash": "56c774c1d79600e8e3765720f8eff1cce3b93070", "variant": 3363586678, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 12644397}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4290707616}, "child": {"skip": 504, "offset": 540, "next": [], "symbols": [{"name": "_strtoul_r", "hash": "e3fe3ac99969210f0d0210af8453e03cbe002fa1", "variant": 471218993, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290642080}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 1056, "offset": 1072, "next": [], "symbols": [{"name": "_getRef0", "hash": "0d1b426ca6cc6879947357bb71d58403227e2443", "variant": 3819536124, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 4290117760}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290052208}, "child": {"skip": 452, "offset": 468, "next": [], "symbols": [{"name": "__sceEENetifconf", "hash": "47562fcfcc7d69050389f0f2b0ba61bdc69f1c2a", "variant": 603823602, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4290052192}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8431661}, "child": {"skip": 660, "offset": 676, "next": [], "symbols": [{"name": "__sceEENetin_pcbbind", "hash": "b5a1a254606024160a024f0ce22aaa02bb32ef37", "variant": 1915372927, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289986640}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 368, "offset": 384, "next": [], "symbols": [{"name": "sceEENetPppoeClient", "hash": "1181221c0cfbbb82babe5641b8be8ca62ad9a315", "variant": 2718648114, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4290052240}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289986688}, "child": {"skip": 224, "offset": 240, "next": [], "symbols": [{"name": "SSLCERT_NAME_ENTRY_get_info", "hash": "e2036a95089c70cd337d163b25c4272988e66a8f", "variant": 3148266709, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724560}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006796800}, "child": {"skip": 12, "offset": 28, "next": [{"match": {"value": 876740866}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2919563272}, "child": {"skip": 96, "offset": 132, "next": [], "symbols": [{"name": "scePadInfoAct", "hash": "17cb98bcc4e5db0b56b73f2ec92debf96f6467ca", "variant": 728872273, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 876740867}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2919563272}, "child": {"skip": 96, "offset": 132, "next": [], "symbols": [{"name": "scePadInfoComb", "hash": "5fc4770a974edaec0c2be680266df9db9c12c85e", "variant": 728872273, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 876740868}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2919563272}, "child": {"skip": 96, "offset": 132, "next": [], "symbols": [{"name": "scePadInfoMode", "hash": "20e0a13e9946bf4acb7663beafe9c5889ef5c6e6", "variant": 728872273, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290052192}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1008009216, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 772, "offset": 788, "next": [], "symbols": [{"name": "sceCdReadChain", "hash": "5107e1bce65f274e17f96af1d4ac2217093b53d8", "variant": 200967493, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 4290183312}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 610467840, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 1044, "offset": 1060, "next": [], "symbols": [{"name": "_getRef0", "hash": "80d5928fb568f46112c835a570920662a7831928", "variant": 2226533836, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 4290052240}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 610467840, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 352, "offset": 368, "next": [], "symbols": [{"name": "__sceEENetrtalloc1", "hash": "f14c99d5818248fb214003d727cdc04d498c96c2", "variant": 1137814013, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4290117744}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 604110849}, "child": {"skip": 836, "offset": 852, "next": [], "symbols": [{"name": "sceHTTPSInitCertFromMemory", "hash": "44a14641b8105bd1032a68cc066a4456f89a2620", "variant": 1463706046, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1007419392, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290117760}, "child": {"skip": 1044, "offset": 1056, "next": [], "symbols": [{"name": "_getRef0", "hash": "9e22e68f408c42dd4ad199d5ea285f0d5cdf0b34", "variant": 1367186674, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 4290642064}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290183296}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1008599040, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290117744}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 10532909}, "child": {"skip": 796, "offset": 820, "next": [], "symbols": [{"name": "__sceEENetrn_addmask", "hash": "c260aa5aebf2a8ebedcfc3f7fcd7f14b58b735e4", "variant": 1962708588, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289921088}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4290707616}, "child": {"skip": 1096, "offset": 1120, "next": [], "symbols": [{"name": "__sceEENetsyn_cache_timer", "hash": "ebdf12c3e665065044122f72f227d8780601c34f", "variant": 1628616359, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 12644397}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290117744}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 16824365}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289986640}, "child": {"skip": 332, "offset": 360, "next": [], "symbols": [{"name": "sceDevConsMove", "hash": "adfce5268e01266bc685a0efcd29c689e20c5312", "variant": 2017931211, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 4290052192}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289724432}, "child": {"skip": 32, "offset": 60, "next": [{"match": {"value": 2382496044}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 2946695168}, "child": {"skip": 524, "offset": 592, "next": [], "symbols": [{"name": "_motionComp0", "hash": "5bf723d59665b93021bc84b16018381da23294aa", "variant": 378675184, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2382496068}, "child": {"skip": 0, "offset": 64, "nex)PS2SDB", 8192}, + std::string_view{R"PS2SDB(t": [{"match": {"value": 2946695168}, "child": {"skip": 524, "offset": 592, "next": [], "symbols": [{"name": "_motionComp0", "hash": "8e62ad693a063af380094c219052379813e1c62e", "variant": 378675184, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2382496060}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 2946695168}, "child": {"skip": 524, "offset": 592, "next": [], "symbols": [{"name": "_motionComp0", "hash": "69f28dbfb11d69c959e3749992750a4c5702744e", "variant": 1504666102, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 61485}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289986640}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8435757}, "child": {"skip": 324, "offset": 348, "next": [], "symbols": [{"name": "sceDevFontRefStrN", "hash": "4e169a08e02f5358c3474330eb8715c47e2fef65", "variant": 4147220809, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 4290117744}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 12630061}, "child": {"skip": 1320, "offset": 1344, "next": [], "symbols": [{"name": "__sceEENettcp_usrreq", "hash": "ae6b6f929b597a5cd18e25c65ea66644724c720e", "variant": 1974461962, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289921088}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 47149}, "child": {"skip": 584, "offset": 608, "next": [], "symbols": [{"name": "OP_CTX_code", "hash": "cba90f09dbc0dcbd231b8d9980ba63c1c239aad1", "variant": 794928299, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10547245}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289986640}, "child": {"skip": 944, "offset": 964, "next": [], "symbols": [{"name": "m_copym0", "hash": "825d2b3714393124520821bf8dec5940477eedfd", "variant": 4212631754, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 16838701}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290117744}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289986640}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 12628013}, "child": {"skip": 308, "offset": 336, "next": [], "symbols": [{"name": "catchpacket", "hash": "54db6be2c32dcf9964458010e5de81153080c73c", "variant": 2296831798, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 21018669}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290052192}, "child": {"skip": 1460, "offset": 1488, "next": [], "symbols": [{"name": "__sceEENetsyn_cache_get", "hash": "8d4675a527696069a8b5b4b50816ff0e9858f6d8", "variant": 2495227138, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 12630061}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290052192}, "child": {"skip": 360, "offset": 388, "next": [], "symbols": [{"name": "ASN1_verify", "hash": "4f7a177fddf67c52a121066fe58e2982f7b0baf9", "variant": 1520586703, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 23130157}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290052192}, "child": {"skip": 616, "offset": 636, "next": [], "symbols": [{"name": "_sce_eenet_set_arp_rtmsg", "hash": "5828f800b19992a8f9b0329ca2f1680afde17c24", "variant": 3637075559, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4290117744}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8435757}, "child": {"skip": 172, "offset": 192, "next": [], "symbols": [{"name": "sceEENetSifCallRpc", "hash": "fd0a5029dade630a7d2a10ea9e140cbf4ab93ea5", "variant": 2601020905, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 14741549}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290117744}, "child": {"skip": 496, "offset": 516, "next": [], "symbols": [{"name": "BN_mod_mul_montgomery", "hash": "146b4b868358fe4ea54b03c12520d155524463ba", "variant": 3342171225, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290052192}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 14741549}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289986640}, "child": {"skip": 376, "offset": 396, "next": [], "symbols": [{"name": "_getPtsDtsFlags", "hash": "b045b26a2eb3fcd400ab1a882ca560cd5e2da95f", "variant": 1786917554, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 18935853}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289986640}, "child": {"skip": 1376, "offset": 1396, "next": [], "symbols": [{"name": "__sceEENetrtrequest", "hash": "3eddd1f76f5ff2d628eee6cd954d0bca0f4c3024", "variant": 1736882085, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290117744}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 61485}, "child": {"skip": 944, "offset": 960, "next": [], "symbols": [{"name": "__sceEENetrn_addroute", "hash": "6d0ce7e53cc7118e7afa89058022373d52773e39", "variant": 3550123593, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289986704}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 8429613}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289921152}, "child": {"skip": 160, "offset": 176, "next": [], "symbols": [{"name": "sceVu0CameraMatrix", "hash": "0a07858f92434405a99d2dd62ff7be6f03f0b5e4", "variant": 414460111, "library": "libvu0"}]}}], "symbols": []}}, {"match": {"value": 4289921152}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 12623917}, "child": {"skip": 1248, "offset": 1264, "next": [], "symbols": [{"name": "__sceEENetbpf_filter", "hash": "a7ada8ffc9dcad27f15f4ce52f2e4d729c858310", "variant": 2668296761, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855536}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724432}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 12619821}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290642064}, "child": {"skip": 468, "offset": 488, "next": [], "symbols": [{"name": "sceWrite", "hash": "1deb40fec861f0dc6177c93fc20820f5973663a3", "variant": 2498841065, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 10522669}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707616}, "child": {"skip": 40, "offset": 60, "next": [{"match": {"value": 272826526}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 4141}, "child": {"skip": 676, "offset": 744, "next": [], "symbols": [{"name": "sceCdReadChain", "hash": "a730985ff767c1bbd0984e3e5fb1f2afe1274dc6", "variant": 3945452717, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 272826528}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 4141}, "child": {"skip": 684, "offset": 752, "next": [], "symbols": [{"name": "sceCdReadChain", "hash": "a771150290d0d60253423bae78760f200d676687", "variant": 2767447422, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 272826522}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 4141}, "child": {"skip": 660, "offset": 728, "next": [], "symbols": [{"name": "sceCdReadChain", "hash": "342463486e0679864c00725d1936ade8468152e1", "variant": 2797499565, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 272826524}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 4141}, "child": {"skip": 668, "offset": 736, "next": [], "symbols": [{"name": "sceCdReadChain", "hash": "8dc0e8e91af99c76989e5944676b216b240d33b6", "variant": 3688050510, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289986640}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 12619821}, "child": {"skip": 404, "offset": 420, "next": [], "symbols": [{"name": "scePadPortOpen", "hash": "473c624bbac5c10d465a67b2a160f4faf53cab95", "variant": 1171608462, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 8425517}, "chi)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ld": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707616}, "child": {"skip": 656, "offset": 672, "next": [], "symbols": [{"name": "sceCdInit", "hash": "cbabefc81de1cc8112bd2324b9d36c4c238fc015", "variant": 961582790, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 4290642064}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10522669}, "child": {"skip": 1544, "offset": 1560, "next": [], "symbols": [{"name": "pppoe_dispatch_disc_pkt", "hash": "ea564c7cb8fb65dca6c574d0a7e6b767dd51a570", "variant": 2381744097, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289789984}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10522669}, "child": {"skip": 748, "offset": 764, "next": [], "symbols": [{"name": "pk_dh_sslc_init", "hash": "d7f924d0d631d84f312a96a85a1456831787eb1b", "variant": 3686968330, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604111104}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724560}, "child": {"skip": 116, "offset": 128, "next": [], "symbols": [{"name": "scePadInit2", "hash": "cff95db8ab9311c0f38c05361881ea4de2d5e7c9", "variant": 3884474464, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 4289986640}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289921088}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 12623917}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855536}, "child": {"skip": 64, "offset": 84, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "scePrintf"}}, "child": {"skip": 0, "offset": 88, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 392, "offset": 484, "next": [], "symbols": [{"name": "scePadPortOpen", "hash": "090d32e552661467fa0d1e1ea839cd33488404dd", "variant": 207098373, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "printf"}}, "child": {"skip": 0, "offset": 88, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 264, "offset": 356, "next": [{"match": {"value": 1190208}, "child": {"skip": 0, "offset": 360, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 120, "offset": 484, "next": [], "symbols": [{"name": "scePadPortOpen", "hash": "090d32e552661467fa0d1e1ea839cd33488404dd", "variant": 3491294851, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 1190272}, "child": {"skip": 0, "offset": 360, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 120, "offset": 484, "next": [], "symbols": [{"name": "scePadPortOpen", "hash": "a3a8dd936f63d38f2362f0c9087da0fabc054f23", "variant": 3491294851, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 1190144}, "child": {"skip": 0, "offset": 360, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 120, "offset": 484, "next": [], "symbols": [{"name": "scePadPortOpen", "hash": "55972922331c1c20f4e1dfec634069dd323af6b0", "variant": 3491294851, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10526765}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707616}, "child": {"skip": 80, "offset": 100, "next": [{"match": {"value": 3733192704}, "child": {"skip": 0, "offset": 104, "next": [{"match": {"value": 604241919}, "child": {"skip": 1308, "offset": 1416, "next": [], "symbols": [{"name": "_PES_packet", "hash": "835bd7b451712f568568e2c0ef8eb9e00c628378", "variant": 3298034109, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 604241919}, "child": {"skip": 0, "offset": 104, "next": [{"match": {"value": 2927755272}, "child": {"skip": 1296, "offset": 1404, "next": [], "symbols": [{"name": "_PES_packet", "hash": "a6b7a5afa2dfc8f87ad86c698d94cf187bff3eb5", "variant": 2198566832, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789984}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8429613}, "child": {"skip": 688, "offset": 704, "next": [], "symbols": [{"name": "sceCdSearchFile", "hash": "2873b6ff13ef42921bcf1664c0e73eec0dddf350", "variant": 3089320778, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 4289855536}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10526765}, "child": {"skip": 456, "offset": 472, "next": [], "symbols": [{"name": "dcast__C17__class_type_infoRC9type_infoiPvPC9type_infoT3", "hash": "7b5c9fb4a81ac72b5b36f1e26c735c4d98a4d97c", "variant": 1222293906, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 6189}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707616}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1007091712, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 212, "offset": 228, "next": [], "symbols": [{"name": "scePadPortOpen", "hash": "a51ebf3ca8c818d7fb0570684b6314b5cb5520f0", "variant": 656456428, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 4290183296}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290117744}, "child": {"skip": 524, "offset": 540, "next": [], "symbols": [{"name": "interface_up_down", "hash": "62bba1ed5f23f58fb1ec854608c793b9f923100b", "variant": 986743665, "library": "eenetctl"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006796800}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724560}, "child": {"skip": 148, "offset": 160, "next": [], "symbols": [{"name": "scePadSetActDirect", "hash": "442a081382da0c91ad3bb07c5efd4a1c22ce59e6", "variant": 162452553, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 24621}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289003640}, "child": {"skip": 752, "offset": 764, "next": [], "symbols": [{"name": "sceSdRemote", "hash": "ea791810915f9dda28b9b0cf78e221772c5636d2", "variant": 2572942751, "library": "libsdr"}]}}], "symbols": []}}, {"match": {"value": 4289921088}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855536}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8427565}, "child": {"skip": 60, "offset": 76, "next": [{"match": {"value": 341967007}, "child": {"skip": 0, "offset": 80, "next": [{"match": {"value": 4141}, "child": {"skip": 168, "offset": 252, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "scePrintf"}}, "child": {"skip": 0, "offset": 256, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 504, "offset": 764, "next": [], "symbols": [{"name": "sceCdSearchFile", "hash": "7f12880573bf00960074849673293e87b0a092d7", "variant": 1454010916, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "printf"}}, "child": {"skip": 0, "offset": 256, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 504, "offset": 764, "next": [], "symbols": [{"name": "sceCdSearchFile", "hash": "99675c9c200d75444cba67ed4cd3f27dd57c4031", "variant": 2171450913, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 341967003}, "child": {"skip": 0, "offset": 80, "next": [{"match": {"value": 4141}, "child": {"skip": 664, "offset": 748, "next": [], "symbols": [{"name": "sceCdSearchFile", "hash": "649edb92f795929727dd496bcd2f72134877c386", "variant": 1216402103, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8427565}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707616}, "child": {"skip": 40, "offset": 56, "next": [{"match": {"value": 339738781}, "ch)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ild": {"skip": 0, "offset": 60, "next": [{"match": {"value": 4141}, "child": {"skip": 8, "offset": 72, "next": [{"match": {"value": 1008009216, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 76, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "GetThreadId"}}, "child": {"skip": 656, "offset": 736, "next": [], "symbols": [{"name": "sceCdInit", "hash": "fc24d2b34965fc917283a2a6bb66fe41c0c40871", "variant": 608793435, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 1007943680, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 76, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "GetThreadId"}}, "child": {"skip": 656, "offset": 736, "next": [], "symbols": [{"name": "sceCdInit", "hash": "8104507abf96c8a6a67f225ba2774aea816b7206", "variant": 2077629385, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 339738783}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 4141}, "child": {"skip": 8, "offset": 72, "next": [{"match": {"value": 1007943680, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 76, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "GetThreadId"}}, "child": {"skip": 664, "offset": 744, "next": [], "symbols": [{"name": "sceCdInit", "hash": "02583f19f2438781df1f8fb13bfaf875aea5c6a3", "variant": 3595593594, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 1008009216, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 76, "next": [{"match": {"value": 1007943680, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 664, "offset": 744, "next": [], "symbols": [{"name": "sceCdInit", "hash": "f9dc21ea163d448c40c755fe1f27f3f4e500b75e", "variant": 2771195932, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290052192}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855536}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8431661}, "child": {"skip": 4, "offset": 20, "next": [{"match": {"value": 10522669}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289724432}, "child": {"skip": 160, "offset": 188, "next": [{"match": {"value": 608370687}, "child": {"skip": 0, "offset": 192, "next": [{"match": {"value": 0}, "child": {"skip": 552, "offset": 748, "next": [], "symbols": [{"name": "sceCdSearchFile", "hash": "9762fc819ab08637b96c536d4afe805ae105ce58", "variant": 429983286, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 0}, "child": {"skip": 0, "offset": 192, "next": [{"match": {"value": 608370687}, "child": {"skip": 552, "offset": 748, "next": [], "symbols": [{"name": "sceCdSearchFile", "hash": "448cb2416a9be0b47f22f6b420177701b014b70f", "variant": 429983286, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 16814125}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290183296}, "child": {"skip": 232, "offset": 260, "next": [], "symbols": [{"name": "pk_rsa_verify", "hash": "ff9b6b8289576493d9964e63208cee87ef2a4b85", "variant": 2710398737, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789984}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8431661}, "child": {"skip": 672, "offset": 688, "next": [], "symbols": [{"name": "sceCdSearchFile", "hash": "c951d905e45c798562cf962dc074f59e8867f911", "variant": 2951435816, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 4289986640}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8431661}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855536}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 10526765}, "child": {"skip": 668, "offset": 692, "next": [], "symbols": [{"name": "_setenv_r", "hash": "2e5b52bc97a1976b62efc1c7b1fda40ea32c350e", "variant": 3447882755, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4290642064}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 10526765}, "child": {"skip": 688, "offset": 712, "next": [], "symbols": [{"name": "sceEENetMDevget", "hash": "957cf035c3b80c4c481676d6d066cb7a5ad0852d", "variant": 2194504402, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707616}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 12625965}, "child": {"skip": 852, "offset": 868, "next": [], "symbols": [{"name": "bn_mul_words", "hash": "e0f633c0cdc4c9a875ac920612d321121befa6fd", "variant": 752091515, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290052224}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1008009216, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707616}, "child": {"skip": 24, "offset": 40, "next": [{"match": {"value": 71368712}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 4289724464}, "child": {"skip": 148, "offset": 196, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "scePrintf"}}, "child": {"skip": 0, "offset": 200, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 232, "offset": 436, "next": [], "symbols": [{"name": "sceMcInit", "hash": "5fd0434aadfcc91a806cddeb4fde2ac068ead276", "variant": 1414290006, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "printf"}}, "child": {"skip": 0, "offset": 200, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 232, "offset": 436, "next": [], "symbols": [{"name": "sceMcInit", "hash": "5fd0434aadfcc91a806cddeb4fde2ac068ead276", "variant": 2990303853, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 71368719}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 4289724464}, "child": {"skip": 412, "offset": 460, "next": [], "symbols": [{"name": "sceMcInit", "hash": "7825deebd6a332516c585e447dfeb29907876278", "variant": 3573868302, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289986672}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707616}, "child": {"skip": 584, "offset": 600, "next": [], "symbols": [{"name": "_sce_eenet_flush_route", "hash": "964b63c902509d73a230dd1ecee62828e217924d", "variant": 3414017143, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289986672}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1007943680, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 408, "offset": 420, "next": [], "symbols": [{"name": "sceMcInit", "hash": "1d369a2c9f5de25495b21a2f06df4f7a47f5cc0a", "variant": 1581809842, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 4290183296}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289921088}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2946891776}, "child": {"skip": 1128, "offset": 1144, "next": [], "symbols": [{"name": "__kernel_tan", "hash": "c6acf6b4be2f8bf786157e68cfb914ea10cdf85b", "variant": 3542851435, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 4290117744}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8435757}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707616}, "child": {"skip": 660, "offset": 680, "next": [], "symbols": [{"name": "ShapeMakeGeometryPacket", "hash": "0d4b1f97babf4b028ee58256c8b30350ad909e68", "variant": 1641725777, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 12630061}, "child": {"skip": 0, "offset": 16, "next)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": [{"match": {"value": 4290052192}, "child": {"skip": 1144, "offset": 1164, "next": [], "symbols": [{"name": "__sceEENeticmp_error", "hash": "6b5c24242a9aa67b16e0d01e10fe2d195e01b193", "variant": 1854516547, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 47149}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289986640}, "child": {"skip": 1132, "offset": 1152, "next": [], "symbols": [{"name": "__sceEENetip_forward", "hash": "1164a0ee6b46ee1796558ed2af625485e6503c6b", "variant": 2240666533, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 16824365}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290052192}, "child": {"skip": 264, "offset": 284, "next": [], "symbols": [{"name": "ASN1_digest", "hash": "b8efdc95b72cd646a274f9bcc1abaacff5a13ab4", "variant": 4217137699, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789984}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10532909}, "child": {"skip": 1076, "offset": 1092, "next": [], "symbols": [{"name": "sceHiPlugTim2SetPicture", "hash": "dd0166f1c5bc8107c240ceab6b5b36c8feeca850", "variant": 3556841407, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 10532909}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290642064}, "child": {"skip": 464, "offset": 480, "next": [], "symbols": [{"name": "rt_msg2", "hash": "1d49db5f38dec94c5ea09be2739c9dfdcb721106", "variant": 2926026019, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289986640}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 14727213}, "child": {"skip": 320, "offset": 336, "next": [], "symbols": [{"name": "dn_find", "hash": "3b0d1000b4068bb01a189826169eb9ecb245d7ea", "variant": 1861154467, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4288938080}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 665059424}, "child": {"skip": 144, "offset": 156, "next": [{"match": {"value": 268435565}, "child": {"skip": 0, "offset": 160, "next": [{"match": {"value": 608436224, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 480, "offset": 644, "next": [], "symbols": [{"name": "dpmul", "hash": "c70cbfb81152aefb24fd10dba8a762513f6dfb4f", "variant": 1780731782, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 268435575}, "child": {"skip": 0, "offset": 160, "next": [{"match": {"value": 608436224, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 520, "offset": 684, "next": [], "symbols": [{"name": "dpmul", "hash": "4798daf6a9ef8e43a54eae1912818ccffbfd1712", "variant": 2485037416, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789984}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724432}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8423469}, "child": {"skip": 104, "offset": 120, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": ""}}, "child": {"skip": 0, "offset": 124, "next": [{"match": {"value": 33572909}, "child": {"skip": 1096, "offset": 1224, "next": [], "symbols": [{"name": "__throw_type_match_rtti", "hash": "82de5a725b951b093947fd98f75cbbb6c38cbe71", "variant": 3570386318, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__dynamic_cast"}}, "child": {"skip": 0, "offset": 124, "next": [{"match": {"value": 33572909}, "child": {"skip": 1096, "offset": 1224, "next": [], "symbols": [{"name": "__throw_type_match_rtti", "hash": "82de5a725b951b093947fd98f75cbbb6c38cbe71", "variant": 2479204700, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707616}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290642064}, "child": {"skip": 472, "offset": 488, "next": [], "symbols": [{"name": "__sceEENettcp_slowtimo", "hash": "2adc39cd0c8a9b9371f041054b603833af6a839c", "variant": 3224621491, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4290117744}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 14714925}, "child": {"skip": 416, "offset": 432, "next": [], "symbols": [{"name": "ns_name_unpack", "hash": "6c544d01bcf67808a203b810905c290e6fed15bc", "variant": 689034561, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289986640}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8423469}, "child": {"skip": 392, "offset": 408, "next": [], "symbols": [{"name": "hashed_recv", "hash": "771d582c791a002f29f947bcb02f13a562edfe44", "variant": 541182461, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724512}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 18907181}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289986688}, "child": {"skip": 4, "offset": 20, "next": [{"match": {"value": 4290183320}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 8435757}, "child": {"skip": 4680, "offset": 4708, "next": [], "symbols": [{"name": "_dtoa_r", "hash": "e09b10694df3322c8702ba41d5ebdb949a477305", "variant": 346435105, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4290117776}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 8433709}, "child": {"skip": 4696, "offset": 4724, "next": [], "symbols": [{"name": "_dtoa_r", "hash": "71889858d3d587d8bebeeffe6663fc9ffdc25563", "variant": 1699102658, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289986688}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290052232}, "child": {"skip": 44, "offset": 60, "next": [{"match": {"value": 2357919808}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 2946957324}, "child": {"skip": 4480, "offset": 4548, "next": [], "symbols": [{"name": "_dtoa_r", "hash": "aa7e4a89875ce8f9b067fa1529a8bd9672705df5", "variant": 2646540243, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 2358050880}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 2946957324}, "child": {"skip": 4484, "offset": 4552, "next": [], "symbols": [{"name": "_dtoa_r", "hash": "20072b7c5f45754aa58e3951c4c23af81949f889", "variant": 2896083616, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724528}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707616}, "child": {"skip": 12, "offset": 24, "next": [{"match": {"value": 2516779020}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 811728898}, "child": {"skip": 304, "offset": 336, "next": [], "symbols": [{"name": "__smakebuf", "hash": "d9bb27f86834e4cc1d4985f62de4231b401d9346", "variant": 3470334018, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 2516713484}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 809631746}, "child": {"skip": 296, "offset": 328, "next": [], "symbols": [{"name": "__smakebuf", "hash": "2a0e390776ec84b461cf31d5822d47bc4fd6e11e", "variant": 126651960, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 16429}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290052232}, "child": {"skip": 3900, "offset": 3912, "next": [], "symbols": [{"name": "_strtod_r", "hash": "cca2020fe8e5c5ab56e8695725ebcee5086ac553", "variant": 320294410, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 2946826244}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290642064}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289855536}, "child": {"skip": 548, "offset": 564, "next": [], "symbols": [{"name": "_strtol_r", "hash": "4566e8154d45931029ba9814a96a58981fcbf82c", "variant": 252963674, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4290183296}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289855536}, "child": {"skip": 512, "offset": 528, "next": [], "symbols": [{"name": "_strt)PS2SDB", 8192}, + std::string_view{R"PS2SDB(oul_r", "hash": "bdacd1da0b88855a2be28396a2606377893ee0b2", "variant": 2072170425, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604110950}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290642064}, "child": {"skip": 208, "offset": 220, "next": [{"match": {"value": 272629796}, "child": {"skip": 0, "offset": 224, "next": [{"match": {"value": 604110950}, "child": {"skip": 204, "offset": 432, "next": [], "symbols": [{"name": "cvt", "hash": "a883064f5998472aa2349eeee81ea99152936997", "variant": 2242799234, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 272629793}, "child": {"skip": 0, "offset": 224, "next": [{"match": {"value": 604110950}, "child": {"skip": 192, "offset": 420, "next": [], "symbols": [{"name": "cvt", "hash": "611057ddabd796dfaa8c0a33bbd1cea497ae0a1c", "variant": 2242799234, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289921144}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290117776}, "child": {"skip": 2352, "offset": 2364, "next": [], "symbols": [{"name": "qsort", "hash": "8fb6b1ae3ee4c87c7c2ff8484ecbcb7a91f78d0e", "variant": 1939205565, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 10491949}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724512}, "child": {"skip": 136, "offset": 148, "next": [], "symbols": [{"name": "_snprintf_r", "hash": "f2a27672e96c9076fc7b33aeb1b436b78567250e", "variant": 3551728482, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 604110852}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289790056}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8423469}, "child": {"skip": 132, "offset": 148, "next": [], "symbols": [{"name": "_sscanf_r", "hash": "0f3fa352014f32da080e833cd36424a1dab51144", "variant": 893267957, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4290052240}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289921136}, "child": {"skip": 916, "offset": 932, "next": [], "symbols": [{"name": "d2i_DSAPrivateKey", "hash": "42cfc449c0432fae74720600866bdeb7a1ea03b4", "variant": 2435296880, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 4290052224}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 60825645}, "child": {"skip": 284, "offset": 300, "next": [], "symbols": [{"name": "rsa_sign_ASN1_OCTET_STRING_cb", "hash": "730c32a48990b3e5f4a980190625fe1b7e92b5fe", "variant": 36483343, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8419373}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290642080}, "child": {"skip": 1148, "offset": 1160, "next": [], "symbols": [{"name": "_getRef0", "hash": "ae5caa959bb61be85ad05190891654d82051f6b2", "variant": 1961691962, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 604111168}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2946826240}, "child": {"skip": 52, "offset": 64, "next": [{"match": {"value": 2353202888}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 274726951}, "child": {"skip": 468, "offset": 540, "next": [], "symbols": [{"name": "_doMC", "hash": "9d3a879f1b7a84e4e1ce4811203e8603a83d75ef", "variant": 887598154, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2353202912}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 274726951}, "child": {"skip": 468, "offset": 540, "next": [], "symbols": [{"name": "_doMC", "hash": "eb779907e91a1de5c49f001e3f1a7f78abd58063", "variant": 887598154, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2353202904}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 274726951}, "child": {"skip": 468, "offset": 540, "next": [], "symbols": [{"name": "_doMC", "hash": "932167405cde219ffb1a64292e7f05ed9611f6ba", "variant": 3761466818, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290052240}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707616}, "child": {"skip": 404, "offset": 416, "next": [], "symbols": [{"name": "_waitBdecOut", "hash": "3759c7fa18494e29a9f89b6abe882136511c212f", "variant": 3777134135, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 4289921168}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 665190464}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289724512}, "child": {"skip": 40, "offset": 56, "next": [{"match": {"value": 339738727}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 3753836704}, "child": {"skip": 432, "offset": 496, "next": [], "symbols": [{"name": "_slice0", "hash": "1b3142eef9d78895301635d9564c34ecb2611e4b", "variant": 3339995504, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 339738729}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 3753836704}, "child": {"skip": 440, "offset": 504, "next": [], "symbols": [{"name": "_slice0", "hash": "a24586d51e89b8cb0bacfada067b35f66359adeb", "variant": 1124777658, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 339738730}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 3753836704}, "child": {"skip": 444, "offset": 508, "next": [], "symbols": [{"name": "_slice0", "hash": "21e618d57c6bff83c207f400c5b273309851a460", "variant": 3890669750, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855616}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10524717}, "child": {"skip": 404, "offset": 420, "next": [], "symbols": [{"name": "__sceEENetigmp_sendpkt", "hash": "19f53c67add7c8686c17fbb946980f5d02626fd4", "variant": 1385350424, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855616}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 665190468}, "child": {"skip": 468, "offset": 480, "next": [], "symbols": [{"name": "_slice0", "hash": "9084864c001e8caf3fb5610728830acaa7d94b49", "variant": 1795484752, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 604110849}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290642064}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290183296}, "child": {"skip": 88, "offset": 104, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_nextBit"}}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 604307457}, "child": {"skip": 300, "offset": 412, "next": [], "symbols": [{"name": "_motionVectors", "hash": "37e562a5e177c4aa44ed841497a16784b8b73310", "variant": 3236944472, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceMpegNextBit"}}, "child": {"skip": 0, "offset": 108, "next": [{"match": {"value": 604307457}, "child": {"skip": 300, "offset": 412, "next": [], "symbols": [{"name": "_motionVectors", "hash": "37e562a5e177c4aa44ed841497a16784b8b73310", "variant": 3763150334, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707600}, "child": {"skip": 440, "offset": 456, "next": [], "symbols": [{"name": "vu0_skin", "hash": "46ede61613469b431d9ee3ad8a7213a7c204b2e4", "variant": 922753630, "library": "libhip"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006768128}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290183296}, "child": {"skip": 348, "offset": 360, "next": [], "symbols": [{"name": "_waitIpuIdle", "hash": "a98864eaff1429d932671799e0d17116e4b5029b", "variant": 1610586545, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 1006768127}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290117744}, "child": {"skip": 56, "offset": 68, "next": [{"match": {"value": 2357461208}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 2361721204}, "child": {"skip": 140, "offset": 216, "next": [{"match": {"value": 281018)PS2SDB", 8192}, + std::string_view{R"PS2SDB(457}, "child": {"skip": 0, "offset": 220, "next": [{"match": {"value": 10285}, "child": {"skip": 400, "offset": 624, "next": [], "symbols": [{"name": "_cpr8", "hash": "31532551313150e8f5f24adc4b2b0c9ab858e99e", "variant": 726598311, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 281018465}, "child": {"skip": 0, "offset": 220, "next": [{"match": {"value": 10285}, "child": {"skip": 432, "offset": 656, "next": [], "symbols": [{"name": "_cpr8", "hash": "fb2accaaba17b22c791c833900b11bc397d71c2e", "variant": 3625465194, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2357461232}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 2361721228}, "child": {"skip": 580, "offset": 656, "next": [], "symbols": [{"name": "_cpr8", "hash": "fbd82f92c0bd0f27270b36828c6152fea993f4a8", "variant": 3625465194, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2357461228}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 2361721220}, "child": {"skip": 580, "offset": 656, "next": [], "symbols": [{"name": "_cpr8", "hash": "6fffa54b68fc1a06847990a36df2df35f7249103", "variant": 3625465194, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290183312}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290117760}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 605487539}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290052208}, "child": {"skip": 320, "offset": 340, "next": [], "symbols": [{"name": "_sceMpegNextHeader", "hash": "000148f669d704fea7d7f2b7f22315a52e38ec5a", "variant": 582458361, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 47149}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290052208}, "child": {"skip": 1084, "offset": 1104, "next": [], "symbols": [{"name": "client_certificate", "hash": "5036d1601d95bde787689df50d36e59e53a96cb0", "variant": 2350310018, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8435757}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290117760}, "child": {"skip": 276, "offset": 292, "next": [], "symbols": [{"name": "verify_subject_name", "hash": "c80e68d45c8938d2568f08e662db4a9c5c939118", "variant": 2110192266, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2143223904}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2142568528}, "child": {"skip": 52, "offset": 64, "next": [{"match": {"value": 268435514}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 0}, "child": {"skip": 268, "offset": 340, "next": [], "symbols": [{"name": "sceCccUTF8toSJIS", "hash": "d677ae03e6ea54d1d8e1c53f03f6689a359db44a", "variant": 1694275771, "library": "libccc"}]}}], "symbols": []}}, {"match": {"value": 268435516}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 0}, "child": {"skip": 276, "offset": 348, "next": [], "symbols": [{"name": "sceCccSJIStoUTF8", "hash": "01c111e9a394ed7124d5d5070865565fa26e1b86", "variant": 3049506650, "library": "libccc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006833664}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707616}, "child": {"skip": 684, "offset": 696, "next": [{"match": {"value": 1007882240}, "child": {"skip": 0, "offset": 700, "next": [{"match": {"value": 1007751168}, "child": {"skip": 1112, "offset": 1816, "next": [], "symbols": [{"name": "sceHiDMAWait", "hash": "a04265a024db504a5f7a12970778b22f36a2b9c8", "variant": 711103296, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 1007816704}, "child": {"skip": 0, "offset": 700, "next": [{"match": {"value": 1007751168}, "child": {"skip": 1076, "offset": 1780, "next": [], "symbols": [{"name": "sceHiDMAWait", "hash": "7852833b9a893c9581a97ee478e3ede45340604d", "variant": 1148610164, "library": "libhig"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2143223936}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2142699632}, "child": {"skip": 28, "offset": 40, "next": [{"match": {"value": 666042516}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 1893772840}, "child": {"skip": 160, "offset": 208, "next": [{"match": {"value": 604372991}, "child": {"skip": 0, "offset": 212, "next": [{"match": {"value": 33783843}, "child": {"skip": 84, "offset": 300, "next": [], "symbols": [{"name": "__construct_array", "hash": "d1dc6810ebfc3002c4c32573783c07cfe99b8451", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 1879060008}, "child": {"skip": 0, "offset": 212, "next": [{"match": {"value": 33783843}, "child": {"skip": 84, "offset": 300, "next": [], "symbols": [{"name": "__construct_array", "hash": "37405e7f7dfa9e17e447fb849fbeaf019bd74ce3", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1893772840}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 2946760848}, "child": {"skip": 48, "offset": 96, "next": [{"match": {"value": 268435463}, "child": {"skip": 0, "offset": 100, "next": [{"match": {"value": 2921332736}, "child": {"skip": 28, "offset": 132, "next": [{"match": {"value": 11802667}, "child": {"skip": 0, "offset": 136, "next": [{"match": {"value": 341901303}, "child": {"skip": 152, "offset": 292, "next": [], "symbols": [{"name": "__construct_array", "hash": "cf6a0e218d805f260cb2d208da94a5004381e84d", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 11798571}, "child": {"skip": 0, "offset": 136, "next": [{"match": {"value": 337706999}, "child": {"skip": 144, "offset": 284, "next": [], "symbols": [{"name": "__construct_array", "hash": "c9b6860ebf8353521647d61f0c681706eb45d4ef", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 268435465}, "child": {"skip": 0, "offset": 100, "next": [{"match": {"value": 2921332736}, "child": {"skip": 196, "offset": 300, "next": [], "symbols": [{"name": "__construct_array", "hash": "17db428d2a72390cb6f24f5b92ea66c550a78e3e", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1893770792}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 2946760848}, "child": {"skip": 244, "offset": 292, "next": [], "symbols": [{"name": "__construct_array", "hash": "e1983f4614f13ec8ba40bd4950ac4f513e45698d", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707584}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2142699632}, "child": {"skip": 4, "offset": 16, "next": [{"match": {"value": 666304668}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2142568528}, "child": {"skip": 276, "offset": 300, "next": [], "symbols": [{"name": "__construct_array", "hash": "684addadec36a5d1075b63eb69c68bc4ab337264", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 2142568528}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2142502976}, "child": {"skip": 268, "offset": 292, "next": [], "symbols": [{"name": "__construct_array", "hash": "cd36ba6aa2bdf7db7e689304015033a0152950be", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 666304664}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2142568528}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 666239132}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2142502976}, "child": {"skip": 24, "offset": 56, "next": [{"match": {"value": 665976980}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 2142240768}, "child": {"skip": 108, "offset": 172, "next": [{"match": {"value": 2386755584}, "child": {"skip": 0, "offset": 176, "next": [{"match": {"value": 2409889936}, "child": {"skip": 112, "offset": 292, "next": [], "symbols": [{"name": "__construct_array", "hash": "e8f542f5971c30988eb8b1d78c95e6257)PS2SDB", 8192}, + std::string_view{R"PS2SDB(6f57847", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 2386821120}, "child": {"skip": 0, "offset": 176, "next": [{"match": {"value": 2409824400}, "child": {"skip": 112, "offset": 292, "next": [], "symbols": [{"name": "__construct_array", "hash": "e4ef123496b115c32482d67d081055fc60b0bf1d", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8425517}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 2142240768}, "child": {"skip": 228, "offset": 292, "next": [], "symbols": [{"name": "__construct_array", "hash": "ca7c5bbef604fde7aeaa2210dc2263f35baf0406", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666239124}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2142502976}, "child": {"skip": 260, "offset": 292, "next": [], "symbols": [{"name": "__construct_array", "hash": "296e67ac2649900eb5815e6056623023ef09d6df", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707536}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2143158336}, "child": {"skip": 4, "offset": 16, "next": [{"match": {"value": 60878881}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2142371872}, "child": {"skip": 20, "offset": 44, "next": [{"match": {"value": 2950496372}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 268435561}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 0}, "child": {"skip": 460, "offset": 516, "next": [], "symbols": [{"name": "__unexpected", "hash": "1597322b02eee48d0cae7d701c63b05519e3ca48", "variant": 3967691870, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 268435581}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 0}, "child": {"skip": 540, "offset": 596, "next": [], "symbols": [{"name": "__unexpected", "hash": "3ee38c6af4e9d44be484171ef21b81fafefdda1c", "variant": 1663521889, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2950496388}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 268435549}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 0}, "child": {"skip": 412, "offset": 468, "next": [], "symbols": [{"name": "__unexpected", "hash": "41b5a5d76f053bf9ed08f47dc58404c0c83fd27e", "variant": 2487137775, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 268435545}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 0}, "child": {"skip": 396, "offset": 452, "next": [], "symbols": [{"name": "__unexpected", "hash": "e9763c9d2fbc6f8275b0aa45d21a5b54df4f8501", "variant": 2125401683, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 268435567}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 0}, "child": {"skip": 484, "offset": 540, "next": [], "symbols": [{"name": "__unexpected", "hash": "182d061d6c7859d52b543f991f53f5b6e248cd59", "variant": 3420716266, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2142371872}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2142306320}, "child": {"skip": 428, "offset": 452, "next": [], "symbols": [{"name": "__unexpected", "hash": "3b343cfe299239f929a8a2a39e9d31050e85d9be", "variant": 167849651, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2143223888}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2143158336}, "child": {"skip": 32, "offset": 44, "next": [{"match": {"value": 268435546}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 0}, "child": {"skip": 400, "offset": 452, "next": [], "symbols": [{"name": "__unexpected", "hash": "86b04b127cb5bb402b09b95ec2ca238b78c24093", "variant": 167849651, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 268435553}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 0}, "child": {"skip": 428, "offset": 480, "next": [], "symbols": [{"name": "__unexpected", "hash": "195c22a00d0b90f7bc6fcf5b59a610aa202ebb61", "variant": 286893718, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707488}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2142306320}, "child": {"skip": 4, "offset": 16, "next": [{"match": {"value": 8423469}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 640679968}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2384986120}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 528427}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 943849473}, "child": {"skip": 800, "offset": 836, "next": [], "symbols": [{"name": "NextAction__FP14ActionIterator", "hash": "994a1073cbe639f5cf98aaf7f10cf9d60f9bef2a", "variant": 184995015, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 285212677}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 0}, "child": {"skip": 752, "offset": 788, "next": [], "symbols": [{"name": "NextAction__FP14ActionIterator", "hash": "5d453829f8be49f25f32b4bbd7175fbd77149bbe", "variant": 1169250432, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2385051656}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 287309829}, "child": {"skip": 756, "offset": 788, "next": [], "symbols": [{"name": "NextAction__FP14ActionIterator", "hash": "f6cf993a7db474a7ba1320b983eb03ffeb9c3da8", "variant": 3060991269, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 2384723976}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 266283}, "child": {"skip": 740, "offset": 772, "next": [], "symbols": [{"name": "NextAction__FP14ActionIterator", "hash": "843d6e091083a135d531f798b5e4a19656cda00d", "variant": 2747864584, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1887471144}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 638648352}, "child": {"skip": 764, "offset": 788, "next": [], "symbols": [{"name": "NextAction__FP14ActionIterator", "hash": "c3e1e6f02daa84ded9b2ab6e401dd88db7878fa7", "variant": 3633824898, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2143223840}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2142306320}, "child": {"skip": 32, "offset": 44, "next": [{"match": {"value": 272629782}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 811728927}, "child": {"skip": 736, "offset": 788, "next": [], "symbols": [{"name": "NextAction__FP14ActionIterator", "hash": "98f0c608d84f7843f0e5fe75c8d4cba8895616ef", "variant": 3633824898, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 272629783}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 811728927}, "child": {"skip": 744, "offset": 796, "next": [], "symbols": [{"name": "NextAction__FP14ActionIterator", "hash": "f09a3893b7ddefdc6d0ac319c6b629ebff9203ed", "variant": 143272022, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10502189}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289790064}, "child": {"skip": 3164, "offset": 3176, "next": [], "symbols": [{"name": "_scePFont_Putc", "hash": "9be64058153b7802d1dfd181682f5df3ad573de3", "variant": 2200564890, "library": "libpfont"}]}}], "symbols": []}}, {"match": {"value": 604113048}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290052192}, "child": {"skip": 288, "offset": 300, "next": [], "symbols": [{"name": "_sceMcFatGetFreeClust", "hash": "a96d6264497985bf210da70748c9e0bb6246a757", "variant": 2982940042, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 604176412}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290117744}, "child": {"skip": 460, "offset": 472, "next": [], "symbols)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": [{"name": "_sceMcCoreGetCardSpec", "hash": "e430e4ca2851d5ecf7594822b4d0b690be74239e", "variant": 2225646361, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 604110876}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289986640}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289724432}, "child": {"skip": 448, "offset": 464, "next": [], "symbols": [{"name": "_sceMcCoreReadPage2", "hash": "b40169e6fe1adec6e358e04921977237bd3a618f", "variant": 1943730433, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 4290183296}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289724432}, "child": {"skip": 424, "offset": 440, "next": [], "symbols": [{"name": "_sceMcCoreWritePage", "hash": "e0ae2df0c52a0734082ae4979ea59823dad57153", "variant": 4153921808, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604111068}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290642064}, "child": {"skip": 680, "offset": 692, "next": [], "symbols": [{"name": "sppp_cp_send", "hash": "8964aa7b8b5e976c5b968c679544cf93b50fc5f6", "variant": 4095167863, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 604110960}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290642064}, "child": {"skip": 1300, "offset": 1312, "next": [], "symbols": [{"name": "__sceEENetsl_uncompress_tcp_core", "hash": "aae190d4f70fe99321add951affd0f55f7140497", "variant": 3152680557, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4290117760}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290052208}, "child": {"skip": 332, "offset": 344, "next": [], "symbols": [{"name": "__sceEENetin_pcblookup_connect", "hash": "8d7be147fc7ba0a78137027a7d416faa4d2206a5", "variant": 1033441552, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4290117776}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290052224}, "child": {"skip": 1364, "offset": 1376, "next": [], "symbols": [{"name": "__sceEENetip_setmoptions", "hash": "c00e7d1d9cc623cbd2ea91f4ab1223da4e535505", "variant": 1877353420, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 604110850}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290642064}, "child": {"skip": 552, "offset": 564, "next": [], "symbols": [{"name": "udp4_realinput", "hash": "f635bfc1837b805c5c42a6c026e8014e0b1b96fe", "variant": 2501900777, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2946826240}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290052192}, "child": {"skip": 476, "offset": 488, "next": [], "symbols": [{"name": "ns_name_ntop", "hash": "22bfc9489f857d2d6e50a262645d4b5f97b83e67", "variant": 3652839341, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 12333}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289986704}, "child": {"skip": 244, "offset": 256, "next": [], "symbols": [{"name": "_sce_eenet_if_setmediatype", "hash": "6ba2d0698cea7f086a89a0078ac8664ad3c1201a", "variant": 2175335947, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 10489901}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290183296}, "child": {"skip": 2060, "offset": 2072, "next": [], "symbols": [{"name": "_sce_eenet_dhclient_dhcp_msgtoparam", "hash": "b668eab40d87fe333e0f63a2baf603e53b330a24", "variant": 204584862, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 10285}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724560}, "child": {"skip": 108, "offset": 120, "next": [], "symbols": [{"name": "ppp_reset_max_state", "hash": "aeca48ec97289c685c27a757928830892221c69f", "variant": 401106678, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289724432}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707616}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8421421}, "child": {"skip": 684, "offset": 700, "next": [], "symbols": [{"name": "parse_keep_alive", "hash": "dc2e870dab08a2e2dbb044a7c60de6c3bc682d08", "variant": 2207397504, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 8421421}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289986640}, "child": {"skip": 332, "offset": 348, "next": [], "symbols": [{"name": "readline", "hash": "67c2e56798025cff3b1089c2e2192f51582c1f5d", "variant": 545976275, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290117744}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1008074752, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290642064}, "child": {"skip": 376, "offset": 392, "next": [], "symbols": [{"name": "OBJ_NAME_new_index", "hash": "8982776d83505064dfe74cc126dc96d48792d75d", "variant": 1312678434, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 4290052192}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 12628013}, "child": {"skip": 580, "offset": 596, "next": [], "symbols": [{"name": "ssl_verify_cb", "hash": "d046fb45803dab2b1dc89d74a8bbdc45d6c2fca4", "variant": 996296584, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 4289986640}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 12628013}, "child": {"skip": 460, "offset": 476, "next": [], "symbols": [{"name": "bn_div_words", "hash": "a13319c327f96261527097881d12aba81d4b302c", "variant": 3345507663, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 4289789984}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8433709}, "child": {"skip": 392, "offset": 408, "next": [], "symbols": [{"name": "rsa_verify_cb", "hash": "fa2732081ac1155b76b6d3d824473e281a2acb90", "variant": 319563429, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 405564}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 405567}, "child": {"skip": 720, "offset": 732, "next": [], "symbols": [{"name": "BER_parse", "hash": "12ec9fce7a21eaf942e3f5d31b4978432d855d8f", "variant": 4256017624, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604110868}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290642064}, "child": {"skip": 572, "offset": 584, "next": [], "symbols": [{"name": "BN_mod_inverse", "hash": "eead78743014ac39372bd2f28bc0a464a8903036", "variant": 192611670, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604176404}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290642064}, "child": {"skip": 544, "offset": 556, "next": [], "symbols": [{"name": "BN_from_montgomery", "hash": "d2b98e3bc05c9ff18e6f605ca726d3bb6c3eea53", "variant": 4048235299, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604311888}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290642064}, "child": {"skip": 908, "offset": 920, "next": [], "symbols": [{"name": "ssl3_get_certificate_request", "hash": "f9b20c370665a2b93a90f8c496a89410aa05916b", "variant": 3883296857, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 813891583}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 65011720}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 943882368}, "child": {"skip": 0, "offset": 12, "next": [], "symbols": [{"name": "euc2jis", "hash": "583a96fbe6115ec91f98ae3d6edcda7a75f75000", "variant": 0, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 137280}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2407661568, "relocation": {"type": "MIPS_GPREL16", "symbol": "__table_ptr_jis2ucs__"}}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "sceCccJIStoUCS", "hash": "f2312187d8669d094889b2b274e6a2ad2e50bdc0", "variant": 715709553, "library": "libccc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666763104}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "chi)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ld": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289790080}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707600}, "child": {"skip": 312, "offset": 328, "next": [], "symbols": [{"name": "_sceSifCmdIntrHdlr", "hash": "6234a354b35ad6b0aa40a856168dce1b5b5bd7d9", "variant": 3633008921, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 4290183296}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290052192}, "child": {"skip": 80, "offset": 96, "next": [{"match": {"value": 341966934}, "child": {"skip": 0, "offset": 100, "next": [{"match": {"value": 604110854}, "child": {"skip": 60, "offset": 164, "next": [{"match": {"value": 608370687}, "child": {"skip": 0, "offset": 168, "next": [{"match": {"value": 0}, "child": {"skip": 316, "offset": 488, "next": [], "symbols": [{"name": "sceCdDiskReady", "hash": "a863cdb27dfcc98563be72261253047f83d62665", "variant": 980663852, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 0}, "child": {"skip": 0, "offset": 168, "next": [{"match": {"value": 608370687}, "child": {"skip": 316, "offset": 488, "next": [], "symbols": [{"name": "sceCdDiskReady", "hash": "c6139ce944d71330b135fd817b2c3d4b9c3d8be7", "variant": 980663852, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 341966930}, "child": {"skip": 0, "offset": 100, "next": [{"match": {"value": 604110854}, "child": {"skip": 368, "offset": 472, "next": [], "symbols": [{"name": "sceCdDiskReady", "hash": "3284969fd06a9b0d0003f83ea19945a6c5e65f43", "variant": 2349371748, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290117744}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289855536}, "child": {"skip": 484, "offset": 500, "next": [], "symbols": [{"name": "sceCdDiskReady", "hash": "de337270a58d0db07c6b45c9651c259b47f326cf", "variant": 1154022891, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 4290642048}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290183280}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8450093}, "child": {"skip": 316, "offset": 336, "next": [], "symbols": [{"name": "_sceMcpMakeSpecoutBlock", "hash": "f1cbe02ca536df443abac1af60a82c6647777607", "variant": 3254392167, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 604110849}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290183280}, "child": {"skip": 232, "offset": 252, "next": [], "symbols": [{"name": "__sceEENetrevarpwhoarewe", "hash": "e9663244886fbd32a38ae9f833bc12366e1a3d36", "variant": 14213176, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2355232768, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8423469}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4290707600}, "child": {"skip": 844, "offset": 868, "next": [], "symbols": [{"name": "__sceEENetif_attach", "hash": "759b5f0b8ff4ee1749aa328031ef08a94e9b9f96", "variant": 3741242153, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 34861}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4290707600}, "child": {"skip": 732, "offset": 756, "next": [], "symbols": [{"name": "_sce_eenetctl_dump_usr_ifcnf", "hash": "9602231cca51a56184c01c5af0a18c3299153da0", "variant": 2991568682, "library": "eenetctl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289921072}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2355232768, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 2084, "offset": 2100, "next": [], "symbols": [{"name": "__sceEENetip_input", "hash": "4417a0dc541e4ae934530db4a841cc36d5fb7587", "variant": 3228733944, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4290117728}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 604110850}, "child": {"skip": 636, "offset": 652, "next": [], "symbols": [{"name": "sceHTTPSInit", "hash": "62b6df3f391dcb9577d381708173860a9a2fb728", "variant": 3563597177, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290642048}, "child": {"skip": 220, "offset": 236, "next": [], "symbols": [{"name": "__sceEENetloopattach", "hash": "9ad75f3215ea49598f111a62f3250af08dd12220", "variant": 1514394739, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290642048}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8421421}, "child": {"skip": 76, "offset": 96, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 100, "next": [{"match": {"value": 2353201152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 272, "offset": 376, "next": [], "symbols": [{"name": "sceCdStRead", "hash": "9338a09e532f6ce98eb07eca74afa6d729f75c94", "variant": 1953680892, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 45101}, "child": {"skip": 0, "offset": 100, "next": [{"match": {"value": 36909}, "child": {"skip": 256, "offset": 360, "next": [], "symbols": [{"name": "sceCdStRead", "hash": "e71602b452eedbcf3b78501b4ff6ac07d97606ba", "variant": 1559053632, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290052176}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 10518573}, "child": {"skip": 720, "offset": 740, "next": [], "symbols": [{"name": "ClutBumpInit", "hash": "63b6fe327e514394967e44b310222fd639f29461", "variant": 1535479643, "library": "libhip"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290642048}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1007026176, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290183280}, "child": {"skip": 592, "offset": 612, "next": [], "symbols": [{"name": "malloc_extend_top", "hash": "e0722dd9101e4961ed04ab3906edf23af1990295", "variant": 3950059652, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4290183280}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 14741549}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289986624}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4241453}, "child": {"skip": 348, "offset": 376, "next": [], "symbols": [{"name": "sceCdStRead", "hash": "45cb4a42358caf196223a1aa591c08c399fb0e97", "variant": 296449213, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 4290052176}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 12630061}, "child": {"skip": 376, "offset": 404, "next": [], "symbols": [{"name": "_getPtsDtsFlags", "hash": "fba2733a51cd5264ec119302deb905d5bd1164bd", "variant": 973497297, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290183296}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290117744}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 609681408, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289986640}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 8433709}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4289921088}, "child": {"skip": 48, "offset": 80, "next": [{"match": {"value": 268435506}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604176284}, "child": {"skip": 240, "offset": 328, "next": [], "symbols": [{"name": "sceMcGetDir", )PS2SDB", 8192}, + std::string_view{R"PS2SDB("hash": "fc18ae1f4a8a1fe374b5069552db7cf43df4f294", "variant": 2824036805, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 268435507}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604176284}, "child": {"skip": 244, "offset": 332, "next": [], "symbols": [{"name": "sceMcGetDir", "hash": "bbc0fdd889dcda31d72c405f023a623583340b50", "variant": 2994940647, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 14725165}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4289921088}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 10526765}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 4289855536}, "child": {"skip": 280, "offset": 320, "next": [], "symbols": [{"name": "sceMcChdir", "hash": "80aa173db2a04e65c0aacbdc265f8e8128a25355", "variant": 4161733206, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 8429613}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 4289855536}, "child": {"skip": 36, "offset": 76, "next": [{"match": {"value": 268435539}, "child": {"skip": 0, "offset": 80, "next": [{"match": {"value": 604176284}, "child": {"skip": 372, "offset": 456, "next": [], "symbols": [{"name": "sceMcSetFileInfo", "hash": "a6d44885d4ec103dcef650e49053a8fc8fbf1818", "variant": 357753539, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 268435540}, "child": {"skip": 0, "offset": 80, "next": [{"match": {"value": 604176284}, "child": {"skip": 84, "offset": 168, "next": [{"match": {"value": 637796372}, "child": {"skip": 0, "offset": 172, "next": [{"match": {"value": 37759021}, "child": {"skip": 284, "offset": 460, "next": [], "symbols": [{"name": "sceMcSetFileInfo", "hash": "7b6e0d0ce12cf8b125fada9247f561f27f606207", "variant": 142110143, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 37759021}, "child": {"skip": 0, "offset": 172, "next": [{"match": {"value": 637796372}, "child": {"skip": 284, "offset": 460, "next": [], "symbols": [{"name": "sceMcSetFileInfo", "hash": "a5600cb5ec53f75c00ab62d34bb86539e9341fc9", "variant": 3047299837, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290052192}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 14725165}, "child": {"skip": 292, "offset": 320, "next": [], "symbols": [{"name": "sceMcChdir", "hash": "a4485c137f0a84e2d94f1d3ce82e97a10e299ae9", "variant": 3570676403, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290052192}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 609681408, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 312, "offset": 332, "next": [], "symbols": [{"name": "sceMcGetDir", "hash": "e17bb15e4ccd5bf552bd11ee2cdf6ca7c0c6d952", "variant": 892152671, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290183280}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 580, "offset": 596, "next": [], "symbols": [{"name": "malloc_extend_top", "hash": "e4145e7f562aa8b46dc75a9c0938dbbd5b2b396f", "variant": 1296271884, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4290707552}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006862335}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2353856512, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8413229}, "child": {"skip": 88, "offset": 112, "next": [], "symbols": [{"name": "sprintf", "hash": "d3c7d0d52c8a1f81a5852f8436f59bd3bc3ff16a", "variant": 611994273, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 8413229}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 878968831}, "child": {"skip": 88, "offset": 112, "next": [], "symbols": [{"name": "sprintf", "hash": "b4b7cbe9427ecb864cefe86cfa3d621ada94995e", "variant": 1901291293, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289790088}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 605093889}, "child": {"skip": 360, "offset": 376, "next": [], "symbols": [{"name": "sceMc2Init", "hash": "10be7bddb77bdbc10c39220b8523b22ec8419f06", "variant": 1919888951, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 4289921072}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290642048}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2354249728, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8450093}, "child": {"skip": 444, "offset": 468, "next": [], "symbols": [{"name": "__sce_eenetctl_search_reginfo", "hash": "b6cdb5356d49e33bc5905be10e640f99c60946a7", "variant": 1555558950, "library": "eenetctl"}]}}], "symbols": []}}, {"match": {"value": 14719021}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4290183280}, "child": {"skip": 276, "offset": 300, "next": [], "symbols": [{"name": "_GetFreeEntrySize", "hash": "ed5852f14def4fa4db7c6713a2aadcf60ba1be93", "variant": 4128684488, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1007616000, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707552}, "child": {"skip": 100, "offset": 112, "next": [], "symbols": [{"name": "sprintf", "hash": "0c95bd6a66406e132f53dd6feb4b2da5f6297c5b", "variant": 1901291293, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 2407661568, "relocation": {"type": "MIPS_GPREL16", "symbol": "_theSceMpeg"}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290642048}, "child": {"skip": 388, "offset": 400, "next": [], "symbols": [{"name": "_getPtsDtsFlags", "hash": "593c4edbeb8e14b94b4b4f223283aea3dfaa4c66", "variant": 2747734680, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 1007026176, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 412, "offset": 424, "next": [], "symbols": [{"name": "__sceEENetdomaininit", "hash": "cf745e9ee4c7591fc135ef90922eda0b42f60475", "variant": 828135430, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789968}, "child": {"skip": 668, "offset": 680, "next": [], "symbols": [{"name": "dump_ppp_ifcnf", "hash": "e7a8a41bf96fc8f0ddd8cb5009b475aafdc596e5", "variant": 4167052967, "library": "eenetctl"}]}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1007812608, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289724416}, "child": {"skip": 280, "offset": 296, "next": [], "symbols": [{"name": "sceHiGsServiceExit", "hash": "df82406cd2680d715e2dbda62ac0d23c0c38ae2a", "variant": 4013996744, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 16814125}, "child": {"skip": 376, "offset": 392, "next": [], "symbols": [{"name": "sceDevFontRefDirectImage", "hash": "3e7db5c44cda372c175b07300e1007e53749f37e", "variant": 3707612394, "library": "libdev"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1174439943}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 3887333472}, "child": {"skip": 248, "offset": 260, "next": [], "symbols": [{"name": "sceVu0ViewScreenMatrix", "hash": "9e10f044e88934c8c00c3c639bf887b1706cb7bb", "variant": 671916354, "library": "libvu0"}]}}], "symbols": []}}, {"match": {"value": 4289)PS2SDB", 8192}, + std::string_view{R"PS2SDB(921104}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724448}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10524717}, "child": {"skip": 40, "offset": 56, "next": [{"match": {"value": 272630110}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 2449670144}, "child": {"skip": 1452, "offset": 1516, "next": [], "symbols": [{"name": "_printf", "hash": "c4cc0dd2d3199237f2229026f4f18499c925256f", "variant": 269593150, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 272630112}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 2449670144}, "child": {"skip": 1460, "offset": 1524, "next": [], "symbols": [{"name": "_printf", "hash": "c1c84e369613c68d3beab9acb9c14e89eb2155dd", "variant": 1365441486, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290117760}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 12621869}, "child": {"skip": 984, "offset": 1000, "next": [], "symbols": [{"name": "__sceEENetin4_cksum", "hash": "010594378dc18de93eec72d8ef3bcab313c69114", "variant": 3889734338, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289986688}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855584}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1007943680, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 4, "offset": 20, "next": [{"match": {"value": 647102464, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290707600}, "child": {"skip": 20, "offset": 48, "next": [{"match": {"value": 604241921}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 4, "offset": 60, "next": [{"match": {"value": 339738629}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 0}, "child": {"skip": 8, "offset": 76, "next": [{"match": {"value": 268435523}, "child": {"skip": 0, "offset": 80, "next": [{"match": {"value": 604176383}, "child": {"skip": 296, "offset": 380, "next": [], "symbols": [{"name": "sceClose", "hash": "13ad88cb600b913f58146ab87cb951ac11f09f29", "variant": 4012806192, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 268435518}, "child": {"skip": 0, "offset": 80, "next": [{"match": {"value": 604176383}, "child": {"skip": 276, "offset": 360, "next": [], "symbols": [{"name": "sceClose", "hash": "b842fea68add6965b88e25b5ae588178a28e3049", "variant": 1959831135, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 272629766}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 0}, "child": {"skip": 308, "offset": 376, "next": [], "symbols": [{"name": "sceClose", "hash": "b760dfef142db2fb9123ae9362244fcff00dcb44", "variant": 523098915, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604241930}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 4, "offset": 60, "next": [{"match": {"value": 339738629}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 0}, "child": {"skip": 136, "offset": 204, "next": [{"match": {"value": 604504084}, "child": {"skip": 0, "offset": 208, "next": [{"match": {"value": 39864365}, "child": {"skip": 148, "offset": 360, "next": [], "symbols": [{"name": "sceDclose", "hash": "739c3a808ce51d4c41f3b8e2f27aba3fbc584fa3", "variant": 1959831135, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604504080}, "child": {"skip": 0, "offset": 208, "next": [{"match": {"value": 39864365}, "child": {"skip": 148, "offset": 360, "next": [], "symbols": [{"name": "sceDclose", "hash": "f99c1d941d1a68a0111e49457796e32c15999c5d", "variant": 1959831135, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 272629766}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 0}, "child": {"skip": 288, "offset": 356, "next": [], "symbols": [{"name": "sceDclose", "hash": "ce616982c91932e5f9fea9784f0836bc4bfa7413", "variant": 2485452224, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707600}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 646971392, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 20, "offset": 48, "next": [{"match": {"value": 604241921}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 336, "offset": 392, "next": [], "symbols": [{"name": "sceClose", "hash": "9de56e185fd7771afe5252e6817fcbd13f34d097", "variant": 3784502285, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604241930}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 336, "offset": 392, "next": [], "symbols": [{"name": "sceDclose", "hash": "7c7fb080ea4fd5af60d0ee70500cf25bae09fccd", "variant": 3784502285, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289921136}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 12623917}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855584}, "child": {"skip": 152, "offset": 172, "next": [], "symbols": [{"name": "sceEENetSend", "hash": "9971922acad5bfc885aaa644f4e13e83a5324aed", "variant": 1259033617, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 14721069}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855584}, "child": {"skip": 156, "offset": 176, "next": [], "symbols": [{"name": "sceEENetRecv", "hash": "c4d8614bbc72251244fd1a9a43ab1fb9cf141782", "variant": 2814265323, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 605290500}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855584}, "child": {"skip": 612, "offset": 632, "next": [], "symbols": [{"name": "d2i_DSAparams", "hash": "e27816b863bd52f70a83162ef528181ca11f8361", "variant": 229505162, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 41005}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855584}, "child": {"skip": 400, "offset": 420, "next": [], "symbols": [{"name": "HMAC_Init", "hash": "e8248253145e99ba6f3a28eb74d6428835816ed0", "variant": 2227413155, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290052192}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289986640}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1008009216, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8429613}, "child": {"skip": 280, "offset": 300, "next": [], "symbols": [{"name": "sceMcChdir", "hash": "556c2e3c2a0f8018589784c5aa9917b9cf819e21", "variant": 3028950622, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 12625965}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290183296}, "child": {"skip": 404, "offset": 424, "next": [], "symbols": [{"name": "sceRead", "hash": "87a80646fd845b5a86d9f36436cc7fdab609e3b7", "variant": 2482966710, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 8431661}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1007943680, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 452, "offset": 472, "next": [], "symbols": [{"name": "sceMcSetFileInfo", "hash": "b3a18692a7662fb6aa9518b2808b0e9504a76475", "variant": 1290275560, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289921088}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8431661}, "child": {"skip": 320, "offs)PS2SDB", 8192}, + std::string_view{R"PS2SDB(et": 336, "next": [], "symbols": [{"name": "sceMcChdir", "hash": "cc27fcd13567d8f1756fbbfcd6123431be2d81d4", "variant": 2537448867, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855536}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789984}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 12619821}, "child": {"skip": 8, "offset": 24, "next": [{"match": {"value": 4290117744}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4290052192}, "child": {"skip": 348, "offset": 380, "next": [], "symbols": [{"name": "sceWrite", "hash": "7deaff068c62cec285f6176a69ac031ff3348631", "variant": 945859124, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 4289986640}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4289921088}, "child": {"skip": 344, "offset": 376, "next": [], "symbols": [{"name": "sceWrite", "hash": "02a4368f8cc1fce85a788d61259779132b3d04c9", "variant": 3169790816, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724432}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 12619821}, "child": {"skip": 372, "offset": 388, "next": [], "symbols": [{"name": "sceWrite", "hash": "a42690999f90605d00d500d1108856ccff69ac18", "variant": 4273962737, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 4290183296}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 12619821}, "child": {"skip": 220, "offset": 236, "next": [{"match": {"value": 604373376}, "child": {"skip": 0, "offset": 240, "next": [{"match": {"value": 46475288}, "child": {"skip": 96, "offset": 340, "next": [], "symbols": [{"name": "scePadPortOpen", "hash": "69a05db07d72eea04765ee6fb53e29392b86f691", "variant": 1397417168, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 604373760}, "child": {"skip": 0, "offset": 240, "next": [{"match": {"value": 46475288}, "child": {"skip": 96, "offset": 340, "next": [], "symbols": [{"name": "scePadPortOpen", "hash": "7a2596d45412e661c57b86548758791ec0c03e53", "variant": 1397417168, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8425517}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290117744}, "child": {"skip": 612, "offset": 628, "next": [], "symbols": [{"name": "client_master_key", "hash": "03bcc55ba6ca4a63095dc18f5a1e354b07e7d302", "variant": 3325421474, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006833664}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290117728}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 878907408}, "child": {"skip": 676, "offset": 692, "next": [], "symbols": [{"name": "cbTimerHandler", "hash": "8b5b6202d7bdc5d96ca8f2f4a25d6f8dda662a6f", "variant": 3643184748, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 4290183280}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 878905360}, "child": {"skip": 1120, "offset": 1136, "next": [], "symbols": [{"name": "cbTimerHandler", "hash": "8338414b94d8b4f5fdb863ff7e3b443c1ee0c9f2", "variant": 217475498, "library": "libtimer"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724544}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 12615725}, "child": {"skip": 180, "offset": 192, "next": [], "symbols": [{"name": "scePadSetActDirect", "hash": "98890c220177082c7cdce0f0602f4cf4189c307a", "variant": 4230024416, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 4290642048}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290183280}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1008599040, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290117728}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1008140288, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290052176}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 1008074752, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4289986624}, "child": {"skip": 28, "offset": 64, "next": [{"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 1007747072, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 8, "offset": 80, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "WaitSema"}}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 2411986944, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 52, "offset": 140, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "scePrintf"}}, "child": {"skip": 0, "offset": 144, "next": [{"match": {"value": 2382757888, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 40, "offset": 188, "next": [], "symbols": [{"name": "_Cdvd_cbLoop", "hash": "8987fac9f08253b6c3a7196bbb657728e1660bea", "variant": 4289548763, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "printf"}}, "child": {"skip": 0, "offset": 144, "next": [{"match": {"value": 2382757888, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 40, "offset": 188, "next": [], "symbols": [{"name": "_Cdvd_cbLoop", "hash": "8987fac9f08253b6c3a7196bbb657728e1660bea", "variant": 1295779623, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2411986944, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "WaitSema"}}, "child": {"skip": 120, "offset": 208, "next": [], "symbols": [{"name": "_Cdvd_cbLoop", "hash": "c45bc97e76e0f37ca1b16cc0a976f96af0dff208", "variant": 2610291781, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707600}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 1007747072, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 136, "offset": 208, "next": [], "symbols": [{"name": "_Cdvd_cbLoop", "hash": "cdedc9640049f2454ed8a761cce4256114bee6f3", "variant": 2135855080, "library": "libcdvd"}, {"name": "_sceCd_cbLoop", "hash": "cdedc9640049f2454ed8a761cce4256114bee6f3", "variant": 2135855080, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 605487103}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4289986624}, "child": {"skip": 140, "offset": 176, "next": [], "symbols": [{"name": "_Cdvd_cbLoop", "hash": "12d9b279fcd73d2e176c79aeb4f6b6e5ba68ab02", "variant": 992195812, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 605421569}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4289986624}, "child": {"skip": 80, "offset": 116, "next": [{"match": {"value": 406847493}, "child": {"skip": 0, "offset": 120, "next": [{"match": {"value": 646184960, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 64, "offset": 188, "next": [], "symbols": [{"name": "_Cdvd_cbLoop", "hash": "1c5eef563d5e6341a39fefff7d18ef70fc25bbcd", "variant": 1159172370, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 406847492}, "child": {"skip": 0, "offset": 120, "next": [{"match": {"value": 646184960, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 52, "offset": 176, "next": [], "symbols": [{"name": "_Cdvd_cbLoop", "hash": "adecb4369323d663b9be67bb1901d2b9fbea68f2", "variant": 992195812, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290052176}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289986624}, "child": {"skip": 692, "offset": 720, "next":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( [], "symbols": [{"name": "__sceEENetip_init", "hash": "57180223cec6f954c28235b70a38f56f686cb715", "variant": 2206160221, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289921072}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289724416}, "child": {"skip": 1024, "offset": 1048, "next": [], "symbols": [{"name": "lfree", "hash": "85e18bfc3ba7921f62a3721dd164c59bbf4c11e7", "variant": 103470429, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 605945857}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290117728}, "child": {"skip": 192, "offset": 212, "next": [], "symbols": [{"name": "_Cdvd_cbLoop", "hash": "b4f3c26f68311e75f3bef1762e0fcb541c3cdfc9", "variant": 748756345, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 605945890}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290117728}, "child": {"skip": 252, "offset": 272, "next": [], "symbols": [{"name": "_mbAddressIncrement", "hash": "b1e028dbe6fe3ad42d7b3ba4ce684770a7cc5eb7", "variant": 4024117558, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 16838701}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289986624}, "child": {"skip": 352, "offset": 372, "next": [], "symbols": [{"name": "_getPtsDtsFlags", "hash": "6eeb7d09060c7ca443f5840353dd5ee6a585cb55", "variant": 3286798272, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 14741549}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290052176}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 12630061}, "child": {"skip": 1068, "offset": 1092, "next": [], "symbols": [{"name": "__sceEENetm_pulldown", "hash": "40d480323ebccf7e4d5b46cd4a288d9a6fa15ae6", "variant": 440918971, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4290117728}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 12630061}, "child": {"skip": 332, "offset": 356, "next": [], "symbols": [{"name": "_sce_eenet_staticaddr_ctl", "hash": "a1e898f8a0b6ddc072aa65009e5486ec6e2a0f30", "variant": 317482580, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290117728}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290052176}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289986624}, "child": {"skip": 696, "offset": 720, "next": [], "symbols": [{"name": "__sceEENettvtocdclk", "hash": "eb71e67e15ca729fbc956be3864ddf21f7c0179c", "variant": 130784892, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 14727213}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4290052176}, "child": {"skip": 372, "offset": 396, "next": [], "symbols": [{"name": "__sceEENetres_queriesmatch", "hash": "20fa556018133cac1470636c7bc24228fdf8cbde", "variant": 2926935150, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8450093}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290117728}, "child": {"skip": 324, "offset": 344, "next": [], "symbols": [{"name": "__sceEENetres_nameinquery", "hash": "edb9a9ae841b5dfcb6adddde34e75486ebae3e2d", "variant": 181365927, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 606011391}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290117728}, "child": {"skip": 296, "offset": 316, "next": [], "symbols": [{"name": "CRYPTO_get_ex_new_index", "hash": "c352e50f52c4adb155a9dc8aa17d8bae57e758b8", "variant": 3825272107, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 61485}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290117728}, "child": {"skip": 212, "offset": 232, "next": [], "symbols": [{"name": "HMAC", "hash": "38faec837002632421dd134adae1f2cab3155a22", "variant": 1625862764, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8450093}, "child": {"skip": 1376, "offset": 1392, "next": [], "symbols": [{"name": "_realloc_r", "hash": "bd05f0ebbaf3929f17a4d5c21473703b06d28fa9", "variant": 2471652562, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4289986624}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 12644397}, "child": {"skip": 668, "offset": 684, "next": [], "symbols": [{"name": "sceEENetAccept", "hash": "1b8acbec9c6922146d669f0e12a9d362ba201a87", "variant": 4289880496, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 12644397}, "child": {"skip": 572, "offset": 588, "next": [], "symbols": [{"name": "add_cert_dir", "hash": "096f3d18330e94955cd26141e4eea57cfdff9248", "variant": 3171432745, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290117744}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1008074752, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289855536}, "child": {"skip": 44, "offset": 60, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "scePrintf"}}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "cmd_sem_init"}}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 1007878144, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 76, "next": [{"match": {"value": 2388918272, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 424, "offset": 504, "next": [], "symbols": [{"name": "sceCdDiskReady", "hash": "0eeab37498bd5ec4a10986bd64325952a77b1ca4", "variant": 1709668434, "library": "libcdvd"}, {"name": "sceCdDiskReady_old", "hash": "0eeab37498bd5ec4a10986bd64325952a77b1ca4", "variant": 1709668434, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 1008009216, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 76, "next": [{"match": {"value": 2393112576, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 408, "offset": 488, "next": [], "symbols": [{"name": "sceCdDiskReady", "hash": "eb42e7cd8b03156d1dcf97d0d6b9978635563d6b", "variant": 2851216279, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "DIntr"}}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 0}, "child": {"skip": 460, "offset": 536, "next": [], "symbols": [{"name": "sceCdDiskReady_old", "hash": "8e3bf0cd7a31c74c3d846c31b50f117a23d66012", "variant": 1604434624, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "printf"}}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 436, "offset": 504, "next": [], "symbols": [{"name": "sceCdDiskReady", "hash": "feff9beaea83077d734d429586a4ce7cddd9e08e", "variant": 1689571904, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290052192}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1008074752, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289986640}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 650248192, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 204, "offset": 228, "next": [{"match": {"value": 2891120640, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 232, "next": [{"match": {"value": 33562669}, "child": {"skip": 144, "offset": 380, "next": [], "symbols": [{"name": "sceMcGetInfo", "hash": "3cc95964663b6f8c9177904d077b0d341e437ff6", ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(variant": 3300039816, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 33562669}, "child": {"skip": 0, "offset": 232, "next": [{"match": {"value": 2891120640, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 144, "offset": 380, "next": [], "symbols": [{"name": "sceMcGetInfo", "hash": "9af69cf1cc835a9a5ae0a702db8d00ecb4192a9b", "variant": 1406012986, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8431661}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4289986640}, "child": {"skip": 280, "offset": 304, "next": [], "symbols": [{"name": "sceMcGetDir", "hash": "6fbf733d41edb08006354ce4762db1eee694289e", "variant": 3185736174, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8433709}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1008009216, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 324, "offset": 344, "next": [], "symbols": [{"name": "sceMcGetDir", "hash": "2df4316ddf17979f01c45d26045f2b98d8f691e0", "variant": 2068193600, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 14725165}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289921088}, "child": {"skip": 252, "offset": 272, "next": [], "symbols": [{"name": "__sceEENetin_pcblookup_port", "hash": "889341702d6871fb3a7cbae9e9f780376e982c2b", "variant": 2870613786, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 10530861}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289921088}, "child": {"skip": 1780, "offset": 1800, "next": [], "symbols": [{"name": "_sce_eenet_dhclient_make_request", "hash": "97938ed66106599884a72c22542d7adc6957b9f5", "variant": 3804111021, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855536}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1008074752, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 372, "offset": 388, "next": [], "symbols": [{"name": "sceMcGetInfo", "hash": "991e4a7949440de1be1150528165d2b703ec8191", "variant": 1742363582, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 4289921088}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1008074752, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 420, "offset": 436, "next": [], "symbols": [{"name": "sceMcSetFileInfo", "hash": "7479a08ecd316889b611846ff56f297d6dfd01e7", "variant": 726930682, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 4289986640}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8433709}, "child": {"skip": 304, "offset": 320, "next": [], "symbols": [{"name": "Vu1ResidentTextureMakePacket", "hash": "f186ab228660326989d95382c24e4e593b6aabd0", "variant": 4269496893, "library": "libhip"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290117728}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1008074752, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290642048}, "child": {"skip": 64, "offset": 80, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "scePrintf"}}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 172, "offset": 260, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceCdDelayThread"}}, "child": {"skip": 0, "offset": 264, "next": [{"match": {"value": 604241928}, "child": {"skip": 124, "offset": 392, "next": [], "symbols": [{"name": "sceCdStRead", "hash": "f14c73c28d4a34762056136c9b74c97d6d497771", "variant": 2105573227, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "DelayThread"}}, "child": {"skip": 0, "offset": 264, "next": [{"match": {"value": 604242520}, "child": {"skip": 124, "offset": 392, "next": [], "symbols": [{"name": "sceCdStRead", "hash": "ab1569de3fc106b39b0ac038f61f12a8b1660ce5", "variant": 2117192584, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "printf"}}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 176, "offset": 264, "next": [{"match": {"value": 604241928}, "child": {"skip": 0, "offset": 268, "next": [{"match": {"value": 376635360}, "child": {"skip": 120, "offset": 392, "next": [], "symbols": [{"name": "sceCdStRead", "hash": "f14c73c28d4a34762056136c9b74c97d6d497771", "variant": 2729731409, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 604241936}, "child": {"skip": 0, "offset": 268, "next": [{"match": {"value": 376635360}, "child": {"skip": 120, "offset": 392, "next": [], "symbols": [{"name": "sceCdStRead", "hash": "f7fca246d04de67e06cd8223154e065cb811d61b", "variant": 2729731409, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1008074752, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 20, "offset": 36, "next": [{"match": {"value": 12623917}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 4289855520}, "child": {"skip": 312, "offset": 356, "next": [], "symbols": [{"name": "sceCdStRead", "hash": "f0fe5be616091b32dcc844adcc2f5f10fe872c6d", "variant": 2740419884, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 10526765}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 4289855520}, "child": {"skip": 296, "offset": 340, "next": [], "symbols": [{"name": "sceCdStRead", "hash": "5923e420a725f75c8369840d2be08caa27e2d47d", "variant": 411104323, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289921072}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1008074752, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 396, "offset": 412, "next": [], "symbols": [{"name": "__sceEENetcallout_thread", "hash": "854938b05a1568847414ca265097727d4d169400", "variant": 3779044781, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4290052176}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 12628013}, "child": {"skip": 496, "offset": 512, "next": [], "symbols": [{"name": "ssl3_lwrite", "hash": "9a4ab1e37ea3cde1efbacf6cb0e608e289f6dc5e", "variant": 3911715318, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290183280}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1008140288, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290642048}, "child": {"skip": 352, "offset": 368, "next": [], "symbols": [{"name": "sceCdStRead", "hash": "d2516111f61ac2ded30f100b2b7a537ba737a3c3", "variant": 3156104655, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8435757}, "child": {"skip": 1388, "offset": 1404, "next": [], "symbols": [{"name": "_realloc_r", "hash": "f0153f299256ea1738d25c81298454926452046b", "variant": 1641533571, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4290117728}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10532909}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8433709}, "child": {"skip": 456, "offset": 480, "next": [], "symbols": [{"name": "rt_msg1", "hash": "d289e822365d30bcc80c91d457da411caea69ac7", "variant": 1586366317, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4290052176}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 48672801}, "child": {"skip": 5)PS2SDB", 8192}, + std::string_view{R"PS2SDB(48, "offset": 572, "next": [], "symbols": [{"name": "ns_name_pton", "hash": "e4592c2a4151e56791c88f966477f833a98bcab3", "variant": 279498120, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8435757}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855520}, "child": {"skip": 716, "offset": 736, "next": [], "symbols": [{"name": "BN_bnme_set", "hash": "2824457580e1fddee7cf7eed624a09071f06fd70", "variant": 2761972416, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290183296}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290052192}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1008140288, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289986640}, "child": {"skip": 64, "offset": 84, "next": [{"match": {"value": 268435513}, "child": {"skip": 0, "offset": 88, "next": [{"match": {"value": 4141}, "child": {"skip": 268, "offset": 360, "next": [], "symbols": [{"name": "sceCdStream", "hash": "27b08274e2c3058cdcc321403400cce0b1500da0", "variant": 28965513, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 268435514}, "child": {"skip": 0, "offset": 88, "next": [{"match": {"value": 4141}, "child": {"skip": 272, "offset": 364, "next": [], "symbols": [{"name": "sceCdStream", "hash": "16e9f97937e01d0f730cd9a6e2690f48ee61759c", "variant": 288720549, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 16824365}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289986640}, "child": {"skip": 276, "offset": 296, "next": [], "symbols": [{"name": "i2d_ASN1_SET", "hash": "5edd928dcd75e919252ff1cde048fd07e5ef35c7", "variant": 562509359, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290117744}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 14727213}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289986640}, "child": {"skip": 680, "offset": 700, "next": [], "symbols": [{"name": "__sceEENettcp_dooptions", "hash": "1dd65451a39a1a5d0ecc859f4008c7dae6cc3878", "variant": 2013027973, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 8435757}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290052192}, "child": {"skip": 424, "offset": 444, "next": [], "symbols": [{"name": "i2d_X509_NAME_entries", "hash": "9e65ef7f50beef755c78611280c8f7a8bbe5727e", "variant": 2008322492, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289921088}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 16824365}, "child": {"skip": 544, "offset": 560, "next": [], "symbols": [{"name": "sceEENetGetsockopt", "hash": "875c63f36bf8c45f105eedf1bbd466c546bf1126", "variant": 1524356580, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289986672}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1007943680, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289790016}, "child": {"skip": 536, "offset": 552, "next": [], "symbols": [{"name": "sceMcInit", "hash": "38c993157e91bca32ce90c4a71b485d44cf0df51", "variant": 1736135074, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 4290052224}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8429613}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289921120}, "child": {"skip": 432, "offset": 452, "next": [], "symbols": [{"name": "sendit", "hash": "81c6bd6fc0f47fb15f21e3fd2d12ab6f8ec40e0b", "variant": 2247035779, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 12623917}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289921120}, "child": {"skip": 324, "offset": 344, "next": [], "symbols": [{"name": "EVP_SignFinal", "hash": "6b6f21dd0fa8a311b5aeab13ab34b14c841f17a5", "variant": 2616775569, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8400941}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707600}, "child": {"skip": 1248, "offset": 1260, "next": [], "symbols": [{"name": "__ieee754_log", "hash": "8aad8b61a9cdc313d8f22d46b15aa213f659a94a", "variant": 2017407360, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 3887530136}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 3887333504}, "child": {"skip": 24, "offset": 36, "next": [{"match": {"value": 1007878144, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 4289855568}, "child": {"skip": 1244, "offset": 1288, "next": [], "symbols": [{"name": "powf", "hash": "0a668621629c60a4ac0a5064c49cac16dc8d108d", "variant": 3180759819, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 4289855568}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 4289790016}, "child": {"skip": 1248, "offset": 1292, "next": [], "symbols": [{"name": "powf", "hash": "1d4a940323e84023ef63804a89dfb09a2a75135e", "variant": 2405895463, "library": "libm"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855568}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724464}, "child": {"skip": 24, "offset": 36, "next": [{"match": {"value": 1008009216, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__ieee754_pow"}}, "child": {"skip": 1028, "offset": 1072, "next": [], "symbols": [{"name": "pow", "hash": "f6a4a75d767f1dc9e75a71dee107bca2b088ecb8", "variant": 2729190079, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__ieee754_pow"}}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 4289921120}, "child": {"skip": 1028, "offset": 1072, "next": [], "symbols": [{"name": "pow", "hash": "147c71741fc31f31178c18b1158e8cd97ceea0ae", "variant": 838487999, "library": "libm"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290052176}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289921072}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1008009216, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8427565}, "child": {"skip": 448, "offset": 468, "next": [], "symbols": [{"name": "sceHiDMAMake_LoadGSLump", "hash": "9502b3696a622468d8f0223be238ab6328ca4710", "variant": 2619562162, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 10528813}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707600}, "child": {"skip": 960, "offset": 980, "next": [], "symbols": [{"name": "__ieee754_hypot", "hash": "93b4d1effbdd07c182d82a58552a3ed645938a25", "variant": 3776522582, "library": "libm"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289986624}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8431661}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707600}, "child": {"skip": 424, "offset": 444, "next": [], "symbols": [{"name": "__sceEENetip_pcbopts", "hash": "92f4704ca20f3c667a51e08e75e5fb1abc1f5a24", "variant": 3389061483, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 12625965}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8429613}, "child": {"skip": 284, "offset": 304, "next": [], "symbols": [{"name": "bn_sqr_normal", "hash": "e4332184632158c11556ff8f7f67e09c96b25ced", "variant": 2565692719, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289921072}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707600}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8427565}, "child": {"skip": 1472, "offset": 1488, "next": [], "symbols": [{"name": "expm1)PS2SDB", 8192}, + std::string_view{R"PS2SDB(", "hash": "befdff9284ffc87bbc35bf482ff73d6513b56e6f", "variant": 1076394833, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8427565}, "child": {"skip": 316, "offset": 332, "next": [], "symbols": [{"name": "_motionVector", "hash": "c9c6005a2b64ccd395f71552e0f7222cf0d6b31b", "variant": 1058567238, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 12587053}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006862335}, "child": {"skip": 100, "offset": 112, "next": [], "symbols": [{"name": "_sprintf_r", "hash": "5fe40912e7224ec5c8c0815437fc6722f9b5251f", "variant": 125559969, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 604110852}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707560}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289724512}, "child": {"skip": 120, "offset": 136, "next": [], "symbols": [{"name": "sscanf", "hash": "c29e0f618daa42d7b3c354bfaa578969024d2350", "variant": 1434371513, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4289986688}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289921136}, "child": {"skip": 856, "offset": 872, "next": [], "symbols": [{"name": "d2i_DSAPublicKey", "hash": "bda24a13ddf77a946562879d9ee671707a61603f", "variant": 3382454868, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 4289921152}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289855600}, "child": {"skip": 1196, "offset": 1212, "next": [], "symbols": [{"name": "d2i_X509_CRL_INFO", "hash": "443bb6662a101ebaee390249045f528be747050f", "variant": 1532795212, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 14381}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724496}, "child": {"skip": 3848, "offset": 3860, "next": [], "symbols": [{"name": "_strtod_r", "hash": "c36c35a63177b4b75e134f64fc48ebe0968ef356", "variant": 1105821200, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4289724496}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289790040}, "child": {"skip": 2496, "offset": 2508, "next": [], "symbols": [{"name": "qsort", "hash": "65a11c1e4e3b53839e64fae05d2cb32e5624d240", "variant": 2378260107, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4289790064}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 665190468}, "child": {"skip": 448, "offset": 460, "next": [], "symbols": [{"name": "_slice0", "hash": "b7cce6dabd6f86c351ff2972dcc6f4f3991c8332", "variant": 1632974410, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 604110849}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290642048}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290183280}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 12644397}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4290117728}, "child": {"skip": 356, "offset": 380, "next": [], "symbols": [{"name": "_motionVectors", "hash": "2d4a9b33a93bd169110cf1aed9948782c584aa12", "variant": 1738130785, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 14741549}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4290117728}, "child": {"skip": 588, "offset": 612, "next": [], "symbols": [{"name": "bpf_movein", "hash": "711955ce8d007487968ecb5a4a038a8f7e17a7aa", "variant": 220265716, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290642048}, "child": {"skip": 404, "offset": 420, "next": [], "symbols": [{"name": "ssl3_write_bytes", "hash": "2c3b41c6720bc096472b700fc1b039731d82dbea", "variant": 2327808372, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 8423469}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290642048}, "child": {"skip": 1048, "offset": 1064, "next": [], "symbols": [{"name": "_motionVector", "hash": "f675521f6a822567f803d67d5540aa5527d511d5", "variant": 362001817, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 4290183280}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8423469}, "child": {"skip": 468, "offset": 484, "next": [], "symbols": [{"name": "__sceEENetres_querydomain", "hash": "2545f9a034ae1c091c12e3ad4477870abb3caa32", "variant": 506520818, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4290117728}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8423469}, "child": {"skip": 2020, "offset": 2036, "next": [], "symbols": [{"name": "ssl3_connect", "hash": "a09e699099361ae3b2d8d8b40ba5816cbc4876f8", "variant": 3983075554, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10520621}, "child": {"skip": 980, "offset": 996, "next": [], "symbols": [{"name": "des_set_key", "hash": "901b90d453492286a782369342d6826b773c8f82", "variant": 1195284195, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006768128}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290642048}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 876748816}, "child": {"skip": 360, "offset": 376, "next": [], "symbols": [{"name": "_nextBit", "hash": "61860d241f46819e6cb50a9636fb064f3714daef", "variant": 3353306743, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 876748816}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707600}, "child": {"skip": 340, "offset": 360, "next": [], "symbols": [{"name": "_sceMpegWaitIpuIdle", "hash": "8039093caa25f69f83342186c0ca97cc7f10f5dc", "variant": 1894392183, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 876748800}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707600}, "child": {"skip": 364, "offset": 384, "next": [], "symbols": [{"name": "_sceMpegWaitIpuIdle64", "hash": "09fa4b27d35e47d41d204414539f67da9dfc2a64", "variant": 2912496552, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290117760}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290052208}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 605421573}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289986656}, "child": {"skip": 44, "offset": 64, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_nextStartCode"}}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 33562669}, "child": {"skip": 196, "offset": 268, "next": [], "symbols": [{"name": "_nextHeader", "hash": "58f2ba3677626c7914ce0d0196c96cde941a8fa6", "variant": 2416384273, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2382500000}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 0}, "child": {"skip": 212, "offset": 284, "next": [], "symbols": [{"name": "_nextHeader", "hash": "cbbc7a35cd4de6c334c39969fac248307d0a587c", "variant": 294825252, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 18919469}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289986656}, "child": {"skip": 52, "offset": 72, "next": [{"match": {"value": 268435534}, "child": {"skip": 0, "offset": 76, "next": [{"match": {"value": 604176383}, "child": {"skip": 348, "offset": 428, "next": [], "symbols": [{"name": "sceSifMBindRpcParam", "hash": "e918761fa02c707b03c2b30a8eaa5d93029df0cc", "variant": 711783631, "library": "libmrpc"}]}}], "symbols": []}}, {"match": {"value": 268435543}, "child": {"skip": 0, "offset": 76, "next": [{"match": {"value": 604176383}, "child": {"skip": 384, "offset": 464, "next": [], "symbols": [{"name": "sceSifMBindRpcParam", "hash": "4ac8f3b8a062bb076)PS2SDB", 8192}, + std::string_view{R"PS2SDB(21b356d5412c64bf6e5a4b0", "variant": 3885144613, "library": "libmrpc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10530861}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289986656}, "child": {"skip": 1256, "offset": 1276, "next": [], "symbols": [{"name": "ssl2_read", "hash": "384438c54b6b191169135a731e7686626150bebe", "variant": 1677079235, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604372994}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289921120}, "child": {"skip": 44, "offset": 56, "next": [{"match": {"value": 2382628952}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 6461464}, "child": {"skip": 172, "offset": 236, "next": [{"match": {"value": 276824119}, "child": {"skip": 0, "offset": 240, "next": [{"match": {"value": 2946629664}, "child": {"skip": 384, "offset": 628, "next": [], "symbols": [{"name": "_csc_storeRefImage", "hash": "4170b66f186dc799e8548111fa98afef2f67d937", "variant": 1062652031, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 276824122}, "child": {"skip": 0, "offset": 240, "next": [{"match": {"value": 2946629664}, "child": {"skip": 404, "offset": 648, "next": [], "symbols": [{"name": "_csc_storeRefImage", "hash": "cfce55132d8bb27691db513f459b5711088ee440", "variant": 3244964970, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2382628976}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 6461464}, "child": {"skip": 584, "offset": 648, "next": [], "symbols": [{"name": "_csc_storeRefImage", "hash": "e9683f5694f717317d5cc299cd0b395cec8b86c4", "variant": 3244964970, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2143223888}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2143158336}, "child": {"skip": 32, "offset": 44, "next": [{"match": {"value": 268435542}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 0}, "child": {"skip": 384, "offset": 436, "next": [], "symbols": [{"name": "__unexpected", "hash": "a9d191df6c3901cf35a171042548536825b15073", "variant": 3488768069, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 268435545}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 0}, "child": {"skip": 12, "offset": 64, "next": [{"match": {"value": 667222116}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi"}}, "child": {"skip": 376, "offset": 448, "next": [], "symbols": [{"name": "__unexpected", "hash": "11648ad5c09ce92e2d925d884dac910d50b60879", "variant": 2514370597, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 1883252264}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__DecodeUnsignedNumber__FPcPUi"}}, "child": {"skip": 376, "offset": 448, "next": [], "symbols": [{"name": "__unexpected", "hash": "69fab60b7cc640d390214447dabb769334bb2773", "variant": 2895015611, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 268435540}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 0}, "child": {"skip": 376, "offset": 428, "next": [], "symbols": [{"name": "__unexpected", "hash": "9a7d84fee5c8392f2eef12e3f5a91c024bfdbc7e", "variant": 150860710, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2143223840}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2142306320}, "child": {"skip": 16, "offset": 28, "next": [{"match": {"value": 1350565895}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 1914709544}, "child": {"skip": 8, "offset": 44, "next": [{"match": {"value": 272629782}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 811728927}, "child": {"skip": 696, "offset": 748, "next": [], "symbols": [{"name": "NextAction__FP14ActionIterator", "hash": "65801654d49be997ed1201d11efcb4ef7cee6a11", "variant": 2955880238, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 272629783}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 811728927}, "child": {"skip": 104, "offset": 156, "next": [{"match": {"value": 610467840, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 160, "next": [{"match": {"value": 135296}, "child": {"skip": 584, "offset": 748, "next": [], "symbols": [{"name": "NextAction__FP14ActionIterator", "hash": "6bbdf3ec37b1b77670d6314f78d8cb7817a64bd4", "variant": 3317060683, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 135296}, "child": {"skip": 0, "offset": 160, "next": [{"match": {"value": 610467840, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 584, "offset": 748, "next": [], "symbols": [{"name": "NextAction__FP14ActionIterator", "hash": "c6f31df3a2f949a4f7c703fbc7778a7537240925", "variant": 207538794, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1350565894}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 1914709544}, "child": {"skip": 700, "offset": 736, "next": [], "symbols": [{"name": "NextAction__FP14ActionIterator", "hash": "71fed676997e1ba5eece6618c0c15465e4176dea", "variant": 3221236414, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289986624}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289921072}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1007943680, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289855520}, "child": {"skip": 1292, "offset": 1312, "next": [], "symbols": [{"name": "sceGpInitPrim", "hash": "ab0e0e8c6931292cbc059beb31c4ea4f2a8e6a02", "variant": 1972740027, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 617938940}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724416}, "child": {"skip": 868, "offset": 888, "next": [], "symbols": [{"name": "sppp_ipcp_RCN_nak", "hash": "83b4af38e792e112e812dfdee7eca9ffa9fd006c", "variant": 3948704892, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 8429613}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707600}, "child": {"skip": 1604, "offset": 1624, "next": [], "symbols": [{"name": "__sceEENetip_reass", "hash": "304d5d98bb0de6471ef0849dcd04ceaf70f099c5", "variant": 3411241897, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 14721069}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290642048}, "child": {"skip": 448, "offset": 468, "next": [], "symbols": [{"name": "bn_from_montgomery_words", "hash": "5757c657d8edc7573112e681461d111c29cac3de", "variant": 4111569278, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604160000}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289986688}, "child": {"skip": 224, "offset": 236, "next": [], "symbols": [{"name": "sceVibSetActParam", "hash": "e230adc43ccadadad03ce4368ee1968d88c088b4", "variant": 2948758001, "library": "libvib"}]}}], "symbols": []}}, {"match": {"value": 4290707600}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290642048}, "child": {"skip": 812, "offset": 824, "next": [], "symbols": [{"name": "sceSynthesizerTonegenerator", "hash": "665ba371f1f1e17e27bc6b42a8616ac1a1d39f9a", "variant": 2023404889, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 604176412}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290052192}, "child": {"skip": 272, "offset": 284, "next": [], "symbols": [{"name": "_sceMcCoreReadClock", "hash": "2b69b4099c9f9e5a5c6599b15c61f8322f80b8f9", "variant": 151708358, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 604110876}, "child": {"skip": 0, "offset": 8, "n)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ext": [{"match": {"value": 4290117744}, "child": {"skip": 28, "offset": 40, "next": [{"match": {"value": 4290052192}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 4289986640}, "child": {"skip": 324, "offset": 372, "next": [], "symbols": [{"name": "_sceMcCoreWriteSameData", "hash": "b9c9594c6b5c070334ea7d666513b2e5112bd0b5", "variant": 1803667291, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 4289986640}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 4289855536}, "child": {"skip": 288, "offset": 336, "next": [], "symbols": [{"name": "_sceMcCoreBlockErase", "hash": "4ec930ca6a5bf9650e65c98f7e6de889493e7bdd", "variant": 3496847577, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10502189}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290183280}, "child": {"skip": 444, "offset": 456, "next": [], "symbols": [{"name": "Linear", "hash": "50b381e8d208dae862a8090ec6ed61e9ba2e15d7", "variant": 2832414065, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 4289789984}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724432}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 12617773}, "child": {"skip": 1016, "offset": 1032, "next": [], "symbols": [{"name": "sceHiPlugTim2SetPicture", "hash": "0603a48d75eff3e74e9a3f421ff593b616481adf", "variant": 3133925865, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 4290183296}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 18909229}, "child": {"skip": 4, "offset": 20, "next": [{"match": {"value": 10532909}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290052192}, "child": {"skip": 284, "offset": 312, "next": [], "symbols": [{"name": "RSA_verify", "hash": "e6e801ef2bcd9916811d19823313bfd609da3a70", "variant": 255336808, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 47149}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290052192}, "child": {"skip": 332, "offset": 360, "next": [], "symbols": [{"name": "rsa_verify_ASN1_OCTET_STRING_cb", "hash": "e5d6a6838a3345d7a4fcc1bb27f423b1e551e5a0", "variant": 2367307497, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006747520}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1149329408}, "child": {"skip": 88, "offset": 100, "next": [{"match": {"value": 2388787200}, "child": {"skip": 0, "offset": 104, "next": [{"match": {"value": 3323985932}, "child": {"skip": 40, "offset": 148, "next": [], "symbols": [{"name": "ReflectCalc", "hash": "447bbbb291086c3d0989b2f7e13b86f3c832cfb5", "variant": 2148589476, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 3323985932}, "child": {"skip": 0, "offset": 104, "next": [{"match": {"value": 2388787200}, "child": {"skip": 48, "offset": 156, "next": [], "symbols": [{"name": "RefractCalc", "hash": "0460a1c1998d4f3ce84a2ff42ade9935f574036b", "variant": 2148589476, "library": "libhip"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1007681536, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289921072}, "child": {"skip": 188, "offset": 204, "next": [], "symbols": [{"name": "__sceEENetnetintr_thread", "hash": "e4f0912b4f0d9ed6ff11d440dc6f1bb474c93b57", "variant": 2331597460, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289069168}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1007681536, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 100, "offset": 116, "next": [], "symbols": [{"name": "__sceEENetpanic", "hash": "c6568ece131fe3f095de384a19286787f8d8bfd1", "variant": 3841985868, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 10518573}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289855520}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289789968}, "child": {"skip": 348, "offset": 368, "next": [], "symbols": [{"name": "sppp_ipcp_RCN_rej", "hash": "6363ee90c911c0d9b7df727a7b7644af63be644d", "variant": 3826041483, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4290642048}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8450093}, "child": {"skip": 852, "offset": 872, "next": [], "symbols": [{"name": "_sce_eenet_dhclient_dhcp_msgchk", "hash": "f25d850c9e9d721a60c66970616d0964dbbfff5e", "variant": 3765048619, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604110893}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289921088}, "child": {"skip": 1400, "offset": 1412, "next": [], "symbols": [{"name": "sppp_vjuncomp", "hash": "6dfa9b541d34d8258fc206c6ec3938071b1c8cd4", "variant": 13279840, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 604110859}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290117744}, "child": {"skip": 820, "offset": 832, "next": [], "symbols": [{"name": "__sceEENetudp_usrreq", "hash": "80933d6628aa2015e7e1e6d3390e8e77e5478462", "variant": 2636588175, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 6189}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290642048}, "child": {"skip": 364, "offset": 376, "next": [], "symbols": [{"name": "sel_so_enter", "hash": "3ddcd2a96799aabb6f37d4ba326bb14c3a206fd5", "variant": 1720525824, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289921136}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724480}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10524717}, "child": {"skip": 404, "offset": 420, "next": [], "symbols": [{"name": "sceEENetNanosleep", "hash": "8865695f711911f49f4d1ec6e49a93de13a5301e", "variant": 3979103452, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289855584}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 12621869}, "child": {"skip": 260, "offset": 276, "next": [], "symbols": [{"name": "_sce_eenet_if_addinaddr", "hash": "d7dd13335f0ebee1ee041f4011f482e195777b9c", "variant": 2192992805, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10285}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290183296}, "child": {"skip": 1476, "offset": 1488, "next": [], "symbols": [{"name": "_sce_eenet_dhclient_make_discover", "hash": "dabe2c38902b05cc9b8d8b632e88e425e1537a79", "variant": 2661372068, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 614727679}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289921152}, "child": {"skip": 700, "offset": 712, "next": [], "symbols": [{"name": "scefd_ctrl", "hash": "a5415c86db685f6a4e21d73af6c0bfbd4a4dee49", "variant": 4155583558, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 4290052224}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289986672}, "child": {"skip": 316, "offset": 328, "next": [], "symbols": [{"name": "DH_get", "hash": "f88caa236098642709582a89b49116e41e0af2dc", "variant": 1485207383, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 4289921088}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855536}, "child": {"skip": 328, "offset": 340, "next": [], "symbols": [{"name": "i2a_ASN1_INTEGER", "hash": "4c959c2acbe39458523db6f0126a4c1103937b6c", "variant": 893006578, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 4289855616}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289790064}, "child": {"skip": 112, "offset": 124, "next": [], "symbols": [{"name": "MD5", "hash": "8d5727e3fb5834fed583e599a018f68bccb94871", "variant": 3670896074, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604311856}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290183296}, "child": {"skip": 1008, "offset": 1020, "next": [], "symbols")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: [{"name": "ssl3_get_server_certificate", "hash": "aa4afb8927f6f231cac145f5cdb81f0e5f3b28d3", "variant": 229138095, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604180880}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289790032}, "child": {"skip": 464, "offset": 476, "next": [], "symbols": [{"name": "ssl3_send_client_verify", "hash": "d7055e16b50ac6649f9d9ecc4c76b1ba2afd0feb", "variant": 3100106756, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 77594640}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 820510719}, "child": {"skip": 68, "offset": 76, "next": [], "symbols": [{"name": "sceDevConsPutc", "hash": "4b7e7fe8ce55dd1d6fc3cdca53e6f2d13f49f8ba", "variant": 0, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 77594629}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 0}, "child": {"skip": 72, "offset": 80, "next": [], "symbols": [{"name": "sceDevConsGetc", "hash": "396a3c0b74a1ead7c4c42cea9ba9614d029b235b", "variant": 0, "library": "libdev"}]}}], "symbols": []}}, {"match": {"value": 2894397440}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 2894069768}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 16, "next": [], "symbols": [{"name": "sceGifPkInit", "hash": "f77d44fef9575016526b59cd2314bb7c6b5ff0ca", "variant": 0, "library": "libpkt"}, {"name": "sceDmaPkInit", "hash": "f77d44fef9575016526b59cd2314bb7c6b5ff0ca", "variant": 0, "library": "libpkt"}, {"name": "sceVif1PkInit", "hash": "f77d44fef9575016526b59cd2314bb7c6b5ff0ca", "variant": 0, "library": "libpkt"}, {"name": "sceVif0PkInit", "hash": "f77d44fef9575016526b59cd2314bb7c6b5ff0ca", "variant": 0, "library": "libpkt"}]}}], "symbols": []}}, {"match": {"value": 65011720}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 604110849}, "child": {"skip": 0, "offset": 12, "next": [], "symbols": [{"name": "ssl_set_cert_type", "hash": "84d71140811a6a2890ecbe84e15bf50adc331e59", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2357329924}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 2894069768}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 16, "next": [], "symbols": [{"name": "sceGifPkReset", "hash": "a57e1427f68a50f835757fe9250fd317fd9aebc8", "variant": 0, "library": "libpkt"}, {"name": "sceDmaPkReset", "hash": "a57e1427f68a50f835757fe9250fd317fd9aebc8", "variant": 0, "library": "libpkt"}, {"name": "sceVif1PkReset", "hash": "a57e1427f68a50f835757fe9250fd317fd9aebc8", "variant": 0, "library": "libpkt"}, {"name": "sceVif0PkReset", "hash": "a57e1427f68a50f835757fe9250fd317fd9aebc8", "variant": 0, "library": "libpkt"}]}}], "symbols": []}}, {"match": {"value": 272629763}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2357395456}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 268435459}, "child": {"skip": 40, "offset": 56, "next": [], "symbols": [{"name": "UnlinkAlarm", "hash": "4cc8dae9761399a514c91e6b425fa0c040c1e23c", "variant": 3381797426, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 0}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 65011720}, "child": {"skip": 12, "offset": 28, "next": [], "symbols": [{"name": "ASN1_TYPE_get", "hash": "75c88e73d0c53243548e3037a3a10b4de0258701", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2357395456}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2892103684}, "child": {"skip": 16, "offset": 28, "next": [], "symbols": [{"name": "_sceSSyn_popVoiceFromLink", "hash": "f176ef7b57ba362925cc8ee95f1d2f7850464e8d", "variant": 0, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 604176407}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1346568195}, "child": {"skip": 508, "offset": 520, "next": [], "symbols": [{"name": "ASN1_UTCTIME_check", "hash": "5f93cb6d87a2554a0841c3eeee16a9afe27c8b95", "variant": 1478220212, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2889875464}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2357395460}, "child": {"skip": 16, "offset": 28, "next": [], "symbols": [{"name": "cleanup1", "hash": "c656def7ed5eb24a6beadfedffab625dc0f59cb1", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2353201168}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 65011720}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2355232768}, "child": {"skip": 0, "offset": 16, "next": [], "symbols": [{"name": "X509_get_notBefore", "hash": "84b2d09eea03412988b3eacaf6953ab85a8c3231", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 2355232772}, "child": {"skip": 0, "offset": 16, "next": [], "symbols": [{"name": "X509_get_notAfter", "hash": "73c01023d9837c20e88aaa6fd270e37467985880", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2357526528}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 815923212}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 272629768}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2357592072}, "child": {"skip": 72, "offset": 88, "next": [], "symbols": [{"name": "sceGifPkTerminate", "hash": "f28d8efe4caa6d6b79a75245e34967d797cecdf2", "variant": 0, "library": "libpkt"}, {"name": "sceDmaPkTerminate", "hash": "f28d8efe4caa6d6b79a75245e34967d797cecdf2", "variant": 0, "library": "libpkt"}, {"name": "sceVif1PkTerminate", "hash": "f28d8efe4caa6d6b79a75245e34967d797cecdf2", "variant": 0, "library": "libpkt"}, {"name": "sceVif0PkTerminate", "hash": "f28d8efe4caa6d6b79a75245e34967d797cecdf2", "variant": 0, "library": "libpkt"}]}}], "symbols": []}}, {"match": {"value": 1346371593}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2357592072}, "child": {"skip": 76, "offset": 92, "next": [], "symbols": [{"name": "sceGifPkTerminate", "hash": "4455b0efdabf397e2f3ae0b2e4c68bb2ec981cf8", "variant": 0, "library": "libpkt"}, {"name": "sceVif1PkTerminate", "hash": "4455b0efdabf397e2f3ae0b2e4c68bb2ec981cf8", "variant": 0, "library": "libpkt"}]}}], "symbols": []}}, {"match": {"value": 1346371595}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2357592072}, "child": {"skip": 84, "offset": 100, "next": [], "symbols": [{"name": "sceGifPkTerminate", "hash": "8ea58be1852bb9512cf1aa87426f2e49e6712a76", "variant": 0, "library": "libpkt"}, {"name": "sceVif1PkTerminate", "hash": "8ea58be1852bb9512cf1aa87426f2e49e6712a76", "variant": 0, "library": "libpkt"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 278921225}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 0}, "child": {"skip": 48, "offset": 60, "next": [], "symbols": [{"name": "sceSifCheckStatRpc", "hash": "9b7a5d32777dce4a7f2b2a414b86c29da031d4cd", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 278921228}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 12333}, "child": {"skip": 52, "offset": 64, "next": [], "symbols": [{"name": "count_fdes", "hash": "3e592d973a5611960c1f5f0b2d29610a3e11a201", "variant": 0, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 278921230}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 12333}, "child": {"skip": 60, "offset": 72, "next": [], "symbols": [{"name": "count_fdes", "hash": "2b593c9a1466b5d8a93d2a83b15ddca894aa1e66", "variant": 0, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 815923207}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 272629773}, "child": {"skip": 176, "offset": 188, "next": [], "symbols": [{"name": "_lo0bits", "hash": "295c88a98dbe1da5731f96ad519768839778b462", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 2357592084}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2357657624}, "child": {"skip": 136, "offset": 148, "next": [], "symbols": [{")PS2SDB", 8192}, + std::string_view{R"PS2SDB(name": "_ri0_000", "hash": "238abc5d4acb27db4189ece738b4457d668af892", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2426994688}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 757137536}, "child": {"skip": 428, "offset": 440, "next": [], "symbols": [{"name": "sceCccDecodeSJIS", "hash": "a15c960fd5cbe79d85b99da92be0e97a334f3777", "variant": 2911361801, "library": "libccc"}]}}], "symbols": []}}, {"match": {"value": 2357395460}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2357329928}, "child": {"skip": 4, "offset": 16, "next": [{"match": {"value": 6428709}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 28, "next": [], "symbols": [{"name": "__ptmf_test", "hash": "420d309727bfc1b9f6f9dfb24c46e711f53dbc6d", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 6426661}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 28, "next": [], "symbols": [{"name": "__ptmf_test", "hash": "be5804f5ade99f3920bb7185e9da7d942052ff2f", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8407085}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604307458}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2368208908}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2368339968}, "child": {"skip": 148, "offset": 164, "next": [], "symbols": [{"name": "sceGifPkCloseGifTag", "hash": "6fb9853d8cb17b47a991bdb1c8e7cdec2dac85c3", "variant": 0, "library": "libpkt"}]}}], "symbols": []}}, {"match": {"value": 2368208916}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2368339968}, "child": {"skip": 148, "offset": 164, "next": [], "symbols": [{"name": "sceVif1PkCloseGifTag", "hash": "ee2b6f14c39c20b37406736bd847c8ab04c3010e", "variant": 0, "library": "libpkt"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 610367}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 663612}, "child": {"skip": 1672, "offset": 1684, "next": [], "symbols": [{"name": "__divdi3", "hash": "29a968f99efe4eed66989c7e6bbc056fc14953e0", "variant": 1440025630, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 10502189}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 598079}, "child": {"skip": 1728, "offset": 1740, "next": [], "symbols": [{"name": "__divdi3", "hash": "311bdc3836e093dc53b34cc1c7e1b51c6ee0e206", "variant": 2851156475, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 2367946752}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 746717186}, "child": {"skip": 84, "offset": 96, "next": [{"match": {"value": 339738641}, "child": {"skip": 0, "offset": 100, "next": [{"match": {"value": 948043778}, "child": {"skip": 72, "offset": 176, "next": [{"match": {"value": 2368143368}, "child": {"skip": 0, "offset": 180, "next": [{"match": {"value": 2359820296}, "child": {"skip": 380, "offset": 564, "next": [], "symbols": [{"name": "_fpadd_parts", "hash": "2752c248b0867bb817ec1324381a374d3f951e4d", "variant": 2000773493, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 2368208904}, "child": {"skip": 0, "offset": 180, "next": [{"match": {"value": 2359754760}, "child": {"skip": 380, "offset": 564, "next": [], "symbols": [{"name": "_fpadd_parts", "hash": "93779564c3d06a649a1d09d633ad1f932f0d632b", "variant": 2000773493, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 339738638}, "child": {"skip": 0, "offset": 100, "next": [{"match": {"value": 948043778}, "child": {"skip": 464, "offset": 568, "next": [], "symbols": [{"name": "_fpadd_parts", "hash": "be3ec41d51d63df83f868bdf7b42af4745098114", "variant": 2000773493, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10506285}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2166489088}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1007419392, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 272629783}, "child": {"skip": 152, "offset": 172, "next": [], "symbols": [{"name": "strcasecmp", "hash": "762a0d7e9b1805778186707c75d847d10ec6b583", "variant": 676847379, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 272629785}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2435186688}, "child": {"skip": 160, "offset": 180, "next": [], "symbols": [{"name": "strcasecmp", "hash": "a02c570a2d1e39877d4c965d62d21a7118952e25", "variant": 22619024, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2368077824}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2428698624}, "child": {"skip": 364, "offset": 376, "next": [], "symbols": [{"name": "sceCccDecodeSJIS", "hash": "7f4d5ab1dde32e7708949e71c0989f6209882816", "variant": 2281935629, "library": "libccc"}]}}], "symbols": []}}, {"match": {"value": 604176383}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4526122}, "child": {"skip": 192, "offset": 204, "next": [], "symbols": [{"name": "sceCccEncodeUTF8", "hash": "6818cc010e3293b4e0e5ceb24b59281a9036b724", "variant": 3381797426, "library": "libccc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8409133}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 872923136}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 473916}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2370306060}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 604307472}, "child": {"skip": 96, "offset": 116, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 120, "next": [{"match": {"value": 2904555520}, "child": {"skip": 32, "offset": 156, "next": [], "symbols": [{"name": "sceGifPkCloseGifTag", "hash": "748ebe093b018ecd02b9bbedf024f6660ba05643", "variant": 0, "library": "libpkt"}]}}], "symbols": []}}, {"match": {"value": 2904555520}, "child": {"skip": 0, "offset": 120, "next": [{"match": {"value": 623443972}, "child": {"skip": 32, "offset": 156, "next": [], "symbols": [{"name": "sceGifPkCloseGifTag", "hash": "f850bf22291532e9f1b6f6141cdaac8a98f9a824", "variant": 0, "library": "libpkt"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2370306068}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 604307472}, "child": {"skip": 96, "offset": 116, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 120, "next": [{"match": {"value": 2904555520}, "child": {"skip": 32, "offset": 156, "next": [], "symbols": [{"name": "sceVif1PkCloseGifTag", "hash": "2ecf58def28ef7861d35819202e7a8d075f34ac4", "variant": 0, "library": "libpkt"}]}}], "symbols": []}}, {"match": {"value": 2904555520}, "child": {"skip": 0, "offset": 120, "next": [{"match": {"value": 623443972}, "child": {"skip": 32, "offset": 156, "next": [], "symbols": [{"name": "sceVif1PkCloseGifTag", "hash": "1f9f9ab3548d3d824306d6479bacd565ac21ba02", "variant": 0, "library": "libpkt"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10500141}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 281018392}, "child": {"skip": 104, "offset": 116, "next": [], "symbols": [{"name": "sceVif1PkAddUpkData128N", "hash": "7a93cf8092fa35ea689bcffaf2413e7383f4d870", "variant": 0, "library": "libpkt"}, {"name": "sceVif1PkAddDirectDataN", "hash": "7a93cf8092fa35ea689bcffaf2413e7383f4d870", "variant": 0, "library": "libpkt"}]}}], "symbols": []}}, {"match": {"value": 604176412}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 604242032}, "child": {"skip": 84, "offset": 96, "next": [], "symbols": [{"name": "scePadSetActDirect", "hash": "c0ae943cf48b99a4073ae75548f9d5d8b9166665", "variant": 1488425154, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 12601389}, "child": {"skip": 0, "offset": 8, "next")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: [{"match": {"value": 354418691}, "child": {"skip": 208, "offset": 220, "next": [], "symbols": [{"name": "strncasecmp", "hash": "a71da02ea36b7c3dee158d8edb38d89bea14f00a", "variant": 278211594, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 10508333}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 12601389}, "child": {"skip": 212, "offset": 224, "next": [], "symbols": [{"name": "strncasecmp", "hash": "44495d3f711bc86963690ea0faa8713d45df8dc0", "variant": 3817868325, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 604110864}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2370043904}, "child": {"skip": 124, "offset": 136, "next": [], "symbols": [{"name": "_decode_motion_vector", "hash": "54fce08731a1046cc476666b485fe3b629a14a79", "variant": 0, "library": "libmpeg"}, {"name": "decode_motion_vector", "hash": "54fce08731a1046cc476666b485fe3b629a14a79", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 816185343}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 748814464}, "child": {"skip": 404, "offset": 416, "next": [], "symbols": [{"name": "sceCccEncodeSJIS", "hash": "4d2d444efdebe7fad48262afa355802118d8a61c", "variant": 3379926629, "library": "libccc"}]}}], "symbols": []}}, {"match": {"value": 462908}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2370240632}, "child": {"skip": 28, "offset": 40, "next": [], "symbols": [{"name": "des_cbc_ede_cipher", "hash": "7a0c45a471bd387cdc0967e5c1954b0c1ee6f08f", "variant": 2988133743, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2357395460}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 2357329920}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4395043}, "child": {"skip": 8, "offset": 20, "next": [], "symbols": [{"name": "sceGifPkSize", "hash": "95747293b4f0193dca250b2f20d82fb8dc010d6c", "variant": 0, "library": "libpkt"}, {"name": "sceVif1PkSize", "hash": "95747293b4f0193dca250b2f20d82fb8dc010d6c", "variant": 0, "library": "libpkt"}]}}], "symbols": []}}, {"match": {"value": 1006960641}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2357592072}, "child": {"skip": 152, "offset": 164, "next": [], "symbols": [{"name": "_sceRpcGetPacket", "hash": "1ae3a358529e71bbb09e2a7916e5df3f332f1a12", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 2359427076}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 6434851}, "child": {"skip": 96, "offset": 108, "next": [], "symbols": [{"name": "BN_ucmp", "hash": "9482de5bc76f9f13093903406accc507e77527bc", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2355232776}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608305153}, "child": {"skip": 8, "offset": 20, "next": [], "symbols": [{"name": "cleanup2", "hash": "70ec03111372dc92baf7a88ec82992e601960431", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 65011720}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2355232780}, "child": {"skip": 0, "offset": 12, "next": [], "symbols": [{"name": "X509_get_issuer_name", "hash": "1028e729726cb12cc355a5656253a3346aead92f", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 2355232788}, "child": {"skip": 0, "offset": 12, "next": [], "symbols": [{"name": "X509_get_subject_name", "hash": "6d99c935c91b0fbea5ce23f9554c91a53c3672f3", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 2355232772}, "child": {"skip": 0, "offset": 12, "next": [], "symbols": [{"name": "X509_get_serialNumber", "hash": "9bcbe1520a739a10687b333b2816eccfcb6a2e9d", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 614793218}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604176416}, "child": {"skip": 16, "offset": 24, "next": [{"match": {"value": 2357526528}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 6436870}, "child": {"skip": 92, "offset": 124, "next": [], "symbols": [{"name": "sceVif1PkAlign", "hash": "1110d55487fdd1f1bf70d271d6ebd6547c777f5d", "variant": 0, "library": "libpkt"}, {"name": "sceVif0PkAlign", "hash": "1110d55487fdd1f1bf70d271d6ebd6547c777f5d", "variant": 0, "library": "libpkt"}]}}], "symbols": []}}, {"match": {"value": 2357657600}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 6438918}, "child": {"skip": 44, "offset": 76, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 80, "next": [{"match": {"value": 2891972608}, "child": {"skip": 36, "offset": 120, "next": [], "symbols": [{"name": "sceVif1PkAlign", "hash": "cdefd37bc97553557cd999c010e26ce8098f7fc0", "variant": 0, "library": "libpkt"}]}}], "symbols": []}}, {"match": {"value": 2891972608}, "child": {"skip": 0, "offset": 80, "next": [{"match": {"value": 610467844}, "child": {"skip": 36, "offset": 120, "next": [], "symbols": [{"name": "sceVif1PkAlign", "hash": "dcf1eec52f938422fc8c5a40bcf6b7345d05492e", "variant": 0, "library": "libpkt"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666763072}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290183312}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 608370688, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 104, "offset": 120, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceVif1PkOpenDirectHLCode"}}, "child": {"skip": 0, "offset": 124, "next": [{"match": {"value": 10285}, "child": {"skip": 360, "offset": 488, "next": [], "symbols": [{"name": "sceVif1PkRefLoadImage", "hash": "6f99c59e6c36df275bcec10490a18a7b6c4221ce", "variant": 209054720, "library": "libpkt"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceVif1PkOpenDirectCode"}}, "child": {"skip": 0, "offset": 124, "next": [{"match": {"value": 10285}, "child": {"skip": 360, "offset": 488, "next": [], "symbols": [{"name": "sceVif1PkRefLoadImage", "hash": "9eed6b53220cc5f608699481084974731bec9f39", "variant": 2402573738, "library": "libpkt"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290642080}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 608370688, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 432, "offset": 448, "next": [], "symbols": [{"name": "sceGifPkRefLoadImage", "hash": "8e8f9f0f3dd6533c1a963599e8abc2bcd6838a48", "variant": 864945412, "library": "libpkt"}]}}], "symbols": []}}, {"match": {"value": 4289724512}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10518573}, "child": {"skip": 144, "offset": 160, "next": [], "symbols": [{"name": "snprintf", "hash": "34e8a95d2c474f6f7a0f1413161849eb3da83cbe", "variant": 3662097487, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4290117760}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1007357952}, "child": {"skip": 1300, "offset": 1316, "next": [], "symbols": [{"name": "_decMB0", "hash": "05aace5ec534ac92e4393424b34a00af1c59e0fd", "variant": 1246895113, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 4290707632}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8411181}, "child": {"skip": 120, "offset": 136, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 140, "next": [{"match": {"value": 614858752, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 692, "offset": 836, "next": [], "symbols": [{"name": "_initSeq", "hash": "d77128dd3a54ec3c81234b26a912e1bd0797bb83", "variant": 3185090233, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 8402989}, "child": {"skip": 0, "offset": 140, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": )PS2SDB", 8192}, + std::string_view{R"PS2SDB(700, "offset": 844, "next": [], "symbols": [{"name": "_initSeq", "hash": "374d81b832fe25c28e8c8546c0df72af6ef06848", "variant": 4065288982, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289986656}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 1192, "offset": 1208, "next": [], "symbols": [{"name": "sceSynthesizerAssignNoteOn", "hash": "86cc25c1d7fb5f425a5a135139395f7a7a715f63", "variant": 3347976737, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 4289724496}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 452, "offset": 468, "next": [], "symbols": [{"name": "sceHTTPLibLaunchThreads", "hash": "c653e3bd35eba68d20bd4a3fe6587090c7e34914", "variant": 2838667472, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 4290183328}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290117776}, "child": {"skip": 332, "offset": 348, "next": [], "symbols": [{"name": "ssl3_generate_master_secret", "hash": "e26b4444598973ab472fe952b9ee3466aeb0d9de", "variant": 2908284639, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290117760}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1007357952}, "child": {"skip": 140, "offset": 156, "next": [{"match": {"value": 268435734}, "child": {"skip": 0, "offset": 160, "next": [{"match": {"value": 4141}, "child": {"skip": 1156, "offset": 1320, "next": [], "symbols": [{"name": "_decMB0", "hash": "07fd13ea0e3bdbf481a5e049d2760c7345ce8c00", "variant": 1903732271, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 268435735}, "child": {"skip": 0, "offset": 160, "next": [{"match": {"value": 4141}, "child": {"skip": 1160, "offset": 1324, "next": [], "symbols": [{"name": "_decMB0", "hash": "79f9c4b51bde66688515e9b20a128d3b57f82026", "variant": 3441126897, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289986656}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289921104}, "child": {"skip": 1440, "offset": 1456, "next": [], "symbols": [{"name": "_PES_packet", "hash": "fd3b54fc31280620dc45a5f138c7ffd52396c6e3", "variant": 1605314098, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724432}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789984}, "child": {"skip": 44, "offset": 56, "next": [{"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": "kprintf_char"}}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 1007091711}, "child": {"skip": 64, "offset": 128, "next": [], "symbols": [{"name": "kprintf", "hash": "aa79e64c7abbb3845b548b853d599c61140eccdc", "variant": 515591597, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": "printf_char"}}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 1007091711}, "child": {"skip": 64, "offset": 128, "next": [], "symbols": [{"name": "scePrintf", "hash": "aa79e64c7abbb3845b548b853d599c61140eccdc", "variant": 441963257, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289790000}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 8423469}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290642080}, "child": {"skip": 36, "offset": 52, "next": [{"match": {"value": 18915373}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 4289855552}, "child": {"skip": 32, "offset": 92, "next": [{"match": {"value": 301989975}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 604176383}, "child": {"skip": 392, "offset": 492, "next": [], "symbols": [{"name": "sceSifCallRpc", "hash": "baa991daeccd6d04a3d4e7bdf135eeefc77482e4", "variant": 360359362, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 301989977}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 604176383}, "child": {"skip": 400, "offset": 500, "next": [], "symbols": [{"name": "sceSifCallRpc", "hash": "dd40c3ad71c21c86914a04c31cedcdcc787cc14b", "variant": 1696515830, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 301989980}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 604176383}, "child": {"skip": 412, "offset": 512, "next": [], "symbols": [{"name": "sceSifCallRpc", "hash": "0a4d1a478931e4d41fa8a9c29608c7a147de77a5", "variant": 3903654132, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 16818221}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 4289855552}, "child": {"skip": 376, "offset": 436, "next": [], "symbols": [{"name": "sceSifCallRpc", "hash": "8954cd52c4447fd4fe8a3f646e921cc6cc6c7217", "variant": 274706387, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707632}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8423469}, "child": {"skip": 688, "offset": 704, "next": [], "symbols": [{"name": "ssl_set_cert_masks", "hash": "99823f01dce2698ab6e5820346f4a9b502dc4467", "variant": 3574349309, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289986688}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855584}, "child": {"skip": 52, "offset": 64, "next": [{"match": {"value": 604241924}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 20, "offset": 92, "next": [{"match": {"value": 268435564}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 604176383}, "child": {"skip": 468, "offset": 568, "next": [], "symbols": [{"name": "sceLseek", "hash": "789c1bb83659d2d09aa467a1d27e9887f5639ab7", "variant": 1925423923, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 268435558}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 604176383}, "child": {"skip": 444, "offset": 544, "next": [], "symbols": [{"name": "sceLseek", "hash": "a596a0835f119afef4dbee147a5768bcab7c5801", "variant": 2010621104, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604241942}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 20, "offset": 92, "next": [{"match": {"value": 268435564}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 604176383}, "child": {"skip": 468, "offset": 568, "next": [], "symbols": [{"name": "sceLseek64", "hash": "ce7185ddf6e31462c9ab3db24f34593e38b9cdd7", "variant": 1925423923, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 268435558}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 604176383}, "child": {"skip": 444, "offset": 544, "next": [], "symbols": [{"name": "sceLseek64", "hash": "fa005eecbb8fcde1eaee9ee4344b544278f0685d", "variant": 2010621104, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290052240}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289921136}, "child": {"skip": 52, "offset": 64, "next": [{"match": {"value": 604241924}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 500, "offset": 572, "next": [], "symbols": [{"name": "sceLseek", "hash": "bf53a565bd4c639f30424ff753924c4aaacf5e56", "variant": 927760828, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604241942}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 1006829568, "relocation": {"type": )PS2SDB", 8192}, + std::string_view{R"PS2SDB("MIPS_HI16", "symbol": ""}}, "child": {"skip": 500, "offset": 572, "next": [], "symbols": [{"name": "sceLseek64", "hash": "c553523d21fd0e25190df78ca7b63cae3570efd9", "variant": 927760828, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855584}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289790032}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 12619821}, "child": {"skip": 116, "offset": 132, "next": [{"match": {"value": 268435623}, "child": {"skip": 0, "offset": 136, "next": [{"match": {"value": 604176375}, "child": {"skip": 704, "offset": 844, "next": [], "symbols": [{"name": "sceIoctl", "hash": "7d75f5e8c2f0cb97469be84e096a9771588144e2", "variant": 1855151280, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 268435633}, "child": {"skip": 0, "offset": 136, "next": [{"match": {"value": 604176375}, "child": {"skip": 744, "offset": 884, "next": [], "symbols": [{"name": "sceIoctl", "hash": "acb177e65d14a1c3e77ce20a2a2d758ce899357f", "variant": 2211432415, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 268435638}, "child": {"skip": 0, "offset": 136, "next": [{"match": {"value": 604176375}, "child": {"skip": 764, "offset": 904, "next": [], "symbols": [{"name": "sceIoctl", "hash": "1a39f034f634f1c75dbdc0de7cf0f83545bf0335", "variant": 141093815, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8425517}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290117792}, "child": {"skip": 652, "offset": 668, "next": [], "symbols": [{"name": "_waitBdecOut", "hash": "d6af8c5f34aa602d303724834a421b035c14c70d", "variant": 2707863975, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289790032}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724480}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8423469}, "child": {"skip": 80, "offset": 96, "next": [{"match": {"value": 274726928}, "child": {"skip": 0, "offset": 100, "next": [{"match": {"value": 2722234380}, "child": {"skip": 392, "offset": 496, "next": [], "symbols": [{"name": "sceRename", "hash": "63f8b0e1757ed11ba1deb2afe7acf4dc2b0b697d", "variant": 451342142, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 274726930}, "child": {"skip": 0, "offset": 100, "next": [{"match": {"value": 2722234380}, "child": {"skip": 416, "offset": 520, "next": [], "symbols": [{"name": "sceRename", "hash": "d211158e5355641baa6e54478cabc1bed05da419", "variant": 1389246844, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290052240}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8423469}, "child": {"skip": 80, "offset": 96, "next": [{"match": {"value": 274726928}, "child": {"skip": 0, "offset": 100, "next": [{"match": {"value": 2718040084}, "child": {"skip": 304, "offset": 408, "next": [], "symbols": [{"name": "sceSync", "hash": "7814fd757a2ed8420caff6360686911e791b3014", "variant": 139671823, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 274726930}, "child": {"skip": 0, "offset": 100, "next": [{"match": {"value": 2718040084}, "child": {"skip": 324, "offset": 428, "next": [], "symbols": [{"name": "sceSync", "hash": "2b8f9c5b93f826236e9ecb75ccc683d402eb6e63", "variant": 2264343844, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724480}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289790032}, "child": {"skip": 84, "offset": 96, "next": [{"match": {"value": 274726928}, "child": {"skip": 0, "offset": 100, "next": [{"match": {"value": 2722234380}, "child": {"skip": 376, "offset": 480, "next": [], "symbols": [{"name": "sceSymlink", "hash": "72415c568f31aff9a6790ea0c3aa61529b966ec7", "variant": 995561927, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 274726930}, "child": {"skip": 0, "offset": 100, "next": [{"match": {"value": 2722234380}, "child": {"skip": 400, "offset": 504, "next": [], "symbols": [{"name": "sceSymlink", "hash": "4a52cdf6b3092f9b28eea940f2825c05e0ec9f11", "variant": 521698455, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290642080}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290183312}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1008599040, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290117760}, "child": {"skip": 272, "offset": 292, "next": [], "symbols": [{"name": "_nextHeader", "hash": "5c73cf3cbbd9f8525ebc80efd58aeedad18339f5", "variant": 2329901765, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 12644397}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290117760}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 14727213}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290052208}, "child": {"skip": 208, "offset": 236, "next": [], "symbols": [{"name": "sceFsSifCallRpc", "hash": "92a3bcb3833f9646abd6ea406a8a7c50f5736f14", "variant": 2392970821, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 23115821}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290052208}, "child": {"skip": 64, "offset": 92, "next": [{"match": {"value": 268435573}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 604176383}, "child": {"skip": 512, "offset": 612, "next": [], "symbols": [{"name": "sceSifMCallRpc", "hash": "1a07599d40de14573c7d774548dc94d830e6da0d", "variant": 1245307388, "library": "libmrpc"}]}}], "symbols": []}}, {"match": {"value": 268435576}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 604176383}, "child": {"skip": 524, "offset": 624, "next": [], "symbols": [{"name": "sceSifMCallRpc", "hash": "ab166c1e4d33ef9e610e34fb021ade2625ae9ac4", "variant": 2096035178, "library": "libmrpc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855552}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 47149}, "child": {"skip": 1776, "offset": 1800, "next": [], "symbols": [{"name": "__sceEENetsosend", "hash": "4f5e09da371efa41cc2e1be1a74f598e73729fc8", "variant": 788983968, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 605945890}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290117760}, "child": {"skip": 508, "offset": 528, "next": [], "symbols": [{"name": "sceInsockInetAton", "hash": "f3045f9a72854eaf5989eba2622305735152252f", "variant": 3789092499, "library": "libinsck"}]}}], "symbols": []}}, {"match": {"value": 605945857}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290117760}, "child": {"skip": 1064, "offset": 1084, "next": [], "symbols": [{"name": "__sceEENetin_ifinit", "hash": "cdf5329fad0d32b58a24c233a75c4fccbcf4e869", "variant": 2405140392, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 16838701}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290117760}, "child": {"skip": 656, "offset": 676, "next": [], "symbols": [{"name": "PEM_ASN1_read_bio", "hash": "71167903d7ef685b04648bbc3c663722184525e0", "variant": 3294427519, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 61485}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290117760}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 47149}, "child": {"skip": 1912, "offset": 1936, "next": [], "symbols": [{"name": "ssl3_read_bytes", "hash": "1f12e633e32637b38f2507a6f0f393422278e117", "variant": 59295067, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 4290052208}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 47149}, "child": {"skip": 1196, "offset": 1220, "next": [], "symbols": [{"name": "X509_verify_cert", "hash": "6d001ea680d8670a9c417db2b5167e83111f8d5a", "variant": 2598509901, "library": "libhttps"}]}}], "symbols": []}}], "symb)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ols": []}}], "symbols": []}}, {"match": {"value": 4290117760}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 61485}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290052208}, "child": {"skip": 1652, "offset": 1672, "next": [], "symbols": [{"name": "__sceEENetsl_compress_tcp", "hash": "451c4e091da3c4311dc17e3727552f54e1b6f87a", "variant": 2158714147, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 8450093}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290052208}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 21016621}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4289986656}, "child": {"skip": 308, "offset": 336, "next": [], "symbols": [{"name": "__sceEENetin_pcbnotify", "hash": "e1620b5fb8115afda7e7233707ec5acc2d10bbde", "variant": 3321280959, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 12628013}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290707632}, "child": {"skip": 856, "offset": 884, "next": [], "symbols": [{"name": "bn_mul_add_words", "hash": "ce06c15280aa40a0bc55db7ab90faaf0c17fa5e2", "variant": 514876706, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855648}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289790096}, "child": {"skip": 188, "offset": 200, "next": [], "symbols": [{"name": "scePadSetActDirect", "hash": "b83e58865e94b9d10f76464da0b115fc7fc8986b", "variant": 1972106894, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 4289921104}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855552}, "child": {"skip": 68, "offset": 80, "next": [{"match": {"value": 341967012}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 4141}, "child": {"skip": 700, "offset": 788, "next": [], "symbols": [{"name": "sceCdLayerSearchFile", "hash": "8e0e9b93b62cd3ba5d98c71c6511c303f5fd4667", "variant": 744202027, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 341967006}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 4141}, "child": {"skip": 676, "offset": 764, "next": [], "symbols": [{"name": "sceCdLayerSearchFile", "hash": "2a01e3c32d825082fc879abac565a3c0a65346b5", "variant": 2966136266, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006796799}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 10491949}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 12593197}, "child": {"skip": 120, "offset": 136, "next": [], "symbols": [{"name": "_sprintf_r", "hash": "97aa7d2c0996e2a86d10765dddf397ce57ac8448", "variant": 2683616803, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 10510381}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 12593197}, "child": {"skip": 88, "offset": 104, "next": [], "symbols": [{"name": "_sprintf_r", "hash": "cc1167d8923f2c1ff30d70f3c796cd0255f2e96c", "variant": 1385219835, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10510381}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006796799}, "child": {"skip": 92, "offset": 104, "next": [], "symbols": [{"name": "_sprintf_r", "hash": "be8d1a7f9a4f14ba11bf406e75a9f8cc4e64278d", "variant": 1385219835, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 8392749}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 604176388}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289724512}, "child": {"skip": 36, "offset": 52, "next": [{"match": {"value": 3886809200}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 3886874740}, "child": {"skip": 108, "offset": 168, "next": [], "symbols": [{"name": "sscanf", "hash": "73b35acc3d83da08106511307cfe8434fbef43bb", "variant": 1190702409, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 2946629648}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "strlen"}}, "child": {"skip": 76, "offset": 136, "next": [], "symbols": [{"name": "sscanf", "hash": "dfe224fb01ad02145b4b6c815b72d957813bf42f", "variant": 1286136312, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290117792}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289986688}, "child": {"skip": 428, "offset": 444, "next": [], "symbols": [{"name": "i2d_DSAparams", "hash": "09f6eb66a3c84a6d0ab132bbbbd055639d6ae332", "variant": 3316154801, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724528}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289790072}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289855616}, "child": {"skip": 2524, "offset": 2540, "next": [], "symbols": [{"name": "qsort", "hash": "ecfb4828bbd87ecae0cf0b06842443a29f6c3e29", "variant": 2868182316, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 8421421}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289986704}, "child": {"skip": 1180, "offset": 1196, "next": [], "symbols": [{"name": "fseek", "hash": "e074fefc05ed81fd8e1472c2b0e07e2f4754ea69", "variant": 4292687135, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289921136}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 8427565}, "child": {"skip": 272, "offset": 284, "next": [{"match": {"value": 274726953}, "child": {"skip": 0, "offset": 288, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 204, "offset": 496, "next": [], "symbols": [{"name": "_waitBdecOut", "hash": "7447422ab60f1115019df8cd26e497397d35dd01", "variant": 3990763873, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 274726956}, "child": {"skip": 0, "offset": 288, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 216, "offset": 508, "next": [], "symbols": [{"name": "_waitBdecOut", "hash": "8b6f281b7b2f8474720f82596f20b89219acd8b4", "variant": 1118411181, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1007357952}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290642080}, "child": {"skip": 1196, "offset": 1208, "next": [], "symbols": [{"name": "_decMB0", "hash": "5c920388796ffe6ad3c241c3cb34fe4c30625ec4", "variant": 1221712139, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 1006768128}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707632}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 876748800}, "child": {"skip": 372, "offset": 388, "next": [], "symbols": [{"name": "_waitIpuIdle64", "hash": "d346f8b9e9d37791864a81151da595ed3d92ea09", "variant": 3225986197, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 4289724448}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 876748816}, "child": {"skip": 604, "offset": 620, "next": [], "symbols": [{"name": "_ipuVdec", "hash": "10b6648cafafe73e997892bb7c7c3ca9aecb1100", "variant": 2505353521, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604176386}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290642080}, "child": {"skip": 584, "offset": 596, "next": [], "symbols": [{"name": "_csc_storeRefImage", "hash": "b805d14f50dca158bfaf8c2da9e7fca85e5d306e", "variant": 1480782272, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 8402989}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707632}, "child": {"skip": 748, "offset": 760, "next": [], "symbols": [{"name": "_initSeq", "hash": "0fb09740b508511ef1737edbc5413a7327968596", "variant": 3628288245, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2143223952}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2143158400}, "child": {"skip": 32, "offset": 44, "next": [{"match": {)PS2SDB", 8192}, + std::string_view{R"PS2SDB("value": 1889580584}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 1893772840}, "child": {"skip": 4, "offset": 56, "next": [{"match": {"value": 276824119}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 1887471144}, "child": {"skip": 16, "offset": 80, "next": [{"match": {"value": 666042532}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 2947547296}, "child": {"skip": 144, "offset": 232, "next": [{"match": {"value": 604372991}, "child": {"skip": 0, "offset": 236, "next": [{"match": {"value": 35883043}, "child": {"skip": 92, "offset": 332, "next": [], "symbols": [{"name": "__construct_new_array", "hash": "9598c58654eda2f32bca7d58635cc2d748e35cdd", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 1879060008}, "child": {"skip": 0, "offset": 236, "next": [{"match": {"value": 35883043}, "child": {"skip": 92, "offset": 332, "next": [], "symbols": [{"name": "__construct_new_array", "hash": "4b41f9eb6e2011162440bb0c440382d08f6996e5", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2947547296}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 666042532}, "child": {"skip": 44, "offset": 132, "next": [{"match": {"value": 46200841}, "child": {"skip": 0, "offset": 136, "next": [{"match": {"value": 604307457}, "child": {"skip": 192, "offset": 332, "next": [], "symbols": [{"name": "__construct_new_array", "hash": "b5f7daff36bdde74fe3b9e3d13293feb606cb1b8", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 1914709544}, "child": {"skip": 0, "offset": 136, "next": [{"match": {"value": 46200841}, "child": {"skip": 192, "offset": 332, "next": [], "symbols": [{"name": "__construct_new_array", "hash": "09a58cf8c42e04118487352051d1ed0facc2afd5", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 276824116}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 1887471144}, "child": {"skip": 256, "offset": 320, "next": [], "symbols": [{"name": "__construct_new_array", "hash": "e4ce9a17cb738065e307788a28a316466b5c392a", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1889578536}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 1893770792}, "child": {"skip": 280, "offset": 332, "next": [], "symbols": [{"name": "__construct_new_array", "hash": "4b0954828b68c02cf27b04c0188d4d95e7bb1580", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707600}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2143158400}, "child": {"skip": 12, "offset": 24, "next": [{"match": {"value": 10530861}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2142502976}, "child": {"skip": 308, "offset": 340, "next": [], "symbols": [{"name": "__construct_new_array", "hash": "49012e88423a9af335c82decdbadbf102be37604", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 2142502976}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2142437424}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2142371872}, "child": {"skip": 296, "offset": 332, "next": [], "symbols": [{"name": "__construct_new_array", "hash": "3c0438887e81ac490d9ea49f23959187966100f2", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 10528813}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2142437424}, "child": {"skip": 16, "offset": 52, "next": [{"match": {"value": 2142240768}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 276824118}, "child": {"skip": 144, "offset": 204, "next": [{"match": {"value": 2395078656}, "child": {"skip": 0, "offset": 208, "next": [{"match": {"value": 2409824416}, "child": {"skip": 120, "offset": 332, "next": [], "symbols": [{"name": "__construct_new_array", "hash": "80c5a5a35840a5d1e7e4e60b851ca6c8a5359972", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 2395144192}, "child": {"skip": 0, "offset": 208, "next": [{"match": {"value": 2409758880}, "child": {"skip": 120, "offset": 332, "next": [], "symbols": [{"name": "__construct_new_array", "hash": "f30044682920370c53337bd82a221e019eae8815", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8425517}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 276824105}, "child": {"skip": 24, "offset": 84, "next": [{"match": {"value": 666304676}, "child": {"skip": 0, "offset": 88, "next": [{"match": {"value": 2919235584}, "child": {"skip": 232, "offset": 324, "next": [], "symbols": [{"name": "__construct_new_array", "hash": "10eb9b4c25e4bef36e86b8cceea1eedc1d74fa37", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 666239140}, "child": {"skip": 0, "offset": 88, "next": [{"match": {"value": 2919235584}, "child": {"skip": 232, "offset": 324, "next": [], "symbols": [{"name": "__construct_new_array", "hash": "9914c97eabe7cdd13bd12247cce17858ef92d675", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604176385}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290642080}, "child": {"skip": 660, "offset": 672, "next": [], "symbols": [{"name": "sceDbcInit", "hash": "a80887e4e91e35836b16aa334baa5575ed33a008", "variant": 353665832, "library": "libdbc"}]}}], "symbols": []}}, {"match": {"value": 612564984}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290052192}, "child": {"skip": 276, "offset": 288, "next": [], "symbols": [{"name": "changeVoiceFloatHsStateOnMyPart", "hash": "bbf0ac8954c5a4e54768a515ebaef904dd333c10", "variant": 0, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 4289789968}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1007747072, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 68, "offset": 80, "next": [{"match": {"value": 2921332736, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 604110850}, "child": {"skip": 0, "offset": 88, "next": [{"match": {"value": 2919366656}, "child": {"skip": 96, "offset": 188, "next": [], "symbols": [{"name": "sceSkSsSOUND_Control", "hash": "50df529946c6168a8aa45fd1748f4cf2dae771ec", "variant": 2743433669, "library": "libsk"}]}}], "symbols": []}}, {"match": {"value": 604110858}, "child": {"skip": 0, "offset": 88, "next": [{"match": {"value": 2919366656}, "child": {"skip": 84, "offset": 176, "next": [], "symbols": [{"name": "sceSkSsSOUND_Send", "hash": "183f80adaa01550e245e80898b84986228955936", "variant": 916263316, "library": "libsk"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006830080}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 2410086536}, "child": {"skip": 0, "offset": 88, "next": [{"match": {"value": 2921529344, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 84, "offset": 176, "next": [], "symbols": [{"name": "sceSkSsMIDI_Bind", "hash": "fbeb9b962164dcb6fc4b0af1a7fd9a1ff2dfed13", "variant": 468028824, "library": "libsk"}]}}], "symbols": []}}, {"match": {"value": 604110849}, "child": {"skip": 0, "offset": 88, "next": [{"match": {"value": 2921529344, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 64, "offset": 156, "next": [], "symbols": [{"name": "sceSkSsMIDI_Unbind", "hash": "25a6749bf1a73cbdc7c3cfbeb1992250a63947d2", "variant": 1200912687, "library": "libsk"}]}}], "symbols": []}}, {"match": {"value": 604110850}, "child": {"skip": 0, "offset": 88, "next": [{"match": {"value": 2921529344, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 88, "offset": 180, "next": [], "symbols": [{"name": "sceSkSsMIDI_Control", "hash": "da855369)PS2SDB", 8192}, + std::string_view{R"PS2SDB(fce1aba8b4e75d5272ff590d7cf0a026", "variant": 1760406103, "library": "libsk"}]}}], "symbols": []}}, {"match": {"value": 604110851}, "child": {"skip": 0, "offset": 88, "next": [{"match": {"value": 2921529344, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 64, "offset": 156, "next": [], "symbols": [{"name": "sceSkSsMIDI_Status", "hash": "1194d55a4dcb165862bf17670135a30ee8ca3b16", "variant": 1200912687, "library": "libsk"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 14381}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289921104}, "child": {"skip": 888, "offset": 900, "next": [], "symbols": [{"name": "sceLout_ATick", "hash": "c93011eccfa76e94684a45b97548a75042a725e2", "variant": 2658322347, "library": "liblout"}]}}], "symbols": []}}, {"match": {"value": 604110849}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855536}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707616}, "child": {"skip": 476, "offset": 492, "next": [], "symbols": [{"name": "vu0_skin", "hash": "f240c7ab2b50ccad7b0ca551c85fdb34851f6ff6", "variant": 2363674947, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 4290183312}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290117760}, "child": {"skip": 1320, "offset": 1336, "next": [], "symbols": [{"name": "pk_rsa_sslc_init", "hash": "3907d435e3278f20470b6810d79d045394e06388", "variant": 2988075134, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289790080}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724528}, "child": {"skip": 228, "offset": 240, "next": [], "symbols": [{"name": "camera_calc", "hash": "a3fbc279a93239a6800c03dc226de30047887189", "variant": 3695539983, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 4289855552}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289790000}, "child": {"skip": 620, "offset": 632, "next": [], "symbols": [{"name": "__sceEENeteenet_malloc_init", "hash": "8f9bfe6dc672c91997c29927b754a73934460f46", "variant": 3794736769, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 617021436}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290117760}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8433709}, "child": {"skip": 2004, "offset": 2020, "next": [], "symbols": [{"name": "sppp_lcp_RCR", "hash": "6e2d31bf70fe52cb66af4d5ca8f156675d88cae0", "variant": 2629083123, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289921104}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 604110853}, "child": {"skip": 1516, "offset": 1532, "next": [], "symbols": [{"name": "sppp_ipcp_RCR", "hash": "a72c15a96ca407985a763a9660c33951f2b88ebd", "variant": 2931307708, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290117760}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289921104}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8433709}, "child": {"skip": 1340, "offset": 1356, "next": [], "symbols": [{"name": "sppp_pap_input", "hash": "296aa709ee029519667b4be94a064bc7124ad9b9", "variant": 305240281, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4290052208}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 14725165}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289986656}, "child": {"skip": 500, "offset": 520, "next": [], "symbols": [{"name": "sysctl_rtable", "hash": "b660c6cd7f9657bdb7f8459f1996d778ccd9ba56", "variant": 3564809447, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 8433709}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289986656}, "child": {"skip": 1288, "offset": 1308, "next": [], "symbols": [{"name": "__sceEENettcp_reass", "hash": "fe06af3375b8dc302a954f8538e0998988434e27", "variant": 104478856, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289986656}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1007943680, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289855552}, "child": {"skip": 1320, "offset": 1336, "next": [], "symbols": [{"name": "__sceEENetsyn_cache_insert", "hash": "d98f26ee5e2d2e2a53df5090f6d5bf5bb8f0d442", "variant": 3674598133, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289921104}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8429613}, "child": {"skip": 452, "offset": 468, "next": [], "symbols": [{"name": "i2t_ASN1_OBJECT_ex", "hash": "01e1dffecd54d3dfdf56ee11615764e06f232385", "variant": 3567685911, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290117792}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290052240}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 12628013}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289986688}, "child": {"skip": 176, "offset": 196, "next": [], "symbols": [{"name": "sceEENetSendto", "hash": "3e5d2ca849ab72d8777355eda534493f8b7f02a3", "variant": 3236000058, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 14725165}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289986688}, "child": {"skip": 196, "offset": 216, "next": [], "symbols": [{"name": "sceEENetRecvfrom", "hash": "0c3ba665c96a94a02b613b235821af83cd04616a", "variant": 1590801629, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290183328}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290052224}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8435757}, "child": {"skip": 608, "offset": 624, "next": [], "symbols": [{"name": "recvit", "hash": "92e8d2981710cbe6a94b2ce829c28658527d4ac0", "variant": 961046354, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4290117776}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10532909}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289986672}, "child": {"skip": 432, "offset": 452, "next": [], "symbols": [{"name": "dhclient_send_arp_req", "hash": "7618374f0caa317645494bd200e165f5c23548d2", "variant": 3507534046, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 16824365}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290052224}, "child": {"skip": 608, "offset": 628, "next": [], "symbols": [{"name": "d2i_ASN1_SET", "hash": "1978f849d1512df0a8b66eee0253862767be4d6a", "variant": 644297688, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290117776}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289986672}, "child": {"skip": 1168, "offset": 1180, "next": [], "symbols": [{"name": "sceEENetGetIfinfo", "hash": "b91f028aec9c6bd9a0f004526feff90521754af8", "variant": 2263587201, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 12333}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855648}, "child": {"skip": 576, "offset": 588, "next": [], "symbols": [{"name": "_sce_eenet_dhclient_config_if", "hash": "960e70cb8ef5ce9ce9cf2e746f30230abfe683f3", "variant": 4276386249, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 10491949}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789968}, "child": {"skip": 1156, "offset": 1168, "next": [], "symbols": [{"name": "sceHTTPSetOption", "hash": "7c5417832810b871cfb9817493197c93e46d8273", "variant": 1082064970, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 4290707632}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290642080}, "child": {"skip": 3440, "offset": 3452, "next": [], "symbols": [{"name": "RC2_cbc_encrypt", "hash": "ce76d5a53df5eb289e399b344943970dba69452c", "variant": 3895735070, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604115328}, "child": {"skip": 0, ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(offset": 8, "next": [{"match": {"value": 4290052240}, "child": {"skip": 1100, "offset": 1112, "next": [], "symbols": [{"name": "ssl3_send_client_key_exchange", "hash": "ae5a0714aa4547704a48fff07656c6855c61458b", "variant": 2852127351, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604110852}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289986720}, "child": {"skip": 1420, "offset": 1432, "next": [], "symbols": [{"name": "d2i_X509_CINF", "hash": "340cdc188b521ec665afd9b930e9e8d7f521a104", "variant": 1306387960, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 281018385}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 617086975}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1007222783}, "child": {"skip": 68, "offset": 80, "next": [], "symbols": [{"name": "sceVif1PkAddGsDataN", "hash": "9517a86fb068d8a8900e74d7ed2d8a18d441b7f6", "variant": 0, "library": "libpkt"}]}}], "symbols": []}}, {"match": {"value": 16429}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 8402989}, "child": {"skip": 68, "offset": 80, "next": [], "symbols": [{"name": "Encode", "hash": "97593dd12d026445db1bdf00ec173646852bf182", "variant": 0, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8415277}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829824}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2376663040}, "child": {"skip": 132, "offset": 144, "next": [], "symbols": [{"name": "sceVif1PkOpenUpkCode", "hash": "f60e935bea9870feff8a42da6c85cac01b8b93c1", "variant": 0, "library": "libpkt"}, {"name": "sceVif0PkOpenUpkCode", "hash": "f60e935bea9870feff8a42da6c85cac01b8b93c1", "variant": 0, "library": "libpkt"}]}}], "symbols": []}}, {"match": {"value": 10514477}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 12613677}, "child": {"skip": 276, "offset": 288, "next": [], "symbols": [{"name": "ydhms_tm_diff", "hash": "b5f2cfe5574bb26d18df5f6ed5de5cdd977e10af", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 281018381}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 617086975}, "child": {"skip": 56, "offset": 64, "next": [], "symbols": [{"name": "sceVif1PkAddDataN", "hash": "307df8149064795c060725e397410e286bea63ea", "variant": 0, "library": "libpkt"}, {"name": "sceVif1PkAddUpkData32N", "hash": "307df8149064795c060725e397410e286bea63ea", "variant": 0, "library": "libpkt"}]}}], "symbols": []}}, {"match": {"value": 3634626560}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 3634692112}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 3634757664}, "child": {"skip": 4, "offset": 16, "next": [{"match": {"value": 3636985856}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1273504188}, "child": {"skip": 12, "offset": 36, "next": [{"match": {"value": 65011720}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 4169728000}, "child": {"skip": 0, "offset": 44, "next": [], "symbols": [{"name": "sceVu0ApplyMatrix", "hash": "0d1c0f28b0d9a4a7eb6ac644c8b4fef42aa69750", "variant": 0, "library": "libvu0"}]}}], "symbols": []}}, {"match": {"value": 1273562044}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 1241514943}, "child": {"skip": 4, "offset": 48, "next": [{"match": {"value": 285212674}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 1273645437}, "child": {"skip": 16, "offset": 72, "next": [{"match": {"value": 336068593}, "child": {"skip": 0, "offset": 76, "next": [{"match": {"value": 545521680}, "child": {"skip": 8, "offset": 88, "next": [], "symbols": [{"name": "sceVu0RotTransPersN", "hash": "8021129958fe1e66d500e0771ba39619bb8ba3ff", "variant": 0, "library": "libvu0"}]}}], "symbols": []}}, {"match": {"value": 545521680}, "child": {"skip": 0, "offset": 76, "next": [{"match": {"value": 336068592}, "child": {"skip": 12, "offset": 92, "next": [], "symbols": [{"name": "sceVu0RotTransPersN", "hash": "819fe17731f753ef8da9d7806d9fab2ee026aee9", "variant": 0, "library": "libvu0"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 283115522}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 1273645437}, "child": {"skip": 12, "offset": 68, "next": [], "symbols": [{"name": "sceVu0RotTransPers", "hash": "09d8dc7069cc64979a202cfcb498d0cb92d8d934", "variant": 0, "library": "libvu0"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604438532}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 3636985856}, "child": {"skip": 28, "offset": 52, "next": [{"match": {"value": 336068599}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 545521680}, "child": {"skip": 8, "offset": 68, "next": [], "symbols": [{"name": "sceVu0MulMatrix", "hash": "e15564a31ea10f9c3d3edb78fa6a5b89c086b5b1", "variant": 0, "library": "libvu0"}]}}], "symbols": []}}, {"match": {"value": 545521680}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 336068598}, "child": {"skip": 12, "offset": 72, "next": [], "symbols": [{"name": "sceVu0MulMatrix", "hash": "e7aaff56239c1775e49fa83aad59fd108ccea691", "variant": 0, "library": "libvu0"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 3636789248}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1271210750}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1271146926}, "child": {"skip": 12, "offset": 28, "next": [], "symbols": [{"name": "sceVu0OuterProduct", "hash": "792897af13fb54c86fc4bf3e0ea83acd65ebd171", "variant": 0, "library": "libvu0"}]}}], "symbols": []}}, {"match": {"value": 1141399552}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1218981888}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1258291651}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1258699308}, "child": {"skip": 16, "offset": 40, "next": [], "symbols": [{"name": "sceVu0InterVector", "hash": "48daeffee66131df8502f6dec9484e8d3608800c", "variant": 0, "library": "libvu0"}]}}], "symbols": []}}, {"match": {"value": 1244209980}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1258291651}, "child": {"skip": 20, "offset": 44, "next": [], "symbols": [{"name": "sceVu0InterVectorXYZ", "hash": "2f22857ff9b1447c6e7eb01da4bf68190f4be664", "variant": 0, "library": "libvu0"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1273307560}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 20, "next": [], "symbols": [{"name": "sceVu0AddVector", "hash": "867644b06016c47f6730ec5a0fb557ada6fe4205", "variant": 0, "library": "libvu0"}]}}], "symbols": []}}, {"match": {"value": 1273307564}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 20, "next": [], "symbols": [{"name": "sceVu0SubVector", "hash": "0d46a2950ee5976492eb81716b30374746ec0287", "variant": 0, "library": "libvu0"}]}}], "symbols": []}}, {"match": {"value": 1273307562}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 20, "next": [], "symbols": [{"name": "sceVu0MulVector", "hash": "e3e31f94c23e2457987eede27ea69986d3219ba7", "variant": 0, "library": "libvu0"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1271144810}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1258629441}, "child": {"skip": 4, "offset": 16, "next": [{"match": {"value": 1241842621}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1241514943}, "child": {"skip": 4, "offset": 28, "next": [{"match": {"value": 1241514751}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 1241514751}, "child": {"skip": 24, "offset": 60, "next": [], "symbols": [{"name": "sceVu0Normalize", "hash": "ff6fe261176fde6074af2a520630a76631fe93c2", "variant": 0, "library": "libvu0"}]}}], "symbols": []}}, {"match": {"value)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": 1248134076}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 1272971692}, "child": {"skip": 16, "offset": 52, "next": [], "symbols": [{"name": "sceVu0Normalize", "hash": "e3673a323d7fb46a74b162ef8469c9df751c7ed1", "variant": 0, "library": "libvu0"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1243939773}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1241514943}, "child": {"skip": 4, "offset": 28, "next": [{"match": {"value": 1248134076}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 1272971692}, "child": {"skip": 16, "offset": 52, "next": [], "symbols": [{"name": "sceVu0Normalize", "hash": "85bc0dc34c608940ca1d23bcb8fe0e67260fea82", "variant": 0, "library": "libvu0"}]}}], "symbols": []}}, {"match": {"value": 1241514751}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 1241514751}, "child": {"skip": 24, "offset": 60, "next": [], "symbols": [{"name": "sceVu0Normalize", "hash": "755763421b79c78c9003cf627cfa7671b6f3bdbf", "variant": 0, "library": "libvu0"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1141399552}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1218979840}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1248134076}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1241514943}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1272979740}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 32, "next": [], "symbols": [{"name": "sceVu0DivVector", "hash": "1f5d45b5bf371be06a3d02dce135d35a84ebe675", "variant": 0, "library": "libvu0"}]}}], "symbols": []}}, {"match": {"value": 1270882588}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 32, "next": [], "symbols": [{"name": "sceVu0DivVectorXYZ", "hash": "0a516dae9e06769c153ad4e6f8d2f408bd49a6e5", "variant": 0, "library": "libvu0"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1273307544}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 24, "next": [], "symbols": [{"name": "sceVu0ScaleVector", "hash": "13028edda8c50f2df607414b88779721be906ad7", "variant": 0, "library": "libvu0"}]}}], "symbols": []}}, {"match": {"value": 1271210264}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 24, "next": [], "symbols": [{"name": "sceVu0ScaleVectorXYZ", "hash": "620ec1d69aab704cae061d68376e808470cb3e11", "variant": 0, "library": "libvu0"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1273307517}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 16, "next": [], "symbols": [{"name": "sceVu0FTOI4Vector", "hash": "198b05559a54760ea44e66712a082e7d32abf54e", "variant": 0, "library": "libvu0"}]}}], "symbols": []}}, {"match": {"value": 1273307516}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 16, "next": [], "symbols": [{"name": "sceVu0FTOI0Vector", "hash": "90aaeedfde4ee0a4717588deb973d8db7308ede5", "variant": 0, "library": "libvu0"}]}}], "symbols": []}}, {"match": {"value": 1273307453}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 16, "next": [], "symbols": [{"name": "sceVu0ITOF4Vector", "hash": "db4e2794d757151d530b15c360aa2321c38e18f6", "variant": 0, "library": "libvu0"}]}}], "symbols": []}}, {"match": {"value": 1273307452}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 16, "next": [], "symbols": [{"name": "sceVu0ITOF0Vector", "hash": "9df9fa3bb42421741717b4f8fc67e758bcbbd575", "variant": 0, "library": "libvu0"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 3632529408}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 3634692096}, "child": {"skip": 28, "offset": 36, "next": [], "symbols": [{"name": "sceVu0InnerProduct", "hash": "9ea87acdbf4f0f04ba49a3141d7bb6bff4d0534a", "variant": 0, "library": "libvu0"}]}}], "symbols": []}}, {"match": {"value": 2024275968}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 2024341520}, "child": {"skip": 4, "offset": 12, "next": [{"match": {"value": 2024472624}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1898472584}, "child": {"skip": 40, "offset": 60, "next": [{"match": {"value": 65011720}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 2089484336}, "child": {"skip": 0, "offset": 68, "next": [], "symbols": [{"name": "sceVu0TransposeMatrix", "hash": "6bb4354ec49b59f246dc8e490b46af0463e1af28", "variant": 0, "library": "libvu0"}]}}], "symbols": []}}, {"match": {"value": 2089484336}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 72, "next": [], "symbols": [{"name": "sceVu0TransposeMatrix", "hash": "7fa15b90a2a9207b95ec152803b14877f1ccb67c", "variant": 0, "library": "libvu0"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 3634626608}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1273307964}, "child": {"skip": 88, "offset": 108, "next": [], "symbols": [{"name": "sceVu0InversMatrix", "hash": "c943ffd93f8b8fcf8b9611ac7870f6d31f9f3401", "variant": 0, "library": "libvu0"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 3636723712}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 3634692144}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2024210432}, "child": {"skip": 32, "offset": 44, "next": [], "symbols": [{"name": "sceVu0TransMatrix", "hash": "94e2bae136dccd8f95a4fd7d110307153b698547", "variant": 0, "library": "libvu0"}]}}], "symbols": []}}, {"match": {"value": 3634823168}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1273438764}, "child": {"skip": 200, "offset": 212, "next": [], "symbols": [{"name": "sceSynthesizerAmpProcI", "hash": "cea269d0a53b233a3c2970c164b122413d7e8557", "variant": 568149046, "library": "libssyn"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2024144896}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 65011720}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2089156608}, "child": {"skip": 0, "offset": 12, "next": [], "symbols": [{"name": "sceVu0CopyVector", "hash": "2f938dc5aa7566ea9216791a4fe7be0a03c94104", "variant": 0, "library": "libvu0"}]}}], "symbols": []}}, {"match": {"value": 2089156608}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 16, "next": [], "symbols": [{"name": "sceVu0CopyVector", "hash": "5af3cdcc27a3a71c4e0a2a64d5ce28b12ad46633", "variant": 0, "library": "libvu0"}]}}], "symbols": []}}, {"match": {"value": 2024210448}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2024276000}, "child": {"skip": 16, "offset": 28, "next": [{"match": {"value": 65011720}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2089353264}, "child": {"skip": 0, "offset": 36, "next": [], "symbols": [{"name": "sceVu0CopyMatrix", "hash": "d3e147a004cb551e54c12e0609a1809cd4518a3f", "variant": 0, "library": "libvu0"}]}}], "symbols": []}}, {"match": {"value": 2089353264}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 40, "next": [], "symbols": [{"name": "sceVu0CopyMatrix", "hash": "b20dcece2f98353279dfbeb0415a3d0529f88a73", "variant": 0, "library": "libvu0"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1272971564}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1243619624}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1273307965}, "child": {"skip": 28, "offset": 40, "next": [], "symbols": [{"name": "sceVu0UnitMatrix", "hash": "22e14562950167ef297db0a3f592df372c14477c", "variant")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: 0, "library": "libvu0"}]}}], "symbols": []}}, {"match": {"value": 1006781824}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 136248}, "child": {"skip": 8, "offset": 20, "next": [{"match": {"value": 3632726016}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1218588672}, "child": {"skip": 36, "offset": 64, "next": [{"match": {"value": 65011720}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 809631936}, "child": {"skip": 0, "offset": 72, "next": [], "symbols": [{"name": "sceVu0ClipScreen", "hash": "3a6539a548f04f8e11731f20da5ae1e8e3da9b26", "variant": 0, "library": "libvu0"}]}}], "symbols": []}}, {"match": {"value": 809631936}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 76, "next": [], "symbols": [{"name": "sceVu0ClipScreen", "hash": "aa6c87978bef1c4d497c1584b83e97a883a1127a", "variant": 0, "library": "libvu0"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 3632660480}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 3634888704}, "child": {"skip": 60, "offset": 88, "next": [{"match": {"value": 65011720}, "child": {"skip": 0, "offset": 92, "next": [{"match": {"value": 809631936}, "child": {"skip": 0, "offset": 96, "next": [], "symbols": [{"name": "sceVu0ClipScreen3", "hash": "07a923132fe752dc3f24c6aa716bdb0410d0da03", "variant": 0, "library": "libvu0"}]}}], "symbols": []}}, {"match": {"value": 809631936}, "child": {"skip": 0, "offset": 92, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 100, "next": [], "symbols": [{"name": "sceVu0ClipScreen3", "hash": "42c9cc988430cf99425856091a6da66514314f1f", "variant": 0, "library": "libvu0"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1149239296}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1174429748}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 3347054592, "relocation": {"type": "MIPS_LITERAL", "symbol": ".lit4"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1157627908}, "child": {"skip": 8, "offset": 24, "next": [{"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": ""}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604438529}, "child": {"skip": 124, "offset": 156, "next": [], "symbols": [{"name": "sceVu0RotMatrixZ", "hash": "9d3e530718f163f39d3bf3d0d6bf51c3a5590913", "variant": 2752468964, "library": "libvu0"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": ""}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604438529}, "child": {"skip": 128, "offset": 160, "next": [], "symbols": [{"name": "sceVu0RotMatrixX", "hash": "85cdbde97e343b6f2163354721d30fd6f301d784", "variant": 879325625, "library": "libvu0"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": ""}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604438529}, "child": {"skip": 128, "offset": 160, "next": [], "symbols": [{"name": "sceVu0RotMatrixY", "hash": "97bdecf8f28baef3486d2aa60837c97027e4831a", "variant": 2447565239, "library": "libvu0"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006714825}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 874581979}, "child": {"skip": 4, "offset": 20, "next": [{"match": {"value": 1157627908}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 0}, "child": {"skip": 4, "offset": 32, "next": [{"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": ""}}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 604438529}, "child": {"skip": 124, "offset": 164, "next": [], "symbols": [{"name": "sceVu0RotMatrixZ", "hash": "20b229fa6bd46a5c9510ac7119fc7a56d6ff1064", "variant": 2228904031, "library": "libvu0"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": ""}}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 604438529}, "child": {"skip": 128, "offset": 168, "next": [], "symbols": [{"name": "sceVu0RotMatrixX", "hash": "9b45bb205a78e542958a1b892be4357f9c5d7a58", "variant": 347883010, "library": "libvu0"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": ""}}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 604438529}, "child": {"skip": 128, "offset": 168, "next": [], "symbols": [{"name": "sceVu0RotMatrixY", "hash": "a90dc0890b14a3f3fe00d738d5118554de89a3ce", "variant": 2973226508, "library": "libvu0"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1157627909}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 0}, "child": {"skip": 8, "offset": 36, "next": [{"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": ""}}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 0}, "child": {"skip": 128, "offset": 172, "next": [], "symbols": [{"name": "sceVu0RotMatrixZ", "hash": "d56e0cdc26dd458685881af772961d4ad059bfb6", "variant": 3940231181, "library": "libvu0"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": ""}}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 0}, "child": {"skip": 132, "offset": 176, "next": [], "symbols": [{"name": "sceVu0RotMatrixX", "hash": "b147107aa16127257fb7572dace889dafdc5d0e8", "variant": 2059210320, "library": "libvu0"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": ""}}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 0}, "child": {"skip": 132, "offset": 176, "next": [], "symbols": [{"name": "sceVu0RotMatrixY", "hash": "61c3c215a967588953afcbd24f25a6dbc8935dc4", "variant": 3744898654, "library": "libvu0"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 0}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1157824520}, "child": {"skip": 272, "offset": 288, "next": [], "symbols": [{"name": "sceSynthesizerCalcTvfCoefF0", "hash": "b89f19b3ee918d8236236aac40148d9fe2eada28", "variant": 70516648, "library": "libssyn"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1174429766}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 666763248}, "child": {"skip": 4, "offset": 16, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1157627912}, "child": {"skip": 44, "offset": 68, "next": [], "symbols": [{"name": "__fixsfdi", "hash": "20b6fcc8e1b4ace1dc423493cb4b3afb10b5d5e9", "variant": 1171351149, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 1157627911}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4290707456}, "child": {"skip": 36, "offset": 60, "next": [], "symbols": [{"name": "__fixsfdi", "hash": "78997d0a26e07634ea71a8046ab6f6968d2c2a2b", "variant": 1792053494, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666763248}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1174429748}, "child": {"skip": 48, "offset": 60, "next": [], "symbols": [{"name": "__fixsfdi", "hash": "5e9dbfff2516b31235ac12dbf8f4890470660691", "variant": 1485485540, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 65011720}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 12, "next": [], "symbols": [{"name": "sceSynthesizerLfoNone", "hash": "59c4ad585725221cb608fd89e02c4e900ceeacc5", "variant": 0, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 1174431798}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 0}, "child": {"skip": 52, "offset": 64, "next": [], "symbols": [{"name": "sceSynthesizerC)PS2SDB", 8192}, + std::string_view{R"PS2SDB(alcTvfCoefAll", "hash": "06eb8a3821906eed49625ed41252b55c58c9bf2f", "variant": 2939325525, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 1175191606}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1157627929}, "child": {"skip": 296, "offset": 308, "next": [], "symbols": [{"name": "_sceSSyn_log2lin", "hash": "8c2ca3fe8b52ab5967e5d9519156fa563a85e939", "variant": 3826285082, "library": "libssyn"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1141399552}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1141467136}, "child": {"skip": 28, "offset": 36, "next": [], "symbols": [{"name": "sceVu0ClampVector", "hash": "cc69018372ecfec46a1635137386a7d17ac7e392", "variant": 0, "library": "libvu0"}]}}], "symbols": []}}, {"match": {"value": 1174430726}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 281018410}, "child": {"skip": 12, "offset": 20, "next": [{"match": {"value": 1174504002}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 3299016712}, "child": {"skip": 372, "offset": 400, "next": [], "symbols": [{"name": "sceVu0DropShadowMatrix", "hash": "837b87f3adae460c2a7b2f5e24a78fa6a9919ce1", "variant": 0, "library": "libvu0"}]}}], "symbols": []}}, {"match": {"value": 1174503938}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 3299016712}, "child": {"skip": 372, "offset": 400, "next": [], "symbols": [{"name": "sceVu0DropShadowMatrix", "hash": "03dd4166dd5cc1a0dc1de005fc89aa07d486bacc", "variant": 0, "library": "libvu0"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 3298820096}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 3833593856}, "child": {"skip": 20, "offset": 28, "next": [], "symbols": [{"name": "sceVu0CopyVectorXYZ", "hash": "d6645d263e2805ec6750f7f3eef0c71987cbe254", "variant": 0, "library": "libvu0"}]}}], "symbols": []}}, {"match": {"value": 3639083008}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 3636723712}, "child": {"skip": 132, "offset": 140, "next": [], "symbols": [{"name": "sceVu0ClipAll", "hash": "9abefdb1e59319f491e6eacc90c112c4f5f43f02", "variant": 0, "library": "libvu0"}]}}], "symbols": []}}, {"match": {"value": 604176384}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "RFU000_FullReset", "hash": "36f7d7c77dabc1e3dec677bb5141b62201d6d7fc", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176385}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2889875456, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2894266368, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 188, "offset": 208, "next": [], "symbols": [{"name": "_clearEach", "hash": "2457c7f32e6818f21d63ab75b7ea37bc02a362b8", "variant": 2647085066, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2890072064, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 612578048}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2894069760}, "child": {"skip": 32, "offset": 60, "next": [], "symbols": [{"name": "scePad2Init", "hash": "bd70df5fb05add49d7a11ad2c866351f9da54796", "variant": 2335636393, "library": "libpad2"}]}}], "symbols": []}}, {"match": {"value": 612578112}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2894069760}, "child": {"skip": 36, "offset": 64, "next": [], "symbols": [{"name": "scePad2Init", "hash": "26f7668af254060f2956a4a4696ce6f33323b383", "variant": 2335636393, "library": "libpad2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 12}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 16, "next": [], "symbols": [{"name": "ResetEE", "hash": "bc4fa1f485f21c6d93223eab4384268a2aad39e7", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604176386}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "SetGsCrt", "hash": "0dc225c1a94fd4c1539d8b973208d2551f9c30d8", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176387}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 16, "next": [], "symbols": [{"name": "RFU003", "hash": "ab2ab631b89712353cd7f8100d8c5dd2e2499c7b", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604110849}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 16, "next": [], "symbols": [{"name": "ssl2_shutdown", "hash": "0cc7b8f67252ae16e6e275d03b05b037180e111e", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604176388}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "_Exit", "hash": "db06665bc03faf529267fc9071f1e35cab35e68e", "variant": 0, "library": "libkernl"}, {"name": "Exit", "hash": "db06665bc03faf529267fc9071f1e35cab35e68e", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176389}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "RFU005", "hash": "7201472ac30d47271cf6b07d95d14c806a61dfa4", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176390}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "_LoadExecPS2", "hash": "9dbe3e0556afc4f20b36e0a8daf7f38187049fa4", "variant": 0, "library": "libkernl"}, {"name": "LoadExecPS2", "hash": "9dbe3e0556afc4f20b36e0a8daf7f38187049fa4", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176392}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "RFU008", "hash": "c301a66019f463e3e7b6fbf300f9f54c8ddd61b0", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176393}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "RFU009", "hash": "a92059102772ceeef7faf22721a94d57d8de5a6b", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176394}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 16, "next": [], "symbols": [{"name": "AddSbusIntcHandler", "hash": "a3d4e233138c9e0bc5091b01f407a6be50b0d3f3", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 813957375}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 8585243}, "child": {"skip": 32, "offset": 44, "next": [], "symbols": [{"name": "tobcd", "hash": "fd56f4054b3c6869086f3b0cd3cfa9fa8ed68a1b", "variant": 0, "library": "libscf"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604176395}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "RemoveSbusIntcHandler", "hash": "6b3e861ed334156b949013a49928c02ecb33c17e", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {")PS2SDB", 8192}, + std::string_view{R"PS2SDB(match": {"value": 604176396}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "Interrupt2Iop", "hash": "8dc820d26e03d1b63f298bf9e137519dfaa6eef7", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176397}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "SetVTLBRefillHandler", "hash": "aa5c3590140ca6304a76b82e180dd3a6d6d6e8b9", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176398}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "SetVCommonHandler", "hash": "ef280982afb3b3fe8f04bea499738f3748fa14a5", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176399}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "SetVInterruptHandler", "hash": "def66d8179f60698e867af2ba1751035b393d3a2", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176400}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 16, "next": [], "symbols": [{"name": "AddIntcHandler", "hash": "64dd09eda5be6ef7ecef0cfde42d3c6d4638dd25", "variant": 0, "library": "libkernl"}, {"name": "AddIntcHandler2", "hash": "64dd09eda5be6ef7ecef0cfde42d3c6d4638dd25", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 813826063}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 6434851}, "child": {"skip": 280, "offset": 292, "next": [], "symbols": [{"name": "_clrMem", "hash": "f62b939d8b44d048ed05458c181020c83e9085c0", "variant": 0, "library": "libssyn"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604176401}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "RemoveIntcHandler", "hash": "827dd7e623e626471eaec81f0a2a55b2e3e4fdbf", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176402}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "AddDmacHandler", "hash": "487a9278ee909817bc453b53c9dca08a191f395f", "variant": 0, "library": "libkernl"}, {"name": "AddDmacHandler2", "hash": "487a9278ee909817bc453b53c9dca08a191f395f", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176403}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "RemoveDmacHandler", "hash": "d344e77c5e08e273d41bea618e0af8e18b0f2265", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176404}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "_EnableIntc", "hash": "af839c1b886993a96c8c44532966e96d8057bbff", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176405}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "_DisableIntc", "hash": "74eb0fa1efdfb03b05017c38854acb03a7a823a9", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176406}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "_EnableDmac", "hash": "e1b37566f6d23c922bf404b17e88e9b0f508cdb5", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176407}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "_DisableDmac", "hash": "b87812db67e32d46158c2ecfab1cfb73f58b0cdf", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176636}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "SetAlarm", "hash": "56371626bffcc16ac06b36613ae9c420448f8e84", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176408}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 16, "next": [], "symbols": [{"name": "SetAlarm", "hash": "99f1e5a7523e93e57b755603050fafd27a9ce14e", "variant": 0, "library": "libkernl"}, {"name": "_SetAlarm", "hash": "99f1e5a7523e93e57b755603050fafd27a9ce14e", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 617283581}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 21168154}, "child": {"skip": 2880, "offset": 2892, "next": [], "symbols": [{"name": "__kernel_rem_pio2", "hash": "c17d36e43a4a2cab91843cf88755437ebc16fc76", "variant": 4020876397, "library": "libm"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604176637}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "ReleaseAlarm", "hash": "5e87f748fe99edd5d7192e38b485663f2ace42d0", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176409}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "ReleaseAlarm", "hash": "0353e4c7a1f5480e1827301d1ea113f9dccfe1ce", "variant": 0, "library": "libkernl"}, {"name": "_ReleaseAlarm", "hash": "0353e4c7a1f5480e1827301d1ea113f9dccfe1ce", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604241894}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "_iEnableIntc", "hash": "2cc467b4be7b3880ccd3389cb7d05f66ceded237", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604241893}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "_iDisableIntc", "hash": "04b6d0b8b7f614b2b3ebe6ae83667a8ed5a06b50", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604241892}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "_iEnableDmac", "hash": "0486dea8f6157018bc4193bfe6834725dc91e500", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604241891}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "_iDisableDmac", "hash": "d160968aa13c35fb98edcbb344db7784182ebc54", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604241666}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "iSetAlarm", "hash": "3ad24eb270bf94daf5c42bb345fe44542ad93b77", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604241890}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "iSetAlarm", "hash": "078eb47a1d4cea4ce8d56b3a91589cc0f74e3e44", "variant": 0, "library": "libkernl"}, {"name": "_iSetAlarm", "hash": "078eb47a1d4cea4ce8d56b3a91589cc0f74e3e44", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604241665}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "iReleaseAlarm", "hash": "604076bce84b86de1b0fb400a41e1f2a9d309948", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {")PS2SDB", 8192}, + std::string_view{R"PS2SDB(value": 604241889}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "iReleaseAlarm", "hash": "add62d67c123a2ac9deb646e1611baf1e63c9bd3", "variant": 0, "library": "libkernl"}, {"name": "_iReleaseAlarm", "hash": "add62d67c123a2ac9deb646e1611baf1e63c9bd3", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176416}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 16, "next": [], "symbols": [{"name": "CreateThread", "hash": "d627bbc28b6198e7bf1a0965fb84926da8cfb322", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604111103}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2692874243}, "child": {"skip": 36, "offset": 48, "next": [], "symbols": [{"name": "fillkmap", "hash": "57a701816b308728639b67978308a5df439c0f97", "variant": 0, "library": "libssyn"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604176417}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "DeleteThread", "hash": "d460e613d1dbbe9bb0fe015b15ea84a278a1afd5", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176418}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "StartThread", "hash": "c805f4cb58dd73bf4b3388018ef3085972441211", "variant": 0, "library": "libkernl"}, {"name": "_StartThread", "hash": "c805f4cb58dd73bf4b3388018ef3085972441211", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176420}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "ExitDeleteThread", "hash": "b27199e0cf28f57f35a5f292e68ce5390c88770a", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176421}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "TerminateThread", "hash": "c8d75f3c68d6995466157653d2665a8012da2cf3", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604241882}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "iTerminateThread", "hash": "32f83874f6910c96d88606216c71147d972c3307", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176423}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "DisableDispatchThread", "hash": "4360d393d55f869f7ab4572617a890bc61f25228", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176424}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "EnableDispatchThread", "hash": "34a7cc913d0e3dd6ebdcba873eaa9dc117338b70", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176425}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "ChangeThreadPriority", "hash": "20d7c21c16e7fc53ae639dd53f54d9f10d8668d3", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604241878}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "iChangeThreadPriority", "hash": "f74d97059119018874b642a5998bd141b4c8ff7d", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176427}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "RotateThreadReadyQueue", "hash": "d21c96920b65ad61ba7c49134af16801e4444c40", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604241876}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "_iRotateThreadReadyQueue", "hash": "277bf45dcf810569561499d92bac10e61d914d59", "variant": 0, "library": "libkernl"}, {"name": "iRotateThreadReadyQueue", "hash": "277bf45dcf810569561499d92bac10e61d914d59", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176429}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "ReleaseWaitThread", "hash": "806ca23ab4aafe90dc555cf388053e522862b535", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604241874}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "iReleaseWaitThread", "hash": "f61c0b3d3533f96ddf3f50bb3e145a68771cce32", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176431}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "GetThreadId", "hash": "4ff18c6ac41fc80c95145b10d6bce100f3af10be", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176432}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "ReferThreadStatus", "hash": "622eac17db28156631198876a6288e71da8fdd6a", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604241871}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "iReferThreadStatus", "hash": "49846a4f565266ca0a4a41f75cbaf3ad55fd374f", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176434}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "SleepThread", "hash": "4520435c95317d298fb734523f7c53cb89a88696", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176435}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "WakeupThread", "hash": "710fa98fdb86d83d7465d37b19b8de7454433446", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604241868}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "_iWakeupThread", "hash": "d25e9bc16fcf837fbeb2607325cbe37918eced27", "variant": 0, "library": "libkernl"}, {"name": "iWakeupThread", "hash": "d25e9bc16fcf837fbeb2607325cbe37918eced27", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176437}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "CancelWakeupThread", "hash": "ae9f3887bb40afe63aff8591e1b33f1c2f267fa9", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604241866}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "iCancelWakeupThread", "hash": "50d52e9a7e6ed4ecc6624f6982fa9c6bb2133677", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176439}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "SuspendThread", "hash": "64dc7af9db4502f389b246c4393c2867c675a059", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604241864}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: [{"name": "_iSuspendThread", "hash": "fb0af131e4b1976c7d66bb4555a4bfb1afb5f3b5", "variant": 0, "library": "libkernl"}, {"name": "iSuspendThread", "hash": "fb0af131e4b1976c7d66bb4555a4bfb1afb5f3b5", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176441}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "ResumeThread", "hash": "8f82a0df02e00a0fce7bad37b69fb1deb6938d39", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604241862}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "iResumeThread", "hash": "df148122c3d43b1600432e1bedaccea480761311", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176443}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "JoinThread", "hash": "0058069d48629935604bdde65e56a620cd237d98", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176444}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "RFU060", "hash": "c69571de0acd7ddb52403d7807953f5967ce8efd", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176445}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "RFU061", "hash": "2151c73dd566b72c1617812d2bbbd4b5fcf10fa8", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176446}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "EndOfHeap", "hash": "7065cd8b14490ddd118412fc4f69c44bfb5de786", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176447}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "RFU063", "hash": "551275b944056dfc9cd6fa07dcf5af404efc4a97", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176448}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "CreateSema", "hash": "8df7bdfc50c91872b244ef2212ad4f7bb79f9a0c", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176449}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "DeleteSema", "hash": "a8fc288baca2dd9622c183873f501122f7f9234d", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176450}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "SignalSema", "hash": "bf718a8c45194019498e14bce3b7a5a57608cd34", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604241853}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "iSignalSema", "hash": "b4ad99703e068bdb9d835d6aa5bf36b179860473", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176452}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "WaitSema", "hash": "9e615ec53d168f968a99d469e7678bddbebb6032", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176453}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "PollSema", "hash": "8c3cd2b391b772f1d3ace9e940d3a22b33288490", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604241850}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "iPollSema", "hash": "375a97a9f877d643447d2df7e771a443012096c3", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176455}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "ReferSemaStatus", "hash": "7cc29a57116192bc908ac6844f7a57088256a236", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604241848}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "iReferSemaStatus", "hash": "39c308d04cdf5335470ce38d12cee4bd8f462c77", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176457}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "RFU073", "hash": "8f960fe93103475ebe02df4e83a3aaa13f2c7c2d", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176458}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "SetOsdConfigParam", "hash": "8b1d1a50852e421dc1cab0d9d952479f7f72d155", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176459}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "GetOsdConfigParam", "hash": "97f43c210a6add26d700dc72c029455bdd8af597", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176460}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "GetGsHParam", "hash": "44dba0a3b0a8b9309c6e5bb04af30f84744d5d6a", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176461}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "GetGsVParam", "hash": "2c2fb64ccb4d20e785eb3015cd1909b64bea1f03", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176462}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "SetGsHParam", "hash": "af579f9f36177af622ab3df230ebc81107689f86", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176463}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "SetGsVParam", "hash": "7e635722024eadc6dc0ccc10771086c0a6964ef0", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176464}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 16, "next": [], "symbols": [{"name": "RFU080_CreateEventFlag", "hash": "03e6b65b28360982e56628f099ac1d030248f78c", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 10686488}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608305168}, "child": {"skip": 8, "offset": 20, "next": [], "symbols": [{"name": "sceHiPlugSkinGetData", "hash": "083caa9f57e421b58d45be9595d87a30d300db72", "variant": 0, "library": "libhip"}, {"name": "sceHiPlugHrchyGetMatrix", "hash": "083caa9f57e421b58d45be9595d87a30d300db72", "variant": 0, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 666763216}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 8593432}, "child": {"skip": 92, "offset": 104, "next": [], "symbols": [{"name": "__sceEENetbpfclose", "hash": "e5f7884c5a28a9a0dd4297da0d3582b844749456", "variant": 4119758212, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 666763168}, "child": {"skip": 0, ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(offset": 8, "next": [{"match": {"value": 8593432}, "child": {"skip": 4, "offset": 16, "next": [{"match": {"value": 4289724432}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 220, "offset": 244, "next": [], "symbols": [{"name": "__sceEENetbpfwrite", "hash": "c8f83b69aaba5e32abcbde49094a33c9e8fe22c2", "variant": 3750006716, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289986624}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 1024, "offset": 1048, "next": [], "symbols": [{"name": "__sceEENetbpfioctl", "hash": "0c3db92b51e9af53a782bed495195617abbaa133", "variant": 802492194, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604176465}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "RFU081_DeleteEventFlag", "hash": "d470e8a55431561b4ed589cdae330fa824d06197", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176466}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "RFU082_SetEventFlag", "hash": "3fe6c31dbc643e5eff3647fd38b22d4332ca426a", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604241837}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "RFU083_iSetEventFlag", "hash": "25c5afae1d3d04f798bbd0b706b150b89554015c", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176468}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "RFU084_ClearEventFlag", "hash": "5ed2b95e18cda8df12042026dc308b4e76bc19f9", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604241835}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "RFU085_iClearEventFlag", "hash": "8ee2efac49ce9e90fa6ea18e178d24dfa2df8450", "variant": 0, "library": "libkernl"}, {"name": "iPutTLBEntry", "hash": "8ee2efac49ce9e90fa6ea18e178d24dfa2df8450", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176470}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "RFU086_WaitEvnetFlag", "hash": "65ed5b93600e7a9f26585e8b353fa56e234131a5", "variant": 0, "library": "libkernl"}, {"name": "_SetTLBEntry", "hash": "65ed5b93600e7a9f26585e8b353fa56e234131a5", "variant": 0, "library": "libkernl"}, {"name": "SetTLBEntry", "hash": "65ed5b93600e7a9f26585e8b353fa56e234131a5", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176471}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "RFU087_PollEvnetFlag", "hash": "d08e263af6e640d78185cf3c6b3bbc407fd4ce35", "variant": 0, "library": "libkernl"}, {"name": "GetTLBEntry", "hash": "d08e263af6e640d78185cf3c6b3bbc407fd4ce35", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604241832}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "RFU088_iPollEvnetFlag", "hash": "925991225c1c6e67d4abe09808a1bf62e6a2387a", "variant": 0, "library": "libkernl"}, {"name": "iProbeTLBEntry", "hash": "925991225c1c6e67d4abe09808a1bf62e6a2387a", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176473}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "RFU089_ReferEventFlagStatus", "hash": "62b2024c711b77fab4c2261dd07120974d493273", "variant": 0, "library": "libkernl"}, {"name": "ExpandScratchPad", "hash": "62b2024c711b77fab4c2261dd07120974d493273", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604241830}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "RFU090_iReferEventFlagStatus", "hash": "5db5cf49fa66402c2abc51be007ecdcc19b7e129", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176475}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "RFU091", "hash": "4328807a69c047c9c44a0c0f235233072d832cd7", "variant": 0, "library": "libkernl"}, {"name": "GetEntryAddress", "hash": "4328807a69c047c9c44a0c0f235233072d832cd7", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176476}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "EnableIntcHandler", "hash": "7465d2d77e1d4a04502c59e75494ed934110947b", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604241828}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "iEnableIntcHandler", "hash": "4b108f11b38df83d82a7d8709d8ceacf1edaa542", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176477}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "DisableIntcHandler", "hash": "2ebe50d7fd6afab6ebf21e4e4e923a0d500e20a4", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604241827}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "iDisableIntcHandler", "hash": "609c4011b2e1f44a6560e75dbf8e8e8892b1f693", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176478}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "EnableDmacHandler", "hash": "3bde1b61d8cf99994bcef6ad4bc0eff0a9880234", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604241826}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "iEnableDmacHandler", "hash": "c6712d8eb075f32c5eba4827bbd4debe5d9476f9", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176479}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "DisableDmacHandler", "hash": "7dd139c78364feac6f64510ff41a5232267c53ae", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604241825}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "iDisableDmacHandler", "hash": "ac2235c900a469a08c5a937c49530a1303eae186", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176480}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "KSeg0", "hash": "617f84c967dc927550a3e88f957de898bdbf3e42", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176481}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "EnableCache", "hash": "cf916a6019245291bf4204df901c155cd348bfbb", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176482}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": )PS2SDB", 8192}, + std::string_view{R"PS2SDB([], "symbols": [{"name": "DisableCache", "hash": "cac0443b4e02405acfacb1d7019f63d70a40bdde", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176483}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "GetCop0", "hash": "5472ce33cfe4a41e64daf1903d76e9018106e45c", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176484}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "FlushCache", "hash": "869d851891fd9214a0c93ab5ae10d1de47085d25", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176486}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "CpuConfig", "hash": "0adc7b1018b86700c54f28a448bda7be3bf765e7", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604241817}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "iGetCop0", "hash": "dc97184561586988b9a259f57c55b81c156b4401", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604241816}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "iFlushCache", "hash": "a0162b61c488493e2424fd9dd2ef6b58713b621b", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604241814}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "iCpuConfig", "hash": "32bdcbaf9a8d1fa70a12440fad5199953f8c93d1", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176491}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "sceSifStopDma", "hash": "78cdf1b38deeea085dd7b3d91d0251c8d5a94ed5", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176492}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "SetCPUTimerHandler", "hash": "3a566e6905256c2307b9ecc7603644d538b8e747", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176493}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "SetCPUTimer", "hash": "02dd502f8d17739c05b602db9422e1e39f0fba7a", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176494}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "SetOsdConfigParam2", "hash": "8d42041873ac88d8dc503025d686fef48007b8d4", "variant": 0, "library": "libkernl"}, {"name": "ForceRead", "hash": "8d42041873ac88d8dc503025d686fef48007b8d4", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176495}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "GetOsdConfigParam2", "hash": "5a2a6a344c5df6c2d6e63c0866fbf43367fa57d0", "variant": 0, "library": "libkernl"}, {"name": "ForceWrite", "hash": "5a2a6a344c5df6c2d6e63c0866fbf43367fa57d0", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176496}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "GsGetIMR", "hash": "7292cfe9831535066da6a02eb935259a287e8ccb", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604241808}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "iGsGetIMR", "hash": "30f0aae7480baf3f7ae6802d2dabfdb04ce2e32f", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176497}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "GsPutIMR", "hash": "95bd793557975110042a7f4d8cf7c0ae12d8a47b", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604241807}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "iGsPutIMR", "hash": "a8a5b7277ca75cdec1763aeda789db0187855117", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176498}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "SetPgifHandler", "hash": "24c584ba6a2d508f432bcd6aead9f391e340e393", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176499}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "SetVSyncFlag", "hash": "9310dfc8a3786e548b1fe0469ca43bb43a7e7e6c", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176500}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 270464}, "child": {"skip": 12, "offset": 28, "next": [], "symbols": [{"name": "_setup", "hash": "2e50ba8431aaba9fd9b04b787d539f53bf894c56", "variant": 201230608, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 65011720}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 16, "next": [], "symbols": [{"name": "RFU116", "hash": "69c56eae5e01cc87e2221804a4974cf24c00fc9e", "variant": 0, "library": "libkernl"}, {"name": "setup", "hash": "69c56eae5e01cc87e2221804a4974cf24c00fc9e", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604176501}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "_print", "hash": "26108dd8fcd60a86390eda4ae9972e34bbeb161a", "variant": 0, "library": "libkernl"}, {"name": "print", "hash": "26108dd8fcd60a86390eda4ae9972e34bbeb161a", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176502}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "sceSifDmaStat", "hash": "9670279ac77aa4ad3b76d2c26711823b6b9f6804", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604241802}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "isceSifDmaStat", "hash": "724ec6918fd0f418fb4ee66d5fb9cb4976ffcd4e", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176503}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "sceSifSetDma", "hash": "b27c5be62bb6cd49976f01cc3da3ce4e0a09c977", "variant": 0, "library": "libkernl"}, {"name": "_sceSifSetDma", "hash": "b27c5be62bb6cd49976f01cc3da3ce4e0a09c977", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604241801}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "isceSifSetDma", "hash": "e3869021c192d9a0febf08360e3d6337adfdae1c", "variant": 0, "library": "libkernl"}, {"name": "_isceSifSetDma", "hash": "e3869021c192d9a0febf08360e3d6337adfdae1c", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176504}, "child": {"skip": 0, "offset")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "sceSifSetDChain", "hash": "69dd4805ff44d743299f3ac89dc5bd9fedc959b3", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604241800}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "isceSifSetDChain", "hash": "1c6b807e47732d3ab1367b618534986432b928cb", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176505}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "sceSifSetReg", "hash": "10f3fda7abf3e7681b0f8f1d721849f997f5b95a", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176506}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "sceSifGetReg", "hash": "adba01dd612efd3c048a7cf3013528fe50365f85", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176507}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "_ExecOSD", "hash": "2451c7a1c6cdfbea41721126e6deea87c171229d", "variant": 0, "library": "libkernl"}, {"name": "ExecOSD", "hash": "2451c7a1c6cdfbea41721126e6deea87c171229d", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176508}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "Deci2Call", "hash": "779fd9de7cb149f3e490544767733b80faa1283f", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176509}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "PSMode", "hash": "d6bca06704d2a06bc0160416d041c32fff927e9b", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176510}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "MachineType", "hash": "7f269bda3045ebe8f3f9b2afcfcbee8ee8c17090", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176511}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "GetMemorySize", "hash": "4b80008f800046d135d786e1779ee0e15544ec5e", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176514}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "_InitTLB", "hash": "ed93e28c6b23ab718f0a3dc67824409eb0643470", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604119040}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 4238344264}, "child": {"skip": 12, "offset": 20, "next": [], "symbols": [{"name": "fstat", "hash": "fda567efdbaf7dbee4a86942778f0b9345149f57", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1007157247}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12333}, "child": {"skip": 60, "offset": 68, "next": [{"match": {"value": 3168010240}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 15}, "child": {"skip": 88, "offset": 164, "next": [], "symbols": [{"name": "_sceSDC", "hash": "756073f815994449788d06db1cc633e805c00e64", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 3168141312}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 15}, "child": {"skip": 88, "offset": 164, "next": [], "symbols": [{"name": "_sceIDC", "hash": "7676e622e2d6005ff1144bde125479517d518054", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006829567}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 876806080}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 10627108}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "_sceSDC"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8527908}, "child": {"skip": 0, "offset": 20, "next": [], "symbols": [{"name": "iSyncDCache", "hash": "8ff8fea6836ebd268ac5efc2997dc8a95905bd15", "variant": 1465468970, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "_sceIDC"}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8527908}, "child": {"skip": 0, "offset": 20, "next": [], "symbols": [{"name": "iInvalidDCache", "hash": "8ff8fea6836ebd268ac5efc2997dc8a95905bd15", "variant": 1189637772, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 876806112}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 10627108}, "child": {"skip": 8, "offset": 20, "next": [], "symbols": [{"name": "iSyncDCache", "hash": "f92c14b1bb933ca990ed71b8223db07d28a096df", "variant": 1465468970, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 8523812}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 339738627}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10285}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 604307472}, "child": {"skip": 16, "offset": 36, "next": [{"match": {"value": 1006825472}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 614793224}, "child": {"skip": 84, "offset": 128, "next": [], "symbols": [{"name": "_hi0bits", "hash": "e874e85b2423d9a2bcf702cf8efc415a39cee2b5", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 0}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 614793224}, "child": {"skip": 88, "offset": 132, "next": [], "symbols": [{"name": "_hi0bits", "hash": "697888e5a4aceae0397d51d67f2d376772ed8f46", "variant": 0, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 6189}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 604176400}, "child": {"skip": 108, "offset": 128, "next": [], "symbols": [{"name": "_hi0bits", "hash": "c884adac98ff25abee50743a2b30ca1933b2ccd2", "variant": 0, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 818085951}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 876806080}, "child": {"skip": 68, "offset": 80, "next": [], "symbols": [{"name": "sceNetcnfifSendIOP", "hash": "185c79167e04a7f42f93fc6a6195b532d8c4cac8", "variant": 964704395, "library": "netcnfif"}]}}], "symbols": []}}, {"match": {"value": 612569087}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 876802048}, "child": {"skip": 288, "offset": 300, "next": [], "symbols": [{"name": "lmalloc_init", "hash": "ae5c082c3948044543e66d0c9b7130bc98dd5e76", "variant": 1768143763, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1073897472}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 943849473}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 16, "next": [], "symbols": [{"name": "QueryIntrContext", "hash": "74357631ce07ea51ceeccd3b406cbaf6d42cf354", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006829569}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4395044}, "child": {"skip": 12, "offset": 24, "next": [], "symbols": [{"name": "EIntr", "hash": "34ff265caf27067a176fca5b0e9ba9018692d0aa", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 339456}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 666763232}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 339459}, "child": {"skip": 8, "offset": 20, "next": [{"match": {"valu)PS2SDB", 8192}, + std::string_view{R"PS2SDB(e": 604241923}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290707472}, "child": {"skip": 20, "offset": 48, "next": [], "symbols": [{"name": "sceDeci2ReqSend", "hash": "e01b73e7850e8aa0c1e46eefcca57546144fd187", "variant": 2119435786, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604307449}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290707472}, "child": {"skip": 20, "offset": 48, "next": [], "symbols": [{"name": "sceDeci2ExReqSend", "hash": "e97ea0219d065c7826ca69b18df673f47bcbc6b7", "variant": 2119435786, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2156003328}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 339459}, "child": {"skip": 64, "offset": 76, "next": [], "symbols": [{"name": "strrchr", "hash": "23b713ae61c5f0fec5050107f089010fe1db7d21", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 1006813184}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 10627105}, "child": {"skip": 44, "offset": 56, "next": [], "symbols": [{"name": "sceSynthesizerChangeHsPanpot", "hash": "4cb9ab7ad4c4f906994743fa41bb451dec4231ee", "variant": 1461687002, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 2156068864}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2424438784}, "child": {"skip": 80, "offset": 92, "next": [], "symbols": [{"name": "instr", "hash": "119469724857b7e3cb3fd31ee2c0e503e79750d7", "variant": 0, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8398893}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "_free_r"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2353266688, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [], "symbols": [{"name": "free", "hash": "2013f5455c8fe6b6a09e036ed372a984df680d0b", "variant": 3044270538, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "_unsetenv_r"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2353266688, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [], "symbols": [{"name": "unsetenv", "hash": "2013f5455c8fe6b6a09e036ed372a984df680d0b", "variant": 2465988108, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 666763248}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2353266688, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 4, "offset": 20, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_malloc_r"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 0}, "child": {"skip": 12, "offset": 40, "next": [], "symbols": [{"name": "malloc", "hash": "157e0d41ba111b85f0f92ff6dda2fd39cb51c8e7", "variant": 374109995, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_raise_r"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 0}, "child": {"skip": 12, "offset": 40, "next": [], "symbols": [{"name": "raise", "hash": "157e0d41ba111b85f0f92ff6dda2fd39cb51c8e7", "variant": 1164286537, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__sigtramp_r"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 0}, "child": {"skip": 12, "offset": 40, "next": [], "symbols": [{"name": "__sigtramp", "hash": "157e0d41ba111b85f0f92ff6dda2fd39cb51c8e7", "variant": 4228647265, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_system_r"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 0}, "child": {"skip": 12, "offset": 40, "next": [], "symbols": [{"name": "system", "hash": "157e0d41ba111b85f0f92ff6dda2fd39cb51c8e7", "variant": 3967756280, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_puts_r"}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 0}, "child": {"skip": 12, "offset": 40, "next": [], "symbols": [{"name": "puts", "hash": "157e0d41ba111b85f0f92ff6dda2fd39cb51c8e7", "variant": 2936131966, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666763232}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2353266688, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 24, "offset": 40, "next": [], "symbols": [{"name": "getenv", "hash": "baed354355b85ae7688c244c3680ffc9106cb828", "variant": 1169406842, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "printf"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [], "symbols": [{"name": "_ErrMessage", "hash": "ee87e26cace34f85a359594ea20a15084700afdb", "variant": 954432658, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "scePrintf"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [], "symbols": [{"name": "_ErrMessage", "hash": "ee87e26cace34f85a359594ea20a15084700afdb", "variant": 3567809034, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "sppp_close_event"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [], "symbols": [{"name": "sppp_lcp_close", "hash": "ee87e26cace34f85a359594ea20a15084700afdb", "variant": 770586378, "library": "libeenet"}, {"name": "sppp_ipcp_close", "hash": "ee87e26cace34f85a359594ea20a15084700afdb", "variant": 770586378, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "sppp_to_event"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [], "symbols": [{"name": "sppp_lcp_TO", "hash": "ee87e26cace34f85a359594ea20a15084700afdb", "variant": 2509745202, "library": "libeenet"}, {"name": "sppp_ipcp_TO", "hash": "ee87e26cace34f85a359594ea20a15084700afdb", "variant": 2509745202, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "sppp_up_event"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [], "symbols": [{"name": "sppp_ipcp_up", "hash": "ee87e26cace34f85a359594ea20a15084700afdb", "variant": 2687318704, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "sppp_down_event"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [], "symbols": [{"name": "sppp_ipcp_down", "hash": "ee87e26cace34f85a359594ea20a15084700afdb", "variant": 4017010097, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "__sceEENeteenet_tiwakeup"}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 604307455}, "child": {"sk)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ip": 0, "offset": 12, "next": [], "symbols": [{"name": "__sceEENeteenet_wakeup", "hash": "dfcb3c8660dab123639f07aa30208995a1bf22da", "variant": 2927470244, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2359427076}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2359558156}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2359492608}, "child": {"skip": 44, "offset": 60, "next": [], "symbols": [{"name": "QueuePeekWriteDone", "hash": "ac83a8a92cee61f11458f5feca4e0ed90c635c84", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 2359558152}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2359492608}, "child": {"skip": 44, "offset": 60, "next": [], "symbols": [{"name": "QueuePeekReadDone", "hash": "1122dd834e37a318bf35189c2349c05cac954098", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 331896}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 144766}, "child": {"skip": 124, "offset": 136, "next": [{"match": {"value": 65011720}, "child": {"skip": 0, "offset": 140, "next": [{"match": {"value": 135231}, "child": {"skip": 0, "offset": 144, "next": [], "symbols": [{"name": "ftoi", "hash": "90246e26b693c3b5cf09b694f998d656c8f89fe2", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 135231}, "child": {"skip": 0, "offset": 140, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 148, "next": [], "symbols": [{"name": "ftoi", "hash": "f28c96239b03a84109492a734481003b28111b6e", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006940160}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "SetT2"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 881070080}, "child": {"skip": 0, "offset": 16, "next": [], "symbols": [{"name": "SetT2_COUNT", "hash": "6cdd5bc93227f78236901a05548a500d9a95fa8d", "variant": 330878924, "library": "libkernl"}]}}, {"match": {"value": 881070096}, "child": {"skip": 0, "offset": 16, "next": [], "symbols": [{"name": "SetT2_MODE", "hash": "39321c22c15864ddb992ad95dd0aa887de9f7480", "variant": 330878924, "library": "libkernl"}]}}, {"match": {"value": 881070112}, "child": {"skip": 0, "offset": 16, "next": [], "symbols": [{"name": "SetT2_COMP", "hash": "5864cb31d4f7473fba53c5811c6d71ee9ade727e", "variant": 330878924, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 278921282}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 268, "offset": 280, "next": [], "symbols": [{"name": "mceStorePwd", "hash": "673f405dd232808019ae7c5f17ff057ab75a2434", "variant": 201230608, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 1141006336}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4202541}, "child": {"skip": 248, "offset": 260, "next": [], "symbols": [{"name": "__kernel_sinf", "hash": "3241a63a98117c6d0315035cef1a4b74d58446bb", "variant": 0, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 666763248}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2426601477}, "child": {"skip": 8, "offset": 20, "next": [{"match": {"value": 610467841}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 608763904, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 152, "offset": 180, "next": [], "symbols": [{"name": "adddate", "hash": "b53491d19b99c9b51c04a6bf08a0a70da89cf724", "variant": 1693737393, "library": "libscf"}]}}], "symbols": []}}, {"match": {"value": 610533375}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 608763904, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 136, "offset": 164, "next": [], "symbols": [{"name": "subdate", "hash": "6d0ad3da37054a3d3655a4a76d4caf4ab73362f1", "variant": 1693737393, "library": "libscf"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604110872}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2426601475}, "child": {"skip": 36, "offset": 48, "next": [], "symbols": [{"name": "addhour", "hash": "3e7d7ddb93ed1281fcd72d090e0486d274ebac75", "variant": 3089788813, "library": "libscf"}]}}], "symbols": []}}, {"match": {"value": 2426601480}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 203008}, "child": {"skip": 12, "offset": 24, "next": [{"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "SyncDCache"}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 10627105}, "child": {"skip": 0, "offset": 32, "next": [], "symbols": [{"name": "sceGpSyncPacket", "hash": "943daeef833309e3442b2cefd945239f9f74368a", "variant": 410409355, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "iSyncDCache"}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 10627105}, "child": {"skip": 0, "offset": 32, "next": [], "symbols": [{"name": "sceGpSyncPacketI", "hash": "943daeef833309e3442b2cefd945239f9f74368a", "variant": 3948609194, "library": "libgp"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604176396}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 10688536}, "child": {"skip": 120, "offset": 132, "next": [], "symbols": [{"name": "_PsceSkSsSTRADPCM_ATick1", "hash": "d376795064ed46289cdc77248581b48a94286ee7", "variant": 1701510088, "library": "libsk"}]}}], "symbols": []}}, {"match": {"value": 12333}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2158100480}, "child": {"skip": 8, "offset": 20, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 202240}, "child": {"skip": 40, "offset": 68, "next": [], "symbols": [{"name": "_get_dir_nest", "hash": "13c6f35e670af9874eb9d43e86d81c027cd05a00", "variant": 0, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 604438575}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 202240}, "child": {"skip": 40, "offset": 68, "next": [], "symbols": [{"name": "_get_dir_nest", "hash": "4e30ed7a6c30b989f66ccc6ac8f3de69a03d9efe", "variant": 0, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604176386}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2359427444}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 272826372}, "child": {"skip": 24, "offset": 40, "next": [], "symbols": [{"name": "sppp_chap_close", "hash": "6128b9e48c34ba75c7219fd984034012b139f901", "variant": 1892224776, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2359427440}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 272826372}, "child": {"skip": 24, "offset": 40, "next": [], "symbols": [{"name": "sppp_pap_close", "hash": "2d2dbeb7309821919513ac4d6f3a497eb685dd47", "variant": 1892224776, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2426535936}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 272629771}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 12333}, "child": {"skip": 48, "offset": 64, "next": [], "symbols": [{"name": "url_encoded_len", "hash": "88a5dfd614a837f75719b4cfc96cf3deca4e730f", "variant": 2744289042, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 608370618}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 136704}, "child": {"skip": 332, "offset": 348, "next": [], "symbols": [{"name": "wkday", "hash": "c75cddc2c3776a44f7f071a050af15d6e50ef022", "variant": 180118793, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 608370623}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 136704}, "child": {"skip": 484, "offset": 500, "next": [], "symbols": [{"name": "month3", "hash": "6faea904c3902eeceb919297d29549586967f9e9", "variant": 180118793, "library": "libhttps")PS2SDB", 8192}, + std::string_view{R"PS2SDB(}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 278921221}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 24, "offset": 36, "next": [], "symbols": [{"name": "EVP_set_pw_prompt", "hash": "61606eea51ccc6c2bb02c20d35997dffe326b9b8", "variant": 3263133682, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 748814344}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 272629768}, "child": {"skip": 40, "offset": 52, "next": [], "symbols": [{"name": "ssl2_get_cipher", "hash": "9742d95367818ddc42773d416890b97cdac5ba71", "variant": 1622982697, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 748814371}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 272629768}, "child": {"skip": 40, "offset": 52, "next": [], "symbols": [{"name": "ssl3_get_cipher", "hash": "423720d5c71ff3ac539a79f4f9f0365ec674b974", "variant": 1622982697, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2357329936}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 2359689244}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2357395476}, "child": {"skip": 16, "offset": 28, "next": [], "symbols": [{"name": "_set_sreg", "hash": "8c030130a877fd6e9d7474a15da8274b6d8acea6", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 65011720}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2896297992}, "child": {"skip": 0, "offset": 12, "next": [], "symbols": [{"name": "_change_addr", "hash": "9590a4359f35fb34d526f1981b3aa3f5994266d2", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 2359492624}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4395043}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 339738644}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 0}, "child": {"skip": 84, "offset": 104, "next": [], "symbols": [{"name": "__mcmp", "hash": "e89184847688df3d8e3e1ed07b18ee1415df0d3c", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 339738643}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4206637}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 202880}, "child": {"skip": 76, "offset": 100, "next": [], "symbols": [{"name": "__mcmp", "hash": "715aee2b9d0a4bf405d8a31c6766c28afc5175d2", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4208685}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 202880}, "child": {"skip": 76, "offset": 100, "next": [], "symbols": [{"name": "__mcmp", "hash": "b52a6810781b34c5e60260a6ed0e043781f3b8cd", "variant": 0, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604176388}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 809631751}, "child": {"skip": 12, "offset": 24, "next": [], "symbols": [{"name": "_scePFontGetColorDepth", "hash": "bafb2606736cf872cf399a00fd5baec92d363b9f", "variant": 0, "library": "libpfont"}]}}], "symbols": []}}, {"match": {"value": 135296}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608305184}, "child": {"skip": 8, "offset": 20, "next": [], "symbols": [{"name": "sceHiPlugTex2DGetClut", "hash": "34afd0d4f3c3a2969803b1d647732a828aca8757", "variant": 0, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 10491949}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2355429384}, "child": {"skip": 16, "offset": 28, "next": [], "symbols": [{"name": "__sceEENetraw_setsockaddr", "hash": "ff1c944aeb76bff75c9d14484352d261ad8be0f5", "variant": 2942176842, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 1413808129}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2894069768}, "child": {"skip": 8, "offset": 20, "next": [], "symbols": [{"name": "sk_set_cmp_func", "hash": "740db277c7fcdc7fdc6b38a9e660b52b459ca247", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 75563012}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 268480}, "child": {"skip": 24, "offset": 32, "next": [{"match": {"value": 2892365828}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 44, "next": [], "symbols": [{"name": "sceSifAddCmdHandler", "hash": "588bf835899ae4b8c7df4a6ca27ed584361811bd", "variant": 389188354, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 65011720}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 2891972608}, "child": {"skip": 0, "offset": 40, "next": [], "symbols": [{"name": "sceSifRemoveCmdHandler", "hash": "17921751767efd11d7f2d03d3577c97fad1f6571", "variant": 389188354, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8392749}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 666763248}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10498093}, "child": {"skip": 8, "offset": 24, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_setlocale_r"}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4204589}, "child": {"skip": 12, "offset": 44, "next": [], "symbols": [{"name": "setlocale", "hash": "fbc95b4fdc11eb9a2ddfb232421a397dc38fddb6", "variant": 4030567539, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_strtod_r"}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4204589}, "child": {"skip": 12, "offset": 44, "next": [], "symbols": [{"name": "strtod", "hash": "fbc95b4fdc11eb9a2ddfb232421a397dc38fddb6", "variant": 2665148680, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_calloc_r"}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4204589}, "child": {"skip": 12, "offset": 44, "next": [], "symbols": [{"name": "calloc", "hash": "fbc95b4fdc11eb9a2ddfb232421a397dc38fddb6", "variant": 3146046055, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_memalign_r"}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4204589}, "child": {"skip": 12, "offset": 44, "next": [], "symbols": [{"name": "memalign", "hash": "fbc95b4fdc11eb9a2ddfb232421a397dc38fddb6", "variant": 2358566638, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_realloc_r"}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4204589}, "child": {"skip": 12, "offset": 44, "next": [], "symbols": [{"name": "realloc", "hash": "fbc95b4fdc11eb9a2ddfb232421a397dc38fddb6", "variant": 3782161863, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_signal_r"}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4204589}, "child": {"skip": 12, "offset": 44, "next": [], "symbols": [{"name": "signal", "hash": "fbc95b4fdc11eb9a2ddfb232421a397dc38fddb6", "variant": 257177222, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_fopen_r"}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4204589}, "child": {"skip": 12, "offset": 44, "next": [], "symbols": [{"name": "fopen", "hash": "fbc95b4fdc11eb9a2ddfb232421a397dc38fddb6", "variant": 120791170, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_findenv_r"}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4204589}, "child": {"skip": 12, "offset": 44, "next": [], "symbols": [{"name": "_findenv", "hash": "fbc95b4fdc11eb9a2ddfb232421a397dc38fddb6", "variant": 4072056318, "library")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 6428705}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2422407168, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 608501728}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 811794434}, "child": {"skip": 8, "offset": 32, "next": [], "symbols": [{"name": "toupper", "hash": "0e26a28c1936aa39e8aff6398b464d094a73e442", "variant": 3118959500, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 608436256}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 811794433}, "child": {"skip": 8, "offset": 32, "next": [], "symbols": [{"name": "tolower", "hash": "80237e8b6a255199eee535eb59a949bb45c74418", "variant": 3118959500, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": "_callback_sceSynthesizerChangePartPitchBend"}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 3292528672}, "child": {"skip": 16, "offset": 28, "next": [], "symbols": [{"name": "ChangePitchBendAndDepth", "hash": "62264f112634e71e29239277af99f70de4347c79", "variant": 3624111402, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 71368719}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 10500141}, "child": {"skip": 108, "offset": 120, "next": [], "symbols": [{"name": "sceSifAddCmdHandler", "hash": "ccb567424bd135b6ee5cbc1e3dae333925b05619", "variant": 1454312578, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 10493997}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "memmove"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4204589}, "child": {"skip": 0, "offset": 16, "next": [], "symbols": [{"name": "bcopy", "hash": "65016b91adae57405a6cd9168df54273b13ca7f6", "variant": 354102455, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "sceVu0CopyMatrix"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4204589}, "child": {"skip": 0, "offset": 16, "next": [], "symbols": [{"name": "scePFontGetScreenMatrix", "hash": "65016b91adae57405a6cd9168df54273b13ca7f6", "variant": 1622213664, "library": "libpfont"}]}}], "symbols": []}}, {"match": {"value": 666763248}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 137344}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 742522888}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 272629768}, "child": {"skip": 56, "offset": 80, "next": [], "symbols": [{"name": "scePadStateIntToStr", "hash": "a0d8d8ddc5febd0fcff84ff8d1665393a5a2d477", "variant": 363397092, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 742522884}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 272629768}, "child": {"skip": 56, "offset": 80, "next": [], "symbols": [{"name": "scePadReqIntToStr", "hash": "c0091500699ecc71f49bcbd0f855e3d6632a9880", "variant": 363397092, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 139324}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 270399}, "child": {"skip": 48, "offset": 60, "next": [], "symbols": [{"name": "isnan", "hash": "5edf2a4c379fba1859b89d08e5c1f97a0bd39f7f", "variant": 0, "library": "libm"}, {"name": "isnan", "hash": "5edf2a4c379fba1859b89d08e5c1f97a0bd39f7f", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4200493}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 202815}, "child": {"skip": 56, "offset": 68, "next": [], "symbols": [{"name": "copysign", "hash": "908edc6aa3cfd0e58485e44842992651e4b9af2a", "variant": 0, "library": "libm"}, {"name": "copysign", "hash": "908edc6aa3cfd0e58485e44842992651e4b9af2a", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 135231}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 337983}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8400941}, "child": {"skip": 52, "offset": 68, "next": [], "symbols": [{"name": "copysign", "hash": "05063ca07881848348f06bf69cb7403b5ff248c2", "variant": 0, "library": "libm"}, {"name": "copysign", "hash": "05063ca07881848348f06bf69cb7403b5ff248c2", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 1006862335}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1007026175}, "child": {"skip": 36, "offset": 52, "next": [], "symbols": [{"name": "fabs", "hash": "f2c0cab3c4e3c74a9f8a05188005e179668ecff1", "variant": 0, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 8398893}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006862335}, "child": {"skip": 36, "offset": 52, "next": [], "symbols": [{"name": "fabs", "hash": "94a6d0462460fb4b867899c61bead68fa74913d7", "variant": 0, "library": "libm"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666763232}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 147516}, "child": {"skip": 996, "offset": 1008, "next": [], "symbols": [{"name": "__ieee754_fmod", "hash": "6ce3f32226dfcf3933fea23af49cb6257e8e0152", "variant": 3868769318, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 71434241}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 135203}, "child": {"skip": 8, "offset": 20, "next": [], "symbols": [{"name": "abs", "hash": "3412514f6aea4ca68b6b5c845e3e6bf4e6eea8e0", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 0}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2156068864}, "child": {"skip": 72, "offset": 84, "next": [], "symbols": [{"name": "strspn", "hash": "bec0974e1aa39dd9bdf44ae05e09c6ec5f39d386", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 10502189}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 13047841}, "child": {"skip": 40, "offset": 52, "next": [], "symbols": [{"name": "_sysbitInit", "hash": "4c17b6ba382616f63ae5637b29bab5225f84c1a4", "variant": 2047102000, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 666763248}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 10493997}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707456}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceVu0CopyVector"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 608502560}, "child": {"skip": 12, "offset": 36, "next": [], "symbols": [{"name": "scePFontGetLocate", "hash": "0621a3ede7ed05eb48523e38f412424ccda8bd9a", "variant": 2472042997, "library": "libpfont"}]}}], "symbols": []}}, {"match": {"value": 4257801}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 12593197}, "child": {"skip": 12, "offset": 36, "next": [], "symbols": [{"name": "apicall", "hash": "3bbb58b3f663a9884fc901d375e6cd05879ffe87", "variant": 0, "library": "libhig"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 137280}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707456}, "child": {"skip": 48, "offset": 64, "next": [{"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "_sceMcCoreReadPage"}}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 72, "next": [], "symbols": [{"name": "_sceMcpReadClust", "hash": "a57365f3d8ab91cb3cabbf0fb898b67852a330f2", "variant": 1536511564, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "_sceMcCoreWritePage"}}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 666697744}, "child": {"skip": 0, "offset": 72, "next": [], "symbols": [{"name": "_sceMcpWriteClust", "hash": "a57365f3d8ab91cb3cabbf0fb898b67852a330f2", "variant": 2346083628, "library")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: "libmc2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604307520}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 604176639}, "child": {"skip": 36, "offset": 48, "next": [], "symbols": [{"name": "clr_nrpm_mod", "hash": "738e2e1f9ae9fff243f9be7b5e938fbf2de93efe", "variant": 190217158, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 2688548942}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "clr_nrpm_mod"}}, "child": {"skip": 4, "offset": 16, "next": [], "symbols": [{"name": "_clr_nrpm_allmod", "hash": "dcff8f2ec9ca30b01efe8996ca52ed689205eb23", "variant": 2625558343, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 2890269520}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2890335064}, "child": {"skip": 8, "offset": 20, "next": [], "symbols": [{"name": "scePFontSetTexMem", "hash": "674cd350060abb9bde24700561fcef2822e934c5", "variant": 1488517125, "library": "libpfont"}]}}], "symbols": []}}, {"match": {"value": 608436956}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2889876144}, "child": {"skip": 24, "offset": 36, "next": [], "symbols": [{"name": "sppp_ipcp_init", "hash": "00b2cbf8a839da42beeab644c92f6f3b433301a3", "variant": 279706634, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 604373024}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 604307465}, "child": {"skip": 52, "offset": 64, "next": [], "symbols": [{"name": "sceHTTPLibSkipWS", "hash": "b71a0f4d9fa4f4f4466de28ebe97769a543a8c6f", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 10500141}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 666763248}, "child": {"skip": 4, "offset": 16, "next": [{"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": "d2i_X509"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 32, "offset": 56, "next": [], "symbols": [{"name": "PEM_read_bio_X509", "hash": "a283e6c894f6641090fa2212a84d8654b86d2863", "variant": 3831951727, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": "d2i_X509_CRL"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 32, "offset": 56, "next": [], "symbols": [{"name": "PEM_read_bio_X509_CRL", "hash": "a283e6c894f6641090fa2212a84d8654b86d2863", "variant": 965038181, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": "d2i_PrivateKey"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 32, "offset": 56, "next": [], "symbols": [{"name": "PEM_read_bio_PrivateKey", "hash": "a283e6c894f6641090fa2212a84d8654b86d2863", "variant": 3722978104, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 12589101}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 666763248}, "child": {"skip": 40, "offset": 52, "next": [], "symbols": [{"name": "X509_digest", "hash": "94332689eb2b302f9265636b6348d2a98211afa9", "variant": 1733335453, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 12587053}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 14686253}, "child": {"skip": 36, "offset": 44, "next": [{"match": {"value": 10285}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 3753836544}, "child": {"skip": 8, "offset": 60, "next": [], "symbols": [{"name": "sceSifSendCmd", "hash": "72105d7d51f52f4bc9c584fb8b8df0e4a8554d4b", "variant": 3495452177, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604307457}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 3753836544}, "child": {"skip": 8, "offset": 60, "next": [], "symbols": [{"name": "isceSifSendCmd", "hash": "1b477088e11451cc9c00c0341f3db8bfb6c68807", "variant": 3495452177, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1008336895}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 926547904}, "child": {"skip": 56, "offset": 64, "next": [{"match": {"value": 623509503}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 0}, "child": {"skip": 104, "offset": 176, "next": [], "symbols": [{"name": "sceSifWriteBackDCache", "hash": "553f39bbf58ae8e3cdad9cc82f436fbbe38a26b2", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 0}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 623509503}, "child": {"skip": 104, "offset": 176, "next": [], "symbols": [{"name": "sceSifWriteBackDCache", "hash": "39c57e8fd5c34adfc03f98e6738fd0e4fd52a5fb", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006829569}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 0}, "child": {"skip": 24, "offset": 32, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 608370688, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 2355429416}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 346292228}, "child": {"skip": 84, "offset": 132, "next": [], "symbols": [{"name": "sceSifRemoveRpcQueue", "hash": "7efd892ba7f0e30b5cf83e5320358aa39057f529", "variant": 805979823, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 610533632}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 6557739}, "child": {"skip": 64, "offset": 112, "next": [], "symbols": [{"name": "new_iob", "hash": "a662abd4a348d8c3d0d44dccb59d6458b4c20209", "variant": 805979823, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2894397440}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 76, "offset": 120, "next": [], "symbols": [{"name": "sceSifSetRpcQueue", "hash": "946f6eeec1258ca55bc1e50d1d27be2774b6f2b5", "variant": 889195310, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 0}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 608370688, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 2355429416}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 346292228}, "child": {"skip": 80, "offset": 132, "next": [], "symbols": [{"name": "sceSifRemoveRpcQueue", "hash": "4c4e5a46e72e5728da91a84cd85ce7a75c13d14f", "variant": 1543935345, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 610533632}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 6557739}, "child": {"skip": 60, "offset": 112, "next": [], "symbols": [{"name": "new_iob", "hash": "a5828992379dc51eee831f7a159b057c2257fba0", "variant": 1543935345, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2894397440}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 20, "offset": 68, "next": [{"match": {"value": 341835779}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 2894069780}, "child": {"skip": 68, "offset": 144, "next": [], "symbols": [{"name": "sceSifSetRpcQueue", "hash": "13b5f84a065bcd1e7549d76df9dc0494c802629b", "variant": 1593880078, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 341835781}, "child": {"skip": 0, "offs)PS2SDB", 8192}, + std::string_view{R"PS2SDB(et": 72, "next": [{"match": {"value": 2894069780}, "child": {"skip": 56, "offset": 132, "next": [], "symbols": [{"name": "sceSifSetRpcQueue", "hash": "e0107598315fb3091108fe14e4a287b45c62c20c", "variant": 1593880078, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2357329928}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 6189}, "child": {"skip": 120, "offset": 164, "next": [], "symbols": [{"name": "_sceRpcGetPacket", "hash": "f1d5cf623729f01da13f2f1352fa9f98a7431de4", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 2894069820}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 2894069816}, "child": {"skip": 40, "offset": 84, "next": [{"match": {"value": 4200493}, "child": {"skip": 0, "offset": 88, "next": [{"match": {"value": 2355232824}, "child": {"skip": 8, "offset": 100, "next": [{"match": {"value": 2355298360}, "child": {"skip": 0, "offset": 104, "next": [{"match": {"value": 2355232824}, "child": {"skip": 36, "offset": 144, "next": [], "symbols": [{"name": "sceSifRegisterRpc", "hash": "c8d9d300b10ec66b8dc559b65b02032011616c6c", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 0}, "child": {"skip": 0, "offset": 104, "next": [{"match": {"value": 2355298360}, "child": {"skip": 40, "offset": 148, "next": [], "symbols": [{"name": "sceSifRegisterRpc", "hash": "00a86665272b7266c806d68a52495e2f20dedcb9", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4204589}, "child": {"skip": 0, "offset": 88, "next": [{"match": {"value": 2359492664}, "child": {"skip": 52, "offset": 144, "next": [], "symbols": [{"name": "sceSifRegisterRpc", "hash": "c019d2a05f902b492c1d7792d6e43b68180a37f7", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2359689224}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 348389380}, "child": {"skip": 80, "offset": 124, "next": [], "symbols": [{"name": "sceSifRemoveRpc", "hash": "acd908aabf6fd0046845554f186a7d7a9ab64f34", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 2357526540}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 1419771907}, "child": {"skip": 36, "offset": 80, "next": [], "symbols": [{"name": "sceSifGetNextRequest", "hash": "ba03daea762887c37ce86c62a62830eba3c071cd", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1007226880}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 1006829569}, "child": {"skip": 124, "offset": 168, "next": [], "symbols": [{"name": "sceMpegInit", "hash": "37cb219a81f8ea0909084130bb95a7b0097208f1", "variant": 703320772, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 1007095808}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 1006829569}, "child": {"skip": 616, "offset": 660, "next": [], "symbols": [{"name": "sceIpuInit", "hash": "e8a3b147c050600164f63767ee55458d627c434a", "variant": 1730965252, "library": "libipu"}]}}], "symbols": []}}, {"match": {"value": 1073897472}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 1039}, "child": {"skip": 56, "offset": 100, "next": [], "symbols": [{"name": "scePcStart", "hash": "ac27023f06d9c0fb1b8d4ea4cfd6d09ac1acb080", "variant": 0, "library": "libpc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2357395472}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829567}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 876806142}, "child": {"skip": 16, "offset": 28, "next": [], "symbols": [{"name": "_sceRpcFreePacket", "hash": "9eb531b872c12ccaf70f9dc9561072fd9b5c90b4", "variant": 0, "library": "libkernl"}, {"name": "_sceRpcFreePacket", "hash": "9eb531b872c12ccaf70f9dc9561072fd9b5c90b4", "variant": 0, "library": "libmrpc"}]}}], "symbols": []}}, {"match": {"value": 274726915}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 0}, "child": {"skip": 16, "offset": 28, "next": [], "symbols": [{"name": "__sceEENettcp_quench", "hash": "3a0be632f06d2b7032d3346050bb89e146f6b014", "variant": 0, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 1348796419}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2424569876}, "child": {"skip": 48, "offset": 60, "next": [], "symbols": [{"name": "BER_ITEM_cmp_tag", "hash": "a83953d3628268aa53ea466f39d60cee04b098a8", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 744620063}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 339738633}, "child": {"skip": 148, "offset": 160, "next": [], "symbols": [{"name": "ber_header_len", "hash": "0c6b6bd80fb4ae64e7b31c8617eefd80d43551ee", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2357526564}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 2357395480}, "child": {"skip": 40, "offset": 48, "next": [], "symbols": [{"name": "_sceRpcGetFPacket", "hash": "7e78ca9317d305835bec988263447ea49825159c", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 2359623720}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 278921231}, "child": {"skip": 68, "offset": 76, "next": [], "symbols": [{"name": "_search_svdata", "hash": "d9d35c0352f7198363a20661b2d40500c3c27627", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 2357526580}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 2359689280}, "child": {"skip": 20, "offset": 28, "next": [{"match": {"value": 2890203196}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2898591760}, "child": {"skip": 104, "offset": 140, "next": [], "symbols": [{"name": "_request_call", "hash": "231b1863be9349ff354be48b6ec85f83a23e98bd", "variant": 684305205, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 2890203192}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2898591760}, "child": {"skip": 104, "offset": 140, "next": [], "symbols": [{"name": "_request_call", "hash": "57f703b281721e0f971665a2007f8fb6b14bdd33", "variant": 684305205, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2359492616}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1007026177}, "child": {"skip": 116, "offset": 124, "next": [], "symbols": [{"name": "sceSifRemoveRpc", "hash": "e6f907492bc09d8b07d0b5cae30ed0330d484acf", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 2357526540}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829569}, "child": {"skip": 68, "offset": 76, "next": [], "symbols": [{"name": "sceSifGetNextRequest", "hash": "381eb40e5f1af87eb329d0808d55bb6bd1eafd3c", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 746717200}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 339738627}, "child": {"skip": 28, "offset": 36, "next": [], "symbols": [{"name": "get_iob", "hash": "afa1c0d2b39cff5a6e107c269dde60c7d7561116", "variant": 234029038, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 666762928}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 4289724480}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290183344}, "child": {"skip": 132, "offset": 144, "next": [{"match": {"value": 268435568}, "child": {"skip": 0, "offset": 148, "next": [{"match": {"value": 876806140}, "child": {"skip": 156, "offset": 308, "next": [{"match": {"value": 1006858239}, "child": {"skip": 0, "offset": 312, "next": [{"match": {"value": 39981091}, "child": {"skip": 328, "offset": 644, "next": [], "symbols": [{"name": "sceOpen", "hash": "0eeb91c23368070e65bc170dc0612064fbd989bb", "variant": 1971144423, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006862335}, "child": {"skip": 0, "offset": 312, "next": [{"match": {"value": 39981091}, "child": {"skip": 328, "offset": 644, "next": [])PS2SDB", 8192}, + std::string_view{R"PS2SDB(, "symbols": [{"name": "sceOpen", "hash": "d28709736440c1c7e5ed9143752b45e987049d8b", "variant": 1971144423, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006833663}, "child": {"skip": 0, "offset": 312, "next": [{"match": {"value": 39981091}, "child": {"skip": 328, "offset": 644, "next": [], "symbols": [{"name": "sceOpen", "hash": "09155ec62a755b8f77d8408da29cd2da9cf1e538", "variant": 1971144423, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 268435571}, "child": {"skip": 0, "offset": 148, "next": [{"match": {"value": 876806140}, "child": {"skip": 504, "offset": 656, "next": [], "symbols": [{"name": "sceOpen", "hash": "9cf5b37ca34771f347e6782e76c709cf52e14fe9", "variant": 3778579370, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289790032}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290183344}, "child": {"skip": 620, "offset": 632, "next": [], "symbols": [{"name": "sceOpen", "hash": "d5c4fdd00527bc15afc4e2ae489206142b12d611", "variant": 4214082220, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176412}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855776}, "child": {"skip": 112, "offset": 124, "next": [{"match": {"value": 639959072}, "child": {"skip": 0, "offset": 128, "next": [{"match": {"value": 616955905}, "child": {"skip": 92, "offset": 224, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "scePrintf"}}, "child": {"skip": 0, "offset": 228, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 44, "offset": 276, "next": [], "symbols": [{"name": "_send_to_iop", "hash": "1e0d692a0985b7ce22c3f41b1832d42e7ec4bf7e", "variant": 335001719, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "printf"}}, "child": {"skip": 0, "offset": 228, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 44, "offset": 276, "next": [], "symbols": [{"name": "_send_to_iop", "hash": "1e0d692a0985b7ce22c3f41b1832d42e7ec4bf7e", "variant": 3559456870, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 639959071}, "child": {"skip": 0, "offset": 128, "next": [{"match": {"value": 616955905}, "child": {"skip": 144, "offset": 276, "next": [], "symbols": [{"name": "_send_to_iop", "hash": "8b79844e7c044606c8ebc6a448050d81d0bb065c", "variant": 335001719, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290183456}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290052352}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8435757}, "child": {"skip": 744, "offset": 760, "next": [], "symbols": [{"name": "sceMpegDemuxPssRing", "hash": "ae8684323183a036168b22c164d0e1bb1e89a3cf", "variant": 4275521158, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 4289986800}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8435757}, "child": {"skip": 736, "offset": 752, "next": [], "symbols": [{"name": "sceMpegDemuxPssRing", "hash": "8f7580bf4a4ac8c90cab4b4c18e35cca22688060", "variant": 779059073, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290642224}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290117904}, "child": {"skip": 704, "offset": 716, "next": [], "symbols": [{"name": "sceMpegDemuxPssRing", "hash": "03df840afe8f6571729fadede842a2477b8c38ed", "variant": 260114932, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 15208481}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290642224}, "child": {"skip": 980, "offset": 992, "next": [], "symbols": [{"name": "sceMpegDemuxPssRing", "hash": "b757490ff30059d7a6a481fb522c9dc3c80308ab", "variant": 697849587, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 10285}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855744}, "child": {"skip": 548, "offset": 560, "next": [], "symbols": [{"name": "__sceEENetif_detach", "hash": "5084bcb571f3ac21192122e28e40185700d0d598", "variant": 2845354354, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289003800}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290052240}, "child": {"skip": 1880, "offset": 1892, "next": [], "symbols": [{"name": "__sceEENetroute_output", "hash": "0a3bf9f8f7bdfe0777f7c040a736fda305d013bd", "variant": 2845337672, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 604373160}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855792}, "child": {"skip": 352, "offset": 364, "next": [], "symbols": [{"name": "_sce_eenet_sppp_config_address", "hash": "84f1c90d07b0140eaaaaffbe68b9d900196412eb", "variant": 2549151173, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289986864}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289921312}, "child": {"skip": 692, "offset": 704, "next": [], "symbols": [{"name": "ssl_get_prev_session", "hash": "b86271271bc69ae7e37fcaf7ca79071398fee348", "variant": 2612693294, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604176383}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2892103680, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 8, "offset": 20, "next": [], "symbols": [{"name": "sceSifLoadFileReset", "hash": "4fbf6c92aa9ae0238022b1fe26ffb35e12dba792", "variant": 3135353075, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 666763184}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4460586}, "child": {"skip": 120, "offset": 132, "next": [], "symbols": [{"name": "mceDecEccAll", "hash": "5d5c7fe136d585599bf00fd5204729e915f8a4d6", "variant": 234447765, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 65011720}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4460586}, "child": {"skip": 0, "offset": 12, "next": [], "symbols": [{"name": "sceCccIsValidUCS4", "hash": "3edb30666a55c9207919693a1d802c8c1d6f8aed", "variant": 0, "library": "libccc"}, {"name": "sceCccIsValidUTF8", "hash": "3edb30666a55c9207919693a1d802c8c1d6f8aed", "variant": 0, "library": "libccc"}]}}], "symbols": []}}, {"match": {"value": 666763104}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4526122}, "child": {"skip": 292, "offset": 304, "next": [], "symbols": [{"name": "_sceMcFatWriteFatData", "hash": "c6e8b2df38608cef95b39810b1a2a1cb2b8a01ad", "variant": 355347757, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 135228}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 8523812}, "child": {"skip": 212, "offset": 224, "next": [], "symbols": [{"name": "BN_num_bits_word", "hash": "82286fc95613ed3b36040c2853e9cf89432cb162", "variant": 3380296415, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 666763168}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4526122}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 614662207}, "child": {"skip": 260, "offset": 276, "next": [], "symbols": [{"name": "BN_set_bit", "hash": "66ce17009c996b645d8d584f286f194b49e83eae", "variant": 12606325, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 4591658}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 616759359}, "child": {"skip": 364, "offset": 380, "next": [], "symbols": [{"name": "BN_rshift", "hash": "34c3318e71eec0f10a6cb46b35e0db83adfbc414", "variant": 710751595, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666763248}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4526122}, "child": {"skip": 132, "offset": 144, "next": [], "symbols": [{"name": "BN_mask_bits", "hash": "d4e2bd88e6bc)PS2SDB", 8192}, + std::string_view{R"PS2SDB(655ab8204689cec5c08dd8310c7a", "variant": 4071908866, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10498093}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 666763248}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707456}, "child": {"skip": 24, "offset": 40, "next": [], "symbols": [{"name": "sceSifLoadElf", "hash": "3f54f74d35af8d283604adee724f13d9fe2989fe", "variant": 1355069772, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 8398893}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707456}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceMc2Sync2"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 604241921}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 3753836544}, "child": {"skip": 8, "offset": 36, "next": [], "symbols": [{"name": "sceMc2CheckAsync", "hash": "bb693496fc2cc4f1fcc812b43a42491f53c839c9", "variant": 3109928733, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 8237}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 3753836544}, "child": {"skip": 8, "offset": 36, "next": [], "symbols": [{"name": "sceMc2Sync", "hash": "174c3b1a5ec67185ede817d2ea879312961fc4af", "variant": 3109928733, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "routeinfo"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 604241922}, "child": {"skip": 12, "offset": 36, "next": [], "symbols": [{"name": "sceEENetGetRouteinfo", "hash": "1c24e7e3e47fee14f7b255d2db8338d92dbfae5b", "variant": 1628049475, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666762992}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 8398893}, "child": {"skip": 32, "offset": 44, "next": [], "symbols": [{"name": "_Error1", "hash": "28391ec865dacbd8d26ed4a1b7287d6b404515e1", "variant": 1529108447, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 8405037}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2428633096}, "child": {"skip": 76, "offset": 88, "next": [], "symbols": [{"name": "sceGpAddPacket2", "hash": "8852e0f7d048e0e0e448db10b68fb088421a779a", "variant": 0, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 8402989}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2495807492}, "child": {"skip": 112, "offset": 124, "next": [], "symbols": [{"name": "sceGpSetLoadClut", "hash": "813c1afeb4eeaffd976d0d72ba0b649781efe3a6", "variant": 0, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 281018416}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 0}, "child": {"skip": 196, "offset": 208, "next": [], "symbols": [{"name": "__sceEENetsbappendrecord", "hash": "c6a41e1c1ee4601ce405c7e7273bc25ffee204b7", "variant": 1465240840, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 281018413}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 612892712}, "child": {"skip": 184, "offset": 196, "next": [], "symbols": [{"name": "__sceEENetsbinsertoob", "hash": "cbd4ef2b783d5bbe69dc7c7240fbf0c17b60ab49", "variant": 2627524412, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604176474}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "Copy", "hash": "2641980b293b45b1d8ba8e6e18eea7f4acba5228", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 405634}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 281018378}, "child": {"skip": 48, "offset": 56, "next": [], "symbols": [{"name": "kCopy", "hash": "417d769e1ff2b415ec14548d2aeb1e6fe40e685f", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 281018377}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 14381}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2426601472}, "child": {"skip": 36, "offset": 48, "next": [], "symbols": [{"name": "kCopy", "hash": "0c0e0b697171cf1f8db6c285641d95381c8051f9", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 815988991}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2424438784}, "child": {"skip": 40, "offset": 52, "next": [], "symbols": [{"name": "memchr", "hash": "f7c51be71065b5954e3dcf5d1a293266212b0797", "variant": 0, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604176469}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "PutTLBEntry", "hash": "790c798c0dbf63183ce5df5a6d5267a634f6d3e6", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604241834}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "iSetTLBEntry", "hash": "223b7de64671ae6bcd4545a40e87c917f0c5e112", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604241833}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "iGetTLBEntry", "hash": "b51deb2cbfcf3338557fab6e25e142ee49bf4e52", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 604176472}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "ProbeTLBEntry", "hash": "0f6f5681cd2f95f469b2ba676fffac6ac2dc9639", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1073831936}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 605749220}, "child": {"skip": 236, "offset": 244, "next": [], "symbols": [{"name": "_kExitTLBHandler", "hash": "7b327e6e91ddc6fb8366741738280fb35fec5164", "variant": 1900043274, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1073963008}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006764033}, "child": {"skip": 4, "offset": 12, "next": [{"match": {"value": 274726923}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 204843}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 0}, "child": {"skip": 48, "offset": 72, "next": [], "symbols": [{"name": "DIntr", "hash": "d1995a59d6f99d37a22eea96f5651af6bfa0fba5", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1007026177}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 0}, "child": {"skip": 88, "offset": 112, "next": [], "symbols": [{"name": "SetT2", "hash": "047e9f89190978e83869e292ad475621d359f3eb", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1007091713}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 0}, "child": {"skip": 96, "offset": 120, "next": [], "symbols": [{"name": "scePcStart", "hash": "9154806256392e47e822b8a5276f3e5dfc68b27b", "variant": 0, "library": "libpc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 274726925}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 204843}, "child": {"skip": 52, "offset": 72, "next": [{"match": {"value": 8392749}, "child": {"skip": 0, "offset": 76, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 84, "next": [], "symbols": [{"name": "DIntr", "hash": "80f1b150e1adf2ed7eae8d6ff3133db2f90fdd9a", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 65011720}, "child": {"skip": 0, "offset": 76, "next": [{"match": {"value": 8392749}, "child": {"skip": 0, "offset": 80, "next": [], "symbols": [{"name": "DIntr", "hash": "d1bfd6de1bb2db94bccb79aa5eecc9d90460e66b", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}], "symbols": [])PS2SDB", 8192}, + std::string_view{R"PS2SDB(}}], "symbols": []}}, {"match": {"value": 274726921}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1007091713}, "child": {"skip": 92, "offset": 112, "next": [], "symbols": [{"name": "scePcStart", "hash": "8fdd9ca3620509f0fb206e9c10ee2553b057638b", "variant": 0, "library": "libpc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604176515}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "FindAddress", "hash": "2128efeacbdbf591b7d338da96d05884fbcb9815", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 266882}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 75497477}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 141696}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2359492616}, "child": {"skip": 56, "offset": 72, "next": [], "symbols": [{"name": "iGetTimerBaseTime", "hash": "3f2e4380b042b3e55c91edc5ccc79ad1422001b1", "variant": 0, "library": "libkernl"}, {"name": "isceTimerGetBaseTime", "hash": "3f2e4380b042b3e55c91edc5ccc79ad1422001b1", "variant": 0, "library": "libtimer"}]}}], "symbols": []}}, {"match": {"value": 143744}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2361589768}, "child": {"skip": 8, "offset": 24, "next": [{"match": {"value": 1007353856, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 1006797062}, "child": {"skip": 604, "offset": 636, "next": [], "symbols": [{"name": "isceTimerStartCounter", "hash": "31d25d61654e0b9e4ab13081b5baf7acd7c24347", "variant": 3278805958, "library": "libtimer"}]}}], "symbols": []}}, {"match": {"value": 1007091712, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 1006797062}, "child": {"skip": 564, "offset": 596, "next": [], "symbols": [{"name": "isceTimerStopCounter", "hash": "b621ea3b29473d56991bce0d5a4050f15fa58cab", "variant": 2577839778, "library": "libtimer"}]}}], "symbols": []}}, {"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 1006797062}, "child": {"skip": 136, "offset": 168, "next": [], "symbols": [{"name": "isceTimerFreeCounter", "hash": "080008422a1ec9c399b076d0274750aa8f05fa2f", "variant": 930132468, "library": "libtimer"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 147840}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2365784072}, "child": {"skip": 716, "offset": 732, "next": [], "symbols": [{"name": "isceTimerSetHandler", "hash": "02691994d8b85eaa8e6bf4f8aaf5c7721a0b7408", "variant": 1376263477, "library": "libtimer"}]}}], "symbols": []}}, {"match": {"value": 145792}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2363686920}, "child": {"skip": 120, "offset": 136, "next": [], "symbols": [{"name": "isceTimerGetCount", "hash": "c1ddc9df4ad6332c50678c8166ef1f835ddaebac", "variant": 238406597, "library": "libtimer"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006718220}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 874618880}, "child": {"skip": 44, "offset": 52, "next": [], "symbols": [{"name": "TimerFreq2BusClock", "hash": "ea630b1b8a5e1d94131b5d0507ac95c980c46a17", "variant": 984727703, "library": "libkernl"}, {"name": "sceTimerFreq2BusClock", "hash": "ea630b1b8a5e1d94131b5d0507ac95c980c46a17", "variant": 984727703, "library": "libtimer"}]}}], "symbols": []}}, {"match": {"value": 75694088}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 76, "offset": 84, "next": [], "symbols": [{"name": "sceSifRemoveRebootNotifyHandler", "hash": "1934c1595980076f2a267519d7152ba0884fcfba", "variant": 551893975, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 1006772224}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 2407727104, "relocation": {"type": "MIPS_GPREL16", "symbol": ".sbss"}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 274726915}, "child": {"skip": 16, "offset": 28, "next": [{"match": {"value": 1348468740}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2407727104, "relocation": {"type": "MIPS_GPREL16", "symbol": ".sbss"}}, "child": {"skip": 36, "offset": 72, "next": [], "symbols": [{"name": "mceGetInfoApdx", "hash": "d52ad8f039782a7b58c95acbd91cf3a949386467", "variant": 713762296, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 274726915}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 0}, "child": {"skip": 16, "offset": 52, "next": [], "symbols": [{"name": "mceGetInfoApdx", "hash": "39cc793e892340b410640756d45573722e74d15f", "variant": 272471361, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8532005}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2361524224}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1480589327}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2361524228}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2361851912}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 406847499}, "child": {"skip": 116, "offset": 144, "next": [], "symbols": [{"name": "fs_read_intr", "hash": "df1e2a846f94861fb4b0e8569139f0cb32515d52", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 2361917448}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 406847499}, "child": {"skip": 116, "offset": 144, "next": [], "symbols": [{"name": "fs_read_intr", "hash": "c89f46b67abdd2ec970fdb4260a5e88ce0783bff", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 406847506}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1007222784, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 132, "offset": 152, "next": [{"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "_sceCd_cd_callback"}}, "child": {"skip": 0, "offset": 156, "next": [{"match": {"value": 623116288, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 160, "next": [], "symbols": [{"name": "_sceCd_cd_read_intr", "hash": "cce180cc59edd738f2e7095fda0c3984f832c800", "variant": 199286741, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "cd_callback"}}, "child": {"skip": 0, "offset": 156, "next": [{"match": {"value": 623116288, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 160, "next": [], "symbols": [{"name": "cd_read_intr", "hash": "cce180cc59edd738f2e7095fda0c3984f832c800", "variant": 2610858330, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2361589760}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 408944656}, "child": {"skip": 136, "offset": 152, "next": [], "symbols": [{"name": "cd_read_intr", "hash": "58396080f16cef08281cf31c02e065e5aad30703", "variant": 340939147, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8527909}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2357329920}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1346371599}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2357329924}, "child": {"skip": 124, "offset": 144, "next": [], "symbols": [{"name": "mceIntrReadFixAlign", "hash": "7180ddaa5f932c72361ee1137153aa6fac7cebf6", "variant": 0, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 272629776}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1007157248, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 132, "offset": 152, "next": [], "symbols": [{"name)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": "mceIntrReadFixAlign", "hash": "6f4784ebfcdb5213f4263b42a55427bf6b519ab4", "variant": 3958713109, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10627109}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2894397440}, "child": {"skip": 60, "offset": 72, "next": [], "symbols": [{"name": "setupDma", "hash": "bd0bd2cba226b9a88b1b5be14933efa933c78a4a", "variant": 0, "library": "liblout"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006837760}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 8597541}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2361917440}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1493172241}, "child": {"skip": 144, "offset": 160, "next": [], "symbols": [{"name": "fs_read_intr", "hash": "946dcbb7045e0f006ad584ce378c5839a082e15d", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 2361982976}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 421527568}, "child": {"skip": 144, "offset": 160, "next": [], "symbols": [{"name": "cd_read_intr", "hash": "ca282eecbe859408ada99a40279b49f118c43a27", "variant": 3162694359, "library": "libcdvd"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8593445}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2357329920}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 272629778}, "child": {"skip": 160, "offset": 176, "next": [], "symbols": [{"name": "mceIntrReadFixAlign", "hash": "42d5f55dbf4b78c47c65ca28ec4e79cc5f156ba2", "variant": 418751800, "library": "libmc"}]}}], "symbols": []}}, {"match": {"value": 2357657600}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1356857359}, "child": {"skip": 128, "offset": 144, "next": [], "symbols": [{"name": "mceIntrReadFixAlign", "hash": "bc985fef8f7e8ccf8d028fb222a1d47ff3a7a149", "variant": 0, "library": "libmc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666762976}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707728}, "child": {"skip": 144, "offset": 156, "next": [], "symbols": [{"name": "_isOutSizeOK", "hash": "40139b92869ea9f5d67c28459e45c73c1995a515", "variant": 203062176, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2407661568, "relocation": {"type": "MIPS_GPREL16", "symbol": "_theSceMpeg"}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707728}, "child": {"skip": 140, "offset": 152, "next": [], "symbols": [{"name": "_isOutSizeOK", "hash": "651c6008fe41a65e2fb0e6bbb78e3e2ccb86f294", "variant": 56680756, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 4290642176}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 664928287}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290117856}, "child": {"skip": 3332, "offset": 3348, "next": [], "symbols": [{"name": "_sceSnprintf", "hash": "c32f02b2f05c60e2a03026f4bf9c817a9c0b73cb", "variant": 1786410161, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 4289724544}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 12644397}, "child": {"skip": 232, "offset": 248, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "sceGpGetNextPacket"}}, "child": {"skip": 0, "offset": 252, "next": [{"match": {"value": 651558913}, "child": {"skip": 592, "offset": 848, "next": [], "symbols": [{"name": "sceGpPrintChain", "hash": "d904da07437aec0b9c1bc701951aec42644a2442", "variant": 421248628, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": ""}}, "child": {"skip": 0, "offset": 252, "next": [{"match": {"value": 651558913}, "child": {"skip": 592, "offset": 848, "next": [], "symbols": [{"name": "sceGpPrintChain", "hash": "d904da07437aec0b9c1bc701951aec42644a2442", "variant": 96303989, "library": "libgp"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724672}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 8421421}, "child": {"skip": 40, "offset": 52, "next": [], "symbols": [{"name": "_Error1", "hash": "b65cbd3a472567d637b81e5ef4f624d19b26979c", "variant": 1478651040, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 12597293}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724672}, "child": {"skip": 52, "offset": 64, "next": [], "symbols": [{"name": "_sceMpegError1", "hash": "3589c71a4c7330552af413314e0cb0788a39176f", "variant": 3706067088, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 604176386}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290117760}, "child": {"skip": 820, "offset": 832, "next": [], "symbols": [{"name": "__sceEENetrip_input", "hash": "ee13e881cd995a7489bcd59f3ea5e4e032bc3db9", "variant": 1316823269, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289790112}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707728}, "child": {"skip": 1092, "offset": 1104, "next": [], "symbols": [{"name": "pppctl_thread", "hash": "efb576a7623c7ef6593b869b5734a435369e6996", "variant": 1893174538, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2359492608}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 341835779}, "child": {"skip": 80, "offset": 88, "next": [], "symbols": [{"name": "snprintf_char", "hash": "a6053b8c0e1ed2a4ff7a980702c75e107122e5a0", "variant": 0, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 666762688}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 4289790480}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289856032}, "child": {"skip": 188, "offset": 200, "next": [], "symbols": [{"name": "sceSifSetDmaInternal", "hash": "58101b656fc454af0a75223ba0c036e8b964a597", "variant": 1872522163, "library": "libkernl"}]}}], "symbols": []}}, {"match": {"value": 4289724928}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290708024}, "child": {"skip": 756, "offset": 768, "next": [], "symbols": [{"name": "basic_thread", "hash": "eb04c53cf9df39e83d5d9a89035416ccd22ae2af", "variant": 2523939133, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666762896}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604176412}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289986880}, "child": {"skip": 132, "offset": 144, "next": [{"match": {"value": 639959072}, "child": {"skip": 0, "offset": 148, "next": [{"match": {"value": 811728897}, "child": {"skip": 152, "offset": 304, "next": [], "symbols": [{"name": "_send_to_iop", "hash": "a3140e87c2ac8f53c0b5e459ba2f1f7ba17d5a9e", "variant": 2645814579, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 639959056}, "child": {"skip": 0, "offset": 148, "next": [{"match": {"value": 811728897}, "child": {"skip": 152, "offset": 304, "next": [], "symbols": [{"name": "_send_to_iop", "hash": "a58271224f5cc2d36bfc0d033d6178a6fc85eb1c", "variant": 2645814579, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289986832}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724624}, "child": {"skip": 3008, "offset": 3020, "next": [], "symbols": [{"name": "_vfiprintf_r", "hash": "074d1841592a59c751627a6dc3632d1e325952e9", "variant": 3446407782, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4289921344}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855792}, "child": {"skip": 484, "offset": 496, "next": [], "symbols": [{"name": "__sceEENetlooutput", "hash": "8284a007513061bdd0465b5b09c46c1c0fccbe26", "variant": 255468508, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 604110868}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289134920}, "child": {"skip": 3040, "offset": 3052,)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "next": [], "symbols": [{"name": "__sceEENetip_output", "hash": "5dad48585cc478083e3a6973316a01478e519acb", "variant": 4140105569, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289986880}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289921328}, "child": {"skip": 1272, "offset": 1284, "next": [], "symbols": [{"name": "_sce_eenet_dhclient_make_decline", "hash": "f0e0bf9d6aa9d06b841bef019787db4ac600e459", "variant": 2086352444, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4290117968}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290052416}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 12628013}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289986864}, "child": {"skip": 220, "offset": 240, "next": [], "symbols": [{"name": "OP_decode", "hash": "964e3c6131da9e051b3fc17750af79498f93a267", "variant": 3382242699, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 18919469}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289986864}, "child": {"skip": 220, "offset": 240, "next": [], "symbols": [{"name": "OP_encode", "hash": "14e3bcb2282d81fc25a8e92807e0b54e0a764112", "variant": 3499765312, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10285}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289921360}, "child": {"skip": 180, "offset": 192, "next": [], "symbols": [{"name": "X509_NAME_hash", "hash": "cfa0ac5b576c02bf2924968b6ac486b15f1d0800", "variant": 462139617, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604110944}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604373376}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 10627096}, "child": {"skip": 100, "offset": 112, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "kprintf"}}, "child": {"skip": 0, "offset": 116, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 12, "offset": 132, "next": [], "symbols": [{"name": "_send_to_iop", "hash": "6c4661e72b14a72a2a1ae3d2e3159f6782d4e1cc", "variant": 2022450417, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "printf"}}, "child": {"skip": 0, "offset": 116, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 12, "offset": 132, "next": [], "symbols": [{"name": "_send_to_iop", "hash": "6c4661e72b14a72a2a1ae3d2e3159f6782d4e1cc", "variant": 942259460, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604373760}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 10627096}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1887844376}, "child": {"skip": 116, "offset": 132, "next": [], "symbols": [{"name": "_send_to_iop", "hash": "d0c52157ef95a36e1a613495ee672975a472f364", "variant": 942259460, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 10623000}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1887838232}, "child": {"skip": 64, "offset": 80, "next": [{"match": {"value": 33689633}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 3752853504}, "child": {"skip": 8, "offset": 96, "next": [], "symbols": [{"name": "scePadGetDmaStr", "hash": "3da32626da23ddbcafaf566c4cddc2ebbae75482", "variant": 1376198969, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 33718305}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 2449604721}, "child": {"skip": 12, "offset": 100, "next": [], "symbols": [{"name": "scePadGetReqState", "hash": "03ff25101a65817d11191ef92b3f6cf16df266a0", "variant": 1376198969, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604176768}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 10627096}, "child": {"skip": 84, "offset": 96, "next": [], "symbols": [{"name": "scePadGetDmaStr", "hash": "af684aa27c6264b0d377f1c8969571fb5a4997d5", "variant": 1721385906, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 604177152}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 10627096}, "child": {"skip": 84, "offset": 96, "next": [], "symbols": [{"name": "scePadGetDmaStr", "hash": "01f2d8eb0aec49e05bde63d53e81008d80cd42f2", "variant": 1721385906, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 604439296}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 10623000}, "child": {"skip": 4, "offset": 16, "next": [{"match": {"value": 666763200}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 116, "offset": 140, "next": [], "symbols": [{"name": "scePadRead", "hash": "030dd87665c6638b2ebb129ac5a2a14dc550b845", "variant": 478911531, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 666763216}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 92, "offset": 116, "next": [], "symbols": [{"name": "scePadSetReqState", "hash": "710bdc860c593c2340e11c4201e86d3004978f52", "variant": 2424698803, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8402989}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 820510727}, "child": {"skip": 612, "offset": 624, "next": [], "symbols": [{"name": "sceGpChkPacketSize", "hash": "ecdc311a39f7e70310135b393aead6ec23bd7abd", "variant": 3769889568, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 604176496}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 604241948}, "child": {"skip": 8, "offset": 20, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 666763200}, "child": {"skip": 156, "offset": 184, "next": [], "symbols": [{"name": "scePadPortClose", "hash": "525759a7f2cd55e6cd6ab7570d405644a409922a", "variant": 828798755, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 666763216}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 96, "offset": 124, "next": [], "symbols": [{"name": "scePadRead", "hash": "1cb63223ed2130c067d44d76a4e07131ff90d8b2", "variant": 3669122738, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 666763104}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 88, "offset": 116, "next": [], "symbols": [{"name": "scePadRead", "hash": "11312357a9bce1c03c0a81262df6fb81a893307e", "variant": 3652478413, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 666763232}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 72, "offset": 100, "next": [], "symbols": [{"name": "scePadSetReqState", "hash": "4efa921a0181aba9f314429fca8d0c63ebb8d3fa", "variant": 2181189095, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604176768}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 604242016}, "child": {"skip": 168, "offset": 180, "next": [], "symbols": [{"name": "scePadPortClose", "hash": "53ceab8b9a125c3347e580987464b0b353d64cf9", "variant": 1451588828, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 604110944}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 604242304}, "child": {"skip": 8, "offset": 20, "next": [{"match": {"value": 666763216}, "child":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( {"skip": 0, "offset": 24, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 96, "offset": 124, "next": [], "symbols": [{"name": "scePadRead", "hash": "8bf1e39bb6be6bf2e5f46e2d9433333a31b49715", "variant": 3669122738, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 666763232}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 72, "offset": 100, "next": [], "symbols": [{"name": "scePadSetReqState", "hash": "a441f292e239a3cc96b170550480ae5376718d1d", "variant": 2181189095, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10960933}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 822214663}, "child": {"skip": 244, "offset": 256, "next": [{"match": {"value": 610467841}, "child": {"skip": 0, "offset": 260, "next": [{"match": {"value": 339804154}, "child": {"skip": 12, "offset": 276, "next": [], "symbols": [{"name": "strcpy", "hash": "a67ee1d46b72d84bde3a83b54517a45c76939e12", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 0}, "child": {"skip": 0, "offset": 260, "next": [{"match": {"value": 339804154}, "child": {"skip": 12, "offset": 276, "next": [], "symbols": [{"name": "strcpy", "hash": "f09c54cbcbc52798a46969da523e6e2cddd3debb", "variant": 0, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 340031}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006927871}, "child": {"skip": 56, "offset": 68, "next": [], "symbols": [{"name": "copysign", "hash": "82cd527db5c186f36204e7ca91c2fea962bc42dd", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 604700676}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2364080500}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 604766210}, "child": {"skip": 676, "offset": 692, "next": [], "symbols": [{"name": "_updateRefImage", "hash": "6de1f3221d5f004c59336b050e200d2fd9ae3c4d", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2364080524}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 604766210}, "child": {"skip": 676, "offset": 692, "next": [], "symbols": [{"name": "_updateRefImage", "hash": "4182e898d0d4a432f61806a50c2f2dffb2cc60f5", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2364080516}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 604766210}, "child": {"skip": 676, "offset": 692, "next": [], "symbols": [{"name": "_updateRefImage", "hash": "d70c2a878fe9a26f82cdd276913b3aaaa95b8b8f", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 338112}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 3705798680}, "child": {"skip": 72, "offset": 84, "next": [], "symbols": [{"name": "_sysbitJump", "hash": "19a4f22c5fa5a2b6165140a927cd08b2474c358a", "variant": 2647622752, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 750911547}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 272629784}, "child": {"skip": 32, "offset": 44, "next": [{"match": {"value": 604307464}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 604373000}, "child": {"skip": 128, "offset": 180, "next": [], "symbols": [{"name": "sceHiGsBlockSize", "hash": "0ba2b281a65e4391b9467276c1a1567cc9a318cd", "variant": 2694102125, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 604373056}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 604241952}, "child": {"skip": 128, "offset": 180, "next": [], "symbols": [{"name": "sceHiGsPageSize", "hash": "7ffe357d76ef370e1679712f02513b196fe6272a", "variant": 2694102125, "library": "libhig"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2363621388}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 339738627}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006796799}, "child": {"skip": 92, "offset": 108, "next": [], "symbols": [{"name": "_buf_set_next", "hash": "5a5e3d2b3cf8b2f14b8f680d6af6f476eef4be95", "variant": 1132057710, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 1413480451}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2363883528}, "child": {"skip": 8, "offset": 24, "next": [{"match": {"value": 1006858240}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 64, "offset": 96, "next": [], "symbols": [{"name": "_buf_set_end", "hash": "589923927e7b3dd9affd785864c147f28cfd3ac9", "variant": 263596168, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 1006854144}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 64, "offset": 96, "next": [], "symbols": [{"name": "_buf_set_ret", "hash": "80d355b27057c3fdb2812d7996087bc53c81de6d", "variant": 263596168, "library": "libhig"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 815923455}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 272629767}, "child": {"skip": 120, "offset": 132, "next": [], "symbols": [{"name": "sceHiGsCtxSetHalfOffset", "hash": "86daa93832c6a325058ad23a0c0644fb087e6b0c", "variant": 0, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 748814341}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 619184144}, "child": {"skip": 236, "offset": 248, "next": [], "symbols": [{"name": "sceHiGsCtxSetClearMode", "hash": "014a7d9bf97504cb0d33bb1fa61791e0843efce2", "variant": 3398703437, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 1006792704}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2364014604}, "child": {"skip": 272, "offset": 284, "next": [], "symbols": [{"name": "sceGpResetChainRev", "hash": "47750c5f2a0b4a2b2c3acc328ecbd6b30839080c", "variant": 0, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 2359558152}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 75563014}, "child": {"skip": 48, "offset": 60, "next": [], "symbols": [{"name": "sceGpRemoveNextChain", "hash": "fe88633bbc544e82aa6a33c9e024961658760654", "variant": 0, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 2363752456}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 75563015}, "child": {"skip": 148, "offset": 160, "next": [], "symbols": [{"name": "sceGpSetEndLevel", "hash": "7ce3d64a4b607e1025f9d5842a0295ccc462d81e", "variant": 0, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 604119056}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 604242308}, "child": {"skip": 308, "offset": 320, "next": [], "symbols": [{"name": "_sceMcpReadUserClustOnCache", "hash": "dac7a4748054902404c706907933b48190aea77a", "variant": 2136977442, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 283115562}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 172, "offset": 184, "next": [], "symbols": [{"name": "ifree", "hash": "2b08f7301f58d5d969a2f46c97da006cdb7589c7", "variant": 1411620600, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 283115613}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 10502189}, "child": {"skip": 376, "offset": 388, "next": [], "symbols": [{"name": "sceEENetMAdj", "hash": "319a58468d5122137777b01883a185be7b7d90df", "variant": 0, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2428698624}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2430730240}, "child": {"skip": 116, "offset": 128, "next": [], "symbols": [{"name": "__sceEENetrt_maskedcopy", "hash": "bcb48184ed23282df84b8fbe4ea2fabf06d92094", "variant": 3286113802, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( 16429}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 278921229}, "child": {"skip": 60, "offset": 72, "next": [], "symbols": [{"name": "url_encoded_lenN", "hash": "f76f56fbb779eb6d15514280098e21bde18d966c", "variant": 2744289042, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 10504237}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 12603437}, "child": {"skip": 344, "offset": 356, "next": [], "symbols": [{"name": "EVP_EncodeBlock", "hash": "4b7a4971e99e4559ed1f0d463e282b2649728db3", "variant": 1256825404, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2363621424}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 272629782}, "child": {"skip": 96, "offset": 108, "next": [], "symbols": [{"name": "op_pop", "hash": "047fc414d8d72a84c20b66125ee502aae8b9c00e", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2363686912}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 274726917}, "child": {"skip": 120, "offset": 132, "next": [], "symbols": [{"name": "sk_delete", "hash": "704547144a31732ac95e3334c40813ca81a4f01b", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10512429}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604307457}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 8413229}, "child": {"skip": 180, "offset": 192, "next": [], "symbols": [{"name": "scePadPortClose", "hash": "7ccfb99cb635535ac12219986b609acc9548f05a", "variant": 3620738909, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 295698482}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 604569599}, "child": {"skip": 204, "offset": 216, "next": [], "symbols": [{"name": "old_find_exception_handler", "hash": "ae2272e276026c5c40a139576ffc0c18db241694", "variant": 0, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604110876}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 8527896}, "child": {"skip": 48, "offset": 60, "next": [], "symbols": [{"name": "_sceMcCoreSetCardSpec", "hash": "5edfd6598c9b04da4be9bf44805c0e40fdc9cdae", "variant": 3118959500, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 604176496}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 10627096}, "child": {"skip": 44, "offset": 56, "next": [{"match": {"value": 637862144}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 2382495832}, "child": {"skip": 32, "offset": 96, "next": [], "symbols": [{"name": "scePadGetDmaStr", "hash": "da4f38791201a8e2a50753caeb836c64b8ebdec2", "variant": 1721385906, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 637862143}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 2382495832}, "child": {"skip": 32, "offset": 96, "next": [], "symbols": [{"name": "scePadGetDmaStr", "hash": "d3234354d24151dddaeba66bed503c865c7037c9", "variant": 1721385906, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 334016}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 266432}, "child": {"skip": 20, "offset": 28, "next": [{"match": {"value": 4141}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 1007026176, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 8, "offset": 44, "next": [{"match": {"value": 666763248}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 281018372}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 4290707456}, "child": {"skip": 8, "offset": 64, "next": [{"match": {"value": 2353135704}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 3753836544}, "child": {"skip": 8, "offset": 80, "next": [], "symbols": [{"name": "scePadGetFrameCount", "hash": "012a6e1f690a2a0b1ecb6e3328395aafacc50127", "variant": 2086161551, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 2420244593}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 3753836544}, "child": {"skip": 8, "offset": 80, "next": [], "symbols": [{"name": "scePadGetReqState", "hash": "75d8d40a5fbc3923d3a78a3126ad04794be2630e", "variant": 2086161551, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 281018375}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 4290707456}, "child": {"skip": 36, "offset": 92, "next": [], "symbols": [{"name": "scePadInfoPressMode", "hash": "36c25bd273d9b06f319e72ef02bff5f706e5d1fb", "variant": 3497030692, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 281018373}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 4290707456}, "child": {"skip": 4, "offset": 60, "next": [{"match": {"value": 604377087}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "scePadSetButtonInfo"}}, "child": {"skip": 16, "offset": 84, "next": [], "symbols": [{"name": "scePadEnterPressMode", "hash": "720a596086a4db7d50303a07697408dde60b9985", "variant": 1865886707, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 12333}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "scePadSetButtonInfo"}}, "child": {"skip": 16, "offset": 84, "next": [], "symbols": [{"name": "scePadExitPressMode", "hash": "54b93fecd0fa81f812b197f64e09deafc09319bd", "variant": 1865886707, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666763120}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 281018396}, "child": {"skip": 124, "offset": 176, "next": [], "symbols": [{"name": "scePadGetButtonMask", "hash": "96643b50f1b9baf4f05d885e9b8f7bffecf6f6aa", "variant": 2086161551, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604110947}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 1007026176, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 76, "offset": 112, "next": [], "symbols": [{"name": "scePadGetState", "hash": "3b6a1cfc655fb702279fe2785bcd708fdf7eb8df", "variant": 2086161551, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 331968}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 268480}, "child": {"skip": 20, "offset": 28, "next": [{"match": {"value": 666763120}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 76, "offset": 112, "next": [], "symbols": [{"name": "scePadRead", "hash": "b5f639add2d8567af08c1fc76a6436222017edff", "variant": 2744050478, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 666763104}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 16, "offset": 52, "next": [{"match": {"value": 14712877}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 4289790088}, "child": {"skip": 24, "offset": 84, "next": [{"match": {"value": 2477064306}, "child": {"skip": 0, "offset": 88, "next": [{"match": {"value": 346226732}, "child": {"skip": 196, "offset": 288, "next": [], "symbols": [{"name": "scePadInfoAct", "hash": "c6f3bca26f134cffd09977f2cd9ac48e9cdd0c27", "variant": 1419064906, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 2476998770}, "child": {"skip": 0, "offset": 88, "next": [{"match": {"value": 344129580}, "child": {"skip": 196, "offset": 288, "next": [], "symbols": [{"name": "scePadInfoComb", "hash": "f923d8bdec90020f96986481dabf0ad63a75f60c", "variant": 1419064906, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 12615725}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 428979)PS2SDB", 8192}, + std::string_view{R"PS2SDB(0088}, "child": {"skip": 256, "offset": 316, "next": [], "symbols": [{"name": "scePadInfoMode", "hash": "834f3f619da96598437d45eaf24cd9d196fb658e", "variant": 1419064906, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 746717192}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 272629768}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 40, "offset": 52, "next": [], "symbols": [{"name": "scePadStateIntToStr", "hash": "fdd996ecc8bada1f81669c73508a5f4fe72747b1", "variant": 2566110469, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 272629767}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 32, "offset": 44, "next": [], "symbols": [{"name": "scePadStateIntToStr", "hash": "a77f525d7938bfa1c753840d2180914b79cb8096", "variant": 3493540653, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 746717188}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 272629768}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 40, "offset": 52, "next": [], "symbols": [{"name": "scePadReqIntToStr", "hash": "812e39510582e688715d57d5186b034d9b34cae0", "variant": 2566110469, "library": "libpad"}, {"name": "scePad2StateIntToStr", "hash": "812e39510582e688715d57d5186b034d9b34cae0", "variant": 2566110469, "library": "libpad2"}]}}], "symbols": []}}, {"match": {"value": 272629767}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 32, "offset": 44, "next": [], "symbols": [{"name": "scePadReqIntToStr", "hash": "0302a2c723d810c340d8faa4b79520b2e9c04d24", "variant": 3493540653, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8405037}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 10491949}, "child": {"skip": 20, "offset": 32, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_strtol_r"}}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 6303789}, "child": {"skip": 12, "offset": 52, "next": [], "symbols": [{"name": "strtol", "hash": "b2cf04e1fcabaefca079a20284b8e13eaa22f1db", "variant": 4071007907, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_strtoul_r"}}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 6303789}, "child": {"skip": 12, "offset": 52, "next": [], "symbols": [{"name": "strtoul", "hash": "b2cf04e1fcabaefca079a20284b8e13eaa22f1db", "variant": 137540186, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_setenv_r"}}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 6303789}, "child": {"skip": 12, "offset": 52, "next": [], "symbols": [{"name": "setenv", "hash": "b2cf04e1fcabaefca079a20284b8e13eaa22f1db", "variant": 299576629, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 528448}, "child": {"skip": 316, "offset": 328, "next": [], "symbols": [{"name": "_sceMcpReadUserClustOnCache", "hash": "33d09a497eaf9302b148f92fcc392faa06cd47b2", "variant": 3125394380, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 604176496}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 604241948}, "child": {"skip": 8, "offset": 20, "next": [{"match": {"value": 666763216}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 16, "offset": 44, "next": [{"match": {"value": 12617773}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 8593441}, "child": {"skip": 8, "offset": 60, "next": [{"match": {"value": 274726962}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 14712877}, "child": {"skip": 220, "offset": 288, "next": [], "symbols": [{"name": "scePadInfoAct", "hash": "6b85bb1cb27159a4979f26932742382c7603bb93", "variant": 2181189095, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 274726961}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 14712877}, "child": {"skip": 216, "offset": 284, "next": [], "symbols": [{"name": "scePadInfoComb", "hash": "4786b63362d783de1b6ee258e4ae08967a720e71", "variant": 2181189095, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 12615725}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 8593441}, "child": {"skip": 260, "offset": 312, "next": [], "symbols": [{"name": "scePadInfoMode", "hash": "e6575e39e2e48e366685f76c9ec2bb71b74db80d", "variant": 2181189095, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666763088}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 16, "offset": 44, "next": [{"match": {"value": 12617773}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 8593441}, "child": {"skip": 8, "offset": 60, "next": [{"match": {"value": 274726960}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 14712877}, "child": {"skip": 212, "offset": 280, "next": [], "symbols": [{"name": "scePadInfoAct", "hash": "8b483cc1d4e6bd22b472ff7ae3c94dc04f9609d0", "variant": 3037282346, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 274726959}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 14712877}, "child": {"skip": 208, "offset": 276, "next": [], "symbols": [{"name": "scePadInfoComb", "hash": "64307fc2109f16d2fdb2e9dfd7b3a3c0aa4d4bdd", "variant": 3037282346, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 12615725}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 8593441}, "child": {"skip": 256, "offset": 308, "next": [], "symbols": [{"name": "scePadInfoMode", "hash": "fa4ce3ac72ba0bc8ff99a11e9e20085bc14710fd", "variant": 3037282346, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604110944}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 604176768}, "child": {"skip": 32, "offset": 44, "next": [{"match": {"value": 12617773}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 4395041}, "child": {"skip": 8, "offset": 60, "next": [{"match": {"value": 274726962}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 14712877}, "child": {"skip": 220, "offset": 288, "next": [], "symbols": [{"name": "scePadInfoAct", "hash": "f657db85164d852ebf492e0690b4bd1589870d92", "variant": 2181189095, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 274726961}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 14712877}, "child": {"skip": 216, "offset": 284, "next": [], "symbols": [{"name": "scePadInfoComb", "hash": "d4b5aa3dffccf35925011013e9469feb6920670c", "variant": 2181189095, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 12615725}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 4395041}, "child": {"skip": 260, "offset": 312, "next": [], "symbols": [{"name": "scePadInfoMode", "hash": "d83ad37b50ab6f2de8120ab24d564ef575c5cf07", "variant": 2181189095, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10504237}, "child": {"skip": 0, "offset": 8, "next": [{)PS2SDB", 8192}, + std::string_view{R"PS2SDB("match": {"value": 544831}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 663612}, "child": {"skip": 1756, "offset": 1772, "next": [], "symbols": [{"name": "__divdi3", "hash": "15ee939c9c12fbf3371c6cba106e7a412d3640f6", "variant": 1806908991, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 285212686}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 12597293}, "child": {"skip": 60, "offset": 76, "next": [], "symbols": [{"name": "R_set_mem_functions", "hash": "3aaccf8d352fe339cef710b568f6cbcb8d3c5540", "variant": 3562168820, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666763232}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 544831}, "child": {"skip": 1668, "offset": 1680, "next": [], "symbols": [{"name": "__moddi3", "hash": "c59ba498617fa1499496cf3f154fd60fd2a9bfe6", "variant": 2494458604, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 666763200}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724464}, "child": {"skip": 1628, "offset": 1640, "next": [], "symbols": [{"name": "__moddi3", "hash": "8cc9923851726a782c991d8ae49d26b7fefcec5b", "variant": 2029093026, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 2365849600}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 746717186}, "child": {"skip": 564, "offset": 576, "next": [], "symbols": [{"name": "_fpadd_parts", "hash": "a2599ac0fdde834eb5af0b4551963da8c082dbca", "variant": 2000773493, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 10508333}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2365718528}, "child": {"skip": 124, "offset": 136, "next": [], "symbols": [{"name": "add_fdes", "hash": "3a80ac1c7054b2685bfcdfa849e9840d6cd48d81", "variant": 0, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 750911520}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 339738652}, "child": {"skip": 144, "offset": 156, "next": [{"match": {"value": 610467841}, "child": {"skip": 0, "offset": 160, "next": [{"match": {"value": 348454906}, "child": {"skip": 12, "offset": 176, "next": [], "symbols": [{"name": "memcpy", "hash": "d64c28659f71dd451557974ce968c5859d04ac5c", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 0}, "child": {"skip": 0, "offset": 160, "next": [{"match": {"value": 348454906}, "child": {"skip": 12, "offset": 176, "next": [], "symbols": [{"name": "memcpy", "hash": "5649332ddaac33fcefbbf3be9164f36d806d3ef3", "variant": 0, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 11014187}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 272629779}, "child": {"skip": 56, "offset": 68, "next": [{"match": {"value": 2690777088}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 348454906}, "child": {"skip": 184, "offset": 260, "next": [], "symbols": [{"name": "memmove", "hash": "f10321bf1a26ecc65fcc813b72839dde66c07bba", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 0}, "child": {"skip": 0, "offset": 72, "next": [{"match": {"value": 348454906}, "child": {"skip": 184, "offset": 260, "next": [], "symbols": [{"name": "memmove", "hash": "54b9903cc6b22e66348ebf184bfdd972ca52bd34", "variant": 0, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10762277}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 604635152}, "child": {"skip": 408, "offset": 420, "next": [{"match": {"value": 617021439}, "child": {"skip": 0, "offset": 424, "next": [{"match": {"value": 0}, "child": {"skip": 16, "offset": 444, "next": [], "symbols": [{"name": "strncpy", "hash": "c4026243f56a0c2fe72e325c2a2d609a6e425a49", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 0}, "child": {"skip": 0, "offset": 424, "next": [{"match": {"value": 0}, "child": {"skip": 16, "offset": 444, "next": [], "symbols": [{"name": "strncpy", "hash": "b514164419f027c10a15a9c96bfb489b81db2fd6", "variant": 0, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2164719616}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 283115555}, "child": {"skip": 204, "offset": 216, "next": [], "symbols": [{"name": "strcasecmp", "hash": "be48d802719053a379f7a15073c0cd8b8419dbfc", "variant": 3496378684, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 822214663}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1413480516}, "child": {"skip": 416, "offset": 428, "next": [], "symbols": [{"name": "strncat", "hash": "95bdf06f52404421be74f9ccfa91061315d63ff2", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 1006829569}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1107296313}, "child": {"skip": 368, "offset": 380, "next": [], "symbols": [{"name": "sceIpuStopDMA", "hash": "4392fd4dc231ceca6f20f75bbc7c95bd81f30978", "variant": 0, "library": "libipu"}]}}], "symbols": []}}, {"match": {"value": 2365718556}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2365849608}, "child": {"skip": 452, "offset": 464, "next": [], "symbols": [{"name": "sceIpuRestartDMA", "hash": "c782bdf3c54d0a1f77ceef851b3b8132b0c77884", "variant": 0, "library": "libipu"}]}}], "symbols": []}}, {"match": {"value": 1006858240}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2366046208}, "child": {"skip": 316, "offset": 328, "next": [], "symbols": [{"name": "sceGpResetChain", "hash": "a82e1826569eb198f6cc2c3c7755481da12af368", "variant": 0, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 666763248}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 312, "offset": 324, "next": [], "symbols": [{"name": "sceGpChkPacketSize", "hash": "74707b8680e9d6bae5254bac915518d9c0ea8bc1", "variant": 2981167713, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 1006772224}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 876740612}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4244766720}, "child": {"skip": 104, "offset": 120, "next": [], "symbols": [{"name": "sceGpInitTexEnv", "hash": "8efafe8ae8135040003d74fd9e4c99e6e074ff33", "variant": 2981611496, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 876740614}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4244766720}, "child": {"skip": 128, "offset": 144, "next": [], "symbols": [{"name": "sceGpInitTexEnvMipmap", "hash": "baf761744ad7a4eedc7dc152b7d56bfff0b1c688", "variant": 2981611496, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 876740613}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4244766720}, "child": {"skip": 76, "offset": 92, "next": [{"match": {"value": 604176451}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 604241993}, "child": {"skip": 32, "offset": 132, "next": [], "symbols": [{"name": "sceGpInitAlphaEnv", "hash": "c4b273b462074cacf56340b0ddd33b01e712d45e", "variant": 2981611496, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 604176450}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 604241993}, "child": {"skip": 32, "offset": 132, "next": [], "symbols": [{"name": "sceGpInitAlphaEnv", "hash": "5450681af07a2732c705e9a96904609b6d95f2a8", "variant": 2981611496, "library": "libgp"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2500263956}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 621084702}, "child": {"skip": 304, "offset": 316, "next": [], "symbols": [{"name": "sceSynthesizerSetuptEnv", "hash": "446bf2ab024e76e6668d51bd7f523350c7aac902", "variant": 4171291304, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 462908}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 12591149}, "child": {"skip": 12, "offset": 24, "next": [{"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "des_ncbc)PS2SDB", 8192}, + std::string_view{R"PS2SDB(_encrypt"}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 621281324}, "child": {"skip": 0, "offset": 32, "next": [], "symbols": [{"name": "des_cbc_cipher", "hash": "d7d0fa8d33085c291e155d2d2f7804c0aae4e4f6", "variant": 1946449042, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "RC2_cbc_encrypt"}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 621281324}, "child": {"skip": 0, "offset": 32, "next": [], "symbols": [{"name": "rc2_cbc_cipher", "hash": "d7d0fa8d33085c291e155d2d2f7804c0aae4e4f6", "variant": 1282960607, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 872596296}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 612613853}, "child": {"skip": 4, "offset": 12, "next": [{"match": {"value": 272629765}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 28, "offset": 48, "next": [], "symbols": [{"name": "scePadSetFlushRate", "hash": "ae7d8703c75e39ea395a0d8b4fa6521ca9326fe7", "variant": 3082531094, "library": "libpad"}]}}], "symbols": []}}, {"match": {"value": 272629764}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 28, "offset": 48, "next": [], "symbols": [{"name": "scePadSetFlushRate", "hash": "7e51e95736d31b05e28058223c632d801150e5ba", "variant": 2066931055, "library": "libpad"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666763024}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290183360}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 12, "offset": 28, "next": [{"match": {"value": 18919469}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4289986704}, "child": {"skip": 1676, "offset": 1712, "next": [], "symbols": [{"name": "_getAllRefs", "hash": "5a95113b3d8a4338d051666145a3d90e901be312", "variant": 2759356466, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 18921517}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4289986704}, "child": {"skip": 12, "offset": 48, "next": [{"match": {"value": 4289790048}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 14719021}, "child": {"skip": 1584, "offset": 1640, "next": [], "symbols": [{"name": "_getAllRefs", "hash": "1c4043d152c8a1744565b95770ce7c90a255f2bf", "variant": 4199861729, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 4289855600}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 14719021}, "child": {"skip": 1652, "offset": 1708, "next": [], "symbols": [{"name": "_getAllRefs", "hash": "6c3a6be1726dd15bd2f688a1a227836dfa045872", "variant": 2171111145, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290642128}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 1720, "offset": 1736, "next": [], "symbols": [{"name": "_getAllRefs", "hash": "26a7eaff6a0c30c02c5b0b5a64110435b8d1e5a8", "variant": 1938209093, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 26669}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724464}, "child": {"skip": 692, "offset": 704, "next": [], "symbols": [{"name": "sceSdRemote", "hash": "4059f70edce047a0b7e4f5d915625d41c49214b2", "variant": 2961324645, "library": "libsdr"}]}}], "symbols": []}}, {"match": {"value": 8392749}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724512}, "child": {"skip": 36, "offset": 48, "next": [{"match": {"value": 3886809264}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 3886940340}, "child": {"skip": 96, "offset": 152, "next": [], "symbols": [{"name": "sscanf", "hash": "df94398d9422014219da89961bf1d72826587a5f", "variant": 1518131172, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 2812477452}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 2946629632}, "child": {"skip": 80, "offset": 136, "next": [], "symbols": [{"name": "sscanf", "hash": "5b239c8b9aee600b7325b4e880677796b72af8de", "variant": 869452686, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290183360}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290117808}, "child": {"skip": 2520, "offset": 2532, "next": [], "symbols": [{"name": "qsort", "hash": "f0cf05d51886dc3647a91cced97348e753175b8c", "variant": 2699980779, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 604176704}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290642128}, "child": {"skip": 68, "offset": 80, "next": [{"match": {"value": 2384594960}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 2946957376}, "child": {"skip": 1708, "offset": 1796, "next": [], "symbols": [{"name": "_getAllRefs", "hash": "521996b575bafbf848cb4e63ec65c16d1b0b4a26", "variant": 1270296024, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2384594984}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 2946957376}, "child": {"skip": 1708, "offset": 1796, "next": [], "symbols": [{"name": "_getAllRefs", "hash": "41cc58f9921e624b09346e578d8328a4f512c914", "variant": 1270296024, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2384594976}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 2946957376}, "child": {"skip": 1708, "offset": 1796, "next": [], "symbols": [{"name": "_getAllRefs", "hash": "ba3714622eb9201d98f7051799d35a7e0c9f2009", "variant": 1251124391, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604110849}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289790048}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8423469}, "child": {"skip": 644, "offset": 660, "next": [], "symbols": [{"name": "_waitBdecOut", "hash": "be63746e2834f32689a1748de5fa26ebc6aaa765", "variant": 2065208085, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 4290642128}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290183360}, "child": {"skip": 400, "offset": 416, "next": [], "symbols": [{"name": "pk_rsa_public_decrypt_sslc", "hash": "80a56ba9fb43e779b242aaf707a76f38b35b3941", "variant": 1800575794, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8398893}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707680}, "child": {"skip": 40, "offset": 52, "next": [{"match": {"value": 2412120136}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 1421869067}, "child": {"skip": 620, "offset": 680, "next": [], "symbols": [{"name": "_initSeq", "hash": "2356b1d5b0ba12f0cf20de5c9ba1d57d06379060", "variant": 3743913624, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2412120160}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 1421869067}, "child": {"skip": 620, "offset": 680, "next": [], "symbols": [{"name": "_initSeq", "hash": "a12efa933be67c5d8bdc9add600ae9b38e68223a", "variant": 3743913624, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724448}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 664993984}, "child": {"skip": 624, "offset": 636, "next": [], "symbols": [{"name": "sceSpu2Remote", "hash": "bda380d9a38b8fd74e03126c1574de5198018d0a", "variant": 3423258132, "library": "librspu2"}]}}], "symbols": []}}, {"match": {"value": 10512429}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289921168}, "child": {"skip": 920, ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(offset": 932, "next": [], "symbols": [{"name": "_scePFontSetupTexCache", "hash": "89abca637136db9bdbd7de14df89be0ae22eb6fd", "variant": 2221019575, "library": "libpfont"}]}}], "symbols": []}}, {"match": {"value": 8405037}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724560}, "child": {"skip": 388, "offset": 400, "next": [], "symbols": [{"name": "_scePFont_Calc", "hash": "cf6ec286956872a340e8ba61c0b3db69c290b274", "variant": 3032786646, "library": "libpfont"}]}}], "symbols": []}}, {"match": {"value": 405888}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290183344}, "child": {"skip": 1400, "offset": 1412, "next": [], "symbols": [{"name": "Linear", "hash": "061013f5f03048164f2a514e546e50cd9c5be4f7", "variant": 3091774600, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 4290052288}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289986736}, "child": {"skip": 304, "offset": 316, "next": [], "symbols": [{"name": "sceEENetRecvmsg", "hash": "ebb02df227fe995398d1f1b15695e76b9f6291a0", "variant": 3121447902, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289855696}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289790144}, "child": {"skip": 148, "offset": 160, "next": [], "symbols": [{"name": "_sce_eenet_sppp_auth_message", "hash": "6891d3052a4d4daa8ec69330d3f94c17a349b759", "variant": 511257182, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 604110850}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290183376}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290117824}, "child": {"skip": 420, "offset": 436, "next": [], "symbols": [{"name": "_sce_eenet_if_setaddr", "hash": "f4652ae38c246b5fd6e21f51ace7e4e9a13bce2c", "variant": 1046697452, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4290642128}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290183360}, "child": {"skip": 320, "offset": 336, "next": [], "symbols": [{"name": "pk_rsa_private_decrypt_sslc", "hash": "b4d92681be797b89aab0ccec323c0e03153b066d", "variant": 72759300, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604111356}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724560}, "child": {"skip": 280, "offset": 292, "next": [], "symbols": [{"name": "pppctl_stat", "hash": "523f67ec18d8eddf138b0c8abc39dd284dae37f4", "variant": 3433836871, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2946498612}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 664928288}, "child": {"skip": 1904, "offset": 1916, "next": [], "symbols": [{"name": "eenetctl_main", "hash": "d27807a3062b1bbdc3f428ea41395f0ad0c04985", "variant": 2718319951, "library": "eenetctl"}]}}], "symbols": []}}, {"match": {"value": 4290052256}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290183360}, "child": {"skip": 1388, "offset": 1400, "next": [], "symbols": [{"name": "verify_cert_expiration", "hash": "ea8155838fb1e384ea7156b65dcd4adf77b25c41", "variant": 1301162373, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604110854}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290642128}, "child": {"skip": 464, "offset": 476, "next": [], "symbols": [{"name": "pk_dh_sslc_compute_key", "hash": "49f9152647aa8f37706d1fc74ec2cf429662f42d", "variant": 2081034429, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 4290642128}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290183360}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 605945857}, "child": {"skip": 404, "offset": 420, "next": [], "symbols": [{"name": "pk_rsa_private_encrypt_sslc", "hash": "c6812e7e1a57f24d65bcb36491805101e4946850", "variant": 1118908802, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 4289855600}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10547245}, "child": {"skip": 852, "offset": 868, "next": [], "symbols": [{"name": "ssl3_change_cipher_state", "hash": "61ab3cc0d78fb6c78a7ed5fc99da96a59447f1ed", "variant": 2335903167, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 4290117808}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 12644397}, "child": {"skip": 1036, "offset": 1052, "next": [], "symbols": [{"name": "SSL_CIPHER_description", "hash": "dc366a23a507495e3e3e88aa1324d9985a4db82c", "variant": 3907685871, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604110851}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290642128}, "child": {"skip": 496, "offset": 508, "next": [], "symbols": [{"name": "pk_rsa_public_encrypt_sslc", "hash": "fc0ada3656babd48938ecf49861422dece27db7c", "variant": 652110859, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604110913}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290642128}, "child": {"skip": 596, "offset": 608, "next": [], "symbols": [{"name": "ssl3_generate_key_block", "hash": "16bd40cc1df9d8a6c7391dc1baff2ec4ee309521", "variant": 137852694, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 4289986704}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290642128}, "child": {"skip": 440, "offset": 452, "next": [], "symbols": [{"name": "tls1_P_hash", "hash": "9ec18be53f3cffc21552e3d966e6e730841d7a63", "variant": 3626931424, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 4289986736}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289921184}, "child": {"skip": 264, "offset": 276, "next": [], "symbols": [{"name": "tls1_final_finish_mac", "hash": "54dd337cad110f3aed6d68c8badd04687815b721", "variant": 1675316800, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666763008}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1007484928, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724448}, "child": {"skip": 892, "offset": 904, "next": [], "symbols": [{"name": "sceSdRemote", "hash": "5e481f398717fbdc6dae2471f5d36263c0b4a686", "variant": 2721939222, "library": "libsdr"}]}}], "symbols": []}}, {"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724624}, "child": {"skip": 224, "offset": 236, "next": [], "symbols": [{"name": "__sceEENetrt_ifmsg", "hash": "27eb7bf57d4eb080169a9500c6e2efacee2ba64e", "variant": 2415701450, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4288938080}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289003624}, "child": {"skip": 668, "offset": 680, "next": [], "symbols": [{"name": "dpmul", "hash": "a5bf657547ff4b3c810f4f02891834848ec1ef47", "variant": 1518305534, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 4290642144}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290117824}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8450093}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724512}, "child": {"skip": 1672, "offset": 1692, "next": [{"match": {"value": 473956810}, "child": {"skip": 0, "offset": 1696, "next": [{"match": {"value": 2409824344}, "child": {"skip": 2856, "offset": 4556, "next": [], "symbols": [{"name": "_dtoa_r", "hash": "f25a5cb8fc837b8f7e5a7d20a47871a5f38bae5e", "variant": 314542806, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 473956811}, "child": {"skip": 0, "offset": 1696, "next": [{"match": {"value": 2409824344}, "child": {"skip": 2856, "offset": 4556, "next": [], "symbols": [{"name": "_dtoa_r", "hash": "c46664722349924d60468afc0b6d72106788afa3", "variant": 806068254, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 14741549}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290052272}, "child": {"skip": 748, "offset": 768, "next": [], "symbols": [{"name": "__sceEENetres_mkquery", "has)PS2SDB", 8192}, + std::string_view{R"PS2SDB(h": "7611c167e13b8f04eb5a321d0faa5da8166ae2a7", "variant": 1920234743, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724512}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8450093}, "child": {"skip": 1832, "offset": 1848, "next": [], "symbols": [{"name": "in_arpinput", "hash": "748717247be1ba36ed6d3d643832da4b47761ce4", "variant": 1693979600, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4290183376}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 12644397}, "child": {"skip": 592, "offset": 608, "next": [], "symbols": [{"name": "_sce_eenet_pppctl", "hash": "cbb5dae4ade6b88476261ec88725b96e83d8f2f9", "variant": 1082204312, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290183376}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289921168}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8435757}, "child": {"skip": 4452, "offset": 4468, "next": [], "symbols": [{"name": "_dtoa_r", "hash": "9f680a4cdc55aff929d2bbdf1da77e7d2eeae4be", "variant": 156480158, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4290052272}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289986720}, "child": {"skip": 1424, "offset": 1440, "next": [], "symbols": [{"name": "__sceEENeticmp_reflect", "hash": "4388498896128df4f2239084e7befc59399a6d31", "variant": 3813794878, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290117840}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289986736}, "child": {"skip": 36, "offset": 48, "next": [{"match": {"value": 2383478868}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 371195910}, "child": {"skip": 1108, "offset": 1164, "next": [], "symbols": [{"name": "fseek", "hash": "e6f543a0f37382e7ffea2ed7722fbfafa6dafa29", "variant": 1098448715, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 2382495828}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 339738628}, "child": {"skip": 1104, "offset": 1160, "next": [], "symbols": [{"name": "fseek", "hash": "26f5b637ce53fd3544e61e0170df6a908fc4cbb7", "variant": 1172809791, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2143223936}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2142699632}, "child": {"skip": 44, "offset": 56, "next": [{"match": {"value": 341835793}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 1925195304}, "child": {"skip": 80, "offset": 144, "next": [{"match": {"value": 270533070}, "child": {"skip": 0, "offset": 148, "next": [{"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 1924, "offset": 2076, "next": [], "symbols": [{"name": "UnwindStack__FP12ThrowContextP13ExceptionInfoPc", "hash": "115d9c3119567eedb1d7f2e658a7a0cba9aae89a", "variant": 3449011532, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 270533068}, "child": {"skip": 0, "offset": 148, "next": [{"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 1912, "offset": 2064, "next": [], "symbols": [{"name": "UnwindStack__FP12ThrowContextP13ExceptionInfoPc", "hash": "e1cea9f92ea349bf1bbcfffdbeeb9fec5b7e550e", "variant": 1186484443, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 341835795}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 0}, "child": {"skip": 100, "offset": 164, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 168, "next": [{"match": {"value": 202880}, "child": {"skip": 1924, "offset": 2096, "next": [], "symbols": [{"name": "UnwindStack__FP12ThrowContextP13ExceptionInfoPc", "hash": "bf7c97da3a566a6e7a0985db277eccd135de7aea", "variant": 3304003430, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 202880}, "child": {"skip": 0, "offset": 168, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 1924, "offset": 2096, "next": [], "symbols": [{"name": "UnwindStack__FP12ThrowContextP13ExceptionInfoPc", "hash": "b56181a4061e3d6dc38156a80d7f4ca698308534", "variant": 2489880710, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289855712}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 8425517}, "child": {"skip": 96, "offset": 108, "next": [{"match": {"value": 71303249}, "child": {"skip": 0, "offset": 112, "next": [{"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 52, "offset": 168, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "scePrintf"}}, "child": {"skip": 0, "offset": 172, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 312, "offset": 488, "next": [], "symbols": [{"name": "sceUsbKbInit", "hash": "e6497aee94b699992b8c1119634e5fa8ec6bbe23", "variant": 1199719410, "library": "libusbkb"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "printf"}}, "child": {"skip": 0, "offset": 172, "next": [{"match": {"value": 612630528, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 312, "offset": 488, "next": [], "symbols": [{"name": "sceUsbKbInit", "hash": "e6497aee94b699992b8c1119634e5fa8ec6bbe23", "variant": 971652761, "library": "libusbkb"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 71303245}, "child": {"skip": 0, "offset": 112, "next": [{"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 356, "offset": 472, "next": [], "symbols": [{"name": "sceUsbKbInit", "hash": "8271bebf81285921a1d1de63e53c4cb524ccc6ca", "variant": 1575155650, "library": "libusbkb"}]}}], "symbols": []}}, {"match": {"value": 71303253}, "child": {"skip": 0, "offset": 112, "next": [{"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 388, "offset": 504, "next": [], "symbols": [{"name": "sceUsbKbInit", "hash": "21d404a6048aea456279807f9d240c0a48e274a3", "variant": 276143396, "library": "libusbkb"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604111072}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789968}, "child": {"skip": 1152, "offset": 1164, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_PsceSkSsSTRADPCM_ATick2"}}, "child": {"skip": 0, "offset": 1168, "next": [{"match": {"value": 46149677}, "child": {"skip": 252, "offset": 1424, "next": [], "symbols": [{"name": "sceSkSsSTRADPCM_Control", "hash": "cca36f2b3483eb18efef2963ca640d860be48961", "variant": 787860742, "library": "libsk"}]}}], "symbols": []}}, {"match": {"value": 46149677}, "child": {"skip": 0, "offset": 1168, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_PsceSkSsSTRADPCM_ATick2"}}, "child": {"skip": 252, "offset": 1424, "next": [], "symbols": [{"name": "sceSkSsSTRADPCM_Control", "hash": "4760edd3b9fa836bcd8bfdc9bfb3eb167a4e8bb2", "variant": 608335159, "library": "libsk"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10512429}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289921168}, "child": {"skip": 984, "offset": 996, "next": [], "symbols": [{"name": "_scePFontSetupTexCache", "hash": "14b76582db57eacc3a20af2f27a02752d417c9af", "variant": 344748875, "library": "libpfont"}]}}], "symbols": []}}, {"match": {"value": 4290052320}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289986768}, "child": {"skip": 516, "offset": 528, "next": [], "symbols": [{"name": "__sceEENetrtinit", "hash": "84e4ca280f5560b6f9d3977ad6f751b586d1019d", "variant": 4132479917, "library": "libeenet"}]}}], "symbols": [)PS2SDB", 8192}, + std::string_view{R"PS2SDB(]}}, {"match": {"value": 4289986752}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855648}, "child": {"skip": 388, "offset": 400, "next": [], "symbols": [{"name": "sceEENetIoctl", "hash": "33e828a5c7d889f361d763f24a0dba4571936527", "variant": 2434788098, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4290642048}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290183280}, "child": {"skip": 304, "offset": 316, "next": [], "symbols": [{"name": "__sceEENetnsdispatch", "hash": "3a88f31df18f32ac6ff636b1ed8978a476053648", "variant": 3693689684, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4290117728}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 8433709}, "child": {"skip": 256, "offset": 268, "next": [], "symbols": [{"name": "ERR_add_error_data", "hash": "cac20a373441137ec9dec4315db99b5294bf8b03", "variant": 1538650059, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006968832}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 8730661}, "child": {"skip": 176, "offset": 184, "next": [], "symbols": [{"name": "_sceCd_cd_read_intr", "hash": "30c09dc74df91ba2b3e9203f0aeb1341b2d7460f", "variant": 1443100622, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 872579073}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 276955174}, "child": {"skip": 168, "offset": 176, "next": [], "symbols": [{"name": "_sceCdSC", "hash": "49e0fa87d434c535025a282b7277d258611238f2", "variant": 2396334496, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 604110923}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 612630678}, "child": {"skip": 192, "offset": 200, "next": [], "symbols": [{"name": "sceCdIntToPos", "hash": "7c8506fc4cc53f16bdb5ef013b9727064bdda323", "variant": 0, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 2424766464}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604569610}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2424832001}, "child": {"skip": 84, "offset": 96, "next": [], "symbols": [{"name": "sceCdPosToInt", "hash": "8416a761b49efed450b68fe769013bb85bd5950f", "variant": 0, "library": "libcdvd"}]}}], "symbols": []}}, {"match": {"value": 2426798080}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 820510975}, "child": {"skip": 100, "offset": 112, "next": [], "symbols": [{"name": "rn_lexobetter", "hash": "582cb7fa4e67c157350a38781eee58faaabb93ae", "variant": 0, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1141071872}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 6301741}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006796799}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1007026303}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 876806143}, "child": {"skip": 716, "offset": 736, "next": [], "symbols": [{"name": "__ieee754_logf", "hash": "6e6d11ccee66a0f0462df3ffb41e2d60514e0a61", "variant": 1593880078, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 1006829695}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 876806143}, "child": {"skip": 184, "offset": 204, "next": [], "symbols": [{"name": "__ieee754_sqrtf", "hash": "e5d5b92a40dfa5da335fab35aab18b06bb865e93", "variant": 0, "library": "libm"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 0}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 6301741}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006796799}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1007026303}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 876806143}, "child": {"skip": 752, "offset": 776, "next": [], "symbols": [{"name": "__ieee754_logf", "hash": "563079013689d83b1565e871cb83b16bc82add85", "variant": 3977882770, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 1006829695}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 876806143}, "child": {"skip": 188, "offset": 212, "next": [], "symbols": [{"name": "__ieee754_sqrtf", "hash": "d822741ffbab228f5426debdbd6d0ef595147ab2", "variant": 0, "library": "libm"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 6299693}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006796799}, "child": {"skip": 76, "offset": 92, "next": [{"match": {"value": 75497476}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006764159}, "child": {"skip": 140, "offset": 240, "next": [], "symbols": [{"name": "floorf", "hash": "18911f581398829939dcfb7239aaaddc74920151", "variant": 0, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 75563012}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1006764159}, "child": {"skip": 140, "offset": 240, "next": [], "symbols": [{"name": "ceilf", "hash": "cbea2d107a4b4f9e32b759a8c97db4f7a0f60909", "variant": 0, "library": "libm"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006796799}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 876806143}, "child": {"skip": 4, "offset": 16, "next": [{"match": {"value": 1149435904}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 28, "next": [], "symbols": [{"name": "fabsf", "hash": "ff32a5fc0ed80cd24d91f3eb0d8f058c73799de5", "variant": 0, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 65011720}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1149435904}, "child": {"skip": 0, "offset": 24, "next": [], "symbols": [{"name": "fabsf", "hash": "f975d05e76ff2bc324ac572d908e46083d55d75a", "variant": 0, "library": "libm"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 6299693}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006796799}, "child": {"skip": 68, "offset": 80, "next": [{"match": {"value": 75497475}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 1006764159}, "child": {"skip": 128, "offset": 216, "next": [], "symbols": [{"name": "floorf", "hash": "81a1047a25ec884bbc7838ec74d4cb27db57a35f", "variant": 0, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 75563011}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 1006764159}, "child": {"skip": 128, "offset": 216, "next": [], "symbols": [{"name": "ceilf", "hash": "e6272a33bfcc3b64d0b9387514e44662e56444f5", "variant": 0, "library": "libm"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 6295597}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006927871}, "child": {"skip": 4, "offset": 16, "next": [{"match": {"value": 1006862208}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4460580}, "child": {"skip": 12, "offset": 36, "next": [], "symbols": [{"name": "isnanf", "hash": "cf0584cc0b90324cc00dd57d6aa99400e3f5846b", "variant": 0, "library": "libm"}, {"name": "isnanf", "hash": "cf0584cc0b90324cc00dd57d6aa99400e3f5846b", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 1006862464}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4460580}, "child": {"skip": 12, "offset": 36, "next": [], "symbols": [{"name": "finitef", "hash": "19bae35146fd95e3e2a5df468cf563db8ab3f012", "variant": 0, "library": "libm"}, {"name": "finitef", "hash": "19bae35146fd95e3e2a5df468cf563db8ab3f012", "variant": 0, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8402989}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 6303789}, "child": {"skip": 156, "offset": 168, "next": [], "symbols": [{"name": "frexpf", "hash": "835897aebc642496122214564b25373aa5f7c744", "variant": 0, "library": "libm"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1141137408}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 8402989}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 100676)PS2SDB", 8192}, + std::string_view{R"PS2SDB(4159}, "child": {"skip": 792, "offset": 804, "next": [], "symbols": [{"name": "__ieee754_logf", "hash": "a3f54bfa15ce2284e8fa49a7fdf6c5311d0ac6cd", "variant": 2266565042, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 1006796799}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 876806143}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1007091839}, "child": {"skip": 684, "offset": 700, "next": [], "symbols": [{"name": "__ieee754_logf", "hash": "fdc660ad4df815cb22120bcf0ef4a675d35f26cd", "variant": 2413701797, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 666763248}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 876806143}, "child": {"skip": 200, "offset": 216, "next": [], "symbols": [{"name": "__ieee754_log10f", "hash": "7911fbceae7e93150de764197922b0b3f7ac90ea", "variant": 2040239883, "library": "libm"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006993407}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1141008384}, "child": {"skip": 28, "offset": 40, "next": [], "symbols": [{"name": "copysignf", "hash": "86d950503183c4de4794db1f07bb8c901d94edaf", "variant": 0, "library": "libm"}, {"name": "copysignf", "hash": "86d950503183c4de4794db1f07bb8c901d94edaf", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 274370}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006862335}, "child": {"skip": 584, "offset": 596, "next": [], "symbols": [{"name": "__ieee754_expf", "hash": "00949af8bc7757ed5eba79c7679c340b29d98cdc", "variant": 691967113, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 0}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 274370}, "child": {"skip": 608, "offset": 620, "next": [], "symbols": [{"name": "__ieee754_expf", "hash": "cce1b369521df50f9183d1b6c8cbb55269757c98", "variant": 3927576901, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 1006796800}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006862335}, "child": {"skip": 860, "offset": 872, "next": [], "symbols": [{"name": "expm1f", "hash": "ab092cecf07a881336d5a16532e1729d68181fc2", "variant": 2941830857, "library": "libm"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1141202944}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 666763248}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 40, "offset": 52, "next": [{"match": {"value": 268435495}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 3292528640, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 168, "offset": 228, "next": [], "symbols": [{"name": "__ieee754_log10f", "hash": "628eb60a0f543ed9a2e5e860b018f9df05392092", "variant": 2920429715, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 268435497}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 3292528640, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 176, "offset": 236, "next": [], "symbols": [{"name": "__ieee754_log10f", "hash": "36085f2379cac98546b8bf5b6bc4afb708f59414", "variant": 2099512696, "library": "libm"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1141139456}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 8394797}, "child": {"skip": 36, "offset": 48, "next": [], "symbols": [{"name": "copysignf", "hash": "22a220af87d70072c505412fbadcdf53d6781a5a", "variant": 0, "library": "libm"}, {"name": "copysignf", "hash": "22a220af87d70072c505412fbadcdf53d6781a5a", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 1006862335}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1141139456}, "child": {"skip": 32, "offset": 44, "next": [], "symbols": [{"name": "copysignf", "hash": "7b7b1bb31d2c281731a440bbf7020896eca05d03", "variant": 0, "library": "libm"}, {"name": "copysignf", "hash": "7b7b1bb31d2c281731a440bbf7020896eca05d03", "variant": 0, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 616759293}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 617218052}, "child": {"skip": 316, "offset": 324, "next": [{"match": {"value": 436207639}, "child": {"skip": 0, "offset": 328, "next": [{"match": {"value": 3293839360}, "child": {"skip": 1816, "offset": 2148, "next": [], "symbols": [{"name": "__kernel_rem_pio2f", "hash": "31a132c619ab2888e2ecc6451fe6e955c1d54618", "variant": 2695489074, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 436207641}, "child": {"skip": 0, "offset": 328, "next": [{"match": {"value": 3293839360}, "child": {"skip": 1880, "offset": 2212, "next": [], "symbols": [{"name": "__kernel_rem_pio2f", "hash": "9ecf6ac3515405258b1cb79a5c084edeebef454f", "variant": 111698417, "library": "libm"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 617414653}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604766207}, "child": {"skip": 2372, "offset": 2380, "next": [], "symbols": [{"name": "__kernel_rem_pio2f", "hash": "ada6129c04b7755f2caf80bb779471e39b056727", "variant": 676634642, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 604766207}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 617414653}, "child": {"skip": 2212, "offset": 2220, "next": [], "symbols": [{"name": "__kernel_rem_pio2f", "hash": "3366f7c50e0a8ba6614ebb352ad642d2101f76ca", "variant": 2476653674, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 616824829}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 617218052}, "child": {"skip": 2080, "offset": 2088, "next": [], "symbols": [{"name": "__kernel_rem_pio2f", "hash": "96e458577ee3987e4d7b8d7a556361292d26122d", "variant": 1067099880, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 666762832}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 616759293}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2947023172}, "child": {"skip": 2068, "offset": 2080, "next": [], "symbols": [{"name": "__kernel_rem_pio2f", "hash": "ed31d1f3e17644c67d6bbe947eb7f3d1ba7cab64", "variant": 620399314, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 617611261}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 617414660}, "child": {"skip": 2068, "offset": 2080, "next": [], "symbols": [{"name": "__kernel_rem_pio2f", "hash": "bcb61af2c4ab941773a2cdf2b1d87cdf36682fd8", "variant": 1407195402, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 604110850}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290642320}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289986896}, "child": {"skip": 1040, "offset": 1056, "next": [], "symbols": [{"name": "_dispRefImageField", "hash": "4fd503b7bd7c824b11688de68645ca166127980a", "variant": 2993871107, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 4289855792}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290707872}, "child": {"skip": 1520, "offset": 1536, "next": [], "symbols": [{"name": "requesting", "hash": "61732f0a816eebd86c5532f253979490bc15dea6", "variant": 1907786364, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289724688}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855792}, "child": {"skip": 2260, "offset": 2272, "next": [], "symbols": [{"name": "sceGpPrintChain", "hash": "87ba1b397f8fd8b06a9d81b386d4a68b6123dc93", "variant": 123898008, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 604373056}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2946760768}, "child": {"skip": 4100, "offset": 4112, "next": [], "symbols": [{"name": "MD5Transform", "hash": "fcd5b366d84682d9d997f9e3e91fdb5eb0c43855", "variant": 3476141782, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 604110852}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289790240}, "child": {"skip": 1336, "offset": 1348, "next": [], "symbols": [{"name": "renewing", "hash": "f332c0beb4c337)PS2SDB", 8192}, + std::string_view{R"PS2SDB(eb06fa658e6889f724d14b7726", "variant": 3166220638, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 604110854}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855792}, "child": {"skip": 1280, "offset": 1292, "next": [], "symbols": [{"name": "rebinding", "hash": "2014f15e15eedc193f586d0dc739a3315c6b5c5c", "variant": 4262690639, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4290052496}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289986944}, "child": {"skip": 420, "offset": 432, "next": [], "symbols": [{"name": "pppoe_set_error_code", "hash": "47766192d1056d1d54d57b597da5cbffbda3ab66", "variant": 1230572036, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1141006336}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 666763248}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4206637}, "child": {"skip": 648, "offset": 660, "next": [], "symbols": [{"name": "__kernel_tanf", "hash": "74f691c14e6fd08ca353c760d7d96ebbf5ada787", "variant": 3998129186, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 4202541}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 267715}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 809631999}, "child": {"skip": 8, "offset": 24, "next": [{"match": {"value": 1348468779}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604110976}, "child": {"skip": 196, "offset": 228, "next": [], "symbols": [{"name": "floorf", "hash": "77ab02417656d3c7eef52eefe9a9b9e5960ce7ee", "variant": 0, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 1348468775}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604110976}, "child": {"skip": 180, "offset": 212, "next": [], "symbols": [{"name": "ceilf", "hash": "860663ed00b981d4328065b4260f31a9e130d678", "variant": 0, "library": "libm"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006862335}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 878968831}, "child": {"skip": 328, "offset": 344, "next": [], "symbols": [{"name": "__kernel_cosf", "hash": "2edf70deb887bdcdce8fd03b9243ddf1c4387b02", "variant": 0, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 278466}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006862335}, "child": {"skip": 676, "offset": 692, "next": [], "symbols": [{"name": "__ieee754_expf", "hash": "baedeab2da3cce5ded51c95ffbafe9f2c4908a5e", "variant": 441183445, "library": "libm"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006862335}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 878968831}, "child": {"skip": 28, "offset": 40, "next": [{"match": {"value": 75694101}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 1006764159}, "child": {"skip": 164, "offset": 212, "next": [], "symbols": [{"name": "floorf", "hash": "780861e7f4af1755de32a0ba4fd3c682ef51a1fe", "variant": 0, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 75563029}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 1006764159}, "child": {"skip": 164, "offset": 212, "next": [], "symbols": [{"name": "floorf", "hash": "9d5db2950f484e5dfa3af5354289cc5f041c326a", "variant": 3504503367, "library": "libm"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666763232}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4202541}, "child": {"skip": 16, "offset": 28, "next": [{"match": {"value": 876744666}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4460586}, "child": {"skip": 100, "offset": 136, "next": [], "symbols": [{"name": "tanf", "hash": "53bff9e64c6427b05b3445134c5e25bd6a5b745b", "variant": 4146981525, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 876744664}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 4460586}, "child": {"skip": 12, "offset": 48, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__kernel_cosf"}}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 0}, "child": {"skip": 176, "offset": 232, "next": [], "symbols": [{"name": "cosf", "hash": "4abe8df831f4db7d496ac5c2c54595fe9ce7b26a", "variant": 187323515, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__kernel_sinf"}}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 8237}, "child": {"skip": 184, "offset": 240, "next": [], "symbols": [{"name": "sinf", "hash": "9d9761eb28a47d4ed097427bc31aeb8884f58f37", "variant": 2562808847, "library": "libm"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4204589}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006862208}, "child": {"skip": 32, "offset": 44, "next": [{"match": {"value": 341443}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 1006796799}, "child": {"skip": 260, "offset": 312, "next": [], "symbols": [{"name": "__ieee754_sqrtf", "hash": "7cefbde97b9ebada38a6e39b0e8eb053193dde86", "variant": 0, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 343491}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 1006796799}, "child": {"skip": 248, "offset": 300, "next": [], "symbols": [{"name": "__ieee754_sqrtf", "hash": "f3404a3459a86cf0c139c496bcd4a449fd261ef6", "variant": 0, "library": "libm"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1007583231}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1141596160}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 666763248}, "child": {"skip": 748, "offset": 760, "next": [], "symbols": [{"name": "__kernel_tanf", "hash": "da0a7254248cfd89cafae3e6ddc2ecce4b53f440", "variant": 2830302575, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 666763104}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 10512429}, "child": {"skip": 96, "offset": 108, "next": [], "symbols": [{"name": "_sprintf_r", "hash": "c648a4a287f995665daf9aaac2926fb2212ea71b", "variant": 517434298, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006862335}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1141334016}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 666763248}, "child": {"skip": 748, "offset": 760, "next": [], "symbols": [{"name": "__kernel_tanf", "hash": "8bd299aef0b1a444bb86340ddd534507fc7f0270", "variant": 1004987352, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 1141268480}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 878968831}, "child": {"skip": 168, "offset": 180, "next": [], "symbols": [{"name": "scalbnf", "hash": "4998b910fb9d7a35227fe19f1f2d7a015f65cbea", "variant": 2178098024, "library": "libm"}, {"name": "scalbnf", "hash": "4998b910fb9d7a35227fe19f1f2d7a015f65cbea", "variant": 2178098024, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 266303}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 878968831}, "child": {"skip": 36, "offset": 48, "next": [], "symbols": [{"name": "fabs", "hash": "d34d687b6f2dc0b73240d60b413f432f185cf4df", "variant": 0, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 1141137408}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 878968831}, "child": {"skip": 24, "offset": 36, "next": [{"match": {"value": 1149265920}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 272629778}, "child": {"skip": 136, "offset": 180, "next": [], "symbols": [{"name": "cosf", "hash": "29db7260cc62e30d7d6a940185e2989a47f1aa6e", "variant": 1923369025, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 339738631}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 8237}, "child": {"skip": 140, "offset": 184, "next": [], "symbols": [{"name": "sinf", "hash": "c69d88db30d24c62ace8ea543cdcc051bbd365be", "variant": 2568495536, "library": "libm"}]}}], "symbols": []}}], "symbols": []}}])PS2SDB", 8192}, + std::string_view{R"PS2SDB(, "symbols": []}}, {"match": {"value": 666763104}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 10510381}, "child": {"skip": 96, "offset": 108, "next": [], "symbols": [{"name": "_sprintf_r", "hash": "aa6c26b7608abce4d8ecf40e16fe3718a1dbac19", "variant": 517434298, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 268348}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 202815}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 270399}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006796799}, "child": {"skip": 56, "offset": 72, "next": [], "symbols": [{"name": "isinf", "hash": "4bf661264efb0faaa887c8ca1fd7398a78fd43b3", "variant": 0, "library": "libm"}, {"name": "isinf", "hash": "4bf661264efb0faaa887c8ca1fd7398a78fd43b3", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 266303}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006993407}, "child": {"skip": 40, "offset": 56, "next": [], "symbols": [{"name": "isnan", "hash": "3166d5146dd5c78ca58674e70bdd0ff3b85b4af8", "variant": 0, "library": "libm"}, {"name": "isnan", "hash": "3166d5146dd5c78ca58674e70bdd0ff3b85b4af8", "variant": 0, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 266303}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 202815}, "child": {"skip": 44, "offset": 56, "next": [], "symbols": [{"name": "isnan", "hash": "03aba122ac3681cad8a0122731bb49ed55b9a540", "variant": 0, "library": "libm"}, {"name": "isnan", "hash": "03aba122ac3681cad8a0122731bb49ed55b9a540", "variant": 0, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 266300}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 135231}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 270399}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006862335}, "child": {"skip": 20, "offset": 36, "next": [{"match": {"value": 1006993392}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 8527909}, "child": {"skip": 28, "offset": 72, "next": [], "symbols": [{"name": "isinf", "hash": "f7f34b7484424ca83c922e254a0ea899091ba995", "variant": 0, "library": "libm"}, {"name": "isinf", "hash": "f7f34b7484424ca83c922e254a0ea899091ba995", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 1006862320}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 8527909}, "child": {"skip": 12, "offset": 56, "next": [], "symbols": [{"name": "isnan", "hash": "d80aa9725302177205136c75fabcf509c29d3f58", "variant": 0, "library": "libm"}, {"name": "isnan", "hash": "d80aa9725302177205136c75fabcf509c29d3f58", "variant": 0, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 268351}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006993407}, "child": {"skip": 56, "offset": 72, "next": [], "symbols": [{"name": "isinf", "hash": "0b5ee578fb685f779c6fb2fb31c8e8b8bcd0f374", "variant": 0, "library": "libm"}, {"name": "isinf", "hash": "0b5ee578fb685f779c6fb2fb31c8e8b8bcd0f374", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 333884}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 202815}, "child": {"skip": 12, "offset": 28, "next": [{"match": {"value": 666763232}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 202812}, "child": {"skip": 284, "offset": 320, "next": [], "symbols": [{"name": "__divdi3", "hash": "b24c819373bb38521f96f9098d6c751d3242a0f1", "variant": 2513786559, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 666763216}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 202812}, "child": {"skip": 284, "offset": 320, "next": [], "symbols": [{"name": "__moddi3", "hash": "38bcf1b2b4102bb086230e23a452de7cb34f341e", "variant": 2301374389, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 268351}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 135231}, "child": {"skip": 60, "offset": 72, "next": [], "symbols": [{"name": "isinf", "hash": "d7bd34ce4d1cf8dab170f5177c29b77b51e4b08c", "variant": 0, "library": "libm"}, {"name": "isinf", "hash": "d7bd34ce4d1cf8dab170f5177c29b77b51e4b08c", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 333887}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 135231}, "child": {"skip": 64, "offset": 76, "next": [], "symbols": [{"name": "__muldi3", "hash": "c4261b885c5a897df65b66f7b91f77a5f2b7908a", "variant": 0, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 358463}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 135231}, "child": {"skip": 64, "offset": 76, "next": [], "symbols": [{"name": "__muldi3", "hash": "5cac63af86a8ad90722b57c74ef0f40eec7736b1", "variant": 0, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 333884}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 135231}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 666763232}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 135203}, "child": {"skip": 284, "offset": 304, "next": [], "symbols": [{"name": "__divdi3", "hash": "044708db6818cb60ac8e1a3f63148c92af90f54c", "variant": 1460999665, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 666763216}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 135203}, "child": {"skip": 284, "offset": 304, "next": [], "symbols": [{"name": "__moddi3", "hash": "48ab19d8feced98d28a52921e11f6155b829ad1c", "variant": 1555940087, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 290876}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1007517695}, "child": {"skip": 64, "offset": 72, "next": [], "symbols": [{"name": "isinf", "hash": "6a9ad1daee429dcb253cb6e67736fdf941581ffb", "variant": 0, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 292924}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1007583231}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1013823}, "child": {"skip": 44, "offset": 56, "next": [], "symbols": [{"name": "isnan", "hash": "71d6c4fb65a7e6ee10bb23493f322efa17697a87", "variant": 0, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 356412}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1013823}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 666763232}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1013795}, "child": {"skip": 276, "offset": 296, "next": [], "symbols": [{"name": "__divdi3", "hash": "8a94cfde99b835e5e484169a62cd1d7c5c19b408", "variant": 1460999665, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 666763216}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1013795}, "child": {"skip": 284, "offset": 304, "next": [], "symbols": [{"name": "__moddi3", "hash": "4dc6f93e4e4acd77f3cb5e9822350fdb1f5cf16a", "variant": 1555940087, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1141727232}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1007452159}, "child": {"skip": 32, "offset": 40, "next": [], "symbols": [{"name": "copysignf", "hash": "3ae6c95218fc6fb46ab747d04ae5cf74155e2001", "variant": 0, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 1141792768}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1007648767}, "child": {"skip": 16, "offset": 24, "next": [], "symbols": [{"name": "fabsf", "hash": "2adfaa394adb7274642c9da73b855d6ef02dbd3a", "variant": 0, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 1141858304}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1007583231}, "child": {"skip": 204, "offset": 212, "next": [], "symbols": [{"name": "floorf", "hash": "5a731911946f37ab5e700147a3694cec68011b24", "variant": 3504503367, "library": "libm"}]}}], "symbols": []}}, {"match": {)PS2SDB", 8192}, + std::string_view{R"PS2SDB("value": 1141268480}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 666763248}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707456}, "child": {"skip": 60, "offset": 72, "next": [{"match": {"value": 874640073}, "child": {"skip": 0, "offset": 76, "next": [{"match": {"value": 1149345792}, "child": {"skip": 120, "offset": 200, "next": [], "symbols": [{"name": "scalbnf", "hash": "2926b05b163b7046fd2d9d01650244d6802cf677", "variant": 1299481273, "library": "libm"}, {"name": "scalbnf", "hash": "2926b05b163b7046fd2d9d01650244d6802cf677", "variant": 1299481273, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 874640074}, "child": {"skip": 0, "offset": 76, "next": [{"match": {"value": 1149345792}, "child": {"skip": 120, "offset": 200, "next": [], "symbols": [{"name": "scalbnf", "hash": "5d2e13a18aa4352f6b656f99fb1be4bc89b1cfca", "variant": 1299481273, "library": "libm"}, {"name": "scalbnf", "hash": "5d2e13a18aa4352f6b656f99fb1be4bc89b1cfca", "variant": 1299481273, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 0}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 398787}, "child": {"skip": 132, "offset": 144, "next": [], "symbols": [{"name": "modff", "hash": "9967737aaea0eca7e15dc6fa37b83dbdcd4bb310", "variant": 0, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 398787}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 809631999}, "child": {"skip": 128, "offset": 140, "next": [], "symbols": [{"name": "modff", "hash": "81ca62a7404a77eda4f43d3692a392b55131d8cc", "variant": 0, "library": "libm"}, {"name": "modff", "hash": "81ca62a7404a77eda4f43d3692a392b55131d8cc", "variant": 0, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006796799}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1141334016}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 876806143}, "child": {"skip": 160, "offset": 172, "next": [], "symbols": [{"name": "scalbnf", "hash": "8ef6aa844fc32ee72556a823c8ff3df6666144a8", "variant": 732780278, "library": "libm"}, {"name": "scalbnf", "hash": "8ef6aa844fc32ee72556a823c8ff3df6666144a8", "variant": 732780278, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 1141137408}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 876806143}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 666763232}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8525860}, "child": {"skip": 1020, "offset": 1040, "next": [], "symbols": [{"name": "__ieee754_acosf", "hash": "4c69187f8fc707050e43de4274b6039320a85822", "variant": 3892083198, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 1006842367}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 8527908}, "child": {"skip": 308, "offset": 328, "next": [], "symbols": [{"name": "__kernel_cosf", "hash": "83dfcdbcb5f6ecdfc2768e237118b55796302423", "variant": 0, "library": "libm"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1141071872}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 876806143}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1007026303}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 6426660}, "child": {"skip": 204, "offset": 224, "next": [], "symbols": [{"name": "__ieee754_sqrtf", "hash": "f3d5b02ce268e674303523edd338e3686f93e50e", "variant": 0, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 1006960767}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 6426660}, "child": {"skip": 200, "offset": 220, "next": [], "symbols": [{"name": "__ieee754_sqrtf", "hash": "c0f3b19fe61ec86f3b21fe55f1bcb2d093905f77", "variant": 1903693819, "library": "libm"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 268351}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 876806143}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1007107647}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 6428708}, "child": {"skip": 540, "offset": 560, "next": [], "symbols": [{"name": "__kernel_sin", "hash": "a84d536624b6af6e861104ebdc25a8937894a9ff", "variant": 485159842, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 270396}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 6428708}, "child": {"skip": 20, "offset": 40, "next": [], "symbols": [{"name": "fabs", "hash": "5ae9429e8dc625e1a66c96c7dd733f092af72d63", "variant": 0, "library": "libm"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1141202944}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 876806143}, "child": {"skip": 236, "offset": 248, "next": [], "symbols": [{"name": "__kernel_sinf", "hash": "788291a79b0106080e5040e3a591df51b0a7f9e6", "variant": 0, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 272447}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 876806143}, "child": {"skip": 24, "offset": 36, "next": [{"match": {"value": 341835783}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 1006796783}, "child": {"skip": 204, "offset": 248, "next": [], "symbols": [{"name": "cos", "hash": "07c981570004391bdfe28fbcef0d53568b817f54", "variant": 244988111, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 341835784}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 1006796783}, "child": {"skip": 204, "offset": 248, "next": [], "symbols": [{"name": "sin", "hash": "355c3f4995c5b71e2b45fa5339f01d6a96316237", "variant": 1787701159, "library": "libm"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 274495}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 876806143}, "child": {"skip": 1808, "offset": 1820, "next": [], "symbols": [{"name": "__ieee754_acos", "hash": "387f46deded592cf72799b2b546c663907a69069", "variant": 758175391, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 342079}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 876806143}, "child": {"skip": 1004, "offset": 1016, "next": [], "symbols": [{"name": "__ieee754_fmod", "hash": "239b62b5c92187ed0f746d36a040600acc7ce16b", "variant": 2337177791, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 1006862336}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 876806143}, "child": {"skip": 16, "offset": 28, "next": [], "symbols": [{"name": "copysignf", "hash": "c4ce5266b36e929a791187b9e1e1c6b03464230c", "variant": 0, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1007648767}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1141596160}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 904921087}, "child": {"skip": 160, "offset": 172, "next": [], "symbols": [{"name": "scalbnf", "hash": "b2d4d3ec401f84fcaf71fe7497c61b1b63433da1", "variant": 732780278, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 1141792768}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 904921087}, "child": {"skip": 208, "offset": 220, "next": [], "symbols": [{"name": "__ieee754_sqrtf", "hash": "99a729bd2d31b47457a5e3889ff9cb4654eb11e0", "variant": 1903693819, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 290879}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 904921087}, "child": {"skip": 24, "offset": 36, "next": [], "symbols": [{"name": "fabs", "hash": "8916b73c519a1857924fc9f648b5491b253aa09b", "variant": 0, "library": "libm"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1007517695}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1141858304}, "child": {"skip": 8, "offset": 16, "next": [{"match": {"value": 1007566665}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4290707472}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 902696922}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 32340004}, "child": {"skip": 76, "offset": 108, "next": [], "symbols": [{"name": )PS2SDB", 8192}, + std::string_view{R"PS2SDB("tanf", "hash": "4d46c225182e37cd8d9119f0c02797dbab242504", "variant": 2527410409, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 902696920}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 32340004}, "child": {"skip": 152, "offset": 184, "next": [], "symbols": [{"name": "sinf", "hash": "2768444ba9fb7a8df251c08b6ef115eb366e8308", "variant": 2568495536, "library": "libm"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707472}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1007566665}, "child": {"skip": 152, "offset": 176, "next": [], "symbols": [{"name": "cosf", "hash": "9eb0e1cac8ddeab0d414a5cffdce871a491e24c1", "variant": 2349289407, "library": "libm"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006927871}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1141006336}, "child": {"skip": 8, "offset": 16, "next": [{"match": {"value": 1006845769}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 4290707472}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 878907354}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4460580}, "child": {"skip": 76, "offset": 108, "next": [], "symbols": [{"name": "tanf", "hash": "7d900bfd3bb1638adde614c8d79014e742c36a1b", "variant": 2527410409, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 878907352}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4460580}, "child": {"skip": 152, "offset": 184, "next": [], "symbols": [{"name": "sinf", "hash": "8a0fe65d1948e1c80cb3e4f93ed6245b85e10543", "variant": 2568495536, "library": "libm"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707472}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1006845769}, "child": {"skip": 152, "offset": 176, "next": [], "symbols": [{"name": "cosf", "hash": "7dae767d5d7e589912e347f324d58a68f4a2826f", "variant": 2349289407, "library": "libm"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1174429702}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 666763248}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1007583231}, "child": {"skip": 444, "offset": 456, "next": [], "symbols": [{"name": "__ieee754_atan2f", "hash": "69976aab3a927ec5b106e893f1dd2ccd9098914f", "variant": 2564677337, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 8402989}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1141243904}, "child": {"skip": 76, "offset": 88, "next": [], "symbols": [{"name": "frexpf", "hash": "99d9c0cac26a2d4e5d7b332cb99816c48628cb1c", "variant": 0, "library": "libm"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604635160}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 617349117}, "child": {"skip": 4, "offset": 12, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 666762560}, "child": {"skip": 2832, "offset": 2852, "next": [], "symbols": [{"name": "__kernel_rem_pio2", "hash": "c63699cbfd2d18e43f4453015582330d01143735", "variant": 3911649832, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 666762480}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2947023416}, "child": {"skip": 12, "offset": 32, "next": [{"match": {"value": 4289987248}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 530560}, "child": {"skip": 2880, "offset": 2920, "next": [], "symbols": [{"name": "__kernel_rem_pio2", "hash": "c04fce1b245bb93c4dd7f68adf4f22dc6b9f0f51", "variant": 1156613429, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 4290118352}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 530560}, "child": {"skip": 2640, "offset": 2680, "next": [], "symbols": [{"name": "__kernel_rem_pio2", "hash": "98ee19e9d8dccb9c141bb5efa5e5f9078cde4159", "variant": 4009599082, "library": "libm"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1174429732}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006796799}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1141137408}, "child": {"skip": 320, "offset": 332, "next": [], "symbols": [{"name": "__kernel_cosf", "hash": "d5d8108539d610feed24d21db876577bdfca2d1f", "variant": 3229115276, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 1007648767}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1141727232}, "child": {"skip": 320, "offset": 332, "next": [], "symbols": [{"name": "__kernel_cosf", "hash": "fb9f578a14214f73425a7c782453f4879daba55c", "variant": 3229115276, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 1006993407}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1141006336}, "child": {"skip": 232, "offset": 244, "next": [], "symbols": [{"name": "__kernel_sinf", "hash": "1013be36e6b8840d8e792d5689c2236911d67beb", "variant": 421502592, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 1007517695}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1141858304}, "child": {"skip": 232, "offset": 244, "next": [], "symbols": [{"name": "__kernel_sinf", "hash": "b896b096a0c27c05ae0a11158272917d0998fa97", "variant": 421502592, "library": "libm"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006993392}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 274495}, "child": {"skip": 824, "offset": 832, "next": [], "symbols": [{"name": "__ieee754_sqrt", "hash": "f16c2560c085a6c928de4a7af28d22e1fc927055", "variant": 3263433389, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 1141336064}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1141137408}, "child": {"skip": 192, "offset": 200, "next": [{"match": {"value": 621346815}, "child": {"skip": 0, "offset": 204, "next": [{"match": {"value": 135232}, "child": {"skip": 384, "offset": 592, "next": [], "symbols": [{"name": "__ieee754_fmodf", "hash": "a1f4e0f57d7608ab8322add9be79b291c25b166b", "variant": 2296408934, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 135232}, "child": {"skip": 0, "offset": 204, "next": [{"match": {"value": 0}, "child": {"skip": 376, "offset": 584, "next": [], "symbols": [{"name": "__ieee754_fmodf", "hash": "30752a7ea3df16a842a58115fb67b94aa764cf07", "variant": 2296408934, "library": "libm"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1141073920}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006796799}, "child": {"skip": 376, "offset": 384, "next": [], "symbols": [{"name": "__ieee754_fmodf", "hash": "781e32bcca5e10514414f9f95b9f5a2821b34cbb", "variant": 767317089, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 1141530624}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1007517695}, "child": {"skip": 380, "offset": 388, "next": [], "symbols": [{"name": "__ieee754_fmodf", "hash": "c8c6d758dc115b3a47c41abab40f2117106fd782", "variant": 3973497916, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 10508333}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1007124464}, "child": {"skip": 748, "offset": 756, "next": [], "symbols": [{"name": "__ieee754_atan2", "hash": "c46ba3d5dd7f4779800e8e1f05180c339cbd972d", "variant": 1820073476, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 266303}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006862335}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 878968831}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006927888}, "child": {"skip": 16, "offset": 32, "next": [], "symbols": [{"name": "finite", "hash": "f44a0adbe2d48529677bfd48ed6844a4e25e6920", "variant": 0, "library": "libm"}, {"name": "finite", "hash": "f44a0adbe2d48529677bfd48ed6844a4e25e6920", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 1006927888}, "child": {"skip": 0, "offset": 12)PS2SDB", 8192}, + std::string_view{R"PS2SDB(, "next": [{"match": {"value": 878968831}, "child": {"skip": 16, "offset": 32, "next": [], "symbols": [{"name": "finite", "hash": "d0ec99ab00029aec9f9a6a21d9c8a04b48d96a8a", "variant": 0, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006862320}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4395044}, "child": {"skip": 4, "offset": 16, "next": [{"match": {"value": 4462625}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 200739}, "child": {"skip": 176, "offset": 200, "next": [], "symbols": [{"name": "_ulp", "hash": "ba65da2124ba431b7b127ccd6e866f83ccc38a47", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4464673}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 268323}, "child": {"skip": 160, "offset": 184, "next": [], "symbols": [{"name": "_ulp", "hash": "5ab3cf31ef7907de43bc56339d175ddf46e40a48", "variant": 0, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006731136}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1149304832}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "infinityf", "hash": "ad4edf62561882599c014ce8973ae3b357120376", "variant": 0, "library": "libm"}]}}], "symbols": []}}, {"match": {"value": 331836}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 135231}, "child": {"skip": 108, "offset": 116, "next": [], "symbols": [{"name": "__muldi3", "hash": "51fec815a1d77f5e78cfc4abac9e95f5f6e8a221", "variant": 0, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 274495}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 333887}, "child": {"skip": 88, "offset": 96, "next": [], "symbols": [{"name": "__muldi3", "hash": "ee07b99dd2a70e1d69ed49845e3d12f310201958", "variant": 0, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 342079}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 278591}, "child": {"skip": 108, "offset": 116, "next": [], "symbols": [{"name": "__muldi3", "hash": "92185ca948fd53ec52cb6bd1882c31927fca49c2", "variant": 0, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 344127}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 282687}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 346172}, "child": {"skip": 1392, "offset": 1404, "next": [], "symbols": [{"name": "__udivdi3", "hash": "fcf1abf9fac521a2d2787ea8bb347a0746b53452", "variant": 25073627, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 284735}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 346172}, "child": {"skip": 12, "offset": 24, "next": [{"match": {"value": 352321778}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 666763248}, "child": {"skip": 1456, "offset": 1488, "next": [], "symbols": [{"name": "__udivdi3", "hash": "7d44f720ae2f78f08152e6f36a1adceb31c467c0", "variant": 850851504, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 352321774}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 666763248}, "child": {"skip": 1440, "offset": 1472, "next": [], "symbols": [{"name": "__udivdi3", "hash": "4784dfc0efe49c95a484d3055b5cdb923bf85f3a", "variant": 1103455345, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2358116352}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 22573}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2358050828}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 768540674}, "child": {"skip": 164, "offset": 180, "next": [], "symbols": [{"name": "__pack_f", "hash": "1cb8a7c70f9d682328aee8fec6aa6a6f71c6163e", "variant": 0, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 3700162576}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 768540674}, "child": {"skip": 180, "offset": 196, "next": [], "symbols": [{"name": "__pack_d", "hash": "124e686eda18832b4ddb9e2601319af11c2f13e9", "variant": 0, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 768540674}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 367001703}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8392749}, "child": {"skip": 532, "offset": 548, "next": [], "symbols": [{"name": "_fpadd_parts", "hash": "b5454d8eb791a49f64e3ec94c62718febcb842c3", "variant": 3310904297, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 367001605}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 236, "offset": 252, "next": [], "symbols": [{"name": "__fpcmp_parts_d", "hash": "0c765d163b7e12c2d3a080db9a064477762db400", "variant": 0, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10510381}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 768540674}, "child": {"skip": 488, "offset": 500, "next": [], "symbols": [{"name": "_fpmul_parts", "hash": "365de64f0e6136be3db10095a78169da9066b575", "variant": 603250474, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 835649543}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 299892750}, "child": {"skip": 176, "offset": 188, "next": [], "symbols": [{"name": "_lo0bits", "hash": "878e4d3ff8ddbb173efd1789a677224cc07daea0", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 2357526548}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2357592088}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2357985296}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2357723140}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2357657608}, "child": {"skip": 92, "offset": 116, "next": [], "symbols": [{"name": "_rix_000", "hash": "d910ee1fca4ff5d4030eaa7d2b07d4d589abddc7", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2358050820}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1879100649}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1880738806}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604700673}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 835648}, "child": {"skip": 28, "offset": 64, "next": [{"match": {"value": 283115536}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 1879604872}, "child": {"skip": 132, "offset": 204, "next": [], "symbols": [{"name": "_ri0_001", "hash": "45bcde5493bc7003a0396203e62567efedee19c1", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 283115542}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 1879604872}, "child": {"skip": 156, "offset": 228, "next": [], "symbols": [{"name": "_ri0_101", "hash": "a50c77ff7306f16fdf2da984344b6cbaeb283a4b", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1880737908}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 605552641}, "child": {"skip": 52, "offset": 88, "next": [{"match": {"value": 283115542}, "child": {"skip": 0, "offset": 92, "next": [{"match": {"value": 1898477832}, "child": {"skip": 156, "offset": 252, "next": [], "symbols": [{"name": "_ri0_011", "hash": "48032e05b38cd95db24b7763b4722233d15409b1", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 283115548}, "child": {"skip": 0, "offset": 92, "next": [{"match": {"value": 1898477832}, "child": {"skip": 180, "offset": 276, "next": [], "symbols": [{"name": "_ri0_111", "hash": "25b5b82f628f946049be98b5fbfed6c2b8e15e5f", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2357657608}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1879100649}, "child": {"skip": 4, "offset": 32, "next": [{"match": {"value": 1880737908}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 605552641}, "child": {"skip": 208, "offset": 248, "next": [], "symbols": [{"name)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": "_rix_011", "hash": "5bce00f4e25eed4b6e2eb0eaea50875110d7de01", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2024275968}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 2026438656}, "child": {"skip": 180, "offset": 220, "next": [], "symbols": [{"name": "_rix_101", "hash": "5f79eaa16856c3aa5820044ee959c180df372817", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2358771728}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2358050820}, "child": {"skip": 12, "offset": 32, "next": [{"match": {"value": 2024275968}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 1597504}, "child": {"skip": 140, "offset": 180, "next": [], "symbols": [{"name": "_rix_001", "hash": "905e063b0efda9de942c6a2c81d21f3f5e894743", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 1880737908}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 604766209}, "child": {"skip": 248, "offset": 288, "next": [], "symbols": [{"name": "_rix_111", "hash": "1ec58e06a3bf19d4d0f255b0068c6c3bdfc1683a", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2357788688}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2358050820}, "child": {"skip": 4, "offset": 24, "next": [{"match": {"value": 1879100649}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 1880738806}, "child": {"skip": 84, "offset": 116, "next": [{"match": {"value": 2109865984}, "child": {"skip": 0, "offset": 120, "next": [{"match": {"value": 2109931536}, "child": {"skip": 48, "offset": 172, "next": [], "symbols": [{"name": "_rix_010", "hash": "3ca28ef9a5b0273e296b4a24e823ae05e1a5441d", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2043281408}, "child": {"skip": 0, "offset": 120, "next": [{"match": {"value": 2043609104}, "child": {"skip": 88, "offset": 212, "next": [], "symbols": [{"name": "_rix_110", "hash": "516b781fd055f275793c43d38edd0b09a8276ab2", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 606272}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604766207}, "child": {"skip": 124, "offset": 156, "next": [], "symbols": [{"name": "_rix_100", "hash": "9a4f0059af8bda817dc8508ec162e7d0124ed517", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2357395472}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2358050820}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1879100649}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1880738806}, "child": {"skip": 80, "offset": 108, "next": [{"match": {"value": 2110390272}, "child": {"skip": 0, "offset": 112, "next": [{"match": {"value": 484507631}, "child": {"skip": 68, "offset": 184, "next": [], "symbols": [{"name": "_ri0_010", "hash": "7620f9da4c78335c353e1ab5450ce0b15623269e", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2043150336}, "child": {"skip": 0, "offset": 112, "next": [{"match": {"value": 1900564744}, "child": {"skip": 92, "offset": 208, "next": [], "symbols": [{"name": "_ri0_110", "hash": "e81e47f3bf38333abef710a243f0d63513a2d424", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604831743}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 200768}, "child": {"skip": 144, "offset": 172, "next": [], "symbols": [{"name": "_ri0_100", "hash": "ff078a6e52a7e7f371f0ee1fe29a8d0f0876e742", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2358181888}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1007485055}, "child": {"skip": 76, "offset": 84, "next": [], "symbols": [{"name": "__unpack_f", "hash": "efca135122a1533f30ccf3b89dd1980fa44f98c1", "variant": 0, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 3699507200}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 10498093}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 604372991}, "child": {"skip": 48, "offset": 60, "next": [{"match": {"value": 1424097302}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 203320}, "child": {"skip": 120, "offset": 188, "next": [], "symbols": [{"name": "__unpack_d", "hash": "09397a914312280073568256b00c2e2eea12e404", "variant": 0, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 1424097298}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 203320}, "child": {"skip": 104, "offset": 172, "next": [], "symbols": [{"name": "__unpack_d", "hash": "9799d5aff375954eea3f796d822f908f103bdc58", "variant": 0, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604241919}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 203578}, "child": {"skip": 144, "offset": 156, "next": [], "symbols": [{"name": "__unpack_d", "hash": "1a95e69885eb9fe281745dbe1af66b1db6f62343", "variant": 0, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 604176448}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 6625315}, "child": {"skip": 8, "offset": 20, "next": [{"match": {"value": 65011720}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 135231}, "child": {"skip": 0, "offset": 28, "next": [], "symbols": [{"name": "_sysbitNext", "hash": "e508050391be2014956561f01c4d588451fa6d5a", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 135231}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 32, "next": [], "symbols": [{"name": "_sysbitNext", "hash": "aac526b609245877c58008164c24efea666422b0", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 3701669888}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4395055}, "child": {"skip": 12, "offset": 24, "next": [], "symbols": [{"name": "pid_cmp", "hash": "f293b1ea7d790e751f3513cc3b9a90a8a56ab7a9", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 3699572736}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 202046}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 206846}, "child": {"skip": 132, "offset": 144, "next": [], "symbols": [{"name": "__unpack_d", "hash": "bce608a0e352ed0cace4c57689d9ce717772a414", "variant": 0, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 10498093}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 604172288}, "child": {"skip": 132, "offset": 144, "next": [], "symbols": [{"name": "__unpack_d", "hash": "8a207badf6741d0042d1b6a9a0d6288f2182077d", "variant": 0, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 4141}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 16, "next": [], "symbols": [{"name": "sceHiMakeType", "hash": "e3aed8508fdd2b978f8129254eedc263d5a0a0de", "variant": 0, "library": "libhig"}, {"name": "sceHiGetType", "hash": "e3aed8508fdd2b978f8129254eedc263d5a0a0de", "variant": 0, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 200824}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4395053}, "child": {"skip": 12, "offset": 24, "next": [], "symbols": [{"name": "pid_hash", "hash": "3b5844afd77b1d3e9117b47fe90141cf924fd170", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 3700293632}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 605024256}, "child": {"skip": 136, "offset": 144, "next": [], "symbols": [{"name": "__unpack_d", "hash": "e07d6be82592fe41714eafb569770492fd9e605e", "variant": 0, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 84111)PS2SDB", 8192}, + std::string_view{R"PS2SDB(81}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 2372337664}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 753074178}, "child": {"skip": 592, "offset": 604, "next": [], "symbols": [{"name": "_fpadd_parts", "hash": "5f7b6badf1187351420622b0b88645f32ae7f63a", "variant": 2000773493, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 10516525}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 12634157}, "child": {"skip": 400, "offset": 412, "next": [], "symbols": [{"name": "sceHiGsCtxSetRect", "hash": "65e84810b07b6a52b44d62a4227feac8898918d4", "variant": 0, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 18477}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 24621}, "child": {"skip": 448, "offset": 460, "next": [], "symbols": [{"name": "op_mark", "hash": "41dcebfeffdf4efd2aadc2f74dafce58acb6cb57", "variant": 469968972, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2372075728}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 73465859}, "child": {"skip": 288, "offset": 300, "next": [], "symbols": [{"name": "op_asn1_check", "hash": "3fc673aec7b5ddce0297656b2484c5fa2da7deb0", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2359427072}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 943849474}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 339738645}, "child": {"skip": 500, "offset": 512, "next": [], "symbols": [{"name": "_fpadd_parts", "hash": "c8f7cb6f083932990649c8574ef06d91777e0a5a", "variant": 0, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 4460589}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 135228}, "child": {"skip": 60, "offset": 72, "next": [], "symbols": [{"name": "__ptmf_cast", "hash": "4d234ce3d92b66859a006c09f01291b4d615ea9a", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 4460577}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2898395136}, "child": {"skip": 48, "offset": 60, "next": [], "symbols": [{"name": "__ptmf_cast", "hash": "5dfa79a8555886f666f5c08e7394c230f0022bbf", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 2894397444}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2894200832}, "child": {"skip": 12, "offset": 24, "next": [], "symbols": [{"name": "_sceSSyn_putVoiceToTop", "hash": "adcd5f91de36fa46c960a9a5e6e2f94e4d8edd5a", "variant": 0, "library": "libssyn"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666762992}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289789968}, "child": {"skip": 456, "offset": 468, "next": [], "symbols": [{"name": "__sceEENetraw_input", "hash": "27ab3c850aa9768119d3ac03de5ddd7738beac30", "variant": 3543498764, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4288938080}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289003624}, "child": {"skip": 680, "offset": 692, "next": [], "symbols": [{"name": "dpmul", "hash": "5e8b02ba494cbe33d60ec1dc443af0e752fa17d3", "variant": 4216910511, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 20525}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290183392}, "child": {"skip": 3788, "offset": 3800, "next": [], "symbols": [{"name": "_strtod_r", "hash": "b98431dae3f60809e2033b4476982d3402553bcf", "variant": 2426588815, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 16429}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290183392}, "child": {"skip": 3828, "offset": 3840, "next": [], "symbols": [{"name": "_strtod_r", "hash": "785e59535ec1b45c88d5b18a636080f128850990", "variant": 1365998130, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4290183392}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290117840}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 14727213}, "child": {"skip": 2580, "offset": 2596, "next": [], "symbols": [{"name": "qsort", "hash": "9eb67451b377fee4b37bdf2a4b7a03b30fb09e3f", "variant": 1990620676, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4290052288}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 16824365}, "child": {"skip": 1788, "offset": 1804, "next": [], "symbols": [{"name": "BN_mod_exp_mont", "hash": "f9f8e2d88438eb612abf0c93c53816fbdca9f7ae", "variant": 1208450409, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2946760800}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 47149}, "child": {"skip": 948, "offset": 964, "next": [], "symbols": [{"name": "X509_NAME_oneline", "hash": "6bee15eae0cdbf26b61f5bfffc5de8d2272f5019", "variant": 1575533033, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707584}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2142699632}, "child": {"skip": 4, "offset": 16, "next": [{"match": {"value": 12630061}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2142568528}, "child": {"skip": 28, "offset": 52, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 2389180424}, "child": {"skip": 2056, "offset": 2116, "next": [], "symbols": [{"name": "UnwindStack__FP12ThrowContextP13ExceptionInfoPc", "hash": "5920d3e26e7a6093a7451f9134366283f6fe61ec", "variant": 85171724, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 2388852744}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 341835793}, "child": {"skip": 68, "offset": 128, "next": [{"match": {"value": 2389245960}, "child": {"skip": 0, "offset": 132, "next": [{"match": {"value": 2435973120}, "child": {"skip": 2012, "offset": 2148, "next": [], "symbols": [{"name": "UnwindStack__FP12ThrowContextP13ExceptionInfoPc", "hash": "adab55c5bea79284529cfb227de2d191103b3e8d", "variant": 2395256736, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 2389180424}, "child": {"skip": 0, "offset": 132, "next": [{"match": {"value": 2433875968}, "child": {"skip": 2012, "offset": 2148, "next": [], "symbols": [{"name": "UnwindStack__FP12ThrowContextP13ExceptionInfoPc", "hash": "86bbd3b221368e521da6821e0d8bbb4dccc6a724", "variant": 2533164625, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2388983816}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 346030099}, "child": {"skip": 2000, "offset": 2060, "next": [], "symbols": [{"name": "UnwindStack__FP12ThrowContextP13ExceptionInfoPc", "hash": "0a6c5dd0e8234e41d26ad425c75b463eff6641e9", "variant": 2905271918, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2142568528}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2142502976}, "child": {"skip": 2144, "offset": 2168, "next": [], "symbols": [{"name": "UnwindStack__FP12ThrowContextP13ExceptionInfoPc", "hash": "8ef51b3f1259020089dd4fa5ea56df39d2a07aae", "variant": 3789314592, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2143223936}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2142699632}, "child": {"skip": 28, "offset": 40, "next": [{"match": {"value": 1887483432}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 1889578536}, "child": {"skip": 8, "offset": 56, "next": [{"match": {"value": 341835793}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 1925195304}, "child": {"skip": 2104, "offset": 2168, "next": [], "symbols": [{"name": "UnwindStack__FP12ThrowContextP13ExceptionInfoPc", "hash": "8795e623292d6e0ce221fcebdf7788fe4523cac3", "variant": 3789314592, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 341835795}, "child": {"skip": 0, "offset": 60, "next": [{"match": {"value": 0}, "child": {"skip": 2080, "offset": 2144, "next": [], "symbols": [{"name": "U)PS2SDB", 8192}, + std::string_view{R"PS2SDB(nwindStack__FP12ThrowContextP13ExceptionInfoPc", "hash": "f3a92800d2749e5a25da45d3e3b2db3342867cf6", "variant": 91457050, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1887475240}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 1889570344}, "child": {"skip": 2120, "offset": 2168, "next": [], "symbols": [{"name": "UnwindStack__FP12ThrowContextP13ExceptionInfoPc", "hash": "e431f5853b94d2ce7f6ecc8fdf585e43fb68e3ed", "variant": 3789314592, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10502189}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855632}, "child": {"skip": 3196, "offset": 3208, "next": [], "symbols": [{"name": "_scePFont_Putc", "hash": "2dadd3ba788d9215c9b4c37a809f2c30cd61a0bd", "variant": 3687660966, "library": "libpfont"}]}}], "symbols": []}}, {"match": {"value": 4289724560}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 60823597}, "child": {"skip": 148, "offset": 160, "next": [{"match": {"value": 2920416144}, "child": {"skip": 0, "offset": 164, "next": [{"match": {"value": 33562669}, "child": {"skip": 216, "offset": 384, "next": [], "symbols": [{"name": "scePFontCalcRect", "hash": "816c42017b7a1a12fdcf257ce9a2a2df8ae2b816", "variant": 386919674, "library": "libpfont"}]}}], "symbols": []}}, {"match": {"value": 2920416148}, "child": {"skip": 0, "offset": 164, "next": [{"match": {"value": 33562669}, "child": {"skip": 216, "offset": 384, "next": [], "symbols": [{"name": "scePFontCalcRect", "hash": "eb7cedccef18944cadbc58ec72a77c55cb951bfa", "variant": 386919674, "library": "libpfont"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604373024}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290117856}, "child": {"skip": 608, "offset": 620, "next": [], "symbols": [{"name": "calc_clut", "hash": "b05132b02eb100b05b9d33a47eafe998ecf85f02", "variant": 4223609336, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 10285}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855680}, "child": {"skip": 624, "offset": 636, "next": [], "symbols": [{"name": "lightmap_view", "hash": "b787dd34cf783b498afc8ce8a37a0fc4f242f55f", "variant": 4113142814, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 4290642064}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290117744}, "child": {"skip": 748, "offset": 760, "next": [], "symbols": [{"name": "sppp_auth_send", "hash": "1af0a092c700347a640f6b9bad518ce61652a722", "variant": 282854809, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289986800}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289921248}, "child": {"skip": 976, "offset": 988, "next": [], "symbols": [{"name": "in_lifaddr_ioctl", "hash": "bd55025b39a88fddfca5fd57c97938c09d120f7f", "variant": 3932199778, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 604110852}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855632}, "child": {"skip": 3888, "offset": 3900, "next": [], "symbols": [{"name": "__sceEENettcp_output", "hash": "5356444e77e83038fe1d2a7528a668b5ecf1bd38", "variant": 176011024, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 604111359}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289855632}, "child": {"skip": 3884, "offset": 3896, "next": [], "symbols": [{"name": "read_response", "hash": "04979954dcffc0593a7b52fe7b35f735eb9c9bae", "variant": 3242189260, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 4289986736}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289790080}, "child": {"skip": 1348, "offset": 1360, "next": [], "symbols": [{"name": "bn_mod_exp_word", "hash": "8db553bc55f2d88889e6d98199ac8131b70b8263", "variant": 3353203374, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604110849}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290642160}, "child": {"skip": 616, "offset": 628, "next": [], "symbols": [{"name": "pk_rsa_crt_sslc", "hash": "959fe63914fe3f8a032596f9aab0f2e7a0fbd85b", "variant": 3576601294, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2357592064}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 750911490}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 339738629}, "child": {"skip": 12, "offset": 24, "next": [{"match": {"value": 1346371587}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 952238084}, "child": {"skip": 256, "offset": 288, "next": [], "symbols": [{"name": "__fpcmp_parts_d", "hash": "47d581cf70876975fab1e95b28b610f433dc5162", "variant": 0, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 272629763}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 952238084}, "child": {"skip": 188, "offset": 220, "next": [{"match": {"value": 3699572752}, "child": {"skip": 0, "offset": 224, "next": [{"match": {"value": 604241919}, "child": {"skip": 48, "offset": 276, "next": [], "symbols": [{"name": "__fpcmp_parts_d", "hash": "60b5c1831a16d4b36787e75158b4ac7064db8fc4", "variant": 0, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 2357395468}, "child": {"skip": 0, "offset": 224, "next": [{"match": {"value": 604241919}, "child": {"skip": 48, "offset": 276, "next": [], "symbols": [{"name": "__fpcmp_parts_f", "hash": "a47b9ac057715b43c7848eb66c5892b828efb0bb", "variant": 0, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8402989}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 750911490}, "child": {"skip": 28, "offset": 40, "next": [{"match": {"value": 952369156}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 2359492612}, "child": {"skip": 204, "offset": 252, "next": [], "symbols": [{"name": "_fpdiv_parts", "hash": "96d03c362b6d4008d37da65b09720ffc6f682ece", "variant": 3005332649, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 2359492612}, "child": {"skip": 0, "offset": 44, "next": [{"match": {"value": 952369156}, "child": {"skip": 204, "offset": 252, "next": [], "symbols": [{"name": "_fpdiv_parts", "hash": "7b63a0cfaee8ddfaf2c079e3ec20bc48e6403d6d", "variant": 3005332649, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 3703701504}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 809664511}, "child": {"skip": 116, "offset": 128, "next": [], "symbols": [{"name": "sceHiGsEnvSend", "hash": "e7dd6bf234c8d09a6fa3b87591ac72a2fe90395d", "variant": 0, "library": "libhig"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 605026304}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 666763232}, "child": {"skip": 192, "offset": 200, "next": [], "symbols": [{"name": "__floatdisf", "hash": "d080c164d6c526b5a1e1fd056a759b8a192d5c46", "variant": 744434984, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 666761392}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2143160016}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2142242384}, "child": {"skip": 336, "offset": 352, "next": [], "symbols": [{"name": "__sjthrow", "hash": "d030277394f29a006888f0c712cfb8bf83a31b3e", "variant": 3733408159, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 4290643664}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290709216}, "child": {"skip": 120, "offset": 136, "next": [{"match": {"value": 272629799}, "child": {"skip": 0, "offset": 140, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 232, "offset": 376, "next": [], "symbols": [{"name": "__sjthrow", "hash": "e3fdf8049020745e7f00beffbf77ca376cffe64d", "variant": 2816576198, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": )PS2SDB", 8192}, + std::string_view{R"PS2SDB(272629800}, "child": {"skip": 0, "offset": 140, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 232, "offset": 376, "next": [], "symbols": [{"name": "__sjthrow", "hash": "68f4a0dc1d42d8e94a45a5d8ae4975e2d2a03fd6", "variant": 1189145041, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2142242384}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2142307936}, "child": {"skip": 280, "offset": 296, "next": [], "symbols": [{"name": "__sjpopnthrow", "hash": "9d7e4ea99f0d264e48a55c7cfe998b631c5d27ae", "variant": 535683592, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666761488}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290643664}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290709216}, "child": {"skip": 312, "offset": 328, "next": [], "symbols": [{"name": "__sjthrow", "hash": "2ca5f0e7f66074dc27d5ab8721358d81c81c7abe", "variant": 1364119959, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 4290643568}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290709120}, "child": {"skip": 96, "offset": 112, "next": [{"match": {"value": 667026160}, "child": {"skip": 0, "offset": 116, "next": [{"match": {"value": 2411922916}, "child": {"skip": 356, "offset": 476, "next": [], "symbols": [{"name": "__throw", "hash": "6e0dd11fd083df84e6001e3c1d578970f57f79c3", "variant": 2888769804, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 667223520}, "child": {"skip": 0, "offset": 116, "next": [{"match": {"value": 667026160}, "child": {"skip": 332, "offset": 452, "next": [], "symbols": [{"name": "__throw", "hash": "648fab1367d99dd95a6c30ce4377edfa58c2f943", "variant": 754628973, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 278921265}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604635135}, "child": {"skip": 200, "offset": 208, "next": [], "symbols": [{"name": "old_find_exception_handler", "hash": "74e26514401a6345aaf406dabc09b2fe3a28afe7", "variant": 0, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 666759696}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 4289727904}, "child": {"skip": 900, "offset": 908, "next": [], "symbols": [{"name": "throw_helper", "hash": "3d5132838a5d81cba039b45e1ba3a9080067e3a4", "variant": 3388198953, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 666761568}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290643584}, "child": {"skip": 376, "offset": 388, "next": [], "symbols": [{"name": "__rethrow", "hash": "867c79a1446cc2e1352e90b67225aca60451e57a", "variant": 1094374922, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 4290643584}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290119264}, "child": {"skip": 20, "offset": 32, "next": [{"match": {"value": 60858413}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 4289725952}, "child": {"skip": 776, "offset": 816, "next": [], "symbols": [{"name": "throw_helper", "hash": "2aee875bc3966a4ee910fa860d626b755b7db9ee", "variant": 3214288664, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 8429613}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 4289857056}, "child": {"skip": 756, "offset": 796, "next": [], "symbols": [{"name": "throw_helper", "hash": "d6d5726c550303d6115ef4b9e1aad9d409f2e15f", "variant": 3510796863, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666761840}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 328, "offset": 336, "next": [], "symbols": [{"name": "__throw", "hash": "f6b0b99dc413ff866b91b3d7a3604329beb2ded6", "variant": 2617840133, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 666761584}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 372, "offset": 380, "next": [], "symbols": [{"name": "__throw", "hash": "ce0e051464a1415dbff2cdd95d66abd26326e44d", "variant": 2461329615, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 666761824}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2143159584}, "child": {"skip": 340, "offset": 352, "next": [], "symbols": [{"name": "__rethrow", "hash": "2fd27e030588d5eac5560d099e72d2ae2125a390", "variant": 2733227382, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 4289725776}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 12615725}, "child": {"skip": 1176, "offset": 1188, "next": [], "symbols": [{"name": "_sceMcFatGetDir", "hash": "c77b48f831bbba414ebc578e964e49a1d2709fd8", "variant": 2739822826, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666761472}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 180, "offset": 188, "next": [{"match": {"value": 4200493}, "child": {"skip": 0, "offset": 192, "next": [{"match": {"value": 341835780}, "child": {"skip": 288, "offset": 484, "next": [], "symbols": [{"name": "__rethrow", "hash": "37ae15625bbcec8b08bde1138f6eab6fb04cf0d8", "variant": 307014747, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 339738627}, "child": {"skip": 0, "offset": 192, "next": [{"match": {"value": 2948728288}, "child": {"skip": 276, "offset": 472, "next": [], "symbols": [{"name": "__rethrow", "hash": "6647511657f5736a6ecb404053ecbdfada70cc39", "variant": 3094609979, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2424504320}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 612630529}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 14381}, "child": {"skip": 56, "offset": 68, "next": [], "symbols": [{"name": "decode_uleb128", "hash": "9950ca099554a024f56ff89a349b7c738906eeae", "variant": 0, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 14381}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 612630529}, "child": {"skip": 56, "offset": 68, "next": [], "symbols": [{"name": "decode_uleb128", "hash": "a3733c7fdee5e10b2a59776d30152f0e37d84012", "variant": 0, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 339456}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 339459}, "child": {"skip": 68, "offset": 80, "next": [], "symbols": [{"name": "strrchr", "hash": "92d5bd6ec4f569a2a41791e2a36e7b82ebafd2a1", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 811728897}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 339738629}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 202818}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 612499457}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 268435489}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2896363520}, "child": {"skip": 136, "offset": 168, "next": [], "symbols": [{"name": "__DecodeUnsignedNumber__FPcPUi", "hash": "ea542409a055e87ac55dbd0dcdc70376f03781f2", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 268435487}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2896363520}, "child": {"skip": 128, "offset": 160, "nex)PS2SDB", 8192}, + std::string_view{R"PS2SDB(t": [], "symbols": [{"name": "__DecodeUnsignedNumber__FPcPUi", "hash": "a8aa232ec60fedb93dcd92a9cf55431a5803d954", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 200770}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2896297984}, "child": {"skip": 136, "offset": 160, "next": [], "symbols": [{"name": "__DecodeUnsignedNumber__FPcPUi", "hash": "292cf668a7bb5a4267cd5b0a7fd3961659a03b4d", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 339738628}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 200770}, "child": {"skip": 140, "offset": 156, "next": [], "symbols": [{"name": "__DecodeUnsignedNumber__FPcPUi", "hash": "632fa46caf32dfd3d02e3ddd6c331629c7e77ba7", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 1413480453}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2424700929}, "child": {"skip": 140, "offset": 156, "next": [], "symbols": [{"name": "__DecodeUnsignedNumber__FPcPUi", "hash": "d855bdf86c707e7019dda90754269f6794d8c8b0", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604110849}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 341966862}, "child": {"skip": 64, "offset": 76, "next": [], "symbols": [{"name": "sceSynthsizerGetDrumPatch", "hash": "11a60499e1305afbbf650d98164499f3771d712e", "variant": 0, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 604111103}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 341966859}, "child": {"skip": 136, "offset": 148, "next": [], "symbols": [{"name": "in_mask2len", "hash": "33f7d2b22593f5a09296c0b48c902d343bf972e5", "variant": 0, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 274726971}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 12333}, "child": {"skip": 240, "offset": 252, "next": [], "symbols": [{"name": "url_decoded_len", "hash": "2582034606e863ff9294f6445881d02d0d3d6783", "variant": 1644047408, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604241930}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 200962}, "child": {"skip": 16, "offset": 28, "next": [], "symbols": [{"name": "bcd_to_int", "hash": "54892642efac633e88b13b93b2c436a4277767a4", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2357854208}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 2362114048}, "child": {"skip": 132, "offset": 140, "next": [], "symbols": [{"name": "add_fdes", "hash": "2ae784cb96a021ee6b14af4d3024628172c90951", "variant": 0, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 666762000}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 4289856704}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289922248}, "child": {"skip": 428, "offset": 440, "next": [], "symbols": [{"name": "__frame_state_for", "hash": "cf85c25dbc55945006705b6c6fc6f732208f46e4", "variant": 603156683, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 4289725600}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 10518573}, "child": {"skip": 1596, "offset": 1608, "next": [], "symbols": [{"name": "_sceMcFatCreateFile", "hash": "b76cd2b241a2047674dcb0c9fe6383f2c24668c0", "variant": 524187263, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666762304}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 4290118544}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290184096}, "child": {"skip": 460, "offset": 472, "next": [], "symbols": [{"name": "__frame_state_for", "hash": "8e8c2231fd032bed924be3849f160cfde009dcf4", "variant": 3682553574, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 4289921888}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290118544}, "child": {"skip": 444, "offset": 456, "next": [], "symbols": [{"name": "__frame_state_for", "hash": "3c761d2d9273f7be6b0c5c311330da825f7d2ee9", "variant": 1639869897, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 816054271}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2946695956}, "child": {"skip": 952, "offset": 964, "next": [], "symbols": [{"name": "sceNetcnfifLoadEntryAuto", "hash": "3809ada5982823ec73f0fb819a7ab9a591eb4db9", "variant": 2926190119, "library": "netcnfif"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 276824070}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 604241919}, "child": {"skip": 20, "offset": 36, "next": [], "symbols": [{"name": "__sceEENetsplunlock", "hash": "33da1ebcd4cf2ea9c69de3a5541c0d23053551f1", "variant": 1529816720, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2894528524}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 20, "offset": 36, "next": [], "symbols": [{"name": "__rtti_class", "hash": "1935a1c567f63dd741246966b1bef2ccb8cb40bb", "variant": 3118959500, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 2894462988}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 20, "offset": 36, "next": [], "symbols": [{"name": "__rtti_attr", "hash": "d0253d4e5c8560af910660eeec3ba28272ec199e", "variant": 3118959500, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 6189}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 604110849}, "child": {"skip": 92, "offset": 104, "next": [], "symbols": [{"name": "sceIpuSync", "hash": "c4251b03a67915c4c0f0851ee6fbd65bd92f0f6d", "variant": 0, "library": "libipu"}]}}], "symbols": []}}, {"match": {"value": 818282751}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 48, "offset": 60, "next": [], "symbols": [{"name": "sceSSyn_SetPortMaxPoly", "hash": "e0579a0a082473be0c5714c058a1e0c7de2d07f2", "variant": 295801858, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 604241919}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 604110849}, "child": {"skip": 48, "offset": 60, "next": [], "symbols": [{"name": "SSLCERT_get_flag", "hash": "469d8a096e57e813d7a2903f5ac45abfffe4e393", "variant": 1634873311, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 0}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 278921220}, "child": {"skip": 24, "offset": 36, "next": [], "symbols": [{"name": "R_set_locked_mem_functions", "hash": "9a7100b118c87f666047ec100f07569401ade487", "variant": 2269347079, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 276824069}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2894462984}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "__rtti_si", "hash": "94c82b46f37a2e39e31c7921efe673153575ed0f", "variant": 3118959500, "library": "libgcc"}, {"name": "__rtti_ptr", "hash": "94c82b46f37a2e39e31c7921efe673153575ed0f", "variant": 3118959500, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 604110849}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 276955142}, "child": {"skip": 12, "offset": 24, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 268435458}, "child": {"skip": 16, "offset": 48, "next": [], "symbols": [{"name":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "sceSSyn_SetOutputMode", "hash": "481bd3eeca04a66d1c4086261820cd2cf385ba0f", "variant": 242985140, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 268435458}, "child": {"skip": 16, "offset": 48, "next": [], "symbols": [{"name": "sceSSyn_SetTvaEnvMode", "hash": "f1041c4afbd28d261f08a769772805c9748d93af", "variant": 242985140, "library": "libssyn"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604176385}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 277020678}, "child": {"skip": 36, "offset": 48, "next": [], "symbols": [{"name": "SSLCERT_set_flag", "hash": "2e9fcbb3bc5c68f0bca63dec30e70a8bc1dfede4", "variant": 242985140, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 276824068}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 268435460}, "child": {"skip": 24, "offset": 40, "next": [], "symbols": [{"name": "sceHiGsCtxSetDefault", "hash": "c43bb9ad412e7cd9ce991ab3a024be3002ee307d", "variant": 648587775, "library": "libhig"}, {"name": "sceHiGsEnvSetDefault", "hash": "c43bb9ad412e7cd9ce991ab3a024be3002ee307d", "variant": 648587775, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 2894397440}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 608305152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 12, "offset": 28, "next": [], "symbols": [{"name": "__rtti_user", "hash": "af222147e7445d8320aaa872031a5dc18fb59773", "variant": 3118959500, "library": "libgcc"}, {"name": "__rtti_func", "hash": "af222147e7445d8320aaa872031a5dc18fb59773", "variant": 3118959500, "library": "libgcc"}, {"name": "__rtti_ptmf", "hash": "af222147e7445d8320aaa872031a5dc18fb59773", "variant": 3118959500, "library": "libgcc"}, {"name": "__rtti_ptmd", "hash": "af222147e7445d8320aaa872031a5dc18fb59773", "variant": 3118959500, "library": "libgcc"}, {"name": "__rtti_array", "hash": "af222147e7445d8320aaa872031a5dc18fb59773", "variant": 3118959500, "library": "libgcc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 816185343}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 872611839}, "child": {"skip": 32, "offset": 44, "next": [], "symbols": [{"name": "sceSynthesizerGetPartial", "hash": "7e62a95772a91ce7c7e2556ce4b2b7be744d212b", "variant": 0, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 0}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2156068864}, "child": {"skip": 64, "offset": 76, "next": [], "symbols": [{"name": "istoken", "hash": "82db21c43f9bbdf6d60e1fb666e953f7a5cd6d2c", "variant": 2744289042, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2357985280}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 764346370}, "child": {"skip": 240, "offset": 248, "next": [], "symbols": [{"name": "_fpdiv_parts", "hash": "2311bfd75d504bfb1262d8d0fcf3f9a6e4982676", "variant": 490849365, "library": "libgcc"}]}}], "symbols": []}}, {"match": {"value": 75563010}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 8392749}, "child": {"skip": 12, "offset": 20, "next": [], "symbols": [{"name": "abs", "hash": "ac4a494a6ad240bd9f0d86a005f635ad71b1242e", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 10879000}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 666763232}, "child": {"skip": 180, "offset": 188, "next": [], "symbols": [{"name": "_calloc_r", "hash": "9139bbb5c5b22eda115d4f44f64cdaea38354bd6", "variant": 1748336410, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 614662163}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 666763216}, "child": {"skip": 4, "offset": 12, "next": [{"match": {"value": 4289921048}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724416}, "child": {"skip": 1812, "offset": 1832, "next": [], "symbols": [{"name": "_malloc_r", "hash": "ffddd27f2fb714cb9c2b16934a7ca709ac1841db", "variant": 3270037913, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4289855504}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289724416}, "child": {"skip": 1756, "offset": 1776, "next": [], "symbols": [{"name": "_malloc_r", "hash": "dd0d0b11999106f0a5d0269f03d3df438807febe", "variant": 1479874297, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 750911504}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 339738662}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 816120063}, "child": {"skip": 212, "offset": 224, "next": [], "symbols": [{"name": "memchr", "hash": "a7478d18a4bd9c68327bffa91658ddfbb2455383", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 339738641}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 8720421}, "child": {"skip": 136, "offset": 148, "next": [], "symbols": [{"name": "memcmp", "hash": "0ba37c83649d64eed3653c25aed313c37837f24e", "variant": 0, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 333884}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 266300}, "child": {"skip": 368, "offset": 376, "next": [], "symbols": [{"name": "memcpy", "hash": "29ee4f7c4fc7f366d451deb8b9bde025e0b10543", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 750911496}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 339738654}, "child": {"skip": 156, "offset": 164, "next": [{"match": {"value": 610467841}, "child": {"skip": 0, "offset": 168, "next": [{"match": {"value": 0}, "child": {"skip": 20, "offset": 192, "next": [], "symbols": [{"name": "memset", "hash": "c8a6d5069c852620e9e442efe7dcdf89d8c18069", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 0}, "child": {"skip": 0, "offset": 168, "next": [{"match": {"value": 0}, "child": {"skip": 20, "offset": 192, "next": [], "symbols": [{"name": "memset", "hash": "c5798fb1d3634c7fc6d43ebf0d169013db79ac59", "variant": 0, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 278921224}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2359427076}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2357461068}, "child": {"skip": 28, "offset": 44, "next": [], "symbols": [{"name": "_Bfree", "hash": "49398f4ad5b2868d1f945f6bf1bb550cbd3f1f80", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 2360279044}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2358050892}, "child": {"skip": 28, "offset": 44, "next": [], "symbols": [{"name": "_Bfree", "hash": "2938b4c9317510bc47383cb3736b1a2fafbfa714", "variant": 0, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604110857}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 618856456}, "child": {"skip": 8, "offset": 16, "next": [{"match": {"value": 4289986592}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 14721069}, "child": {"skip": 284, "offset": 308, "next": [], "symbols": [{"name": "_s2b", "hash": "e937f72cac25b77b629fc6ad249041319dd3b763", "variant": 84093852, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4289724416}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 604569601}, "child": {"skip": 284, "offset": 308, "next": [], "symbols": [{"name": "_s2b", "hash": "79057540dcda9d54ab1465ad83dc1412bcdcdd39", "variant": 84093852, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604962825}, "child": {"skip": 0, "offset": 4, "next": [{"matc)PS2SDB", 8192}, + std::string_view{R"PS2SDB(h": {"value": 619577352}, "child": {"skip": 292, "offset": 300, "next": [], "symbols": [{"name": "_s2b", "hash": "4a90b361dbbdd881a971fe9cb6c0f0d1a9a2301a", "variant": 400013339, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 1007681535}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 9402404}, "child": {"skip": 116, "offset": 124, "next": [], "symbols": [{"name": "_hi0bits", "hash": "5a68598d09824c8986d017a863f045ce58e5db40", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 2359492624}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 2357329936}, "child": {"skip": 96, "offset": 104, "next": [], "symbols": [{"name": "__mcmp", "hash": "50a8c938b768040bcd583b0b9e66ecd18e577060", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 2358181904}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 2360213520}, "child": {"skip": 92, "offset": 100, "next": [], "symbols": [{"name": "__mcmp", "hash": "c5dab718a0dedfaced70acfc5c3aaab50e14ac84", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 1006796784}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 270399}, "child": {"skip": 200, "offset": 208, "next": [], "symbols": [{"name": "_ulp", "hash": "b7b495b433ca0116e244f55a26d66c6b1884d2aa", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 270399}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006796784}, "child": {"skip": 144, "offset": 152, "next": [], "symbols": [{"name": "_ulp", "hash": "aeec96123e49e331be66b08db91ea73da785017a", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 1007583216}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 292927}, "child": {"skip": 172, "offset": 180, "next": [], "symbols": [{"name": "_ulp", "hash": "dab75504e1e5da2bc62f858e897a4e20f629204f", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 8732709}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 822214663}, "child": {"skip": 316, "offset": 324, "next": [], "symbols": [{"name": "strcmp", "hash": "2e820dc5ff48fa4533e147cd93c4b2c646cb6a55", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 813826055}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 339738691}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 8402989}, "child": {"skip": 300, "offset": 312, "next": [], "symbols": [{"name": "strlen", "hash": "9e51fc34ec6c9d17f1ddbc65198e7e829ed4936f", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 339738714}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 816120063}, "child": {"skip": 104, "offset": 116, "next": [{"match": {"value": 1894204297}, "child": {"skip": 0, "offset": 120, "next": [{"match": {"value": 1883640969}, "child": {"skip": 88, "offset": 212, "next": [{"match": {"value": 4397093}, "child": {"skip": 0, "offset": 216, "next": [{"match": {"value": 1348534240}, "child": {"skip": 180, "offset": 400, "next": [], "symbols": [{"name": "strchr", "hash": "5805a9aa176fe7c27519cbdbfe3a24423109fafb", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4395045}, "child": {"skip": 0, "offset": 216, "next": [{"match": {"value": 1348534240}, "child": {"skip": 180, "offset": 400, "next": [], "symbols": [{"name": "strchr", "hash": "d264d4334cb30d101da40c3b557568ad3e20a3c4", "variant": 0, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1883640969}, "child": {"skip": 0, "offset": 120, "next": [{"match": {"value": 1883380649}, "child": {"skip": 276, "offset": 400, "next": [], "symbols": [{"name": "strchr", "hash": "15267e273ebd8210e92bec01505375ae74e0d42b", "variant": 0, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 268435458}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 4141}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608305153}, "child": {"skip": 36, "offset": 48, "next": [], "symbols": [{"name": "strlen", "hash": "b13f17db7d444ddd0ea519e7acf38c69af7b9cca", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 8392749}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 612630529}, "child": {"skip": 80, "offset": 92, "next": [], "symbols": [{"name": "strcspn", "hash": "9c834db59a49a5ff789450395d0c98030a566e0f", "variant": 0, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666762112}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604636160}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289725536}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8421421}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289791080}, "child": {"skip": 72, "offset": 92, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "vfprintf"}}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 2946498584}, "child": {"skip": 80, "offset": 180, "next": [], "symbols": [{"name": "__sbprintf", "hash": "aabb4e9cb0a244daa2403e46efbf7ce92feac6f3", "variant": 1021645020, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "vfiprintf"}}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 2946498584}, "child": {"skip": 80, "offset": 180, "next": [], "symbols": [{"name": "__sbprintf", "hash": "aabb4e9cb0a244daa2403e46efbf7ce92feac6f3", "variant": 3859199632, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 665518176}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289791080}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8421421}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4290708592}, "child": {"skip": 152, "offset": 180, "next": [], "symbols": [{"name": "__sbprintf", "hash": "7fa2c821f505503f8ae5d0a9ccdea426275f8864", "variant": 1021645020, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4290708592}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 8421421}, "child": {"skip": 152, "offset": 180, "next": [], "symbols": [{"name": "__sbprintf", "hash": "8bf27d4dabdcc2a161cba4d268f2374f948996ba", "variant": 1021645020, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 665387104}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4289791080}, "child": {"skip": 156, "offset": 176, "next": [], "symbols": [{"name": "__sbprintf", "hash": "8f18166fcbc1c6f38d1ab7443b86008ee1c2000b", "variant": 1021645020, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604438784}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290053216}, "child": {"skip": 212, "offset": 224, "next": [], "symbols": [{"name": "GetInterfaceID", "hash": "638168b963784e39b697256bfaf01ab9fe1f365e", "variant": 389848212, "library": "libnet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666762096}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604636160}, "child": {"skip": 84, "offset": 92, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "vfprintf"}}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 2946498584}, "child": {"skip": 80, "offset": 180, "next": [], "symbols": [{"name": "__sbprintf", "hash": "cb5b6a1688a88c704dfc46c31625551147ba7c25", "variant": 1021645020, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "vfiprintf"}}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 2946498584}, "child": {"skip": 80, "offset": 180, "next": [], "symbols": [{"name": "__sbprintf", "hash": "cb5b6a1688a88c704dfc46c31625551147ba7c25", "variant": 3859199632, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666762608}, ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 4289724992}, "child": {"skip": 104, "offset": 112, "next": [{"match": {"value": 339740019}, "child": {"skip": 0, "offset": 116, "next": [{"match": {"value": 604176383}, "child": {"skip": 5624, "offset": 5744, "next": [], "symbols": [{"name": "_vfprintf_r", "hash": "b7a706ab40a65e4c297158eb4ef80044a5deb508", "variant": 2793611820, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 339740015}, "child": {"skip": 0, "offset": 116, "next": [{"match": {"value": 604176383}, "child": {"skip": 5608, "offset": 5728, "next": [], "symbols": [{"name": "_vfprintf_r", "hash": "1e4541ade43162a9455371cce2a8d4633556d542", "variant": 978072294, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666762544}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 4289987184}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724976}, "child": {"skip": 5388, "offset": 5400, "next": [], "symbols": [{"name": "_vfprintf_r", "hash": "acfa09c33c351eba0418abf9189906d7fb2a08df", "variant": 1821133103, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4289725072}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289856176}, "child": {"skip": 268, "offset": 280, "next": [], "symbols": [{"name": "_sceMcFatSetAttr", "hash": "1f15dcceb8552df4b2757b4b49787d0ba1d3693b", "variant": 3379694439, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 4289790624}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289856176}, "child": {"skip": 276, "offset": 288, "next": [], "symbols": [{"name": "_sceMcFatGetEntSpace", "hash": "9a6e08089bdf0c7b7b4d4fb395e6b0f2570fd9ce", "variant": 2325312321, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666762512}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 4290642640}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289987216}, "child": {"skip": 5524, "offset": 5536, "next": [], "symbols": [{"name": "_vfprintf_r", "hash": "f8dbb12c7f472ba6241b877b2760a55855ae4f65", "variant": 297863192, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 16429}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289725088}, "child": {"skip": 3108, "offset": 3120, "next": [{"match": {"value": 3858759680}, "child": {"skip": 0, "offset": 3124, "next": [{"match": {"value": 2074608272}, "child": {"skip": 84, "offset": 3212, "next": [], "symbols": [{"name": "__svfscanf", "hash": "03cd177522901e1d78eb4d8d49ea8ea3e2d80f15", "variant": 736435614, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 2919366656}, "child": {"skip": 0, "offset": 3124, "next": [{"match": {"value": 2074608272}, "child": {"skip": 84, "offset": 3212, "next": [], "symbols": [{"name": "__svfscanf", "hash": "af4c52fb6a2448c74752681e474f1b033b6f4755", "variant": 736435614, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289725056}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289987264}, "child": {"skip": 376, "offset": 388, "next": [], "symbols": [{"name": "_sceMcFatChDir", "hash": "9e8cd5e2ed486526f5bd345b0163454849dbd6b0", "variant": 2812643571, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 604241937}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289856176}, "child": {"skip": 392, "offset": 404, "next": [], "symbols": [{"name": "_sce_eenet_delete_arp", "hash": "d3d36b6af2465a97e2f825fdb728fabe97527062", "variant": 2053782684, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4290183872}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 60825645}, "child": {"skip": 728, "offset": 740, "next": [], "symbols": [{"name": "dsa_sign_cb", "hash": "7d38275348deb65aed8976887203da3c3343b104", "variant": 349538654, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666762624}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289921584}, "child": {"skip": 528, "offset": 540, "next": [], "symbols": [{"name": "OBJ_create_objects", "hash": "e4b19fd8801349893c038faaed3df3289fdbf294", "variant": 1557686133, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 4289724976}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 12615725}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2946761200}, "child": {"skip": 5644, "offset": 5660, "next": [], "symbols": [{"name": "_vfprintf_r", "hash": "0a65e0d645051c51e000194125309cf921554aea", "variant": 2404691843, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 2946761200}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289790520}, "child": {"skip": 5468, "offset": 5484, "next": [], "symbols": [{"name": "_vfprintf_r", "hash": "256725dc02ee0f0a75b473ef9efd45f8b68e0403", "variant": 2334942035, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4289790520}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289856064}, "child": {"skip": 5436, "offset": 5452, "next": [], "symbols": [{"name": "_vfprintf_r", "hash": "f8ce23578b8b1e0da3f055207d7914015637031e", "variant": 2180444124, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2693136384}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 612761601}, "child": {"skip": 212, "offset": 220, "next": [], "symbols": [{"name": "exponent", "hash": "c51344c24f419935462fad92fb525b1114837192", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 666762480}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 4290642672}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290118352}, "child": {"skip": 2764, "offset": 2776, "next": [], "symbols": [{"name": "__svfscanf", "hash": "71538e61762ba9163a6b975b24e2e2a0c3f630fa", "variant": 1880928241, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 604373013}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707472}, "child": {"skip": 328, "offset": 340, "next": [], "symbols": [{"name": "FindMostRecentException__FP12ThrowContextP13ExceptionInfo", "hash": "19212956d392b26d79847701ae3dc6d8654a69a6", "variant": 3775026051, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666762464}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 4290118368}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290642688}, "child": {"skip": 2812, "offset": 2824, "next": [], "symbols": [{"name": "__svfscanf", "hash": "5f385b75e05fbca7e65d1eb222d2ebe3264f7ee9", "variant": 709828909, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 2143223840}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2142306320}, "child": {"skip": 20, "offset": 32, "next": [{"match": {"value": 1887473192}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 664928304}, "child": {"skip": 84, "offset": 124, "next": [{"match": {"value": 1346371587}, "child": {"skip": 0, "offset": 128, "next": [{"match": {"value": 1879053864}, "child": {"skip": 156, "offset": 288, "next": [], "symbols": [{"name": "FindMostRecentException__FP12ThrowContextP13ExceptionInfo", "hash": "0657f8fbd24ec50e06410b5daa884cd331d3e4fc", "variant": 2512187603, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 1346371589}, "child": {"skip": 0, "offset": 128, "next": [{"match": {"value": 1879053864}, "child": {"skip": 172, "offset": 304, "next": [], "symbols": [{"name": "FindMostRecentException__FP12ThrowContextP13ExceptionInfo", "hash": "4659fae1cc822647947743afdbe600d39d77a683", "variant": 3441209115, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 664928304}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 1887473192}, "child": {"skip": 264, "offset": 304, "next": [], "s)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ymbols": [{"name": "FindMostRecentException__FP12ThrowContextP13ExceptionInfo", "hash": "acf62ea5beca824af43a4bd9f0be8ba6aa989747", "variant": 1375577367, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2158362624}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604110942}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 348258309}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 614793217}, "child": {"skip": 4, "offset": 20, "next": [{"match": {"value": 614793217}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 268435458}, "child": {"skip": 228, "offset": 256, "next": [], "symbols": [{"name": "__sccl", "hash": "f39cbfbd4f1f054619beafba6968c7b059f3f200", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 604504065}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 268435458}, "child": {"skip": 216, "offset": 244, "next": [], "symbols": [{"name": "__sccl", "hash": "6b63c6d84631537e2cfa658ff56341e70fbf91d1", "variant": 0, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 348258357}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 614793217}, "child": {"skip": 216, "offset": 232, "next": [], "symbols": [{"name": "__sccl", "hash": "4aa2b624a4029c2e95eae97db4acaae04dfadfa8", "variant": 0, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2158428160}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604110942}, "child": {"skip": 252, "offset": 260, "next": [], "symbols": [{"name": "__sccl", "hash": "8c2dfbdefbed3a1909bd9c28e452384a9b0f6e38", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 2089811968}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 2089877520}, "child": {"skip": 80, "offset": 88, "next": [], "symbols": [{"name": "setjmp", "hash": "348622b557388c74c63a12e97fbc2b6c6b981b13", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 2895118336}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 2895183876}, "child": {"skip": 48, "offset": 56, "next": [], "symbols": [{"name": "setjmp", "hash": "fdaf5acfb45e46ed95e10a1aeaba3da83985e1a1", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 2022703104}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 2022768656}, "child": {"skip": 92, "offset": 100, "next": [], "symbols": [{"name": "longjmp", "hash": "0ab7fd94efd6cc2f48840b7cef02d444cfd2aba9", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 2358247424}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 2358312964}, "child": {"skip": 60, "offset": 68, "next": [], "symbols": [{"name": "longjmp", "hash": "f1f1fb3b43788dac7ddd17a26beecb6c24f4bb76", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 348127235}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 8722469}, "child": {"skip": 432, "offset": 440, "next": [], "symbols": [{"name": "strncmp", "hash": "122e397f17bd808cb9351bd47c8c76df097e021b", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 2156003328}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 339738630}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2158166016}, "child": {"skip": 20, "offset": 32, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 0}, "child": {"skip": 92, "offset": 132, "next": [], "symbols": [{"name": "strstr", "hash": "2eee8517aa77258180b06193a14cb2c647ac25a9", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 274792445}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 14381}, "child": {"skip": 68, "offset": 108, "next": [], "symbols": [{"name": "strstr", "hash": "58aff69dc5f70927674bf646420eff60673efd04", "variant": 0, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 339738629}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 14381}, "child": {"skip": 68, "offset": 80, "next": [], "symbols": [{"name": "strstr", "hash": "bb44e57c99faf33753ca977b07f764182fb0cf73", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 8398893}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 272629774}, "child": {"skip": 24, "offset": 36, "next": [{"match": {"value": 811794434}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 274726914}, "child": {"skip": 32, "offset": 76, "next": [], "symbols": [{"name": "strupr", "hash": "b5156df365956abb246d6e05d075ed2ae6b3c522", "variant": 1622982697, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 811794433}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 274726914}, "child": {"skip": 32, "offset": 76, "next": [], "symbols": [{"name": "strlwr", "hash": "a9470de9c999da2d549cdebbd818f3b9149ad803", "variant": 1622982697, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8400941}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 272629776}, "child": {"skip": 32, "offset": 44, "next": [{"match": {"value": 809631746}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 272629762}, "child": {"skip": 32, "offset": 84, "next": [], "symbols": [{"name": "strupr", "hash": "91920a7c9c038cbf57377ee84d4afbf82e2b85ed", "variant": 2998008983, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 809631745}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 272629762}, "child": {"skip": 32, "offset": 84, "next": [], "symbols": [{"name": "strlwr", "hash": "9b9fbec8f67d91bc99996bae0ee414a78ba437ff", "variant": 2998008983, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 272629774}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 8398893}, "child": {"skip": 60, "offset": 72, "next": [], "symbols": [{"name": "strupr", "hash": "8373788ce0ef94f4f5dfbd051bb46951a7ab64a9", "variant": 1660426063, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 10500141}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 339738629}, "child": {"skip": 92, "offset": 104, "next": [], "symbols": [{"name": "strpbrk", "hash": "9a531d5a520ab934defdf347567e94a898f2bdef", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 339456}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 339459}, "child": {"skip": 92, "offset": 104, "next": [], "symbols": [{"name": "instr", "hash": "f6b12148823631c326250df2f4ccde1fc007575d", "variant": 0, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 272629777}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2424504320}, "child": {"skip": 24, "offset": 36, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 272957443}, "child": {"skip": 40, "offset": 84, "next": [], "symbols": [{"name": "isCorrFname", "hash": "89aa5134124b8969289b60972d168472b940e8a8", "variant": 0, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 675479584}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 272957443}, "child": {"skip": 40, "offset": 84, "next": [], "symbols": [{"name": "isCorrFname", "hash": "dea301e86e09492db2cb8bd49aec2f3bc200ef71", "variant": 0, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 614858751}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604176383}, "child": {"skip": 44, "offset": 52, "next": [], "symbols": [{"name": "bzero", "hash": "686c2a3d4f69823991cd6d94f7ad1b0ad623a389", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 343932934}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": "_regist_to_hidma"}}, "child": {"skip": 28, "offset": 40, "next": [], "symbols": [{"name": "sceHiGsServiceSetRegistFunc", "hash": "896c1dc3e3f1b3dd60b2b196112c4986fe37c256", "variant": 3983530282, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 10500141}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2361655296}, "child": {"skip": 144, "offset": 156, "next": [], "symbols": [{"name": "strtok_r", "hash": "93ea4c5768fa95e3bf9c22f9b273fd01ba1a43d5", "variant": 0, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 343932933}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 10500141}, "child": {"skip": 192, "offset": 200, "next": [], "symbols": [{"name": "strtok_r", "hash": "ee8c49f80b37bde43ab6f3aaf1c3b6122ae7c8b2", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 666762864}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 4289986864}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289724656}, "child": {"skip": 2896, "offset": 2908, "next": [], "symbols": [{"name": "_vfiprintf_r", "hash": "199b054fe2bc23afa0e12ebda9afaef8a33318a2", "variant": 1648169885, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 4290183536}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290117984}, "child": {"skip": 692, "offset": 704, "next": [], "symbols": [{"name": "_dispRefImage", "hash": "20e9bb99534d20fc632998b86a8bcdb7b64cdb2d", "variant": 3072525666, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 4290642288}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290052416}, "child": {"skip": 600, "offset": 612, "next": [], "symbols": [{"name": "get_cert_by_subject", "hash": "c44ae76e071bf43145eeca456d3d643199d68d02", "variant": 659394715, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2491547660}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 135490}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "feof", "hash": "bd50fd2d0549b18fa84f6eb00e0e98fd9fe4526d", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 2158166016}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604110962}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 274857997}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 677511283}, "child": {"skip": 168, "offset": 184, "next": [], "symbols": [{"name": "__sflags", "hash": "4abc342798b5f7abdc1aa17b07ed478c91a71c4d", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 274857996}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 677511283}, "child": {"skip": 152, "offset": 168, "next": [], "symbols": [{"name": "__sflags", "hash": "638eda0484cf7251ede2589b9544635430617f18", "variant": 0, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8716314}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 666763248}, "child": {"skip": 28, "offset": 36, "next": [{"match": {"value": 73465866}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 2678456320}, "child": {"skip": 84, "offset": 128, "next": [], "symbols": [{"name": "div", "hash": "c090ee45fc6e6b13da50bc93eae5bf6913055fd1", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 73465867}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 2678456320}, "child": {"skip": 88, "offset": 132, "next": [], "symbols": [{"name": "div", "hash": "e842b8d9c97361376d75f373f23737e3530bbb34", "variant": 0, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10879002}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 666763248}, "child": {"skip": 96, "offset": 104, "next": [], "symbols": [{"name": "div", "hash": "694c0d118444655ce985b73460206de3b83d8e2f", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 12603437}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 8411181}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 10510381}, "child": {"skip": 204, "offset": 216, "next": [], "symbols": [{"name": "strncasecmp", "hash": "e02ce3cd59c6d3784d75d8b59b0aa42d1214af2e", "variant": 4280501320, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 289406996}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 18477}, "child": {"skip": 84, "offset": 96, "next": [], "symbols": [{"name": "Decode", "hash": "7058490dd6c692123d07cf401f9aa9c930e83481", "variant": 0, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 12601389}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 8409133}, "child": {"skip": 208, "offset": 216, "next": [], "symbols": [{"name": "strncasecmp", "hash": "3095f25019653b4e6ee62171c9fe55870ed3ae27", "variant": 1232683006, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 2424832000}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 16781357}, "child": {"skip": 16, "offset": 24, "next": [{"match": {"value": 274726934}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2428960768}, "child": {"skip": 92, "offset": 124, "next": [], "symbols": [{"name": "strspn", "hash": "336ff079a4608cdf8a3589444b4c3763e42ee896", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 274726930}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2428960768}, "child": {"skip": 92, "offset": 124, "next": [], "symbols": [{"name": "strcspn", "hash": "5d5eeb550df44715dfec305e801c81add97083fa", "variant": 0, "library": "libc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604241919}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 266287}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 6559786}, "child": {"skip": 8, "offset": 20, "next": [], "symbols": [{"name": "labs", "hash": "c236c7ac00b3fd09e995d30f1523bcb47e22bae0", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 604110850}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 16, "next": [], "symbols": [{"name": "proto2af", "hash": "8e881f7a1385aae9ecea6ab4e31221ec3d7d8a51", "variant": 0, "library": "eenetctl"}]}}], "symbols": []}}, {"match": {"value": 14381}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 666763216}, "child": {"skip": 316, "offset": 328, "next": [], "symbols": [{"name": "ASN1_PRINTABLE_type", "hash": "3eed0ca31c90c308103af9a9cd349d6ffa70afa0", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 266287}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 679673856}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "labs", "hash": "81ffacbbf25cc65034b23e48c67d57e91f219d11", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 2156068864}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 4141}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 274726940}, "child": {"skip": 120, "offset": 132, "next": [], "symbols": [{"name": "strpbrk", "hash": "c4d8b2596b3af166ba602c8dad135cc07a461000", "variant": 0, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 811728897}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 339738629}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 202819}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 612499457}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 268435489}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2896363520}, "child": {"skip": 136, "offset": 168, "next": [], "symbols": [{"name": "__DecodeSignedNumber__FPcPi", "hash": "4d43598c05193d8069a3f64cead2c239992ca610", "variant": 0, "library": "mslgcc_ps2"}]}}], "symb)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ols": []}}, {"match": {"value": 268435487}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2896363520}, "child": {"skip": 128, "offset": 160, "next": [], "symbols": [{"name": "__DecodeSignedNumber__FPcPi", "hash": "7c37cae97716231d4063644e54ace2754696ee5b", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 200771}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2896297984}, "child": {"skip": 136, "offset": 160, "next": [], "symbols": [{"name": "__DecodeSignedNumber__FPcPi", "hash": "c5efee8547e3554c58cc24fc563c431e6e6e7272", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 339738628}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 200771}, "child": {"skip": 140, "offset": 156, "next": [], "symbols": [{"name": "__DecodeSignedNumber__FPcPi", "hash": "6f63f91d5f591ba5ade8755aaf08283f832b3c10", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 1413480453}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2424700929}, "child": {"skip": 140, "offset": 156, "next": [], "symbols": [{"name": "__DecodeSignedNumber__FPcPi", "hash": "2fa06a4009345d8b9a5d126556a9a4b1a3339f44", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604110894}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 274726955}, "child": {"skip": 180, "offset": 192, "next": [], "symbols": [{"name": "__sceEENetres_hnok", "hash": "ad5828d9f8e5d70340ac08f0c1e0080484062338", "variant": 0, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666762528}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 4289790616}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 10520621}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289921704}, "child": {"skip": 3212, "offset": 3228, "next": [], "symbols": [{"name": "__svfscanf_r", "hash": "3a46075822b7c9bc152173bcf679543516b2fb38", "variant": 3669253207, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 14714925}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4289856160}, "child": {"skip": 600, "offset": 616, "next": [], "symbols": [{"name": "_sceMcFatReadFile", "hash": "136d3afa6653be569ca6e4f72ea6b6d8e876896b", "variant": 257799634, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 612630527}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 666763248}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 744620160}, "child": {"skip": 1288, "offset": 1300, "next": [], "symbols": [{"name": "strerror", "hash": "ae18dfa19172df6e25c0acc2b1c73d8b38b6e274", "variant": 4000573085, "library": "libc"}]}}], "symbols": []}}, {"match": {"value": 744620037}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 272629777}, "child": {"skip": 76, "offset": 88, "next": [], "symbols": [{"name": "conv_Tim2_ImageToPsm", "hash": "66943e2816b8e4f1ebcf7b55487e1fbb9a4911a9", "variant": 1644047408, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 744620091}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 272629933}, "child": {"skip": 704, "offset": 716, "next": [], "symbols": [{"name": "SSLCERT_set_field", "hash": "4c7811000f7f21f97e04557947f12d8ed3dbeb42", "variant": 1019717672, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 270396}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "_d_ulltod"}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 270398}, "child": {"skip": 0, "offset": 12, "next": [], "symbols": [{"name": "_d_utod", "hash": "495c6a8ec58529f71a97361a8abd5ed64af7dcc7", "variant": 1279193246, "library": "gcc_wrapper"}]}}], "symbols": []}}, {"match": {"value": 666763248}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 270398}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 411041798}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707456}, "child": {"skip": 64, "offset": 84, "next": [], "symbols": [{"name": "_d_utod", "hash": "a8dbe74d0440eb9e525e490e0b03dcf4ee2349be", "variant": 3186859214, "library": "gcc_wrapper"}]}}], "symbols": []}}, {"match": {"value": 411041797}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 4290707456}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__floatdidf"}}, "child": {"skip": 28, "offset": 52, "next": [{"match": {"value": 1883252264}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "dpadd"}}, "child": {"skip": 16, "offset": 76, "next": [], "symbols": [{"name": "_d_utod", "hash": "be2b5f6367d8eecb4eccab4cfc37d2b08fdb44c5", "variant": 487399936, "library": "gcc_wrapper"}]}}], "symbols": []}}, {"match": {"value": 4202541}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "dpadd"}}, "child": {"skip": 16, "offset": 76, "next": [], "symbols": [{"name": "_d_utod", "hash": "021b295621c90224f1a2a8cee37cb490a05eae04", "variant": 487399936, "library": "gcc_wrapper"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2143223808}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__floatdidf"}}, "child": {"skip": 52, "offset": 76, "next": [], "symbols": [{"name": "_d_utod", "hash": "9dbeda3828eb2f34290a5847fdbe6b70add23e66", "variant": 487399936, "library": "gcc_wrapper"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666762576}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 4290642576}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290183808}, "child": {"skip": 860, "offset": 872, "next": [], "symbols": [{"name": "_motionComp0", "hash": "95044ce6d9ed2d42c6b315810cc6e9049d8471a0", "variant": 244191221, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 4289725072}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 8421421}, "child": {"skip": 260, "offset": 272, "next": [], "symbols": [{"name": "_sceMcFatSetAttr", "hash": "1d4634b5a9021bc93db4279677452e00b67f6fd5", "variant": 355679624, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 4289790616}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 8423469}, "child": {"skip": 272, "offset": 284, "next": [], "symbols": [{"name": "_sceMcFatGetEntSpace", "hash": "c899eecdd997d0459aba538c7c97432230c8c3df", "variant": 2369104962, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8437805}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 666763088}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 654444220}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290642080}, "child": {"skip": 1036, "offset": 1052, "next": [], "symbols": [{"name": "_getRef0", "hash": "c7c101cbd4355ef4652d41f41da8e11d1093a030", "variant": 2821557810, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 654444244}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4290642080}, "child": {"skip": 1036, "offset": 1052, "next": [], "symbols": [{"name": "_getRef0", "hash": "2b105a3d6d637f54f78b1195acfb00cccfbeace9", "variant": 2821557810, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10512429}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 12613677}, "child": {"skip": 176, "offset": 188, "next": [], "symbols": [{"name": "RC4", "hash": "b2e17e94efd1d3b0d6e4fe0882e390f33c17cc10", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2357526548}, "child": {"skip": 0, "offset": 4, "next": [{"mat)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ch": {"value": 2357592088}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2357657608}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2358116352}, "child": {"skip": 4, "offset": 20, "next": [{"match": {"value": 2357985296}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 809024}, "child": {"skip": 88, "offset": 116, "next": [], "symbols": [{"name": "_rix_000", "hash": "8a064ebb8f640d74147f70ba25ae1741fcd68614", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2357788688}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 606272}, "child": {"skip": 44, "offset": 72, "next": [{"match": {"value": 1879100649}, "child": {"skip": 0, "offset": 76, "next": [{"match": {"value": 1880738806}, "child": {"skip": 76, "offset": 156, "next": [], "symbols": [{"name": "_rix_100", "hash": "c249098abf11dab2b58cb793338d98e943df580d", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 1883263368}, "child": {"skip": 0, "offset": 76, "next": [{"match": {"value": 1879725046}, "child": {"skip": 84, "offset": 164, "next": [], "symbols": [{"name": "_rix_100", "hash": "f8f9795ce06dcd2bebd465a2e8ff0ff2369c6d21", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2358116352}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2358050820}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2357985296}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 809024}, "child": {"skip": 124, "offset": 148, "next": [], "symbols": [{"name": "_ri0_000", "hash": "55cd7157e815a032318cd5922db0d21560258577", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 604831743}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2357395472}, "child": {"skip": 148, "offset": 172, "next": [], "symbols": [{"name": "_ri0_100", "hash": "8d3e0f6b9e5ffba8c202b56cfa1206f232ce457b", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1879100649}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1880738806}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2357526548}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2357592088}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2357657608}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2358116352}, "child": {"skip": 4, "offset": 28, "next": [{"match": {"value": 2358771728}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2024275968}, "child": {"skip": 144, "offset": 180, "next": [], "symbols": [{"name": "_rix_001", "hash": "0d03c5d94726e09bfdd0fc13f8b68ac190ab5857", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 605552641}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2357788688}, "child": {"skip": 80, "offset": 116, "next": [{"match": {"value": 2109865984}, "child": {"skip": 0, "offset": 120, "next": [{"match": {"value": 2109931536}, "child": {"skip": 48, "offset": 172, "next": [], "symbols": [{"name": "_rix_010", "hash": "7ce70adbd7f05eeeaa078b3389d27fa50545400e", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2043281408}, "child": {"skip": 0, "offset": 120, "next": [{"match": {"value": 2043609104}, "child": {"skip": 8, "offset": 132, "next": [{"match": {"value": 1884901640}, "child": {"skip": 0, "offset": 136, "next": [{"match": {"value": 1879707766}, "child": {"skip": 72, "offset": 212, "next": [], "symbols": [{"name": "_rix_110", "hash": "cd8594c52fa8615dfe3b194fb133127c414cdafd", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 1883263368}, "child": {"skip": 0, "offset": 136, "next": [{"match": {"value": 1879725046}, "child": {"skip": 80, "offset": 220, "next": [], "symbols": [{"name": "_rix_110", "hash": "0cf8f5b7af6f65d45953e44d17e1040e6c85631c", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2357985296}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2024275968}, "child": {"skip": 24, "offset": 60, "next": [{"match": {"value": 283115551}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 1879723688}, "child": {"skip": 152, "offset": 220, "next": [], "symbols": [{"name": "_rix_101", "hash": "f293c3d8ba1867609c29941b8a13a409facc0a29", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 283115553}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 1879723688}, "child": {"skip": 160, "offset": 228, "next": [], "symbols": [{"name": "_rix_101", "hash": "232c299c3cf0ed36c9a20a5f7d3c5a628b9bd990", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2358116352}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2358050820}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2357985296}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604700673}, "child": {"skip": 32, "offset": 64, "next": [{"match": {"value": 283115536}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 1879604872}, "child": {"skip": 132, "offset": 204, "next": [], "symbols": [{"name": "_ri0_001", "hash": "8765477fcb49423244a9b4ccb9c687872a696d48", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 283115542}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 1879604872}, "child": {"skip": 156, "offset": 228, "next": [], "symbols": [{"name": "_ri0_101", "hash": "a40582e0f198f700ea5828ad3bef189258613e37", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 605552641}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 604831743}, "child": {"skip": 76, "offset": 108, "next": [{"match": {"value": 2110390272}, "child": {"skip": 0, "offset": 112, "next": [{"match": {"value": 484507631}, "child": {"skip": 68, "offset": 184, "next": [], "symbols": [{"name": "_ri0_010", "hash": "96cc994ee42f70be4dc8bbc838ce0149dd8a0085", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2043150336}, "child": {"skip": 0, "offset": 112, "next": [{"match": {"value": 1900564744}, "child": {"skip": 92, "offset": 208, "next": [], "symbols": [{"name": "_ri0_110", "hash": "7882eb41edbbf0962f1d5509da3585dc9b157c82", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1880737908}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2357526548}, "child": {"skip": 4, "offset": 20, "next": [{"match": {"value": 2357657608}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2358116352}, "child": {"skip": 4, "offset": 32, "next": [{"match": {"value": 2357985296}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 605552641}, "child": {"skip": 208, "offset": 248, "next": [], "symbols": [{"name": "_rix_011", "hash": "63662e705271810578473169e452204e811beb72", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2358771728}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 604766209}, "child": {"skip": 52, "offset": 92, "next": [{"match": {"value": 283115560}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1898924296}, "child": {"skip": 188, "offset": 288, "next": [], "symbols": [{"name": "_rix_111", "hash": "00c112309b157659e5cd0959f6c95a98282b0c5e", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 283115562}, "child": {"skip": 0, "offset": 96, "next": [{"match": {"value": 1898924296}, "child": {"skip": 196, "offset": 296, "next": [], "symbols": [{"name": "_rix_111", "hash": "f886925cd189c4a0a783d7199fe08b69d007ced8", "var)PS2SDB", 8192}, + std::string_view{R"PS2SDB(iant": 0, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2358116352}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2358050820}, "child": {"skip": 60, "offset": 88, "next": [{"match": {"value": 283115542}, "child": {"skip": 0, "offset": 92, "next": [{"match": {"value": 1898477832}, "child": {"skip": 156, "offset": 252, "next": [], "symbols": [{"name": "_ri0_011", "hash": "e1893238115494376f12712a014424ad1aa14685", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 283115548}, "child": {"skip": 0, "offset": 92, "next": [{"match": {"value": 1898477832}, "child": {"skip": 180, "offset": 276, "next": [], "symbols": [{"name": "_ri0_111", "hash": "b2a09bd8583344bb7a5baebcd0b23fd7bb93724b", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604766232}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1007288320, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 16, "offset": 24, "next": [{"match": {"value": 2026700800}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 612630544}, "child": {"skip": 60, "offset": 92, "next": [], "symbols": [{"name": "_copyAddRefImage", "hash": "ff92ab45efce3086639a9fea7acb32eb2c5d80a6", "variant": 3448432400, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 1896563176}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2024341520}, "child": {"skip": 32, "offset": 64, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 0}, "child": {"skip": 24, "offset": 96, "next": [], "symbols": [{"name": "_copyRefImage", "hash": "b7d82a49f2437d9d0c0591f7af893322e681c116", "variant": 3448432400, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 16711935}, "child": {"skip": 0, "offset": 68, "next": [{"match": {"value": 16711935}, "child": {"skip": 16, "offset": 88, "next": [], "symbols": [{"name": "_copyRefImage", "hash": "0be09600a500b87834d5c96842d9ddef621a22ce", "variant": 3448432400, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604110872}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1007288320, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 8, "offset": 16, "next": [{"match": {"value": 2026373120}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 541261820}, "child": {"skip": 212, "offset": 236, "next": [], "symbols": [{"name": "_copyAddRefImage", "hash": "6c7fa50b898b047b38512325e86d0cf3453770d9", "variant": 3448432400, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2024275968}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 541261820}, "child": {"skip": 168, "offset": 192, "next": [], "symbols": [{"name": "_copyRefImage", "hash": "e36da339accc33ad413c09073bfc5e997ae488ce", "variant": 3448432400, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006964736}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006894975}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 883236880}, "child": {"skip": 8, "offset": 20, "next": [{"match": {"value": 271808}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 4395044}, "child": {"skip": 4, "offset": 32, "next": [{"match": {"value": 65011720}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 2896297984}, "child": {"skip": 0, "offset": 40, "next": [], "symbols": [{"name": "_ipuSetMPEG1", "hash": "dede2bb906c97e5afb671f2d1e25957dd3778ef4", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2896297984}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 44, "next": [], "symbols": [{"name": "_ipuSetMPEG1", "hash": "2b905b9b6b11043c530653a123a1d60570bddf82", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1007026304}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 8402989}, "child": {"skip": 176, "offset": 204, "next": [], "symbols": [{"name": "_clearOnce", "hash": "ad1965b7e9bb03f1be43ebc2de36818d85d41261", "variant": 2738596914, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604176385}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 883274752}, "child": {"skip": 100, "offset": 112, "next": [{"match": {"value": 1007030272}, "child": {"skip": 0, "offset": 116, "next": [{"match": {"value": 1006768128}, "child": {"skip": 80, "offset": 200, "next": [], "symbols": [{"name": "sceIpuStopDMA", "hash": "44ec903457ce0aaa71fad581a08225814e6a371e", "variant": 0, "library": "libipu"}]}}], "symbols": []}}, {"match": {"value": 0}, "child": {"skip": 0, "offset": 116, "next": [{"match": {"value": 1007030272}, "child": {"skip": 84, "offset": 204, "next": [], "symbols": [{"name": "sceIpuStopDMA", "hash": "1b0fb8b360f7a97c7241808861ffb6c8b0c289e8", "variant": 0, "library": "libipu"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 883228678}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1007026176, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 268, "offset": 280, "next": [], "symbols": [{"name": "sceGpInitLoadTexelClut", "hash": "921627813e9314cca092e217d9069087c829e1fa", "variant": 1513752816, "library": "libgp"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2357395828}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604110851}, "child": {"skip": 380, "offset": 388, "next": [], "symbols": [{"name": "_dualPrimeVector", "hash": "9586e74fdae549798bff34bbfdc74fa2a1861d8b", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2357395852}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604110851}, "child": {"skip": 380, "offset": 388, "next": [], "symbols": [{"name": "_dualPrimeVector", "hash": "96b512a5b35c175b52ef5df2ec8db614c5b25343", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2357395844}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604110851}, "child": {"skip": 380, "offset": 388, "next": [], "symbols": [{"name": "_dualPrimeVector", "hash": "882f58f302e8cf4f1416ec483b9c065bf466af4a", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2357329928}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604176386}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 272826373}, "child": {"skip": 4, "offset": 16, "next": [{"match": {"value": 2357330200}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2894266376}, "child": {"skip": 16, "offset": 40, "next": [], "symbols": [{"name": "_markOutput", "hash": "0463a4094a77db2da58055a948e5ef4ee7bcd208", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2357330224}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2894266376}, "child": {"skip": 16, "offset": 40, "next": [], "symbols": [{"name": "_markOutput", "hash": "7fa39e084521e5c6d7d89d7151dbade13f218759", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 65011720}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2894200844}, "child": {"skip": 0, "offset": 12, "next": [], "symbols": [{"name": "_alalcSetDynamic", "hash": "c1fb8ae4569513b4dea6795e6f264687b0ecf212", "variant": 0, "library": "libmpeg"}, {"name": "_sceMpegAlalcSetDynamic", "hash": "c1fb8ae4569513b4dea6795e6f264687b0ecf212", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 1346371588}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4236247096}, "child": {"skip": 28, "offset": 40, "next": [], "symbols": [{"name)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": "reset_d", "hash": "8c4cc9a32e22f46c1d35229659c032dc01731629", "variant": 0, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604439551}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 666763136}, "child": {"skip": 192, "offset": 200, "next": [{"match": {"value": 1006768128}, "child": {"skip": 0, "offset": 204, "next": [{"match": {"value": 878968831}, "child": {"skip": 224, "offset": 432, "next": [], "symbols": [{"name": "_doCSC2", "hash": "6fa0c9b223393247164b725129240ff91966e809", "variant": 3105725787, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 1006899200}, "child": {"skip": 0, "offset": 204, "next": [{"match": {"value": 878968831}, "child": {"skip": 84, "offset": 292, "next": [{"match": {"value": 2384726104}, "child": {"skip": 0, "offset": 296, "next": [{"match": {"value": 60827693}, "child": {"skip": 148, "offset": 448, "next": [], "symbols": [{"name": "_doCSC2", "hash": "52e727dc83bfb797457e550f88ea75cc1298505b", "variant": 524865788, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2384726128}, "child": {"skip": 0, "offset": 296, "next": [{"match": {"value": 60827693}, "child": {"skip": 148, "offset": 448, "next": [], "symbols": [{"name": "_doCSC2", "hash": "c2b139607cc75b10f31cade38378ac6d3484a244", "variant": 524865788, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2384726120}, "child": {"skip": 0, "offset": 296, "next": [{"match": {"value": 60827693}, "child": {"skip": 148, "offset": 448, "next": [], "symbols": [{"name": "_doCSC2", "hash": "bbd6c1e9f943ba5a1fe12984e10bfdb5ce3d0787", "variant": 3676047434, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604374015}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 666763168}, "child": {"skip": 440, "offset": 448, "next": [], "symbols": [{"name": "_doCSC2", "hash": "0d534edf86d37725d59899141f472294e8267807", "variant": 2256582634, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 616759315}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604176383}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 616955938}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4395050}, "child": {"skip": 4, "offset": 20, "next": [{"match": {"value": 2357461056}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 405763}, "child": {"skip": 8, "offset": 36, "next": [], "symbols": [{"name": "sceMpegAddBs", "hash": "2e210009560aa416295c2c3e3b83735bae3a3fd2", "variant": 3229431326, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 10493997}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 405763}, "child": {"skip": 20, "offset": 48, "next": [], "symbols": [{"name": "sceMpegAddBs", "hash": "c6f543d65d23e2e6da76befdbcd6492b85f2373c", "variant": 2983914068, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4395050}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 616955938}, "child": {"skip": 40, "offset": 56, "next": [], "symbols": [{"name": "sceMpegAddBs", "hash": "991a45268885e1065654489925f1c06242a8a9c3", "variant": 1231892938, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666763248}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 604176383}, "child": {"skip": 48, "offset": 60, "next": [], "symbols": [{"name": "sceMpegAddBs", "hash": "dce2b1606f6d83c008d739f9b8b454bd8077846e", "variant": 2812025730, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2357329984}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 2890334364}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2890203284}, "child": {"skip": 8, "offset": 20, "next": [], "symbols": [{"name": "sceMpegSetDecodeMode", "hash": "62daad28907a7b2cf49d87ee56825a868efc1dcf", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2890334388}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2890203308}, "child": {"skip": 8, "offset": 20, "next": [], "symbols": [{"name": "sceMpegSetDecodeMode", "hash": "b583eafb075c0147aeec46da5e729b2b23cea7cb", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2890334384}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2890203304}, "child": {"skip": 8, "offset": 20, "next": [], "symbols": [{"name": "sceMpegSetDecodeMode", "hash": "a2f09444717fe471d9483128f112035687ca81c8", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 338112}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 608370700}, "child": {"skip": 24, "offset": 36, "next": [], "symbols": [{"name": "sceMpegAddCallback", "hash": "dcca04d840821fc066593b1a9faf14ac81dea822", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 604176385}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4232380536}, "child": {"skip": 8, "offset": 20, "next": [], "symbols": [{"name": "sceMpegSetDefaultPtsGap", "hash": "3297139afe79c913cce0d6f2b024a0c7a15725bf", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 4232052856}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 16, "next": [], "symbols": [{"name": "sceMpegResetDefaultPtsGap", "hash": "248bdb715d1ae00d844afb890705bbfb9156b41a", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 65011720}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2890203352}, "child": {"skip": 0, "offset": 12, "next": [], "symbols": [{"name": "sceMpegSetImageBuff", "hash": "b58ec550d6e30112c3ec2c6cde1ebe31cb422bae", "variant": 0, "library": "libmpeg"}]}}, {"match": {"value": 608305332}, "child": {"skip": 0, "offset": 12, "next": [], "symbols": [{"name": "sceMpegDispCenterOffX", "hash": "f367d7b0039b914de49f9781f302165f3a3ccdcf", "variant": 0, "library": "libmpeg"}, {"name": "sceMpegDispCenterOffY", "hash": "f367d7b0039b914de49f9781f302165f3a3ccdcf", "variant": 0, "library": "libmpeg"}]}}, {"match": {"value": 608305356}, "child": {"skip": 0, "offset": 12, "next": [], "symbols": [{"name": "sceMpegDispCenterOffX", "hash": "53ad9fb45c168255b4000c9da0f6a010463fc4ee", "variant": 0, "library": "libmpeg"}, {"name": "sceMpegDispCenterOffY", "hash": "53ad9fb45c168255b4000c9da0f6a010463fc4ee", "variant": 0, "library": "libmpeg"}]}}, {"match": {"value": 608305352}, "child": {"skip": 0, "offset": 12, "next": [], "symbols": [{"name": "sceMpegDispCenterOffX", "hash": "e523045abc7a9eafbeff6373e75803bccf52b764", "variant": 0, "library": "libmpeg"}, {"name": "sceMpegDispCenterOffY", "hash": "e523045abc7a9eafbeff6373e75803bccf52b764", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2357723200}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 2365718676}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2896297984}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "sceMpegGetDecodeMode", "hash": "c205f1f506235a084207c3df6a1df08b40dcdb0c", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2365718700}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2896297984}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "sceMpegGetDecodeMode", "hash": "2b288927411e9909fecb0bd5e6dcaf9cd3a35b37", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2365718696}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2896297984}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "sceMpegGetDecodeMode", "hash": "f7ed1a3a990e04e3596838929589cec4c640f425", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2357395520}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 65011720}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2355232768}, "child": {)PS2SDB", 8192}, + std::string_view{R"PS2SDB("skip": 0, "offset": 12, "next": [], "symbols": [{"name": "sceMpegIsEnd", "hash": "59ec169d63fda3aa0aef41a3bc5f7e67bcfbb8c2", "variant": 0, "library": "libmpeg"}]}}, {"match": {"value": 2355232972}, "child": {"skip": 0, "offset": 12, "next": [], "symbols": [{"name": "sceMpegDispWidth", "hash": "9e3cdd3bb8b6470497c60972f94146d17cb2d72a", "variant": 0, "library": "libmpeg"}]}}, {"match": {"value": 2355232996}, "child": {"skip": 0, "offset": 12, "next": [], "symbols": [{"name": "sceMpegDispWidth", "hash": "03c50fcf32207dee3afefe9740cf60ca28f23140", "variant": 0, "library": "libmpeg"}, {"name": "sceMpegDispHeight", "hash": "03c50fcf32207dee3afefe9740cf60ca28f23140", "variant": 0, "library": "libmpeg"}]}}, {"match": {"value": 2355232992}, "child": {"skip": 0, "offset": 12, "next": [], "symbols": [{"name": "sceMpegDispWidth", "hash": "6bbe41ef1acdbbcc4eb7a0d6097c87c3264349a2", "variant": 0, "library": "libmpeg"}]}}, {"match": {"value": 2355232976}, "child": {"skip": 0, "offset": 12, "next": [], "symbols": [{"name": "sceMpegDispHeight", "hash": "8599033b50775cdffbbc47a54afad1fdda14d919", "variant": 0, "library": "libmpeg"}]}}, {"match": {"value": 2355233000}, "child": {"skip": 0, "offset": 12, "next": [], "symbols": [{"name": "sceMpegDispHeight", "hash": "612e6a59d6c81fbc9011fcf5a7cac9888468537c", "variant": 0, "library": "libmpeg"}]}}, {"match": {"value": 2355234940}, "child": {"skip": 0, "offset": 12, "next": [], "symbols": [{"name": "sceMpegGetBuffType", "hash": "93e25c993260bd60d9c9ddd85e4963b17cd1f241", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2355232772}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 16, "next": [], "symbols": [{"name": "sceMpegIsRefBuffEmpty", "hash": "fbebccc0544e9781ca2620369c2f7b664cdaeb1d", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2355233208}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1413480449}, "child": {"skip": 72, "offset": 84, "next": [], "symbols": [{"name": "sceMpegClearRefBuff", "hash": "14f83de26ba420f5b09d7f7599e36c951c596033", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2355233232}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1413480449}, "child": {"skip": 72, "offset": 84, "next": [], "symbols": [{"name": "sceMpegClearRefBuff", "hash": "bc3226b329c1e04fc68aeb4d2dc647fff6e5e89e", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2355233224}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1413480449}, "child": {"skip": 72, "offset": 84, "next": [], "symbols": [{"name": "sceMpegClearRefBuff", "hash": "6b4debd993eaa992d5764613741f980847599f9a", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 604110849}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 604241921}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4234477688}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 24, "next": [], "symbols": [{"name": "sceMpegSetDefaultPtsGap", "hash": "3deeba4d1eaef17133d5a9651c0c231013e773f2", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 4234477712}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 24, "next": [], "symbols": [{"name": "sceMpegSetDefaultPtsGap", "hash": "6da65ad51815e78b3f59490db4b877d113cd1567", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4234150008}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 20, "next": [], "symbols": [{"name": "sceMpegResetDefaultPtsGap", "hash": "053914c5c3531a354a96a2f1af2489cc517d1ce5", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 4234150032}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 20, "next": [], "symbols": [{"name": "sceMpegResetDefaultPtsGap", "hash": "5c186a8452d7aa22dcaffa76eeaa3b9ca9ce8e53", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 65011720}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2892300504}, "child": {"skip": 0, "offset": 16, "next": [], "symbols": [{"name": "sceMpegSetImageBuff", "hash": "2c767a1ff3800f83e25bf52cd955229c25a1b75b", "variant": 0, "library": "libmpeg"}]}}, {"match": {"value": 2892300528}, "child": {"skip": 0, "offset": 16, "next": [], "symbols": [{"name": "sceMpegSetImageBuff", "hash": "fa34fb757dda18b84f9da01116f4b5bccbd40a71", "variant": 0, "library": "libmpeg"}]}}, {"match": {"value": 2892300524}, "child": {"skip": 0, "offset": 16, "next": [], "symbols": [{"name": "sceMpegSetImageBuff", "hash": "66236389fe8a4762767818897b8c696e6f5868ff", "variant": 0, "library": "libmpeg"}]}}, {"match": {"value": 2892107936}, "child": {"skip": 0, "offset": 16, "next": [], "symbols": [{"name": "sceMpegGetPictureAbort", "hash": "4b001f0b6b54584922b3bb0be83495d01d00cdb2", "variant": 0, "library": "libmpeg"}]}}, {"match": {"value": 2892105848}, "child": {"skip": 0, "offset": 16, "next": [], "symbols": [{"name": "sceMpegGetPictureAbort", "hash": "929d5c4ab5abc2bff17c24561aafa4e9e7070ad1", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2892103928}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 20, "next": [], "symbols": [{"name": "sceSetPtm", "hash": "0213e30efb734d9175923e7414c99f6b1ee8b2bb", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2355233000}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 16, "next": [], "symbols": [{"name": "sceSetBrokenLink", "hash": "b4b82f331b6808b21e7378f124bfaac03f36d5a0", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2355233024}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 16, "next": [], "symbols": [{"name": "sceSetBrokenLink", "hash": "7e27063fb2f6a325c830aa7e750ee3f200921ef2", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2355233020}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 16, "next": [], "symbols": [{"name": "_sceMpegSetBrokenLink", "hash": "aec0c427021acfc92db7f2ff5fde195784983f61", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604110860}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 2357723200}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 10627096}, "child": {"skip": 40, "offset": 52, "next": [], "symbols": [{"name": "sceMpegAddCallback", "hash": "3013ad39f8e7d1e0f49e1ea7badc7b010d330990", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 346161157}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 14381}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2357329920}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2353201172}, "child": {"skip": 20, "offset": 40, "next": [], "symbols": [{"name": "crypto_sslc_random_get_info", "hash": "bd409b443b306a3376c6bc9c12b81efd88a7d189", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2357395456}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2361524224}, "child": {"skip": 20, "offset": 40, "next": [], "symbols": [{"name": "crypto_sslc_random_set_info", "hash": "e41092c5aaed6dbd506b55d4f5c7c99ee5021e04", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2357592128}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604176385}, "child": {"skip": 4, "offset": 12, "next": [{"match": {"value": 2898460920}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 65011720}, "child": {"skip": 4)PS2SDB", 8192}, + std::string_view{R"PS2SDB(, "offset": 24, "next": [], "symbols": [{"name": "sceSetPtm", "hash": "364eeeebb4ff6963e82b685fa376b1c4d8e46183", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2898460944}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 24, "next": [], "symbols": [{"name": "sceSetPtm", "hash": "3794a2acf4256559bc050eb8c873b46d7de1befa", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2898460936}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 24, "next": [], "symbols": [{"name": "_sceMpegSetPtm", "hash": "402a17010fbe27705be0a226f994efb6f18bd5d6", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2894397452}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 2894462980}, "child": {"skip": 12, "offset": 20, "next": [], "symbols": [{"name": "_alalcInit", "hash": "bd580aa885ab9855465bebde3efe44101347354e", "variant": 0, "library": "libmpeg"}, {"name": "_sceMpegAlalcInit", "hash": "bd580aa885ab9855465bebde3efe44101347354e", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2357329932}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 65011720}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2894200840}, "child": {"skip": 0, "offset": 12, "next": [], "symbols": [{"name": "_alalcFree", "hash": "4ab23b5a4cc0c8001c33d5898a73118280ccaab3", "variant": 0, "library": "libmpeg"}, {"name": "_sceMpegAlalcFree", "hash": "4ab23b5a4cc0c8001c33d5898a73118280ccaab3", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 338176}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 8724513}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 135424}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 608305168}, "child": {"skip": 8, "offset": 28, "next": [], "symbols": [{"name": "sceHiPlugShapeGetGeometryNormal", "hash": "fb97a8d08cd5f8a2741a3e1dd715088c7bd66410", "variant": 0, "library": "libhip"}, {"name": "sceHiPlugShareGetDst", "hash": "fb97a8d08cd5f8a2741a3e1dd715088c7bd66410", "variant": 0, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 135488}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 608305168}, "child": {"skip": 8, "offset": 28, "next": [], "symbols": [{"name": "sceHiPlugShapeGetGeometryST", "hash": "5c5cf27bd96e505cc3a317dd1693d45683732cc9", "variant": 0, "library": "libhip"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604176432}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 338176}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "sceHiPlugShapeGetGeometryColor", "hash": "e777908b9276b7b8e50907fd09bcea2c330fd45e", "variant": 0, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 2357395464}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 135296}, "child": {"skip": 36, "offset": 48, "next": [], "symbols": [{"name": "sceHiPlugAnimeGetValue", "hash": "e86d873604656c1ccb9fc0d3672e78fb8481bb79", "variant": 0, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 6189}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 406847499}, "child": {"skip": 52, "offset": 64, "next": [], "symbols": [{"name": "searchbasemat", "hash": "c543e3f86117fc1f465894291271aba688f3a1dd", "variant": 0, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 10491949}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2355429384}, "child": {"skip": 16, "offset": 28, "next": [], "symbols": [{"name": "__sceEENetraw_setpeeraddr", "hash": "dba9cd4548cf071e381f02507803b93d9e811ea9", "variant": 2942176842, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2894071880}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "_ipuSetMPEG1"}}, "child": {"skip": 4, "offset": 12, "next": [], "symbols": [{"name": "_initSeqAgain", "hash": "e58a17154b85815aa6ae51b2dfd0c90fade84882", "variant": 1029252267, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2894071904}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "_ipuSetMPEG1"}}, "child": {"skip": 4, "offset": 12, "next": [], "symbols": [{"name": "_initSeqAgain", "hash": "476b221021556ef2452c4bba3a43c34d9631903f", "variant": 1029252267, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 604110849}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006895104, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2900492288}, "child": {"skip": 16, "offset": 28, "next": [], "symbols": [{"name": "handler", "hash": "3b40d1727d9654b0e3ef77b84e33fc9fc99ac81b", "variant": 2968857585, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 1006833664}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2944532480, "relocation": {"type": "MIPS_GPREL16", "symbol": "_isTop32dirty"}}, "child": {"skip": 100, "offset": 112, "next": [], "symbols": [{"name": "_clearEach", "hash": "47cf8358bfbc5a988c84dfc034c559170a0aca69", "variant": 3211521307, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2426601475}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 8523780}, "child": {"skip": 16, "offset": 28, "next": [], "symbols": [{"name": "clear_status", "hash": "289ed07a2727b3e49171bd7ea9f3edcb678dc6f1", "variant": 0, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 276955159}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1007091712, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 280, "offset": 292, "next": [], "symbols": [{"name": "sceHiDMAMarkup", "hash": "8c5b529f0de1267d69cb691fa26571e41ff47a7e", "variant": 2479967815, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 344064005}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 24, "offset": 36, "next": [], "symbols": [{"name": "_iopnotify", "hash": "21ba83308cf87059ab54d0100492a439fbb08180", "variant": 2037187491, "library": "libmrpc"}]}}], "symbols": []}}, {"match": {"value": 2894069792}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2894069772}, "child": {"skip": 8, "offset": 20, "next": [], "symbols": [{"name": "file_new", "hash": "c9c4f85088d802b8df976cd30b5306cfef6abe72", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2894069780}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2894069772}, "child": {"skip": 12, "offset": 24, "next": [], "symbols": [{"name": "scefd_new", "hash": "bd7dbc743a3504adae71c2d61f50cf09f091c708", "variant": 0, "library": "libhttps"}, {"name": "sock_new", "hash": "bd7dbc743a3504adae71c2d61f50cf09f091c708", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 346161158}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 14381}, "child": {"skip": 4, "offset": 16, "next": [{"match": {"value": 2353201152}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2355363848}, "child": {"skip": 140, "offset": 164, "next": [], "symbols": [{"name": "crypto_sslc_cipher_get_info", "hash": "2289ea0d4c97125130db03ffd3acf004d125c2da", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2361655296}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 2353201152}, "child": {"skip": 140, "offset": 164, "next": [], "symbols": [{"name": "crypto_sslc_cipher_set_info", "hash": "34305e03679535257b04f88004b270c87605616a", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 346161157}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 14381}, "child": {"skip":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( 0, "offset": 12, "next": [{"match": {"value": 2357329948}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2353201172}, "child": {"skip": 44, "offset": 64, "next": [], "symbols": [{"name": "crypto_sslc_digest_get_info", "hash": "5eeec9d4424bf6dd0fefe9c9a186bbbe86d96afe", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2357395484}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2361524224}, "child": {"skip": 44, "offset": 64, "next": [], "symbols": [{"name": "crypto_sslc_digest_set_info", "hash": "f42738c52a5838faf5ce7c5d8bbf2af99dac3911", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 279052298}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 6189}, "child": {"skip": 24, "offset": 36, "next": [{"match": {"value": 604110855}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 1419902978}, "child": {"skip": 16, "offset": 60, "next": [], "symbols": [{"name": "crypto_sslc_null_cipher_get_info", "hash": "6dcd48f0c7a8679e1ea8869269eb1655ac017538", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 950140935}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 604186402}, "child": {"skip": 12, "offset": 56, "next": [], "symbols": [{"name": "crypto_sslc_null_cipher_set_info", "hash": "43f7d0124d13090858ddfd74e96590b8ceafe6bb", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 346161155}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 6189}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "crypto_sslc_null_key_exch_get_info", "hash": "55513e386349c7dca64ccbdf859bb8bc49342451", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 332035}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 399619}, "child": {"skip": 24, "offset": 32, "next": [], "symbols": [{"name": "_RefImageInit", "hash": "c58dd4785ec4210b9b684f54bcc3323786553f92", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2357461056}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "sceIpuStopDMA"}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 612630604}, "child": {"skip": 0, "offset": 12, "next": [], "symbols": [{"name": "_defStopDMA", "hash": "2d0cc84a4c23c34de847f2fc280b5fa3b3f7ea94", "variant": 3935452596, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "sceIpuRestartDMA"}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 612630604}, "child": {"skip": 0, "offset": 12, "next": [], "symbols": [{"name": "_defRestartDMA", "hash": "2d0cc84a4c23c34de847f2fc280b5fa3b3f7ea94", "variant": 1118297738, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2357395464}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 338115}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2357329956}, "child": {"skip": 32, "offset": 44, "next": [], "symbols": [{"name": "_sysbitPtr", "hash": "a407c4c106fd52215c05d61f49c52d5cc814e9e2", "variant": 0, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 2489450502}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 809631745}, "child": {"skip": 24, "offset": 36, "next": [], "symbols": [{"name": "__sceEENetraw_disconnect", "hash": "69f7289e5306b9e74a551968f7fca88110d0c2be", "variant": 2862286709, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 65011720}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2355232776}, "child": {"skip": 0, "offset": 12, "next": [], "symbols": [{"name": "X509_NAME_ENTRY_get_data_ptr", "hash": "bfb912d6b2b9781881b154893e5092edc6f43b28", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10500141}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 666763248}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 6189}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 746717194}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 272629786}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 10285}, "child": {"skip": 112, "offset": 136, "next": [], "symbols": [{"name": "_type2id", "hash": "0ad77aa6a28346c5e4f040f7bc882f21eeac3006", "variant": 1178944049, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 272629788}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 10285}, "child": {"skip": 120, "offset": 144, "next": [], "symbols": [{"name": "_type2id", "hash": "ee1bf2c3ce919adf5bed949428486633f477166a", "variant": 4009514147, "library": "libmpeg"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707456}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8398893}, "child": {"skip": 164, "offset": 180, "next": [], "symbols": [{"name": "setupStartVoiceLfo", "hash": "00d201783d8d6417a9088e62e2ba3e11f34f6b5a", "variant": 2744649295, "library": "libssyn"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 6189}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 746717194}, "child": {"skip": 156, "offset": 168, "next": [], "symbols": [{"name": "_sceMpegType2id", "hash": "662bbc463f7fdea6361ce80ac6d652760df7eff0", "variant": 2517681164, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 604176383}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 666763120}, "child": {"skip": 348, "offset": 360, "next": [], "symbols": [{"name": "_sceMcFatReadFatData", "hash": "7f7d690b2d47f7a1735f68863f37467ad07e5fc4", "variant": 504595958, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 666763184}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 685965312}, "child": {"skip": 352, "offset": 364, "next": [], "symbols": [{"name": "_sceMcFatReadFatData", "hash": "c522a60afcb57b4d3a1f9fd1d79d1ae68fa9912b", "variant": 4022122182, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 348127238}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2900623376}, "child": {"skip": 80, "offset": 92, "next": [], "symbols": [{"name": "__sceEENetsoqinsque", "hash": "b17eff227100daecaf81d49702b593396dc46c07", "variant": 0, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 1006764035}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 876777015}, "child": {"skip": 84, "offset": 96, "next": [], "symbols": [{"name": "__sceEENetsbreserve", "hash": "64b8cc2c6935c9872f43a1a07670a009bcd31db0", "variant": 0, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 276824066}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 12333}, "child": {"skip": 116, "offset": 128, "next": [], "symbols": [{"name": "__sceEENettcp_mss_to_advertise", "hash": "e1d2d1ba5afa9917aee23219c5daacbfd5917c1f", "variant": 1930678052, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666762912}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 4290642240}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290117920}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8450093}, "child": {"skip": 764, "offset": 780, "next": [], "symbols": [{"name": "sceMpegDemuxPssRing", "hash": "b9bbf65f177ccdd4f22ab760c20c475a4df8d7f4", "variant": 633035147, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 4290183472}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 12644397}, "child": {"skip": 828, "offset": 844, "next": [], "symbols": [{"name": "dsa_verify_cb", "hash": "1882a6f560db15d5bab764439ea50664fe428d61", "variant": 1243452753, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006716160}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1149315072}, "child": {"skip": 528, "offset")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: 540, "next": [], "symbols": [{"name": "clip_calc", "hash": "69d06a3236d651c2e49fc0bdcc2bf84d8a3b13b8", "variant": 337413272, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 10285}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289986880}, "child": {"skip": 632, "offset": 644, "next": [], "symbols": [{"name": "_sce_eenet_dhclient_make_release", "hash": "47b729238e2f339428feb6ae7af919233feab16d", "variant": 1833067247, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2357919808}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12611629}, "child": {"skip": 296, "offset": 304, "next": [], "symbols": [{"name": "sceMpegAddStrCallback", "hash": "1c8d7af756a8253f3989ee08cdf9f85c30425636", "variant": 1060267273, "library": "libmpeg"}]}}], "symbols": []}}, {"match": {"value": 276824093}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 0}, "child": {"skip": 120, "offset": 128, "next": [], "symbols": [{"name": "sceMSIn_Init", "hash": "9f2ff66a62059751b463d50729c7437ac02ce998", "variant": 0, "library": "libmsin"}]}}], "symbols": []}}, {"match": {"value": 1417674755}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 2357395460}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 65011720}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 604176383}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2355232776}, "child": {"skip": 108, "offset": 128, "next": [{"match": {"value": 610467841}, "child": {"skip": 0, "offset": 132, "next": [{"match": {"value": 350552058}, "child": {"skip": 12, "offset": 148, "next": [], "symbols": [{"name": "put_message", "hash": "b8038e43d6784a2c1e89d48cef4e594ac082e215", "variant": 0, "library": "libmsin"}]}}], "symbols": []}}, {"match": {"value": 0}, "child": {"skip": 0, "offset": 132, "next": [{"match": {"value": 350552058}, "child": {"skip": 12, "offset": 148, "next": [], "symbols": [{"name": "put_message", "hash": "7589fc60d24afc770286342d2b6bc9a97e511005", "variant": 0, "library": "libmsin"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4141}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 24, "next": [], "symbols": [{"name": "X509_NAME_get_entry_count", "hash": "da6c862a2bf54510f44598c0651fa70e6bc46f26", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2357329920}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 65011720}, "child": {"skip": 108, "offset": 120, "next": [], "symbols": [{"name": "sceSEIn_Init", "hash": "48f6406709a9e7500ec338729e300342db7727ae", "variant": 0, "library": "libsein"}]}}], "symbols": []}}, {"match": {"value": 3699572744}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 65011720}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "SSL_CIPHER_get_id", "hash": "139f4a36c2aa5b34872c1aa28dbe8f63274bf0fa", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 4236574880}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 65011720}, "child": {"skip": 12, "offset": 24, "next": [], "symbols": [{"name": "SSL_SESSION_set_timeout", "hash": "8122a9cfe0e54bb5ba318857782175586570cc79", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 3699507256}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 65011720}, "child": {"skip": 12, "offset": 24, "next": [], "symbols": [{"name": "SSL_CTX_set_timeout", "hash": "1459cdd0600e90016751e044f05eb6da04bb942e", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 813826303}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 137474}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 604241926}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "frombcd", "hash": "5d679b42c674c5b3046eab1ca58cde278c469e70", "variant": 0, "library": "libscf"}]}}], "symbols": []}}, {"match": {"value": 666763248}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 604242048}, "child": {"skip": 28, "offset": 40, "next": [], "symbols": [{"name": "velMod5Amp", "hash": "8c8d941a861ba72c60b1f119c0db39aaf82864cb", "variant": 2896973123, "library": "libssyn"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8394797}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 2422341635}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 339738628}, "child": {"skip": 24, "offset": 36, "next": [], "symbols": [{"name": "subhour", "hash": "c799cd170ec9a97e615f449f03aaeb3810144ce9", "variant": 3361816909, "library": "libscf"}]}}], "symbols": []}}, {"match": {"value": 604110896}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2422472707}, "child": {"skip": 360, "offset": 372, "next": [], "symbols": [{"name": "sceGpGetNextDmatag", "hash": "36928949ca2bb8b2e543625b0b20b763bfdfb996", "variant": 1146535613, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 2489450544}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 876740609}, "child": {"skip": 8, "offset": 20, "next": [], "symbols": [{"name": "__sceEENetif_up", "hash": "b33ec7ac18b833d79fd99c2a4d8ab7073df4d218", "variant": 360932116, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 604110850}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2892104048}, "child": {"skip": 28, "offset": 40, "next": [], "symbols": [{"name": "sppp_pap_init", "hash": "a66772eaf6b93cdcb51d76953273387aee4a3823", "variant": 1954033520, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2355363844}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1350565892}, "child": {"skip": 48, "offset": 60, "next": [], "symbols": [{"name": "delete", "hash": "2238183baca79c492c4d019f78d145daf10514bb", "variant": 228976876, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006796800}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 12, "next": [], "symbols": [{"name": "sceCccIsValidUCS4", "hash": "ae391038743a6a9b92bb5e244926c29d4bacaaf8", "variant": 0, "library": "libccc"}]}}], "symbols": []}}, {"match": {"value": 872611839}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 4460587}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 16, "next": [], "symbols": [{"name": "sceCccIsValidUCS2", "hash": "b8beead3b67d479fdd005c46f96351909f47deda", "variant": 0, "library": "libccc"}]}}], "symbols": []}}, {"match": {"value": 816185343}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4460587}, "child": {"skip": 40, "offset": 52, "next": [], "symbols": [{"name": "sceCccUCStoJIS", "hash": "aab3314b8c085308c3f9c3ab6f462e8a34274e7b", "variant": 1906293676, "library": "libccc"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764048}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 876806143}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4460587}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 272629763}, "child": {"skip": 32, "offset": 48, "next": [], "symbols": [{"name": "sceCccIsValidUTF16", "hash": "5378c4088e112860680ea2d931d22372400c3e67", "variant": 0, "library": "libccc"}]}}], "symbols": []}}, {"match": {"value": 4526123}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 272629763}, "child": {"skip": 116, "offset": 132, "next": [], "symbols": [{"name": "sceCccEncodeUTF16", "hash": "d9b15ec9262b7aeddde7f47f2550e997804ee44d", "variant": 2541264430, "library": "libccc"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 276824081}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 621477894}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2357395460}, "child": {"skip": 220, "offset": 232, "next": [], "symbols": [{"name": "sceSEIn_PutSEMsg")PS2SDB", 8192}, + std::string_view{R"PS2SDB(, "hash": "ae7df1ab912c3cfe5adc33138df2658029391e57", "variant": 0, "library": "libsein"}]}}], "symbols": []}}, {"match": {"value": 12333}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1007091712, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 80, "offset": 92, "next": [], "symbols": [{"name": "allocate_iop_sifcmd", "hash": "06d0ac1e57079883e41f20668c4d882ff83aa587", "variant": 306401506, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 14702637}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 16801837}, "child": {"skip": 124, "offset": 132, "next": [], "symbols": [{"name": "sceSEIn_MakeAllNoteOffMask", "hash": "c5541792912d9fe91a68c758a3d9aa588b0d1ae8", "variant": 827247635, "library": "libsein"}]}}], "symbols": []}}, {"match": {"value": 2359754752}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 666763248}, "child": {"skip": 168, "offset": 176, "next": [], "symbols": [{"name": "make_delta_time", "hash": "38203e6878824c2f5bf35f073d173e962c67ae1a", "variant": 0, "library": "libsein"}]}}], "symbols": []}}, {"match": {"value": 2426601475}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604110849}, "child": {"skip": 16, "offset": 24, "next": [], "symbols": [{"name": "set_status", "hash": "33cdefef9f2e15d0d1e8ea1420ef393412ea9f11", "variant": 0, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 3701669888}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 4141}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "sceHiSetPlugType", "hash": "dbd89432e642012025e144412a7f583dc845da0a", "variant": 0, "library": "libhig"}, {"name": "sceHiSetDataType", "hash": "dbd89432e642012025e144412a7f583dc845da0a", "variant": 0, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 2156331024}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 417333259}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 6189}, "child": {"skip": 56, "offset": 68, "next": [], "symbols": [{"name": "sceHiGetPlugPlace", "hash": "ee4b24749737225fe1630d6596d600f069dd4102", "variant": 0, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 6189}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 463104}, "child": {"skip": 72, "offset": 84, "next": [], "symbols": [{"name": "sceHiGetDataPlace", "hash": "015f4a427ae2deb1b3b5005cca632e31aa63a652", "variant": 0, "library": "libhig"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 407488}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12922917}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "make_info_block", "hash": "7809a5624e49efddb38629ffc75312fefb76a915", "variant": 0, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 8720419}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 12, "next": [], "symbols": [{"name": "_calc_freeq", "hash": "e8ab82197215853130628bdbbbd0b1d4a3811e30", "variant": 0, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 612630591}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 10500141}, "child": {"skip": 132, "offset": 140, "next": [], "symbols": [{"name": "sceHiGsMemInit", "hash": "d674e76659214ce1bb963572a52d8363e813d2e2", "variant": 982910319, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 276824067}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2353201152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2894266368}, "child": {"skip": 16, "offset": 32, "next": [{"match": {"value": 65011720}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 0}, "child": {"skip": 0, "offset": 40, "next": [], "symbols": [{"name": "sceEENetGetResolvTO", "hash": "b269f6944e20e12c6fa4772a353e38d966f7e38a", "variant": 1189776289, "library": "libeenet"}, {"name": "R_get_locked_mem_functions", "hash": "b269f6944e20e12c6fa4772a353e38d966f7e38a", "variant": 1189776289, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 281018371}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 16, "offset": 56, "next": [], "symbols": [{"name": "R_get_mem_functions", "hash": "62bb22cc4cc3c2704a02fb1a6b8d94554f45db0a", "variant": 2339890241, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 65011720}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2357329924}, "child": {"skip": 8, "offset": 24, "next": [], "symbols": [{"name": "SSL_CIPHER_get_name", "hash": "577e37e42a951020c97edb2adc95287e8ff5d90d", "variant": 3019051150, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 0}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "sceHiMemFree"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2357460992}, "child": {"skip": 8, "offset": 24, "next": [], "symbols": [{"name": "_delete_packed", "hash": "e2b29a7ebab84b2e4b4d36a25505fe4b8afb6231", "variant": 3191541914, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "R_free"}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 8, "offset": 24, "next": [], "symbols": [{"name": "CRYPTO_EX_DATA_FUNCS_free", "hash": "0fd5609f5e06df3386a47c2ff457f9508eea03d7", "variant": 1862029657, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 1419771909}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2357592076}, "child": {"skip": 184, "offset": 200, "next": [], "symbols": [{"name": "BN_cmp", "hash": "d705448756bcb3478e5d3e585ede67a41093a1f2", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10285}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "memset"}}, "child": {"skip": 12, "offset": 24, "next": [], "symbols": [{"name": "_sce_eenet_dhclient_clean_param", "hash": "58e72f80eee11e8a4ebef8e117fee7f706185078", "variant": 1782940278, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 604176383}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 65011720}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2357329956}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 24, "next": [], "symbols": [{"name": "sceHTTPGetSocketError", "hash": "1e77ad6fbbfb31b14d43acdeb43734da11add608", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2357329960}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 24, "next": [], "symbols": [{"name": "sceHTTPGetResolveError", "hash": "c08afa8288ba2a1e01ffd4698d834390b74c5a75", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4141}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 65011720}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 3699507360}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 24, "next": [], "symbols": [{"name": "SSL_SESSION_get_timeout", "hash": "88af338cd6341e8e7fb9e45e8f1a8d3f8ca39e51", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 3699507256}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 24, "next": [], "symbols": [{"name": "SSL_CTX_get_timeout", "hash": "8bdf981f142c7905b8cee5a1db48b754fa62aac1", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2357329)PS2SDB", 8192}, + std::string_view{R"PS2SDB(920}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 24, "next": [], "symbols": [{"name": "X509v3_get_ext_count", "hash": "63b523ed7073a189c4e9b25ee8d0d6c20db61607", "variant": 0, "library": "libhttps"}, {"name": "X509_EXTENSION_get_object", "hash": "63b523ed7073a189c4e9b25ee8d0d6c20db61607", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2357329928}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 24, "next": [], "symbols": [{"name": "X509_EXTENSION_get_data", "hash": "dcfd937f983e001bb21704a9f68255198c0f1b85", "variant": 0, "library": "libhttps"}, {"name": "X509_NAME_ENTRY_get_data", "hash": "dcfd937f983e001bb21704a9f68255198c0f1b85", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2223112196}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 24, "next": [], "symbols": [{"name": "X509_EXTENSION_get_critical", "hash": "320057c00379484f521a2f37908a72a8814d04ea", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2357329924}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 24, "next": [], "symbols": [{"name": "X509_NAME_get_entries", "hash": "a1198da59a0ebf6e99cccc452dca943894ad070f", "variant": 0, "library": "libhttps"}, {"name": "X509_NAME_ENTRY_get_object", "hash": "a1198da59a0ebf6e99cccc452dca943894ad070f", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006714752}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1149304832}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4141}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2693070896}, "child": {"skip": 20, "offset": 36, "next": [], "symbols": [{"name": "sceHiGsCtxSetClearColor", "hash": "7798fc79efed676433b22785a58903dff57ac97a", "variant": 0, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 612500176}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2894070560}, "child": {"skip": 64, "offset": 80, "next": [{"match": {"value": 2894070668}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 2894070672}, "child": {"skip": 44, "offset": 132, "next": [], "symbols": [{"name": "scePFontFlush", "hash": "2770634a4b9aa7734eb723fe716d8bc43d9edfea", "variant": 1592093665, "library": "libpfont"}]}}], "symbols": []}}, {"match": {"value": 2894070672}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 2894070676}, "child": {"skip": 44, "offset": 132, "next": [], "symbols": [{"name": "scePFontFlush", "hash": "337fa62c70bd4b9fb4b46489f4edd4a14004fca7", "variant": 1592093665, "library": "libpfont"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1175348098}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1175191553}, "child": {"skip": 12, "offset": 28, "next": [], "symbols": [{"name": "linear", "hash": "0db4665b508f39df44f5bab588602d0e403189ea", "variant": 0, "library": "libhip"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1149306880}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 116, "offset": 128, "next": [], "symbols": [{"name": "sceSynthesizerSetupMidiPanpot", "hash": "f2f60019956f1f5db12f3dd9ece4092a98fce6dc", "variant": 201230608, "library": "libssyn"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2894397524}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 4141}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "sceHiGsCtxSetClearZ", "hash": "384c4de8129e51a2cde6f34631db76e7c85e0046", "variant": 0, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 3699572856}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006813439}, "child": {"skip": 44, "offset": 52, "next": [], "symbols": [{"name": "sceHiGsCtxSetColorDepth", "hash": "2814c4c7a904d8cd6a3fb1c9718154e2cb55c2a5", "variant": 0, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 3699900544}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604634624}, "child": {"skip": 44, "offset": 52, "next": [], "symbols": [{"name": "sceHiGsCtxSetEachBuffer", "hash": "2609c4e082f39a1ffe22d4940203139b56c793d4", "variant": 0, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 3699835008}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604700160}, "child": {"skip": 76, "offset": 84, "next": [], "symbols": [{"name": "sceHiGsCtxShiftBuffers", "hash": "b99d89ca38f9086d4e765cd759e0977051be94e7", "variant": 0, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 818282497}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 612499680}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 405568}, "child": {"skip": 336, "offset": 348, "next": [], "symbols": [{"name": "sceHiGsCtxGetTex0", "hash": "048b7004c719b4d1be6983f8446db1ac44a3b9ac", "variant": 0, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 2357788684}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 406520}, "child": {"skip": 112, "offset": 124, "next": [], "symbols": [{"name": "sceHiGsEnvSetRegTexa", "hash": "aff556bcd5602b243a546c5ae2a7c9ed119f78be", "variant": 0, "library": "libhig"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8413229}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 10508333}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 3716481144}, "child": {"skip": 656, "offset": 668, "next": [], "symbols": [{"name": "sceHiGsCtxGetClamp", "hash": "f0b9d1ef19e08cf18eef972112e06194663d6e03", "variant": 0, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 293601301}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 88, "offset": 100, "next": [], "symbols": [{"name": "sceEENetMallocStat", "hash": "3af36872329d46bc55bf01f70bb83bed7a19ac1b", "variant": 2519558253, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 12609581}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 14708781}, "child": {"skip": 188, "offset": 200, "next": [], "symbols": [{"name": "maketime", "hash": "ba71bc4aa7e292d7b6216087de7723b6ad2a42c1", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2693071079}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 12, "next": [], "symbols": [{"name": "sceHiGsCtxSetContext", "hash": "8a41e0ff08a7024d27ab47bb5347ac2769befc3e", "variant": 0, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 3699507320}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604241408}, "child": {"skip": 100, "offset": 108, "next": [], "symbols": [{"name": "sceHiGsCtxSetFrame", "hash": "2e10fba4161b6fe1dbcaf141f5d4d9a57a2136c6", "variant": 0, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 3699572864}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604175872}, "child": {"skip": 96, "offset": 104, "next": [], "symbols": [{"name": "sceHiGsCtxSetRegZbuf", "hash": "69c0d461f075fe3554596d96bb3a4b38c32d500b", "variant": 0, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 3699507336}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604225536}, "child": {"skip": 416, "offset": 424, "next": [], "symbols": [{"name": "sceHiGsCtxSetRegTex0", "hash": "618b2b1665841b77efa143833340e3beade59f32", "variant": 0, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 3699572880}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604176382}, "child": {"skip": 176, "offset": 184, "next": [], "symbols": [{"name": "sceHiGsCtxSetRegTex1", "hash": "51f34fda4538f9dece8147010ac9a3f91f1a2074")PS2SDB", 8192}, + std::string_view{R"PS2SDB(, "variant": 0, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 3699507360}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604225536}, "child": {"skip": 212, "offset": 220, "next": [], "symbols": [{"name": "sceHiGsCtxSetRegMiptbp1", "hash": "7323a5614c534f250a020b7529cf8eb1aeb6fb93", "variant": 0, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 3699507368}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604225536}, "child": {"skip": 212, "offset": 220, "next": [], "symbols": [{"name": "sceHiGsCtxSetRegMiptbp2", "hash": "e7d43f72402284826188ca4ca24b4b3021cbbd0b", "variant": 0, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 3699507376}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604241916}, "child": {"skip": 172, "offset": 180, "next": [], "symbols": [{"name": "sceHiGsCtxSetRegClamp", "hash": "ca29a89add1ab232fc457223269722368ad250f1", "variant": 0, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 3699572920}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604176382}, "child": {"skip": 192, "offset": 200, "next": [], "symbols": [{"name": "sceHiGsCtxSetRegTest", "hash": "7c8655f97fea221d2c16eca122599c883b4641cd", "variant": 0, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 3699507392}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604241916}, "child": {"skip": 100, "offset": 108, "next": [], "symbols": [{"name": "sceHiGsCtxSetRegAlpha", "hash": "53e562c926440ccae4ed36614e3334d983817bc2", "variant": 0, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 2491613412}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 4141}, "child": {"skip": 20, "offset": 28, "next": [], "symbols": [{"name": "sceHiGsCtxSetRegXyoffset", "hash": "8a2e997e979a9e87d4d40817cd537dd24e964370", "variant": 0, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 3699769560}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604504062}, "child": {"skip": 36, "offset": 44, "next": [], "symbols": [{"name": "sceHiGsCtxSetRegFba", "hash": "8bd55d1355b66408ad57ef137b7fb0faafaeecf2", "variant": 0, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 2357657612}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 10498093}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 16429}, "child": {"skip": 4, "offset": 16, "next": [{"match": {"value": 272629769}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 10285}, "child": {"skip": 116, "offset": 140, "next": [], "symbols": [{"name": "sceHiGsEnvSetRegColclamp", "hash": "96114d9d49fed91b3764e2edab689212480a5db2", "variant": 0, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 272629763}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 10285}, "child": {"skip": 36, "offset": 60, "next": [{"match": {"value": 604176388}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 10620932}, "child": {"skip": 52, "offset": 120, "next": [], "symbols": [{"name": "sceHiGsEnvSetRegDthe", "hash": "6b9b9dd98297e12e211d807b027cff669578c28c", "variant": 0, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 604176416}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 10620932}, "child": {"skip": 52, "offset": 120, "next": [], "symbols": [{"name": "sceHiGsEnvSetRegPabe", "hash": "af24550b2a225767c05f533863690f90cd7bd1d9", "variant": 0, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 604176640}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 10620932}, "child": {"skip": 52, "offset": 120, "next": [], "symbols": [{"name": "sceHiGsEnvSetRegPrmodecont", "hash": "7e7e93321ad72bdee68378ae8e8b434f932bd3e0", "variant": 0, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 604177408}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 10620932}, "child": {"skip": 52, "offset": 120, "next": [], "symbols": [{"name": "sceHiGsEnvSetRegScanmsk", "hash": "7818b012f05c6d20b128dcb23ce7910154fa6f85", "variant": 0, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 872644608}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 10620932}, "child": {"skip": 52, "offset": 120, "next": [], "symbols": [{"name": "sceHiGsEnvSetRegTrxdir", "hash": "e6c49f31678835f2f2049a5633017dea4504f168", "variant": 0, "library": "libhig"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 16429}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 820117505}, "child": {"skip": 80, "offset": 92, "next": [], "symbols": [{"name": "sceHiGsEnvSetRegFog", "hash": "6cd70b0abb16a4c951662d91dd60521689b4f980", "variant": 0, "library": "libhig"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2357788684}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 20525}, "child": {"skip": 92, "offset": 100, "next": [], "symbols": [{"name": "sceHiGsEnvSetRegFogcol", "hash": "d66fbc8230e15a6d193ed50fbbd46bc60a827810", "variant": 0, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 818282559}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 820446207}, "child": {"skip": 148, "offset": 156, "next": [], "symbols": [{"name": "sceHiGsEnvSetRegTexclut", "hash": "25d4f9847844843a596171117abe5e93f4a7c184", "variant": 0, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 818286591}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 2357723148}, "child": {"skip": 140, "offset": 148, "next": [], "symbols": [{"name": "sceHiGsEnvSetRegTrxreg", "hash": "86836da7cc38af511ed2d53f09303e3689430574", "variant": 0, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 2357723148}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 18477}, "child": {"skip": 44, "offset": 52, "next": [{"match": {"value": 1006829569}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 14815236}, "child": {"skip": 36, "offset": 96, "next": [], "symbols": [{"name": "sceHiGsEnvSetRegSignal", "hash": "b0bd6a37ae30e3df637ce401661a985dff170229", "variant": 0, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 1006829572}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 14815236}, "child": {"skip": 36, "offset": 96, "next": [], "symbols": [{"name": "sceHiGsEnvSetRegLabel", "hash": "142cbf1fcf09aad606dbd8f4e333ece5199fdfc6", "variant": 0, "library": "libhig"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 3699572944}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 4141}, "child": {"skip": 132, "offset": 140, "next": [], "symbols": [{"name": "sceHiGsCtxGetRect", "hash": "4ff24190e92b64a3131a520619029e1cef3027d6", "variant": 0, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 413138949}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 8392749}, "child": {"skip": 8, "offset": 16, "next": [{"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "SyncDCache"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 614858751}, "child": {"skip": 8, "offset": 32, "next": [], "symbols": [{"name": "_SyncAddrQwsize", "hash": "5ef43e9fc70518f82bca835425339c8248ff821b", "variant": 1801832132, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "iSyncDCache"}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 614858751}, "child": {"skip": 8, "offset": 32, "next": [], "symbols": [{"name": "_iSyncAddrQwsize", "hash": "5ef43e9fc70518f82bca835425339c8248ff821b", "variant": 222998836, "library": "libhig"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 8724513}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 4141}, "child": {"skip": 16, "offset": 24, "next": [], "symbols": [{"name": "sceHiCalcPlugBlkSize", "hash": "1dfcc8353957fa2c250c31bb288919e937202af2", "variant": 0, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 27682407)PS2SDB", 8192}, + std::string_view{R"PS2SDB(4}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 4, "offset": 12, "next": [{"match": {"value": 1759707143}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1826816000}, "child": {"skip": 32, "offset": 52, "next": [], "symbols": [{"name": "sceHiDMAGetState", "hash": "cbe10671d64414cd5b2da7b516ef7d938a23c4f4", "variant": 3135353075, "library": "libhig"}]}}], "symbols": []}}, {"match": {"value": 1753415687}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1820524544}, "child": {"skip": 32, "offset": 52, "next": [], "symbols": [{"name": "sceHiDMASetState", "hash": "7f3534d825380213720cc2bd237192f1027c6635", "variant": 3135353075, "library": "libhig"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764115}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 608444848}, "child": {"skip": 28, "offset": 36, "next": [], "symbols": [{"name": "mwInit", "hash": "fda9d0cc4b1134d952b88118b905672bd9844955", "variant": 1436154619, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 1006764127}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 608461328}, "child": {"skip": 28, "offset": 36, "next": [], "symbols": [{"name": "mwInit", "hash": "79c51b5843c926825c81998590221b6ff705c023", "variant": 1436154619, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 1006764060}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 608442816}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006764060}, "child": {"skip": 24, "offset": 36, "next": [], "symbols": [{"name": "mwInit", "hash": "1b7b1241adca4f70634b433530ffb8cd19051211", "variant": 1436154619, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 608347632}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2894200844}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "__FindExceptionTable__FP13ExceptionInfoPc", "hash": "bb0bd6ef42fe561d41c15d87813815edc750cf67", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006895159}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006960695}, "child": {"skip": 8, "offset": 16, "next": [{"match": {"value": 612676976}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 614839852}, "child": {"skip": 12, "offset": 36, "next": [], "symbols": [{"name": "mwInit", "hash": "3e8452cf304d03ccd084e4714b3d14999124b801", "variant": 1436154619, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 612678896}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 614841772}, "child": {"skip": 12, "offset": 36, "next": [], "symbols": [{"name": "mwInit", "hash": "f6aba7a7af83a1ef5978b329ba84c2171758c93c", "variant": 1436154619, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764111}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 608452176}, "child": {"skip": 28, "offset": 36, "next": [], "symbols": [{"name": "mwInit", "hash": "fd9c303a319db8cc67f99bfa164026fd5fe5750b", "variant": 1436154619, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 1006895165}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006960701}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1007026238}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1007091774}, "child": {"skip": 20, "offset": 36, "next": [], "symbols": [{"name": "mwInit", "hash": "d58d84da1432c2ba31f630bc596a4d6c053eb0fe", "variant": 1436154619, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 1007026237}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1007091773}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 612685696}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 614848508}, "child": {"skip": 12, "offset": 36, "next": [], "symbols": [{"name": "mwInit", "hash": "f4de8fe7c7a2eb23e7d63f48cf4647380415b357", "variant": 1436154619, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 612689056}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 614851808}, "child": {"skip": 12, "offset": 36, "next": [], "symbols": [{"name": "mwInit", "hash": "d95ea79125fcc2b5ae9513ec662091224334aabb", "variant": 1436154619, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006895163}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006960699}, "child": {"skip": 28, "offset": 36, "next": [], "symbols": [{"name": "mwInit", "hash": "f746fe4ac78c57875a350dcf96ba503a90facb32", "variant": 1436154619, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 1006895164}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006960700}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1007026237}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1007091773}, "child": {"skip": 20, "offset": 36, "next": [], "symbols": [{"name": "mwInit", "hash": "73bf3de8164b815325fb1afdae53706367659265", "variant": 1436154619, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 1007026236}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1007091772}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 612677504}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 614840288}, "child": {"skip": 12, "offset": 36, "next": [], "symbols": [{"name": "mwInit", "hash": "6c0c79ee7a2dab5b21abcc25cb11ff3cf3cfbf1f", "variant": 1436154619, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 612686208}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 614848992}, "child": {"skip": 12, "offset": 36, "next": [], "symbols": [{"name": "mwInit", "hash": "f7a147ff0913205b1801ef787a7e17c78a0d8957", "variant": 1436154619, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006895153}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006960689}, "child": {"skip": 28, "offset": 36, "next": [], "symbols": [{"name": "mwInit", "hash": "0587e530a0c34137db5c0dd90e5e5ac929c190a6", "variant": 1436154619, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 1006895176}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006960712}, "child": {"skip": 28, "offset": 36, "next": [], "symbols": [{"name": "mwInit", "hash": "c47e083f8925331d08e037e04de0be00d04b2f6e", "variant": 1436154619, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 1006895139}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006960675}, "child": {"skip": 8, "offset": 16, "next": [{"match": {"value": 612667968}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 614830764}, "child": {"skip": 12, "offset": 36, "next": [], "symbols": [{"name": "mwInit", "hash": "faf7e7af2162b66279586bf7b5dca7d121d9d583", "variant": 1436154619, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 612691624}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 614854340}, "child": {"skip": 12, "offset": 36, "next": [], "symbols": [{"name": "mwInit", "hash": "3b6ebc056ded011f96f6a89c6549fd70e31ed305", "variant": 1436154619, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764053}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 608446192}, "child": {"skip": 28, "offset": 36, "next": [], "symbols": [{"name": "mwInit", "hash": "ad3ff231fcbaf9f352fbbd6fbab01cbf44464068", "variant": 1436154619, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 1006895144}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006960680}, "child": {"skip": 28, "offset": 36, "next": [], "symbols": [{"name": "mwInit", "hash": "dde71bf928e1)PS2SDB", 8192}, + std::string_view{R"PS2SDB(0c97ee01244522d4a114131c5819", "variant": 1436154619, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 1006895143}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006960679}, "child": {"skip": 28, "offset": 36, "next": [], "symbols": [{"name": "mwInit", "hash": "fcb21f45597ce16f6cd862b41e40650681e75fc1", "variant": 1436154619, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 1006764075}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 608444816}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006764075}, "child": {"skip": 24, "offset": 36, "next": [], "symbols": [{"name": "mwInit", "hash": "f78cab9738e6e84167f0814a716480386ebebc49", "variant": 1436154619, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 608330896}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2894200844}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "__FindExceptionTable__FP13ExceptionInfoPc", "hash": "843867f2800592829218607e22f4922adfb1f6fa", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006895146}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006960682}, "child": {"skip": 28, "offset": 36, "next": [], "symbols": [{"name": "mwInit", "hash": "fd2eae4d7e0b64137da50557de522e6b3e35b83e", "variant": 1436154619, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 1006895160}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006960696}, "child": {"skip": 28, "offset": 36, "next": [], "symbols": [{"name": "mwInit", "hash": "61ddec6481dcb0e9f7705ff1dcd3a8495560d2c7", "variant": 1436154619, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 1006895132}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006960668}, "child": {"skip": 28, "offset": 36, "next": [], "symbols": [{"name": "mwInit", "hash": "10d50a6b7d6119be9572f2d66b7b990f7e2b4e1c", "variant": 1436154619, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 1006764125}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 608475888}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006764125}, "child": {"skip": 24, "offset": 36, "next": [], "symbols": [{"name": "mwInit", "hash": "31c6b2d6a6f7203f5b72a8458abc47131b87479b", "variant": 1436154619, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 608323216}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2894200844}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "__FindExceptionTable__FP13ExceptionInfoPc", "hash": "b5af021eb118ae0d5180de0da3dc0d14a4d8e915", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4240441344}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 346030084}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 10489901}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 268435608}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 604110849}, "child": {"skip": 612, "offset": 632, "next": [], "symbols": [{"name": "__throw_catch_compare", "hash": "92063776d8cd1609b63ee108e503aea8a512681f", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 268435606}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 604110849}, "child": {"skip": 604, "offset": 624, "next": [], "symbols": [{"name": "__throw_catch_compare", "hash": "8d65cabea1b92e7e5352d82cf74881fae6b8cc1f", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 346030083}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1889539624}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 268435601}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 604110849}, "child": {"skip": 160, "offset": 180, "next": [{"match": {"value": 268435539}, "child": {"skip": 0, "offset": 184, "next": [{"match": {"value": 604373072}, "child": {"skip": 416, "offset": 604, "next": [], "symbols": [{"name": "__throw_catch_compare", "hash": "d40d15e3bad37972bb5217a45fcbd4ce782f67e9", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 268435537}, "child": {"skip": 0, "offset": 184, "next": [{"match": {"value": 604373072}, "child": {"skip": 416, "offset": 604, "next": [], "symbols": [{"name": "__throw_catch_compare", "hash": "4b1464fe6f1569569ae88328c11bb2ceb5149e40", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 268435603}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 604110849}, "child": {"skip": 592, "offset": 612, "next": [], "symbols": [{"name": "__throw_catch_compare", "hash": "f72a9081e3008e4151d5772b9ece42b68d7e50b0", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 268435605}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 604110849}, "child": {"skip": 600, "offset": 620, "next": [], "symbols": [{"name": "__throw_catch_compare", "hash": "df244b2445fe19f54e9a5463a99f0b8fb3298360", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 268435592}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 604110849}, "child": {"skip": 548, "offset": 568, "next": [], "symbols": [{"name": "__throw_catch_compare", "hash": "c7cb9eb9de17f1fc740a90dd819606b8e8f7fc74", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10489901}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 268435603}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 604110849}, "child": {"skip": 68, "offset": 88, "next": [{"match": {"value": 341966860}, "child": {"skip": 0, "offset": 92, "next": [{"match": {"value": 10489901}, "child": {"skip": 516, "offset": 612, "next": [], "symbols": [{"name": "__throw_catch_compare", "hash": "93b6e9f76b8fd602ab776916c12814ff6b0a4042", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 341966859}, "child": {"skip": 0, "offset": 92, "next": [{"match": {"value": 0}, "child": {"skip": 516, "offset": 612, "next": [], "symbols": [{"name": "__throw_catch_compare", "hash": "2db636ca956f3505646575a13fb73807a6ad4ec5", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 268435597}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 604110849}, "child": {"skip": 568, "offset": 588, "next": [], "symbols": [{"name": "__throw_catch_compare", "hash": "548ddcbe6f29e2febb17b21d769a26d8672e80d9", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2401304576}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 2402811908}, "child": {"skip": 8, "offset": 16, "next": [{"match": {"value": 8462369}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 10078241}, "child": {"skip": 28, "offset": 52, "next": [], "symbols": [{"name": "__ptmf_scall", "hash": "22714aa6f6144e3f666fa589ed6bb81f80a69017", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 10561569}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 12175393}, "child": {"skip": 28, "offset": 52, "next": [], "symbols": [{"name": "__ptmf_scall4", "hash": "d48e72f7e78ba8a97a6cc5c78defb24da014a791", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666762320}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 4290707600}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 664928452}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2143158400}, "child": {"skip": 812, "offset": 828, "next": [], "symbols": [{"name": "FindExceptionHandler__FP12ThrowContextP13ExceptionInfoPl", "hash": "cc822d48c247f9aa9eaa0aae76be65de45b72b76", "variant": 393859938, "library")PS2SDB", 8192}, + std::string_view{R"PS2SDB(: "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 664928436}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2143158400}, "child": {"skip": 280, "offset": 296, "next": [{"match": {"value": 2386755584}, "child": {"skip": 0, "offset": 300, "next": [{"match": {"value": 664929168}, "child": {"skip": 500, "offset": 804, "next": [], "symbols": [{"name": "FindExceptionHandler__FP12ThrowContextP13ExceptionInfoPl", "hash": "670dcc913c4c0e4ae4ca027b76236d3b1be59d9b", "variant": 4184108372, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 2386690048}, "child": {"skip": 0, "offset": 300, "next": [{"match": {"value": 2420506626}, "child": {"skip": 500, "offset": 804, "next": [], "symbols": [{"name": "FindExceptionHandler__FP12ThrowContextP13ExceptionInfoPl", "hash": "210b1569ec8e5ea60d44a4a3730f8c094b2882b8", "variant": 805727023, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2143158400}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2142699632}, "child": {"skip": 860, "offset": 876, "next": [], "symbols": [{"name": "FindExceptionHandler__FP12ThrowContextP13ExceptionInfoPl", "hash": "48f0f404f8028d803aecf6eda4459dae91786b7b", "variant": 2088471672, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2143223952}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2143158400}, "child": {"skip": 32, "offset": 44, "next": [{"match": {"value": 3299016704}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 3298951172}, "child": {"skip": 8, "offset": 60, "next": [{"match": {"value": 1887483432}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 664928416}, "child": {"skip": 92, "offset": 160, "next": [{"match": {"value": 1346371587}, "child": {"skip": 0, "offset": 164, "next": [{"match": {"value": 1879053864}, "child": {"skip": 28, "offset": 196, "next": [{"match": {"value": 270532709}, "child": {"skip": 0, "offset": 200, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 488, "offset": 692, "next": [], "symbols": [{"name": "FindExceptionHandler__FP12ThrowContextP13ExceptionInfoPl", "hash": "5a4f93f5a9ccc387653b667ca4e6c5f2b1a8f2fc", "variant": 721832272, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 270532708}, "child": {"skip": 0, "offset": 200, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 484, "offset": 688, "next": [], "symbols": [{"name": "FindExceptionHandler__FP12ThrowContextP13ExceptionInfoPl", "hash": "d37857d2c3413ff2d73a9e22f24da3edac2c77c1", "variant": 3149677765, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1346371589}, "child": {"skip": 0, "offset": 164, "next": [{"match": {"value": 1879053864}, "child": {"skip": 556, "offset": 724, "next": [], "symbols": [{"name": "FindExceptionHandler__FP12ThrowContextP13ExceptionInfoPl", "hash": "bc0198bfd243f2d547b49625ddac5ecb4ee8f4c2", "variant": 361697970, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 664928416}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 1887483432}, "child": {"skip": 656, "offset": 724, "next": [], "symbols": [{"name": "FindExceptionHandler__FP12ThrowContextP13ExceptionInfoPl", "hash": "d0546bd3784b3af459d5831dee4acf1f87053c32", "variant": 4132689868, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2359427072}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 1891673640}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 1887483432}, "child": {"skip": 4, "offset": 60, "next": [{"match": {"value": 1889578536}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 650641440}, "child": {"skip": 808, "offset": 876, "next": [], "symbols": [{"name": "FindExceptionHandler__FP12ThrowContextP13ExceptionInfoPl", "hash": "6fc88d2a1bb88c6a8543c7121689ed1fd6b8445f", "variant": 3306257336, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 650641440}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 2946629792}, "child": {"skip": 824, "offset": 892, "next": [], "symbols": [{"name": "FindExceptionHandler__FP12ThrowContextP13ExceptionInfoPl", "hash": "2c5b0e0ca633535f9be7b8eb2a98c3ffc3632f69", "variant": 1518594415, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1891677736}, "child": {"skip": 0, "offset": 52, "next": [{"match": {"value": 1887481384}, "child": {"skip": 820, "offset": 876, "next": [], "symbols": [{"name": "FindExceptionHandler__FP12ThrowContextP13ExceptionInfoPl", "hash": "891dafba75768de6d32befbc9af635723da2653e", "variant": 3306257336, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666762368}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 4290707552}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 665256128}, "child": {"skip": 748, "offset": 760, "next": [], "symbols": [{"name": "FindExceptionHandler__FP12ThrowContextP13ExceptionInfoPl", "hash": "2a7c2203fab9f55bab614dd60273d22c889c6ebe", "variant": 3016634398, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 4289790752}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289987408}, "child": {"skip": 448, "offset": 460, "next": [], "symbols": [{"name": "_sceMcFatRename", "hash": "6fdea548fa76c6d6715362051652387a97823104", "variant": 2284808269, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666762448}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604373013}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707504}, "child": {"skip": 24, "offset": 36, "next": [{"match": {"value": 665911368}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 2359492608}, "child": {"skip": 328, "offset": 372, "next": [], "symbols": [{"name": "FindMostRecentException__FP12ThrowContextP13ExceptionInfo", "hash": "50d3d0f23861dc966ecdb34e8aa43b02d9b21195", "variant": 2159741298, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 665911416}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 2359492608}, "child": {"skip": 328, "offset": 372, "next": [], "symbols": [{"name": "FindMostRecentException__FP12ThrowContextP13ExceptionInfo", "hash": "a1a91cee4b88cf81d7d2be1fb4e90550d273de45", "variant": 2159741298, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2143223856}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2142371872}, "child": {"skip": 24, "offset": 36, "next": [{"match": {"value": 642252832}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 665256064}, "child": {"skip": 408, "offset": 452, "next": [], "symbols": [{"name": "FindMostRecentException__FP12ThrowContextP13ExceptionInfo", "hash": "b6bf87700aeccd0db4f21d6bc0d9f0d1c1171103", "variant": 1799810223, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 2946629696}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 2359427076}, "child": {"skip": 424, "offset": 468, "next": [], "symbols": [{"name": "FindMostRecentException__FP12ThrowContextP13ExceptionInfo", "hash": "05a5bf8dab76f53754ecf9c64291ea1a4f8b8152", "variant": 347134637, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290707504}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2142371872}, "child": {"skip": 440, "offset": 452, "next": [], "symbols": [{"name": "FindMostRecentException__FP12ThrowContextP13ExceptionInfo", "hash": "d44196307f50f8b7d8f21e8552286de8f61f0d95", "variant": 1799810223, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 4290052832}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 42)PS2SDB", 8192}, + std::string_view{R"PS2SDB(89987280}, "child": {"skip": 20, "offset": 32, "next": [{"match": {"value": 4289725072}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 10522669}, "child": {"skip": 548, "offset": 588, "next": [], "symbols": [{"name": "_sceMcFatReadFile", "hash": "f1adae1986c7b1ae20ba8b9ca43bfbbc308228a9", "variant": 1870711264, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 4289790624}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 10522669}, "child": {"skip": 572, "offset": 612, "next": [], "symbols": [{"name": "_sceMcFatReadFile", "hash": "4f283d58da7c3837df95ae2ff3f7f09298e0c268", "variant": 200033777, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 12333}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290118416}, "child": {"skip": 496, "offset": 508, "next": [], "symbols": [{"name": "_sce_eenet_set_arp", "hash": "26e0d34d5a8947a4fc04d04844ffb3ab2cc55db6", "variant": 192096166, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2022703392}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 2022768944}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2022834496}, "child": {"skip": 88, "offset": 100, "next": [], "symbols": [{"name": "__TransferControl__FP12ThrowContextP13ExceptionInfoPc", "hash": "7e4c2a6fbaf6270b15faa87f41eb726388dced68", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 3298034312}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2022768944}, "child": {"skip": 88, "offset": 100, "next": [], "symbols": [{"name": "__TransferControl__FP12ThrowContextP13ExceptionInfoPc", "hash": "359d79bd88f1af3f63a11ecea36cdcf6ec6a0f56", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1939871272}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 666762560}, "child": {"skip": 104, "offset": 112, "next": [{"match": {"value": 2946891784}, "child": {"skip": 0, "offset": 116, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__ThrowHandler__FP12ThrowContext"}}, "child": {"skip": 4, "offset": 124, "next": [], "symbols": [{"name": "__throw", "hash": "79f0a3dc59e959b9c0311a2eda6a621718e3efa5", "variant": 420553242, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 1939875368}, "child": {"skip": 0, "offset": 116, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "__ThrowHandler__FP12ThrowContext"}}, "child": {"skip": 4, "offset": 124, "next": [], "symbols": [{"name": "__throw", "hash": "e892e57b78c8d3f8b0500a1e64701411069a0e7f", "variant": 420553242, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764105}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 608352516}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2894200844}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "__FindExceptionTable__FP13ExceptionInfoPc", "hash": "7a3d25df72d142fc44ef4f91936571f1ed4c8f84", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 608315312}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2894200844}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "__FindExceptionTable__FP13ExceptionInfoPc", "hash": "3e6a19e2b30d092f048da937925ded9b63b77c75", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 608349232}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2894200844}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "__FindExceptionTable__FP13ExceptionInfoPc", "hash": "b3875d7b7c53d40a83c7029d54a0d53a46a03140", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006764128}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 608323984}, "child": {"skip": 24, "offset": 32, "next": [], "symbols": [{"name": "__FindExceptionTable__FP13ExceptionInfoPc", "hash": "9fbe52a9d2571a32a42794f2bcfcd84066958316", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 1006764104}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 608314512}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2894200844}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "__FindExceptionTable__FP13ExceptionInfoPc", "hash": "a8d13354901b6d656abe2f20fed7408ef36f7ff4", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 608309968}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2894200844}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "__FindExceptionTable__FP13ExceptionInfoPc", "hash": "f94576b0bc1ae5f0fded1f8ea2733567c0e5f837", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2359427076}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 2626028068}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2357723688}, "child": {"skip": 224, "offset": 236, "next": [{"match": {"value": 270532658}, "child": {"skip": 0, "offset": 240, "next": [{"match": {"value": 15415331}, "child": {"skip": 452, "offset": 696, "next": [], "symbols": [{"name": "__PopStackFrame__FP12ThrowContextP13ExceptionInfo", "hash": "6e5cca2b841c9380dcb36f458a67ff01d57ad2e6", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 270532656}, "child": {"skip": 0, "offset": 240, "next": [{"match": {"value": 15415331}, "child": {"skip": 436, "offset": 680, "next": [], "symbols": [{"name": "__PopStackFrame__FP12ThrowContextP13ExceptionInfo", "hash": "e613d70dc37aa38dafaf2cb7d396e13a1be3a679", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2626224676}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2151809024}, "child": {"skip": 236, "offset": 248, "next": [{"match": {"value": 19220523}, "child": {"skip": 0, "offset": 252, "next": [{"match": {"value": 354484215}, "child": {"skip": 104, "offset": 360, "next": [], "symbols": [{"name": "__PopStackFrame__FP12ThrowContextP13ExceptionInfo", "hash": "85bbef6da6150f8f4cf6a9073a72af614009ab76", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 19204139}, "child": {"skip": 0, "offset": 252, "next": [{"match": {"value": 337706999}, "child": {"skip": 100, "offset": 356, "next": [], "symbols": [{"name": "__PopStackFrame__FP12ThrowContextP13ExceptionInfo", "hash": "e898662525ed372d3cdfc6eb16127076cf98955a", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2357592616}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2151809024}, "child": {"skip": 8, "offset": 20, "next": [{"match": {"value": 274726929}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2626224676}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2626093620}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 610364}, "child": {"skip": 324, "offset": 360, "next": [], "symbols": [{"name": "__PopStackFrame__FP12ThrowContextP13ExceptionInfo", "hash": "438754a9f7181cc6e886f0ca79b8f1ef6e401d01", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 610364}, "child": {"skip": 0, "offset": 32, "next": [{"match": {"value": 2626093620}, "child": {"skip": 324, "offset": 360, "next": [], "symbols": [{"name": "__PopStackFrame__FP12ThrowContextP13ExceptionInfo", "hash": "98a6087039ceb0f8f3fa7151f075eadd2289df7d", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2626093604}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2626159156}, "child": {"skip": 180, "offset": 212, "next": [{"match": {"value": 270532652}, "child": {"skip": 0, "offset": 216, "next": [{"match": {"value": 1879074344}, "child": {"skip": 404, "offset": 624, "next": [],)PS2SDB", 8192}, + std::string_view{R"PS2SDB( "symbols": [{"name": "__PopStackFrame__FP12ThrowContextP13ExceptionInfo", "hash": "5f6694a7d3c1b79f089d35be62d9fb911693e14f", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 270532650}, "child": {"skip": 0, "offset": 216, "next": [{"match": {"value": 1879074344}, "child": {"skip": 388, "offset": 608, "next": [], "symbols": [{"name": "__PopStackFrame__FP12ThrowContextP13ExceptionInfo", "hash": "be33baf16a383d46417f6fde0e6306a9b21c1e4f", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 274726937}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2626093604}, "child": {"skip": 628, "offset": 656, "next": [], "symbols": [{"name": "__PopStackFrame__FP12ThrowContextP13ExceptionInfo", "hash": "825a4778092d6e8c26c67665e63f11446a2cb60f", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2625831460}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2357723688}, "child": {"skip": 716, "offset": 728, "next": [], "symbols": [{"name": "__PopStackFrame__FP12ThrowContextP13ExceptionInfo", "hash": "3d9d1e4f4464706e53271f95b799f05df96cb6fb", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 2357723688}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2151809024}, "child": {"skip": 364, "offset": 376, "next": [], "symbols": [{"name": "__PopStackFrame__FP12ThrowContextP13ExceptionInfo", "hash": "41f700b62a8d968a5858b160555feac3d5108cd6", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 2894397440}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2894200836}, "child": {"skip": 12, "offset": 24, "next": [], "symbols": [{"name": "_sceSSyn_putVoiceToBottom", "hash": "c9f756c9b8907819ff95032ace79caac3189a554", "variant": 0, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 683868167}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 604897286}, "child": {"skip": 452, "offset": 464, "next": [], "symbols": [{"name": "BN_gen_exp_string", "hash": "ed8e1291fb618249cd3b9272735e3c93e28cffb5", "variant": 180118793, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 276824076}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1887442472}, "child": {"skip": 4, "offset": 12, "next": [{"match": {"value": 1887444520}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2158100480}, "child": {"skip": 40, "offset": 60, "next": [], "symbols": [{"name": "__copy", "hash": "b06ee60d71eeaec31a2e6903a8e4e876243abc2c", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 0}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1887444520}, "child": {"skip": 40, "offset": 60, "next": [], "symbols": [{"name": "__copy", "hash": "df4a27d5368ff7ba5c5cd5fb1ac7bc5418e1e204", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2357723136}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 2357592068}, "child": {"skip": 52, "offset": 60, "next": [{"match": {"value": 10692645}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 10627109}, "child": {"skip": 8, "offset": 76, "next": [], "symbols": [{"name": "__ptmf_cmpr", "hash": "3162a5646393b07c48d29a14dc8d03cfc7c24368", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}, {"match": {"value": 10688549}, "child": {"skip": 0, "offset": 64, "next": [{"match": {"value": 6426661}, "child": {"skip": 8, "offset": 76, "next": [], "symbols": [{"name": "__ptmf_cmpr", "hash": "99a49eaecccd7c2d1e5f5d175df8c0c3d81f327c", "variant": 0, "library": "mslgcc_ps2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 276824141}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1007288320, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 312, "offset": 320, "next": [], "symbols": [{"name": "sceSpu2MemFree", "hash": "d28eaa04b998b10ac33b0f8a01a714921cfb8009", "variant": 1148387561, "library": "libspu2m"}]}}], "symbols": []}}, {"match": {"value": 604110850}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 279052308}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006768128}, "child": {"skip": 144, "offset": 156, "next": [], "symbols": [{"name": "sceGpKickChain", "hash": "d4fcd8538811522f0be586de0d3f3f1024e69f74", "variant": 0, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 279052301}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006833664}, "child": {"skip": 96, "offset": 108, "next": [], "symbols": [{"name": "sceGpKickChain2", "hash": "76b7f82db755daa64bb66ac6b35e971cc13f38bf", "variant": 0, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 279052305}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006768128}, "child": {"skip": 136, "offset": 148, "next": [], "symbols": [{"name": "sceGpKickPacket", "hash": "6c5eaa1cca540929b851e5233b48581f77b57f09", "variant": 0, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 279052300}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006768128}, "child": {"skip": 88, "offset": 100, "next": [], "symbols": [{"name": "sceGpKickPacket2", "hash": "9020cf9ff8539abf5b89f3e550e91a75720c591d", "variant": 0, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 2894070108}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2894201204}, "child": {"skip": 12, "offset": 24, "next": [], "symbols": [{"name": "sppp_chap_init", "hash": "2c62673d08600b13d591ce0cd249d01c157d32b1", "variant": 0, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 276955152}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 679608323}, "child": {"skip": 92, "offset": 104, "next": [], "symbols": [{"name": "ssl_mt_error", "hash": "a62827a42352716405e7aeccf37d542ea2c56987", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2424438792}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604176385}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 135424}, "child": {"skip": 80, "offset": 92, "next": [], "symbols": [{"name": "sceGpSetPacketMode", "hash": "31162bea61f7b146c63182a526cdd25401321de8", "variant": 0, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 135424}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 16, "next": [], "symbols": [{"name": "sceGpGetTail", "hash": "765606056b667cf385500e3177e905981afc3f2a", "variant": 0, "library": "libgp"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2361851912}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 81854471}, "child": {"skip": 112, "offset": 120, "next": [], "symbols": [{"name": "sceGpAddChain", "hash": "b2257595f7f99ee76bc41f72d02306931d06701e", "variant": 0, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 348127237}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 8402989}, "child": {"skip": 100, "offset": 108, "next": [], "symbols": [{"name": "sceGpTermChain", "hash": "99b04ad622799dfa2c9477411765668d69df0cde", "variant": 0, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 2424504328}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 10500141}, "child": {"skip": 84, "offset": 92, "next": [], "symbols": [{"name": "sceGpInsertPacket", "hash": "d80a93837aa61b6691ff8738d51719de16528947", "variant": 0, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 2424700945}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 10883114}, "child": {"skip": 88, "offset": 96, "next": [], "symbols": [{"name": "_Tim2_GetImage", "hash": "29ddfc38eb5217974a5a94be061e8a351a05f4d0", "variant": 0, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 2491547662}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": )PS2SDB", 8192}, + std::string_view{R"PS2SDB(1413480451}, "child": {"skip": 28, "offset": 36, "next": [], "symbols": [{"name": "_Tim2_GetClut", "hash": "631466d4a3cd40d12062c5ac93a76654b276ebb7", "variant": 0, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 604110880}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 266250}, "child": {"skip": 8, "offset": 20, "next": [], "symbols": [{"name": "sceGpSetDefaultFog", "hash": "2b3cac92eff2e6bff469022f40f0e8e24fce8bb6", "variant": 2968857585, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 872652801}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 604307504}, "child": {"skip": 56, "offset": 68, "next": [], "symbols": [{"name": "sceGpInitRef", "hash": "5b1a408926a514b0d91f3dc31e894b50509f946d", "variant": 0, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 872656897}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 604307536}, "child": {"skip": 56, "offset": 68, "next": [], "symbols": [{"name": "sceGpInitCall", "hash": "3a5275c70afab39699f0f80368149494b0c6fed7", "variant": 0, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 2894070428}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2894201456}, "child": {"skip": 24, "offset": 36, "next": [], "symbols": [{"name": "sppp_lcp_init", "hash": "09f06d11ff958b81a895afc4b546ceeebf3a62b6", "variant": 0, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604110912}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 12, "offset": 20, "next": [], "symbols": [{"name": "sceGpSetDefaultAbe", "hash": "a66f755ea35be92d8ed3f73eb74a4934b4bac7a0", "variant": 2968857585, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 604110976}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 12, "offset": 20, "next": [], "symbols": [{"name": "sceGpSetDefaultAa1", "hash": "95c3bdb9a5e11053810bbe02e7ca9422c747c250", "variant": 2968857585, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 604111360}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 12, "offset": 20, "next": [], "symbols": [{"name": "sceGpSetDefaultCtxt", "hash": "0b22c8065fe8381dece8d9168915044b2cd20216", "variant": 2968857585, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 1006784512}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006850304}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 6557707}, "child": {"skip": 12, "offset": 24, "next": [], "symbols": [{"name": "sceGpSetDefaultDirectHL", "hash": "1ed15cc4d7e1ed9e506f8ec5614c5ccfccf0563b", "variant": 1644047408, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 872656897}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006968832}, "child": {"skip": 24, "offset": 36, "next": [], "symbols": [{"name": "sceGpInitCall", "hash": "33e5428deeb45f9bb4c597d39595a285a9e45ddd", "variant": 0, "library": "libgp"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604110852}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604176389}, "child": {"skip": 16, "offset": 24, "next": [], "symbols": [{"name": "sceGpSetDefaultZ32", "hash": "f5b8aa362045e28453373eb9bc6a1e7d7cee8ac1", "variant": 1644047408, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 2692743170}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1879053481}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 604372996}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2355757056, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 136, "offset": 156, "next": [], "symbols": [{"name": "sceGpInitTexEnv", "hash": "8193b533905bc5c325cf7ca572a171ef90e69a3b", "variant": 2968857585, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 604372998}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2355757056, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 168, "offset": 188, "next": [], "symbols": [{"name": "sceGpInitTexEnvMipmap", "hash": "2c095b227fc0eae413db594e453e2ebaaac79446", "variant": 2968857585, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 604372997}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2355757056, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 136, "offset": 156, "next": [], "symbols": [{"name": "sceGpInitAlphaEnv", "hash": "ce97fb118d3d6d1a8c9c94434625245c34be5ab4", "variant": 2968857585, "library": "libgp"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 614662145}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2760048640}, "child": {"skip": 112, "offset": 124, "next": [], "symbols": [{"name": "sceGpInitAd", "hash": "5c4c2a40970beee0dbcd73c7dfc403b900e3cf8b", "variant": 1660426063, "library": "libgp"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 614989825}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006772224}, "child": {"skip": 72, "offset": 80, "next": [], "symbols": [{"name": "sceGpInitAd", "hash": "af2397106d99f922ffe179a4a51be50b8522f4fc", "variant": 1993417035, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 1006776320}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 872652801}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006968832}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4236378112}, "child": {"skip": 20, "offset": 36, "next": [], "symbols": [{"name": "sceGpInitRef", "hash": "25637eee0b05a32ff4d9f05331c929c9998134dc", "variant": 0, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 1006960672}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4236378112}, "child": {"skip": 20, "offset": 36, "next": [], "symbols": [{"name": "sceGpInitRef", "hash": "8ab174ca666797c3df7f1bbe12bf7a1a0d5476b5", "variant": 0, "library": "libgp"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2225209344}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 2225274882}, "child": {"skip": 80, "offset": 88, "next": [], "symbols": [{"name": "sceGpSetLoadTexel", "hash": "37696f502d8553fbc1c1fd69dd25475f40431f7d", "variant": 0, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 813891591}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 816316415}, "child": {"skip": 116, "offset": 124, "next": [], "symbols": [{"name": "GetImageQWSize", "hash": "70d68ba6f94dd8b93b621d4554e5b40260281e46", "variant": 3398703437, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 813957127}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604176640}, "child": {"skip": 32, "offset": 40, "next": [], "symbols": [{"name": "GetClutQWSize", "hash": "4ac14dc47f4687db961c520ad116a5a566e92960", "variant": 0, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 10510381}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 8411181}, "child": {"skip": 952, "offset": 960, "next": [{"match": {"value": 27267117}, "child": {"skip": 0, "offset": 964, "next": [{"match": {"value": 203128}, "child": {"skip": 16, "offset": 984, "next": [], "symbols": [{"name": "sceGpSetTexEnvByDrawEnv", "hash": "a4272c65c0ef44ee5e3199afdfb379120a15e2e0", "variant": 0, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 832700423}, "child": {"skip": 0, "offset": 964, "next": [{"match": {"value": 203128}, "child": {"skip": 16, "offset": 984, "next": [], "symbols": [{"name": "sceGpSetTexEnvByDrawEnv", ")PS2SDB", 8192}, + std::string_view{R"PS2SDB(hash": "dbcde9cd3cd0688c2b0784a6bd0d022324172dc2", "variant": 0, "library": "libgp"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 338176}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 8720417}, "child": {"skip": 16, "offset": 24, "next": [], "symbols": [{"name": "sceGpSetAd", "hash": "7389859e688a23c4b553e67135a1c1de9797cf4b", "variant": 0, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 1006858240}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 10686500}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 339935239}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2760245248}, "child": {"skip": 76, "offset": 92, "next": [], "symbols": [{"name": "sceGpSetRef", "hash": "c961902ff184a50c21b3b7b480620051a907fc9a", "variant": 3328071830, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 1413677063}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006772223}, "child": {"skip": 40, "offset": 56, "next": [], "symbols": [{"name": "sceGpSetCall", "hash": "e7c3c0d59516db6aa71e6a0d3caed89d60293460", "variant": 0, "library": "libgp"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1356857352}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 2894069772}, "child": {"skip": 88, "offset": 96, "next": [], "symbols": [{"name": "sceGpSetRef", "hash": "4d37f446c4c6bb7ed6f15bb09f069db2609ca287", "variant": 1693737393, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 748814364}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 272629862}, "child": {"skip": 420, "offset": 428, "next": [], "symbols": [{"name": "sceGpSetAlphaEnvFunc", "hash": "0ff91cd14be523f5ac36760f634fda1761cce45e", "variant": 3363431594, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 813957183}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604110849}, "child": {"skip": 72, "offset": 80, "next": [], "symbols": [{"name": "conv_Tim2_ClutToPsm", "hash": "d3cc8f91d4113c81f4989e8bc1bdea1922d3f3f1", "variant": 0, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 813826056}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 272629764}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 10498093}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 397376}, "child": {"skip": 88, "offset": 104, "next": [], "symbols": [{"name": "sceGpIndexUv", "hash": "e6fc1ec1e9ab94e9da6404cad2e2eba465d98c40", "variant": 2266565042, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 813826064}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 3701604384}, "child": {"skip": 160, "offset": 176, "next": [], "symbols": [{"name": "__sceEENetrt_setmetrics", "hash": "85219664b5e9c8df64f332ab87344d63b405ee8d", "variant": 0, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 272629766}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 813826064}, "child": {"skip": 184, "offset": 196, "next": [], "symbols": [{"name": "sceGpIndexRgba", "hash": "ea09ee5325c6509b8d957c1273460c86a4732f07", "variant": 819607752, "library": "libgp"}]}}], "symbols": []}}, {"match": {"value": 272629768}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 813826064}, "child": {"skip": 200, "offset": 212, "next": [], "symbols": [{"name": "sceGpIndexXyzf", "hash": "a68f43788ff8c2622d5f27946b739c8561dd88f9", "variant": 2975132089, "library": "libgp"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604160000}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604176386}, "child": {"skip": 120, "offset": 128, "next": [], "symbols": [{"name": "sceVibGetProfile", "hash": "ca832a75589b36833aceaaa82a2fa4f08a9c7752", "variant": 410710376, "library": "libvib"}]}}], "symbols": []}}, {"match": {"value": 604177200}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 8593432}, "child": {"skip": 116, "offset": 128, "next": [], "symbols": [{"name": "scePad2CheckDma", "hash": "4e7a1e0cfe619af5f269c7147257c965f9d0e2cb", "variant": 2076799630, "library": "libpad2"}]}}], "symbols": []}}, {"match": {"value": 405760}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 8593432}, "child": {"skip": 212, "offset": 224, "next": [], "symbols": [{"name": "scePad2GetButtonInfo", "hash": "ddb6815c0857124f9b56bd2a898b5354afae7e50", "variant": 1660426063, "library": "libpad2"}]}}], "symbols": []}}, {"match": {"value": 666763232}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 8593432}, "child": {"skip": 88, "offset": 100, "next": [], "symbols": [{"name": "scePad2GetSide", "hash": "b0fc434e6415c49b23419e2cb613207c4504a26c", "variant": 831546844, "library": "libpad2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604177204}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 405760}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 8593432}, "child": {"skip": 212, "offset": 224, "next": [], "symbols": [{"name": "scePad2GetButtonInfo", "hash": "40d132dd03791ab27b0fbf2b64bd9a6d05fe4dac", "variant": 1660426063, "library": "libpad2"}]}}], "symbols": []}}, {"match": {"value": 666763232}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 8593432}, "child": {"skip": 32, "offset": 44, "next": [{"match": {"value": 612696320}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "SyncDCache"}}, "child": {"skip": 48, "offset": 100, "next": [], "symbols": [{"name": "scePad2GetSide", "hash": "409378773efa9d77c2b0a1f4df623a88cc69ba72", "variant": 831546844, "library": "libpad2"}, {"name": "scePad2GetSide2", "hash": "409378773efa9d77c2b0a1f4df623a88cc69ba72", "variant": 831546844, "library": "libpad2"}]}}], "symbols": []}}, {"match": {"value": 612696319}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "SyncDCache"}}, "child": {"skip": 48, "offset": 100, "next": [], "symbols": [{"name": "scePad2GetSide", "hash": "ae2e14c81a6729993862f985f1af60bfd31f2618", "variant": 831546844, "library": "libpad2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666763216}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 8593432}, "child": {"skip": 108, "offset": 120, "next": [], "symbols": [{"name": "scePad2InitDmaDBuff", "hash": "2293b8c3f31339b7002cae8d7b773a424074e7d4", "variant": 2382796578, "library": "libpad2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 16429}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 18477}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 14381}, "child": {"skip": 164, "offset": 176, "next": [], "symbols": [{"name": "scePad2SetButtonOrder", "hash": "22d025ca6d58a42f9940a9b7405b603d514de691", "variant": 0, "library": "libpad2"}]}}], "symbols": []}}, {"match": {"value": 276824071}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 12333}, "child": {"skip": 136, "offset": 148, "next": [], "symbols": [{"name": "ASN1_INTEGER_get", "hash": "94737557ec86edace74d863df9cb4b99195cb461", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 77594638}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604176373}, "child": {"skip": 60, "offset": 68, "next": [], "symbols": [{"name": "sceUsbKbSetRepeat", "hash": "c15e0c1fa4450d6291253b4d9aff879866a26331", "variant": 1622982697, "library": "libusbkb"}]}}], "symbols": []}}, {"match": {"value": 666762848}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604307512}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290052464}, "child": {"skip": 1384, "offset": 1396, "next": [], "symbols": [{"name": "SetResult_Read", "hash": "1bc8d9272f53fbad79da060657701ea4435ac63e", "variant": 564223993, "library": "libusbkb"}]}}], "sy)PS2SDB", 8192}, + std::string_view{R"PS2SDB(mbols": []}}, {"match": {"value": 4290642304}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290183536}, "child": {"skip": 12, "offset": 24, "next": [{"match": {"value": 10528813}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4289921328}, "child": {"skip": 1064, "offset": 1096, "next": [], "symbols": [{"name": "SetHierarchyMatrix", "hash": "3c5245394ea58ab8908c652601ccc7378340684c", "variant": 2441124051, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 4289921328}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 4289855776}, "child": {"skip": 1840, "offset": 1872, "next": [], "symbols": [{"name": "SetHierarchyMatrix", "hash": "ab976c3a7f1785dfd3ae0256dc0a75ade40a09bf", "variant": 2445595761, "library": "libhip"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604110904}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 8527896}, "child": {"skip": 36, "offset": 48, "next": [], "symbols": [{"name": "clear_repbuf", "hash": "32ad9956030682b576295b79619685bf1b282f52", "variant": 3118959500, "library": "libusbkb"}]}}], "symbols": []}}, {"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 8527896}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 2355494912, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 12857377}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 616824848}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2357329956}, "child": {"skip": 80, "offset": 108, "next": [], "symbols": [{"name": "push_repbuf", "hash": "f361bb9d7639631fa70ecb7baf09a4512365fbbe", "variant": 3118959500, "library": "libusbkb"}]}}], "symbols": []}}, {"match": {"value": 617021456}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2363621412}, "child": {"skip": 76, "offset": 104, "next": [], "symbols": [{"name": "pop_repbuf", "hash": "808b64f6922537897bc5929abea1041b4e2750a3", "variant": 3118959500, "library": "libusbkb"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666763120}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2355757056, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 312, "offset": 332, "next": [], "symbols": [{"name": "cnv_keycode", "hash": "e2fa0707cc17aa8d89ba5c2f1d11897cbcf1d4e4", "variant": 3105110529, "library": "libusbkb"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604110932}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 814219265}, "child": {"skip": 104, "offset": 112, "next": [], "symbols": [{"name": "cnv_keypad", "hash": "7315e302065ad0ef75648ce8c39c35317575f6a2", "variant": 4000568745, "library": "libusbkb"}]}}], "symbols": []}}, {"match": {"value": 276824071}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2355232768, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 12, "offset": 24, "next": [{"match": {"value": 348127235}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 0}, "child": {"skip": 16, "offset": 48, "next": [], "symbols": [{"name": "sceSSyn_SendExcMsg", "hash": "c0d1d51c2b24da22bb019b9e3739c0d39feac2ae", "variant": 3135353075, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 1421869059}, "child": {"skip": 0, "offset": 28, "next": [{"match": {"value": 2428698624}, "child": {"skip": 24, "offset": 56, "next": [], "symbols": [{"name": "sceSSyn_SendNrpnMsg", "hash": "3a0f8470a5ff00a902a60cac987024801e3be71e", "variant": 3135353075, "library": "libssyn"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 0}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2357329920}, "child": {"skip": 44, "offset": 56, "next": [], "symbols": [{"name": "X509v3_get_ext", "hash": "185021dfd9eafb0a309231e10992fbfc84a43aa3", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 343932931}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 65011720}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 604176383}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 16, "offset": 36, "next": [], "symbols": [{"name": "sceSSyn_ClearBreakAtick", "hash": "606e9310fe1a97d8e306880f557e4b1a4d4e6133", "variant": 2981961126, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 604166379}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 2353201152, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 274726915}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 604166378}, "child": {"skip": 4, "offset": 32, "next": [{"match": {"value": 2223112640}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 44, "next": [], "symbols": [{"name": "sceAtokGetKanjiState", "hash": "09cac337f0973fa8b084ed591a866a472a4b26f7", "variant": 2968857585, "library": "libatok"}]}}], "symbols": []}}, {"match": {"value": 2223112642}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 44, "next": [], "symbols": [{"name": "sceAtokGetInputState", "hash": "a55a0ebcf2fdfdfc7afad2a163913403f81ca4ac", "variant": 2968857585, "library": "libatok"}]}}], "symbols": []}}, {"match": {"value": 2223112644}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 44, "next": [], "symbols": [{"name": "sceAtokGetErrorInfo", "hash": "4da4c5fbc556097c15d30c1c2f438ee1fcde6c82", "variant": 2968857585, "library": "libatok"}]}}], "symbols": []}}, {"match": {"value": 2223112628}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 44, "next": [], "symbols": [{"name": "sceAtokGetFocusClauseTop", "hash": "6500d878cd31a77ee2acd02e738515e2a0060993", "variant": 2968857585, "library": "libatok"}]}}], "symbols": []}}, {"match": {"value": 2223112630}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 44, "next": [], "symbols": [{"name": "sceAtokGetFocusClauseLen", "hash": "5f3016ddb3cd6f569b247bef831439db096df807", "variant": 2968857585, "library": "libatok"}]}}], "symbols": []}}, {"match": {"value": 2223112636}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 44, "next": [], "symbols": [{"name": "sceAtokGetCandidateCount", "hash": "54c6ed7c15ba74001bf5211d7faae966d1a20571", "variant": 2968857585, "library": "libatok"}]}}], "symbols": []}}, {"match": {"value": 2223112634}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 44, "next": [], "symbols": [{"name": "sceAtokGetCurrentCandidateIndex", "hash": "b43e8a9869bb2ef9bfb3f4f6075e25b144e0bb0a", "variant": 2968857585, "library": "libatok"}]}}], "symbols": []}}, {"match": {"value": 2223112596}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 44, "next": [], "symbols": [{"name": "sceAtokGetConvertingClauseCount", "hash": "d9ca7cbc4dbcdac4a363b0b4ece65ef23cadffa5", "variant": 2968857585, "library": "libatok"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1415577605}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"valu)PS2SDB", 8192}, + std::string_view{R"PS2SDB(e": 2223112642}, "child": {"skip": 100, "offset": 128, "next": [], "symbols": [{"name": "sceAtokGetFocusClauseIndex", "hash": "4499fdba766e7edf8ed5ef214a867f58d49cd449", "variant": 2968857585, "library": "libatok"}]}}], "symbols": []}}, {"match": {"value": 1415577603}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 2759852400}, "child": {"skip": 20, "offset": 48, "next": [], "symbols": [{"name": "sceAtokFlushConverted", "hash": "3e4f4daec2da9cd11dfbb81f9fdb9d6deb61c2e1", "variant": 2968857585, "library": "libatok"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604110849}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 65011720}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "sceSSyn_BreakAtick", "hash": "1cdf93fb10610befb1ea785530a6fe1383013b74", "variant": 2778657260, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 616955905}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 65011720}, "child": {"skip": 108, "offset": 120, "next": [], "symbols": [{"name": "X509v3_get_ext_by_critical", "hash": "e7f4feaf266cfd13a4f67bde254a5707e28f544b", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006714316}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 874630349}, "child": {"skip": 20, "offset": 28, "next": [], "symbols": [{"name": "sceSynthesizerSetMasterVolume", "hash": "04e58d7100c34f24a072d3cf5ae997c368334216", "variant": 1693737393, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 1006716671}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 874642944}, "child": {"skip": 192, "offset": 200, "next": [], "symbols": [{"name": "sceSynthesizerCopyOutput", "hash": "6b0fadb6b9e661af8beea93b759cde939089455d", "variant": 3977882770, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 816250883}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604176383}, "child": {"skip": 124, "offset": 132, "next": [], "symbols": [{"name": "sceSynthesizerClearSpr", "hash": "048e04c28fac35f1d3e66419cc865d34824c19cc", "variant": 0, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 3296789008}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 3296723468}, "child": {"skip": 48, "offset": 56, "next": [], "symbols": [{"name": "sceSynthesizerCalcPortamentPitch", "hash": "fe47062097527a6e419c04ae91e9c010be7d6faf", "variant": 0, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 3298820100}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 3298885632}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1140981760}, "child": {"skip": 88, "offset": 100, "next": [], "symbols": [{"name": "sceSynthesizerReadNoise", "hash": "7b64ff6ffc1b465c013bcd8b7423dd1cbb0ffdc6", "variant": 0, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 3298951168}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1140981760}, "child": {"skip": 96, "offset": 108, "next": [], "symbols": [{"name": "sceSynthesizerReadNoiseAdd", "hash": "63ac88ac7b14a61622da9cf86536d23760d417eb", "variant": 0, "library": "libssyn"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10504237}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 8411181}, "child": {"skip": 24, "offset": 32, "next": [{"match": {"value": 281018394}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 3710320688}, "child": {"skip": 108, "offset": 148, "next": [], "symbols": [{"name": "sceSynthesizerReadSample16", "hash": "21d677c2aed7e1fe9cdb28666bca39027edfad08", "variant": 0, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 281018393}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 3710320688}, "child": {"skip": 104, "offset": 144, "next": [], "symbols": [{"name": "sceSynthesizerReadSample8", "hash": "247dde5a34ca37c0e6c5ce3a5c51c72b49873897", "variant": 0, "library": "libssyn"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10506285}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 8407085}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2370764840}, "child": {"skip": 20, "offset": 32, "next": [{"match": {"value": 281018396}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 3712417840}, "child": {"skip": 116, "offset": 156, "next": [], "symbols": [{"name": "sceSynthesizerReadSample16Add", "hash": "c51fadc23f747971e0466aa1d88d8fb4f45d980f", "variant": 0, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 281018395}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 3712417840}, "child": {"skip": 112, "offset": 152, "next": [], "symbols": [{"name": "sceSynthesizerReadSample8Add", "hash": "1c9379b8b7047789bd67a231467599241f30142b", "variant": 0, "library": "libssyn"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666763216}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 14690349}, "child": {"skip": 240, "offset": 252, "next": [], "symbols": [{"name": "__sceEENeticmp_sysctl", "hash": "4fe7a19b3db7d416d00c3619857ba7159e86eacc", "variant": 9042377, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 666763248}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 14690349}, "child": {"skip": 220, "offset": 232, "next": [], "symbols": [{"name": "__sceEENetudp_sysctl", "hash": "e8310a80c812f8107964618bb62c3bfdcbc16ca2", "variant": 3371618868, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006718648}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 874612893}, "child": {"skip": 68, "offset": 76, "next": [], "symbols": [{"name": "sceSynthesizerSetupNewNoise", "hash": "80c451db860c0c660e812fd239409dbd735f8dbc", "variant": 0, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 2223112220}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006712960}, "child": {"skip": 12, "offset": 20, "next": [{"match": {"value": 2491809826}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 281018374}, "child": {"skip": 228, "offset": 256, "next": [], "symbols": [{"name": "sceSynthesizerSetupReleaseEnv", "hash": "6ce5f824d9597e0a210e602f50852f6889b78734", "variant": 3068663841, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 3296854016}, "child": {"skip": 0, "offset": 24, "next": [{"match": {"value": 1174407234}, "child": {"skip": 148, "offset": 176, "next": [], "symbols": [{"name": "sceSynthesizerSetupTruncateTvaEnv", "hash": "47ded579ae7aed01ea1e6854810510e8539c79d6", "variant": 2494302582, "library": "libssyn"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604111107}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 12, "next": [], "symbols": [{"name": "sceSynthesizerSetupTruncateTvfPitchEnv", "hash": "270f1f1b4e3707006adcd23ee443154dd9221b6c", "variant": 0, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 3634692096}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 164, "offset": 172, "next": [], "symbols": [{"name": "sceSynthesizerAmpProcNI", "hash": "8de3db76f5b55bb43ebc5219bf34a76a91e9edf1", "variant": 3135353075, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 1175216896}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006714752}, "child": {"skip": 8, "offset": 16, "next": [{"match": {"value": 1174429697}, "child": {"skip": 0, "offset": 20, "next": [], "symbols": [{"name": "sceSynthesizerLfoSawUp", "hash": "ed68714ea647b21329d3839a9c4c0bbf84d39443", "variant": 0, "library": "libssyn"}]}}, {"match": {"value": 1175191553}, "child": {"skip": 0, "offset": 20, "next": [], "symbols": [{"name": "sceSynthesizerLfoSawDown", "hash": "c550ea9f576dd17afa133bd8e118b0764caae704", "variant": 0, "library": "libssyn"}]}}], "symbols": []}}], )PS2SDB", 8192}, + std::string_view{R"PS2SDB("symbols": []}}, {"match": {"value": 1006715008}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1149306880}, "child": {"skip": 68, "offset": 76, "next": [], "symbols": [{"name": "sceSynthSizerLfoTriangle", "hash": "5d773a74477280815057a164013b1bf3bbdba350", "variant": 0, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 1006714624}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1149304832}, "child": {"skip": 36, "offset": 44, "next": [], "symbols": [{"name": "sceSynthesizerLfoSquare", "hash": "c0f647e13ffce4fe20e5350fa20879f74674f4b3", "variant": 0, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 3296722968}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1174429750}, "child": {"skip": 60, "offset": 68, "next": [], "symbols": [{"name": "sceSynthsizerLfoNoise", "hash": "6844e5768c5f1ecd25a8cd0bb2a16a30f13c714c", "variant": 0, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 3634429952}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 3634495504}, "child": {"skip": 8, "offset": 16, "next": [{"match": {"value": 3634692160}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 3636854784}, "child": {"skip": 236, "offset": 260, "next": [], "symbols": [{"name": "sceSynthesizerTvfProcNI", "hash": "6d2aaf6d4fbb76c1667c245d4d53cfaaaf71f4c5", "variant": 163208822, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 1271007998}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1270944302}, "child": {"skip": 136, "offset": 160, "next": [], "symbols": [{"name": "Vu0InverseMatrix34", "hash": "4ce811812e678f70dc7398350628686ba5e240ee", "variant": 0, "library": "libhip"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006792704}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604176387}, "child": {"skip": 44, "offset": 52, "next": [], "symbols": [{"name": "clrSprWorkCurVoice", "hash": "8de74712869dee086c9d70651713c7c6275bbfb2", "variant": 0, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 2424439354}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 613285992}, "child": {"skip": 184, "offset": 192, "next": [], "symbols": [{"name": "setupStartVoiceOutput", "hash": "78f60c923a615a1aaf8ac60b54f82c936f4b656d", "variant": 0, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 2158100552}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 71303172}, "child": {"skip": 112, "offset": 120, "next": [], "symbols": [{"name": "setupStartVoicePortamento", "hash": "22a8396e9d3876cfd321d17ad2a51c5a53ed1cf9", "variant": 1951725945, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 3299213352}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 2357526552}, "child": {"skip": 288, "offset": 296, "next": [], "symbols": [{"name": "sceSynthesizerSetupMidiModuration", "hash": "1837f71b6388148535bae6667d51cf664e7082b5", "variant": 0, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 1006768127}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 876806128}, "child": {"skip": 44, "offset": 52, "next": [], "symbols": [{"name": "sceSynthesizerDmaSpr", "hash": "363dad5e469176142b4aa433bde3ce31eaa28196", "variant": 0, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 1006715720}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1149304832}, "child": {"skip": 96, "offset": 104, "next": [], "symbols": [{"name": "sceSynthesizerResetPart", "hash": "0b09e13fc3b4133fc5f29e1d51c249c057924dc6", "variant": 1580123832, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 2424438784}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 339738644}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 816120063}, "child": {"skip": 84, "offset": 96, "next": [], "symbols": [{"name": "sceSynthsizerGetMeloPatch", "hash": "343faf09be73eed53054ee1cd97ed3727f043717", "variant": 0, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 2424504321}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 135680}, "child": {"skip": 8, "offset": 20, "next": [], "symbols": [{"name": "__sceEENet_getshort", "hash": "bb0b594a0ddbfd608faf6ca359da459ba67b8f51", "variant": 0, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2426535952}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 818282751}, "child": {"skip": 164, "offset": 172, "next": [], "symbols": [{"name": "sceSynthesizerGetSampleParam", "hash": "4aa003788834cd9d12ca8958510aa2053ad16762", "variant": 0, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 338370}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006715592}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1149308928}, "child": {"skip": 48, "offset": 60, "next": [], "symbols": [{"name": "sceSynthesizerChangePartBendSens", "hash": "1b202a42a5f6e4ee9fe04d88b3b2c25ed0341a18", "variant": 1512735670, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 8400941}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 816119935}, "child": {"skip": 64, "offset": 76, "next": [], "symbols": [{"name": "sceSynthesizerChangeNrpnCutOff", "hash": "6d6044dc8cf74b3e5efa4630e93effe9c512b2e2", "variant": 3424132132, "library": "libssyn"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2424438847}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 816120063}, "child": {"skip": 24, "offset": 32, "next": [], "symbols": [{"name": "sceSynthesizerChangePartVolume", "hash": "6abc093e88d700515c0c9885c4c57efe87297ab5", "variant": 3023355227, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 2424438848}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 816120063}, "child": {"skip": 24, "offset": 32, "next": [], "symbols": [{"name": "sceSynthesizerChangePartExpression", "hash": "390a104a672111fece8e2e40d103ead03cb04e99", "variant": 3023355227, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 816120063}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 749011008}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1352663044}, "child": {"skip": 40, "offset": 52, "next": [], "symbols": [{"name": "sceSynthesizerChangePortamento", "hash": "e9637167e99fb21fbc185959dd9a5ec441ee4919", "variant": 0, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 604110868}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 10627096}, "child": {"skip": 8, "offset": 20, "next": [], "symbols": [{"name": "sceSynthesizerChangePortamentoTime", "hash": "0b0a8b1ab53182daa8cbcd1d205bbc92bfedf53b", "variant": 0, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 604111103}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1352794113}, "child": {"skip": 60, "offset": 72, "next": [], "symbols": [{"name": "sceSynthesizerGetPartOutLevel", "hash": "199c9e7d894fe5b38db952f904a0627b441cb332", "variant": 0, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 346030083}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2693070915}, "child": {"skip": 16, "offset": 28, "next": [], "symbols": [{"name": "sceSynthesizerAssignHoldChange", "hash": "8044d8657689c79e1d0143654d15e3d16d704758", "variant": 4004158540, "library": "libssyn"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006813184}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 8400941}, "child": {"skip": 64, "offset": 72, "next": [], "symbols": [{"name": "sceSynthesizerChangePanpot", "hash": "d3d9b88f9754ffec6bab618d527409d8edc43ce9", "variant": 1190983757, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 818282751}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006713857}, "child": {"skip": 160, "offset": 168, "next": [], "symbols": [{"name": "sceSynthesizerChangeEffectSend", "hash": "00a9bb853e4aeb431d329237c07f0484eecf41a7", "variant": 378299354, "library": "libssyn"}]}}], "symbols": []}}, )PS2SDB", 8192}, + std::string_view{R"PS2SDB({"match": {"value": 331904}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 8726561}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2695233619}, "child": {"skip": 12, "offset": 24, "next": [], "symbols": [{"name": "sceSynthesizerChangeOutAttrib", "hash": "2b69a3fa969f3e9423c4c56c1a72415e1755a707", "variant": 0, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 608305168}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 16, "next": [], "symbols": [{"name": "sceHiPlugAnimeGetFrame", "hash": "c7f474dcb71d9e04700ed13ad5b3ec30c130f31a", "variant": 0, "library": "libhip"}, {"name": "sceHiPlugShareGetIndex", "hash": "c7f474dcb71d9e04700ed13ad5b3ec30c130f31a", "variant": 0, "library": "libhip"}, {"name": "sceHiPlugSkinGetBW", "hash": "c7f474dcb71d9e04700ed13ad5b3ec30c130f31a", "variant": 0, "library": "libhip"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 816119935}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604110976}, "child": {"skip": 204, "offset": 212, "next": [], "symbols": [{"name": "sceSynthesizerChangeNrpnLfoRate", "hash": "95129619007a85dbe15b01330359c05287a869b9", "variant": 0, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 2357395468}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1348468745}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2894069772}, "child": {"skip": 40, "offset": 52, "next": [], "symbols": [{"name": "_sceSSyn_popVoiceFromPLink", "hash": "d7771795eac0ed21d898504014b8a24385d74ac3", "variant": 0, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 405543}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 274726922}, "child": {"skip": 48, "offset": 60, "next": [], "symbols": [{"name": "__sceEENetifmedia_match", "hash": "1e697aa7b393b5c376506079743b993904dcb484", "variant": 0, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 813957375}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 816120063}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 8724515}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006713858}, "child": {"skip": 24, "offset": 40, "next": [], "symbols": [{"name": "velMod0", "hash": "835d5dae953e2d9f50207b62283104fba4232d28", "variant": 0, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 10758179}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006713858}, "child": {"skip": 24, "offset": 40, "next": [], "symbols": [{"name": "velMod1", "hash": "845dbb341c2dec13241ded5c8e9a4799b5e4958c", "variant": 0, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 612696063}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 614858751}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1149503488}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1182795872}, "child": {"skip": 8, "offset": 32, "next": [{"match": {"value": 1149308928}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 1149566976}, "child": {"skip": 28, "offset": 68, "next": [], "symbols": [{"name": "velMod2", "hash": "aa23a76fdda9ba75a36d153123db52ac6787a0cc", "variant": 0, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 1149310976}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 1149566976}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 1182793760}, "child": {"skip": 48, "offset": 92, "next": [], "symbols": [{"name": "velMod4", "hash": "3be3e0af889a82044229e2d19075e4ea62f3cfeb", "variant": 0, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 1149571072}, "child": {"skip": 0, "offset": 40, "next": [{"match": {"value": 1182797984}, "child": {"skip": 40, "offset": 84, "next": [], "symbols": [{"name": "velMod5", "hash": "6075db4fbe571e880d027800d74d5d41832eba6e", "variant": 0, "library": "libssyn"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1149501440}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 1182793760}, "child": {"skip": 60, "offset": 84, "next": [], "symbols": [{"name": "velMod3", "hash": "17f1309334cfbd7bf86cad0658f4fb9e4e3887e3", "variant": 0, "library": "libssyn"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 344260612}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10752043}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1149239296}, "child": {"skip": 68, "offset": 88, "next": [], "symbols": [{"name": "velMod7", "hash": "564077bb3c4e4b380ef39b9e5b43e285c04d6a95", "variant": 0, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 8720419}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 1149239296}, "child": {"skip": 12, "offset": 32, "next": [{"match": {"value": 1149372416}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 1182795872}, "child": {"skip": 76, "offset": 116, "next": [], "symbols": [{"name": "velMod8", "hash": "5813366822d23fd7f4c3bc23d4b5a1d7eb4c4979", "variant": 0, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 1149374464}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 1182797984}, "child": {"skip": 104, "offset": 144, "next": [], "symbols": [{"name": "velMod9", "hash": "cd40081a8873d6435126b87ee2fae29f8d2573a7", "variant": 0, "library": "libssyn"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1149501440}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 16, "next": [], "symbols": [{"name": "velMod0Amp", "hash": "74ab5f1ef0b1c6d15dddb2d24ab7066f92d0e617", "variant": 0, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 604110976}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4460579}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1149370368}, "child": {"skip": 8, "offset": 24, "next": [], "symbols": [{"name": "velMod1Amp", "hash": "636c49150500ece63037fbdd8fab9e3aa048b3f7", "variant": 0, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 666763248}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 4460579}, "child": {"skip": 36, "offset": 52, "next": [], "symbols": [{"name": "velMod4Amp", "hash": "6a522327b7e3a77ed491af0747deadd5387fd9ac", "variant": 2896973123, "library": "libssyn"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1006713857}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 874578436}, "child": {"skip": 24, "offset": 36, "next": [], "symbols": [{"name": "velMod2Amp", "hash": "6b897b321057081d9887c1926662da5dc9b698c4", "variant": 0, "library": "libssyn"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 813891839}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 816054527}, "child": {"skip": 80, "offset": 88, "next": [], "symbols": [{"name": "velMod6", "hash": "e3bce1108a59d287e761afb17c8acf5adb4c8b15", "variant": 0, "library": "libssyn"}]}}], "symbols": []}}, {"match": {"value": 1073989632}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006796800}, "child": {"skip": 20, "offset": 28, "next": [], "symbols": [{"name": "scePcStop", "hash": "5ecaaac209faf0e07d5b6606b5aee6f9e35588f2", "variant": 0, "library": "libpc"}]}}], "symbols": []}}, {"match": {"value": 1073924097}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 12, "next": [], "symbols": [{"name": "scePcGetCounter0", "hash": "5bf7227bb3e41e58e2c892c3956819863bb2c50a", "variant": 0, "library": "libpc"}]}}], "symbols": []}}, {"match": {"value": 604177472}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 148, "offset": 156, "next": [], "symbols": [{"name": "_PsceSkSsClearValidsize", "hash": "1aac36a5e414ae0560ec9cc0fd79e6ff58bcc65b", "variant": 3118959500, "library": "l)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ibsk"}]}}], "symbols": []}}, {"match": {"value": 614794176}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 8237}, "child": {"skip": 68, "offset": 76, "next": [], "symbols": [{"name": "_PsceSkSsSetValidsize", "hash": "084e8503b458d61ec1eb3fa2e262798536369834", "variant": 0, "library": "libsk"}]}}], "symbols": []}}, {"match": {"value": 14684205}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 666763232}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 16783405}, "child": {"skip": 60, "offset": 72, "next": [], "symbols": [{"name": "_sceSkSsSTRADPCM_RPC", "hash": "8cd5e40c9dcd8c3207e6c454ce638a7b595362a1", "variant": 3456633240, "library": "libsk"}]}}], "symbols": []}}, {"match": {"value": 2357723136}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 18477}, "child": {"skip": 176, "offset": 188, "next": [], "symbols": [{"name": "asn1_get_length", "hash": "23046e093cdbff7b346427b4af93db05eb4cd343", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10285}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "memset"}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 604373920}, "child": {"skip": 0, "offset": 12, "next": [], "symbols": [{"name": "scePFontRelease", "hash": "1133d07d046d3e4fc7f81a461977813680f86276", "variant": 1867501559, "library": "libpfont"}]}}, {"match": {"value": 604373024}, "child": {"skip": 0, "offset": 12, "next": [], "symbols": [{"name": "__sceEENetcallout_init", "hash": "dee740cfcb645b6ecc399ec83b0731c1da9e99c1", "variant": 1867501559, "library": "libeenet"}]}}, {"match": {"value": 604373012}, "child": {"skip": 0, "offset": 12, "next": [], "symbols": [{"name": "BN_init", "hash": "261e216ad042546a0a04770ddfed3c901499926c", "variant": 1867501559, "library": "libhttps"}]}}, {"match": {"value": 604373016}, "child": {"skip": 0, "offset": 12, "next": [], "symbols": [{"name": "R_EITEM_init", "hash": "d3308313a6d899e40eee25936828c12ff7944393", "variant": 1867501559, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 612500176}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 10493997}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "scePFontGetFontMatrix", "hash": "b3e62a88ef22348861312d3c4afde4bdc77d4ec8", "variant": 1622213664, "library": "libpfont"}]}}], "symbols": []}}, {"match": {"value": 612500256}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 10493997}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "scePFontGetLocate", "hash": "b247812dc90aa78c737dbe87f2857b85bcd1276c", "variant": 2213285300, "library": "libpfont"}]}}], "symbols": []}}, {"match": {"value": 612500240}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 10493997}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "scePFontGetColor", "hash": "6036709251707f2ae4f8209c78b9698834320a14", "variant": 2213285300, "library": "libpfont"}]}}], "symbols": []}}, {"match": {"value": 266560}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 12, "next": [], "symbols": [{"name": "scePFontCalcCacheSize", "hash": "726e278237adeca7be6fc50f48bfba1a7d715de5", "variant": 0, "library": "libpfont"}]}}], "symbols": []}}, {"match": {"value": 2357461888}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1417674755}, "child": {"skip": 40, "offset": 48, "next": [], "symbols": [{"name": "scePFontGetBlock", "hash": "643b29ebd293b43b02a662548631b6ad53d524aa", "variant": 0, "library": "libpfont"}]}}], "symbols": []}}, {"match": {"value": 2357396352}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 341835780}, "child": {"skip": 64, "offset": 72, "next": [], "symbols": [{"name": "scePFontGetBlock", "hash": "5773ac441cc2a6993634e26809e149239e4d7205", "variant": 0, "library": "libpfont"}]}}], "symbols": []}}, {"match": {"value": 346030082}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": "_scePFontDefaultFilter"}}, "child": {"skip": 8, "offset": 16, "next": [{"match": {"value": 2894398356}, "child": {"skip": 0, "offset": 20, "next": [], "symbols": [{"name": "scePFontSetFilter", "hash": "406800e16001ad4fc73486aeeb1c8cde9c5a5928", "variant": 5586105, "library": "libpfont"}]}}, {"match": {"value": 2894398360}, "child": {"skip": 0, "offset": 20, "next": [], "symbols": [{"name": "scePFontSetFilter", "hash": "debbe5fd1aaa2c538f546e817aa664199e61537a", "variant": 5586105, "library": "libpfont"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2357330812}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 2894070640}, "child": {"skip": 36, "offset": 44, "next": [], "symbols": [{"name": "_scePFontFlushTex", "hash": "f840d009874437be51fae61a4c98178610771396", "variant": 0, "library": "libpfont"}]}}], "symbols": []}}, {"match": {"value": 3296723744}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 3296789284}, "child": {"skip": 56, "offset": 64, "next": [], "symbols": [{"name": "_scePFontResetArea", "hash": "e00b515627613844a1397c8786766e89c3c0490f", "variant": 0, "library": "libpfont"}]}}], "symbols": []}}, {"match": {"value": 2357592976}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 2428829696}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 346030083}, "child": {"skip": 148, "offset": 160, "next": [], "symbols": [{"name": "_scePFont_Getc", "hash": "55d869c365d4284431eb61c338c4e8a944c5230d", "variant": 0, "library": "libpfont"}]}}], "symbols": []}}, {"match": {"value": 2357396372}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 348323843}, "child": {"skip": 64, "offset": 76, "next": [], "symbols": [{"name": "_scePFont_Ungetc", "hash": "1e5302ce5990072cff635d178beb449314354395", "variant": 0, "library": "libpfont"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2357592980}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 2428829696}, "child": {"skip": 152, "offset": 160, "next": [], "symbols": [{"name": "_scePFont_Getc", "hash": "bc0c269674f8538582f70125bf367c227ac368ea", "variant": 0, "library": "libpfont"}]}}], "symbols": []}}, {"match": {"value": 2357592972}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 2357396368}, "child": {"skip": 68, "offset": 76, "next": [], "symbols": [{"name": "_scePFont_Ungetc", "hash": "8a52e5aa277ada39ab41ba4e62d6d2a298c32c2a", "variant": 0, "library": "libpfont"}]}}], "symbols": []}}, {"match": {"value": 2357330820}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 12, "next": [], "symbols": [{"name": "scePFontSetGsCtxt", "hash": "e7597de90dfbb4df65bec0d24702f35e652e4a3c", "variant": 0, "library": "libpfont"}]}}], "symbols": []}}, {"match": {"value": 666762656}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289987136}, "child": {"skip": 160, "offset": 172, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceMcCoreSetAlaram"}}, "child": {"skip": 0, "offset": 176, "next": [{"match": {"value": 2920546316}, "child": {"skip": 36, "offset": 216, "next": [], "symbols": [{"name": "sceMc2SearchFileAsync", "hash": "e1d3811b32ce838803f10d40a91702f8736d3875", "variant": 831671100, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceMcCoreExecSubs"}}, "child": {"skip": 0, "offset": 176, "next": [{"match": {"value": 2920546316}, "child": {"skip": 36, "offset": 216, "next": [], "symbols": [{"name": "sceMc2SearchFileAsync", "hash": "e1d3811b32ce838803f10d40a91702f8736d3875", "variant": 920996703, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289987136}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( 4289921584}, "child": {"skip": 688, "offset": 700, "next": [], "symbols": [{"name": "basic_thread", "hash": "79f6f6f7572a5489297670787b5c84cceda0be4d", "variant": 2901943675, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 4289790512}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290708048}, "child": {"skip": 336, "offset": 348, "next": [], "symbols": [{"name": "smap_main", "hash": "ae8e9cdaa840c907dcc175ae04200e0cec9bcf43", "variant": 3471456966, "library": "ent_smap"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604113048}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 8527896}, "child": {"skip": 80, "offset": 92, "next": [], "symbols": [{"name": "_sceMcFatInit2", "hash": "e9a3c3ff09c5c640b5843c5aacbb0b2725b4eb6f", "variant": 4291190053, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 1007026176, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 8527896}, "child": {"skip": 92, "offset": 104, "next": [], "symbols": [{"name": "_sceMcFatInit2", "hash": "8aa89bc37d6d27dc950fe2e12259663b9b6f830f", "variant": 2479525627, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666762592}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604176772}, "child": {"skip": 760, "offset": 768, "next": [], "symbols": [{"name": "_sceMcFatGetInfo", "hash": "f308ba509a583c502790c08d1d3998148f1229d6", "variant": 581345246, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 666762560}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604176772}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289987168}, "child": {"skip": 76, "offset": 88, "next": [{"match": {"value": 268435648}, "child": {"skip": 0, "offset": 92, "next": [{"match": {"value": 876740627}, "child": {"skip": 812, "offset": 908, "next": [], "symbols": [{"name": "_sceMcFatGetInfo", "hash": "bf5f6bb7a090985161b5548d42ac229ca35d3f0d", "variant": 3463303488, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 268435645}, "child": {"skip": 0, "offset": 92, "next": [{"match": {"value": 876740627}, "child": {"skip": 800, "offset": 896, "next": [], "symbols": [{"name": "_sceMcFatGetInfo", "hash": "e35c43ff6fd7961744b3b93e35b9ab573987e404", "variant": 2256327175, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289725056}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 8421421}, "child": {"skip": 372, "offset": 384, "next": [], "symbols": [{"name": "_sceMcFatChDir", "hash": "1f6974e4493ac75584d3c7e0699afe68fea5f223", "variant": 2278183188, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666762640}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 4289921592}, "child": {"skip": 964, "offset": 972, "next": [], "symbols": [{"name": "_sceMcFatGetInfo", "hash": "d05920c3e9b449813b1f2494cbb84364724264da", "variant": 622721843, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 666762064}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604110849}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290643088}, "child": {"skip": 616, "offset": 628, "next": [], "symbols": [{"name": "_SearchEntry", "hash": "c1a00af61785d967a185698853afb3de2cddabf7", "variant": 934123339, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 604176383}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289856560}, "child": {"skip": 1292, "offset": 1304, "next": [], "symbols": [{"name": "_CreateEntry", "hash": "d30d416f2efae3add41247151287f0d6aef24af3", "variant": 2856952850, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666762144}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 4289856544}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 18911277}, "child": {"skip": 628, "offset": 640, "next": [], "symbols": [{"name": "_SearchEntry", "hash": "9da7522960bca429aeff8168e42e0edd616ecca1", "variant": 3496859064, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 604176383}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289791000}, "child": {"skip": 1260, "offset": 1272, "next": [], "symbols": [{"name": "_CreateEntry", "hash": "21dc1533315028ce05fde9dedf9ac31740335667", "variant": 923527513, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666761904}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604176772}, "child": {"skip": 1200, "offset": 1208, "next": [], "symbols": [{"name": "_sceMcFatSearchFile", "hash": "21a2cd8a51b489000463629200f25f3c2e8729db", "variant": 1630020185, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 666761984}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 4289791160}, "child": {"skip": 1212, "offset": 1220, "next": [], "symbols": [{"name": "_sceMcFatSearchFile", "hash": "c8c3010337734c339ecfcde8ea7f032b5e9c26a3", "variant": 3635528252, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 666761920}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 4289987808}, "child": {"skip": 64, "offset": 72, "next": [{"match": {"value": 268435785}, "child": {"skip": 0, "offset": 76, "next": [{"match": {"value": 876740627}, "child": {"skip": 1360, "offset": 1440, "next": [], "symbols": [{"name": "_sceMcFatCreateFile", "hash": "87d7be7b0edaa6c5577439bb9c83c66851b5a6b8", "variant": 550005245, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 268435793}, "child": {"skip": 0, "offset": 76, "next": [{"match": {"value": 876740627}, "child": {"skip": 1392, "offset": 1472, "next": [], "symbols": [{"name": "_sceMcFatCreateFile", "hash": "02adcc896523b31668781f8f3036f2703f417d49", "variant": 871942871, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666762416}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 4289987312}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290183968}, "child": {"skip": 68, "offset": 80, "next": [{"match": {"value": 268435732}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 876740627}, "child": {"skip": 1148, "offset": 1236, "next": [], "symbols": [{"name": "_sceMcFatWriteFile", "hash": "57461eea89f4b6fa7464223388e558da2c0a40e8", "variant": 1282896132, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 268435750}, "child": {"skip": 0, "offset": 84, "next": [{"match": {"value": 876740627}, "child": {"skip": 1220, "offset": 1308, "next": [], "symbols": [{"name": "_sceMcFatWriteFile", "hash": "2e551d3d7ff37bb0d3b251b6435244389be20b9b", "variant": 4071709194, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4289725200}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 10518573}, "child": {"skip": 600, "offset": 612, "next": [], "symbols": [{"name": "_sceMcFatDeleteFile", "hash": "02d40d9817bff2e80763119528da49064a8cd6fd", "variant": 3444998844, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666762496}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 4289790648}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 10520621}, "child": {"skip": 1388, "offset": 1400, "next": [], "symbols": [{"name": "_sceMcFatWriteFile", "hash": "6ef730d2b7ccd3f345a33fdcefc1ce35ece2e386", "variant": 3248245516, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 4290052816}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289921712}, "child": {"skip": 460, "offset": 472, "next": [], "symbols": [{"name": "_sce_eenet_set_route", "hash": "a2c4ae6765955b9cca7efd30a9958117ff0bd5cb", "variant": 1771738136, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 604373504}, "child": {"skip": 0, "offset": 8, "next": [{)PS2SDB", 8192}, + std::string_view{R"PS2SDB("match": {"value": 4289987264}, "child": {"skip": 224, "offset": 236, "next": [], "symbols": [{"name": "print_name_info", "hash": "c386b02dd8b9ca13c21fa5ec1b30d895ce2aff3f", "variant": 2872451632, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666762384}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 4289921856}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289725200}, "child": {"skip": 40, "offset": 52, "next": [{"match": {"value": 268435585}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 876740627}, "child": {"skip": 544, "offset": 604, "next": [], "symbols": [{"name": "_sceMcFatDeleteFile", "hash": "32998d0226e0c4717bcd9730299ae5c05923a7d6", "variant": 2454287980, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 268435589}, "child": {"skip": 0, "offset": 56, "next": [{"match": {"value": 876740627}, "child": {"skip": 560, "offset": 620, "next": [], "symbols": [{"name": "_sceMcFatDeleteFile", "hash": "95e196ab2a5a1ce746cc5714c0ec32a3500cc7bb", "variant": 2841774442, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10285}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289725184}, "child": {"skip": 404, "offset": 416, "next": [], "symbols": [{"name": "_sce_eenet_dhclient_config_dns_and_route", "hash": "36ba74911e4075f9b8c2f88d9a25465a9f7d7aaf", "variant": 4002341780, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666761728}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 4290119104}, "child": {"skip": 1128, "offset": 1136, "next": [], "symbols": [{"name": "_sceMcFatGetDir", "hash": "fa449abed9c06ec978f88f755753f6f5fdfb18da", "variant": 4030807195, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 666762432}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 4289725200}, "child": {"skip": 436, "offset": 444, "next": [], "symbols": [{"name": "_sceMcFatRename", "hash": "a98e9e5d5a7ba79b8788d976bfe752fbfa0e08c9", "variant": 616064642, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 266304}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4460577}, "child": {"skip": 244, "offset": 256, "next": [], "symbols": [{"name": "_sceMcpWriteSysInfo", "hash": "31b57c9cb68a36cfe28a510d8329a5212cb9a373", "variant": 3727845561, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 14381}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4460577}, "child": {"skip": 108, "offset": 120, "next": [], "symbols": [{"name": "_sceMcpIsSpeckOutClust", "hash": "0fec99edd4bb8ad954a9a219903894cd5dba64f9", "variant": 1906293676, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 12333}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4460577}, "child": {"skip": 76, "offset": 88, "next": [], "symbols": [{"name": "_sceMcpIsSpeckOutBlock", "hash": "120449ccf1cee396fb2fa8a22e35abc372e2a41a", "variant": 1906293676, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604176772}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 8593432}, "child": {"skip": 4, "offset": 16, "next": [{"match": {"value": 14381}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8527905}, "child": {"skip": 72, "offset": 96, "next": [], "symbols": [{"name": "_sceMcpIsSpeckOutClust", "hash": "5438168b23869c930e8594a998b3cc747aa82dbb", "variant": 3118959500, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 6189}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 8527905}, "child": {"skip": 48, "offset": 72, "next": [], "symbols": [{"name": "_sceMcpIsSpeckOutBlock", "hash": "de564159e74598978c6e38c4332e331fc22bb13e", "variant": 3118959500, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666763248}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 8591384}, "child": {"skip": 32, "offset": 44, "next": [{"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceMcCoreReadPage"}}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 12306}, "child": {"skip": 12, "offset": 64, "next": [], "symbols": [{"name": "_sceMcpReadClust", "hash": "7af1ae1621605d41becc4f8705672dd8be706b2b", "variant": 1568742348, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 201326592, "relocation": {"type": "MIPS_26", "symbol": "_sceMcCoreWritePage"}}, "child": {"skip": 0, "offset": 48, "next": [{"match": {"value": 12306}, "child": {"skip": 12, "offset": 64, "next": [], "symbols": [{"name": "_sceMcpWriteClust", "hash": "7af1ae1621605d41becc4f8705672dd8be706b2b", "variant": 1718153817, "library": "libmc2"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 604119056}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 666763200}, "child": {"skip": 104, "offset": 112, "next": [], "symbols": [{"name": "_sceMcpFlushCache", "hash": "4dc37ad9715b1e46f89313a3378a0a54760dbac7", "variant": 1812864311, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 266816}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 666763232}, "child": {"skip": 112, "offset": 120, "next": [], "symbols": [{"name": "_sceMcpFlushCache", "hash": "77d3a16e2c94512f076269a1b2cd8e785080ccbd", "variant": 324072328, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 746717186}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 339738627}, "child": {"skip": 40, "offset": 48, "next": [], "symbols": [{"name": "_sceMcCoreCheckSocket", "hash": "1853d65aa69bb979a7fa01f9e2261373b2a42fb0", "variant": 3398703437, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 604176412}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 20, "offset": 28, "next": [], "symbols": [{"name": "_sceMcCoreReadPage", "hash": "8ff0263b0d832b6a8940902931b8b002d3d7a93f", "variant": 1393940309, "library": "libmc2"}]}}], "symbols": []}}, {"match": {"value": 1352663041}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 461}, "child": {"skip": 52, "offset": 60, "next": [], "symbols": [{"name": "Vumem1Rest", "hash": "28bef4ce6cc9df7f6864133ea3da3b82b2e4e2f0", "variant": 3532641081, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 666762816}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289003912}, "child": {"skip": 8928, "offset": 8940, "next": [], "symbols": [{"name": "__sceEENettcp_input", "hash": "2d0cc87d5f8176996975f76ec1f41b761761c52f", "variant": 581137684, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4290642320}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290183552}, "child": {"skip": 1940, "offset": 1952, "next": [], "symbols": [{"name": "SetHierarchyMatrix", "hash": "c2fce8a34e46d35e858cfc1d4582b503eefad53d", "variant": 616648576, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 4290642336}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290118016}, "child": {"skip": 532, "offset": 544, "next": [], "symbols": [{"name": "sceEENetPoll", "hash": "316047690e63696fb7d358154fc0bb22e60e107e", "variant": 3668125224, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4289986912}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290642336}, "child": {"skip": 1476, "offset": 1488, "next": [], "symbols": [{"name": "PEM_read_bio", "hash": "ffd0d279a9577e756da141b11145424fe1c566da", "variant": 4286622105, "library": "libhttps"}]}}], "symbols": [])PS2SDB", 8192}, + std::string_view{R"PS2SDB(}}], "symbols": []}}, {"match": {"value": 75497481}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604176415}, "child": {"skip": 52, "offset": 60, "next": [], "symbols": [{"name": "getLog2", "hash": "d38321a7e1ef7d1f3be8ee910e61c170602d4864", "variant": 0, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 746717243}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 272629784}, "child": {"skip": 104, "offset": 112, "next": [], "symbols": [{"name": "_calc_image_size", "hash": "ac318023af729727b26c4f880741c66ba7266d15", "variant": 201230608, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 666762784}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1149263872}, "child": {"skip": 1232, "offset": 1240, "next": [], "symbols": [{"name": "shadowmap_view", "hash": "f5e7d040bb88a4eef6ba943f9b9d0ecd271fd6e5", "variant": 3639986322, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 413138952}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 612630544}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2357329924}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 614858751}, "child": {"skip": 28, "offset": 44, "next": [], "symbols": [{"name": "sceHiPlugShapeGetDataHead", "hash": "b7e2530e372f92f85c1186df759ef7c32464754d", "variant": 0, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 2357329928}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 614858751}, "child": {"skip": 28, "offset": 44, "next": [], "symbols": [{"name": "sceHiPlugAnimeGetKeyHead", "hash": "f57361c3afe600584d2807f798e8e4aca862a72a", "variant": 0, "library": "libhip"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 12333}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2491547648}, "child": {"skip": 64, "offset": 76, "next": [], "symbols": [{"name": "_sce_eenet_dhclient_cksum", "hash": "a80104d4c971fa0bd2fca176dfe2f8bf44b1ee28", "variant": 0, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 612761616}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 413138973}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 16429}, "child": {"skip": 120, "offset": 132, "next": [], "symbols": [{"name": "sceHiPlugShapeGetMaterialHead", "hash": "6764900c828bf08d449d178e73bf4cba7e9eae53", "variant": 0, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 2361524240}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2361655308}, "child": {"skip": 64, "offset": 76, "next": [], "symbols": [{"name": "sceHiPlugShapeGetGeometryHead", "hash": "5b5bd7bbe20174dde005f2d9c73ac648b03c5a52", "variant": 0, "library": "libhip"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 3699572768}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 4141}, "child": {"skip": 24, "offset": 32, "next": [], "symbols": [{"name": "sceHiPlugShapeGetMaterialGiftag", "hash": "4cb3f4b58eee295cab3b6549fd179b63044263ad", "variant": 0, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 612630544}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 2357329932}, "child": {"skip": 36, "offset": 44, "next": [], "symbols": [{"name": "sceHiPlugShapeGetMaterialAttrib", "hash": "f932aab05b121e1be7682a621ccd2d5e75d453c3", "variant": 0, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 332032}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 608305168}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "sceHiPlugShapeGetGeometryVertex", "hash": "f48b9788cfa768e618a32caf24f23a26e662a14b", "variant": 0, "library": "libhip"}, {"name": "sceHiPlugHrchyGetPivot", "hash": "f48b9788cfa768e618a32caf24f23a26e662a14b", "variant": 0, "library": "libhip"}, {"name": "sceHiPlugClutBumpGetData", "hash": "f48b9788cfa768e618a32caf24f23a26e662a14b", "variant": 0, "library": "libhip"}, {"name": "sceHiPlugAnimeGetData", "hash": "f48b9788cfa768e618a32caf24f23a26e662a14b", "variant": 0, "library": "libhip"}, {"name": "sceHiPlugShareGetData", "hash": "f48b9788cfa768e618a32caf24f23a26e662a14b", "variant": 0, "library": "libhip"}, {"name": "sceHiPlugShareGetShare", "hash": "f48b9788cfa768e618a32caf24f23a26e662a14b", "variant": 0, "library": "libhip"}, {"name": "sceHiPlugShareGetSrc", "hash": "f48b9788cfa768e618a32caf24f23a26e662a14b", "variant": 0, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 604176528}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 10686488}, "child": {"skip": 12, "offset": 20, "next": [], "symbols": [{"name": "sceHiPlugShapeGetMatrix", "hash": "ea8dd0f00af4d5749cb1e668a05229668c46ff84", "variant": 0, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 332160}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 608305168}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "sceHiPlugHrchyGetData", "hash": "c78c587944774e198e36bfcee49def38852610ed", "variant": 0, "library": "libhip"}, {"name": "sceHiPlugSkinGetLB", "hash": "c78c587944774e198e36bfcee49def38852610ed", "variant": 0, "library": "libhip"}, {"name": "sceHiPlugSkinGetLW", "hash": "c78c587944774e198e36bfcee49def38852610ed", "variant": 0, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 413138953}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 612630544}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2357329936}, "child": {"skip": 36, "offset": 48, "next": [], "symbols": [{"name": "sceHiPlugTex2DGetData", "hash": "d275047ec81b9352c25d134acb23b10f8f448729", "variant": 0, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 6189}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2424438784}, "child": {"skip": 36, "offset": 48, "next": [], "symbols": [{"name": "sppp_strnlen", "hash": "a8458406d841fa8981c2a8197cde2e7ee1643d5b", "variant": 0, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 413138954}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 612630544}, "child": {"skip": 44, "offset": 52, "next": [], "symbols": [{"name": "sceHiPlugTex2DGetEnv", "hash": "5315234e2472bcafe4463097f21d98a22de75cb1", "variant": 0, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 332544}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 608305168}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "sceHiPlugClutBumpGetNormal", "hash": "96dccfaa65a7dc261be7f7675cbfe1b4c8e51481", "variant": 0, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 332096}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 608305168}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "sceHiPlugTim2GetData", "hash": "8a398bd3f073844dac8a3e74da94e0cb35a73d89", "variant": 0, "library": "libhip"}, {"name": "sceHiPlugClipGetData", "hash": "8a398bd3f073844dac8a3e74da94e0cb35a73d89", "variant": 0, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 3634757632}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 3634823184}, "child": {"skip": 80, "offset": 88, "next": [], "symbols": [{"name": "Vu0InverseMatrixRT", "hash": "08279d7cb1448624408beb1a9bd1530c5b4d7ac8", "variant": 0, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 3633381376}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 3633446928}, "child": {"skip": 12, "offset": 20, "next": [], "symbols": [{"name": "load_ibm", "hash": "e88d3150ef704175482b6df09064d7bcbc8f30dc", "variant": 0, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 2363686912}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 203136}, "child": {"skip": 4, "offset": 12, "next": [{"match": {"value": 3636133888}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 3428843520}, "child": {"skip": 76, "offset": 96, "next": [], "symbols": [{"name": "Vu0Weight_Rigid", "hash": "0408eeb6a92fcb5bd02f5e64b81220c922074aab", "variant": 0, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 3642490)PS2SDB", 8192}, + std::string_view{R"PS2SDB(880}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 3636133888}, "child": {"skip": 276, "offset": 296, "next": [], "symbols": [{"name": "Vu0Weight", "hash": "904be826dae26067005c9d3e9cc97f3ae32af1fc", "variant": 0, "library": "libhip"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 3636133888}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1245381436}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1272646076}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1272647869}, "child": {"skip": 108, "offset": 124, "next": [], "symbols": [{"name": "Vu0WeightNormal_Normalize", "hash": "6817794449cf2171a7c55655b488a325d94b006a", "variant": 0, "library": "libhip"}]}}], "symbols": []}}, {"match": {"value": 3430940672}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1272646076}, "child": {"skip": 32, "offset": 48, "next": [], "symbols": [{"name": "Vu0WeightNormal", "hash": "d63fab2b84fdd713f1fad71ab2840307a27cf6bc", "variant": 0, "library": "libhip"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2357460992}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604110849}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2896298008}, "child": {"skip": 52, "offset": 64, "next": [], "symbols": [{"name": "smap_media_stat", "hash": "6801d4e3b0ab091e3d203ddac8b1f314e895c292", "variant": 0, "library": "ent_smap"}]}}], "symbols": []}}, {"match": {"value": 276824069}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 0}, "child": {"skip": 40, "offset": 52, "next": [], "symbols": [{"name": "CRYPTO_get_ex_data", "hash": "0c2af8e9b69147a887f81b8c00599aa741d35d52", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604111617}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1417805828}, "child": {"skip": 64, "offset": 76, "next": [], "symbols": [{"name": "SSL_get_version", "hash": "3a16cb5613215d3249a0176b070323218e3f8b0e", "variant": 3673090703, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2491547696}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 809696191}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "smap_stop", "hash": "5549065257ef872cbd907344aa8e3d89d38a856b", "variant": 0, "library": "ent_smap"}]}}], "symbols": []}}, {"match": {"value": 604110863}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604176400}, "child": {"skip": 940, "offset": 948, "next": [], "symbols": [{"name": "malloc_bytes", "hash": "599d9438cb13cbfc70949ff3696b975b52809853", "variant": 3662725170, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 1006856005}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1007022029}, "child": {"skip": 52, "offset": 60, "next": [], "symbols": [{"name": "__sceEENetMD5Init", "hash": "0dbc33e0c1a0a7552c355e92e320840f43da3cb5", "variant": 0, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 10502189}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 8398893}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 268435457}, "child": {"skip": 4, "offset": 16, "next": [], "symbols": [{"name": "__sceEENetbcopy", "hash": "daa93a5986cd40f4d8ad710dd274c4c84d9e749b", "variant": 0, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 12605485}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 16803885}, "child": {"skip": 308, "offset": 320, "next": [], "symbols": [{"name": "sceBASE64Encoder", "hash": "c95199aa47a7e5981b9c86e3e2c8aad3ea84d848", "variant": 1418915019, "library": "base64"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10764323}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 687931401}, "child": {"skip": 220, "offset": 228, "next": [], "symbols": [{"name": "__sceEENetmemmove", "hash": "6e5b17009c1cd67a9145b17d249f2c40aaf100cb", "variant": 0, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 683802656}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 339738694}, "child": {"skip": 456, "offset": 464, "next": [], "symbols": [{"name": "__sceEENetmemcpy", "hash": "4f4d6aeb1b55ff1922cc81c3771a57046cbd207e", "variant": 0, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2491547656}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 12, "next": [], "symbols": [{"name": "__sceEENetselrecord", "hash": "a20a971525b322006c0cce3687fbd74b6d2446a9", "variant": 0, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 604241921}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2359492608, "relocation": {"type": "MIPS_LO16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 60, "offset": 76, "next": [], "symbols": [{"name": "__sceEENetsogetid", "hash": "ce60871ad2d495d22c57aa0f1754d28fac9edaa7", "variant": 318106481, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 1007026176, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 0}, "child": {"skip": 60, "offset": 76, "next": [], "symbols": [{"name": "select_ifindex", "hash": "e59ac9bfaa504e0f3dac47cc1d771c31300dd984", "variant": 3820706680, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 32, "offset": 48, "next": [], "symbols": [{"name": "__sceEENetin_init", "hash": "46598ae209e0c129e3c186e5c985b2975c805b74", "variant": 1232197799, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2491547654}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 809697269}, "child": {"skip": 12, "offset": 20, "next": [], "symbols": [{"name": "__sceEENetsoisconnecting", "hash": "9f14d1b4bc6dd8f2aaacd7d2abcffa6baecddf5f", "variant": 0, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 346030090}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 2357592080}, "child": {"skip": 124, "offset": 132, "next": [], "symbols": [{"name": "__sceEENetsoqremque", "hash": "78337cae735da80b32282677c5bcdf7ec41e22ce", "variant": 0, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 679608324}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 272629765}, "child": {"skip": 28, "offset": 36, "next": [], "symbols": [{"name": "__sceEENetget_tpl", "hash": "03ef93004f9914669fc3e930f250eac7bf37e5bc", "variant": 2778657260, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2424766471}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604176394}, "child": {"skip": 432, "offset": 440, "next": [], "symbols": [{"name": "__sceEENetcdclktotv", "hash": "3ac923965864750c41f09c248ce3ec3e84e90e39", "variant": 2498961894, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 3699703808}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006765557}, "child": {"skip": 92, "offset": 100, "next": [], "symbols": [{"name": "__sceEENetitimerfix", "hash": "f354ee64cb97f2e82ae1837f6c13576b4f60c76f", "variant": 0, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2894397468}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 2359427076}, "child": {"skip": 20, "offset": 28, "next": [], "symbols": [{"name": "bpf_attachd", "hash": "498090fe74333df45f9d090ee2e493810336bc08", "variant": 0, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 604110928}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 666763152}, "child": {"skip": 372, "offset": 380, "next": [], "symbols": [{"name": "__sceEENetbpfr)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ead", "hash": "0d8dc2ea6cc182353ba255def6763b0f367c44ee", "variant": 1598088474, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 612499476}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604373008}, "child": {"skip": 12, "offset": 20, "next": [], "symbols": [{"name": "bpf_ifname", "hash": "86bb6cde2490d9a132a0cd75e4a8299d9f2fa7bf", "variant": 1718916426, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 268435460}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 2357657612}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 276824129}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10954787}, "child": {"skip": 276, "offset": 292, "next": [], "symbols": [{"name": "m_xword", "hash": "8ff24fa2031ab56d845056709414dfebc108ce90", "variant": 0, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 276824090}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10954787}, "child": {"skip": 120, "offset": 136, "next": [], "symbols": [{"name": "m_xhalf", "hash": "b0dc09f4fb4e6de7bc5b63f5ad2a0d9a4e86c034", "variant": 0, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 413138996}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 6189}, "child": {"skip": 232, "offset": 240, "next": [], "symbols": [{"name": "__sceEENetbpf_validate", "hash": "8d5e8b3608402396c90cd5951b5b5ff6f737e5bd", "variant": 0, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 278921218}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 872579532}, "child": {"skip": 12, "offset": 20, "next": [], "symbols": [{"name": "__sceEENetlortrequest", "hash": "cee636f488efa88d91e4510a0b496b2dbeb94a45", "variant": 0, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 872579104}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 136248}, "child": {"skip": 144, "offset": 152, "next": [], "symbols": [{"name": "__sceEENetloioctl", "hash": "e060eb009fd1e2d3bd94d74b2de4d714d431993a", "variant": 3631725251, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2894069772}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 612499468}, "child": {"skip": 28, "offset": 36, "next": [], "symbols": [{"name": "__sceEENetifmedia_init", "hash": "80e30982d56b9c515c71c7695df2ea881f3279d7", "variant": 0, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 343932935}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 80, "offset": 88, "next": [], "symbols": [{"name": "pppoe_find_softc_by_session", "hash": "aa571c437602d51b586c17af7be0c15ebb7ebe66", "variant": 2765889013, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2357349948}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 339738627}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 0}, "child": {"skip": 16, "offset": 28, "next": [], "symbols": [{"name": "pppoe_tls", "hash": "08400121f30233f97c25ab9812875b478c8ddfcf", "variant": 2208059381, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 675414019}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 339738632}, "child": {"skip": 40, "offset": 52, "next": [], "symbols": [{"name": "pppoe_tlf", "hash": "f932965d415460b2761aaed08cae2f1d8567de95", "variant": 3508002016, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2357658268}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 80, "offset": 88, "next": [], "symbols": [{"name": "sppp_ncp_check", "hash": "9d2a2debac4d744e9cc2bcb2c97baa34eed7f695", "variant": 3135353075, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2357396148}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829567}, "child": {"skip": 16, "offset": 24, "next": [], "symbols": [{"name": "sppp_ipcp_tld", "hash": "27b0c468bddc2fbd013f316c0acdb9ff5f37deef", "variant": 0, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2357330588}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 876740610}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "sppp_ipcp_tls", "hash": "5679a8cbd5d67f769503df69486577bdaf3843a5", "variant": 0, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2357396124}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829567}, "child": {"skip": 16, "offset": 24, "next": [], "symbols": [{"name": "sppp_ipcp_tlf", "hash": "59e6213fda861408924025dcb7f4b4d92b72c10d", "variant": 0, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 814088447}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 666763232}, "child": {"skip": 8, "offset": 16, "next": [{"match": {"value": 744620043}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 272629801}, "child": {"skip": 208, "offset": 232, "next": [], "symbols": [{"name": "sppp_cp_type_name", "hash": "103e8aaf6335a3ef24868aa322901e14e7784744", "variant": 1242830339, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 744620040}, "child": {"skip": 0, "offset": 20, "next": [{"match": {"value": 272629789}, "child": {"skip": 160, "offset": 184, "next": [], "symbols": [{"name": "sppp_lcp_opt_name", "hash": "584211c9f58c87fbaa5d8be61e463ab97c1b888a", "variant": 1674838404, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 746717189}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 272629782}, "child": {"skip": 100, "offset": 108, "next": [], "symbols": [{"name": "sppp_phase_name", "hash": "33ae193571c42fda696a51397a07bb9f361fb377", "variant": 1379602502, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2225209352}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 71303180}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 8400941}, "child": {"skip": 52, "offset": 64, "next": [], "symbols": [{"name": "__sceEENetrn_search", "hash": "19d34a0ae0cabf5b7e4687c8b87c57c4f9e3afae", "variant": 0, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 71303184}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 0}, "child": {"skip": 68, "offset": 80, "next": [], "symbols": [{"name": "__sceEENetrn_search_m", "hash": "f22725141c7e57382c3827346c70c47a57a73c4e", "variant": 0, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2426601472}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604635137}, "child": {"skip": 184, "offset": 192, "next": [], "symbols": [{"name": "__sceEENetrn_refines", "hash": "e397ccbeac23dd64deaa4580ac266e4dbb0f1c79", "variant": 0, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2359820300}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 8407085}, "child": {"skip": 132, "offset": 140, "next": [], "symbols": [{"name": "rn_satsifies_leaf", "hash": "0dac40aedd767188f57f368cbef9360f39e963ec", "variant": 889195310, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 815988743}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604110976}, "child": {"skip": 64, "offset": 72, "next": [], "symbols": [{"name": "__sceEENetrn_newpair", "hash": "352ed288e956510462827382a62a999350b0f8ab", "variant": 0, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 666762880}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290052400}, "child": {"skip": 532, "offset": 544, "next": [], "symbols": [{"name": "__sceEENetrt_newaddrmsg", "hash": "09a9835b48bed9df08aab67ab17bddd4db413f73", "variant": 795109121, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4290642272}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"val)PS2SDB", 8192}, + std::string_view{R"PS2SDB(ue": 4290183504}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 12644397}, "child": {"skip": 1064, "offset": 1080, "next": [], "symbols": [{"name": "__sceEENetsyn_cache_add", "hash": "f00042c4cc5e61cc0cce698f642c0f06eaa59acf", "variant": 4236083229, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 4290117952}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 10547245}, "child": {"skip": 752, "offset": 768, "next": [], "symbols": [{"name": "sceEENetSelect", "hash": "fa0c14d61a1ad29cad1603dd97f98198b8065c4a", "variant": 3132163302, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 4290183504}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290117952}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8435757}, "child": {"skip": 3188, "offset": 3204, "next": [], "symbols": [{"name": "ssl_create_cipher_list", "hash": "9a30ee2506060e1c0cec6bbf096da22d4e51efec", "variant": 3991141024, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 4289921296}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 8435757}, "child": {"skip": 1956, "offset": 1972, "next": [], "symbols": [{"name": "time_mi_import", "hash": "ed6755b6d8788f108819551bd8f20b319fd3e499", "variant": 3295246345, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2692743168}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604307465}, "child": {"skip": 52, "offset": 60, "next": [], "symbols": [{"name": "__sceEENetin_socktrim", "hash": "35abcf419b7e41ef38f5f931c9ca4e8556849a6f", "variant": 0, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2357395532}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 274726914}, "child": {"skip": 16, "offset": 24, "next": [], "symbols": [{"name": "__sceEENetip_optlen", "hash": "39db881347ea48905f2207054a283cfe60b7529e", "variant": 0, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 604184576}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006960640, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 32, "offset": 40, "next": [], "symbols": [{"name": "__sceEENetrip_init", "hash": "811620d80754366637d25d0c54a771a8f6c1b6a3", "variant": 4093668358, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2359427084}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604176400}, "child": {"skip": 88, "offset": 96, "next": [], "symbols": [{"name": "__sceEENetrip_connect", "hash": "c2413218660ced58049eea2765b89f985b5382b6", "variant": 1906293676, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2491613224}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604110860}, "child": {"skip": 16, "offset": 24, "next": [], "symbols": [{"name": "__sceEENettcp_optlen", "hash": "05d6ad0bb20c595d5320a28c7f19768104dff15e", "variant": 0, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 612630548}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604110851}, "child": {"skip": 36, "offset": 44, "next": [], "symbols": [{"name": "__sceEENettcp_canceltimers", "hash": "e96211ee58734069627a4406871b6a4f5d0545d6", "variant": 0, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 604649536}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1007353856, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 68, "offset": 76, "next": [], "symbols": [{"name": "__sceEENettcp_timer_init", "hash": "ee5468f9a8191037f83e659ea4cf02505b4e2383", "variant": 68763417, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 604127232}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006829568, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 16, "offset": 24, "next": [], "symbols": [{"name": "__sceEENettcp_usrreq_init", "hash": "76425d0affc0f6fff81983d3d91a9dba2e9f8838", "variant": 2284896470, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2894397656}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 2359427144}, "child": {"skip": 12, "offset": 20, "next": [], "symbols": [{"name": "so_enter", "hash": "a99862deaa874b48ec6ae696f35409d4a90b9594", "variant": 0, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2357329992}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 272629770}, "child": {"skip": 48, "offset": 56, "next": [], "symbols": [{"name": "so_leave", "hash": "483d61f0b3c4178eb7a06f75ee7116f25a881cf5", "variant": 0, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 342055}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 8726564}, "child": {"skip": 4, "offset": 12, "next": [{"match": {"value": 614793218}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 10620970}, "child": {"skip": 92, "offset": 112, "next": [], "symbols": [{"name": "allocate_ee_sifrpc", "hash": "0430b82b8b6530a2577c5e3a4da8af04b60bd3ea", "variant": 2239491582, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 614793217}, "child": {"skip": 0, "offset": 16, "next": [{"match": {"value": 10620970}, "child": {"skip": 92, "offset": 112, "next": [], "symbols": [{"name": "allocate_iop_sifrpc", "hash": "72d05adefa55904903b967af941f512b16d04f86", "variant": 2239491582, "library": "libeenet"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 411041809}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12333}, "child": {"skip": 84, "offset": 92, "next": [], "symbols": [{"name": "allocate_ee_sifcmd", "hash": "6c6c1b7f1c0c0ce0123727f24a9debd0bc19b476", "variant": 306401506, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 1007058943}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 10285}, "child": {"skip": 160, "offset": 168, "next": [], "symbols": [{"name": "eenet_add_device_list", "hash": "74487258609a0c3576952ea087b3ab91b8cffe7f", "variant": 965523501, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 268435463}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 2156003328}, "child": {"skip": 40, "offset": 48, "next": [], "symbols": [{"name": "__sceEENetres_dnok", "hash": "0a51c4576b328c658248fa6ed7424368135bf323", "variant": 0, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 2424635393}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 2424504320}, "child": {"skip": 36, "offset": 44, "next": [], "symbols": [{"name": "__sceEENet_getlong", "hash": "d305531204db958d228e9809e5cab73569fdba40", "variant": 0, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 267778}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 269314}, "child": {"skip": 24, "offset": 32, "next": [], "symbols": [{"name": "__sceEENet__putlong", "hash": "b52efe8ea8c511aeaca0999f1018b14fc8e687bd", "variant": 0, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 612630494}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 744620091}, "child": {"skip": 48, "offset": 56, "next": [], "symbols": [{"name": "special", "hash": "f2627d58baffa68212040e8772290c60123b2455", "variant": 1644047408, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 612564959}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 12, "next": [], "symbols": [{"name": "printable", "hash": "8fb609d71f1accd099fbbcfb8230c19a464e41a1", "variant": 0, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 612564927}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 742522906}, "child": {"skip": 24, "offset": 32, "next": [], "symbols": [{"name": "mklower", "hash": "8c5bd50e27255172f51d13fe9c7e7308faaf8102", "variant": 0, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 604241925}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 134217728, "relocation": {"type": "MIPS_26", "symbol": "sceEENetSetResolvTO"}}, "child": {"skip":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( 4, "offset": 12, "next": [], "symbols": [{"name": "__sceEENetSetDefaultResolvTO", "hash": "e1c89f6431244a6a78ddd7ad795344996b7a4d10", "variant": 2017468551, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 666762800}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 4289855824}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707904}, "child": {"skip": 2960, "offset": 2972, "next": [], "symbols": [{"name": "__sceEENetres_send", "hash": "a35ee55bddf684dc5d6d1db025a982685189b3f7", "variant": 486613106, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 604110888}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289986928}, "child": {"skip": 1780, "offset": 1792, "next": [], "symbols": [{"name": "eenetctl_action", "hash": "3d1e118ef063c8bd7f363cd903d2acec1fc7ca93", "variant": 192130658, "library": "eenetctl"}]}}], "symbols": []}}, {"match": {"value": 4289724816}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289790368}, "child": {"skip": 188, "offset": 200, "next": [], "symbols": [{"name": "ERR_remove_state", "hash": "53d32ed9d81830fc2040d5e93bd29a368f5e9be3", "variant": 79507976, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 666760016}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 4289858704}, "child": {"skip": 540, "offset": 548, "next": [], "symbols": [{"name": "_sce_eenet_sppp_config_param", "hash": "1f31c95fcff94c6252041e8f0cdd18e2d502a6e4", "variant": 570547677, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 666762240}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 4289856464}, "child": {"skip": 328, "offset": 336, "next": [], "symbols": [{"name": "_sce_eenet_sppp_config_dns_and_route", "hash": "ef4b7c70f5fd53b29d921d0f1c81aa011b56966a", "variant": 2850368159, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 666759568}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 4289859152}, "child": {"skip": 152, "offset": 160, "next": [], "symbols": [{"name": "_sce_eenet_sppp_phone_number", "hash": "c17b9aae0f8c5362542c6a9bedeea33474d6bf6c", "variant": 511257182, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 407040}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 24621}, "child": {"skip": 452, "offset": 460, "next": [], "symbols": [{"name": "_sce_eenet_dhclient_pickup_opt", "hash": "b8b566e2e5e99a4b7e810d0d6996071080742019", "variant": 0, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 415236108}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 14381}, "child": {"skip": 52, "offset": 60, "next": [], "symbols": [{"name": "_sce_eenet_dhclient_nvttostr", "hash": "f7d3b74eed3524b699edd0bfd3ac07f2991b8aaf", "variant": 0, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 1006829312}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 271872}, "child": {"skip": 152, "offset": 160, "next": [], "symbols": [{"name": "check_param", "hash": "08163935a9d3bfb8e7568eb1eca72e39d0e51a3f", "variant": 1446327458, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 666759456}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 4290055824}, "child": {"skip": 884, "offset": 892, "next": [], "symbols": [{"name": "ppp_modemconf", "hash": "67720f25a0d9c95c22495d12572df4da72e02ca6", "variant": 240442620, "library": "libeenet"}]}}], "symbols": []}}, {"match": {"value": 948174850}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604176383}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "af2proto", "hash": "fed69f907a4d9c1f2febfe6e022e51dfec1e67f6", "variant": 0, "library": "libeenet"}, {"name": "af2proto", "hash": "fed69f907a4d9c1f2febfe6e022e51dfec1e67f6", "variant": 0, "library": "eenetctl"}]}}], "symbols": []}}, {"match": {"value": 612630584}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 6189}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1007092736}, "child": {"skip": 72, "offset": 84, "next": [], "symbols": [{"name": "each_proto_updown_check", "hash": "efd3b6bab4520014a668626bf7d639f2a375d52c", "variant": 0, "library": "eenetctl"}]}}], "symbols": []}}, {"match": {"value": 12333}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 6189}, "child": {"skip": 36, "offset": 48, "next": [], "symbols": [{"name": "completed_check", "hash": "d42d7921c7b1447c4ab934e252372adcf58287dc", "variant": 0, "library": "eenetctl"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 746717191}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 272629795}, "child": {"skip": 156, "offset": 164, "next": [], "symbols": [{"name": "print_state", "hash": "d0d56be62ba5c2507acc8e788e2d85785bbc8e60", "variant": 2900130361, "library": "eenetctl"}]}}], "symbols": []}}, {"match": {"value": 604110888}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 612630576}, "child": {"skip": 32, "offset": 40, "next": [], "symbols": [{"name": "clear_error_bit", "hash": "857f768707e46153b22696d5bccf28869ffef963", "variant": 0, "library": "eenetctl"}]}}], "symbols": []}}, {"match": {"value": 2357330272}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 65011720}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 809631756}, "child": {"skip": 0, "offset": 12, "next": [], "symbols": [{"name": "io_interrupted", "hash": "f08a58eec9be7ecc498c3bb02372a7c75b9ba89e", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 809631752}, "child": {"skip": 0, "offset": 12, "next": [], "symbols": [{"name": "io_aborted", "hash": "578e3a6fa33f2a1f8b178fb484ad5fe0aefd4334", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1417674757}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 2156068864}, "child": {"skip": 76, "offset": 84, "next": [], "symbols": [{"name": "sceHTTPLibSkipToken", "hash": "3dfdc5f8d0dbbb5b61579a51e8c7444272559f28", "variant": 2340780851, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2357526760}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604110948}, "child": {"skip": 24, "offset": 32, "next": [{"match": {"value": 274726941}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 120, "offset": 160, "next": [], "symbols": [{"name": "must_without_content", "hash": "40d271f440aaff7a5c31f62f15ec6bb3b07563dc", "variant": 2164967194, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 274726921}, "child": {"skip": 0, "offset": 36, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 40, "offset": 80, "next": [], "symbols": [{"name": "check_state", "hash": "1b3dacfa45e28b5583ef95b5947521ce8553d255", "variant": 1593880078, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2357330100}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604176388}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 339935235}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "sceHTTPGetTransferedBytes", "hash": "90527d7f075cece200ec271404c520f02559004e", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604176387}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 339935235}, "child": {"skip": 24, "offset": 36, "next": [], "symbols": [{"name": "sceHTTPGetPostedBytes", "hash": "01fd139224f6c135ec92d51e0818f7f36a1ae9bd", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 614662143}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 742523007}, "child": {"skip": 56, "offset": 64, "next": [], "symbols": [{"name": "sceHTTPSetDefaultThreadValue", "hash": "07ac892fe9a32a2331e1267b4b02cd915b17142c", "variant": 2660041261, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 276824083}, "chil)PS2SDB", 8192}, + std::string_view{R"PS2SDB(d": {"skip": 0, "offset": 4, "next": [{"match": {"value": 10489901}, "child": {"skip": 80, "offset": 88, "next": [], "symbols": [{"name": "sceHTTPLibCatHeaderList", "hash": "5061f12e57903a6cabe6034d154403d8bf583b8b", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604176413}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 4141}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "sceHTTPSSetDefaultOption", "hash": "d10fd71e823292ecf255ce7d8d7e53ce5f063e9c", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2894070120}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 12, "next": [], "symbols": [{"name": "sceHTTPSClearErrnum", "hash": "57e69eed529761f70199395b1e2fb7dcb09e9dad", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 480247811}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 681705474}, "child": {"skip": 64, "offset": 72, "next": [], "symbols": [{"name": "ASN1_check_infinite_end", "hash": "3be2398ac8d2d778108c8fea34d12908d8b2fb13", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 681705600}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 272629764}, "child": {"skip": 152, "offset": 160, "next": [], "symbols": [{"name": "asn1_put_length", "hash": "aee62955557ba2fad4044cb212eb0e01e592e66e", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 683802655}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 339738637}, "child": {"skip": 124, "offset": 132, "next": [], "symbols": [{"name": "ASN1_object_size", "hash": "ac080dee57b9c8683093f876d81096a3b2cc04d3", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2359754768}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 2426535956}, "child": {"skip": 292, "offset": 300, "next": [], "symbols": [{"name": "ber_header_write", "hash": "5f2a9560e1c8058f3f49c2974745e233d96e0898", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2894462976}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 346030084}, "child": {"skip": 28, "offset": 36, "next": [], "symbols": [{"name": "BER_ITEMS_SK_init", "hash": "c8520ed191dcea36885a0872ed9720ec28a076c5", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2357395480}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 274726916}, "child": {"skip": 32, "offset": 40, "next": [], "symbols": [{"name": "BER_ITEMS_append", "hash": "ddc2d5ad0b420f05d7cae5c30ce658a3ab5d06e7", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 3699507216}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 872648704}, "child": {"skip": 56, "offset": 64, "next": [], "symbols": [{"name": "BER_ITEMS_under", "hash": "bf09eb63475378d9005f15851333a6273e798927", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2424438806}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 816120000}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 820445231}, "child": {"skip": 48, "offset": 60, "next": [], "symbols": [{"name": "BER_ITEM_set_header", "hash": "2c84b2269a330bf72ff4c73d4baf5da8d2c03040", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 405564}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 405566}, "child": {"skip": 20, "offset": 32, "next": [], "symbols": [{"name": "BER_ITEM_set_data", "hash": "2aa4aca63c4daeeeff2366ba53b34f985dc85817", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2424504342}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 811728900}, "child": {"skip": 32, "offset": 40, "next": [], "symbols": [{"name": "BER_ITEM_set_prefix_byte", "hash": "6af428fb78ad764e54ea1bd579b644ecff76bf6e", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 750911490}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 339738686}, "child": {"skip": 344, "offset": 352, "next": [], "symbols": [{"name": "BER_read_item", "hash": "75f3044b4e93042cf8982bd4562785810e4ceab1", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2357329940}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 4526117}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 16, "next": [], "symbols": [{"name": "BIO_set_flags", "hash": "61149ac8769f739ed2955e63613f01a4d9563af7", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 876740620}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 16, "next": [], "symbols": [{"name": "BIO_set_retry_special", "hash": "7993d73c5043a6681732ceeb54cbe3f8e21ee633", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 876740617}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 16, "next": [], "symbols": [{"name": "BIO_set_retry_read", "hash": "48085d2ae383ecb45a254e73ca4a3bf8655a4879", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 876740618}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 16, "next": [], "symbols": [{"name": "BIO_set_retry_write", "hash": "231bf2f4d510e6760fd9549431db2712d6366859", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 337959}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4526116}, "child": {"skip": 8, "offset": 20, "next": [], "symbols": [{"name": "BIO_clear_flags", "hash": "f736dfe5c9f0c1689e489210d73436201f41fc46", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604241904}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4395044}, "child": {"skip": 8, "offset": 20, "next": [], "symbols": [{"name": "BIO_clear_retry_flags", "hash": "e19beca46efddf1b7d7d166baeeb5b5207ef3c60", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 65011720}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 809631759}, "child": {"skip": 0, "offset": 12, "next": [], "symbols": [{"name": "BIO_get_retry_flags", "hash": "4fc144defd048359b89de255268fe782f6680a93", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 809631745}, "child": {"skip": 0, "offset": 12, "next": [], "symbols": [{"name": "BIO_should_read", "hash": "a8e20fe42c20cb26a32e11a85fc417ffe4b9f995", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 809631746}, "child": {"skip": 0, "offset": 12, "next": [], "symbols": [{"name": "BIO_should_write", "hash": "13ef1237a0832b6a9804e48f97bafe1083081f1b", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 809631748}, "child": {"skip": 0, "offset": 12, "next": [], "symbols": [{"name": "BIO_should_io_special", "hash": "5788a9d46de98e9d9aa396a164b34ca9681896e1", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 809631751}, "child": {"skip": 0, "offset": 12, "next": [], "symbols": [{"name": "BIO_retry_type", "hash": "1a5d5456b028e173995f647c20bc2dce4a48f052", "variant": 0, "library": "libhttps"}]}}, {"match": {"value": 809631752}, "child": {"skip": 0, "offset": 12, "next": [], "symbols": [{"name": "BIO_should_retry", "hash": "6e864aed6c556684cf56fd69173ee3a609871e9b", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2894462984}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 12, "next": [], "symbols": [{"name": "BIO_set_bio_cb", "hash": "937c5cdb524bcd157e0c14ff8109189d0d76d54d", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 10489901}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12589101}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 666763248}, "child": {"skip":)PS2SDB", 8192}, + std::string_view{R"PS2SDB( 40, "offset": 52, "next": [], "symbols": [{"name": "BN_mod", "hash": "01cb40945d3b310fc90f1be3cec2f300ffeb0e19", "variant": 2467571405, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2357461112}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 469052}, "child": {"skip": 16, "offset": 28, "next": [], "symbols": [{"name": "rc4_cipher", "hash": "e54b5ce607bbd0d51166c8439c60d8eb51fc162c", "variant": 2004726718, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 77594636}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 8402989}, "child": {"skip": 80, "offset": 88, "next": [], "symbols": [{"name": "BN_is_bit_set", "hash": "a91d9c29dc44d89ca77dd9418c0e0ce695f591ec", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 1558183939}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 3701669888}, "child": {"skip": 212, "offset": 220, "next": [], "symbols": [{"name": "bn_add_words", "hash": "c8fdb3b59155331525bfe7bf68818dd3972cd1a6", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 484442136}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 18477}, "child": {"skip": 180, "offset": 188, "next": [], "symbols": [{"name": "bn_sub_words", "hash": "1356eb504d1da2560ee6d379e90dc65ef932f00e", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 816119810}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1007288320, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 160, "offset": 168, "next": [], "symbols": [{"name": "BN_bnme_get", "hash": "c9b313507386ff2f4d586062f26447fb64d78dac", "variant": 2886780356, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2363621376}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604176404}, "child": {"skip": 380, "offset": 388, "next": [], "symbols": [{"name": "BN_gen_exp_bits", "hash": "631c8924f69b3dd97598bf4700020c5cc263bc16", "variant": 3855734308, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 666762720}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 4290118112}, "child": {"skip": 1392, "offset": 1400, "next": [], "symbols": [{"name": "BN_mod_exp2_mont", "hash": "d29d7ccaa1da8d1a3203c976ca799a5bfc0551be", "variant": 3110611719, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 617283583}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604241919}, "child": {"skip": 380, "offset": 388, "next": [], "symbols": [{"name": "BN_rand", "hash": "f1f541ebe398ab5fed5767dfae5b537f7f8bf74e", "variant": 4226287725, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2894397456}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 12, "next": [], "symbols": [{"name": "sslcert_store_set_verify_cb", "hash": "cb199f7633844767a8f64eb8344e9011e0105722", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604110851}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1352794115}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2424504320}, "child": {"skip": 448, "offset": 460, "next": [], "symbols": [{"name": "SSLCERT_OID_to_string", "hash": "5dc31f6458bb5270bb55712e451189590e8868e1", "variant": 2130298286, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 77660163}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2894200856}, "child": {"skip": 28, "offset": 40, "next": [], "symbols": [{"name": "ssl3_part_read", "hash": "6aecd404ce5b2eb4a9006b4909a8954170218555", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 950337537}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604120866}, "child": {"skip": 8, "offset": 16, "next": [], "symbols": [{"name": "crypto_sslc_dh_set_info", "hash": "a2ecbecab9d5f445ee6bc1e6e008bde5dfe45918", "variant": 0, "library": "libhttps"}, {"name": "crypto_sslc_null_key_exch_set_info", "hash": "a2ecbecab9d5f445ee6bc1e6e008bde5dfe45918", "variant": 0, "library": "libhttps"}, {"name": "crypto_sslc_rsa_get_info", "hash": "a2ecbecab9d5f445ee6bc1e6e008bde5dfe45918", "variant": 0, "library": "libhttps"}, {"name": "crypto_sslc_rsa_set_info", "hash": "a2ecbecab9d5f445ee6bc1e6e008bde5dfe45918", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 281018373}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 2357330040}, "child": {"skip": 56, "offset": 64, "next": [], "symbols": [{"name": "des_cbc_init_key", "hash": "579e63fa74c57860fb89ba7ffd6fe62979a29d26", "variant": 3441130311, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2894069876}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 12, "next": [], "symbols": [{"name": "null_init_key", "hash": "b304b2dfb2ffd457ce6c3de28687db116f8db10f", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 10493997}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 12593197}, "child": {"skip": 24, "offset": 32, "next": [], "symbols": [{"name": "null_cipher", "hash": "6ed708023b6f5d5c5f11b91100b32a24bd26e0c0", "variant": 896737453, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604110896}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 2894069848}, "child": {"skip": 12, "offset": 20, "next": [], "symbols": [{"name": "EVP_EncodeInit", "hash": "2484a3a4bddc14678de0ae39aca5876d109ecb0b", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604110878}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 2894069852}, "child": {"skip": 16, "offset": 24, "next": [], "symbols": [{"name": "EVP_DecodeInit", "hash": "4edd6bf559369d2b88f44448677e45bc67c417e7", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2426863616}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1007288320, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 384, "offset": 392, "next": [], "symbols": [{"name": "EVP_DecodeBlock", "hash": "28f25d32e203b7154f36256c486b1c1c7e92fdca", "variant": 784885873, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 666762768}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 4289987024}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4289921472}, "child": {"skip": 456, "offset": 468, "next": [], "symbols": [{"name": "ERR_get_state", "hash": "4b49ea9d7e89485fc48d6b03302ef0513fbd1c96", "variant": 2764962019, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 4289855856}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 4290707936}, "child": {"skip": 1184, "offset": 1196, "next": [], "symbols": [{"name": "tls1_change_cipher_state", "hash": "2b87c0e5d8fbbbdd0702b27366a8c5d9af8c217c", "variant": 346206405, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2357330048}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 339738627}, "child": {"skip": 20, "offset": 28, "next": [], "symbols": [{"name": "EVP_CIPHER_CTX_key_length", "hash": "cbcc45714d362d8d40a163b3eca9946d35c6e346", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 1007022029}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1007065274}, "child": {"skip": 72, "offset": 80, "next": [], "symbols": [{"name": "MD5_Init", "hash": "0976b0a167eac76cdd0f4558cc057a63a157392e", "variant": 1512453510, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2894397640}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 12, "next": [], "symbols": [{"name": "OP_CTX_set_function", "hash": "169a37cb23ef1250563d964f9583b3d70b6d34a2", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 818020480}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 272629767}, "child": {"skip)PS2SDB", 8192}, + std::string_view{R"PS2SDB(": 0, "offset": 8, "next": [{"match": {"value": 818020367}, "child": {"skip": 32, "offset": 44, "next": [], "symbols": [{"name": "op_finish", "hash": "c944466685cdf400325e12221efe35f5bca87cb0", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 339738627}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 8407085}, "child": {"skip": 152, "offset": 164, "next": [], "symbols": [{"name": "op_load", "hash": "b9deeac62b1b263a565bdb6acddb8ab0aad39b25", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 541184}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 818806912}, "child": {"skip": 248, "offset": 256, "next": [], "symbols": [{"name": "op_if", "hash": "8418162df139bedc18c31b2e7c06a71ce9bc0027", "variant": 3693827080, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 679608388}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 272629776}, "child": {"skip": 152, "offset": 160, "next": [], "symbols": [{"name": "EVP_PKEY_type", "hash": "9fed89a18ca2251fea36ddd27a3237052378224b", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 276824066}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 4141}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2357329932}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 20, "next": [], "symbols": [{"name": "EVP_PKEY_get_RSA", "hash": "46ff10165a660eed56535239fc4282ac64674bb1", "variant": 0, "library": "libhttps"}, {"name": "EVP_PKEY_get_DSA", "hash": "46ff10165a660eed56535239fc4282ac64674bb1", "variant": 0, "library": "libhttps"}, {"name": "EVP_PKEY_get_DH", "hash": "46ff10165a660eed56535239fc4282ac64674bb1", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2357329940}, "child": {"skip": 0, "offset": 12, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 20, "next": [], "symbols": [{"name": "RSA_flags", "hash": "97d6046e7899a38bcf88cfa01357d43c90522d1e", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 10491949}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 666763248}, "child": {"skip": 40, "offset": 48, "next": [], "symbols": [{"name": "PK_CTX_set", "hash": "78dd35d944cce7985d6aa716c806de10e158ac86", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 15220778}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 285212715}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 685899786}, "child": {"skip": 176, "offset": 188, "next": [], "symbols": [{"name": "rsa_padding_check_pkcs1_type_1", "hash": "ea4f090e8d8a380a188ebdac9975e69c6a9ca6c4", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 285212713}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 685899786}, "child": {"skip": 168, "offset": 180, "next": [], "symbols": [{"name": "rsa_padding_check_pkcs1_type_2", "hash": "aa72cfd66e8f035a7688023f0a29de669e8a4d22", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 1350565893}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 2902458368}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2357854212}, "child": {"skip": 236, "offset": 248, "next": [], "symbols": [{"name": "R_EITEMS_find_item", "hash": "befe0fa0be009d785e6c5947b4d735b091bd285d", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2357461212}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2357330016}, "child": {"skip": 32, "offset": 44, "next": [], "symbols": [{"name": "SSL_get_ciphers", "hash": "ec970acf53cdeb5698af03d61a7e77f3d5efeecd", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 75694084}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 679608347}, "child": {"skip": 96, "offset": 104, "next": [], "symbols": [{"name": "r_lock_get_name_unsafe", "hash": "9676b9f3f282701b2ce8834cd6d8d41fcdba5520", "variant": 1155841986, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 613089288}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 2894069760}, "child": {"skip": 140, "offset": 148, "next": [], "symbols": [{"name": "RC4_set_key", "hash": "2685b710a5d31b67215b589b3611f88cb12400e7", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2357395536}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 12, "next": [], "symbols": [{"name": "ssl2_pending", "hash": "eaaef79d0e2a0227dbcfc43ccaed03702028870d", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 278921232}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006830080}, "child": {"skip": 68, "offset": 76, "next": [], "symbols": [{"name": "ssl2_put_cipher_by_char", "hash": "5d9730a0e8cbadb81a8aabbb6e714a17461ed8a2", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 1686437886}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 746717233}, "child": {"skip": 104, "offset": 112, "next": [], "symbols": [{"name": "ssl_verify_alarm_type", "hash": "606422ccca94cc27a7bd60f053edb41e60aa61f8", "variant": 1693737393, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 746717285}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 272629793}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 136, "offset": 148, "next": [], "symbols": [{"name": "ssl3_alert_code", "hash": "069c844fc04de26537b762f8add29d740230530f", "variant": 201230608, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 272629815}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 1006764032, "relocation": {"type": "MIPS_HI16", "symbol": ""}}, "child": {"skip": 224, "offset": 236, "next": [], "symbols": [{"name": "tls1_alert_code", "hash": "bc286e592b8afc1225a60f37ba8f607e96f6f89d", "variant": 201230608, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 2357329976}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604176625}, "child": {"skip": 24, "offset": 32, "next": [], "symbols": [{"name": "ssl3_pending", "hash": "d7a629860552a41f8632ded583aaaf6b45e6c57b", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 278921229}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1006830336}, "child": {"skip": 56, "offset": 64, "next": [], "symbols": [{"name": "ssl3_put_cipher_by_char", "hash": "7c89f26408ba16e78f38f84f9d47519c9e1d9cc3", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2357329952}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 1413480451}, "child": {"skip": 56, "offset": 64, "next": [], "symbols": [{"name": "ssl3_renegotiate", "hash": "be6ea376f41cf92a594227e326070d9c3790f5e6", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2894463164}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 12, "next": [], "symbols": [{"name": "SSL_set_verify", "hash": "b0c736479837eb1a84d7a0ad0ee5b068d741b55f", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 3699572744}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 3701604360}, "child": {"skip": 36, "offset": 44, "next": [], "symbols": [{"name": "ssl_cipher_id_cmp", "hash": "0e1b497127d75c3f2494d749d3edc605e860b31c", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 276824075}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 4141}, "child": {"skip": 48, "offset": 56, "next": [], "symbols": [{"name": "ssl_get_ciphers_by_id", "hash": "4ef51841e019e21cd7a8ed07deed889dc07f8994", "variant": 0, "library": "libhttps"})PS2SDB", 8192}, + std::string_view{R"PS2SDB(]}}], "symbols": []}}, {"match": {"value": 2424701001}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 2424635467}, "child": {"skip": 36, "offset": 44, "next": [], "symbols": [{"name": "SSL_SESSION_hash", "hash": "d92a0df70e6abf2a8c7c09f4cb951290e10c6217", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2894463132}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 12, "next": [], "symbols": [{"name": "SSL_CTX_set_app_verify_cb", "hash": "54ed073a67fb7efef90c563263a38ff5c27ba69d", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2894463176}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 12, "next": [], "symbols": [{"name": "SSL_set_alert_info_cb", "hash": "24e2cf3d2913f3c8cdbc73f942e670b32bed6393", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2894463184}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 12, "next": [], "symbols": [{"name": "SSL_set_app_data_cb", "hash": "8b54033616beaf854a68f97a2a3d17673f01a76e", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2357330132}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 339738628}, "child": {"skip": 24, "offset": 32, "next": [], "symbols": [{"name": "ssl2_return_error", "hash": "12e7177691bc652bb8c87a8351a350f5cba69776", "variant": 650981576, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2894397628}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 65011720}, "child": {"skip": 4, "offset": 12, "next": [], "symbols": [{"name": "SHA1_Setup", "hash": "f1806d498fa06e97d42f92d842c2f66f1a5cc7fa", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 604110919}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 276955150}, "child": {"skip": 76, "offset": 84, "next": [], "symbols": [{"name": "SIO_fd_non_fatal_error", "hash": "41370805c5451ec8997929262abed8382e665612", "variant": 0, "library": "libhttps"}, {"name": "SIO_sock_non_fatal_error", "hash": "41370805c5451ec8997929262abed8382e665612", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2361524224}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 279052310}, "child": {"skip": 96, "offset": 104, "next": [], "symbols": [{"name": "ll_append_tail", "hash": "f8234485f1572be229ed39d63834db8a18a43510", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 1417674756}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 3699507208}, "child": {"skip": 72, "offset": 80, "next": [], "symbols": [{"name": "SSL_CIPHER_get_version", "hash": "b8d5cccce1bd8652899a69c7194dd6cfdd50050d", "variant": 3852410337, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 2359689416}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 281018393}, "child": {"skip": 108, "offset": 116, "next": [], "symbols": [{"name": "SSL_SESSION_list_remove", "hash": "28cf04adfbaff1a501d757a2f09e6eb7ec8b215f", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 12634157}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 417333317}, "child": {"skip": 284, "offset": 292, "next": [], "symbols": [{"name": "str_to_ints", "hash": "383146f66d0b229e23a30d97b23cd7e3a420a26b", "variant": 4134993981, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 276824072}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 4141}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 278921219}, "child": {"skip": 32, "offset": 44, "next": [], "symbols": [{"name": "X509_EXTENSION_set_critical", "hash": "3c22a9dac45dc2f14d632e2e9032193c08d5e9a1", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}, {"match": {"value": 0}, "child": {"skip": 0, "offset": 8, "next": [{"match": {"value": 2357460996}, "child": {"skip": 48, "offset": 60, "next": [], "symbols": [{"name": "X509_NAME_get_entry", "hash": "46377121bb8ce92faa6339a6cf0b0b6a33ef3ab0", "variant": 0, "library": "libhttps"}]}}], "symbols": []}}], "symbols": []}}, {"match": {"value": 683802701}, "child": {"skip": 0, "offset": 4, "next": [{"match": {"value": 604635212}, "child": {"skip": 360, "offset": 368, "next": [], "symbols": [{"name": "sceBASE64LineDecoder", "hash": "718bd477caab51c7552db31754cfe607c82d156e", "variant": 2222228853, "library": "base64"}]}}], "symbols": []}}], "symbols": []})PS2SDB", 4628}, + }; + +} + +#endif // PS2RECOMP_SCE_SYMBOL_DATABASE_DATA_H diff --git a/ps2xAnalyzer/include/ps2recomp/sce_symbol_scanner.h b/ps2xAnalyzer/include/ps2recomp/sce_symbol_scanner.h new file mode 100644 index 0000000..261fb68 --- /dev/null +++ b/ps2xAnalyzer/include/ps2recomp/sce_symbol_scanner.h @@ -0,0 +1,39 @@ +#ifndef PS2RECOMP_SCE_SYMBOL_SCANNER_H +#define PS2RECOMP_SCE_SYMBOL_SCANNER_H + +#include +#include +#include +#include + +namespace ps2recomp +{ + struct Section; + + struct SceSymbolMatch + { + uint32_t address = 0; + uint32_t size = 0; + std::string name; + std::string library; + std::string hash; + uint32_t variantHash = 0; + }; + + class SceSymbolScanner + { + public: + SceSymbolScanner(); + ~SceSymbolScanner(); + + bool loadDatabase(const std::string &databasePath); + std::vector scan(const std::vector
§ions) const; + const std::string &lastError() const; + + private: + class Impl; + std::unique_ptr m_impl; + }; +} + +#endif // PS2RECOMP_SCE_SYMBOL_SCANNER_H diff --git a/ps2xAnalyzer/include/ps2recomp/toml_generator.h b/ps2xAnalyzer/include/ps2recomp/toml_generator.h new file mode 100644 index 0000000..72d2b8c --- /dev/null +++ b/ps2xAnalyzer/include/ps2recomp/toml_generator.h @@ -0,0 +1,39 @@ +#ifndef PS2RECOMP_TOML_GENERATOR_H +#define PS2RECOMP_TOML_GENERATOR_H + +#include "ps2recomp/elf_analysis_context.h" +#include "ps2recomp/types.h" + +#include +#include +#include +#include +#include +#include + +namespace ps2recomp +{ + struct TomlGeneratorInput + { + const std::string &elfPath; + const ElfAnalysisContext &context; + const std::unordered_set &libFunctions; + const std::unordered_set &untrackedStubFunctions; + const std::unordered_map &mmioByInstructionAddress; + const std::vector &jumpTables; + const std::map &patches; + const std::map &patchReasons; + const std::map &performanceCriticalReasons; + }; + + class TomlGenerator + { + public: + static bool generate(const TomlGeneratorInput &input, const std::string &outputPath); + + private: + static std::string escapeBackslashes(const std::string &path); + }; +} + +#endif // PS2RECOMP_TOML_GENERATOR_H diff --git a/ps2xAnalyzer/src/analysis_passes.cpp b/ps2xAnalyzer/src/analysis_passes.cpp new file mode 100644 index 0000000..bf50f19 --- /dev/null +++ b/ps2xAnalyzer/src/analysis_passes.cpp @@ -0,0 +1,446 @@ +#include "ps2recomp/analysis_passes.h" + +#include "ps2recomp/instructions.h" + +#include +#include +#include + +namespace ps2recomp +{ + bool AnalysisPasses::hasHardwareIOSignal(const std::vector &instructions) + { + for (const auto &inst : instructions) + { + if (inst.opcode == OPCODE_LUI) + { + const uint32_t upperAddr = inst.immediate << 16; + if ((upperAddr >= 0x10000000 && upperAddr < 0x14000000) || // I/O area + (upperAddr >= 0x1F800000 && upperAddr < 0x1F900000)) // Scratchpad RAM + { + return true; + } + } + } + + return false; + } + + bool AnalysisPasses::hasLargeComplexMMISignal(const std::vector &instructions, + size_t largeInstructionThreshold) + { + if (instructions.size() <= largeInstructionThreshold) + { + return false; + } + + for (const auto &inst : instructions) + { + if (inst.isMMI && + inst.opcode == OPCODE_MMI && + (inst.function == MMI_MMI0 || inst.function == MMI_MMI1 || + inst.function == MMI_MMI2 || inst.function == MMI_MMI3)) + { + return true; + } + } + + return false; + } + + bool AnalysisPasses::hasSelfModifyingSignal(const std::vector &instructions, + const std::vector
§ions) + { + for (size_t i = 0; i < instructions.size(); i++) + { + const auto &inst = instructions[i]; + if (!(inst.opcode == OPCODE_SW || inst.opcode == OPCODE_SH || + inst.opcode == OPCODE_SB || inst.opcode == OPCODE_SQ)) + { + continue; + } + + uint32_t baseAddr = 0; + for (int j = static_cast(i) - 1; j >= 0 && j >= static_cast(i) - 5; j--) + { + const auto &prevInst = instructions[static_cast(j)]; + if (prevInst.opcode == OPCODE_LUI && prevInst.rt == inst.rs) + { + baseAddr = prevInst.immediate << 16; + break; + } + } + + if (baseAddr == 0) + { + continue; + } + + const uint32_t targetAddr = baseAddr + static_cast(inst.immediate); + for (const auto §ion : sections) + { + if (section.isCode && + targetAddr >= section.address && + targetAddr < section.address + section.size) + { + return true; + } + } + } + + return false; + } + + std::vector AnalysisPasses::detectJumpTables( + const std::vector &instructions, + const std::vector
§ions, + const std::function &readWord) + { + std::vector jumpTables; + + auto addSignedImm16 = [](uint32_t hiPart, uint16_t imm16) -> uint32_t + { + return hiPart + static_cast(static_cast(static_cast(imm16))); + }; + + auto orUnsignedImm16 = [](uint32_t hiPart, uint16_t imm16) -> uint32_t + { + return hiPart | static_cast(imm16); + }; + + auto looksLikeCodeTarget = [§ions](uint32_t addr) -> bool + { + if (addr == 0) + { + return false; + } + + if (sections.empty()) + { + return true; + } + + for (const auto §ion : sections) + { + if (!section.isCode) + { + continue; + } + + const uint32_t sectionEnd = section.address + section.size; + if (addr >= section.address && addr < sectionEnd) + { + return true; + } + } + + return false; + }; + + auto readJumpEntryCandidate = [&](uint32_t entryAddr, bool isLoadDouble, uint32_t &outTarget) -> bool + { + outTarget = 0; + + uint32_t w0 = 0; + if (!readWord(entryAddr, w0)) + { + return false; + } + + if (!isLoadDouble) + { + outTarget = w0; + return true; + } + + uint32_t w1 = 0; + if (!readWord(entryAddr + 4u, w1)) + { + outTarget = w0; + return true; + } + + const bool w0Looks = looksLikeCodeTarget(w0); + const bool w1Looks = looksLikeCodeTarget(w1); + + if (w0Looks && !w1Looks) + { + outTarget = w0; + return true; + } + if (w1Looks && !w0Looks) + { + outTarget = w1; + return true; + } + outTarget = w0; + return true; + }; + + auto tryBuildTable = [&](uint32_t baseAddr, uint32_t baseReg, uint32_t numEntries, uint32_t strideBytes, bool isLoadDouble) -> std::optional + { + JumpTable jumpTable; + jumpTable.address = baseAddr; + jumpTable.baseRegister = baseReg; + + uint32_t validCodeTargets = 0; + uint32_t totalRead = 0; + + for (uint32_t e = 0; e < numEntries; e++) + { + const uint32_t entryAddr = baseAddr + (e * strideBytes); + + uint32_t targetAddr = 0; + if (!readJumpEntryCandidate(entryAddr, isLoadDouble, targetAddr)) + { + continue; + } + + totalRead++; + + if (looksLikeCodeTarget(targetAddr)) + { + validCodeTargets++; + } + + JumpTableEntry entry; + entry.index = e; + entry.target = targetAddr; + jumpTable.entries.push_back(entry); + } + + if (jumpTable.entries.empty()) + { + return std::nullopt; + } + + bool ok = false; + if (sections.empty()) + { + ok = (totalRead >= 2); + } + else + { + ok = (validCodeTargets >= 2) && + (totalRead >= 2) && + (validCodeTargets * 2 >= totalRead); + } + + if (!ok) + { + return std::nullopt; + } + + return jumpTable; + }; + + for (size_t i = 0; i < instructions.size(); i++) + { + const auto &inst = instructions[i]; + + if (inst.opcode != OPCODE_SLTIU || i + 2 >= instructions.size()) + { + continue; + } + + const auto &nextInst = instructions[i + 1]; + if (nextInst.opcode != OPCODE_BNE && nextInst.opcode != OPCODE_BEQ) + { + continue; + } + + for (size_t j = i + 2; j < std::min(i + 10, instructions.size()); j++) + { + const auto &loadInst = instructions[j]; + const bool isLoadWord = (loadInst.opcode == OPCODE_LW); + const bool isLoadDouble = (loadInst.opcode == OPCODE_LD); + + if ((!isLoadWord && !isLoadDouble) || j + 1 >= instructions.size()) + { + continue; + } + + const auto &jumpInst = instructions[j + 1]; + if (jumpInst.opcode != OPCODE_SPECIAL || + jumpInst.function != SPECIAL_JR || + jumpInst.rs != loadInst.rt) + { + continue; + } + + const uint32_t numEntries = inst.immediate; + if (numEntries == 0 || numEntries >= 1000) + { + break; + } + + uint32_t baseAddr = 0; + for (int k = static_cast(j) - 1; k >= static_cast(i); k--) + { + const auto &addrInst = instructions[static_cast(k)]; + if (addrInst.opcode != OPCODE_LUI) + { + continue; + } + + const uint32_t hiPart = (addrInst.immediate << 16); + + if (static_cast(k + 1) < instructions.size()) + { + const auto &offsetInst = instructions[static_cast(k + 1)]; + const bool isAddiuOrOri = (offsetInst.opcode == OPCODE_ADDIU || offsetInst.opcode == OPCODE_ORI); + + if (isAddiuOrOri && + offsetInst.rs == addrInst.rt && + offsetInst.rt == loadInst.rs) + { + if (offsetInst.opcode == OPCODE_ADDIU) + { + baseAddr = addSignedImm16(hiPart, offsetInst.immediate); + } + else + { + baseAddr = orUnsignedImm16(hiPart, offsetInst.immediate); + } + break; + } + } + + if (addrInst.rt == loadInst.rs) + { + baseAddr = addSignedImm16(hiPart, loadInst.immediate); + break; + } + } + + if (baseAddr == 0) + { + break; + } + + const uint32_t preferredStride = isLoadDouble ? 8u : 4u; + + std::optional table = tryBuildTable(baseAddr, loadInst.rs, numEntries, preferredStride, isLoadDouble); + if (!table && isLoadDouble) + { + table = tryBuildTable(baseAddr, loadInst.rs, numEntries, 4u, isLoadDouble); + } + + if (table) + { + jumpTables.push_back(std::move(*table)); + } + + break; + } + } + + return jumpTables; + } + + std::unordered_set AnalysisPasses::findRecursiveFunctions( + const std::unordered_map> &callGraph) + { + std::unordered_set nodes; + for (const auto &[caller, callees] : callGraph) + { + nodes.insert(caller); + for (const auto &callee : callees) + { + nodes.insert(callee); + } + } + + std::unordered_map index; + std::unordered_map lowlink; + std::unordered_set onStack; + std::vector stack; + + index.reserve(nodes.size()); + lowlink.reserve(nodes.size()); + onStack.reserve(nodes.size()); + stack.reserve(nodes.size()); + + int currentIndex = 0; + std::vector> sccs; + sccs.reserve(nodes.size()); + + std::function strongconnect; + strongconnect = [&](const std::string &v) + { + index[v] = currentIndex; + lowlink[v] = currentIndex; + currentIndex++; + + stack.push_back(v); + onStack.insert(v); + + auto it = callGraph.find(v); + if (it != callGraph.end()) + { + for (const auto &w : it->second) + { + if (!index.contains(w)) + { + strongconnect(w); + lowlink[v] = std::min(lowlink[v], lowlink[w]); + } + else if (onStack.contains(w)) + { + lowlink[v] = std::min(lowlink[v], index[w]); + } + } + } + + if (lowlink[v] == index[v]) + { + std::vector scc; + while (!stack.empty()) + { + std::string w = stack.back(); + stack.pop_back(); + onStack.erase(w); + scc.push_back(w); + if (w == v) + { + break; + } + } + + sccs.push_back(std::move(scc)); + } + }; + + for (const auto &name : nodes) + { + if (!index.contains(name)) + { + strongconnect(name); + } + } + + std::unordered_set recursive; + for (const auto &scc : sccs) + { + if (scc.size() > 1) + { + recursive.insert(scc.begin(), scc.end()); + continue; + } + + const std::string &name = scc[0]; + auto it = callGraph.find(name); + if (it == callGraph.end()) + { + continue; + } + + if (std::find(it->second.begin(), it->second.end(), name) != it->second.end()) + { + recursive.insert(name); + } + } + + return recursive; + } +} diff --git a/ps2xAnalyzer/src/analyzer_main.cpp b/ps2xAnalyzer/src/analyzer_main.cpp index 2c270c8..feb1630 100644 --- a/ps2xAnalyzer/src/analyzer_main.cpp +++ b/ps2xAnalyzer/src/analyzer_main.cpp @@ -6,9 +6,11 @@ void printUsage() { std::cout << "PS2 ELF Analyzer\n"; std::cout << "A tool to analyze PS2 ELF files and generate TOML configuration for PS2Recomp\n\n"; - std::cout << "Usage: ps2_analyzer \n"; + std::cout << "Usage: ps2_analyzer [sce_symbol_db_dir]\n"; std::cout << " input_elf Path to the PS2 ELF file\n"; std::cout << " output_toml Path to output TOML configuration file\n"; + std::cout << " sce_symbol_db_dir Optional override directory containing symbols.json and tree.json\n"; + std::cout << " If omitted, the embedded SCE symbol database is used\n"; } int main(int argc, char *argv[]) @@ -21,15 +23,28 @@ int main(int argc, char *argv[]) std::string elfPath = argv[1]; std::string tomlPath = argv[2]; + std::string sceSymbolDbPath = argc >= 4 ? argv[3] : ""; std::cout << "PS2 ELF Analyzer\n"; std::cout << "----------------\n"; std::cout << "Input ELF: " << elfPath << "\n"; std::cout << "Output TOML: " << tomlPath << "\n\n"; + if (!sceSymbolDbPath.empty()) + { + std::cout << "SCE symbol DB: " << sceSymbolDbPath << "\n\n"; + } + else + { + std::cout << "SCE symbol DB: embedded\n\n"; + } try { ps2recomp::ElfAnalyzer analyzer(elfPath); + if (!sceSymbolDbPath.empty()) + { + analyzer.setSceSymbolDatabasePath(sceSymbolDbPath); + } if (!analyzer.analyze()) { @@ -55,4 +70,4 @@ int main(int argc, char *argv[]) std::cerr << "Error: " << e.what() << "\n"; return 1; } -} \ No newline at end of file +} diff --git a/ps2xAnalyzer/src/elf_analysis_context.cpp b/ps2xAnalyzer/src/elf_analysis_context.cpp new file mode 100644 index 0000000..d00e0bf --- /dev/null +++ b/ps2xAnalyzer/src/elf_analysis_context.cpp @@ -0,0 +1,83 @@ +#include "ps2recomp/elf_analysis_context.h" + +#include + +namespace ps2recomp +{ + void ElfAnalysisContext::clear() + { + functions.clear(); + symbols.clear(); + sections.clear(); + relocations.clear(); + functionIndexByStart.clear(); + instructionCache.clear(); + } + + void ElfAnalysisContext::buildFunctionIndex() + { + functionIndexByStart.clear(); + functionIndexByStart.reserve(functions.size()); + for (size_t index = 0; index < functions.size(); ++index) + { + functionIndexByStart[functions[index].start] = index; + } + } + + void ElfAnalysisContext::clearInstructionCache() + { + instructionCache.clear(); + for (auto &func : functions) + { + func.instructions.clear(); + } + } + + Function *ElfAnalysisContext::findFunction(uint32_t start) + { + const auto it = functionIndexByStart.find(start); + if (it == functionIndexByStart.end()) + { + return nullptr; + } + return &functions[it->second]; + } + + const Function *ElfAnalysisContext::findFunction(uint32_t start) const + { + const auto it = functionIndexByStart.find(start); + if (it == functionIndexByStart.end()) + { + return nullptr; + } + return &functions[it->second]; + } + + Function *ElfAnalysisContext::findFunctionContaining(uint32_t address) + { + auto it = std::find_if(functions.begin(), functions.end(), + [address](const Function &function) + { + return function.start <= address && address < function.end; + }); + if (it == functions.end()) + { + return nullptr; + } + return &(*it); + } + + const Function *ElfAnalysisContext::findFunctionContaining(uint32_t address) const + { + auto it = std::find_if(functions.begin(), functions.end(), + [address](const Function &function) + { + return function.start <= address && address < function.end; + }); + if (it == functions.end()) + { + return nullptr; + } + return &(*it); + } +} diff --git a/ps2xAnalyzer/src/elf_analyzer.cpp b/ps2xAnalyzer/src/elf_analyzer.cpp index 1b7cd84..b13ce20 100644 --- a/ps2xAnalyzer/src/elf_analyzer.cpp +++ b/ps2xAnalyzer/src/elf_analyzer.cpp @@ -1,31 +1,21 @@ #include "ps2recomp/elf_analyzer.h" +#include "ps2recomp/analysis_passes.h" #include "ps2recomp/elf_parser.h" #include "ps2recomp/r5900_decoder.h" +#include "ps2recomp/sce_symbol_scanner.h" +#include "ps2recomp/toml_generator.h" #include "ps2recomp/types.h" #include #include #include -#include -#include -#include -#include #include #include #include #include -#include -#include -#include - -namespace fs = std::filesystem; +#include namespace ps2recomp { - static bool hasPs2ApiPrefix(const std::string &name); - static bool hasReliableSymbolName(const std::string &name); - static bool isDoNotSkipOrStub(const std::string &name); - static bool isKnownLocalHelperName(const std::string &name); - static bool matchesKernelRuntimeName(const std::string &name); static uint32_t decodeAbsoluteJumpTarget(uint32_t instructionAddress, uint32_t targetField); static bool tryReadWord(const ElfParser *parser, uint32_t address, uint32_t &outWord); @@ -34,322 +24,193 @@ namespace ps2recomp { m_elfParser = std::make_unique(elfPath); m_decoder = std::make_unique(); - - initializeLibraryFunctions(); + m_classifier.setSceSdkFunctionNames(&m_sceSdkFunctionNames); } ElfAnalyzer::~ElfAnalyzer() = default; + void ElfAnalyzer::setSceSymbolDatabasePath(const std::string &databasePath) + { + m_sceSymbolDatabasePath = databasePath; + } + bool ElfAnalyzer::analyze() { std::cout << "Analyzing ELF file: " << m_elfPath << std::endl; + if (!loadElf()) + { + return false; + } + + discoverSceSdkSymbols(); + buildFunctionIndex(); + + analyzeEntryPoint(); + analyzeLibraryFunctions(); + decodeAllFunctionsOnce(); + classifyFunctions(); + + runDataUsagePass(); + runPatchDetectionPass(); + runControlFlowPass(); + runJumpTablePass(); + runPerformancePass(); + identifyRecursiveFunctions(); + analyzeRegisterUsage(); + runSignaturePass(); + + optimizePatches(); + printAnalysisSummary(); + + return true; + } + + bool ElfAnalyzer::loadElf() + { if (!m_elfParser->parse()) { std::cerr << "Failed to parse ELF file" << std::endl; return false; } - m_functions = m_elfParser->extractFunctions(); - m_symbols = m_elfParser->extractSymbols(); - m_sections = m_elfParser->getSections(); - m_relocations = m_elfParser->getRelocations(); + m_context.clear(); + m_libFunctions.clear(); + m_untrackedStubFunctions.clear(); + m_forceRecompileStarts.clear(); + m_sceSdkFunctionNames.clear(); + m_functionDataUsage.clear(); + m_commonDataAccess.clear(); + m_patches.clear(); + m_patchReasons.clear(); + m_functionCFGs.clear(); + m_jumpTables.clear(); + m_functionCalls.clear(); + m_performanceCriticalReasons.clear(); + m_mmioByInstructionAddress.clear(); - std::cout << "Extracted " << m_functions.size() << " functions" << std::endl; - std::cout << "Extracted " << m_symbols.size() << " symbols" << std::endl; - std::cout << "Extracted " << m_sections.size() << " sections" << std::endl; - std::cout << "Extracted " << m_relocations.size() << " relocations" << std::endl; + m_context.functions = m_elfParser->extractFunctions(); + m_context.symbols = m_elfParser->extractSymbols(); + m_context.sections = m_elfParser->getSections(); + m_context.relocations = m_elfParser->getRelocations(); + m_context.buildFunctionIndex(); - analyzeEntryPoint(); - analyzeDataUsage(); - identifyPotentialPatches(); - analyzeControlFlow(); - detectJumpTables(); - analyzePerformanceCriticalPaths(); - identifyRecursiveFunctions(); - analyzeRegisterUsage(); - analyzeFunctionSignatures(); - analyzeLibraryFunctions(); - optimizePatches(); - - for (auto &func : m_functions) - { - categorizeFunction(func); - - if (!m_skipFunctions.contains(func.name) && - !m_libFunctions.contains(func.name)) - { - func.instructions = decodeFunction(func); - } - } - - std::cout << "Analysis completed" << std::endl; - std::cout << "- " << m_libFunctions.size() << " library functions to stub" << std::endl; - std::cout << "- " << m_skipFunctions.size() << " functions to skip" << std::endl; - std::cout << "- " << m_patches.size() << " potential patches identified" << std::endl; - std::cout << "- " << m_jumpTables.size() << " jump tables detected" << std::endl; + std::cout << "Extracted " << m_context.functions.size() << " functions" << std::endl; + std::cout << "Extracted " << m_context.symbols.size() << " symbols" << std::endl; + std::cout << "Extracted " << m_context.sections.size() << " sections" << std::endl; + std::cout << "Extracted " << m_context.relocations.size() << " relocations" << std::endl; return true; } bool ElfAnalyzer::generateToml(const std::string &outputPath) { - std::ofstream file(outputPath); - if (!file) - { - std::cerr << "Failed to open output file: " << outputPath << std::endl; - return false; - } + const TomlGeneratorInput input{ + m_elfPath, + m_context, + m_libFunctions, + m_untrackedStubFunctions, + m_mmioByInstructionAddress, + m_jumpTables, + m_patches, + m_patchReasons, + m_performanceCriticalReasons}; - fs::path elfPathObj(m_elfPath); - std::string elfFileName = elfPathObj.filename().string(); - - fs::path outputPathObj(outputPath); - fs::path outputDir = outputPathObj.parent_path(); - if (outputDir.empty()) - { - outputDir = "."; - } - - const fs::path generatedOutputDir = outputDir / "output"; - std::string outputDirStr = generatedOutputDir.generic_string() + "/"; - - if (!fs::exists(generatedOutputDir)) - { - fs::create_directories(generatedOutputDir); - } - - file << "# PS2Recomp configuration for: " << elfFileName << "\n"; - file << "# Generated by ElfAnalyzer\n\n"; - - file << "[general]\n"; - file << "# Path to input ELF file\n"; - file << "input = \"" << escapeBackslashes(m_elfPath) << "\"\n\n"; - - file << "# Path to Ghidra exported function map (optional CSV)\n"; - file << "ghidra_output = \"\"\n\n"; - - file << "# Path to output directory\n"; - file << "output = \"" << escapeBackslashes(outputDirStr) << "\"\n\n"; - - file << "# Single file output mode (recommended for large games)\n"; - file << "single_file_output = false\n\n"; - - file << "# Patch policy (instruction-driven handling is preferred for syscalls)\n"; - file << "patch_syscalls = false\n"; - file << "patch_cop0 = true\n"; - file << "patch_cache = true\n\n"; - - std::unordered_map functionNameCounts; - functionNameCounts.reserve(m_functions.size()); - for (const auto &func : m_functions) - { - if (!func.name.empty()) - { - functionNameCounts[func.name]++; - } - } - - auto makeSelector = [&](const std::string &name, uint32_t start) -> std::string - { - auto it = functionNameCounts.find(name); - if (it == functionNameCounts.end() || it->second <= 1) - { - return name; - } - - std::stringstream selector; - selector << name << "@0x" - << std::hex << std::uppercase << std::setw(8) << std::setfill('0') - << start; - return selector.str(); - }; - - auto collectFunctionSelectors = - [&](const std::unordered_set &nameSet) -> std::vector - { - std::vector orderedFunctions; - orderedFunctions.reserve(m_functions.size()); - for (const auto &func : m_functions) - { - orderedFunctions.push_back(&func); - } - - std::sort(orderedFunctions.begin(), orderedFunctions.end(), - [](const Function *a, const Function *b) - { return a->start < b->start; }); - - std::vector entries; - std::unordered_set seenEntries; - std::unordered_set coveredNames; - - for (const Function *func : orderedFunctions) - { - if (!nameSet.contains(func->name)) - { - continue; - } - - coveredNames.insert(func->name); - const std::string entry = makeSelector(func->name, func->start); - if (seenEntries.insert(entry).second) - { - entries.push_back(entry); - } - } - - std::vector leftovers; - leftovers.reserve(nameSet.size()); - for (const auto &name : nameSet) - { - if (!coveredNames.contains(name) && seenEntries.insert(name).second) - { - leftovers.push_back(name); - } - } - std::sort(leftovers.begin(), leftovers.end()); - entries.insert(entries.end(), leftovers.begin(), leftovers.end()); - - return entries; - }; - - const std::vector stubEntries = collectFunctionSelectors(m_libFunctions); - const std::vector skipEntries = collectFunctionSelectors(m_skipFunctions); - - file << "# Functions to stub (these will generate empty implementations)\n"; - file << "stubs = [\n"; - for (const auto &func : stubEntries) - { - file << " \"" << func << "\",\n"; - } - file << "]\n\n"; - - file << "# Functions to skip (these will not be recompiled)\n"; - file << "skip = [\n"; - for (const auto &func : skipEntries) - { - file << " \"" << func << "\",\n"; - } - file << "]\n\n"; - - if (!m_mmioByInstructionAddress.empty()) - { - file << "# Detected MMIO accesses\n"; - file << "[mmio]\n"; - for (const auto &[instAddr, mmioAddr] : m_mmioByInstructionAddress) - { - file << "\"0x" << std::hex << instAddr << "\" = \"0x" << mmioAddr << "\"\n" - << std::dec; - } - file << "\n"; - } - - if (!m_jumpTables.empty()) - { - file << "# Jump tables detected in the program\n"; - file << "[jump_tables]\n"; - - for (const auto &jt : m_jumpTables) - { - file << "[[jump_tables.table]]\n"; - file << "address = \"0x" << std::hex << jt.address << "\"\n" - << std::dec; - file << "entries = [\n"; - - for (const auto &[index, target] : jt.entries) - { - file << " { index = " << index << ", target = \"0x" - << std::hex << target << "\" },\n" - << std::dec; - } - - file << "]\n\n"; - } - } - - if (!m_patches.empty()) - { - file << "# Patches to apply during recompilation\n"; - file << "[patches]\n"; - file << "# Individual instruction patches\n"; - file << "instructions = [\n"; - for (const auto &[address, value] : m_patches) - { - file << " { address = \"0x" << std::hex << address << "\", value = \"0x" - << std::hex << value << "\" }, # " << m_patchReasons[address] << "\n"; - } - file << "]\n\n"; - } - - file << "# Performance critical functions (may need manual optimization)\n"; - file << "[performance]\n"; - file << "critical = [\n"; - for (const auto &func : m_functions) - { - if (hasMMIInstructions(func) || hasVUInstructions(func)) - { - file << " \"" << func.name << "\", # Uses SIMD instructions\n"; - } - else if (isLoopHeavyFunction(func)) - { - file << " \"" << func.name << "\", # Contains heavy loops\n"; - } - } - file << "]\n\n"; - - std::cout << "Generated TOML configuration: " << outputPath << std::endl; - return true; + return TomlGenerator::generate(input, outputPath); } - void ElfAnalyzer::initializeLibraryFunctions() + void ElfAnalyzer::discoverSceSdkSymbols() { - // Standard C library functions - const std::vector stdLibFuncs = { - // I/O functions - "printf", "sprintf", "snprintf", "fprintf", "vprintf", "vfprintf", "vsprintf", "vsnprintf", - "puts", "putchar", "getchar", "gets", "fgets", "fputs", "scanf", "fscanf", "sscanf", - "sprint", "sbprintf", + std::string databasePath = m_sceSymbolDatabasePath; + if (databasePath.empty()) + { + if (const char *envPath = std::getenv("PS2RECOMP_SCE_SYMBOL_DB")) + { + databasePath = envPath; + } + } - // Memory management - "malloc", "free", "calloc", "realloc", "aligned_alloc", "posix_memalign", + SceSymbolScanner scanner; + if (!scanner.loadDatabase(databasePath)) + { + const std::string sourceDescription = databasePath.empty() + ? std::string("embedded database") + : databasePath; + std::cerr << "Failed to load SCE symbol database from " << sourceDescription + << ": " << scanner.lastError() << std::endl; + return; + } - // Memory manipulation - "memcpy", "memset", "memmove", "memcmp", "memchr", "bcopy", "bzero", + const std::string sourceDescription = databasePath.empty() + ? std::string("embedded database") + : databasePath; - // String manipulation - "strcpy", "strncpy", "strcat", "strncat", "strcmp", "strncmp", "strlen", "strstr", - "strchr", "strrchr", "strdup", "strtok", "strtok_r", "strerror", + const std::vector matches = scanner.scan(m_context.sections); + if (matches.empty()) + { + std::cout << "No SCE SDK symbols discovered from " << sourceDescription << std::endl; + return; + } - // File operations - "fopen", "fclose", "fread", "fwrite", "fseek", "ftell", "rewind", "fflush", - "fgetc", "fgets", "feof", "ferror", "clearerr", "fileno", "tmpfile", "remove", "rename", - "open", "close", "read", "write", "lseek", "stat", "fstat", + size_t renamedFunctions = 0; + size_t addedFunctions = 0; - // Type conversion - "atoi", "atol", "atoll", "atof", "strtol", "strtoul", "strtoll", "strtoull", "strtod", "strtof", + for (const auto &match : matches) + { + if (match.size > std::numeric_limits::max() - match.address) + { + continue; + } - // Math functions - "rand", "srand", "random", "srandom", "drand48", "sqrt", "pow", "exp", "log", "log10", - "sin", "cos", "tan", "asin", "acos", "atan", "atan2", "sinh", "cosh", "tanh", - "floor", "ceil", "fabs", "fmod", "frexp", "ldexp", "modf", + m_sceSdkFunctionNames.insert(match.name); - // Time functions - "time", "ctime", "clock", "difftime", "mktime", "localtime", "gmtime", "asctime", "strftime", - "gettimeofday", "nanosleep", "usleep", + Symbol symbol; + symbol.name = match.name; + symbol.address = match.address; + symbol.size = match.size; + symbol.isFunction = true; + symbol.isImported = false; + symbol.isExported = true; + m_context.symbols.push_back(std::move(symbol)); - // Process control - "abort", "exit", "_exit", "atexit", "system", "getpid", "fork", "waitpid", + const uint32_t discoveredEnd = match.address + match.size; + if (Function *func = m_context.findFunction(match.address)) + { + if (func->name != match.name) + { + func->name = match.name; + renamedFunctions++; + } - // Misc - "qsort", "bsearch", "abs", "div", "labs", "ldiv", "llabs", "lldiv", - "isalnum", "isalpha", "isdigit", "islower", "isupper", "isspace", "tolower", "toupper", - "setjmp", "longjmp", "getenv", "setenv", "unsetenv", - "perror", "fputc", "getc", "ungetc", "freopen", "setvbuf", "setbuf", + if (func->end < discoveredEnd) + { + func->end = discoveredEnd; + } + continue; + } - // Extra string helpers - "strnlen", "strspn", "strcspn", "strcasecmp", "strncasecmp"}; + Function function; + function.name = match.name; + function.start = match.address; + function.end = discoveredEnd; + m_context.functions.push_back(std::move(function)); + m_context.functionIndexByStart[match.address] = m_context.functions.size() - 1; + addedFunctions++; + } - m_knownLibNames.insert(stdLibFuncs.begin(), stdLibFuncs.end()); + std::sort(m_context.functions.begin(), m_context.functions.end(), + [](const Function &a, const Function &b) + { + return a.start < b.start; + }); + + buildFunctionIndex(); + clearDecodedInstructionCache(); + + std::cout << "Discovered " << matches.size() << " SCE SDK symbol match(es) from " + << sourceDescription << std::endl; + std::cout << "- renamed " << renamedFunctions << " existing function(s)" << std::endl; + std::cout << "- added " << addedFunctions << " function(s)" << std::endl; } int ElfAnalyzer::findEntryFunctionIndexForHeuristics(const std::vector &functions, uint32_t entryAddress) @@ -389,18 +250,17 @@ namespace ps2recomp void ElfAnalyzer::analyzeEntryPoint() { const uint32_t entryAddress = m_elfParser->getEntryPoint(); - const int entryIndex = findEntryFunctionIndexForHeuristics(m_functions, entryAddress); + const int entryIndex = findEntryFunctionIndexForHeuristics(m_context.functions, entryAddress); if (entryIndex >= 0) { - const Function &entryFunction = m_functions[static_cast(entryIndex)]; + const Function &entryFunction = m_context.functions[static_cast(entryIndex)]; std::cout << "Found entry point from ELF header: 0x" << std::hex << entryAddress << " in function " << entryFunction.name << " (starts at 0x" << entryFunction.start << ")" << std::dec << std::endl; m_forceRecompileStarts.insert(entryFunction.start); - m_skipFunctions.erase(entryFunction.name); - std::vector instructions = decodeFunction(entryFunction); + const auto &instructions = getDecodedInstructions(entryFunction); for (const auto &inst : instructions) { @@ -408,21 +268,10 @@ namespace ps2recomp { uint32_t target = decodeAbsoluteJumpTarget(inst.address, inst.target); - for (const auto &func : m_functions) + if (const Function *func = m_context.findFunction(target)) { - if (func.start == target) - { - std::cout << "Found entry call to: " << func.name << " at 0x" - << std::hex << inst.address << std::dec << std::endl; - - if (hasReliableSymbolName(func.name) && - !isDoNotSkipOrStub(func.name) && - isSystemFunction(func.name)) - { - m_skipFunctions.insert(func.name); - } - break; - } + std::cout << "Found entry call to: " << func->name << " at 0x" + << std::hex << inst.address << std::dec << std::endl; } } } @@ -432,64 +281,65 @@ namespace ps2recomp std::cout << "Entry point 0x" << std::hex << entryAddress << " not mapped to an extracted function" << std::dec << std::endl; - const int fallbackIndex = findFallbackEntryFunctionIndexForHeuristics(m_functions); + const int fallbackIndex = findFallbackEntryFunctionIndexForHeuristics(m_context.functions); if (fallbackIndex >= 0) { - const Function &fallbackEntry = m_functions[static_cast(fallbackIndex)]; + const Function &fallbackEntry = m_context.functions[static_cast(fallbackIndex)]; std::cout << "Found potential entry point by address: " << fallbackEntry.name << " at 0x" << std::hex << fallbackEntry.start << std::dec << std::endl; m_forceRecompileStarts.insert(fallbackEntry.start); - m_skipFunctions.erase(fallbackEntry.name); } } } void ElfAnalyzer::analyzeLibraryFunctions() { - std::unordered_set forcedRecompileNames; - forcedRecompileNames.reserve(m_forceRecompileStarts.size()); - for (const auto &func : m_functions) - { - if (m_forceRecompileStarts.contains(func.start)) - { - forcedRecompileNames.insert(func.name); - } - } - - for (const auto &symbol : m_symbols) + for (const auto &symbol : m_context.symbols) { if (symbol.isFunction) { - if (!hasReliableSymbolName(symbol.name)) + if (!FunctionClassifier::isReliableSymbolName(symbol.name)) { continue; } if (isLibraryFunction(symbol.name)) { - m_libFunctions.insert(symbol.name); - } - else if (shouldSkipSystemSymbolForHeuristics(symbol.name, forcedRecompileNames)) - { - m_skipFunctions.insert(symbol.name); + if (!m_forceRecompileStarts.contains(symbol.address)) + { + if (FunctionClassifier::hasRuntimeHandler(symbol.name)) + { + m_libFunctions.insert(symbol.name); + } + else + { + m_untrackedStubFunctions.insert(symbol.name); + } + } } } } - for (const auto &func : m_functions) + for (const auto &func : m_context.functions) { - if (!hasReliableSymbolName(func.name)) + if (!FunctionClassifier::isReliableSymbolName(func.name)) { continue; } if (isLibraryFunction(func.name)) { - m_libFunctions.insert(func.name); - } - else if (shouldSkipSystemSymbolForHeuristics(func.name, forcedRecompileNames)) - { - m_skipFunctions.insert(func.name); + if (!m_forceRecompileStarts.contains(func.start)) + { + if (FunctionClassifier::hasRuntimeHandler(func.name)) + { + m_libFunctions.insert(func.name); + } + else + { + m_untrackedStubFunctions.insert(func.name); + } + } } } } @@ -500,15 +350,14 @@ namespace ps2recomp std::map> memoryAccessMap; - for (const auto &func : m_functions) + for (const auto &func : m_context.functions) { - if (m_skipFunctions.contains(func.name) || - m_libFunctions.contains(func.name)) + if (m_libFunctions.contains(func.name)) { continue; } - std::vector instructions = decodeFunction(func); + const auto &instructions = getDecodedInstructions(func); for (const auto &inst : instructions) { @@ -525,7 +374,7 @@ namespace ps2recomp uint32_t gpValue = 0; // Try to find GP value in ELF sections - for (const auto §ion : m_sections) + for (const auto §ion : m_context.sections) { if (section.name == ".got" || section.name == ".data" || section.name == ".sdata" || section.name == ".sbss") @@ -540,11 +389,11 @@ namespace ps2recomp uint32_t targetAddr = gpValue + offset; memoryAccessMap[targetAddr].insert(func.name); - auto symIt = std::find_if(m_symbols.begin(), m_symbols.end(), + auto symIt = std::find_if(m_context.symbols.begin(), m_context.symbols.end(), [targetAddr](const Symbol &s) { return !s.isFunction && s.address == targetAddr; }); - if (symIt != m_symbols.end()) + if (symIt != m_context.symbols.end()) { std::cout << "Function " << func.name << " accesses data symbol " << symIt->name << " at 0x" << std::hex << targetAddr @@ -555,7 +404,7 @@ namespace ps2recomp else { // Try to find the symbol it belongs to, even if not exact match - for (const auto &sym : m_symbols) + for (const auto &sym : m_context.symbols) { if (!sym.isFunction && targetAddr >= sym.address && targetAddr < sym.address + sym.size) @@ -606,16 +455,16 @@ namespace ps2recomp << " -> " << targetAddr << std::dec << std::endl; } - for (const auto §ion : m_sections) + for (const auto §ion : m_context.sections) { if (targetAddr >= section.address && targetAddr < section.address + section.size) { - auto symIt = std::find_if(m_symbols.begin(), m_symbols.end(), + auto symIt = std::find_if(m_context.symbols.begin(), m_context.symbols.end(), [targetAddr](const Symbol &s) { return !s.isFunction && s.address <= targetAddr && s.address + s.size > targetAddr; }); - if (symIt != m_symbols.end()) + if (symIt != m_context.symbols.end()) { std::cout << "Function " << func.name << " directly accesses " << (inst.opcode == OPCODE_LW ? "reads from" : "writes to") @@ -640,11 +489,11 @@ namespace ps2recomp { std::string dataName = formatAddress(addr); - auto symIt = std::find_if(m_symbols.begin(), m_symbols.end(), + auto symIt = std::find_if(m_context.symbols.begin(), m_context.symbols.end(), [addr](const Symbol &s) { return !s.isFunction && s.address == addr; }); - if (symIt != m_symbols.end()) + if (symIt != m_context.symbols.end()) { dataName = symIt->name; } @@ -656,15 +505,14 @@ namespace ps2recomp } } - for (const auto &func : m_functions) + for (const auto &func : m_context.functions) { - if (m_skipFunctions.contains(func.name) || - m_libFunctions.contains(func.name)) + if (m_libFunctions.contains(func.name)) { continue; } - std::vector instructions = decodeFunction(func); + const auto &instructions = getDecodedInstructions(func); for (size_t i = 0; i < instructions.size(); i++) { @@ -694,14 +542,9 @@ namespace ps2recomp { std::cout << "Identifying potential patches..." << std::endl; - for (const auto &func : m_functions) + for (const auto &func : m_context.functions) { - if (m_skipFunctions.contains(func.name)) - { - continue; - } - - const std::vector instructions = decodeFunction(func); + const auto &instructions = getDecodedInstructions(func); for (size_t index = 0; index + 1 < instructions.size(); ++index) { @@ -821,7 +664,7 @@ namespace ps2recomp bool ElfAnalyzer::isCodeAddress(uint32_t addr) const { - for (const auto §ion : m_sections) + for (const auto §ion : m_context.sections) { if (!section.isCode) { @@ -842,10 +685,9 @@ namespace ps2recomp { std::cout << "Analyzing control flow of functions..." << std::endl; - for (const auto &func : m_functions) + for (const auto &func : m_context.functions) { - if (m_skipFunctions.contains(func.name) || - m_libFunctions.contains(func.name)) + if (m_libFunctions.contains(func.name)) { continue; } @@ -853,7 +695,7 @@ namespace ps2recomp CFG cfg = buildCFG(func); m_functionCFGs[func.start] = cfg; - std::vector instructions = decodeFunction(func); + const auto &instructions = getDecodedInstructions(func); for (const auto &inst : instructions) { if (inst.opcode == OPCODE_JAL || @@ -872,21 +714,17 @@ namespace ps2recomp continue; } - for (const auto &targetFunc : m_functions) + if (const Function *targetFunc = m_context.findFunction(targetAddr)) { - if (targetFunc.start == targetAddr) - { - FunctionCall call; - call.callerAddress = inst.address; - call.calleeAddress = targetAddr; - call.calleeName = targetFunc.name; + FunctionCall call; + call.callerAddress = inst.address; + call.calleeAddress = targetAddr; + call.calleeName = targetFunc->name; - m_functionCalls[func.start].push_back(call); + m_functionCalls[func.start].push_back(call); - std::cout << "Function " << func.name << " calls " << targetFunc.name - << " at " << formatAddress(inst.address) << std::endl; - break; - } + std::cout << "Function " << func.name << " calls " << targetFunc->name + << " at " << formatAddress(inst.address) << std::endl; } } } @@ -898,268 +736,24 @@ namespace ps2recomp const std::vector
§ions, const std::function &readWord) { - std::vector jumpTables; - - auto addSignedImm16 = [](uint32_t hiPart, uint16_t imm16) -> uint32_t - { - return hiPart + static_cast(static_cast(static_cast(imm16))); - }; - - auto orUnsignedImm16 = [](uint32_t hiPart, uint16_t imm16) -> uint32_t - { - return hiPart | static_cast(imm16); - }; - - auto looksLikeCodeTarget = [sections](uint32_t addr) -> bool - { - if (addr == 0) - { - return false; - } - - if (sections.empty()) - { - return true; - } - - for (const auto §ion : sections) - { - if (!section.isCode) - { - continue; - } - - const uint32_t sectionEnd = section.address + section.size; - if (addr >= section.address && addr < sectionEnd) - { - return true; - } - } - - return false; - }; - - auto readJumpEntryCandidate = [&](uint32_t entryAddr, bool isLoadDouble, uint32_t &outTarget) -> bool - { - outTarget = 0; - - uint32_t w0 = 0; - if (!readWord(entryAddr, w0)) - { - return false; - } - - if (!isLoadDouble) - { - outTarget = w0; - return true; - } - - uint32_t w1 = 0; - if (!readWord(entryAddr + 4u, w1)) - { - outTarget = w0; // still keep something - return true; - } - - const bool w0Looks = looksLikeCodeTarget(w0); - const bool w1Looks = looksLikeCodeTarget(w1); - - if (w0Looks && !w1Looks) - { - outTarget = w0; - return true; - } - if (w1Looks && !w0Looks) - { - outTarget = w1; - return true; - } - outTarget = w0; - return true; - }; - - auto tryBuildTable = [&](uint32_t baseAddr, uint32_t baseReg, uint32_t numEntries, uint32_t strideBytes, bool isLoadDouble) -> std::optional - { - JumpTable jumpTable; - jumpTable.address = baseAddr; - jumpTable.baseRegister = baseReg; - - uint32_t validCodeTargets = 0; - uint32_t totalRead = 0; - - for (uint32_t e = 0; e < numEntries; e++) - { - const uint32_t entryAddr = baseAddr + (e * strideBytes); - - uint32_t targetAddr = 0; - if (!readJumpEntryCandidate(entryAddr, isLoadDouble, targetAddr)) - { - continue; - } - - totalRead++; - - if (looksLikeCodeTarget(targetAddr)) - { - validCodeTargets++; - } - - JumpTableEntry entry; - entry.index = e; - entry.target = targetAddr; - jumpTable.entries.push_back(entry); - } - - if (jumpTable.entries.empty()) - { - return std::nullopt; - } - - bool ok = false; - if (sections.empty()) - { - ok = (totalRead >= 2); - } - else - { - ok = (validCodeTargets >= 2) && - (totalRead >= 2) && - (validCodeTargets * 2 >= totalRead); - } - - if (!ok) - { - return std::nullopt; - } - - return jumpTable; - }; - - for (size_t i = 0; i < instructions.size(); i++) - { - const auto &inst = instructions[i]; - - if (inst.opcode != OPCODE_SLTIU || i + 2 >= instructions.size()) - { - continue; - } - - const auto &nextInst = instructions[i + 1]; - if (nextInst.opcode != OPCODE_BNE && nextInst.opcode != OPCODE_BEQ) - { - continue; - } - - // scan for LW/LD + JR pair - for (size_t j = i + 2; j < std::min(i + 10, instructions.size()); j++) - { - const auto &loadInst = instructions[j]; - const bool isLoadWord = (loadInst.opcode == OPCODE_LW); - const bool isLoadDouble = (loadInst.opcode == OPCODE_LD); - - if ((!isLoadWord && !isLoadDouble) || j + 1 >= instructions.size()) - { - continue; - } - - const auto &jumpInst = instructions[j + 1]; - if (jumpInst.opcode != OPCODE_SPECIAL || - jumpInst.function != SPECIAL_JR || - jumpInst.rs != loadInst.rt) - { - continue; - } - - const uint32_t numEntries = inst.immediate; - if (numEntries == 0 || numEntries >= 1000) - { - break; - } - - uint32_t baseAddr = 0; - - // A) LUI tmp ; ADDIU/ORI base, tmp, lo - // B) LUI base ; ... ; LW/LD rt, lo(base) - for (int k = static_cast(j) - 1; k >= static_cast(i); k--) - { - const auto &addrInst = instructions[static_cast(k)]; - if (addrInst.opcode != OPCODE_LUI) - { - continue; - } - - const uint32_t hiPart = (addrInst.immediate << 16); - - if (static_cast(k + 1) < instructions.size()) - { - const auto &offsetInst = instructions[static_cast(k + 1)]; - const bool isAddiuOrOri = (offsetInst.opcode == OPCODE_ADDIU || offsetInst.opcode == OPCODE_ORI); - - if (isAddiuOrOri && - offsetInst.rs == addrInst.rt && - offsetInst.rt == loadInst.rs) - { - if (offsetInst.opcode == OPCODE_ADDIU) - { - baseAddr = addSignedImm16(hiPart, offsetInst.immediate); - } - else - { - baseAddr = orUnsignedImm16(hiPart, offsetInst.immediate); - } - break; - } - } - - if (addrInst.rt == loadInst.rs) - { - baseAddr = addSignedImm16(hiPart, loadInst.immediate); - break; - } - } - - if (baseAddr == 0) - { - break; - } - - const uint32_t preferredStride = isLoadDouble ? 8u : 4u; - - std::optional table = tryBuildTable(baseAddr, loadInst.rs, numEntries, preferredStride, isLoadDouble); - if (!table && isLoadDouble) - { - table = tryBuildTable(baseAddr, loadInst.rs, numEntries, 4u, isLoadDouble); - } - - if (table) - { - jumpTables.push_back(std::move(*table)); - } - - break; - } - } - - return jumpTables; + return AnalysisPasses::detectJumpTables(instructions, sections, readWord); } void ElfAnalyzer::detectJumpTables() { std::cout << "Detecting jump tables..." << std::endl; - for (const auto &func : m_functions) + for (const auto &func : m_context.functions) { - if (m_skipFunctions.contains(func.name) || - m_libFunctions.contains(func.name)) + if (m_libFunctions.contains(func.name)) { continue; } - std::vector instructions = decodeFunction(func); + const auto &instructions = getDecodedInstructions(func); std::vector detectedTables = detectJumpTablesForHeuristics( instructions, - m_sections, + m_context.sections, [this](uint32_t address, uint32_t &outWord) -> bool { return tryReadWord(m_elfParser.get(), address, outWord); @@ -1180,19 +774,27 @@ namespace ps2recomp } } - void ElfAnalyzer::analyzePerformanceCriticalPaths() const + void ElfAnalyzer::analyzePerformanceCriticalPaths() { std::cout << "Analyzing performance-critical paths..." << std::endl; + m_performanceCriticalReasons.clear(); - for (const auto &func : m_functions) + for (const auto &func : m_context.functions) { - if (m_skipFunctions.contains(func.name) || - m_libFunctions.contains(func.name)) + if (m_libFunctions.contains(func.name)) { continue; } - std::vector instructions = decodeFunction(func); + const auto &instructions = getDecodedInstructions(func); + if (hasMMIInstructions(func) || hasVUInstructions(func)) + { + m_performanceCriticalReasons[func.start] = "Uses SIMD instructions"; + } + else if (isLoopHeavyFunction(func)) + { + m_performanceCriticalReasons[func.start] = "Contains heavy loops"; + } for (const auto &inst : instructions) { @@ -1239,121 +841,20 @@ namespace ps2recomp std::unordered_set ElfAnalyzer::findRecursiveFunctionsForHeuristics( const std::unordered_map> &callGraph) { - std::unordered_set nodes; - for (const auto &[caller, callees] : callGraph) - { - nodes.insert(caller); - for (const auto &callee : callees) - { - nodes.insert(callee); - } - } - - std::unordered_map index; - std::unordered_map lowlink; - std::unordered_set onStack; - std::vector stack; - - index.reserve(nodes.size()); - lowlink.reserve(nodes.size()); - onStack.reserve(nodes.size()); - stack.reserve(nodes.size()); - - int currentIndex = 0; - std::vector> sccs; - sccs.reserve(nodes.size()); - - std::function strongconnect; - strongconnect = [&](const std::string &v) - { - index[v] = currentIndex; - lowlink[v] = currentIndex; - currentIndex++; - - stack.push_back(v); - onStack.insert(v); - - auto it = callGraph.find(v); - if (it != callGraph.end()) - { - for (const auto &w : it->second) - { - if (!index.contains(w)) - { - strongconnect(w); - lowlink[v] = std::min(lowlink[v], lowlink[w]); - } - else if (onStack.contains(w)) - { - lowlink[v] = std::min(lowlink[v], index[w]); - } - } - } - - if (lowlink[v] == index[v]) - { - std::vector scc; - while (!stack.empty()) - { - std::string w = stack.back(); - stack.pop_back(); - onStack.erase(w); - scc.push_back(w); - if (w == v) - { - break; - } - } - - sccs.push_back(std::move(scc)); - } - }; - - for (const auto &name : nodes) - { - if (!index.contains(name)) - { - strongconnect(name); - } - } - - std::unordered_set recursive; - for (const auto &scc : sccs) - { - if (scc.size() > 1) - { - recursive.insert(scc.begin(), scc.end()); - continue; - } - - const std::string &name = scc[0]; - auto it = callGraph.find(name); - if (it == callGraph.end()) - { - continue; - } - - if (std::find(it->second.begin(), it->second.end(), name) != it->second.end()) - { - recursive.insert(name); - } - } - - return recursive; + return AnalysisPasses::findRecursiveFunctions(callGraph); } void ElfAnalyzer::identifyRecursiveFunctions() { std::cout << "Identifying recursive functions..." << std::endl; - // lets ignore skip and library + // Library stubs are runtime-owned and do not need analyzer graph work. std::unordered_set eligible; - eligible.reserve(m_functions.size()); + eligible.reserve(m_context.functions.size()); - for (const auto &func : m_functions) + for (const auto &func : m_context.functions) { - if (m_skipFunctions.contains(func.name) || - m_libFunctions.contains(func.name)) + if (m_libFunctions.contains(func.name)) { continue; } @@ -1364,7 +865,7 @@ namespace ps2recomp std::unordered_map> callGraph; callGraph.reserve(eligible.size()); - for (const auto &func : m_functions) + for (const auto &func : m_context.functions) { if (!eligible.contains(func.name)) { @@ -1412,15 +913,14 @@ namespace ps2recomp { std::cout << "Analyzing register usage patterns..." << std::endl; - for (const auto &func : m_functions) + for (const auto &func : m_context.functions) { - if (m_skipFunctions.contains(func.name) || - m_libFunctions.contains(func.name)) + if (m_libFunctions.contains(func.name)) { continue; } - std::vector instructions = decodeFunction(func); + const auto &instructions = getDecodedInstructions(func); std::set regsRead, regsWritten; for (const auto &inst : instructions) @@ -1511,15 +1011,14 @@ namespace ps2recomp { std::cout << "Analyzing function signatures..." << std::endl; - for (const auto &func : m_functions) + for (const auto &func : m_context.functions) { - if (m_skipFunctions.contains(func.name) || - m_libFunctions.contains(func.name)) + if (m_libFunctions.contains(func.name)) { continue; } - std::vector instructions = decodeFunction(func); + const auto &instructions = getDecodedInstructions(func); int paramCount = 0; bool usesFloatingPoint = false; @@ -1599,50 +1098,25 @@ namespace ps2recomp { uint32_t patchAddr = patch.first; - for (const auto &func : m_functions) + if (const Function *func = m_context.findFunctionContaining(patchAddr)) { - if (patchAddr >= func.start && patchAddr < func.end) - { - functionPatches[func.start].push_back(patchAddr); - break; - } + functionPatches[func->start].push_back(patchAddr); } } for (const auto &[funcStart, patchAddrs] : functionPatches) { - auto funcIt = std::find_if(m_functions.begin(), m_functions.end(), - [funcStart](const Function &f) - { return f.start == funcStart; }); - - if (funcIt != m_functions.end()) + if (Function *func = m_context.findFunction(funcStart)) { - const Function &func = *funcIt; - if (m_forceRecompileStarts.contains(func.start)) + if (m_forceRecompileStarts.contains(func->start)) { continue; } if (patchAddrs.size() > 3) { - std::cout << "Function " << func.name << " has " << patchAddrs.size() - << " patches. Consider skipping or stubing instead." << std::endl; - - // If too many patches in one function, maybe better to skip it - if (shouldSkipForPatchDensityForHeuristics(func.name, - func.end - func.start, - patchAddrs.size(), - isLibraryFunction(func.name))) - { - std::cout << " - Adding " << func.name << " to skip list due to high patch density" << std::endl; - m_skipFunctions.insert(func.name); - - for (const auto &addr : patchAddrs) - { - m_patches.erase(addr); - m_patchReasons.erase(addr); - } - } + std::cout << "Function " << func->name << " has " << patchAddrs.size() + << " patches. Manual review may be needed." << std::endl; } } } @@ -1676,7 +1150,7 @@ namespace ps2recomp bool ElfAnalyzer::identifyMemcpyPattern(const Function &func) const { - std::vector instructions = decodeFunction(func); + const auto &instructions = getDecodedInstructions(func); bool hasLoop = false; bool loadsData = false; @@ -1720,7 +1194,7 @@ namespace ps2recomp bool ElfAnalyzer::identifyMemsetPattern(const Function &func) const { - std::vector instructions = decodeFunction(func); + const auto &instructions = getDecodedInstructions(func); bool hasLoop = false; bool usesConstant = false; @@ -1763,7 +1237,7 @@ namespace ps2recomp bool ElfAnalyzer::identifyStringOperationPattern(const Function &func) const { - std::vector instructions = decodeFunction(func); + const auto &instructions = getDecodedInstructions(func); bool hasLoop = false; bool checksZero = false; @@ -1803,7 +1277,7 @@ namespace ps2recomp bool ElfAnalyzer::identifyMathPattern(const Function &func) const { - std::vector instructions = decodeFunction(func); + const auto &instructions = getDecodedInstructions(func); int mathOps = 0; bool usesFPU = false; @@ -1835,7 +1309,7 @@ namespace ps2recomp CFG ElfAnalyzer::buildCFG(const Function &function) const { CFG cfg; - std::vector instructions = decodeFunction(function); + const auto &instructions = getDecodedInstructions(function); std::map addrToIndex; for (size_t i = 0; i < instructions.size(); i++) @@ -2000,229 +1474,14 @@ namespace ps2recomp return cfg; } - std::string ElfAnalyzer::escapeBackslashes(const std::string &path) - { - std::string result; - for (char ch : path) - { - if (ch == '\\') - result.append("\\\\"); - else - result.push_back(ch); - } - return result; - } - - static bool hasPs2ApiPrefix(const std::string &name) - { - if (name.empty()) - return false; - - const std::vector libraryPrefixes = { - "sce", "Sce", "SCE", // Sony prefixes - "sif", "Sif", "SIF", // SIF functions - "gs", "Gs", "GS", // Graphics Synthesizer - "dma", "Dma", "DMA", // DMA functions - "iop", "Iop", "IOP", // IOP functions - "vif", "Vif", "VIF", // VIF functions - "spu", "Spu", "SPU", // SPU functions - "mc", "Mc", "MC", // Memory Card functions - "libc", "Libc", "LIBC" // C library functions - }; - - std::string base = name; - if (base[0] == '_' && base.size() > 1) - { - base = base.substr(1); - } - - for (const auto &prefix : libraryPrefixes) - { - if (base.rfind(prefix, 0) == 0) - { - return true; - } - } - - return false; - } - - static bool matchesKernelRuntimeName(const std::string &name) - { - if (name.empty()) - { - return false; - } - - static const std::regex kernelRuntimePattern( - "^(?:(?:Create|Delete|Start|ExitDelete|Exit|Terminate|Suspend|Resume|Sleep|Wakeup|CancelWakeup|Change|Rotate|Release|Setup|Register|Query|Get|Set|Refer|Poll|Wait|Signal|Enable|Disable|Flush|Reset|Add|Init)(?:Thread|Sema|EventFlag|Alarm|Intc|IntcHandler2|Dmac|DmacHandler2|OsdConfigParam|MemorySize|VSyncFlag|Heap|TLS|Status|Cache|Syscall|TLB|TLBEntry|GsCrt)|EndOfHeap|GsGetIMR|GsPutIMR|Deci2Call|Sif[A-Za-z0-9_]+|i(?:SignalSema|PollSema|ReferSemaStatus|SetEventFlag|ClearEventFlag|PollEventFlag|ReferEventFlagStatus|WakeupThread|CancelWakeupThread|ReleaseWaitThread|SetAlarm|CancelAlarm|FlushCache|sceSifSetDma|sceSifSetDChain))$"); - return std::regex_match(name, kernelRuntimePattern); - } - - static bool isDoNotSkipOrStub(const std::string &name) - { - static const std::unordered_set kDoNotSkipOrStub = { - "topThread", - "cmd_sem_init"}; - - return kDoNotSkipOrStub.contains(name); - } - - static bool isKnownLocalHelperName(const std::string &name) - { - static const std::unordered_set kKnownLocalHelpers = { - "memcpy2", - "_memcpy2"}; - - return kKnownLocalHelpers.contains(name); - } - - static bool hasReliableSymbolName(const std::string &name) - { - if (name.empty()) - { - return false; - } - - auto startsWith = [&](const char *prefix) -> bool - { - return name.rfind(prefix, 0) == 0; - }; - - if (startsWith("sub_") || startsWith("FUN_") || startsWith("func_") || - startsWith("entry_") || startsWith("function_") || startsWith("LAB_")) - { - return false; - } - - bool hasAlpha = false; - bool allHexOrPrefix = true; - for (char c : name) - { - if (std::isalpha(static_cast(c))) - { - hasAlpha = true; - } - - if (!(std::isxdigit(static_cast(c)) || c == 'x' || c == 'X' || c == '_')) - { - allHexOrPrefix = false; - } - } - - if (!hasAlpha) - { - return false; - } - - if ((startsWith("0x") || startsWith("0X")) && allHexOrPrefix) - { - return false; - } - - return true; - } - bool ElfAnalyzer::isReliableSymbolNameForHeuristics(const std::string &name) { - return hasReliableSymbolName(name); - } - - bool ElfAnalyzer::isSystemSymbolNameForHeuristics(const std::string &name) - { - if (!hasReliableSymbolName(name)) - { - return false; - } - - static const std::unordered_set systemFuncs = { - "entry", "_start", "_init", "_fini", - "abort", "exit", "_exit", - "_profiler_start", "_profiler_stop", - "__main", "__do_global_ctors", "__do_global_dtors", - "_GLOBAL__sub_I_", "_GLOBAL__sub_D_", - "__ctor_list", "__dtor_list", "_edata", "_end", - "etext", "__exidx_start", "__exidx_end", - "_ftext", "__bss_start", "__bss_start__", - "__bss_end__", "__end__", "_stack", "_dso_handle"}; - - return systemFuncs.contains(name) || - name.find("__") == 0 || - name.find(".") == 0; // .text.* or .plt.* symbols - } - - bool ElfAnalyzer::shouldAutoSkipNameForHeuristics(const std::string &name) - { - if (isDoNotSkipOrStub(name)) - { - return false; - } - - // For named game logic, prefer recompiling and only skip explicit/system cases. - if (!hasReliableSymbolName(name)) - { - return true; - } - - return isSystemSymbolNameForHeuristics(name); - } - - bool ElfAnalyzer::shouldSkipSystemSymbolForHeuristics( - const std::string &name, - const std::unordered_set &forcedRecompileNames) - { - if (forcedRecompileNames.contains(name)) - { - return false; - } - return isSystemSymbolNameForHeuristics(name); - } - - bool ElfAnalyzer::isSystemFunction(const std::string &name) const - { - return isSystemSymbolNameForHeuristics(name); + return FunctionClassifier::isReliableSymbolName(name); } bool ElfAnalyzer::isLibraryFunction(const std::string &name) const { - if (name.empty()) - return false; - - if (!hasReliableSymbolName(name)) - return false; - - if (isKnownLocalHelperName(name)) - return false; - - std::string normalizedName = name; - if (normalizedName[0] == '_' && normalizedName.size() > 1) - { - normalizedName = normalizedName.substr(1); - } - - if (isKnownLocalHelperName(normalizedName)) - return false; - - if (matchesKernelRuntimeName(normalizedName)) - return true; - - if (m_knownLibNames.find(name) != m_knownLibNames.end()) - return true; - - if (m_knownLibNames.find(normalizedName) != m_knownLibNames.end()) - return true; - - if (hasPs2ApiPrefix(name)) - return true; - - // Check for common C/C++ library function names - static const std::regex cLibPattern("^_*(mem|str|time|f?printf|f?scanf|malloc|free|calloc|realloc|atoi|itoa|rand|srand|abort|exit|atexit|getenv|system|bsearch|qsort|abs|labs|div|ldiv|mblen|mbtowc|wctomb|mbstowcs|wcstombs).*"); - if (std::regex_match(normalizedName, cLibPattern)) - { - return true; - } - - return false; + return m_classifier.isLibraryFunction(name); } bool ElfAnalyzer::isLibrarySymbolNameForHeuristics(const std::string &name) const @@ -2232,115 +1491,116 @@ namespace ps2recomp bool ElfAnalyzer::hasHardwareIOSignalForHeuristics(const std::vector &instructions) { - for (const auto &inst : instructions) - { - if (inst.opcode == OPCODE_LUI) - { - const uint32_t upperAddr = inst.immediate << 16; - if ((upperAddr >= 0x10000000 && upperAddr < 0x14000000) || // I/O area - (upperAddr >= 0x1F800000 && upperAddr < 0x1F900000)) // Scratchpad RAM - { - return true; - } - } - } - - return false; + return AnalysisPasses::hasHardwareIOSignal(instructions); } bool ElfAnalyzer::hasLargeComplexMMISignalForHeuristics(const std::vector &instructions, size_t largeInstructionThreshold) { - if (instructions.size() <= largeInstructionThreshold) - { - return false; - } - - for (const auto &inst : instructions) - { - if (inst.isMMI && - inst.opcode == OPCODE_MMI && - (inst.function == MMI_MMI0 || inst.function == MMI_MMI1 || - inst.function == MMI_MMI2 || inst.function == MMI_MMI3)) - { - return true; - } - } - - return false; + return AnalysisPasses::hasLargeComplexMMISignal(instructions, largeInstructionThreshold); } bool ElfAnalyzer::hasSelfModifyingSignalForHeuristics(const std::vector &instructions, const std::vector
§ions) { - for (size_t i = 0; i < instructions.size(); i++) - { - const auto &inst = instructions[i]; - if (!(inst.opcode == OPCODE_SW || inst.opcode == OPCODE_SH || - inst.opcode == OPCODE_SB || inst.opcode == OPCODE_SQ)) - { - continue; - } - - uint32_t baseAddr = 0; - for (int j = static_cast(i) - 1; j >= 0 && j >= static_cast(i) - 5; j--) - { - const auto &prevInst = instructions[static_cast(j)]; - if (prevInst.opcode == OPCODE_LUI && prevInst.rt == inst.rs) - { - baseAddr = prevInst.immediate << 16; - break; - } - } - - if (baseAddr == 0) - { - continue; - } - - const uint32_t targetAddr = baseAddr + static_cast(inst.immediate); - for (const auto §ion : sections) - { - if (section.isCode && - targetAddr >= section.address && - targetAddr < section.address + section.size) - { - return true; - } - } - } - - return false; + return AnalysisPasses::hasSelfModifyingSignal(instructions, sections); } - bool ElfAnalyzer::shouldSkipForPatchDensityForHeuristics(const std::string &functionName, - uint32_t functionSizeBytes, - size_t patchCount, - bool isLibraryFunction) + void ElfAnalyzer::clearDecodedInstructionCache() { - if (patchCount <= 5 || functionSizeBytes < 4) + m_context.clearInstructionCache(); + } + + void ElfAnalyzer::buildFunctionIndex() + { + m_context.buildFunctionIndex(); + } + + void ElfAnalyzer::decodeAllFunctionsOnce() + { + m_context.instructionCache.clear(); + for (auto &func : m_context.functions) { - return false; + if (m_libFunctions.contains(func.name) || + func.start >= func.end) + { + continue; + } + + if (func.instructions.empty()) + { + func.instructions = decodeFunction(func); + } + } + } + + void ElfAnalyzer::classifyFunctions() + { + for (auto &func : m_context.functions) + { + if (m_libFunctions.contains(func.name)) + { + continue; + } + + categorizeFunction(func); + } + } + + void ElfAnalyzer::runDataUsagePass() + { + analyzeDataUsage(); + } + + void ElfAnalyzer::runPatchDetectionPass() + { + identifyPotentialPatches(); + } + + void ElfAnalyzer::runControlFlowPass() + { + analyzeControlFlow(); + } + + void ElfAnalyzer::runJumpTablePass() + { + detectJumpTables(); + } + + void ElfAnalyzer::runPerformancePass() + { + analyzePerformanceCriticalPaths(); + } + + void ElfAnalyzer::runSignaturePass() const + { + analyzeFunctionSignatures(); + } + + void ElfAnalyzer::printAnalysisSummary() const + { + std::cout << "Analysis completed" << std::endl; + std::cout << "- " << m_libFunctions.size() << " library functions to stub" << std::endl; + std::cout << "- " << m_untrackedStubFunctions.size() << " detected library functions without runtime handlers" << std::endl; + std::cout << "- skip output retained for compatibility; analyzer does not auto-skip functions" << std::endl; + std::cout << "- " << m_patches.size() << " potential patches identified" << std::endl; + std::cout << "- " << m_jumpTables.size() << " jump tables detected" << std::endl; + } + + const std::vector &ElfAnalyzer::getDecodedInstructions(const Function &function) const + { + if (!function.instructions.empty() || function.start >= function.end) + { + return function.instructions; } - const double instructionCount = static_cast(functionSizeBytes) / 4.0; - if (instructionCount <= 0.0) + auto cacheIt = m_context.instructionCache.find(function.start); + if (cacheIt == m_context.instructionCache.end()) { - return false; + cacheIt = m_context.instructionCache.emplace(function.start, decodeFunction(function)).first; } - const double density = static_cast(patchCount) / instructionCount; - if (density <= 0.2) - { - return false; - } - - if (isLibraryFunction || isDoNotSkipOrStub(functionName)) - { - return false; - } - - return shouldAutoSkipNameForHeuristics(functionName); + return cacheIt->second; } std::vector ElfAnalyzer::decodeFunction(const Function &function) const @@ -2379,7 +1639,7 @@ namespace ps2recomp bool ElfAnalyzer::hasMMIInstructions(const Function &function) const { - std::vector instructions = decodeFunction(function); + const auto &instructions = getDecodedInstructions(function); for (const auto &inst : instructions) { @@ -2394,7 +1654,7 @@ namespace ps2recomp bool ElfAnalyzer::hasVUInstructions(const Function &function) const { - std::vector instructions = decodeFunction(function); + const auto &instructions = getDecodedInstructions(function); for (const auto &inst : instructions) { @@ -2407,58 +1667,29 @@ namespace ps2recomp return false; } - bool ElfAnalyzer::shouldAutoSkipByHeuristic(const Function &function) const + void ElfAnalyzer::identifyFunctionType(const Function &function) const { - if (m_forceRecompileStarts.contains(function.start)) + if (FunctionClassifier::hasPs2ApiPrefix(function.name)) { - return false; - } - return shouldAutoSkipNameForHeuristics(function.name); - } - - bool ElfAnalyzer::identifyFunctionType(const Function &function) - { - if (isDoNotSkipOrStub(function.name)) - { - return false; - } - if (hasPs2ApiPrefix(function.name)) - { - return false; + return; } - std::vector instructions = decodeFunction(function); + const auto &instructions = getDecodedInstructions(function); const bool hasHardwareIO = hasHardwareIOSignalForHeuristics(instructions); const bool hasLargeComplexMMI = hasLargeComplexMMISignalForHeuristics(instructions); if (hasHardwareIO) { - if (shouldAutoSkipByHeuristic(function)) - { - m_skipFunctions.insert(function.name); - std::cout << "Skipping function " << function.name << " due to hardware I/O" << std::endl; - return true; - } - - std::cout << "Keeping function " << function.name - << " despite hardware I/O (reliable game symbol)" << std::endl; + std::cout << "Function " << function.name + << " has a hardware I/O signal" << std::endl; } if (hasLargeComplexMMI) { - if (shouldAutoSkipByHeuristic(function)) - { - m_skipFunctions.insert(function.name); - std::cout << "Skipping large function " << function.name << " with complex MMI" << std::endl; - return true; - } - - std::cout << "Keeping large function " << function.name - << " with complex MMI (reliable game symbol)" << std::endl; + std::cout << "Function " << function.name + << " is large and uses complex MMI" << std::endl; } - - return false; } void ElfAnalyzer::categorizeFunction(Function &function) @@ -2468,12 +1699,6 @@ namespace ps2recomp if (isSelfModifyingCode(function)) { std::cout << "Function " << function.name << " contains self-modifying code" << std::endl; - if (!isLibraryFunction(function.name) && - !isDoNotSkipOrStub(function.name) && - shouldAutoSkipByHeuristic(function)) - { - m_skipFunctions.insert(function.name); - } } if (isLoopHeavyFunction(function)) @@ -2484,13 +1709,13 @@ namespace ps2recomp bool ElfAnalyzer::isSelfModifyingCode(const Function &function) const { - std::vector instructions = decodeFunction(function); - return hasSelfModifyingSignalForHeuristics(instructions, m_sections); + const auto &instructions = getDecodedInstructions(function); + return hasSelfModifyingSignalForHeuristics(instructions, m_context.sections); } bool ElfAnalyzer::isLoopHeavyFunction(const Function &function) const { - std::vector instructions = decodeFunction(function); + const auto &instructions = getDecodedInstructions(function); int loopCount = 0; for (const auto &inst : instructions) @@ -2608,7 +1833,7 @@ namespace ps2recomp // Update existing function or create new one bool found = false; - for (auto &func : m_functions) + for (auto &func : m_context.functions) { if (func.start == startAddr) { @@ -2628,17 +1853,25 @@ namespace ps2recomp newFunc.name = name; newFunc.start = startAddr; newFunc.end = endAddr; - m_functions.push_back(newFunc); + m_context.functions.push_back(newFunc); importedCount++; } } + clearDecodedInstructionCache(); + std::sort(m_context.functions.begin(), m_context.functions.end(), + [](const Function &a, const Function &b) + { + return a.start < b.start; + }); + buildFunctionIndex(); + std::cout << "Imported " << importedCount << " functions from Ghidra CSV: " << csvPath << std::endl; return true; } const std::vector& ElfAnalyzer::getFunctions() const { - return m_functions; + return m_context.functions; } } diff --git a/ps2xAnalyzer/src/function_classifier.cpp b/ps2xAnalyzer/src/function_classifier.cpp new file mode 100644 index 0000000..2db285e --- /dev/null +++ b/ps2xAnalyzer/src/function_classifier.cpp @@ -0,0 +1,218 @@ +#include "ps2recomp/function_classifier.h" + +#include "ps2_runtime_calls.h" + +#include +#include +#include + +namespace ps2recomp +{ + FunctionClassifier::FunctionClassifier() + { + initializeKnownLibraryFunctions(); + } + + void FunctionClassifier::setSceSdkFunctionNames(const std::unordered_set *names) + { + m_sceSdkFunctionNames = names; + } + + bool FunctionClassifier::hasRuntimeHandler(const std::string &name) + { + return !ps2_runtime_calls::resolveSyscallName(name).empty() || + !ps2_runtime_calls::resolveStubName(name).empty(); + } + + void FunctionClassifier::initializeKnownLibraryFunctions() + { + const std::vector stdLibFuncs = { + "printf", "sprintf", "snprintf", "fprintf", "vprintf", "vfprintf", "vsprintf", "vsnprintf", + "puts", "putchar", "getchar", "gets", "fgets", "fputs", "scanf", "fscanf", "sscanf", + "sprint", "sbprintf", + "malloc", "free", "calloc", "realloc", "aligned_alloc", "posix_memalign", + "memcpy", "memset", "memmove", "memcmp", "memchr", "bcopy", "bzero", + "strcpy", "strncpy", "strcat", "strncat", "strcmp", "strncmp", "strlen", "strstr", + "strchr", "strrchr", "strdup", "strtok", "strtok_r", "strerror", + "fopen", "fclose", "fread", "fwrite", "fseek", "ftell", "rewind", "fflush", + "fgetc", "fgets", "feof", "ferror", "clearerr", "fileno", "tmpfile", "remove", "rename", + "open", "close", "read", "write", "lseek", "stat", "fstat", + "atoi", "atol", "atoll", "atof", "strtol", "strtoul", "strtoll", "strtoull", "strtod", "strtof", + "rand", "srand", "random", "srandom", "drand48", "sqrt", "pow", "exp", "log", "log10", + "sin", "cos", "tan", "asin", "acos", "atan", "atan2", "sinh", "cosh", "tanh", + "floor", "ceil", "fabs", "fmod", "frexp", "ldexp", "modf", + "time", "ctime", "clock", "difftime", "mktime", "localtime", "gmtime", "asctime", "strftime", + "gettimeofday", "nanosleep", "usleep", + "abort", "exit", "_exit", "atexit", "system", "getpid", "fork", "waitpid", + "qsort", "bsearch", "abs", "div", "labs", "ldiv", "llabs", "lldiv", + "isalnum", "isalpha", "isdigit", "islower", "isupper", "isspace", "tolower", "toupper", + "setjmp", "longjmp", "getenv", "setenv", "unsetenv", + "perror", "fputc", "getc", "ungetc", "freopen", "setvbuf", "setbuf", + "strnlen", "strspn", "strcspn", "strcasecmp", "strncasecmp"}; + + m_knownLibNames.insert(stdLibFuncs.begin(), stdLibFuncs.end()); + } + + bool FunctionClassifier::hasPs2ApiPrefix(const std::string &name) + { + if (name.empty()) + { + return false; + } + + const std::vector libraryPrefixes = { + "sce", "Sce", "SCE", + "sif", "Sif", "SIF", + "gs", "Gs", "GS", + "dma", "Dma", "DMA", + "iop", "Iop", "IOP", + "vif", "Vif", "VIF", + "spu", "Spu", "SPU", + "mc", "Mc", "MC", + "libc", "Libc", "LIBC"}; + + std::string base = name; + if (base[0] == '_' && base.size() > 1) + { + base = base.substr(1); + } + + auto hasSdkPrefixShape = [](const std::string &value, const std::string &prefix) -> bool + { + if (value.rfind(prefix, 0) != 0) + { + return false; + } + + if (value.size() == prefix.size()) + { + return true; + } + + return !std::islower(static_cast(value[prefix.size()])); + }; + + for (const auto &prefix : libraryPrefixes) + { + if (hasSdkPrefixShape(base, prefix)) + { + return true; + } + } + + return false; + } + + bool FunctionClassifier::matchesKernelRuntimeName(const std::string &name) + { + if (name.empty()) + { + return false; + } + + static const std::regex kernelRuntimePattern( + "^(?:(?:Create|Delete|Start|ExitDelete|Exit|Terminate|Suspend|Resume|Sleep|Wakeup|CancelWakeup|Change|Rotate|Release|Setup|Register|Query|Get|Set|Refer|Poll|Wait|Signal|Enable|Disable|Flush|Reset|Add|Init)(?:Thread|Sema|EventFlag|Alarm|Intc|IntcHandler2|Dmac|DmacHandler2|OsdConfigParam|MemorySize|VSyncFlag|Heap|TLS|Status|Cache|Syscall|TLB|TLBEntry|GsCrt)|EndOfHeap|GsGetIMR|GsPutIMR|Deci2Call|Sif[A-Za-z0-9_]+|i(?:SignalSema|PollSema|ReferSemaStatus|SetEventFlag|ClearEventFlag|PollEventFlag|ReferEventFlagStatus|WakeupThread|CancelWakeupThread|ReleaseWaitThread|SetAlarm|CancelAlarm|FlushCache|sceSifSetDma|sceSifSetDChain))$"); + return std::regex_match(name, kernelRuntimePattern); + } + + bool FunctionClassifier::isReliableSymbolName(const std::string &name) + { + if (name.empty()) + { + return false; + } + + auto startsWith = [&](const char *prefix) -> bool + { + return name.rfind(prefix, 0) == 0; + }; + + if (startsWith("sub_") || startsWith("FUN_") || startsWith("func_") || + startsWith("entry_") || startsWith("function_") || startsWith("LAB_")) + { + return false; + } + + bool hasAlpha = false; + bool allHexOrPrefix = true; + for (char c : name) + { + if (std::isalpha(static_cast(c))) + { + hasAlpha = true; + } + + if (!(std::isxdigit(static_cast(c)) || c == 'x' || c == 'X' || c == '_')) + { + allHexOrPrefix = false; + } + } + + if (!hasAlpha) + { + return false; + } + + if ((startsWith("0x") || startsWith("0X")) && allHexOrPrefix) + { + return false; + } + + return true; + } + + bool FunctionClassifier::isLibraryFunction(const std::string &name) const + { + if (name.empty()) + { + return false; + } + + if (!isReliableSymbolName(name)) + { + return false; + } + + if (hasRuntimeHandler(name)) + { + return true; + } + + std::string normalizedName = name; + if (normalizedName[0] == '_' && normalizedName.size() > 1) + { + normalizedName = normalizedName.substr(1); + } + + if (hasRuntimeHandler(normalizedName)) + { + return true; + } + + if (m_sceSdkFunctionNames != nullptr && + (m_sceSdkFunctionNames->contains(name) || + m_sceSdkFunctionNames->contains(normalizedName))) + { + return true; + } + + if (matchesKernelRuntimeName(normalizedName)) + { + return true; + } + + if (m_knownLibNames.contains(name) || + m_knownLibNames.contains(normalizedName)) + { + return true; + } + + if (hasPs2ApiPrefix(name)) + { + return true; + } + + static const std::regex cLibPattern("^_*(mem|str|time|f?printf|f?scanf|malloc|free|calloc|realloc|atoi|itoa|rand|srand|abort|exit|atexit|getenv|system|bsearch|qsort|abs|labs|div|ldiv|mblen|mbtowc|wctomb|mbstowcs|wcstombs).*"); + return std::regex_match(normalizedName, cLibPattern); + } +} diff --git a/ps2xAnalyzer/src/sce_symbol_scanner.cpp b/ps2xAnalyzer/src/sce_symbol_scanner.cpp new file mode 100644 index 0000000..1427138 --- /dev/null +++ b/ps2xAnalyzer/src/sce_symbol_scanner.cpp @@ -0,0 +1,793 @@ +#include "ps2recomp/sce_symbol_scanner.h" +#include "ps2recomp/sce_symbol_database_data.h" +#include "ps2recomp/types.h" + +#include + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +namespace fs = std::filesystem; + +namespace ps2recomp +{ + namespace + { + enum class RelocationType + { + None, + Mips26, + MipsLo16, + MipsHi16, + Mips32, + MipsGpRel16, + MipsLiteral, + }; + + struct MatchSymbolKey + { + std::string library; + std::string name; + std::string hash; + uint32_t variantHash = 0; + }; + + struct RelocationRecord + { + uint32_t offset = 0; + RelocationType type = RelocationType::None; + }; + + struct SymbolRecord + { + std::string library; + std::string name; + std::string hashText; + std::array hash = {}; + uint32_t variantHash = 0; + uint32_t size = 0; + bool isFunction = false; + std::vector relocations; + + size_t staticBitCount() const + { + size_t relocatedStaticBits = 0; + for (const auto &relocation : relocations) + { + switch (relocation.type) + { + case RelocationType::None: + relocatedStaticBits += 32; + break; + case RelocationType::Mips26: + relocatedStaticBits += 6; + break; + case RelocationType::MipsLo16: + case RelocationType::MipsHi16: + case RelocationType::MipsGpRel16: + case RelocationType::MipsLiteral: + relocatedStaticBits += 16; + break; + case RelocationType::Mips32: + break; + } + } + + const size_t totalBits = static_cast(size) * 8; + if (relocatedStaticBits >= totalBits) + { + return 0; + } + return totalBits - relocatedStaticBits; + } + }; + + struct MatchNode; + + struct MatchEdge + { + uint32_t value = 0; + RelocationType relocationType = RelocationType::None; + std::unique_ptr child; + }; + + struct MatchNode + { + uint32_t offset = 0; + std::vector next; + std::vector symbols; + }; + + struct Candidate + { + const SymbolRecord *symbol = nullptr; + uint32_t address = 0; + uint32_t actualSize = 0; + }; + + static std::string toUpperAscii(std::string value) + { + for (char &ch : value) + { + ch = static_cast(std::toupper(static_cast(ch))); + } + return value; + } + + static RelocationType parseRelocationType(const std::string &value) + { + const std::string upper = toUpperAscii(value); + if (upper == "NONE") + { + return RelocationType::None; + } + if (upper == "MIPS_26" || upper == "MIPS26") + { + return RelocationType::Mips26; + } + if (upper == "LO16" || upper == "MIPS_LO16" || upper == "MIPSLO16") + { + return RelocationType::MipsLo16; + } + if (upper == "HI16" || upper == "MIPS_HI16" || upper == "MIPSHI16") + { + return RelocationType::MipsHi16; + } + if (upper == "MIPS_32" || upper == "MIPS32") + { + return RelocationType::Mips32; + } + if (upper == "MIPS_GPREL16" || upper == "MIPSGPREL16") + { + return RelocationType::MipsGpRel16; + } + if (upper == "MIPS_LITERAL" || upper == "MIPSLITERAL") + { + return RelocationType::MipsLiteral; + } + return RelocationType::None; + } + + static uint32_t relocationMask(RelocationType type) + { + switch (type) + { + case RelocationType::None: + return 0xFFFFFFFFu; + case RelocationType::Mips26: + return 0xFC000000u; + case RelocationType::MipsLo16: + case RelocationType::MipsHi16: + case RelocationType::MipsGpRel16: + case RelocationType::MipsLiteral: + return 0xFFFF0000u; + case RelocationType::Mips32: + return 0u; + } + return 0xFFFFFFFFu; + } + + static uint32_t readLe32(const uint8_t *data) + { + return static_cast(data[0]) | + (static_cast(data[1]) << 8) | + (static_cast(data[2]) << 16) | + (static_cast(data[3]) << 24); + } + + static void writeLe32(uint8_t *data, uint32_t value) + { + data[0] = static_cast(value & 0xFFu); + data[1] = static_cast((value >> 8) & 0xFFu); + data[2] = static_cast((value >> 16) & 0xFFu); + data[3] = static_cast((value >> 24) & 0xFFu); + } + + static uint32_t disabledRelocationValue(RelocationType type, uint32_t value) + { + switch (type) + { + case RelocationType::None: + return value; + case RelocationType::Mips26: + return value & 0xFC000000u; + case RelocationType::MipsLo16: + case RelocationType::MipsHi16: + case RelocationType::MipsGpRel16: + case RelocationType::MipsLiteral: + return value & 0xFFFF0000u; + case RelocationType::Mips32: + return 0u; + } + return value; + } + + static std::string toHex8(uint32_t value) + { + std::ostringstream stream; + stream << std::hex; + stream.width(8); + stream.fill('0'); + stream << value; + return stream.str(); + } + + static std::string makeSymbolKey(const std::string &library, + const std::string &name, + const std::string &hash, + uint32_t variantHash) + { + return library + '\n' + name + '\n' + hash + '\n' + toHex8(variantHash); + } + + static std::string makeSymbolKey(const SymbolRecord &symbol) + { + return makeSymbolKey(symbol.library, symbol.name, symbol.hashText, symbol.variantHash); + } + + static uint8_t hexNibble(char ch) + { + if (ch >= '0' && ch <= '9') + { + return static_cast(ch - '0'); + } + if (ch >= 'a' && ch <= 'f') + { + return static_cast(10 + ch - 'a'); + } + if (ch >= 'A' && ch <= 'F') + { + return static_cast(10 + ch - 'A'); + } + throw std::runtime_error("invalid hex digit"); + } + + static std::array parseSha1(const std::string &hex) + { + if (hex.size() != 40) + { + throw std::runtime_error("invalid SHA-1 length"); + } + + std::array bytes = {}; + for (size_t i = 0; i < bytes.size(); ++i) + { + bytes[i] = static_cast((hexNibble(hex[i * 2]) << 4) | + hexNibble(hex[i * 2 + 1])); + } + return bytes; + } + + static uint32_t rotateLeft(uint32_t value, uint32_t bits) + { + return (value << bits) | (value >> (32 - bits)); + } + + static std::array sha1(const std::vector &data) + { + std::vector message = data; + const uint64_t bitLength = static_cast(message.size()) * 8u; + + message.push_back(0x80u); + while ((message.size() % 64) != 56) + { + message.push_back(0u); + } + + for (int shift = 56; shift >= 0; shift -= 8) + { + message.push_back(static_cast((bitLength >> shift) & 0xFFu)); + } + + uint32_t h0 = 0x67452301u; + uint32_t h1 = 0xEFCDAB89u; + uint32_t h2 = 0x98BADCFEu; + uint32_t h3 = 0x10325476u; + uint32_t h4 = 0xC3D2E1F0u; + + for (size_t chunk = 0; chunk < message.size(); chunk += 64) + { + std::array w = {}; + for (size_t i = 0; i < 16; ++i) + { + const size_t base = chunk + i * 4; + w[i] = (static_cast(message[base]) << 24) | + (static_cast(message[base + 1]) << 16) | + (static_cast(message[base + 2]) << 8) | + static_cast(message[base + 3]); + } + for (size_t i = 16; i < 80; ++i) + { + w[i] = rotateLeft(w[i - 3] ^ w[i - 8] ^ w[i - 14] ^ w[i - 16], 1); + } + + uint32_t a = h0; + uint32_t b = h1; + uint32_t c = h2; + uint32_t d = h3; + uint32_t e = h4; + + for (size_t i = 0; i < 80; ++i) + { + uint32_t f = 0; + uint32_t k = 0; + if (i < 20) + { + f = (b & c) | ((~b) & d); + k = 0x5A827999u; + } + else if (i < 40) + { + f = b ^ c ^ d; + k = 0x6ED9EBA1u; + } + else if (i < 60) + { + f = (b & c) | (b & d) | (c & d); + k = 0x8F1BBCDCu; + } + else + { + f = b ^ c ^ d; + k = 0xCA62C1D6u; + } + + const uint32_t temp = rotateLeft(a, 5) + f + e + k + w[i]; + e = d; + d = c; + c = rotateLeft(b, 30); + b = a; + a = temp; + } + + h0 += a; + h1 += b; + h2 += c; + h3 += d; + h4 += e; + } + + const std::array words = {h0, h1, h2, h3, h4}; + std::array digest = {}; + for (size_t i = 0; i < words.size(); ++i) + { + digest[i * 4] = static_cast((words[i] >> 24) & 0xFFu); + digest[i * 4 + 1] = static_cast((words[i] >> 16) & 0xFFu); + digest[i * 4 + 2] = static_cast((words[i] >> 8) & 0xFFu); + digest[i * 4 + 3] = static_cast(words[i] & 0xFFu); + } + return digest; + } + + static fs::path resolveDatabasePath(const fs::path &inputPath) + { + if (fs::exists(inputPath / "symbols.json") && fs::exists(inputPath / "tree.json")) + { + return inputPath; + } + + const fs::path resourcePath = inputPath / "symboldb" / "app" / "src" / "main" / "resources"; + if (fs::exists(resourcePath / "symbols.json") && fs::exists(resourcePath / "tree.json")) + { + return resourcePath; + } + + return inputPath; + } + + template + static std::string joinJsonChunks(const std::string_view (&chunks)[N]) + { + size_t size = 0; + for (std::string_view chunk : chunks) + { + size += chunk.size(); + } + + std::string joined; + joined.reserve(size); + for (std::string_view chunk : chunks) + { + joined.append(chunk.data(), chunk.size()); + } + return joined; + } + } + + class SceSymbolScanner::Impl + { + public: + bool loadDatabase(const std::string &databasePath) + { + m_lastError.clear(); + m_symbols.clear(); + m_root.reset(); + + try + { + if (databasePath.empty()) + { + loadEmbeddedSymbols(); + loadEmbeddedTree(); + } + else + { + const fs::path resolvedPath = resolveDatabasePath(databasePath); + loadSymbols(resolvedPath / "symbols.json"); + loadTree(resolvedPath / "tree.json"); + } + return true; + } + catch (const std::exception &e) + { + m_lastError = e.what(); + m_symbols.clear(); + m_root.reset(); + return false; + } + } + + std::vector scan(const std::vector
§ions) const + { + std::unordered_map> candidatesByAddress; + + if (!m_root) + { + return {}; + } + + for (const Section §ion : sections) + { + if (!section.isCode || section.data == nullptr || section.size < 4) + { + continue; + } + + for (uint32_t offset = 0; offset + 4 <= section.size; offset += 4) + { + const std::vector symbols = findCandidateSymbols(section, offset); + if (symbols.empty()) + { + continue; + } + + for (const SymbolRecord *symbol : symbols) + { + if (symbol == nullptr || !symbol->isFunction || symbol->size == 0) + { + continue; + } + + if (offset > section.size || symbol->size > section.size - offset) + { + continue; + } + + if (!matchesSymbol(section, offset, *symbol)) + { + continue; + } + + uint32_t actualSize = symbol->size; + while (actualSize <= section.size - offset - 4 && + readLe32(section.data + offset + actualSize) == 0) + { + actualSize += 4; + } + + Candidate candidate; + candidate.symbol = symbol; + candidate.address = section.address + offset; + candidate.actualSize = actualSize; + candidatesByAddress[candidate.address][makeSymbolKey(*symbol)] = candidate; + } + } + } + + return resolveCandidates(candidatesByAddress); + } + + const std::string &lastError() const + { + return m_lastError; + } + + private: + std::unordered_map m_symbols; + std::unique_ptr m_root; + std::string m_lastError; + + void loadEmbeddedSymbols() + { + const std::string jsonText = joinJsonChunks(sce_symbol_database::kSymbolsJsonChunks); + loadSymbolsJson(nlohmann::json::parse(jsonText)); + } + + void loadEmbeddedTree() + { + const std::string jsonText = joinJsonChunks(sce_symbol_database::kTreeJsonChunks); + loadTreeJson(nlohmann::json::parse(jsonText)); + } + + void loadSymbols(const fs::path &path) + { + std::ifstream file(path); + if (!file) + { + throw std::runtime_error("unable to open " + path.string()); + } + + const nlohmann::json root = nlohmann::json::parse(file); + loadSymbolsJson(root); + } + + void loadSymbolsJson(const nlohmann::json &root) + { + for (auto libraryIt = root.begin(); libraryIt != root.end(); ++libraryIt) + { + const std::string library = libraryIt.key(); + for (auto nameIt = libraryIt.value().begin(); nameIt != libraryIt.value().end(); ++nameIt) + { + const std::string name = nameIt.key(); + for (auto hashIt = nameIt.value().begin(); hashIt != nameIt.value().end(); ++hashIt) + { + const std::string hash = hashIt.key(); + for (auto variantIt = hashIt.value().begin(); variantIt != hashIt.value().end(); ++variantIt) + { + SymbolRecord symbol; + symbol.library = library; + symbol.name = name; + symbol.hashText = hash; + symbol.hash = parseSha1(hash); + symbol.variantHash = static_cast(std::stoul(variantIt.key(), nullptr, 16)); + + const nlohmann::json &jsonSymbol = variantIt.value(); + symbol.size = jsonSymbol.value("size", 0u); + + const std::string type = toUpperAscii(jsonSymbol.value("type", std::string())); + symbol.isFunction = (type == "FUNCTION" || type == "FUNC"); + + const nlohmann::json relocations = + jsonSymbol.value("relocations", nlohmann::json::object()); + for (auto relocationIt = relocations.begin(); relocationIt != relocations.end(); ++relocationIt) + { + RelocationRecord relocation; + relocation.offset = static_cast(std::stoul(relocationIt.key(), nullptr, 0)); + relocation.type = parseRelocationType(relocationIt.value().value("type", std::string("none"))); + symbol.relocations.push_back(relocation); + } + + m_symbols[makeSymbolKey(symbol)] = std::move(symbol); + } + } + } + } + } + + void loadTree(const fs::path &path) + { + std::ifstream file(path); + if (!file) + { + throw std::runtime_error("unable to open " + path.string()); + } + + const nlohmann::json root = nlohmann::json::parse(file); + loadTreeJson(root); + } + + void loadTreeJson(const nlohmann::json &root) + { + m_root = parseNode(root); + } + + std::unique_ptr parseNode(const nlohmann::json &jsonNode) const + { + auto node = std::make_unique(); + node->offset = jsonNode.value("offset", 0u); + + if (jsonNode.contains("symbols")) + { + for (const nlohmann::json &jsonSymbol : jsonNode["symbols"]) + { + MatchSymbolKey symbol; + symbol.library = jsonSymbol.value("library", std::string()); + symbol.name = jsonSymbol.value("name", std::string()); + symbol.hash = jsonSymbol.value("hash", std::string()); + symbol.variantHash = jsonSymbol.value("variant", 0u); + node->symbols.push_back(std::move(symbol)); + } + } + + if (jsonNode.contains("next")) + { + for (const nlohmann::json &jsonEdge : jsonNode["next"]) + { + MatchEdge edge; + const nlohmann::json &match = jsonEdge["match"]; + edge.value = match.value("value", 0u); + if (match.contains("relocation") && match["relocation"].contains("type")) + { + edge.relocationType = parseRelocationType(match["relocation"].value("type", std::string("none"))); + } + edge.child = parseNode(jsonEdge["child"]); + node->next.push_back(std::move(edge)); + } + } + + return node; + } + + const SymbolRecord *findSymbol(const MatchSymbolKey &key) const + { + const auto it = m_symbols.find(makeSymbolKey(key.library, key.name, key.hash, key.variantHash)); + if (it == m_symbols.end()) + { + return nullptr; + } + return &it->second; + } + + std::vector findCandidateSymbols(const Section §ion, uint32_t offset) const + { + std::vector symbols; + std::vector stack; + stack.push_back(m_root.get()); + + while (!stack.empty()) + { + const MatchNode *node = stack.back(); + stack.pop_back(); + + if (node == nullptr || node->offset > section.size || offset > section.size - node->offset) + { + continue; + } + if (section.size - offset - node->offset < 4) + { + continue; + } + + const uint32_t value = readLe32(section.data + offset + node->offset); + for (const MatchEdge &edge : node->next) + { + const uint32_t mask = relocationMask(edge.relocationType); + if ((value & mask) != (edge.value & mask)) + { + continue; + } + + for (const MatchSymbolKey &key : edge.child->symbols) + { + if (const SymbolRecord *symbol = findSymbol(key)) + { + symbols.push_back(symbol); + } + } + + if (!edge.child->next.empty()) + { + stack.push_back(edge.child.get()); + } + } + } + + return symbols; + } + + bool matchesSymbol(const Section §ion, uint32_t offset, const SymbolRecord &symbol) const + { + std::vector bytes(section.data + offset, section.data + offset + symbol.size); + for (const RelocationRecord &relocation : symbol.relocations) + { + if (relocation.offset > bytes.size() || bytes.size() - relocation.offset < 4) + { + continue; + } + + const uint32_t value = readLe32(bytes.data() + relocation.offset); + writeLe32(bytes.data() + relocation.offset, + disabledRelocationValue(relocation.type, value)); + } + + return sha1(bytes) == symbol.hash; + } + + std::vector resolveCandidates( + const std::unordered_map> &candidatesByAddress) const + { + std::vector matches; + matches.reserve(candidatesByAddress.size()); + + for (const auto &[address, candidatesByKey] : candidatesByAddress) + { + std::vector viable; + viable.reserve(candidatesByKey.size()); + for (const auto &[_, candidate] : candidatesByKey) + { + if (candidate.symbol != nullptr && candidate.symbol->staticBitCount() >= 256) + { + viable.push_back(&candidate); + } + } + + if (viable.empty()) + { + continue; + } + + // The upstream scanner also uses dependency and adjacent-library context. + // This analyzer integration keeps only unambiguous direct hash matches for now. + std::set identities; + for (const Candidate *candidate : viable) + { + identities.insert(candidate->symbol->library + '\n' + candidate->symbol->name); + } + if (identities.size() != 1) + { + continue; + } + + const Candidate *best = *std::max_element( + viable.begin(), + viable.end(), + [](const Candidate *lhs, const Candidate *rhs) + { + if (lhs->actualSize != rhs->actualSize) + { + return lhs->actualSize < rhs->actualSize; + } + return lhs->symbol->staticBitCount() < rhs->symbol->staticBitCount(); + }); + + SceSymbolMatch match; + match.address = address; + match.size = best->actualSize; + match.name = best->symbol->name; + match.library = best->symbol->library; + match.hash = best->symbol->hashText; + match.variantHash = best->symbol->variantHash; + matches.push_back(std::move(match)); + } + + std::sort(matches.begin(), matches.end(), + [](const SceSymbolMatch &a, const SceSymbolMatch &b) + { + return a.address < b.address; + }); + return matches; + } + }; + + SceSymbolScanner::SceSymbolScanner() + : m_impl(std::make_unique()) + { + } + + SceSymbolScanner::~SceSymbolScanner() = default; + + bool SceSymbolScanner::loadDatabase(const std::string &databasePath) + { + return m_impl->loadDatabase(databasePath); + } + + std::vector SceSymbolScanner::scan(const std::vector
§ions) const + { + return m_impl->scan(sections); + } + + const std::string &SceSymbolScanner::lastError() const + { + return m_impl->lastError(); + } +} diff --git a/ps2xAnalyzer/src/toml_generator.cpp b/ps2xAnalyzer/src/toml_generator.cpp new file mode 100644 index 0000000..bf16da2 --- /dev/null +++ b/ps2xAnalyzer/src/toml_generator.cpp @@ -0,0 +1,243 @@ +#include "ps2recomp/toml_generator.h" + +#include +#include +#include +#include +#include +#include +#include + +namespace fs = std::filesystem; + +namespace ps2recomp +{ + bool TomlGenerator::generate(const TomlGeneratorInput &input, const std::string &outputPath) + { + std::ofstream file(outputPath); + if (!file) + { + std::cerr << "Failed to open output file: " << outputPath << std::endl; + return false; + } + + fs::path elfPathObj(input.elfPath); + std::string elfFileName = elfPathObj.filename().string(); + + fs::path outputPathObj(outputPath); + fs::path outputDir = outputPathObj.parent_path(); + if (outputDir.empty()) + { + outputDir = "."; + } + + const fs::path generatedOutputDir = outputDir / "output"; + std::string outputDirStr = generatedOutputDir.generic_string() + "/"; + + if (!fs::exists(generatedOutputDir)) + { + fs::create_directories(generatedOutputDir); + } + + file << "# PS2Recomp configuration for: " << elfFileName << "\n"; + file << "# Generated by ElfAnalyzer\n\n"; + + file << "[general]\n"; + file << "# Path to input ELF file\n"; + file << "input = \"" << escapeBackslashes(input.elfPath) << "\"\n\n"; + + file << "# Path to Ghidra exported function map (optional CSV)\n"; + file << "ghidra_output = \"\"\n\n"; + + file << "# Path to output directory\n"; + file << "output = \"" << escapeBackslashes(outputDirStr) << "\"\n\n"; + + file << "# Single file output mode (recommended for large games)\n"; + file << "single_file_output = false\n\n"; + + file << "# Patch policy (instruction-driven handling is preferred for syscalls)\n"; + file << "patch_syscalls = false\n"; + file << "patch_cop0 = true\n"; + file << "patch_cache = true\n\n"; + + std::unordered_map functionNameCounts; + functionNameCounts.reserve(input.context.functions.size()); + for (const auto &func : input.context.functions) + { + if (!func.name.empty()) + { + functionNameCounts[func.name]++; + } + } + + auto makeSelector = [&](const std::string &name, uint32_t start) -> std::string + { + auto it = functionNameCounts.find(name); + if (it == functionNameCounts.end() || it->second <= 1) + { + return name; + } + + std::stringstream selector; + selector << name << "@0x" + << std::hex << std::uppercase << std::setw(8) << std::setfill('0') + << start; + return selector.str(); + }; + + auto collectFunctionSelectors = + [&](const std::unordered_set &nameSet) -> std::vector + { + std::vector orderedFunctions; + orderedFunctions.reserve(input.context.functions.size()); + for (const auto &func : input.context.functions) + { + orderedFunctions.push_back(&func); + } + + std::sort(orderedFunctions.begin(), orderedFunctions.end(), + [](const Function *a, const Function *b) + { return a->start < b->start; }); + + std::vector entries; + std::unordered_set seenEntries; + std::unordered_set coveredNames; + + for (const Function *func : orderedFunctions) + { + if (!nameSet.contains(func->name)) + { + continue; + } + + coveredNames.insert(func->name); + const std::string entry = makeSelector(func->name, func->start); + if (seenEntries.insert(entry).second) + { + entries.push_back(entry); + } + } + + std::vector leftovers; + leftovers.reserve(nameSet.size()); + for (const auto &name : nameSet) + { + if (!coveredNames.contains(name) && seenEntries.insert(name).second) + { + leftovers.push_back(name); + } + } + std::sort(leftovers.begin(), leftovers.end()); + entries.insert(entries.end(), leftovers.begin(), leftovers.end()); + + return entries; + }; + + const std::vector stubEntries = collectFunctionSelectors(input.libFunctions); + const std::vector untrackedStubEntries = collectFunctionSelectors(input.untrackedStubFunctions); + + file << "# Functions to stub (only names with runtime syscall/stub handlers)\n"; + file << "stubs = [\n"; + for (const auto &func : stubEntries) + { + file << " \"" << func << "\",\n"; + } + file << "]\n\n"; + + file << "# Detected library-like functions without runtime handlers.\n"; + file << "# This is informational only; PS2Recomp ignores this list and recompiles them normally.\n"; + file << "untracked_stubs = [\n"; + for (const auto &func : untrackedStubEntries) + { + file << " \"" << func << "\",\n"; + } + file << "]\n\n"; + + file << "# Legacy compatibility field. The analyzer no longer auto-populates skip entries.\n"; + file << "skip = []\n\n"; + + if (!input.mmioByInstructionAddress.empty()) + { + file << "# Detected MMIO accesses\n"; + file << "[mmio]\n"; + for (const auto &[instAddr, mmioAddr] : input.mmioByInstructionAddress) + { + file << "\"0x" << std::hex << instAddr << "\" = \"0x" << mmioAddr << "\"\n" + << std::dec; + } + file << "\n"; + } + + if (!input.jumpTables.empty()) + { + file << "# Jump tables detected in the program\n"; + file << "[jump_tables]\n"; + + for (const auto &jt : input.jumpTables) + { + file << "[[jump_tables.table]]\n"; + file << "address = \"0x" << std::hex << jt.address << "\"\n" + << std::dec; + file << "entries = [\n"; + + for (const auto &[index, target] : jt.entries) + { + file << " { index = " << index << ", target = \"0x" + << std::hex << target << "\" },\n" + << std::dec; + } + + file << "]\n\n"; + } + } + + if (!input.patches.empty()) + { + file << "# Patches to apply during recompilation\n"; + file << "[patches]\n"; + file << "# Individual instruction patches\n"; + file << "instructions = [\n"; + for (const auto &[address, value] : input.patches) + { + auto reasonIt = input.patchReasons.find(address); + const std::string reason = reasonIt == input.patchReasons.end() ? "" : reasonIt->second; + file << " { address = \"0x" << std::hex << address << "\", value = \"0x" + << std::hex << value << "\" }, # " << reason << "\n"; + } + file << "]\n\n"; + } + + file << "# Performance critical functions (may need manual optimization)\n"; + file << "[performance]\n"; + file << "critical = [\n"; + for (const auto &func : input.context.functions) + { + auto reasonIt = input.performanceCriticalReasons.find(func.start); + if (reasonIt != input.performanceCriticalReasons.end()) + { + file << " \"" << func.name << "\", # " << reasonIt->second << "\n"; + } + } + file << "]\n\n"; + + std::cout << "Generated TOML configuration: " << outputPath << std::endl; + return true; + } + + std::string TomlGenerator::escapeBackslashes(const std::string &path) + { + std::string result; + for (char ch : path) + { + if (ch == '\\') + { + result.append("\\\\"); + } + else + { + result.push_back(ch); + } + } + return result; + } +} diff --git a/ps2xRecomp/CMakeLists.txt b/ps2xRecomp/CMakeLists.txt index 69c3710..a053bb4 100644 --- a/ps2xRecomp/CMakeLists.txt +++ b/ps2xRecomp/CMakeLists.txt @@ -12,7 +12,7 @@ include(FetchContent) FetchContent_Declare( elfio GIT_REPOSITORY https://github.com/serge1/ELFIO.git - GIT_TAG 7d30a22fc5aac06adfe7887ae57f3701b6b5f913 + GIT_TAG Release_3.12 GIT_SHALLOW TRUE ) FetchContent_MakeAvailable(elfio) diff --git a/ps2xRecomp/example_config.toml b/ps2xRecomp/example_config.toml deleted file mode 100644 index 2cfb541..0000000 --- a/ps2xRecomp/example_config.toml +++ /dev/null @@ -1,66 +0,0 @@ -[general] -# Path to input ELF file -input = "path/to/your/ps2_game.elf" - -# Path to output directory -output = "output/" - -# Single file output mode (false for one file per function) -single_file_output = false - -# Lower peak memory by avoiding retained disassembly strings and forcing serial output generation. -low_memory_mode = false - -# Function generation workers. 0 uses nproc - 1 when at least 2 hardware threads are available; 1 disables parallel generation. -# Limited to nproc * 2 to avoid oversubscription. -output_worker_threads = 0 - -# Path to runtime header (optional) -runtime_header = "include/ps2_runtime.h" - -# Functions to stub (these will generate wrappers to runtime syscall/stub handlers when names match) -# You can also bind stripped functions by address with "handler@0xADDRESS". -# Generic temporary handlers are available: ret0, ret1, reta0. -stubs = [ - "printf", - "malloc", - "free", - "memcpy", - "memset", - "strncpy", - "sprintf", - # "sceCdRead@0x00123456", - # "SifLoadModule@0x00127890", - # "ret0@0x001D9410", -] - -# Functions to skip (these will not be recompiled) -skip = ["abort", "exit", "_exit"] - -# Patches to apply during recompilation -[patches] -# Individual instruction patches -instructions = [ - { address = "0x100004", value = "0x00000000" }, # NOP an instruction - { address = "0x100104", value = "0x24040000" }, # Change an immediate value -] - -# Function hook patches (not yet implemented) -[[patches.hook]] -function = "printf" -code = ''' -// Custom printf implementation -void printf(uint8_t* rdram, R5900Context* ctx) { - // Implementation here -} -''' - -# Function replacement patches (not yet implemented) -[[patches.func]] -address = "0x100000" -code = ''' -// Custom implementation for function at 0x100000 -void func_00100000(uint8_t* rdram, R5900Context* ctx) { - // Implementation here -} -''' diff --git a/ps2xRecomp/tools/ghidra/ExportPS2Functions.java b/ps2xRecomp/tools/ghidra/ExportPS2Functions.java index 4b10766..f68e285 100644 --- a/ps2xRecomp/tools/ghidra/ExportPS2Functions.java +++ b/ps2xRecomp/tools/ghidra/ExportPS2Functions.java @@ -32,33 +32,128 @@ import java.util.regex.Pattern; public class ExportPS2Functions extends GhidraScript { - private static final Set SYSTEM_FUNCTION_NAMES = new HashSet<>(Arrays.asList( - "entry", "_start", "_init", "_fini", - "abort", "exit", "_exit", - "_profiler_start", "_profiler_stop", - "__main", "__do_global_ctors", "__do_global_dtors", - "_GLOBAL__sub_I_", "_GLOBAL__sub_D_", - "__ctor_list", "__dtor_list", "_edata", "_end", - "etext", "__exidx_start", "__exidx_end", - "_ftext", "__bss_start", "__bss_start__", - "__bss_end__", "__end__", "_stack", "_dso_handle" - )); - - private static final Set DO_NOT_SKIP_OR_STUB = new HashSet<>(Arrays.asList( - "entry", - "_start", - "_init", - "topThread", - "cmd_sem_init" - )); - - private static final Set KNOWN_LOCAL_HELPER_NAMES = new HashSet<>(Arrays.asList( - "memcpy2", - "_memcpy2" + // For now I have to copy all functions from the runtime handler list + private static final Set RUNTIME_HANDLER_NAMES = new HashSet<>(Arrays.asList( + "FlushCache", "iFlushCache", "ResetEE", "SetMemoryMode", "InitThread", "CreateThread", + "DeleteThread", "StartThread", "ExitThread", "ExitDeleteThread", "TerminateThread", "SuspendThread", + "ResumeThread", "GetThreadId", "ReferThreadStatus", "iReferThreadStatus", "SleepThread", "WakeupThread", + "iWakeupThread", "CancelWakeupThread", "iCancelWakeupThread", "ChangeThreadPriority", "iChangeThreadPriority", "RotateThreadReadyQueue", + "iRotateThreadReadyQueue", "ReleaseWaitThread", "iReleaseWaitThread", "CreateSema", "DeleteSema", "SignalSema", + "iSignalSema", "WaitSema", "PollSema", "iPollSema", "ReferSemaStatus", "iReferSemaStatus", + "CreateEventFlag", "DeleteEventFlag", "SetEventFlag", "iSetEventFlag", "ClearEventFlag", "iClearEventFlag", + "WaitEventFlag", "PollEventFlag", "iPollEventFlag", "ReferEventFlagStatus", "iReferEventFlagStatus", "InitAlarm", + "SetAlarm", "iSetAlarm", "CancelAlarm", "iCancelAlarm", "ReleaseAlarm", "iReleaseAlarm", + "AddIntcHandler", "AddIntcHandler2", "RemoveIntcHandler", "AddDmacHandler", "AddDmacHandler2", "RemoveDmacHandler", + "EnableIntc", "iEnableIntc", "DisableIntc", "iDisableIntc", "EnableDmac", "iEnableDmac", + "DisableDmac", "iDisableDmac", "SifStopModule", "SifLoadModule", "SifInitRpc", "SifBindRpc", + "SifCallRpc", "SifRegisterRpc", "SifCheckStatRpc", "SifSetRpcQueue", "SifRemoveRpcQueue", "SifRemoveRpc", + "sceSifCallRpc", "sceSifSendCmd", "sceRpcGetPacket", "fioOpen", "fioClose", "fioRead", + "fioWrite", "fioLseek", "fioMkdir", "fioChdir", "fioRmdir", "fioGetstat", + "fioRemove", "SetGsCrt", "GsSetCrt", "GsGetIMR", "iGsGetIMR", "GsPutIMR", + "iGsPutIMR", "SetVSyncFlag", "SetSyscall", "GsSetVideoMode", "GetOsdConfigParam", "SetOsdConfigParam", + "EnableCache", "DisableCache", "GetRomName", "SifLoadElfPart", "sceSifLoadElf", "sceSifLoadElfPart", + "sceSifLoadModule", "sceSifLoadModuleBuffer", "SetupThread", "EndOfHeap", "GetMemorySize", "Deci2Call", + "QueryBootMode", "GetThreadTLS", "RegisterExitHandler", "ret0", "ret1", "reta0", + "calloc_r", "free_r", "malloc_r", "malloc_trim_r", "mbtowc_r", "printf_r", + "abs", "__ieee754_rem_pio2f", "__kernel_cosf", "__kernel_sinf", "atan", "atan2", + "calloc", "ceil", "close", "cos", "exit", "exp", + "fabs", "fclose", "fflush", "floor", "fopen", "fprintf", + "fread", "free", "fseek", "fstat", "ftell", "fwrite", + "getpid", "log", "log10", "lseek", "malloc", "memchr", + "memcmp", "memcpy", "memmove", "memset", "open", "pow", + "printf", "puts", "rand", "read", "realloc", "sin", + "snprintf", "sprintf", "sqrt", "srand", "stat", "strcasecmp", + "strcat", "strchr", "strcmp", "strcpy", "strlen", "strncat", + "strncmp", "strncpy", "strrchr", "strstr", "tan", "vfprintf", + "vsprintf", "write", "DmaAddr", "builtin_set_imask", "sceCdRI", "sceCdRM", + "sceDevVif0Reset", "sceDevVu0Reset", "sceFsDbChk", "sceFsIntrSigSema", "sceFsSemExit", "sceFsSemInit", + "sceFsSigSema", "sceIDC", "sceMpegFlush", "sceRpcFreePacket", "sceRpcGetFPacket", "sceRpcGetFPacket2", + "sceSDC", "sceSifCmdIntrHdlr", "sceVu0ecossin", "mcCallMessageTypeSe", "mcCheckReadStartConfigFile", "mcCheckReadStartSaveFile", + "mcCheckWriteStartConfigFile", "mcCheckWriteStartSaveFile", "mcCreateConfigInit", "mcCreateFileSelectWindow", "mcCreateIconInit", "mcCreateSaveFileInit", + "mcDispFileName", "mcDispFileNumber", "mcDispWindowCurSol", "mcDispWindowFoundtion", "mcDisplayFileSelectWindow", "mcDisplaySelectFileInfo", + "mcDisplaySelectFileInfoMesCount", "mcGetConfigCapacitySize", "mcGetFileSelectWindowCursol", "mcGetFreeCapacitySize", "mcGetIconCapacitySize", "mcGetIconFileCapacitySize", + "mcGetPortSelectDirInfo", "mcGetSaveFileCapacitySize", "mcGetStringEnd", "mcMoveFileSelectWindowCursor", "mcNewCreateConfigFile", "mcNewCreateIcon", + "mcNewCreateSaveFile", "mcReadIconData", "mcReadStartConfigFile", "mcReadStartSaveFile", "mcSelectFileInfoInit", "mcSelectSaveFileCheck", + "mcSetFileSelectWindowCursol", "mcSetFileSelectWindowCursolInit", "mcSetStringSaveFile", "mcSetTyepWriteMode", "mcWriteIconData", "mcWriteStartConfigFile", + "mcWriteStartSaveFile", "mceGetInfoApdx", "mceIntrReadFixAlign", "mceStorePwd", "sceCdApplyNCmd", "sceCdBreak", + "sceCdCallback", "sceCdChangeThreadPriority", "sceCdDelayThread", "sceCdDiskReady", "sceCdGetDiskType", "sceCdGetError", + "sceCdGetReadPos", "sceCdGetToc", "sceCdInit", "sceCdInitEeCB", "sceCdIntToPos", "sceCdMmode", + "sceCdNcmdDiskReady", "sceCdPause", "sceCdPosToInt", "sceCdRead", "sceCdReadChain", "sceCdReadClock", + "sceCdReadIOPm", "sceCdSearchFile", "sceCdSeek", "sceCdStInit", "sceCdStPause", "sceCdStRead", + "sceCdStResume", "sceCdStSeek", "sceCdStSeekF", "sceCdStStart", "sceCdStStat", "sceCdStStop", + "sceCdStandby", "sceCdStatus", "sceCdStop", "sceCdStream", "sceCdSync", "sceCdSyncS", + "sceCdTrayReq", "sceClose", "sceDeci2Close", "sceDeci2ExLock", "sceDeci2ExRecv", "sceDeci2ExReqSend", + "sceDeci2ExSend", "sceDeci2ExUnLock", "sceDeci2Open", "sceDeci2Poll", "sceDeci2ReqSend", "sceDmaCallback", + "sceDmaDebug", "sceDmaGetChan", "sceDmaGetEnv", "sceDmaLastSyncTime", "sceDmaPause", "sceDmaPutEnv", + "sceDmaPutStallAddr", "sceDmaRecv", "sceDmaRecvI", "sceDmaRecvN", "sceDmaReset", "sceDmaRestart", + "sceDmaSend", "sceDmaSendI", "sceDmaSendM", "sceDmaSendN", "sceDmaSync", "sceDmaSyncN", + "sceDmaWatch", "sceFsInit", "sceFsReset", "sceGifPkAddGsAD", "sceGifPkAddGsData", "sceGifPkCloseGifTag", + "sceGifPkCnt", "sceGifPkEnd", "sceGifPkInit", "sceGifPkOpenGifTag", "sceGifPkRef", "sceGifPkRefLoadImage", + "sceGifPkReset", "sceGifPkReserve", "sceGifPkTerminate", "sceGsExecLoadImage", "sceGsExecStoreImage", "sceGsGetGParam", + "sceGsPutDispEnv", "sceGsPutDrawEnv", "sceGsResetGraph", "sceGsResetPath", "sceGsSetDefClear", "sceGsSetDefDBuffDc", + "sceGsSetDefDBuff", "sceGsSetDefDispEnv", "sceGsSetDefDrawEnv", "sceGsSetDefDrawEnv2", "sceGsSetDefLoadImage", "sceGsSetDefStoreImage", + "sceGsSwapDBuffDc", "sceGsSwapDBuff", "sceGsSyncPath", "sceGsSyncV", "sceGsSyncVCallback", "sceGszbufaddr", + "sceVif1PkAddGsAD", "sceVif1PkAlign", "sceVif1PkCall", "sceVif1PkCloseDirectCode", "sceVif1PkCloseGifTag", "sceVif1PkCnt", + "sceVif1PkEnd", "sceVif1PkInit", "sceVif1PkOpenDirectCode", "sceVif1PkOpenGifTag", "sceVif1PkReset", "sceVif1PkReserve", + "sceVif1PkTerminate", "sceeFontInit", "sceeFontLoadFont", "sceeFontPrintfAt", "sceeFontPrintfAt2", "sceeFontGenerateString", + "sceeFontClose", "sceeFontSetColour", "sceeFontSetMode", "sceeFontSetFont", "sceeFontSetScale", "sceIoctl", + "sceIpuInit", "sceIpuRestartDMA", "sceIpuStopDMA", "sceIpuSync", "sceLseek", "sceMcChangeThreadPriority", + "sceMcChdir", "sceMcClose", "sceMcDelete", "sceMcEnd", "sceMcFlush", "sceMcFormat", + "sceMcGetDir", "sceMcGetEntSpace", "sceMcGetInfo", "sceMcGetSlotMax", "sceMcInit", "sceMcMkdir", + "sceMcOpen", "sceMcRead", "sceMcRename", "sceMcSeek", "sceMcSetFileInfo", "sceMcSync", + "sceMcUnformat", "sceMcWrite", "sceMpegAddBs", "sceMpegAddCallback", "sceMpegAddStrCallback", "sceMpegClearRefBuff", + "sceMpegCreate", "sceMpegDelete", "sceMpegDemuxPss", "sceMpegDemuxPssRing", "sceMpegDispCenterOffX", "sceMpegDispCenterOffY", + "sceMpegDispHeight", "sceMpegDispWidth", "sceMpegGetDecodeMode", "sceMpegGetPicture", "sceMpegGetPictureRAW8", "sceMpegGetPictureRAW8xy", + "sceMpegInit", "sceMpegIsEnd", "sceMpegIsRefBuffEmpty", "sceMpegReset", "sceMpegResetDefaultPtsGap", "sceMpegSetDecodeMode", + "sceMpegSetDefaultPtsGap", "sceMpegSetImageBuff", "sceOpen", "scePadEnd", "scePadEnterPressMode", "scePadExitPressMode", + "scePadGetButtonMask", "scePadGetDmaStr", "scePadGetFrameCount", "scePadGetModVersion", "scePadGetPortMax", "scePadGetReqState", + "scePadGetSlotMax", "scePadGetState", "scePadInfoAct", "scePadInfoComb", "scePadInfoMode", "scePadInfoPressMode", + "scePadInit", "scePadInit2", "scePadPortClose", "scePadPortOpen", "scePadRead", "scePadReqIntToStr", + "scePadSetActAlign", "scePadSetActDirect", "scePadSetButtonInfo", "scePadSetMainMode", "scePadSetReqState", "scePadSetVrefParam", + "scePadSetWarningLevel", "scePadStateIntToStr", "scePrintf", "sceRead", "sceResetttyinit", "sceSSyn_BreakAtick", + "sceSSyn_ClearBreakAtick", "sceSSyn_SendExcMsg", "sceSSyn_SendNrpnMsg", "sceSSyn_SendRpnMsg", "sceSSyn_SendShortMsg", "sceSSyn_SetChPriority", + "sceSSyn_SetMasterVolume", "sceSSyn_SetOutPortVolume", "sceSSyn_SetOutputAssign", "sceSSyn_SetOutputMode", "sceSSyn_SetPortMaxPoly", "sceSSyn_SetPortVolume", + "sceSSyn_SetTvaEnvMode", "sceSdCallBack", "sceSdRemote", "sceSdRemoteInit", "sceSdTransToIOP", "sceSetBrokenLink", + "sceSetPtm", "sceSifAddCmdHandler", "sceSifAllocIopHeap", "sceSifAllocSysMemory", "sceSifBindRpc", "sceSifCheckStatRpc", + "sceSifDmaStat", "sceSifExecRequest", "sceSifExitCmd", "sceSifExitRpc", "sceSifFreeIopHeap", "sceSifFreeSysMemory", + "sceSifGetDataTable", "sceSifGetIopAddr", "sceSifGetNextRequest", "sceSifGetOtherData", "sceSifGetReg", "sceSifGetSreg", + "sceSifInitCmd", "sceSifInitIopHeap", "sceSifInitRpc", "sceSifIsAliveIop", "sceSifLoadFileReset", "sceSifLoadIopHeap", + "sceSifRebootIop", "sceSifRegisterRpc", "sceSifRemoveCmdHandler", "sceSifRemoveRpc", "sceSifRemoveRpcQueue", "sceSifResetIop", + "sceSifRpcLoop", "sceSifSetCmdBuffer", "sceSifSetDChain", "sceSifSetDma", "isceSifSetDChain", "isceSifSetDma", + "sceSifSetIopAddr", "sceSifSetReg", "sceSifSetRpcQueue", "sceSifSetSreg", "sceSifSetSysCmdBuffer", "sceSifStopDma", + "sceSifSyncIop", "sceSifWriteBackDCache", "sceSynthSizerLfoTriangle", "sceSynthesizerAmpProcI", "sceSynthesizerAmpProcNI", "sceSynthesizerAssignAllNoteOff", + "sceSynthesizerAssignAllSoundOff", "sceSynthesizerAssignHoldChange", "sceSynthesizerAssignNoteOff", "sceSynthesizerAssignNoteOn", "sceSynthesizerCalcEnv", "sceSynthesizerCalcPortamentPitch", + "sceSynthesizerCalcTvfCoefAll", "sceSynthesizerCalcTvfCoefF0", "sceSynthesizerCent2PhaseInc", "sceSynthesizerChangeEffectSend", "sceSynthesizerChangeHsPanpot", "sceSynthesizerChangeNrpnCutOff", + "sceSynthesizerChangeNrpnLfoDepth", "sceSynthesizerChangeNrpnLfoRate", "sceSynthesizerChangeOutAttrib", "sceSynthesizerChangeOutVol", "sceSynthesizerChangePanpot", "sceSynthesizerChangePartBendSens", + "sceSynthesizerChangePartExpression", "sceSynthesizerChangePartHsExpression", "sceSynthesizerChangePartHsPitchBend", "sceSynthesizerChangePartModuration", "sceSynthesizerChangePartPitchBend", "sceSynthesizerChangePartVolume", + "sceSynthesizerChangePortamento", "sceSynthesizerChangePortamentoTime", "sceSynthesizerClearKeyMap", "sceSynthesizerClearSpr", "sceSynthesizerCopyOutput", "sceSynthesizerDmaFromSPR", + "sceSynthesizerDmaSpr", "sceSynthesizerDmaToSPR", "sceSynthesizerGetPartOutLevel", "sceSynthesizerGetPartial", "sceSynthesizerGetSampleParam", "sceSynthesizerHsMessage", + "sceSynthesizerLfoNone", "sceSynthesizerLfoProc", "sceSynthesizerLfoSawDown", "sceSynthesizerLfoSawUp", "sceSynthesizerLfoSquare", "sceSynthesizerReadNoise", + "sceSynthesizerReadNoiseAdd", "sceSynthesizerReadSample16", "sceSynthesizerReadSample16Add", "sceSynthesizerReadSample8", "sceSynthesizerReadSample8Add", "sceSynthesizerResetPart", + "sceSynthesizerRestorDma", "sceSynthesizerSelectPatch", "sceSynthesizerSendShortMessage", "sceSynthesizerSetMasterVolume", "sceSynthesizerSetRVoice", "sceSynthesizerSetupDma", + "sceSynthesizerSetupLfo", "sceSynthesizerSetupMidiModuration", "sceSynthesizerSetupMidiPanpot", "sceSynthesizerSetupNewNoise", "sceSynthesizerSetupReleaseEnv", "sceSynthesizerSetupTruncateTvaEnv", + "sceSynthesizerSetupTruncateTvfPitchEnv", "sceSynthesizerSetuptEnv", "sceSynthesizerTonegenerator", "sceSynthesizerTransposeMatrix", "sceSynthesizerTvfProcI", "sceSynthesizerTvfProcNI", + "sceSynthesizerWaitDmaFromSPR", "sceSynthesizerWaitDmaToSPR", "sceSynthsizerGetDrumPatch", "sceSynthsizerGetMeloPatch", "sceSynthsizerLfoNoise", "sceTtyHandler", + "sceTtyInit", "sceTtyRead", "sceTtyWrite", "sceVpu0Reset", "sceVu0AddVector", "sceVu0ApplyMatrix", + "sceVu0CameraMatrix", "sceVu0ClampVector", "sceVu0ClipAll", "sceVu0ClipScreen", "sceVu0ClipScreen3", "sceVu0CopyMatrix", + "sceVu0CopyVector", "sceVu0CopyVectorXYZ", "sceVu0DivVector", "sceVu0DivVectorXYZ", "sceVu0DropShadowMatrix", "sceVu0FTOI0Vector", + "sceVu0FTOI4Vector", "sceVu0ITOF0Vector", "sceVu0ITOF12Vector", "sceVu0ITOF4Vector", "sceVu0InnerProduct", "sceVu0InterVector", + "sceVu0InterVectorXYZ", "sceVu0InversMatrix", "sceVu0LightColorMatrix", "sceVu0MulMatrix", "sceVu0MulVector", "sceVu0NormalLightMatrix", + "sceVu0Normalize", "sceVu0OuterProduct", "sceVu0RotMatrix", "sceVu0RotMatrixX", "sceVu0RotMatrixY", "sceVu0RotMatrixZ", + "sceVu0RotTransPers", "sceVu0RotTransPersN", "sceVu0ScaleVector", "sceVu0ScaleVectorXYZ", "sceVu0SubVector", "sceVu0TransMatrix", + "sceVu0TransposeMatrix", "sceVu0UnitMatrix", "sceVu0ViewScreenMatrix", "sceWrite" )); private static final Set PS2_API_PREFIXES = new HashSet<>(Arrays.asList( - "sce", "sif", "gs", "dma", "iop", "vif", "spu", "mc", "libc" + "sce", "Sce", "SCE", + "sif", "Sif", "SIF", + "gs", "Gs", "GS", + "dma", "Dma", "DMA", + "iop", "Iop", "IOP", + "vif", "Vif", "VIF", + "spu", "Spu", "SPU", + "mc", "Mc", "MC", + "libc", "Libc", "LIBC" )); private static final Set KNOWN_STDLIB_NAMES = new HashSet<>(Arrays.asList( @@ -112,7 +207,7 @@ public class ExportPS2Functions extends GhidraScript { private enum ClassificationKind { STUB, - SKIP, + UNTRACKED_STUB, NONE } @@ -161,6 +256,32 @@ public class ExportPS2Functions extends GhidraScript { return value.startsWith("_") && value.length() > 1 ? value.substring(1) : value; } + private static String resolveRuntimeHandlerName(String name) { + if (name == null || name.isEmpty()) { + return ""; + } + + if (RUNTIME_HANDLER_NAMES.contains(name)) { + return name; + } + + String normalized = normalizeOptionalLeadingUnderscore(name); + if (!normalized.equals(name) && RUNTIME_HANDLER_NAMES.contains(normalized)) { + return normalized; + } + + String underscored = "_" + name; + if (!name.startsWith("_") && RUNTIME_HANDLER_NAMES.contains(underscored)) { + return underscored; + } + + return ""; + } + + private static boolean hasRuntimeHandler(String name) { + return !resolveRuntimeHandlerName(name).isEmpty(); + } + private static boolean hasReliableSymbolName(String name) { if (name == null || name.isEmpty()) { return false; @@ -199,23 +320,24 @@ public class ExportPS2Functions extends GhidraScript { return false; } - String base = normalizeOptionalLeadingUnderscore(name).toLowerCase(); + String base = normalizeOptionalLeadingUnderscore(name); for (String prefix : PS2_API_PREFIXES) { - if (base.startsWith(prefix)) { + if (!base.startsWith(prefix)) { + continue; + } + + if (base.length() == prefix.length()) { + return true; + } + + if (!Character.isLowerCase(base.charAt(prefix.length()))) { return true; } } + return false; } - private static boolean isSystemSymbolNameForHeuristics(String name) { - if (!hasReliableSymbolName(name)) { - return false; - } - - return SYSTEM_FUNCTION_NAMES.contains(name) || name.startsWith("__") || name.startsWith("."); - } - private static boolean matchesWithOptionalLeadingUnderscoreAlias(String candidate, Set names) { if (candidate == null || candidate.isEmpty() || names == null || names.isEmpty()) { return false; @@ -242,14 +364,15 @@ public class ExportPS2Functions extends GhidraScript { return false; } - if (KNOWN_LOCAL_HELPER_NAMES.contains(name)) { - return false; + if (hasRuntimeHandler(name)) { + return true; } String normalized = normalizeOptionalLeadingUnderscore(name); - if (KNOWN_LOCAL_HELPER_NAMES.contains(normalized)) { - return false; + if (hasRuntimeHandler(normalized)) { + return true; } + if (KERNEL_RUNTIME_NAME_PATTERN.matcher(normalized).matches()) { return true; } @@ -258,7 +381,7 @@ public class ExportPS2Functions extends GhidraScript { return true; } - if (hasPs2ApiPrefix(normalized)) { + if (hasPs2ApiPrefix(name)) { return true; } @@ -271,36 +394,32 @@ public class ExportPS2Functions extends GhidraScript { } String name = function.getName(); - if (name == null || name.isEmpty() || DO_NOT_SKIP_OR_STUB.contains(name)) { - return new ClassificationResult(ClassificationKind.NONE, name == null ? "" : name); + if (name == null || name.isEmpty()) { + return new ClassificationResult(ClassificationKind.NONE, ""); + } + + String runtimeName = resolveRuntimeHandlerName(name); + if (!runtimeName.isEmpty()) { + return new ClassificationResult(ClassificationKind.STUB, runtimeName); } if (function.isThunk()) { - if (isLibraryFunctionName(name)) { - return new ClassificationResult(ClassificationKind.STUB, name); - } - Function target = function.getThunkedFunction(true); if (target != null) { String targetName = target.getName(); + String targetRuntimeName = resolveRuntimeHandlerName(targetName); + if (!targetRuntimeName.isEmpty()) { + return new ClassificationResult(ClassificationKind.STUB, targetRuntimeName); + } + if (isLibraryFunctionName(targetName)) { - return new ClassificationResult(ClassificationKind.STUB, targetName); + return new ClassificationResult(ClassificationKind.UNTRACKED_STUB, targetName); } } - - if (isSystemSymbolNameForHeuristics(name)) { - return new ClassificationResult(ClassificationKind.SKIP, name); - } - - return new ClassificationResult(ClassificationKind.NONE, name); } if (isLibraryFunctionName(name)) { - return new ClassificationResult(ClassificationKind.STUB, name); - } - - if (isSystemSymbolNameForHeuristics(name)) { - return new ClassificationResult(ClassificationKind.SKIP, name); + return new ClassificationResult(ClassificationKind.UNTRACKED_STUB, name); } return new ClassificationResult(ClassificationKind.NONE, name); @@ -313,48 +432,6 @@ public class ExportPS2Functions extends GhidraScript { return name; } - private static List collectFunctionSelectors( - Set names, - List records, - boolean includeAddress - ) { - List ordered = new ArrayList<>(records); - ordered.sort(Comparator.comparingLong(r -> r.start)); - - List selectors = new ArrayList<>(); - Set seenSelectors = new LinkedHashSet<>(); - Set coveredNames = new HashSet<>(); - - for (FunctionRecord record : ordered) { - if (record.name == null || !names.contains(record.name)) { - continue; - } - - coveredNames.add(record.name); - String selector = makeSelector(record.name, record.start, includeAddress); - if (seenSelectors.add(selector)) { - selectors.add(selector); - } - } - - if (includeAddress) { - List unresolved = new ArrayList<>(); - for (String name : names) { - if (!coveredNames.contains(name)) { - unresolved.add(name); - } - } - Collections.sort(unresolved); - for (String name : unresolved) { - System.out.println("Warning: unresolved selector name without address, omitting from TOML: " + name); - } - } else { - Collections.sort(selectors); - } - - return selectors; - } - private boolean isExecutableAddress(Address address) { if (address == null) { return false; @@ -534,9 +611,7 @@ public class ExportPS2Functions extends GhidraScript { return; } - boolean exportCsv = askYesNo("Export CSV", "Also export compatibility CSV function map?"); - File csvFile = null; - csvFile = askFile("Choose output CSV file", "Save"); + File csvFile = askFile("Choose output CSV file", "Save"); if (csvFile == null) { return; } @@ -545,8 +620,8 @@ public class ExportPS2Functions extends GhidraScript { FunctionIterator it = fm.getFunctions(true); List functionRecords = new ArrayList<>(); - Set stubNames = new LinkedHashSet<>(); - Set skipNames = new LinkedHashSet<>(); + Set stubSelectors = new LinkedHashSet<>(); + Set untrackedStubSelectors = new LinkedHashSet<>(); int uncategorizedCount = 0; while (it.hasNext() && !monitor.isCancelled()) { @@ -566,9 +641,9 @@ public class ExportPS2Functions extends GhidraScript { ClassificationResult classification = classifyFunction(func); if (classification.kind == ClassificationKind.STUB) { - stubNames.add(classification.name); - } else if (classification.kind == ClassificationKind.SKIP) { - skipNames.add(classification.name); + stubSelectors.add(makeSelector(classification.name, record.start, true)); + } else if (classification.kind == ClassificationKind.UNTRACKED_STUB) { + untrackedStubSelectors.add(makeSelector(classification.name, record.start, true)); } else { uncategorizedCount++; } @@ -580,9 +655,6 @@ public class ExportPS2Functions extends GhidraScript { exportRecords.addAll(labelRecords); exportRecords.sort(Comparator.comparingLong(r -> r.start)); - List stubSelectors = collectFunctionSelectors(stubNames, exportRecords, true); - List skipSelectors = collectFunctionSelectors(skipNames, exportRecords, true); - try (PrintWriter writer = new PrintWriter(csvFile)) { writer.println("Name,Start,End,Size"); for (FunctionRecord record : exportRecords) { @@ -608,9 +680,10 @@ public class ExportPS2Functions extends GhidraScript { writer.println("# Auto-generated by ExportPS2Functions.java"); writer.println("#"); writer.println("# Classification policy (aligned with analyzer intent):"); - writer.println("# - library/runtime names -> [general].stubs"); - writer.println("# - system names -> [general].skip"); - writer.println("# - others are left for recompilation"); + writer.println("# - runtime-known names -> [general].stubs"); + writer.println("# - library-like names without runtime handlers -> [general].untracked_stubs"); + writer.println("# - [general].skip is retained empty for legacy compatibility"); + writer.println("# - no SCE symbol database is used by this Ghidra script"); writer.println(); writer.println("[general]"); @@ -626,11 +699,12 @@ public class ExportPS2Functions extends GhidraScript { writer.println(" " + tomlString(selector) + ","); } writer.println("]"); - writer.println("skip = ["); - for (String selector : skipSelectors) { + writer.println("untracked_stubs = ["); + for (String selector : untrackedStubSelectors) { writer.println(" " + tomlString(selector) + ","); } writer.println("]"); + writer.println("skip = []"); writer.println(); writer.println("[ghidra_export]"); @@ -638,15 +712,16 @@ public class ExportPS2Functions extends GhidraScript { writer.println("code_label_count = " + labelRecords.size()); writer.println("csv_record_count = " + exportRecords.size()); writer.println("stub_count = " + stubSelectors.size()); - writer.println("skip_count = " + skipSelectors.size()); + writer.println("untracked_stub_count = " + untrackedStubSelectors.size()); + writer.println("skip_count = 0"); writer.println("uncategorized_count = " + uncategorizedCount); - writer.println("runtime_call_name_count = 0"); - writer.println("runtime_call_source = \"regex_only\""); + writer.println("runtime_call_name_count = " + RUNTIME_HANDLER_NAMES.size()); + writer.println("runtime_call_source = \"embedded_ps2_call_list_snapshot\""); } println(String.format("Exported %d functions and %d executable labels to %s", functionCount, labelRecords.size(), csvFile.getAbsolutePath())); - println("Using regex-only runtime/library classification (no ps2_call_list.h)."); + println(String.format("Using %d embedded runtime handler names from ps2_call_list.h snapshot.", RUNTIME_HANDLER_NAMES.size())); println(String.format("Exported TOML config to %s", tomlFile.getAbsolutePath())); } } diff --git a/ps2xTest/src/elf_analyzer_tests.cpp b/ps2xTest/src/elf_analyzer_tests.cpp index 7d2ddd9..64df23f 100644 --- a/ps2xTest/src/elf_analyzer_tests.cpp +++ b/ps2xTest/src/elf_analyzer_tests.cpp @@ -1,10 +1,10 @@ #include "MiniTest.h" #include "ps2recomp/elf_analyzer.h" +#include "ps2recomp/function_classifier.h" #include "ps2recomp/instructions.h" #include "ps2recomp/types.h" #include -#include #include using namespace ps2recomp; @@ -47,9 +47,24 @@ void register_elf_analyzer_tests() t.IsFalse(analyzer.isLibrarySymbolNameForHeuristics("bhEne13_Brain"), "named game function should not be classified as library"); + t.IsFalse(analyzer.isLibrarySymbolNameForHeuristics("ScenePrerender"), + "game functions beginning with Scene should not be classified as sce SDK APIs"); t.IsFalse(analyzer.isLibrarySymbolNameForHeuristics("sub_00100C00"), "unreliable auto-generated names should not be classified as library"); }); + tc.Run("runtime handler filter keeps unsupported SDK names informational", [](TestCase &t) + { + t.IsTrue(FunctionClassifier::hasRuntimeHandler("sceCdRead"), + "sceCdRead should resolve to a known runtime stub handler"); + t.IsTrue(FunctionClassifier::hasRuntimeHandler("_printf"), + "runtime handler resolution should accept leading underscore aliases"); + t.IsTrue(FunctionClassifier::hasRuntimeHandler("__ieee754_rem_pio2f"), + "double-underscore libm helpers should be active stubs only when the runtime knows them"); + t.IsTrue(FunctionClassifier::hasRuntimeHandler("__kernel_cosf"), + "runtime-known libm kernel helpers should resolve exactly"); + t.IsFalse(FunctionClassifier::hasRuntimeHandler("scePP1_Kick"), + "SDK functions without runtime handlers should not be active stubs"); }); + tc.Run("reliable-symbol heuristic filters autogenerated names", [](TestCase &t) { t.IsTrue(ElfAnalyzer::isReliableSymbolNameForHeuristics("bhEne13_Brain"), @@ -70,37 +85,6 @@ void register_elf_analyzer_tests() t.IsFalse(ElfAnalyzer::isReliableSymbolNameForHeuristics("0x00100ABC"), "pure hex-style symbol should be treated as unreliable"); }); - tc.Run("system-symbol heuristic is strict to system patterns", [](TestCase &t) - { - t.IsTrue(ElfAnalyzer::isSystemSymbolNameForHeuristics("__main"), - "__main should be classified as system"); - t.IsTrue(ElfAnalyzer::isSystemSymbolNameForHeuristics("_start"), - "_start should be classified as system"); - t.IsTrue(ElfAnalyzer::isSystemSymbolNameForHeuristics(".text.startup"), - ".text.* should be classified as system"); - - t.IsFalse(ElfAnalyzer::isSystemSymbolNameForHeuristics("bhObj001"), - "game symbol should not be classified as system"); - t.IsFalse(ElfAnalyzer::isSystemSymbolNameForHeuristics("SetupSoundDriver"), - "engine/game symbol should not be classified as system"); - t.IsFalse(ElfAnalyzer::isSystemSymbolNameForHeuristics("sub_00100C00"), - "unreliable names should not be considered system by this classifier"); }); - - tc.Run("system skip keeps forced entry names recompiled", [](TestCase &t) - { - std::unordered_set forcedNames{"_start", "_init"}; - t.IsFalse(ElfAnalyzer::shouldSkipSystemSymbolForHeuristics("_start", forcedNames), - "forced entry name _start should not be skipped"); - t.IsFalse(ElfAnalyzer::shouldSkipSystemSymbolForHeuristics("_init", forcedNames), - "forced entry name _init should not be skipped"); - - t.IsTrue(ElfAnalyzer::shouldSkipSystemSymbolForHeuristics("__main", forcedNames), - "system symbol not marked as forced should still be skipped"); - t.IsTrue(ElfAnalyzer::shouldSkipSystemSymbolForHeuristics("__divdi3", {}), - "compiler helper __divdi3 should be skippable as system/runtime"); - t.IsFalse(ElfAnalyzer::shouldSkipSystemSymbolForHeuristics("ps2___divdi3", {}), - "generated ps2_ wrapper names should not be treated as system"); }); - tc.Run("entry-point mapping handles exact inside and fallback", [](TestCase &t) { Function f1; @@ -138,7 +122,7 @@ void register_elf_analyzer_tests() t.Equals(ElfAnalyzer::findFallbackEntryFunctionIndexForHeuristics(fallbackOnly), 0, "fallback should also accept 0x80100000"); }); - tc.Run("signal-based skip heuristics keep reliable names and skip unreliable/system", [](TestCase &t) + tc.Run("risk signal detection reports hardware io mmi and self modifying code", [](TestCase &t) { // Hardware I/O signal via LUI upper address in I/O region. Instruction hw = makeInstruction(0x1000, OPCODE_LUI); @@ -173,30 +157,9 @@ void register_elf_analyzer_tests() const bool hasSelfModifying = ElfAnalyzer::hasSelfModifyingSignalForHeuristics(smcInst, sections); t.IsTrue(hasSelfModifying, "self-modifying signal should be detected"); - // Decision behavior by name reliability/system-ness. - t.IsFalse(hasHardwareIO && ElfAnalyzer::shouldAutoSkipNameForHeuristics("bhEne13_Brain"), - "reliable game symbol should not auto-skip from hardware signal alone"); - t.IsTrue(hasHardwareIO && ElfAnalyzer::shouldAutoSkipNameForHeuristics("sub_00100C00"), - "unreliable symbol should auto-skip when risky signals exist"); - t.IsTrue(hasLargeComplexMMI && ElfAnalyzer::shouldAutoSkipNameForHeuristics("__main"), - "system symbol should auto-skip when risky signals exist"); - t.IsFalse(hasSelfModifying && ElfAnalyzer::shouldAutoSkipNameForHeuristics("topThread"), - "do-not-skip list should override auto-skip"); }); - - tc.Run("patch-density threshold behavior", [](TestCase &t) - { - t.IsTrue(ElfAnalyzer::shouldSkipForPatchDensityForHeuristics("sub_00100C00", 100, 6, false), - "high-density patches on unreliable names should skip"); - t.IsFalse(ElfAnalyzer::shouldSkipForPatchDensityForHeuristics("sub_00100C00", 200, 6, false), - "density below threshold should not skip"); - t.IsFalse(ElfAnalyzer::shouldSkipForPatchDensityForHeuristics("sub_00100C00", 100, 5, false), - "patch count <= 5 should not skip"); - t.IsFalse(ElfAnalyzer::shouldSkipForPatchDensityForHeuristics("printf", 100, 6, true), - "library functions should not be auto-skipped by patch density"); - t.IsFalse(ElfAnalyzer::shouldSkipForPatchDensityForHeuristics("bhEne13_Brain", 100, 6, false), - "reliable game function should not be auto-skipped by patch density"); - t.IsFalse(ElfAnalyzer::shouldSkipForPatchDensityForHeuristics("topThread", 100, 6, false), - "do-not-skip names should never be auto-skipped"); }); + (void)hasHardwareIO; + (void)hasLargeComplexMMI; + (void)hasSelfModifying; }); tc.Run("jump-table detection finds canonical sltiu/bne/lw/jr pattern", [](TestCase &t) {